malta-platform.c 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. /*
  2. * This file is subject to the terms and conditions of the GNU General Public
  3. * License. See the file "COPYING" in the main directory of this archive
  4. * for more details.
  5. *
  6. * Copyright (C) 2007 MIPS Technologies, Inc.
  7. * written by Ralf Baechle (ralf@linux-mips.org)
  8. *
  9. * Copyright (C) 2008 Wind River Systems, Inc.
  10. * updated by Tiejun Chen <tiejun.chen@windriver.com>
  11. *
  12. * 1. Probe driver for the Malta's UART ports:
  13. *
  14. * o 2 ports in the SMC SuperIO
  15. * o 1 port in the CBUS UART, a discrete 16550 which normally is only used
  16. * for bringups.
  17. *
  18. * We don't use 8250_platform.c on Malta as it would result in the CBUS
  19. * UART becoming ttyS0.
  20. *
  21. * 2. Register RTC-CMOS platform device on Malta.
  22. */
  23. #include <linux/module.h>
  24. #include <linux/init.h>
  25. #include <linux/serial_8250.h>
  26. #include <linux/mc146818rtc.h>
  27. #include <linux/platform_device.h>
  28. #define SMC_PORT(base, int) \
  29. { \
  30. .iobase = base, \
  31. .irq = int, \
  32. .uartclk = 1843200, \
  33. .iotype = UPIO_PORT, \
  34. .flags = UPF_BOOT_AUTOCONF | UPF_SKIP_TEST, \
  35. .regshift = 0, \
  36. }
  37. #define CBUS_UART_FLAGS (UPF_BOOT_AUTOCONF | UPF_SKIP_TEST | UPF_IOREMAP)
  38. static struct plat_serial8250_port uart8250_data[] = {
  39. SMC_PORT(0x3F8, 4),
  40. SMC_PORT(0x2F8, 3),
  41. {
  42. .mapbase = 0x1f000900, /* The CBUS UART */
  43. .irq = MIPS_CPU_IRQ_BASE + 2,
  44. .uartclk = 3686400, /* Twice the usual clk! */
  45. .iotype = UPIO_MEM32,
  46. .flags = CBUS_UART_FLAGS,
  47. .regshift = 3,
  48. },
  49. { },
  50. };
  51. static struct platform_device malta_uart8250_device = {
  52. .name = "serial8250",
  53. .id = PLAT8250_DEV_PLATFORM2,
  54. .dev = {
  55. .platform_data = uart8250_data,
  56. },
  57. };
  58. struct resource malta_rtc_resources[] = {
  59. {
  60. .start = RTC_PORT(0),
  61. .end = RTC_PORT(7),
  62. .flags = IORESOURCE_IO,
  63. }, {
  64. .start = RTC_IRQ,
  65. .end = RTC_IRQ,
  66. .flags = IORESOURCE_IRQ,
  67. }
  68. };
  69. static struct platform_device malta_rtc_device = {
  70. .name = "rtc_cmos",
  71. .id = -1,
  72. .resource = malta_rtc_resources,
  73. .num_resources = ARRAY_SIZE(malta_rtc_resources),
  74. };
  75. static struct platform_device *malta_devices[] __initdata = {
  76. &malta_uart8250_device,
  77. &malta_rtc_device,
  78. };
  79. static int __init malta_add_devices(void)
  80. {
  81. int err;
  82. err = platform_add_devices(malta_devices, ARRAY_SIZE(malta_devices));
  83. if (err)
  84. return err;
  85. /*
  86. * Set RTC to BCD mode to support current alarm code.
  87. */
  88. CMOS_WRITE(CMOS_READ(RTC_CONTROL) & ~RTC_DM_BINARY, RTC_CONTROL);
  89. return 0;
  90. }
  91. device_initcall(malta_add_devices);