integrator_cp.c 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496
  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/sysdev.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/clkdev.h>
  25. #include <mach/hardware.h>
  26. #include <mach/platform.h>
  27. #include <asm/irq.h>
  28. #include <asm/setup.h>
  29. #include <asm/mach-types.h>
  30. #include <asm/hardware/arm_timer.h>
  31. #include <asm/hardware/icst.h>
  32. #include <mach/cm.h>
  33. #include <mach/lm.h>
  34. #include <asm/mach/arch.h>
  35. #include <asm/mach/flash.h>
  36. #include <asm/mach/irq.h>
  37. #include <asm/mach/map.h>
  38. #include <asm/mach/time.h>
  39. #include <asm/hardware/timer-sp.h>
  40. #include <plat/clcd.h>
  41. #include <plat/fpga-irq.h>
  42. #include <plat/sched_clock.h>
  43. #include "common.h"
  44. #define INTCP_PA_FLASH_BASE 0x24000000
  45. #define INTCP_FLASH_SIZE SZ_32M
  46. #define INTCP_PA_CLCD_BASE 0xc0000000
  47. #define INTCP_VA_CIC_BASE __io_address(INTEGRATOR_HDR_BASE + 0x40)
  48. #define INTCP_VA_PIC_BASE __io_address(INTEGRATOR_IC_BASE)
  49. #define INTCP_VA_SIC_BASE __io_address(INTEGRATOR_CP_SIC_BASE)
  50. #define INTCP_ETH_SIZE 0x10
  51. #define INTCP_VA_CTRL_BASE IO_ADDRESS(INTEGRATOR_CP_CTL_BASE)
  52. #define INTCP_FLASHPROG 0x04
  53. #define CINTEGRATOR_FLASHPROG_FLVPPEN (1 << 0)
  54. #define CINTEGRATOR_FLASHPROG_FLWREN (1 << 1)
  55. /*
  56. * Logical Physical
  57. * f1000000 10000000 Core module registers
  58. * f1100000 11000000 System controller registers
  59. * f1200000 12000000 EBI registers
  60. * f1300000 13000000 Counter/Timer
  61. * f1400000 14000000 Interrupt controller
  62. * f1600000 16000000 UART 0
  63. * f1700000 17000000 UART 1
  64. * f1a00000 1a000000 Debug LEDs
  65. * fc900000 c9000000 GPIO
  66. * fca00000 ca000000 SIC
  67. * fcb00000 cb000000 CP system control
  68. */
  69. static struct map_desc intcp_io_desc[] __initdata = {
  70. {
  71. .virtual = IO_ADDRESS(INTEGRATOR_HDR_BASE),
  72. .pfn = __phys_to_pfn(INTEGRATOR_HDR_BASE),
  73. .length = SZ_4K,
  74. .type = MT_DEVICE
  75. }, {
  76. .virtual = IO_ADDRESS(INTEGRATOR_SC_BASE),
  77. .pfn = __phys_to_pfn(INTEGRATOR_SC_BASE),
  78. .length = SZ_4K,
  79. .type = MT_DEVICE
  80. }, {
  81. .virtual = IO_ADDRESS(INTEGRATOR_EBI_BASE),
  82. .pfn = __phys_to_pfn(INTEGRATOR_EBI_BASE),
  83. .length = SZ_4K,
  84. .type = MT_DEVICE
  85. }, {
  86. .virtual = IO_ADDRESS(INTEGRATOR_CT_BASE),
  87. .pfn = __phys_to_pfn(INTEGRATOR_CT_BASE),
  88. .length = SZ_4K,
  89. .type = MT_DEVICE
  90. }, {
  91. .virtual = IO_ADDRESS(INTEGRATOR_IC_BASE),
  92. .pfn = __phys_to_pfn(INTEGRATOR_IC_BASE),
  93. .length = SZ_4K,
  94. .type = MT_DEVICE
  95. }, {
  96. .virtual = IO_ADDRESS(INTEGRATOR_UART0_BASE),
  97. .pfn = __phys_to_pfn(INTEGRATOR_UART0_BASE),
  98. .length = SZ_4K,
  99. .type = MT_DEVICE
  100. }, {
  101. .virtual = IO_ADDRESS(INTEGRATOR_UART1_BASE),
  102. .pfn = __phys_to_pfn(INTEGRATOR_UART1_BASE),
  103. .length = SZ_4K,
  104. .type = MT_DEVICE
  105. }, {
  106. .virtual = IO_ADDRESS(INTEGRATOR_DBG_BASE),
  107. .pfn = __phys_to_pfn(INTEGRATOR_DBG_BASE),
  108. .length = SZ_4K,
  109. .type = MT_DEVICE
  110. }, {
  111. .virtual = IO_ADDRESS(INTEGRATOR_CP_GPIO_BASE),
  112. .pfn = __phys_to_pfn(INTEGRATOR_CP_GPIO_BASE),
  113. .length = SZ_4K,
  114. .type = MT_DEVICE
  115. }, {
  116. .virtual = IO_ADDRESS(INTEGRATOR_CP_SIC_BASE),
  117. .pfn = __phys_to_pfn(INTEGRATOR_CP_SIC_BASE),
  118. .length = SZ_4K,
  119. .type = MT_DEVICE
  120. }, {
  121. .virtual = IO_ADDRESS(INTEGRATOR_CP_CTL_BASE),
  122. .pfn = __phys_to_pfn(INTEGRATOR_CP_CTL_BASE),
  123. .length = SZ_4K,
  124. .type = MT_DEVICE
  125. }
  126. };
  127. static void __init intcp_map_io(void)
  128. {
  129. iotable_init(intcp_io_desc, ARRAY_SIZE(intcp_io_desc));
  130. }
  131. static struct fpga_irq_data cic_irq_data = {
  132. .base = INTCP_VA_CIC_BASE,
  133. .irq_start = IRQ_CIC_START,
  134. .chip.name = "CIC",
  135. };
  136. static struct fpga_irq_data pic_irq_data = {
  137. .base = INTCP_VA_PIC_BASE,
  138. .irq_start = IRQ_PIC_START,
  139. .chip.name = "PIC",
  140. };
  141. static struct fpga_irq_data sic_irq_data = {
  142. .base = INTCP_VA_SIC_BASE,
  143. .irq_start = IRQ_SIC_START,
  144. .chip.name = "SIC",
  145. };
  146. static void __init intcp_init_irq(void)
  147. {
  148. u32 pic_mask, sic_mask;
  149. pic_mask = ~((~0u) << (11 - IRQ_PIC_START));
  150. pic_mask |= (~((~0u) << (29 - 22))) << 22;
  151. sic_mask = ~((~0u) << (1 + IRQ_SIC_END - IRQ_SIC_START));
  152. /*
  153. * Disable all interrupt sources
  154. */
  155. writel(0xffffffff, INTCP_VA_PIC_BASE + IRQ_ENABLE_CLEAR);
  156. writel(0xffffffff, INTCP_VA_PIC_BASE + FIQ_ENABLE_CLEAR);
  157. writel(0xffffffff, INTCP_VA_CIC_BASE + IRQ_ENABLE_CLEAR);
  158. writel(0xffffffff, INTCP_VA_CIC_BASE + FIQ_ENABLE_CLEAR);
  159. writel(sic_mask, INTCP_VA_SIC_BASE + IRQ_ENABLE_CLEAR);
  160. writel(sic_mask, INTCP_VA_SIC_BASE + FIQ_ENABLE_CLEAR);
  161. fpga_irq_init(-1, pic_mask, &pic_irq_data);
  162. fpga_irq_init(-1, ~((~0u) << (1 + IRQ_CIC_END - IRQ_CIC_START)),
  163. &cic_irq_data);
  164. fpga_irq_init(IRQ_CP_CPPLDINT, sic_mask, &sic_irq_data);
  165. }
  166. /*
  167. * Clock handling
  168. */
  169. #define CM_LOCK (__io_address(INTEGRATOR_HDR_BASE)+INTEGRATOR_HDR_LOCK_OFFSET)
  170. #define CM_AUXOSC (__io_address(INTEGRATOR_HDR_BASE)+0x1c)
  171. static const struct icst_params cp_auxvco_params = {
  172. .ref = 24000000,
  173. .vco_max = ICST525_VCO_MAX_5V,
  174. .vco_min = ICST525_VCO_MIN,
  175. .vd_min = 8,
  176. .vd_max = 263,
  177. .rd_min = 3,
  178. .rd_max = 65,
  179. .s2div = icst525_s2div,
  180. .idx2s = icst525_idx2s,
  181. };
  182. static void cp_auxvco_set(struct clk *clk, struct icst_vco vco)
  183. {
  184. u32 val;
  185. val = readl(clk->vcoreg) & ~0x7ffff;
  186. val |= vco.v | (vco.r << 9) | (vco.s << 16);
  187. writel(0xa05f, CM_LOCK);
  188. writel(val, clk->vcoreg);
  189. writel(0, CM_LOCK);
  190. }
  191. static const struct clk_ops cp_auxclk_ops = {
  192. .round = icst_clk_round,
  193. .set = icst_clk_set,
  194. .setvco = cp_auxvco_set,
  195. };
  196. static struct clk cp_auxclk = {
  197. .ops = &cp_auxclk_ops,
  198. .params = &cp_auxvco_params,
  199. .vcoreg = CM_AUXOSC,
  200. };
  201. static struct clk_lookup cp_lookups[] = {
  202. { /* CLCD */
  203. .dev_id = "mb:c0",
  204. .clk = &cp_auxclk,
  205. },
  206. };
  207. /*
  208. * Flash handling.
  209. */
  210. static int intcp_flash_init(void)
  211. {
  212. u32 val;
  213. val = readl(INTCP_VA_CTRL_BASE + INTCP_FLASHPROG);
  214. val |= CINTEGRATOR_FLASHPROG_FLWREN;
  215. writel(val, INTCP_VA_CTRL_BASE + INTCP_FLASHPROG);
  216. return 0;
  217. }
  218. static void intcp_flash_exit(void)
  219. {
  220. u32 val;
  221. val = readl(INTCP_VA_CTRL_BASE + INTCP_FLASHPROG);
  222. val &= ~(CINTEGRATOR_FLASHPROG_FLVPPEN|CINTEGRATOR_FLASHPROG_FLWREN);
  223. writel(val, INTCP_VA_CTRL_BASE + INTCP_FLASHPROG);
  224. }
  225. static void intcp_flash_set_vpp(int on)
  226. {
  227. u32 val;
  228. val = readl(INTCP_VA_CTRL_BASE + INTCP_FLASHPROG);
  229. if (on)
  230. val |= CINTEGRATOR_FLASHPROG_FLVPPEN;
  231. else
  232. val &= ~CINTEGRATOR_FLASHPROG_FLVPPEN;
  233. writel(val, INTCP_VA_CTRL_BASE + INTCP_FLASHPROG);
  234. }
  235. static struct flash_platform_data intcp_flash_data = {
  236. .map_name = "cfi_probe",
  237. .width = 4,
  238. .init = intcp_flash_init,
  239. .exit = intcp_flash_exit,
  240. .set_vpp = intcp_flash_set_vpp,
  241. };
  242. static struct resource intcp_flash_resource = {
  243. .start = INTCP_PA_FLASH_BASE,
  244. .end = INTCP_PA_FLASH_BASE + INTCP_FLASH_SIZE - 1,
  245. .flags = IORESOURCE_MEM,
  246. };
  247. static struct platform_device intcp_flash_device = {
  248. .name = "armflash",
  249. .id = 0,
  250. .dev = {
  251. .platform_data = &intcp_flash_data,
  252. },
  253. .num_resources = 1,
  254. .resource = &intcp_flash_resource,
  255. };
  256. static struct resource smc91x_resources[] = {
  257. [0] = {
  258. .start = INTEGRATOR_CP_ETH_BASE,
  259. .end = INTEGRATOR_CP_ETH_BASE + INTCP_ETH_SIZE - 1,
  260. .flags = IORESOURCE_MEM,
  261. },
  262. [1] = {
  263. .start = IRQ_CP_ETHINT,
  264. .end = IRQ_CP_ETHINT,
  265. .flags = IORESOURCE_IRQ,
  266. },
  267. };
  268. static struct platform_device smc91x_device = {
  269. .name = "smc91x",
  270. .id = 0,
  271. .num_resources = ARRAY_SIZE(smc91x_resources),
  272. .resource = smc91x_resources,
  273. };
  274. static struct platform_device *intcp_devs[] __initdata = {
  275. &intcp_flash_device,
  276. &smc91x_device,
  277. };
  278. /*
  279. * It seems that the card insertion interrupt remains active after
  280. * we've acknowledged it. We therefore ignore the interrupt, and
  281. * rely on reading it from the SIC. This also means that we must
  282. * clear the latched interrupt.
  283. */
  284. static unsigned int mmc_status(struct device *dev)
  285. {
  286. unsigned int status = readl(IO_ADDRESS(0xca000000 + 4));
  287. writel(8, IO_ADDRESS(INTEGRATOR_CP_CTL_BASE + 8));
  288. return status & 8;
  289. }
  290. static struct mmci_platform_data mmc_data = {
  291. .ocr_mask = MMC_VDD_32_33|MMC_VDD_33_34,
  292. .status = mmc_status,
  293. .gpio_wp = -1,
  294. .gpio_cd = -1,
  295. };
  296. static struct amba_device mmc_device = {
  297. .dev = {
  298. .init_name = "mb:1c",
  299. .platform_data = &mmc_data,
  300. },
  301. .res = {
  302. .start = INTEGRATOR_CP_MMC_BASE,
  303. .end = INTEGRATOR_CP_MMC_BASE + SZ_4K - 1,
  304. .flags = IORESOURCE_MEM,
  305. },
  306. .irq = { IRQ_CP_MMCIINT0, IRQ_CP_MMCIINT1 },
  307. .periphid = 0,
  308. };
  309. static struct amba_device aaci_device = {
  310. .dev = {
  311. .init_name = "mb:1d",
  312. },
  313. .res = {
  314. .start = INTEGRATOR_CP_AACI_BASE,
  315. .end = INTEGRATOR_CP_AACI_BASE + SZ_4K - 1,
  316. .flags = IORESOURCE_MEM,
  317. },
  318. .irq = { IRQ_CP_AACIINT, NO_IRQ },
  319. .periphid = 0,
  320. };
  321. /*
  322. * CLCD support
  323. */
  324. /*
  325. * Ensure VGA is selected.
  326. */
  327. static void cp_clcd_enable(struct clcd_fb *fb)
  328. {
  329. struct fb_var_screeninfo *var = &fb->fb.var;
  330. u32 val = CM_CTRL_STATIC1 | CM_CTRL_STATIC2;
  331. if (var->bits_per_pixel <= 8 ||
  332. (var->bits_per_pixel == 16 && var->green.length == 5))
  333. /* Pseudocolor, RGB555, BGR555 */
  334. val |= CM_CTRL_LCDMUXSEL_VGA555_TFT555;
  335. else if (fb->fb.var.bits_per_pixel <= 16)
  336. /* truecolor RGB565 */
  337. val |= CM_CTRL_LCDMUXSEL_VGA565_TFT555;
  338. else
  339. val = 0; /* no idea for this, don't trust the docs */
  340. cm_control(CM_CTRL_LCDMUXSEL_MASK|
  341. CM_CTRL_LCDEN0|
  342. CM_CTRL_LCDEN1|
  343. CM_CTRL_STATIC1|
  344. CM_CTRL_STATIC2|
  345. CM_CTRL_STATIC|
  346. CM_CTRL_n24BITEN, val);
  347. }
  348. static int cp_clcd_setup(struct clcd_fb *fb)
  349. {
  350. fb->panel = versatile_clcd_get_panel("VGA");
  351. if (!fb->panel)
  352. return -EINVAL;
  353. return versatile_clcd_setup_dma(fb, SZ_1M);
  354. }
  355. static struct clcd_board clcd_data = {
  356. .name = "Integrator/CP",
  357. .caps = CLCD_CAP_5551 | CLCD_CAP_RGB565 | CLCD_CAP_888,
  358. .check = clcdfb_check,
  359. .decode = clcdfb_decode,
  360. .enable = cp_clcd_enable,
  361. .setup = cp_clcd_setup,
  362. .mmap = versatile_clcd_mmap_dma,
  363. .remove = versatile_clcd_remove_dma,
  364. };
  365. static struct amba_device clcd_device = {
  366. .dev = {
  367. .init_name = "mb:c0",
  368. .coherent_dma_mask = ~0,
  369. .platform_data = &clcd_data,
  370. },
  371. .res = {
  372. .start = INTCP_PA_CLCD_BASE,
  373. .end = INTCP_PA_CLCD_BASE + SZ_4K - 1,
  374. .flags = IORESOURCE_MEM,
  375. },
  376. .dma_mask = ~0,
  377. .irq = { IRQ_CP_CLCDCINT, NO_IRQ },
  378. .periphid = 0,
  379. };
  380. static struct amba_device *amba_devs[] __initdata = {
  381. &mmc_device,
  382. &aaci_device,
  383. &clcd_device,
  384. };
  385. #define REFCOUNTER (__io_address(INTEGRATOR_HDR_BASE) + 0x28)
  386. static void __init intcp_init_early(void)
  387. {
  388. clkdev_add_table(cp_lookups, ARRAY_SIZE(cp_lookups));
  389. integrator_init_early();
  390. #ifdef CONFIG_PLAT_VERSATILE_SCHED_CLOCK
  391. versatile_sched_clock_init(REFCOUNTER, 24000000);
  392. #endif
  393. }
  394. static void __init intcp_init(void)
  395. {
  396. int i;
  397. platform_add_devices(intcp_devs, ARRAY_SIZE(intcp_devs));
  398. for (i = 0; i < ARRAY_SIZE(amba_devs); i++) {
  399. struct amba_device *d = amba_devs[i];
  400. amba_device_register(d, &iomem_resource);
  401. }
  402. }
  403. #define TIMER0_VA_BASE __io_address(INTEGRATOR_TIMER0_BASE)
  404. #define TIMER1_VA_BASE __io_address(INTEGRATOR_TIMER1_BASE)
  405. #define TIMER2_VA_BASE __io_address(INTEGRATOR_TIMER2_BASE)
  406. static void __init intcp_timer_init(void)
  407. {
  408. writel(0, TIMER0_VA_BASE + TIMER_CTRL);
  409. writel(0, TIMER1_VA_BASE + TIMER_CTRL);
  410. writel(0, TIMER2_VA_BASE + TIMER_CTRL);
  411. sp804_clocksource_init(TIMER2_VA_BASE);
  412. sp804_clockevents_init(TIMER1_VA_BASE, IRQ_TIMERINT1);
  413. }
  414. static struct sys_timer cp_timer = {
  415. .init = intcp_timer_init,
  416. };
  417. MACHINE_START(CINTEGRATOR, "ARM-IntegratorCP")
  418. /* Maintainer: ARM Ltd/Deep Blue Solutions Ltd */
  419. .boot_params = 0x00000100,
  420. .reserve = integrator_reserve,
  421. .map_io = intcp_map_io,
  422. .init_early = intcp_init_early,
  423. .init_irq = intcp_init_irq,
  424. .timer = &cp_timer,
  425. .init_machine = intcp_init,
  426. MACHINE_END