malta-platform.c 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148
  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/mtd/partitions.h>
  29. #include <linux/mtd/physmap.h>
  30. #include <linux/platform_device.h>
  31. #include <mtd/mtd-abi.h>
  32. #define SMC_PORT(base, int) \
  33. { \
  34. .iobase = base, \
  35. .irq = int, \
  36. .uartclk = 1843200, \
  37. .iotype = UPIO_PORT, \
  38. .flags = UPF_BOOT_AUTOCONF | UPF_SKIP_TEST, \
  39. .regshift = 0, \
  40. }
  41. #define CBUS_UART_FLAGS (UPF_BOOT_AUTOCONF | UPF_SKIP_TEST | UPF_IOREMAP)
  42. static struct plat_serial8250_port uart8250_data[] = {
  43. SMC_PORT(0x3F8, 4),
  44. SMC_PORT(0x2F8, 3),
  45. {
  46. .mapbase = 0x1f000900, /* The CBUS UART */
  47. .irq = MIPS_CPU_IRQ_BASE + 2,
  48. .uartclk = 3686400, /* Twice the usual clk! */
  49. .iotype = UPIO_MEM32,
  50. .flags = CBUS_UART_FLAGS,
  51. .regshift = 3,
  52. },
  53. { },
  54. };
  55. static struct platform_device malta_uart8250_device = {
  56. .name = "serial8250",
  57. .id = PLAT8250_DEV_PLATFORM,
  58. .dev = {
  59. .platform_data = uart8250_data,
  60. },
  61. };
  62. struct resource malta_rtc_resources[] = {
  63. {
  64. .start = RTC_PORT(0),
  65. .end = RTC_PORT(7),
  66. .flags = IORESOURCE_IO,
  67. }, {
  68. .start = RTC_IRQ,
  69. .end = RTC_IRQ,
  70. .flags = IORESOURCE_IRQ,
  71. }
  72. };
  73. static struct platform_device malta_rtc_device = {
  74. .name = "rtc_cmos",
  75. .id = -1,
  76. .resource = malta_rtc_resources,
  77. .num_resources = ARRAY_SIZE(malta_rtc_resources),
  78. };
  79. static struct mtd_partition malta_mtd_partitions[] = {
  80. {
  81. .name = "YAMON",
  82. .offset = 0x0,
  83. .size = 0x100000,
  84. .mask_flags = MTD_WRITEABLE
  85. }, {
  86. .name = "User FS",
  87. .offset = 0x100000,
  88. .size = 0x2e0000
  89. }, {
  90. .name = "Board Config",
  91. .offset = 0x3e0000,
  92. .size = 0x020000,
  93. .mask_flags = MTD_WRITEABLE
  94. }
  95. };
  96. static struct physmap_flash_data malta_flash_data = {
  97. .width = 4,
  98. .nr_parts = ARRAY_SIZE(malta_mtd_partitions),
  99. .parts = malta_mtd_partitions
  100. };
  101. static struct resource malta_flash_resource = {
  102. .start = 0x1e000000,
  103. .end = 0x1e3fffff,
  104. .flags = IORESOURCE_MEM
  105. };
  106. static struct platform_device malta_flash_device = {
  107. .name = "physmap-flash",
  108. .id = 0,
  109. .dev = {
  110. .platform_data = &malta_flash_data,
  111. },
  112. .num_resources = 1,
  113. .resource = &malta_flash_resource,
  114. };
  115. static struct platform_device *malta_devices[] __initdata = {
  116. &malta_uart8250_device,
  117. &malta_rtc_device,
  118. &malta_flash_device,
  119. };
  120. static int __init malta_add_devices(void)
  121. {
  122. int err;
  123. err = platform_add_devices(malta_devices, ARRAY_SIZE(malta_devices));
  124. if (err)
  125. return err;
  126. /*
  127. * Set RTC to BCD mode to support current alarm code.
  128. */
  129. CMOS_WRITE(CMOS_READ(RTC_CONTROL) & ~RTC_DM_BINARY, RTC_CONTROL);
  130. return 0;
  131. }
  132. device_initcall(malta_add_devices);