s3c2400.c 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. /*
  2. * Driver for Samsung SoC onboard UARTs.
  3. *
  4. * Ben Dooks, Copyright (c) 2003-2005 Simtec Electronics
  5. * http://armlinux.simtec.co.uk/
  6. *
  7. * This program is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License version 2 as
  9. * published by the Free Software Foundation.
  10. */
  11. #include <linux/module.h>
  12. #include <linux/ioport.h>
  13. #include <linux/io.h>
  14. #include <linux/platform_device.h>
  15. #include <asm/irq.h>
  16. #include <mach/hardware.h>
  17. #include <plat/regs-serial.h>
  18. #include <mach/regs-gpio.h>
  19. #include "samsung.h"
  20. static int s3c2400_serial_getsource(struct uart_port *port,
  21. struct s3c24xx_uart_clksrc *clk)
  22. {
  23. clk->divisor = 1;
  24. clk->name = "pclk";
  25. return 0;
  26. }
  27. static int s3c2400_serial_setsource(struct uart_port *port,
  28. struct s3c24xx_uart_clksrc *clk)
  29. {
  30. return 0;
  31. }
  32. static int s3c2400_serial_resetport(struct uart_port *port,
  33. struct s3c2410_uartcfg *cfg)
  34. {
  35. dbg("s3c2400_serial_resetport: port=%p (%08lx), cfg=%p\n",
  36. port, port->mapbase, cfg);
  37. wr_regl(port, S3C2410_UCON, cfg->ucon);
  38. wr_regl(port, S3C2410_ULCON, cfg->ulcon);
  39. /* reset both fifos */
  40. wr_regl(port, S3C2410_UFCON, cfg->ufcon | S3C2410_UFCON_RESETBOTH);
  41. wr_regl(port, S3C2410_UFCON, cfg->ufcon);
  42. return 0;
  43. }
  44. static struct s3c24xx_uart_info s3c2400_uart_inf = {
  45. .name = "Samsung S3C2400 UART",
  46. .type = PORT_S3C2400,
  47. .fifosize = 16,
  48. .rx_fifomask = S3C2410_UFSTAT_RXMASK,
  49. .rx_fifoshift = S3C2410_UFSTAT_RXSHIFT,
  50. .rx_fifofull = S3C2410_UFSTAT_RXFULL,
  51. .tx_fifofull = S3C2410_UFSTAT_TXFULL,
  52. .tx_fifomask = S3C2410_UFSTAT_TXMASK,
  53. .tx_fifoshift = S3C2410_UFSTAT_TXSHIFT,
  54. .get_clksrc = s3c2400_serial_getsource,
  55. .set_clksrc = s3c2400_serial_setsource,
  56. .reset_port = s3c2400_serial_resetport,
  57. };
  58. static int s3c2400_serial_probe(struct platform_device *dev)
  59. {
  60. return s3c24xx_serial_probe(dev, &s3c2400_uart_inf);
  61. }
  62. static struct platform_driver s3c2400_serial_driver = {
  63. .probe = s3c2400_serial_probe,
  64. .remove = __devexit_p(s3c24xx_serial_remove),
  65. .driver = {
  66. .name = "s3c2400-uart",
  67. .owner = THIS_MODULE,
  68. },
  69. };
  70. s3c24xx_console_init(&s3c2400_serial_driver, &s3c2400_uart_inf);
  71. static inline int s3c2400_serial_init(void)
  72. {
  73. return s3c24xx_serial_init(&s3c2400_serial_driver, &s3c2400_uart_inf);
  74. }
  75. static inline void s3c2400_serial_exit(void)
  76. {
  77. platform_driver_unregister(&s3c2400_serial_driver);
  78. }
  79. module_init(s3c2400_serial_init);
  80. module_exit(s3c2400_serial_exit);
  81. MODULE_LICENSE("GPL v2");
  82. MODULE_AUTHOR("Ben Dooks <ben@simtec.co.uk>");
  83. MODULE_DESCRIPTION("Samsung S3C2400 SoC Serial port driver");
  84. MODULE_ALIAS("platform:s3c2400-uart");