wrt350n-v2-setup.c 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192
  1. /*
  2. * arch/arm/mach-orion5x/wrt350n-v2-setup.c
  3. *
  4. * This file is licensed under the terms of the GNU General Public
  5. * License version 2. This program is licensed "as is" without any
  6. * warranty of any kind, whether express or implied.
  7. */
  8. #include <linux/kernel.h>
  9. #include <linux/init.h>
  10. #include <linux/platform_device.h>
  11. #include <linux/pci.h>
  12. #include <linux/irq.h>
  13. #include <linux/delay.h>
  14. #include <linux/mtd/physmap.h>
  15. #include <linux/mv643xx_eth.h>
  16. #include <linux/ethtool.h>
  17. #include <net/dsa.h>
  18. #include <asm/mach-types.h>
  19. #include <asm/gpio.h>
  20. #include <asm/mach/arch.h>
  21. #include <asm/mach/pci.h>
  22. #include <mach/orion5x.h>
  23. #include "common.h"
  24. #include "mpp.h"
  25. static struct orion5x_mpp_mode wrt350n_v2_mpp_modes[] __initdata = {
  26. { 0, MPP_GPIO }, /* Power LED green (0=on) */
  27. { 1, MPP_GPIO }, /* Security LED (0=on) */
  28. { 2, MPP_GPIO }, /* Internal Button (0=on) */
  29. { 3, MPP_GPIO }, /* Reset Button (0=on) */
  30. { 4, MPP_GPIO }, /* PCI int */
  31. { 5, MPP_GPIO }, /* Power LED orange (0=on) */
  32. { 6, MPP_GPIO }, /* USB LED (0=on) */
  33. { 7, MPP_GPIO }, /* Wireless LED (0=on) */
  34. { 8, MPP_UNUSED }, /* ??? */
  35. { 9, MPP_GIGE }, /* GE_RXERR */
  36. { 10, MPP_UNUSED }, /* ??? */
  37. { 11, MPP_UNUSED }, /* ??? */
  38. { 12, MPP_GIGE }, /* GE_TXD[4] */
  39. { 13, MPP_GIGE }, /* GE_TXD[5] */
  40. { 14, MPP_GIGE }, /* GE_TXD[6] */
  41. { 15, MPP_GIGE }, /* GE_TXD[7] */
  42. { 16, MPP_GIGE }, /* GE_RXD[4] */
  43. { 17, MPP_GIGE }, /* GE_RXD[5] */
  44. { 18, MPP_GIGE }, /* GE_RXD[6] */
  45. { 19, MPP_GIGE }, /* GE_RXD[7] */
  46. { -1 },
  47. };
  48. /*
  49. * 8M NOR flash Device bus boot chip select
  50. */
  51. #define WRT350N_V2_NOR_BOOT_BASE 0xf4000000
  52. #define WRT350N_V2_NOR_BOOT_SIZE SZ_8M
  53. static struct mtd_partition wrt350n_v2_nor_flash_partitions[] = {
  54. {
  55. .name = "kernel",
  56. .offset = 0x00000000,
  57. .size = 0x00760000,
  58. }, {
  59. .name = "rootfs",
  60. .offset = 0x001a0000,
  61. .size = 0x005c0000,
  62. }, {
  63. .name = "lang",
  64. .offset = 0x00760000,
  65. .size = 0x00040000,
  66. }, {
  67. .name = "nvram",
  68. .offset = 0x007a0000,
  69. .size = 0x00020000,
  70. }, {
  71. .name = "u-boot",
  72. .offset = 0x007c0000,
  73. .size = 0x00040000,
  74. },
  75. };
  76. static struct physmap_flash_data wrt350n_v2_nor_flash_data = {
  77. .width = 1,
  78. .parts = wrt350n_v2_nor_flash_partitions,
  79. .nr_parts = ARRAY_SIZE(wrt350n_v2_nor_flash_partitions),
  80. };
  81. static struct resource wrt350n_v2_nor_flash_resource = {
  82. .flags = IORESOURCE_MEM,
  83. .start = WRT350N_V2_NOR_BOOT_BASE,
  84. .end = WRT350N_V2_NOR_BOOT_BASE + WRT350N_V2_NOR_BOOT_SIZE - 1,
  85. };
  86. static struct platform_device wrt350n_v2_nor_flash = {
  87. .name = "physmap-flash",
  88. .id = 0,
  89. .dev = {
  90. .platform_data = &wrt350n_v2_nor_flash_data,
  91. },
  92. .num_resources = 1,
  93. .resource = &wrt350n_v2_nor_flash_resource,
  94. };
  95. static struct mv643xx_eth_platform_data wrt350n_v2_eth_data = {
  96. .phy_addr = MV643XX_ETH_PHY_NONE,
  97. .speed = SPEED_1000,
  98. .duplex = DUPLEX_FULL,
  99. };
  100. static struct dsa_chip_data wrt350n_v2_switch_chip_data = {
  101. .port_names[0] = "lan2",
  102. .port_names[1] = "lan1",
  103. .port_names[2] = "wan",
  104. .port_names[3] = "cpu",
  105. .port_names[5] = "lan3",
  106. .port_names[7] = "lan4",
  107. };
  108. static struct dsa_platform_data wrt350n_v2_switch_plat_data = {
  109. .nr_chips = 1,
  110. .chip = &wrt350n_v2_switch_chip_data,
  111. };
  112. static void __init wrt350n_v2_init(void)
  113. {
  114. /*
  115. * Setup basic Orion functions. Need to be called early.
  116. */
  117. orion5x_init();
  118. orion5x_mpp_conf(wrt350n_v2_mpp_modes);
  119. /*
  120. * Configure peripherals.
  121. */
  122. orion5x_ehci0_init();
  123. orion5x_eth_init(&wrt350n_v2_eth_data);
  124. orion5x_eth_switch_init(&wrt350n_v2_switch_plat_data, NO_IRQ);
  125. orion5x_uart0_init();
  126. orion5x_setup_dev_boot_win(WRT350N_V2_NOR_BOOT_BASE,
  127. WRT350N_V2_NOR_BOOT_SIZE);
  128. platform_device_register(&wrt350n_v2_nor_flash);
  129. }
  130. static int __init wrt350n_v2_pci_map_irq(struct pci_dev *dev, u8 slot, u8 pin)
  131. {
  132. int irq;
  133. /*
  134. * Check for devices with hard-wired IRQs.
  135. */
  136. irq = orion5x_pci_map_irq(dev, slot, pin);
  137. if (irq != -1)
  138. return irq;
  139. /*
  140. * Mini-PCI slot.
  141. */
  142. if (slot == 7)
  143. return gpio_to_irq(4);
  144. return -1;
  145. }
  146. static struct hw_pci wrt350n_v2_pci __initdata = {
  147. .nr_controllers = 2,
  148. .swizzle = pci_std_swizzle,
  149. .setup = orion5x_pci_sys_setup,
  150. .scan = orion5x_pci_sys_scan_bus,
  151. .map_irq = wrt350n_v2_pci_map_irq,
  152. };
  153. static int __init wrt350n_v2_pci_init(void)
  154. {
  155. if (machine_is_wrt350n_v2())
  156. pci_common_init(&wrt350n_v2_pci);
  157. return 0;
  158. }
  159. subsys_initcall(wrt350n_v2_pci_init);
  160. MACHINE_START(WRT350N_V2, "Linksys WRT350N v2")
  161. /* Maintainer: Lennert Buytenhek <buytenh@marvell.com> */
  162. .phys_io = ORION5X_REGS_PHYS_BASE,
  163. .io_pg_offst = ((ORION5X_REGS_VIRT_BASE) >> 18) & 0xFFFC,
  164. .boot_params = 0x00000100,
  165. .init_machine = wrt350n_v2_init,
  166. .map_io = orion5x_map_io,
  167. .init_irq = orion5x_init_irq,
  168. .timer = &orion5x_timer,
  169. .fixup = tag_fixup_mem32,
  170. MACHINE_END