malta-platform.c 3.3 KB

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