serial.c 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  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 <asm/irq.h>
  30. #include <mach/hardware.h>
  31. #include <mach/serial.h>
  32. #include <mach/irqs.h>
  33. #include <mach/cputype.h>
  34. #include <mach/common.h>
  35. #include "clock.h"
  36. static inline unsigned int serial_read_reg(struct plat_serial8250_port *up,
  37. int offset)
  38. {
  39. offset <<= up->regshift;
  40. return (unsigned int)__raw_readl(IO_ADDRESS(up->mapbase) + offset);
  41. }
  42. static inline void serial_write_reg(struct plat_serial8250_port *p, int offset,
  43. int value)
  44. {
  45. offset <<= p->regshift;
  46. __raw_writel(value, IO_ADDRESS(p->mapbase) + offset);
  47. }
  48. static void __init davinci_serial_reset(struct plat_serial8250_port *p)
  49. {
  50. unsigned int pwremu = 0;
  51. serial_write_reg(p, UART_IER, 0); /* disable all interrupts */
  52. /* reset both transmitter and receiver: bits 14,13 = UTRST, URRST */
  53. serial_write_reg(p, UART_DAVINCI_PWREMU, pwremu);
  54. mdelay(10);
  55. pwremu |= (0x3 << 13);
  56. pwremu |= 0x1;
  57. serial_write_reg(p, UART_DAVINCI_PWREMU, pwremu);
  58. if (cpu_is_davinci_dm646x())
  59. serial_write_reg(p, UART_DM646X_SCR,
  60. UART_DM646X_SCR_TX_WATERMARK);
  61. }
  62. int __init davinci_serial_init(struct davinci_uart_config *info)
  63. {
  64. int i;
  65. char name[16];
  66. struct clk *uart_clk;
  67. struct davinci_soc_info *soc_info = &davinci_soc_info;
  68. struct device *dev = &soc_info->serial_dev->dev;
  69. struct plat_serial8250_port *p = dev->platform_data;
  70. /*
  71. * Make sure the serial ports are muxed on at this point.
  72. * You have to mux them off in device drivers later on if not needed.
  73. */
  74. for (i = 0; i < DAVINCI_MAX_NR_UARTS; i++, p++) {
  75. if (!(info->enabled_uarts & (1 << i)))
  76. continue;
  77. sprintf(name, "uart%d", i);
  78. uart_clk = clk_get(dev, name);
  79. if (IS_ERR(uart_clk))
  80. printk(KERN_ERR "%s:%d: failed to get UART%d clock\n",
  81. __func__, __LINE__, i);
  82. else {
  83. clk_enable(uart_clk);
  84. p->uartclk = clk_get_rate(uart_clk);
  85. davinci_serial_reset(p);
  86. }
  87. }
  88. return platform_device_register(soc_info->serial_dev);
  89. }