serial.c 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. /*
  2. * TI DaVinci serial driver
  3. *
  4. * Copyright (C) 2006 Texas Instruments.
  5. *
  6. * This program is free software; you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License as published by
  8. * the Free Software Foundation; either version 2 of the License, or
  9. * (at your option) any later version.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU General Public License
  17. * along with this program; if not, write to the Free Software
  18. * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  19. *
  20. */
  21. #include <linux/kernel.h>
  22. #include <linux/init.h>
  23. #include <linux/serial_8250.h>
  24. #include <linux/serial_reg.h>
  25. #include <linux/platform_device.h>
  26. #include <linux/delay.h>
  27. #include <linux/clk.h>
  28. #include <linux/io.h>
  29. #include <mach/serial.h>
  30. #include <mach/cputype.h>
  31. static inline void serial_write_reg(struct plat_serial8250_port *p, int offset,
  32. int value)
  33. {
  34. offset <<= p->regshift;
  35. WARN_ONCE(!p->membase, "unmapped write: uart[%d]\n", offset);
  36. __raw_writel(value, p->membase + offset);
  37. }
  38. static void __init davinci_serial_reset(struct plat_serial8250_port *p)
  39. {
  40. unsigned int pwremu = 0;
  41. serial_write_reg(p, UART_IER, 0); /* disable all interrupts */
  42. /* reset both transmitter and receiver: bits 14,13 = UTRST, URRST */
  43. serial_write_reg(p, UART_DAVINCI_PWREMU, pwremu);
  44. mdelay(10);
  45. pwremu |= (0x3 << 13);
  46. pwremu |= 0x1;
  47. serial_write_reg(p, UART_DAVINCI_PWREMU, pwremu);
  48. if (cpu_is_davinci_dm646x())
  49. serial_write_reg(p, UART_DM646X_SCR,
  50. UART_DM646X_SCR_TX_WATERMARK);
  51. }
  52. int __init davinci_serial_init(struct platform_device *serial_dev)
  53. {
  54. int i, ret = 0;
  55. struct device *dev;
  56. struct plat_serial8250_port *p;
  57. struct clk *clk;
  58. /*
  59. * Make sure the serial ports are muxed on at this point.
  60. * You have to mux them off in device drivers later on if not needed.
  61. */
  62. for (i = 0; serial_dev[i].dev.platform_data != NULL; i++) {
  63. dev = &serial_dev[i].dev;
  64. p = dev->platform_data;
  65. ret = platform_device_register(&serial_dev[i]);
  66. if (ret)
  67. continue;
  68. clk = clk_get(dev, NULL);
  69. if (IS_ERR(clk)) {
  70. pr_err("%s:%d: failed to get UART%d clock\n",
  71. __func__, __LINE__, i);
  72. continue;
  73. }
  74. clk_prepare_enable(clk);
  75. p->uartclk = clk_get_rate(clk);
  76. if (!p->membase && p->mapbase) {
  77. p->membase = ioremap(p->mapbase, SZ_4K);
  78. if (p->membase)
  79. p->flags &= ~UPF_IOREMAP;
  80. else
  81. pr_err("uart regs ioremap failed\n");
  82. }
  83. if (p->membase && p->type != PORT_AR7)
  84. davinci_serial_reset(p);
  85. }
  86. return ret;
  87. }