malta-platform.c 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  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) 2006, 07 MIPS Technologies, Inc.
  7. * written by Ralf Baechle (ralf@linux-mips.org)
  8. * written by Ralf Baechle <ralf@linux-mips.org>
  9. *
  10. * Copyright (C) 2008 Wind River Systems, Inc.
  11. * updated by Tiejun Chen <tiejun.chen@windriver.com>
  12. *
  13. * 1. Probe driver for the Malta's UART ports:
  14. *
  15. * o 2 ports in the SMC SuperIO
  16. * o 1 port in the CBUS UART, a discrete 16550 which normally is only used
  17. * for bringups.
  18. *
  19. * We don't use 8250_platform.c on Malta as it would result in the CBUS
  20. * UART becoming ttyS0.
  21. *
  22. * 2. Register RTC-CMOS platform device on Malta.
  23. */
  24. #include <linux/init.h>
  25. #include <linux/serial_8250.h>
  26. #include <linux/mc146818rtc.h>
  27. #include <linux/module.h>
  28. #include <linux/irq.h>
  29. #include <linux/mtd/partitions.h>
  30. #include <linux/mtd/physmap.h>
  31. #include <linux/platform_device.h>
  32. #include <mtd/mtd-abi.h>
  33. #define SMC_PORT(base, int) \
  34. { \
  35. .iobase = base, \
  36. .irq = int, \
  37. .uartclk = 1843200, \
  38. .iotype = UPIO_PORT, \
  39. .flags = UPF_BOOT_AUTOCONF | UPF_SKIP_TEST, \
  40. .regshift = 0, \
  41. }
  42. #define CBUS_UART_FLAGS (UPF_BOOT_AUTOCONF | UPF_SKIP_TEST | UPF_IOREMAP)
  43. static struct plat_serial8250_port uart8250_data[] = {
  44. SMC_PORT(0x3F8, 4),
  45. SMC_PORT(0x2F8, 3),
  46. {
  47. .mapbase = 0x1f000900, /* The CBUS UART */
  48. .irq = MIPS_CPU_IRQ_BASE + 2,
  49. .uartclk = 3686400, /* Twice the usual clk! */
  50. .iotype = UPIO_MEM32,
  51. .flags = CBUS_UART_FLAGS,
  52. .regshift = 3,
  53. },
  54. { },
  55. };
  56. static struct platform_device malta_uart8250_device = {
  57. .name = "serial8250",
  58. .id = PLAT8250_DEV_PLATFORM,
  59. .dev = {
  60. .platform_data = uart8250_data,
  61. },
  62. };
  63. struct resource malta_rtc_resources[] = {
  64. {
  65. .start = RTC_PORT(0),
  66. .end = RTC_PORT(7),
  67. .flags = IORESOURCE_IO,
  68. }, {
  69. .start = RTC_IRQ,
  70. .end = RTC_IRQ,
  71. .flags = IORESOURCE_IRQ,
  72. }
  73. };
  74. static struct platform_device malta_rtc_device = {
  75. .name = "rtc_cmos",
  76. .id = -1,
  77. .resource = malta_rtc_resources,
  78. .num_resources = ARRAY_SIZE(malta_rtc_resources),
  79. };
  80. static struct mtd_partition malta_mtd_partitions[] = {
  81. {
  82. .name = "YAMON",
  83. .offset = 0x0,
  84. .size = 0x100000,
  85. .mask_flags = MTD_WRITEABLE
  86. }, {
  87. .name = "User FS",
  88. .offset = 0x100000,
  89. .size = 0x2e0000
  90. }, {
  91. .name = "Board Config",
  92. .offset = 0x3e0000,
  93. .size = 0x020000,
  94. .mask_flags = MTD_WRITEABLE
  95. }
  96. };
  97. static struct physmap_flash_data malta_flash_data = {
  98. .width = 4,
  99. .nr_parts = ARRAY_SIZE(malta_mtd_partitions),
  100. .parts = malta_mtd_partitions
  101. };
  102. static struct resource malta_flash_resource = {
  103. .start = 0x1e000000,
  104. .end = 0x1e3fffff,
  105. .flags = IORESOURCE_MEM
  106. };
  107. static struct platform_device malta_flash_device = {
  108. .name = "physmap-flash",
  109. .id = 0,
  110. .dev = {
  111. .platform_data = &malta_flash_data,
  112. },
  113. .num_resources = 1,
  114. .resource = &malta_flash_resource,
  115. };
  116. static struct platform_device *malta_devices[] __initdata = {
  117. &malta_uart8250_device,
  118. &malta_rtc_device,
  119. &malta_flash_device,
  120. };
  121. static int __init malta_add_devices(void)
  122. {
  123. int err;
  124. err = platform_add_devices(malta_devices, ARRAY_SIZE(malta_devices));
  125. if (err)
  126. return err;
  127. /*
  128. * Set RTC to BCD mode to support current alarm code.
  129. */
  130. CMOS_WRITE(CMOS_READ(RTC_CONTROL) & ~RTC_DM_BINARY, RTC_CONTROL);
  131. return 0;
  132. }
  133. device_initcall(malta_add_devices);