ixdp425-setup.c 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307
  1. /*
  2. * arch/arm/mach-ixp4xx/ixdp425-setup.c
  3. *
  4. * IXDP425/IXCDP1100 board-setup
  5. *
  6. * Copyright (C) 2003-2005 MontaVista Software, Inc.
  7. *
  8. * Author: Deepak Saxena <dsaxena@plexity.net>
  9. */
  10. #include <linux/kernel.h>
  11. #include <linux/init.h>
  12. #include <linux/device.h>
  13. #include <linux/serial.h>
  14. #include <linux/tty.h>
  15. #include <linux/serial_8250.h>
  16. #include <linux/i2c-gpio.h>
  17. #include <linux/io.h>
  18. #include <linux/mtd/mtd.h>
  19. #include <linux/mtd/nand.h>
  20. #include <linux/mtd/partitions.h>
  21. #include <linux/delay.h>
  22. #include <asm/types.h>
  23. #include <asm/setup.h>
  24. #include <asm/memory.h>
  25. #include <mach/hardware.h>
  26. #include <asm/mach-types.h>
  27. #include <asm/irq.h>
  28. #include <asm/mach/arch.h>
  29. #include <asm/mach/flash.h>
  30. #define IXDP425_SDA_PIN 7
  31. #define IXDP425_SCL_PIN 6
  32. /* NAND Flash pins */
  33. #define IXDP425_NAND_NCE_PIN 12
  34. #define IXDP425_NAND_CMD_BYTE 0x01
  35. #define IXDP425_NAND_ADDR_BYTE 0x02
  36. static struct flash_platform_data ixdp425_flash_data = {
  37. .map_name = "cfi_probe",
  38. .width = 2,
  39. };
  40. static struct resource ixdp425_flash_resource = {
  41. .flags = IORESOURCE_MEM,
  42. };
  43. static struct platform_device ixdp425_flash = {
  44. .name = "IXP4XX-Flash",
  45. .id = 0,
  46. .dev = {
  47. .platform_data = &ixdp425_flash_data,
  48. },
  49. .num_resources = 1,
  50. .resource = &ixdp425_flash_resource,
  51. };
  52. #if defined(CONFIG_MTD_NAND_PLATFORM) || \
  53. defined(CONFIG_MTD_NAND_PLATFORM_MODULE)
  54. #ifdef CONFIG_MTD_PARTITIONS
  55. const char *part_probes[] = { "cmdlinepart", NULL };
  56. static struct mtd_partition ixdp425_partitions[] = {
  57. {
  58. .name = "ixp400 NAND FS 0",
  59. .offset = 0,
  60. .size = SZ_8M
  61. }, {
  62. .name = "ixp400 NAND FS 1",
  63. .offset = MTDPART_OFS_APPEND,
  64. .size = MTDPART_SIZ_FULL
  65. },
  66. };
  67. #endif
  68. static void
  69. ixdp425_flash_nand_cmd_ctrl(struct mtd_info *mtd, int cmd, unsigned int ctrl)
  70. {
  71. struct nand_chip *this = mtd->priv;
  72. int offset = (int)this->priv;
  73. if (ctrl & NAND_CTRL_CHANGE) {
  74. if (ctrl & NAND_NCE) {
  75. gpio_line_set(IXDP425_NAND_NCE_PIN, IXP4XX_GPIO_LOW);
  76. udelay(5);
  77. } else
  78. gpio_line_set(IXDP425_NAND_NCE_PIN, IXP4XX_GPIO_HIGH);
  79. offset = (ctrl & NAND_CLE) ? IXDP425_NAND_CMD_BYTE : 0;
  80. offset |= (ctrl & NAND_ALE) ? IXDP425_NAND_ADDR_BYTE : 0;
  81. this->priv = (void *)offset;
  82. }
  83. if (cmd != NAND_CMD_NONE)
  84. writeb(cmd, this->IO_ADDR_W + offset);
  85. }
  86. static struct platform_nand_data ixdp425_flash_nand_data = {
  87. .chip = {
  88. .nr_chips = 1,
  89. .chip_delay = 30,
  90. .options = NAND_NO_AUTOINCR,
  91. #ifdef CONFIG_MTD_PARTITIONS
  92. .part_probe_types = part_probes,
  93. .partitions = ixdp425_partitions,
  94. .nr_partitions = ARRAY_SIZE(ixdp425_partitions),
  95. #endif
  96. },
  97. .ctrl = {
  98. .cmd_ctrl = ixdp425_flash_nand_cmd_ctrl
  99. }
  100. };
  101. static struct resource ixdp425_flash_nand_resource = {
  102. .flags = IORESOURCE_MEM,
  103. };
  104. static struct platform_device ixdp425_flash_nand = {
  105. .name = "gen_nand",
  106. .id = -1,
  107. .dev = {
  108. .platform_data = &ixdp425_flash_nand_data,
  109. },
  110. .num_resources = 1,
  111. .resource = &ixdp425_flash_nand_resource,
  112. };
  113. #endif /* CONFIG_MTD_NAND_PLATFORM */
  114. static struct i2c_gpio_platform_data ixdp425_i2c_gpio_data = {
  115. .sda_pin = IXDP425_SDA_PIN,
  116. .scl_pin = IXDP425_SCL_PIN,
  117. };
  118. static struct platform_device ixdp425_i2c_gpio = {
  119. .name = "i2c-gpio",
  120. .id = 0,
  121. .dev = {
  122. .platform_data = &ixdp425_i2c_gpio_data,
  123. },
  124. };
  125. static struct resource ixdp425_uart_resources[] = {
  126. {
  127. .start = IXP4XX_UART1_BASE_PHYS,
  128. .end = IXP4XX_UART1_BASE_PHYS + 0x0fff,
  129. .flags = IORESOURCE_MEM
  130. },
  131. {
  132. .start = IXP4XX_UART2_BASE_PHYS,
  133. .end = IXP4XX_UART2_BASE_PHYS + 0x0fff,
  134. .flags = IORESOURCE_MEM
  135. }
  136. };
  137. static struct plat_serial8250_port ixdp425_uart_data[] = {
  138. {
  139. .mapbase = IXP4XX_UART1_BASE_PHYS,
  140. .membase = (char *)IXP4XX_UART1_BASE_VIRT + REG_OFFSET,
  141. .irq = IRQ_IXP4XX_UART1,
  142. .flags = UPF_BOOT_AUTOCONF | UPF_SKIP_TEST,
  143. .iotype = UPIO_MEM,
  144. .regshift = 2,
  145. .uartclk = IXP4XX_UART_XTAL,
  146. },
  147. {
  148. .mapbase = IXP4XX_UART2_BASE_PHYS,
  149. .membase = (char *)IXP4XX_UART2_BASE_VIRT + REG_OFFSET,
  150. .irq = IRQ_IXP4XX_UART2,
  151. .flags = UPF_BOOT_AUTOCONF | UPF_SKIP_TEST,
  152. .iotype = UPIO_MEM,
  153. .regshift = 2,
  154. .uartclk = IXP4XX_UART_XTAL,
  155. },
  156. { },
  157. };
  158. static struct platform_device ixdp425_uart = {
  159. .name = "serial8250",
  160. .id = PLAT8250_DEV_PLATFORM,
  161. .dev.platform_data = ixdp425_uart_data,
  162. .num_resources = 2,
  163. .resource = ixdp425_uart_resources
  164. };
  165. /* Built-in 10/100 Ethernet MAC interfaces */
  166. static struct eth_plat_info ixdp425_plat_eth[] = {
  167. {
  168. .phy = 0,
  169. .rxq = 3,
  170. .txreadyq = 20,
  171. }, {
  172. .phy = 1,
  173. .rxq = 4,
  174. .txreadyq = 21,
  175. }
  176. };
  177. static struct platform_device ixdp425_eth[] = {
  178. {
  179. .name = "ixp4xx_eth",
  180. .id = IXP4XX_ETH_NPEB,
  181. .dev.platform_data = ixdp425_plat_eth,
  182. }, {
  183. .name = "ixp4xx_eth",
  184. .id = IXP4XX_ETH_NPEC,
  185. .dev.platform_data = ixdp425_plat_eth + 1,
  186. }
  187. };
  188. static struct platform_device *ixdp425_devices[] __initdata = {
  189. &ixdp425_i2c_gpio,
  190. &ixdp425_flash,
  191. #if defined(CONFIG_MTD_NAND_PLATFORM) || \
  192. defined(CONFIG_MTD_NAND_PLATFORM_MODULE)
  193. &ixdp425_flash_nand,
  194. #endif
  195. &ixdp425_uart,
  196. &ixdp425_eth[0],
  197. &ixdp425_eth[1],
  198. };
  199. static void __init ixdp425_init(void)
  200. {
  201. ixp4xx_sys_init();
  202. ixdp425_flash_resource.start = IXP4XX_EXP_BUS_BASE(0);
  203. ixdp425_flash_resource.end =
  204. IXP4XX_EXP_BUS_BASE(0) + ixp4xx_exp_bus_size - 1;
  205. #if defined(CONFIG_MTD_NAND_PLATFORM) || \
  206. defined(CONFIG_MTD_NAND_PLATFORM_MODULE)
  207. ixdp425_flash_nand_resource.start = IXP4XX_EXP_BUS_BASE(3),
  208. ixdp425_flash_nand_resource.end = IXP4XX_EXP_BUS_BASE(3) + 0x10 - 1;
  209. gpio_line_config(IXDP425_NAND_NCE_PIN, IXP4XX_GPIO_OUT);
  210. /* Configure expansion bus for NAND Flash */
  211. *IXP4XX_EXP_CS3 = IXP4XX_EXP_BUS_CS_EN |
  212. IXP4XX_EXP_BUS_STROBE_T(1) | /* extend by 1 clock */
  213. IXP4XX_EXP_BUS_CYCLES(0) | /* Intel cycles */
  214. IXP4XX_EXP_BUS_SIZE(0) | /* 512bytes addr space*/
  215. IXP4XX_EXP_BUS_WR_EN |
  216. IXP4XX_EXP_BUS_BYTE_EN; /* 8 bit data bus */
  217. #endif
  218. if (cpu_is_ixp43x()) {
  219. ixdp425_uart.num_resources = 1;
  220. ixdp425_uart_data[1].flags = 0;
  221. }
  222. platform_add_devices(ixdp425_devices, ARRAY_SIZE(ixdp425_devices));
  223. }
  224. #ifdef CONFIG_ARCH_IXDP425
  225. MACHINE_START(IXDP425, "Intel IXDP425 Development Platform")
  226. /* Maintainer: MontaVista Software, Inc. */
  227. .phys_io = IXP4XX_PERIPHERAL_BASE_PHYS,
  228. .io_pg_offst = ((IXP4XX_PERIPHERAL_BASE_VIRT) >> 18) & 0xfffc,
  229. .map_io = ixp4xx_map_io,
  230. .init_irq = ixp4xx_init_irq,
  231. .timer = &ixp4xx_timer,
  232. .boot_params = 0x0100,
  233. .init_machine = ixdp425_init,
  234. MACHINE_END
  235. #endif
  236. #ifdef CONFIG_MACH_IXDP465
  237. MACHINE_START(IXDP465, "Intel IXDP465 Development Platform")
  238. /* Maintainer: MontaVista Software, Inc. */
  239. .phys_io = IXP4XX_PERIPHERAL_BASE_PHYS,
  240. .io_pg_offst = ((IXP4XX_PERIPHERAL_BASE_VIRT) >> 18) & 0xfffc,
  241. .map_io = ixp4xx_map_io,
  242. .init_irq = ixp4xx_init_irq,
  243. .timer = &ixp4xx_timer,
  244. .boot_params = 0x0100,
  245. .init_machine = ixdp425_init,
  246. MACHINE_END
  247. #endif
  248. #ifdef CONFIG_ARCH_PRPMC1100
  249. MACHINE_START(IXCDP1100, "Intel IXCDP1100 Development Platform")
  250. /* Maintainer: MontaVista Software, Inc. */
  251. .phys_io = IXP4XX_PERIPHERAL_BASE_PHYS,
  252. .io_pg_offst = ((IXP4XX_PERIPHERAL_BASE_VIRT) >> 18) & 0xfffc,
  253. .map_io = ixp4xx_map_io,
  254. .init_irq = ixp4xx_init_irq,
  255. .timer = &ixp4xx_timer,
  256. .boot_params = 0x0100,
  257. .init_machine = ixdp425_init,
  258. MACHINE_END
  259. #endif
  260. #ifdef CONFIG_MACH_KIXRP435
  261. MACHINE_START(KIXRP435, "Intel KIXRP435 Reference Platform")
  262. /* Maintainer: MontaVista Software, Inc. */
  263. .phys_io = IXP4XX_PERIPHERAL_BASE_PHYS,
  264. .io_pg_offst = ((IXP4XX_PERIPHERAL_BASE_VIRT) >> 18) & 0xfffc,
  265. .map_io = ixp4xx_map_io,
  266. .init_irq = ixp4xx_init_irq,
  267. .timer = &ixp4xx_timer,
  268. .boot_params = 0x0100,
  269. .init_machine = ixdp425_init,
  270. MACHINE_END
  271. #endif