integrator_cp.c 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516
  1. /*
  2. * linux/arch/arm/mach-integrator/integrator_cp.c
  3. *
  4. * Copyright (C) 2003 Deep Blue Solutions Ltd
  5. *
  6. * This program is free software; you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License as published by
  8. * the Free Software Foundation; either version 2 of the License.
  9. */
  10. #include <linux/types.h>
  11. #include <linux/kernel.h>
  12. #include <linux/init.h>
  13. #include <linux/list.h>
  14. #include <linux/platform_device.h>
  15. #include <linux/dma-mapping.h>
  16. #include <linux/string.h>
  17. #include <linux/device.h>
  18. #include <linux/amba/bus.h>
  19. #include <linux/amba/kmi.h>
  20. #include <linux/amba/clcd.h>
  21. #include <linux/amba/mmci.h>
  22. #include <linux/io.h>
  23. #include <linux/gfp.h>
  24. #include <linux/mtd/physmap.h>
  25. #include <linux/platform_data/clk-integrator.h>
  26. #include <linux/of_irq.h>
  27. #include <linux/of_address.h>
  28. #include <linux/of_platform.h>
  29. #include <mach/hardware.h>
  30. #include <mach/platform.h>
  31. #include <asm/setup.h>
  32. #include <asm/mach-types.h>
  33. #include <asm/hardware/arm_timer.h>
  34. #include <asm/hardware/icst.h>
  35. #include <mach/cm.h>
  36. #include <mach/lm.h>
  37. #include <mach/irqs.h>
  38. #include <asm/mach/arch.h>
  39. #include <asm/mach/irq.h>
  40. #include <asm/mach/map.h>
  41. #include <asm/mach/time.h>
  42. #include <asm/hardware/timer-sp.h>
  43. #include <plat/clcd.h>
  44. #include <plat/fpga-irq.h>
  45. #include <plat/sched_clock.h>
  46. #include "common.h"
  47. #define INTCP_PA_FLASH_BASE 0x24000000
  48. #define INTCP_PA_CLCD_BASE 0xc0000000
  49. #define INTCP_VA_CTRL_BASE __io_address(INTEGRATOR_CP_CTL_BASE)
  50. #define INTCP_FLASHPROG 0x04
  51. #define CINTEGRATOR_FLASHPROG_FLVPPEN (1 << 0)
  52. #define CINTEGRATOR_FLASHPROG_FLWREN (1 << 1)
  53. /*
  54. * Logical Physical
  55. * f1000000 10000000 Core module registers
  56. * f1100000 11000000 System controller registers
  57. * f1200000 12000000 EBI registers
  58. * f1300000 13000000 Counter/Timer
  59. * f1400000 14000000 Interrupt controller
  60. * f1600000 16000000 UART 0
  61. * f1700000 17000000 UART 1
  62. * f1a00000 1a000000 Debug LEDs
  63. * fc900000 c9000000 GPIO
  64. * fca00000 ca000000 SIC
  65. * fcb00000 cb000000 CP system control
  66. */
  67. static struct map_desc intcp_io_desc[] __initdata = {
  68. {
  69. .virtual = IO_ADDRESS(INTEGRATOR_HDR_BASE),
  70. .pfn = __phys_to_pfn(INTEGRATOR_HDR_BASE),
  71. .length = SZ_4K,
  72. .type = MT_DEVICE
  73. }, {
  74. .virtual = IO_ADDRESS(INTEGRATOR_SC_BASE),
  75. .pfn = __phys_to_pfn(INTEGRATOR_SC_BASE),
  76. .length = SZ_4K,
  77. .type = MT_DEVICE
  78. }, {
  79. .virtual = IO_ADDRESS(INTEGRATOR_EBI_BASE),
  80. .pfn = __phys_to_pfn(INTEGRATOR_EBI_BASE),
  81. .length = SZ_4K,
  82. .type = MT_DEVICE
  83. }, {
  84. .virtual = IO_ADDRESS(INTEGRATOR_CT_BASE),
  85. .pfn = __phys_to_pfn(INTEGRATOR_CT_BASE),
  86. .length = SZ_4K,
  87. .type = MT_DEVICE
  88. }, {
  89. .virtual = IO_ADDRESS(INTEGRATOR_IC_BASE),
  90. .pfn = __phys_to_pfn(INTEGRATOR_IC_BASE),
  91. .length = SZ_4K,
  92. .type = MT_DEVICE
  93. }, {
  94. .virtual = IO_ADDRESS(INTEGRATOR_UART0_BASE),
  95. .pfn = __phys_to_pfn(INTEGRATOR_UART0_BASE),
  96. .length = SZ_4K,
  97. .type = MT_DEVICE
  98. }, {
  99. .virtual = IO_ADDRESS(INTEGRATOR_UART1_BASE),
  100. .pfn = __phys_to_pfn(INTEGRATOR_UART1_BASE),
  101. .length = SZ_4K,
  102. .type = MT_DEVICE
  103. }, {
  104. .virtual = IO_ADDRESS(INTEGRATOR_DBG_BASE),
  105. .pfn = __phys_to_pfn(INTEGRATOR_DBG_BASE),
  106. .length = SZ_4K,
  107. .type = MT_DEVICE
  108. }, {
  109. .virtual = IO_ADDRESS(INTEGRATOR_CP_GPIO_BASE),
  110. .pfn = __phys_to_pfn(INTEGRATOR_CP_GPIO_BASE),
  111. .length = SZ_4K,
  112. .type = MT_DEVICE
  113. }, {
  114. .virtual = IO_ADDRESS(INTEGRATOR_CP_SIC_BASE),
  115. .pfn = __phys_to_pfn(INTEGRATOR_CP_SIC_BASE),
  116. .length = SZ_4K,
  117. .type = MT_DEVICE
  118. }, {
  119. .virtual = IO_ADDRESS(INTEGRATOR_CP_CTL_BASE),
  120. .pfn = __phys_to_pfn(INTEGRATOR_CP_CTL_BASE),
  121. .length = SZ_4K,
  122. .type = MT_DEVICE
  123. }
  124. };
  125. static void __init intcp_map_io(void)
  126. {
  127. iotable_init(intcp_io_desc, ARRAY_SIZE(intcp_io_desc));
  128. }
  129. /*
  130. * Flash handling.
  131. */
  132. static int intcp_flash_init(struct platform_device *dev)
  133. {
  134. u32 val;
  135. val = readl(INTCP_VA_CTRL_BASE + INTCP_FLASHPROG);
  136. val |= CINTEGRATOR_FLASHPROG_FLWREN;
  137. writel(val, INTCP_VA_CTRL_BASE + INTCP_FLASHPROG);
  138. return 0;
  139. }
  140. static void intcp_flash_exit(struct platform_device *dev)
  141. {
  142. u32 val;
  143. val = readl(INTCP_VA_CTRL_BASE + INTCP_FLASHPROG);
  144. val &= ~(CINTEGRATOR_FLASHPROG_FLVPPEN|CINTEGRATOR_FLASHPROG_FLWREN);
  145. writel(val, INTCP_VA_CTRL_BASE + INTCP_FLASHPROG);
  146. }
  147. static void intcp_flash_set_vpp(struct platform_device *pdev, int on)
  148. {
  149. u32 val;
  150. val = readl(INTCP_VA_CTRL_BASE + INTCP_FLASHPROG);
  151. if (on)
  152. val |= CINTEGRATOR_FLASHPROG_FLVPPEN;
  153. else
  154. val &= ~CINTEGRATOR_FLASHPROG_FLVPPEN;
  155. writel(val, INTCP_VA_CTRL_BASE + INTCP_FLASHPROG);
  156. }
  157. static struct physmap_flash_data intcp_flash_data = {
  158. .width = 4,
  159. .init = intcp_flash_init,
  160. .exit = intcp_flash_exit,
  161. .set_vpp = intcp_flash_set_vpp,
  162. };
  163. /*
  164. * It seems that the card insertion interrupt remains active after
  165. * we've acknowledged it. We therefore ignore the interrupt, and
  166. * rely on reading it from the SIC. This also means that we must
  167. * clear the latched interrupt.
  168. */
  169. static unsigned int mmc_status(struct device *dev)
  170. {
  171. unsigned int status = readl(__io_address(0xca000000 + 4));
  172. writel(8, __io_address(INTEGRATOR_CP_CTL_BASE + 8));
  173. return status & 8;
  174. }
  175. static struct mmci_platform_data mmc_data = {
  176. .ocr_mask = MMC_VDD_32_33|MMC_VDD_33_34,
  177. .status = mmc_status,
  178. .gpio_wp = -1,
  179. .gpio_cd = -1,
  180. };
  181. /*
  182. * CLCD support
  183. */
  184. /*
  185. * Ensure VGA is selected.
  186. */
  187. static void cp_clcd_enable(struct clcd_fb *fb)
  188. {
  189. struct fb_var_screeninfo *var = &fb->fb.var;
  190. u32 val = CM_CTRL_STATIC1 | CM_CTRL_STATIC2;
  191. if (var->bits_per_pixel <= 8 ||
  192. (var->bits_per_pixel == 16 && var->green.length == 5))
  193. /* Pseudocolor, RGB555, BGR555 */
  194. val |= CM_CTRL_LCDMUXSEL_VGA555_TFT555;
  195. else if (fb->fb.var.bits_per_pixel <= 16)
  196. /* truecolor RGB565 */
  197. val |= CM_CTRL_LCDMUXSEL_VGA565_TFT555;
  198. else
  199. val = 0; /* no idea for this, don't trust the docs */
  200. cm_control(CM_CTRL_LCDMUXSEL_MASK|
  201. CM_CTRL_LCDEN0|
  202. CM_CTRL_LCDEN1|
  203. CM_CTRL_STATIC1|
  204. CM_CTRL_STATIC2|
  205. CM_CTRL_STATIC|
  206. CM_CTRL_n24BITEN, val);
  207. }
  208. static int cp_clcd_setup(struct clcd_fb *fb)
  209. {
  210. fb->panel = versatile_clcd_get_panel("VGA");
  211. if (!fb->panel)
  212. return -EINVAL;
  213. return versatile_clcd_setup_dma(fb, SZ_1M);
  214. }
  215. static struct clcd_board clcd_data = {
  216. .name = "Integrator/CP",
  217. .caps = CLCD_CAP_5551 | CLCD_CAP_RGB565 | CLCD_CAP_888,
  218. .check = clcdfb_check,
  219. .decode = clcdfb_decode,
  220. .enable = cp_clcd_enable,
  221. .setup = cp_clcd_setup,
  222. .mmap = versatile_clcd_mmap_dma,
  223. .remove = versatile_clcd_remove_dma,
  224. };
  225. #define REFCOUNTER (__io_address(INTEGRATOR_HDR_BASE) + 0x28)
  226. static void __init intcp_init_early(void)
  227. {
  228. #ifdef CONFIG_PLAT_VERSATILE_SCHED_CLOCK
  229. versatile_sched_clock_init(REFCOUNTER, 24000000);
  230. #endif
  231. }
  232. #ifdef CONFIG_OF
  233. static void __init intcp_timer_init_of(void)
  234. {
  235. struct device_node *node;
  236. const char *path;
  237. void __iomem *base;
  238. int err;
  239. int irq;
  240. err = of_property_read_string(of_aliases,
  241. "arm,timer-primary", &path);
  242. if (WARN_ON(err))
  243. return;
  244. node = of_find_node_by_path(path);
  245. base = of_iomap(node, 0);
  246. if (WARN_ON(!base))
  247. return;
  248. writel(0, base + TIMER_CTRL);
  249. sp804_clocksource_init(base, node->name);
  250. err = of_property_read_string(of_aliases,
  251. "arm,timer-secondary", &path);
  252. if (WARN_ON(err))
  253. return;
  254. node = of_find_node_by_path(path);
  255. base = of_iomap(node, 0);
  256. if (WARN_ON(!base))
  257. return;
  258. irq = irq_of_parse_and_map(node, 0);
  259. writel(0, base + TIMER_CTRL);
  260. sp804_clockevents_init(base, irq, node->name);
  261. }
  262. static struct sys_timer cp_of_timer = {
  263. .init = intcp_timer_init_of,
  264. };
  265. static const struct of_device_id fpga_irq_of_match[] __initconst = {
  266. { .compatible = "arm,versatile-fpga-irq", .data = fpga_irq_of_init, },
  267. { /* Sentinel */ }
  268. };
  269. static void __init intcp_init_irq_of(void)
  270. {
  271. of_irq_init(fpga_irq_of_match);
  272. integrator_clk_init(true);
  273. }
  274. /*
  275. * For the Device Tree, add in the UART, MMC and CLCD specifics as AUXDATA
  276. * and enforce the bus names since these are used for clock lookups.
  277. */
  278. static struct of_dev_auxdata intcp_auxdata_lookup[] __initdata = {
  279. OF_DEV_AUXDATA("arm,primecell", INTEGRATOR_RTC_BASE,
  280. "rtc", NULL),
  281. OF_DEV_AUXDATA("arm,primecell", INTEGRATOR_UART0_BASE,
  282. "uart0", &integrator_uart_data),
  283. OF_DEV_AUXDATA("arm,primecell", INTEGRATOR_UART1_BASE,
  284. "uart1", &integrator_uart_data),
  285. OF_DEV_AUXDATA("arm,primecell", KMI0_BASE,
  286. "kmi0", NULL),
  287. OF_DEV_AUXDATA("arm,primecell", KMI1_BASE,
  288. "kmi1", NULL),
  289. OF_DEV_AUXDATA("arm,primecell", INTEGRATOR_CP_MMC_BASE,
  290. "mmci", &mmc_data),
  291. OF_DEV_AUXDATA("arm,primecell", INTEGRATOR_CP_AACI_BASE,
  292. "aaci", &mmc_data),
  293. OF_DEV_AUXDATA("arm,primecell", INTCP_PA_CLCD_BASE,
  294. "clcd", &clcd_data),
  295. OF_DEV_AUXDATA("cfi-flash", INTCP_PA_FLASH_BASE,
  296. "physmap-flash", &intcp_flash_data),
  297. { /* sentinel */ },
  298. };
  299. static void __init intcp_init_of(void)
  300. {
  301. of_platform_populate(NULL, of_default_bus_match_table,
  302. intcp_auxdata_lookup, NULL);
  303. }
  304. static const char * intcp_dt_board_compat[] = {
  305. "arm,integrator-cp",
  306. NULL,
  307. };
  308. DT_MACHINE_START(INTEGRATOR_CP_DT, "ARM Integrator/CP (Device Tree)")
  309. .reserve = integrator_reserve,
  310. .map_io = intcp_map_io,
  311. .nr_irqs = NR_IRQS_INTEGRATOR_CP,
  312. .init_early = intcp_init_early,
  313. .init_irq = intcp_init_irq_of,
  314. .handle_irq = fpga_handle_irq,
  315. .timer = &cp_of_timer,
  316. .init_machine = intcp_init_of,
  317. .restart = integrator_restart,
  318. .dt_compat = intcp_dt_board_compat,
  319. MACHINE_END
  320. #endif
  321. #ifdef CONFIG_ATAGS
  322. /*
  323. * This is where non-devicetree initialization code is collected and stashed
  324. * for eventual deletion.
  325. */
  326. #define INTCP_FLASH_SIZE SZ_32M
  327. static struct resource intcp_flash_resource = {
  328. .start = INTCP_PA_FLASH_BASE,
  329. .end = INTCP_PA_FLASH_BASE + INTCP_FLASH_SIZE - 1,
  330. .flags = IORESOURCE_MEM,
  331. };
  332. static struct platform_device intcp_flash_device = {
  333. .name = "physmap-flash",
  334. .id = 0,
  335. .dev = {
  336. .platform_data = &intcp_flash_data,
  337. },
  338. .num_resources = 1,
  339. .resource = &intcp_flash_resource,
  340. };
  341. #define INTCP_ETH_SIZE 0x10
  342. static struct resource smc91x_resources[] = {
  343. [0] = {
  344. .start = INTEGRATOR_CP_ETH_BASE,
  345. .end = INTEGRATOR_CP_ETH_BASE + INTCP_ETH_SIZE - 1,
  346. .flags = IORESOURCE_MEM,
  347. },
  348. [1] = {
  349. .start = IRQ_CP_ETHINT,
  350. .end = IRQ_CP_ETHINT,
  351. .flags = IORESOURCE_IRQ,
  352. },
  353. };
  354. static struct platform_device smc91x_device = {
  355. .name = "smc91x",
  356. .id = 0,
  357. .num_resources = ARRAY_SIZE(smc91x_resources),
  358. .resource = smc91x_resources,
  359. };
  360. static struct platform_device *intcp_devs[] __initdata = {
  361. &intcp_flash_device,
  362. &smc91x_device,
  363. };
  364. #define INTCP_VA_CIC_BASE __io_address(INTEGRATOR_HDR_BASE + 0x40)
  365. #define INTCP_VA_PIC_BASE __io_address(INTEGRATOR_IC_BASE)
  366. #define INTCP_VA_SIC_BASE __io_address(INTEGRATOR_CP_SIC_BASE)
  367. static void __init intcp_init_irq(void)
  368. {
  369. u32 pic_mask, cic_mask, sic_mask;
  370. /* These masks are for the HW IRQ registers */
  371. pic_mask = ~((~0u) << (11 - IRQ_PIC_START));
  372. pic_mask |= (~((~0u) << (29 - 22))) << 22;
  373. cic_mask = ~((~0u) << (1 + IRQ_CIC_END - IRQ_CIC_START));
  374. sic_mask = ~((~0u) << (1 + IRQ_SIC_END - IRQ_SIC_START));
  375. /*
  376. * Disable all interrupt sources
  377. */
  378. writel(0xffffffff, INTCP_VA_PIC_BASE + IRQ_ENABLE_CLEAR);
  379. writel(0xffffffff, INTCP_VA_PIC_BASE + FIQ_ENABLE_CLEAR);
  380. writel(0xffffffff, INTCP_VA_CIC_BASE + IRQ_ENABLE_CLEAR);
  381. writel(0xffffffff, INTCP_VA_CIC_BASE + FIQ_ENABLE_CLEAR);
  382. writel(sic_mask, INTCP_VA_SIC_BASE + IRQ_ENABLE_CLEAR);
  383. writel(sic_mask, INTCP_VA_SIC_BASE + FIQ_ENABLE_CLEAR);
  384. fpga_irq_init(INTCP_VA_PIC_BASE, "PIC", IRQ_PIC_START,
  385. -1, pic_mask, NULL);
  386. fpga_irq_init(INTCP_VA_CIC_BASE, "CIC", IRQ_CIC_START,
  387. -1, cic_mask, NULL);
  388. fpga_irq_init(INTCP_VA_SIC_BASE, "SIC", IRQ_SIC_START,
  389. IRQ_CP_CPPLDINT, sic_mask, NULL);
  390. integrator_clk_init(true);
  391. }
  392. #define TIMER0_VA_BASE __io_address(INTEGRATOR_TIMER0_BASE)
  393. #define TIMER1_VA_BASE __io_address(INTEGRATOR_TIMER1_BASE)
  394. #define TIMER2_VA_BASE __io_address(INTEGRATOR_TIMER2_BASE)
  395. static void __init intcp_timer_init(void)
  396. {
  397. writel(0, TIMER0_VA_BASE + TIMER_CTRL);
  398. writel(0, TIMER1_VA_BASE + TIMER_CTRL);
  399. writel(0, TIMER2_VA_BASE + TIMER_CTRL);
  400. sp804_clocksource_init(TIMER2_VA_BASE, "timer2");
  401. sp804_clockevents_init(TIMER1_VA_BASE, IRQ_TIMERINT1, "timer1");
  402. }
  403. static struct sys_timer cp_timer = {
  404. .init = intcp_timer_init,
  405. };
  406. #define INTEGRATOR_CP_MMC_IRQS { IRQ_CP_MMCIINT0, IRQ_CP_MMCIINT1 }
  407. #define INTEGRATOR_CP_AACI_IRQS { IRQ_CP_AACIINT }
  408. static AMBA_APB_DEVICE(mmc, "mmci", 0, INTEGRATOR_CP_MMC_BASE,
  409. INTEGRATOR_CP_MMC_IRQS, &mmc_data);
  410. static AMBA_APB_DEVICE(aaci, "aaci", 0, INTEGRATOR_CP_AACI_BASE,
  411. INTEGRATOR_CP_AACI_IRQS, NULL);
  412. static AMBA_AHB_DEVICE(clcd, "clcd", 0, INTCP_PA_CLCD_BASE,
  413. { IRQ_CP_CLCDCINT }, &clcd_data);
  414. static struct amba_device *amba_devs[] __initdata = {
  415. &mmc_device,
  416. &aaci_device,
  417. &clcd_device,
  418. };
  419. static void __init intcp_init(void)
  420. {
  421. int i;
  422. platform_add_devices(intcp_devs, ARRAY_SIZE(intcp_devs));
  423. for (i = 0; i < ARRAY_SIZE(amba_devs); i++) {
  424. struct amba_device *d = amba_devs[i];
  425. amba_device_register(d, &iomem_resource);
  426. }
  427. integrator_init(true);
  428. }
  429. MACHINE_START(CINTEGRATOR, "ARM-IntegratorCP")
  430. /* Maintainer: ARM Ltd/Deep Blue Solutions Ltd */
  431. .atag_offset = 0x100,
  432. .reserve = integrator_reserve,
  433. .map_io = intcp_map_io,
  434. .nr_irqs = NR_IRQS_INTEGRATOR_CP,
  435. .init_early = intcp_init_early,
  436. .init_irq = intcp_init_irq,
  437. .handle_irq = fpga_handle_irq,
  438. .timer = &cp_timer,
  439. .init_machine = intcp_init,
  440. .restart = integrator_restart,
  441. MACHINE_END
  442. #endif