ixdp425-setup.c 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296
  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. const char *part_probes[] = { "cmdlinepart", NULL };
  55. static struct mtd_partition ixdp425_partitions[] = {
  56. {
  57. .name = "ixp400 NAND FS 0",
  58. .offset = 0,
  59. .size = SZ_8M
  60. }, {
  61. .name = "ixp400 NAND FS 1",
  62. .offset = MTDPART_OFS_APPEND,
  63. .size = MTDPART_SIZ_FULL
  64. },
  65. };
  66. static void
  67. ixdp425_flash_nand_cmd_ctrl(struct mtd_info *mtd, int cmd, unsigned int ctrl)
  68. {
  69. struct nand_chip *this = mtd->priv;
  70. int offset = (int)this->priv;
  71. if (ctrl & NAND_CTRL_CHANGE) {
  72. if (ctrl & NAND_NCE) {
  73. gpio_line_set(IXDP425_NAND_NCE_PIN, IXP4XX_GPIO_LOW);
  74. udelay(5);
  75. } else
  76. gpio_line_set(IXDP425_NAND_NCE_PIN, IXP4XX_GPIO_HIGH);
  77. offset = (ctrl & NAND_CLE) ? IXDP425_NAND_CMD_BYTE : 0;
  78. offset |= (ctrl & NAND_ALE) ? IXDP425_NAND_ADDR_BYTE : 0;
  79. this->priv = (void *)offset;
  80. }
  81. if (cmd != NAND_CMD_NONE)
  82. writeb(cmd, this->IO_ADDR_W + offset);
  83. }
  84. static struct platform_nand_data ixdp425_flash_nand_data = {
  85. .chip = {
  86. .nr_chips = 1,
  87. .chip_delay = 30,
  88. .options = NAND_NO_AUTOINCR,
  89. .part_probe_types = part_probes,
  90. .partitions = ixdp425_partitions,
  91. .nr_partitions = ARRAY_SIZE(ixdp425_partitions),
  92. },
  93. .ctrl = {
  94. .cmd_ctrl = ixdp425_flash_nand_cmd_ctrl
  95. }
  96. };
  97. static struct resource ixdp425_flash_nand_resource = {
  98. .flags = IORESOURCE_MEM,
  99. };
  100. static struct platform_device ixdp425_flash_nand = {
  101. .name = "gen_nand",
  102. .id = -1,
  103. .dev = {
  104. .platform_data = &ixdp425_flash_nand_data,
  105. },
  106. .num_resources = 1,
  107. .resource = &ixdp425_flash_nand_resource,
  108. };
  109. #endif /* CONFIG_MTD_NAND_PLATFORM */
  110. static struct i2c_gpio_platform_data ixdp425_i2c_gpio_data = {
  111. .sda_pin = IXDP425_SDA_PIN,
  112. .scl_pin = IXDP425_SCL_PIN,
  113. };
  114. static struct platform_device ixdp425_i2c_gpio = {
  115. .name = "i2c-gpio",
  116. .id = 0,
  117. .dev = {
  118. .platform_data = &ixdp425_i2c_gpio_data,
  119. },
  120. };
  121. static struct resource ixdp425_uart_resources[] = {
  122. {
  123. .start = IXP4XX_UART1_BASE_PHYS,
  124. .end = IXP4XX_UART1_BASE_PHYS + 0x0fff,
  125. .flags = IORESOURCE_MEM
  126. },
  127. {
  128. .start = IXP4XX_UART2_BASE_PHYS,
  129. .end = IXP4XX_UART2_BASE_PHYS + 0x0fff,
  130. .flags = IORESOURCE_MEM
  131. }
  132. };
  133. static struct plat_serial8250_port ixdp425_uart_data[] = {
  134. {
  135. .mapbase = IXP4XX_UART1_BASE_PHYS,
  136. .membase = (char *)IXP4XX_UART1_BASE_VIRT + REG_OFFSET,
  137. .irq = IRQ_IXP4XX_UART1,
  138. .flags = UPF_BOOT_AUTOCONF | UPF_SKIP_TEST,
  139. .iotype = UPIO_MEM,
  140. .regshift = 2,
  141. .uartclk = IXP4XX_UART_XTAL,
  142. },
  143. {
  144. .mapbase = IXP4XX_UART2_BASE_PHYS,
  145. .membase = (char *)IXP4XX_UART2_BASE_VIRT + REG_OFFSET,
  146. .irq = IRQ_IXP4XX_UART2,
  147. .flags = UPF_BOOT_AUTOCONF | UPF_SKIP_TEST,
  148. .iotype = UPIO_MEM,
  149. .regshift = 2,
  150. .uartclk = IXP4XX_UART_XTAL,
  151. },
  152. { },
  153. };
  154. static struct platform_device ixdp425_uart = {
  155. .name = "serial8250",
  156. .id = PLAT8250_DEV_PLATFORM,
  157. .dev.platform_data = ixdp425_uart_data,
  158. .num_resources = 2,
  159. .resource = ixdp425_uart_resources
  160. };
  161. /* Built-in 10/100 Ethernet MAC interfaces */
  162. static struct eth_plat_info ixdp425_plat_eth[] = {
  163. {
  164. .phy = 0,
  165. .rxq = 3,
  166. .txreadyq = 20,
  167. }, {
  168. .phy = 1,
  169. .rxq = 4,
  170. .txreadyq = 21,
  171. }
  172. };
  173. static struct platform_device ixdp425_eth[] = {
  174. {
  175. .name = "ixp4xx_eth",
  176. .id = IXP4XX_ETH_NPEB,
  177. .dev.platform_data = ixdp425_plat_eth,
  178. }, {
  179. .name = "ixp4xx_eth",
  180. .id = IXP4XX_ETH_NPEC,
  181. .dev.platform_data = ixdp425_plat_eth + 1,
  182. }
  183. };
  184. static struct platform_device *ixdp425_devices[] __initdata = {
  185. &ixdp425_i2c_gpio,
  186. &ixdp425_flash,
  187. #if defined(CONFIG_MTD_NAND_PLATFORM) || \
  188. defined(CONFIG_MTD_NAND_PLATFORM_MODULE)
  189. &ixdp425_flash_nand,
  190. #endif
  191. &ixdp425_uart,
  192. &ixdp425_eth[0],
  193. &ixdp425_eth[1],
  194. };
  195. static void __init ixdp425_init(void)
  196. {
  197. ixp4xx_sys_init();
  198. ixdp425_flash_resource.start = IXP4XX_EXP_BUS_BASE(0);
  199. ixdp425_flash_resource.end =
  200. IXP4XX_EXP_BUS_BASE(0) + ixp4xx_exp_bus_size - 1;
  201. #if defined(CONFIG_MTD_NAND_PLATFORM) || \
  202. defined(CONFIG_MTD_NAND_PLATFORM_MODULE)
  203. ixdp425_flash_nand_resource.start = IXP4XX_EXP_BUS_BASE(3),
  204. ixdp425_flash_nand_resource.end = IXP4XX_EXP_BUS_BASE(3) + 0x10 - 1;
  205. gpio_line_config(IXDP425_NAND_NCE_PIN, IXP4XX_GPIO_OUT);
  206. /* Configure expansion bus for NAND Flash */
  207. *IXP4XX_EXP_CS3 = IXP4XX_EXP_BUS_CS_EN |
  208. IXP4XX_EXP_BUS_STROBE_T(1) | /* extend by 1 clock */
  209. IXP4XX_EXP_BUS_CYCLES(0) | /* Intel cycles */
  210. IXP4XX_EXP_BUS_SIZE(0) | /* 512bytes addr space*/
  211. IXP4XX_EXP_BUS_WR_EN |
  212. IXP4XX_EXP_BUS_BYTE_EN; /* 8 bit data bus */
  213. #endif
  214. if (cpu_is_ixp43x()) {
  215. ixdp425_uart.num_resources = 1;
  216. ixdp425_uart_data[1].flags = 0;
  217. }
  218. platform_add_devices(ixdp425_devices, ARRAY_SIZE(ixdp425_devices));
  219. }
  220. #ifdef CONFIG_ARCH_IXDP425
  221. MACHINE_START(IXDP425, "Intel IXDP425 Development Platform")
  222. /* Maintainer: MontaVista Software, Inc. */
  223. .map_io = ixp4xx_map_io,
  224. .init_irq = ixp4xx_init_irq,
  225. .timer = &ixp4xx_timer,
  226. .boot_params = 0x0100,
  227. .init_machine = ixdp425_init,
  228. MACHINE_END
  229. #endif
  230. #ifdef CONFIG_MACH_IXDP465
  231. MACHINE_START(IXDP465, "Intel IXDP465 Development Platform")
  232. /* Maintainer: MontaVista Software, Inc. */
  233. .map_io = ixp4xx_map_io,
  234. .init_irq = ixp4xx_init_irq,
  235. .timer = &ixp4xx_timer,
  236. .boot_params = 0x0100,
  237. .init_machine = ixdp425_init,
  238. MACHINE_END
  239. #endif
  240. #ifdef CONFIG_ARCH_PRPMC1100
  241. MACHINE_START(IXCDP1100, "Intel IXCDP1100 Development Platform")
  242. /* Maintainer: MontaVista Software, Inc. */
  243. .map_io = ixp4xx_map_io,
  244. .init_irq = ixp4xx_init_irq,
  245. .timer = &ixp4xx_timer,
  246. .boot_params = 0x0100,
  247. .init_machine = ixdp425_init,
  248. MACHINE_END
  249. #endif
  250. #ifdef CONFIG_MACH_KIXRP435
  251. MACHINE_START(KIXRP435, "Intel KIXRP435 Reference Platform")
  252. /* Maintainer: MontaVista Software, Inc. */
  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