realview_pbx.c 9.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335
  1. /*
  2. * arch/arm/mach-realview/realview_pbx.c
  3. *
  4. * Copyright (C) 2009 ARM Limited
  5. * Copyright (C) 2000 Deep Blue Solutions Ltd
  6. *
  7. * This program is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License version 2 as
  9. * published by the Free Software Foundation.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU General Public License
  17. * along with this program; if not, write to the Free Software
  18. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  19. */
  20. #include <linux/init.h>
  21. #include <linux/platform_device.h>
  22. #include <linux/sysdev.h>
  23. #include <linux/amba/bus.h>
  24. #include <linux/io.h>
  25. #include <asm/irq.h>
  26. #include <asm/leds.h>
  27. #include <asm/mach-types.h>
  28. #include <asm/hardware/gic.h>
  29. #include <asm/hardware/cache-l2x0.h>
  30. #include <asm/mach/arch.h>
  31. #include <asm/mach/map.h>
  32. #include <asm/mach/mmc.h>
  33. #include <asm/mach/time.h>
  34. #include <mach/hardware.h>
  35. #include <mach/board-pbx.h>
  36. #include <mach/irqs.h>
  37. #include "core.h"
  38. static struct map_desc realview_pbx_io_desc[] __initdata = {
  39. {
  40. .virtual = IO_ADDRESS(REALVIEW_SYS_BASE),
  41. .pfn = __phys_to_pfn(REALVIEW_SYS_BASE),
  42. .length = SZ_4K,
  43. .type = MT_DEVICE,
  44. }, {
  45. .virtual = IO_ADDRESS(REALVIEW_PBX_GIC_CPU_BASE),
  46. .pfn = __phys_to_pfn(REALVIEW_PBX_GIC_CPU_BASE),
  47. .length = SZ_4K,
  48. .type = MT_DEVICE,
  49. }, {
  50. .virtual = IO_ADDRESS(REALVIEW_PBX_GIC_DIST_BASE),
  51. .pfn = __phys_to_pfn(REALVIEW_PBX_GIC_DIST_BASE),
  52. .length = SZ_4K,
  53. .type = MT_DEVICE,
  54. }, {
  55. .virtual = IO_ADDRESS(REALVIEW_SCTL_BASE),
  56. .pfn = __phys_to_pfn(REALVIEW_SCTL_BASE),
  57. .length = SZ_4K,
  58. .type = MT_DEVICE,
  59. }, {
  60. .virtual = IO_ADDRESS(REALVIEW_PBX_TIMER0_1_BASE),
  61. .pfn = __phys_to_pfn(REALVIEW_PBX_TIMER0_1_BASE),
  62. .length = SZ_4K,
  63. .type = MT_DEVICE,
  64. }, {
  65. .virtual = IO_ADDRESS(REALVIEW_PBX_TIMER2_3_BASE),
  66. .pfn = __phys_to_pfn(REALVIEW_PBX_TIMER2_3_BASE),
  67. .length = SZ_4K,
  68. .type = MT_DEVICE,
  69. },
  70. #ifdef CONFIG_PCI
  71. {
  72. .virtual = PCIX_UNIT_BASE,
  73. .pfn = __phys_to_pfn(REALVIEW_PBX_PCI_BASE),
  74. .length = REALVIEW_PBX_PCI_BASE_SIZE,
  75. .type = MT_DEVICE,
  76. },
  77. #endif
  78. #ifdef CONFIG_DEBUG_LL
  79. {
  80. .virtual = IO_ADDRESS(REALVIEW_PBX_UART0_BASE),
  81. .pfn = __phys_to_pfn(REALVIEW_PBX_UART0_BASE),
  82. .length = SZ_4K,
  83. .type = MT_DEVICE,
  84. },
  85. #endif
  86. };
  87. static struct map_desc realview_local_io_desc[] __initdata = {
  88. {
  89. .virtual = IO_ADDRESS(REALVIEW_PBX_TILE_GIC_CPU_BASE),
  90. .pfn = __phys_to_pfn(REALVIEW_PBX_TILE_GIC_CPU_BASE),
  91. .length = SZ_4K,
  92. .type = MT_DEVICE,
  93. }, {
  94. .virtual = IO_ADDRESS(REALVIEW_PBX_TILE_GIC_DIST_BASE),
  95. .pfn = __phys_to_pfn(REALVIEW_PBX_TILE_GIC_DIST_BASE),
  96. .length = SZ_4K,
  97. .type = MT_DEVICE,
  98. }, {
  99. .virtual = IO_ADDRESS(REALVIEW_PBX_TILE_L220_BASE),
  100. .pfn = __phys_to_pfn(REALVIEW_PBX_TILE_L220_BASE),
  101. .length = SZ_8K,
  102. .type = MT_DEVICE,
  103. }
  104. };
  105. static void __init realview_pbx_map_io(void)
  106. {
  107. iotable_init(realview_pbx_io_desc, ARRAY_SIZE(realview_pbx_io_desc));
  108. if (core_tile_pbx11mp() || core_tile_pbxa9mp())
  109. iotable_init(realview_local_io_desc, ARRAY_SIZE(realview_local_io_desc));
  110. }
  111. /*
  112. * RealView PBXCore AMBA devices
  113. */
  114. #define GPIO2_IRQ { IRQ_PBX_GPIO2, NO_IRQ }
  115. #define GPIO2_DMA { 0, 0 }
  116. #define GPIO3_IRQ { IRQ_PBX_GPIO3, NO_IRQ }
  117. #define GPIO3_DMA { 0, 0 }
  118. #define AACI_IRQ { IRQ_PBX_AACI, NO_IRQ }
  119. #define AACI_DMA { 0x80, 0x81 }
  120. #define MMCI0_IRQ { IRQ_PBX_MMCI0A, IRQ_PBX_MMCI0B }
  121. #define MMCI0_DMA { 0x84, 0 }
  122. #define KMI0_IRQ { IRQ_PBX_KMI0, NO_IRQ }
  123. #define KMI0_DMA { 0, 0 }
  124. #define KMI1_IRQ { IRQ_PBX_KMI1, NO_IRQ }
  125. #define KMI1_DMA { 0, 0 }
  126. #define PBX_SMC_IRQ { NO_IRQ, NO_IRQ }
  127. #define PBX_SMC_DMA { 0, 0 }
  128. #define MPMC_IRQ { NO_IRQ, NO_IRQ }
  129. #define MPMC_DMA { 0, 0 }
  130. #define PBX_CLCD_IRQ { IRQ_PBX_CLCD, NO_IRQ }
  131. #define PBX_CLCD_DMA { 0, 0 }
  132. #define DMAC_IRQ { IRQ_PBX_DMAC, NO_IRQ }
  133. #define DMAC_DMA { 0, 0 }
  134. #define SCTL_IRQ { NO_IRQ, NO_IRQ }
  135. #define SCTL_DMA { 0, 0 }
  136. #define PBX_WATCHDOG_IRQ { IRQ_PBX_WATCHDOG, NO_IRQ }
  137. #define PBX_WATCHDOG_DMA { 0, 0 }
  138. #define PBX_GPIO0_IRQ { IRQ_PBX_GPIO0, NO_IRQ }
  139. #define PBX_GPIO0_DMA { 0, 0 }
  140. #define GPIO1_IRQ { IRQ_PBX_GPIO1, NO_IRQ }
  141. #define GPIO1_DMA { 0, 0 }
  142. #define PBX_RTC_IRQ { IRQ_PBX_RTC, NO_IRQ }
  143. #define PBX_RTC_DMA { 0, 0 }
  144. #define SCI_IRQ { IRQ_PBX_SCI, NO_IRQ }
  145. #define SCI_DMA { 7, 6 }
  146. #define PBX_UART0_IRQ { IRQ_PBX_UART0, NO_IRQ }
  147. #define PBX_UART0_DMA { 15, 14 }
  148. #define PBX_UART1_IRQ { IRQ_PBX_UART1, NO_IRQ }
  149. #define PBX_UART1_DMA { 13, 12 }
  150. #define PBX_UART2_IRQ { IRQ_PBX_UART2, NO_IRQ }
  151. #define PBX_UART2_DMA { 11, 10 }
  152. #define PBX_UART3_IRQ { IRQ_PBX_UART3, NO_IRQ }
  153. #define PBX_UART3_DMA { 0x86, 0x87 }
  154. #define PBX_SSP_IRQ { IRQ_PBX_SSP, NO_IRQ }
  155. #define PBX_SSP_DMA { 9, 8 }
  156. /* FPGA Primecells */
  157. AMBA_DEVICE(aaci, "fpga:04", AACI, NULL);
  158. AMBA_DEVICE(mmc0, "fpga:05", MMCI0, &realview_mmc0_plat_data);
  159. AMBA_DEVICE(kmi0, "fpga:06", KMI0, NULL);
  160. AMBA_DEVICE(kmi1, "fpga:07", KMI1, NULL);
  161. AMBA_DEVICE(uart3, "fpga:09", PBX_UART3, NULL);
  162. /* DevChip Primecells */
  163. AMBA_DEVICE(smc, "dev:00", PBX_SMC, NULL);
  164. AMBA_DEVICE(sctl, "dev:e0", SCTL, NULL);
  165. AMBA_DEVICE(wdog, "dev:e1", PBX_WATCHDOG, NULL);
  166. AMBA_DEVICE(gpio0, "dev:e4", PBX_GPIO0, NULL);
  167. AMBA_DEVICE(gpio1, "dev:e5", GPIO1, NULL);
  168. AMBA_DEVICE(gpio2, "dev:e6", GPIO2, NULL);
  169. AMBA_DEVICE(rtc, "dev:e8", PBX_RTC, NULL);
  170. AMBA_DEVICE(sci0, "dev:f0", SCI, NULL);
  171. AMBA_DEVICE(uart0, "dev:f1", PBX_UART0, NULL);
  172. AMBA_DEVICE(uart1, "dev:f2", PBX_UART1, NULL);
  173. AMBA_DEVICE(uart2, "dev:f3", PBX_UART2, NULL);
  174. AMBA_DEVICE(ssp0, "dev:f4", PBX_SSP, NULL);
  175. /* Primecells on the NEC ISSP chip */
  176. AMBA_DEVICE(clcd, "issp:20", PBX_CLCD, &clcd_plat_data);
  177. AMBA_DEVICE(dmac, "issp:30", DMAC, NULL);
  178. static struct amba_device *amba_devs[] __initdata = {
  179. &dmac_device,
  180. &uart0_device,
  181. &uart1_device,
  182. &uart2_device,
  183. &uart3_device,
  184. &smc_device,
  185. &clcd_device,
  186. &sctl_device,
  187. &wdog_device,
  188. &gpio0_device,
  189. &gpio1_device,
  190. &gpio2_device,
  191. &rtc_device,
  192. &sci0_device,
  193. &ssp0_device,
  194. &aaci_device,
  195. &mmc0_device,
  196. &kmi0_device,
  197. &kmi1_device,
  198. };
  199. /*
  200. * RealView PB-X platform devices
  201. */
  202. static struct resource realview_pbx_flash_resources[] = {
  203. [0] = {
  204. .start = REALVIEW_PBX_FLASH0_BASE,
  205. .end = REALVIEW_PBX_FLASH0_BASE + REALVIEW_PBX_FLASH0_SIZE - 1,
  206. .flags = IORESOURCE_MEM,
  207. },
  208. [1] = {
  209. .start = REALVIEW_PBX_FLASH1_BASE,
  210. .end = REALVIEW_PBX_FLASH1_BASE + REALVIEW_PBX_FLASH1_SIZE - 1,
  211. .flags = IORESOURCE_MEM,
  212. },
  213. };
  214. static struct resource realview_pbx_smsc911x_resources[] = {
  215. [0] = {
  216. .start = REALVIEW_PBX_ETH_BASE,
  217. .end = REALVIEW_PBX_ETH_BASE + SZ_64K - 1,
  218. .flags = IORESOURCE_MEM,
  219. },
  220. [1] = {
  221. .start = IRQ_PBX_ETH,
  222. .end = IRQ_PBX_ETH,
  223. .flags = IORESOURCE_IRQ,
  224. },
  225. };
  226. static struct resource realview_pbx_isp1761_resources[] = {
  227. [0] = {
  228. .start = REALVIEW_PBX_USB_BASE,
  229. .end = REALVIEW_PBX_USB_BASE + SZ_128K - 1,
  230. .flags = IORESOURCE_MEM,
  231. },
  232. [1] = {
  233. .start = IRQ_PBX_USB,
  234. .end = IRQ_PBX_USB,
  235. .flags = IORESOURCE_IRQ,
  236. },
  237. };
  238. static void __init gic_init_irq(void)
  239. {
  240. /* ARM PBX on-board GIC */
  241. if (core_tile_pbx11mp() || core_tile_pbxa9mp()) {
  242. gic_cpu_base_addr = __io_address(REALVIEW_PBX_TILE_GIC_CPU_BASE);
  243. gic_dist_init(0, __io_address(REALVIEW_PBX_TILE_GIC_DIST_BASE),
  244. 29);
  245. gic_cpu_init(0, __io_address(REALVIEW_PBX_TILE_GIC_CPU_BASE));
  246. } else {
  247. gic_cpu_base_addr = __io_address(REALVIEW_PBX_GIC_CPU_BASE);
  248. gic_dist_init(0, __io_address(REALVIEW_PBX_GIC_DIST_BASE),
  249. IRQ_PBX_GIC_START);
  250. gic_cpu_init(0, __io_address(REALVIEW_PBX_GIC_CPU_BASE));
  251. }
  252. }
  253. static void __init realview_pbx_timer_init(void)
  254. {
  255. timer0_va_base = __io_address(REALVIEW_PBX_TIMER0_1_BASE);
  256. timer1_va_base = __io_address(REALVIEW_PBX_TIMER0_1_BASE) + 0x20;
  257. timer2_va_base = __io_address(REALVIEW_PBX_TIMER2_3_BASE);
  258. timer3_va_base = __io_address(REALVIEW_PBX_TIMER2_3_BASE) + 0x20;
  259. #ifdef CONFIG_LOCAL_TIMERS
  260. if (core_tile_pbx11mp() || core_tile_pbxa9mp())
  261. twd_base = __io_address(REALVIEW_PBX_TILE_TWD_BASE);
  262. #endif
  263. realview_timer_init(IRQ_PBX_TIMER0_1);
  264. }
  265. static struct sys_timer realview_pbx_timer = {
  266. .init = realview_pbx_timer_init,
  267. };
  268. static void __init realview_pbx_init(void)
  269. {
  270. int i;
  271. #ifdef CONFIG_CACHE_L2X0
  272. if (core_tile_pbxa9mp()) {
  273. void __iomem *l2x0_base =
  274. __io_address(REALVIEW_PBX_TILE_L220_BASE);
  275. /* set RAM latencies to 1 cycle for eASIC */
  276. writel(0, l2x0_base + L2X0_TAG_LATENCY_CTRL);
  277. writel(0, l2x0_base + L2X0_DATA_LATENCY_CTRL);
  278. /* 16KB way size, 8-way associativity, parity disabled
  279. * Bits: .. 0 0 0 0 1 00 1 0 1 001 0 000 0 .... .... .... */
  280. l2x0_init(l2x0_base, 0x02520000, 0xc0000fff);
  281. }
  282. #endif
  283. realview_flash_register(realview_pbx_flash_resources,
  284. ARRAY_SIZE(realview_pbx_flash_resources));
  285. realview_eth_register(NULL, realview_pbx_smsc911x_resources);
  286. platform_device_register(&realview_i2c_device);
  287. platform_device_register(&realview_cf_device);
  288. realview_usb_register(realview_pbx_isp1761_resources);
  289. for (i = 0; i < ARRAY_SIZE(amba_devs); i++) {
  290. struct amba_device *d = amba_devs[i];
  291. amba_device_register(d, &iomem_resource);
  292. }
  293. #ifdef CONFIG_LEDS
  294. leds_event = realview_leds_event;
  295. #endif
  296. }
  297. MACHINE_START(REALVIEW_PBX, "ARM-RealView PBX")
  298. /* Maintainer: ARM Ltd/Deep Blue Solutions Ltd */
  299. .phys_io = REALVIEW_PBX_UART0_BASE,
  300. .io_pg_offst = (IO_ADDRESS(REALVIEW_PBX_UART0_BASE) >> 18) & 0xfffc,
  301. .boot_params = PHYS_OFFSET + 0x00000100,
  302. .map_io = realview_pbx_map_io,
  303. .init_irq = gic_init_irq,
  304. .timer = &realview_pbx_timer,
  305. .init_machine = realview_pbx_init,
  306. MACHINE_END