integrator_cp.c 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565
  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/irqchip/versatile-fpga.h>
  24. #include <linux/gfp.h>
  25. #include <linux/mtd/physmap.h>
  26. #include <linux/platform_data/clk-integrator.h>
  27. #include <linux/of_irq.h>
  28. #include <linux/of_address.h>
  29. #include <linux/of_platform.h>
  30. #include <linux/sys_soc.h>
  31. #include <mach/hardware.h>
  32. #include <mach/platform.h>
  33. #include <asm/setup.h>
  34. #include <asm/mach-types.h>
  35. #include <asm/hardware/arm_timer.h>
  36. #include <asm/hardware/icst.h>
  37. #include <mach/cm.h>
  38. #include <mach/lm.h>
  39. #include <mach/irqs.h>
  40. #include <asm/mach/arch.h>
  41. #include <asm/mach/irq.h>
  42. #include <asm/mach/map.h>
  43. #include <asm/mach/time.h>
  44. #include <asm/hardware/timer-sp.h>
  45. #include <plat/clcd.h>
  46. #include <plat/sched_clock.h>
  47. #include "common.h"
  48. /* Base address to the CP controller */
  49. static void __iomem *intcp_con_base;
  50. #define INTCP_PA_FLASH_BASE 0x24000000
  51. #define INTCP_PA_CLCD_BASE 0xc0000000
  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 __maybe_unused = {
  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_EBI_BASE),
  77. .pfn = __phys_to_pfn(INTEGRATOR_EBI_BASE),
  78. .length = SZ_4K,
  79. .type = MT_DEVICE
  80. }, {
  81. .virtual = IO_ADDRESS(INTEGRATOR_CT_BASE),
  82. .pfn = __phys_to_pfn(INTEGRATOR_CT_BASE),
  83. .length = SZ_4K,
  84. .type = MT_DEVICE
  85. }, {
  86. .virtual = IO_ADDRESS(INTEGRATOR_IC_BASE),
  87. .pfn = __phys_to_pfn(INTEGRATOR_IC_BASE),
  88. .length = SZ_4K,
  89. .type = MT_DEVICE
  90. }, {
  91. .virtual = IO_ADDRESS(INTEGRATOR_UART0_BASE),
  92. .pfn = __phys_to_pfn(INTEGRATOR_UART0_BASE),
  93. .length = SZ_4K,
  94. .type = MT_DEVICE
  95. }, {
  96. .virtual = IO_ADDRESS(INTEGRATOR_DBG_BASE),
  97. .pfn = __phys_to_pfn(INTEGRATOR_DBG_BASE),
  98. .length = SZ_4K,
  99. .type = MT_DEVICE
  100. }, {
  101. .virtual = IO_ADDRESS(INTEGRATOR_CP_GPIO_BASE),
  102. .pfn = __phys_to_pfn(INTEGRATOR_CP_GPIO_BASE),
  103. .length = SZ_4K,
  104. .type = MT_DEVICE
  105. }, {
  106. .virtual = IO_ADDRESS(INTEGRATOR_CP_SIC_BASE),
  107. .pfn = __phys_to_pfn(INTEGRATOR_CP_SIC_BASE),
  108. .length = SZ_4K,
  109. .type = MT_DEVICE
  110. }
  111. };
  112. static void __init intcp_map_io(void)
  113. {
  114. iotable_init(intcp_io_desc, ARRAY_SIZE(intcp_io_desc));
  115. }
  116. /*
  117. * Flash handling.
  118. */
  119. static int intcp_flash_init(struct platform_device *dev)
  120. {
  121. u32 val;
  122. val = readl(intcp_con_base + INTCP_FLASHPROG);
  123. val |= CINTEGRATOR_FLASHPROG_FLWREN;
  124. writel(val, intcp_con_base + INTCP_FLASHPROG);
  125. return 0;
  126. }
  127. static void intcp_flash_exit(struct platform_device *dev)
  128. {
  129. u32 val;
  130. val = readl(intcp_con_base + INTCP_FLASHPROG);
  131. val &= ~(CINTEGRATOR_FLASHPROG_FLVPPEN|CINTEGRATOR_FLASHPROG_FLWREN);
  132. writel(val, intcp_con_base + INTCP_FLASHPROG);
  133. }
  134. static void intcp_flash_set_vpp(struct platform_device *pdev, int on)
  135. {
  136. u32 val;
  137. val = readl(intcp_con_base + INTCP_FLASHPROG);
  138. if (on)
  139. val |= CINTEGRATOR_FLASHPROG_FLVPPEN;
  140. else
  141. val &= ~CINTEGRATOR_FLASHPROG_FLVPPEN;
  142. writel(val, intcp_con_base + INTCP_FLASHPROG);
  143. }
  144. static struct physmap_flash_data intcp_flash_data = {
  145. .width = 4,
  146. .init = intcp_flash_init,
  147. .exit = intcp_flash_exit,
  148. .set_vpp = intcp_flash_set_vpp,
  149. };
  150. /*
  151. * It seems that the card insertion interrupt remains active after
  152. * we've acknowledged it. We therefore ignore the interrupt, and
  153. * rely on reading it from the SIC. This also means that we must
  154. * clear the latched interrupt.
  155. */
  156. static unsigned int mmc_status(struct device *dev)
  157. {
  158. unsigned int status = readl(__io_address(0xca000000 + 4));
  159. writel(8, intcp_con_base + 8);
  160. return status & 8;
  161. }
  162. static struct mmci_platform_data mmc_data = {
  163. .ocr_mask = MMC_VDD_32_33|MMC_VDD_33_34,
  164. .status = mmc_status,
  165. .gpio_wp = -1,
  166. .gpio_cd = -1,
  167. };
  168. /*
  169. * CLCD support
  170. */
  171. /*
  172. * Ensure VGA is selected.
  173. */
  174. static void cp_clcd_enable(struct clcd_fb *fb)
  175. {
  176. struct fb_var_screeninfo *var = &fb->fb.var;
  177. u32 val = CM_CTRL_STATIC1 | CM_CTRL_STATIC2;
  178. if (var->bits_per_pixel <= 8 ||
  179. (var->bits_per_pixel == 16 && var->green.length == 5))
  180. /* Pseudocolor, RGB555, BGR555 */
  181. val |= CM_CTRL_LCDMUXSEL_VGA555_TFT555;
  182. else if (fb->fb.var.bits_per_pixel <= 16)
  183. /* truecolor RGB565 */
  184. val |= CM_CTRL_LCDMUXSEL_VGA565_TFT555;
  185. else
  186. val = 0; /* no idea for this, don't trust the docs */
  187. cm_control(CM_CTRL_LCDMUXSEL_MASK|
  188. CM_CTRL_LCDEN0|
  189. CM_CTRL_LCDEN1|
  190. CM_CTRL_STATIC1|
  191. CM_CTRL_STATIC2|
  192. CM_CTRL_STATIC|
  193. CM_CTRL_n24BITEN, val);
  194. }
  195. static int cp_clcd_setup(struct clcd_fb *fb)
  196. {
  197. fb->panel = versatile_clcd_get_panel("VGA");
  198. if (!fb->panel)
  199. return -EINVAL;
  200. return versatile_clcd_setup_dma(fb, SZ_1M);
  201. }
  202. static struct clcd_board clcd_data = {
  203. .name = "Integrator/CP",
  204. .caps = CLCD_CAP_5551 | CLCD_CAP_RGB565 | CLCD_CAP_888,
  205. .check = clcdfb_check,
  206. .decode = clcdfb_decode,
  207. .enable = cp_clcd_enable,
  208. .setup = cp_clcd_setup,
  209. .mmap = versatile_clcd_mmap_dma,
  210. .remove = versatile_clcd_remove_dma,
  211. };
  212. #define REFCOUNTER (__io_address(INTEGRATOR_HDR_BASE) + 0x28)
  213. static void __init intcp_init_early(void)
  214. {
  215. #ifdef CONFIG_PLAT_VERSATILE_SCHED_CLOCK
  216. versatile_sched_clock_init(REFCOUNTER, 24000000);
  217. #endif
  218. }
  219. #ifdef CONFIG_OF
  220. static void __init cp_of_timer_init(void)
  221. {
  222. struct device_node *node;
  223. const char *path;
  224. void __iomem *base;
  225. int err;
  226. int irq;
  227. err = of_property_read_string(of_aliases,
  228. "arm,timer-primary", &path);
  229. if (WARN_ON(err))
  230. return;
  231. node = of_find_node_by_path(path);
  232. base = of_iomap(node, 0);
  233. if (WARN_ON(!base))
  234. return;
  235. writel(0, base + TIMER_CTRL);
  236. sp804_clocksource_init(base, node->name);
  237. err = of_property_read_string(of_aliases,
  238. "arm,timer-secondary", &path);
  239. if (WARN_ON(err))
  240. return;
  241. node = of_find_node_by_path(path);
  242. base = of_iomap(node, 0);
  243. if (WARN_ON(!base))
  244. return;
  245. irq = irq_of_parse_and_map(node, 0);
  246. writel(0, base + TIMER_CTRL);
  247. sp804_clockevents_init(base, irq, node->name);
  248. }
  249. static const struct of_device_id fpga_irq_of_match[] __initconst = {
  250. { .compatible = "arm,versatile-fpga-irq", .data = fpga_irq_of_init, },
  251. { /* Sentinel */ }
  252. };
  253. static void __init intcp_init_irq_of(void)
  254. {
  255. of_irq_init(fpga_irq_of_match);
  256. integrator_clk_init(true);
  257. }
  258. /*
  259. * For the Device Tree, add in the UART, MMC and CLCD specifics as AUXDATA
  260. * and enforce the bus names since these are used for clock lookups.
  261. */
  262. static struct of_dev_auxdata intcp_auxdata_lookup[] __initdata = {
  263. OF_DEV_AUXDATA("arm,primecell", INTEGRATOR_RTC_BASE,
  264. "rtc", NULL),
  265. OF_DEV_AUXDATA("arm,primecell", INTEGRATOR_UART0_BASE,
  266. "uart0", NULL),
  267. OF_DEV_AUXDATA("arm,primecell", INTEGRATOR_UART1_BASE,
  268. "uart1", NULL),
  269. OF_DEV_AUXDATA("arm,primecell", KMI0_BASE,
  270. "kmi0", NULL),
  271. OF_DEV_AUXDATA("arm,primecell", KMI1_BASE,
  272. "kmi1", NULL),
  273. OF_DEV_AUXDATA("arm,primecell", INTEGRATOR_CP_MMC_BASE,
  274. "mmci", &mmc_data),
  275. OF_DEV_AUXDATA("arm,primecell", INTEGRATOR_CP_AACI_BASE,
  276. "aaci", &mmc_data),
  277. OF_DEV_AUXDATA("arm,primecell", INTCP_PA_CLCD_BASE,
  278. "clcd", &clcd_data),
  279. OF_DEV_AUXDATA("cfi-flash", INTCP_PA_FLASH_BASE,
  280. "physmap-flash", &intcp_flash_data),
  281. { /* sentinel */ },
  282. };
  283. static void __init intcp_init_of(void)
  284. {
  285. struct device_node *root;
  286. struct device_node *cpcon;
  287. struct device *parent;
  288. struct soc_device *soc_dev;
  289. struct soc_device_attribute *soc_dev_attr;
  290. u32 intcp_sc_id;
  291. int err;
  292. /* Here we create an SoC device for the root node */
  293. root = of_find_node_by_path("/");
  294. if (!root)
  295. return;
  296. cpcon = of_find_node_by_path("/cpcon");
  297. if (!cpcon)
  298. return;
  299. intcp_con_base = of_iomap(cpcon, 0);
  300. if (!intcp_con_base)
  301. return;
  302. intcp_sc_id = readl(intcp_con_base);
  303. soc_dev_attr = kzalloc(sizeof(*soc_dev_attr), GFP_KERNEL);
  304. if (!soc_dev_attr)
  305. return;
  306. err = of_property_read_string(root, "compatible",
  307. &soc_dev_attr->soc_id);
  308. if (err)
  309. return;
  310. err = of_property_read_string(root, "model", &soc_dev_attr->machine);
  311. if (err)
  312. return;
  313. soc_dev_attr->family = "Integrator";
  314. soc_dev_attr->revision = kasprintf(GFP_KERNEL, "%c",
  315. 'A' + (intcp_sc_id & 0x0f));
  316. soc_dev = soc_device_register(soc_dev_attr);
  317. if (IS_ERR_OR_NULL(soc_dev)) {
  318. kfree(soc_dev_attr->revision);
  319. kfree(soc_dev_attr);
  320. return;
  321. }
  322. parent = soc_device_to_device(soc_dev);
  323. if (!IS_ERR_OR_NULL(parent))
  324. integrator_init_sysfs(parent, intcp_sc_id);
  325. of_platform_populate(root, of_default_bus_match_table,
  326. intcp_auxdata_lookup, parent);
  327. }
  328. static const char * intcp_dt_board_compat[] = {
  329. "arm,integrator-cp",
  330. NULL,
  331. };
  332. DT_MACHINE_START(INTEGRATOR_CP_DT, "ARM Integrator/CP (Device Tree)")
  333. .reserve = integrator_reserve,
  334. .map_io = intcp_map_io,
  335. .init_early = intcp_init_early,
  336. .init_irq = intcp_init_irq_of,
  337. .handle_irq = fpga_handle_irq,
  338. .init_time = cp_of_timer_init,
  339. .init_machine = intcp_init_of,
  340. .restart = integrator_restart,
  341. .dt_compat = intcp_dt_board_compat,
  342. MACHINE_END
  343. #endif
  344. #ifdef CONFIG_ATAGS
  345. /*
  346. * For the ATAG boot some static mappings are needed. This will
  347. * go away with the ATAG support down the road.
  348. */
  349. static struct map_desc intcp_io_desc_atag[] __initdata = {
  350. {
  351. .virtual = IO_ADDRESS(INTEGRATOR_CP_CTL_BASE),
  352. .pfn = __phys_to_pfn(INTEGRATOR_CP_CTL_BASE),
  353. .length = SZ_4K,
  354. .type = MT_DEVICE
  355. },
  356. };
  357. static void __init intcp_map_io_atag(void)
  358. {
  359. iotable_init(intcp_io_desc_atag, ARRAY_SIZE(intcp_io_desc_atag));
  360. intcp_con_base = __io_address(INTEGRATOR_CP_CTL_BASE);
  361. intcp_map_io();
  362. }
  363. /*
  364. * This is where non-devicetree initialization code is collected and stashed
  365. * for eventual deletion.
  366. */
  367. #define INTCP_FLASH_SIZE SZ_32M
  368. static struct resource intcp_flash_resource = {
  369. .start = INTCP_PA_FLASH_BASE,
  370. .end = INTCP_PA_FLASH_BASE + INTCP_FLASH_SIZE - 1,
  371. .flags = IORESOURCE_MEM,
  372. };
  373. static struct platform_device intcp_flash_device = {
  374. .name = "physmap-flash",
  375. .id = 0,
  376. .dev = {
  377. .platform_data = &intcp_flash_data,
  378. },
  379. .num_resources = 1,
  380. .resource = &intcp_flash_resource,
  381. };
  382. #define INTCP_ETH_SIZE 0x10
  383. static struct resource smc91x_resources[] = {
  384. [0] = {
  385. .start = INTEGRATOR_CP_ETH_BASE,
  386. .end = INTEGRATOR_CP_ETH_BASE + INTCP_ETH_SIZE - 1,
  387. .flags = IORESOURCE_MEM,
  388. },
  389. [1] = {
  390. .start = IRQ_CP_ETHINT,
  391. .end = IRQ_CP_ETHINT,
  392. .flags = IORESOURCE_IRQ,
  393. },
  394. };
  395. static struct platform_device smc91x_device = {
  396. .name = "smc91x",
  397. .id = 0,
  398. .num_resources = ARRAY_SIZE(smc91x_resources),
  399. .resource = smc91x_resources,
  400. };
  401. static struct platform_device *intcp_devs[] __initdata = {
  402. &intcp_flash_device,
  403. &smc91x_device,
  404. };
  405. #define INTCP_VA_CIC_BASE __io_address(INTEGRATOR_HDR_BASE + 0x40)
  406. #define INTCP_VA_PIC_BASE __io_address(INTEGRATOR_IC_BASE)
  407. #define INTCP_VA_SIC_BASE __io_address(INTEGRATOR_CP_SIC_BASE)
  408. static void __init intcp_init_irq(void)
  409. {
  410. u32 pic_mask, cic_mask, sic_mask;
  411. /* These masks are for the HW IRQ registers */
  412. pic_mask = ~((~0u) << (11 - 0));
  413. pic_mask |= (~((~0u) << (29 - 22))) << 22;
  414. cic_mask = ~((~0u) << (1 + IRQ_CIC_END - IRQ_CIC_START));
  415. sic_mask = ~((~0u) << (1 + IRQ_SIC_END - IRQ_SIC_START));
  416. /*
  417. * Disable all interrupt sources
  418. */
  419. writel(0xffffffff, INTCP_VA_PIC_BASE + IRQ_ENABLE_CLEAR);
  420. writel(0xffffffff, INTCP_VA_PIC_BASE + FIQ_ENABLE_CLEAR);
  421. writel(0xffffffff, INTCP_VA_CIC_BASE + IRQ_ENABLE_CLEAR);
  422. writel(0xffffffff, INTCP_VA_CIC_BASE + FIQ_ENABLE_CLEAR);
  423. writel(sic_mask, INTCP_VA_SIC_BASE + IRQ_ENABLE_CLEAR);
  424. writel(sic_mask, INTCP_VA_SIC_BASE + FIQ_ENABLE_CLEAR);
  425. fpga_irq_init(INTCP_VA_PIC_BASE, "PIC", IRQ_PIC_START,
  426. -1, pic_mask, NULL);
  427. fpga_irq_init(INTCP_VA_CIC_BASE, "CIC", IRQ_CIC_START,
  428. -1, cic_mask, NULL);
  429. fpga_irq_init(INTCP_VA_SIC_BASE, "SIC", IRQ_SIC_START,
  430. IRQ_CP_CPPLDINT, sic_mask, NULL);
  431. integrator_clk_init(true);
  432. }
  433. #define TIMER0_VA_BASE __io_address(INTEGRATOR_TIMER0_BASE)
  434. #define TIMER1_VA_BASE __io_address(INTEGRATOR_TIMER1_BASE)
  435. #define TIMER2_VA_BASE __io_address(INTEGRATOR_TIMER2_BASE)
  436. static void __init cp_timer_init(void)
  437. {
  438. writel(0, TIMER0_VA_BASE + TIMER_CTRL);
  439. writel(0, TIMER1_VA_BASE + TIMER_CTRL);
  440. writel(0, TIMER2_VA_BASE + TIMER_CTRL);
  441. sp804_clocksource_init(TIMER2_VA_BASE, "timer2");
  442. sp804_clockevents_init(TIMER1_VA_BASE, IRQ_TIMERINT1, "timer1");
  443. }
  444. #define INTEGRATOR_CP_MMC_IRQS { IRQ_CP_MMCIINT0, IRQ_CP_MMCIINT1 }
  445. #define INTEGRATOR_CP_AACI_IRQS { IRQ_CP_AACIINT }
  446. static AMBA_APB_DEVICE(mmc, "mmci", 0, INTEGRATOR_CP_MMC_BASE,
  447. INTEGRATOR_CP_MMC_IRQS, &mmc_data);
  448. static AMBA_APB_DEVICE(aaci, "aaci", 0, INTEGRATOR_CP_AACI_BASE,
  449. INTEGRATOR_CP_AACI_IRQS, NULL);
  450. static AMBA_AHB_DEVICE(clcd, "clcd", 0, INTCP_PA_CLCD_BASE,
  451. { IRQ_CP_CLCDCINT }, &clcd_data);
  452. static struct amba_device *amba_devs[] __initdata = {
  453. &mmc_device,
  454. &aaci_device,
  455. &clcd_device,
  456. };
  457. static void __init intcp_init(void)
  458. {
  459. int i;
  460. platform_add_devices(intcp_devs, ARRAY_SIZE(intcp_devs));
  461. for (i = 0; i < ARRAY_SIZE(amba_devs); i++) {
  462. struct amba_device *d = amba_devs[i];
  463. amba_device_register(d, &iomem_resource);
  464. }
  465. integrator_init(true);
  466. }
  467. MACHINE_START(CINTEGRATOR, "ARM-IntegratorCP")
  468. /* Maintainer: ARM Ltd/Deep Blue Solutions Ltd */
  469. .atag_offset = 0x100,
  470. .reserve = integrator_reserve,
  471. .map_io = intcp_map_io_atag,
  472. .init_early = intcp_init_early,
  473. .init_irq = intcp_init_irq,
  474. .handle_irq = fpga_handle_irq,
  475. .init_time = cp_timer_init,
  476. .init_machine = intcp_init,
  477. .restart = integrator_restart,
  478. MACHINE_END
  479. #endif