s3c2400.c 2.6 KB

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