integrator_cp.c 9.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362
  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/lm.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/sched_clock.h>
  45. #include "cm.h"
  46. #include "common.h"
  47. /* Base address to the CP controller */
  48. static void __iomem *intcp_con_base;
  49. #define INTCP_PA_FLASH_BASE 0x24000000
  50. #define INTCP_PA_CLCD_BASE 0xc0000000
  51. #define INTCP_FLASHPROG 0x04
  52. #define CINTEGRATOR_FLASHPROG_FLVPPEN (1 << 0)
  53. #define CINTEGRATOR_FLASHPROG_FLWREN (1 << 1)
  54. /*
  55. * Logical Physical
  56. * f1000000 10000000 Core module registers
  57. * f1100000 11000000 System controller registers
  58. * f1200000 12000000 EBI registers
  59. * f1300000 13000000 Counter/Timer
  60. * f1400000 14000000 Interrupt controller
  61. * f1600000 16000000 UART 0
  62. * f1700000 17000000 UART 1
  63. * f1a00000 1a000000 Debug LEDs
  64. * fc900000 c9000000 GPIO
  65. * fca00000 ca000000 SIC
  66. * fcb00000 cb000000 CP system control
  67. */
  68. static struct map_desc intcp_io_desc[] __initdata __maybe_unused = {
  69. {
  70. .virtual = IO_ADDRESS(INTEGRATOR_HDR_BASE),
  71. .pfn = __phys_to_pfn(INTEGRATOR_HDR_BASE),
  72. .length = SZ_4K,
  73. .type = MT_DEVICE
  74. }, {
  75. .virtual = IO_ADDRESS(INTEGRATOR_EBI_BASE),
  76. .pfn = __phys_to_pfn(INTEGRATOR_EBI_BASE),
  77. .length = SZ_4K,
  78. .type = MT_DEVICE
  79. }, {
  80. .virtual = IO_ADDRESS(INTEGRATOR_CT_BASE),
  81. .pfn = __phys_to_pfn(INTEGRATOR_CT_BASE),
  82. .length = SZ_4K,
  83. .type = MT_DEVICE
  84. }, {
  85. .virtual = IO_ADDRESS(INTEGRATOR_IC_BASE),
  86. .pfn = __phys_to_pfn(INTEGRATOR_IC_BASE),
  87. .length = SZ_4K,
  88. .type = MT_DEVICE
  89. }, {
  90. .virtual = IO_ADDRESS(INTEGRATOR_UART0_BASE),
  91. .pfn = __phys_to_pfn(INTEGRATOR_UART0_BASE),
  92. .length = SZ_4K,
  93. .type = MT_DEVICE
  94. }, {
  95. .virtual = IO_ADDRESS(INTEGRATOR_DBG_BASE),
  96. .pfn = __phys_to_pfn(INTEGRATOR_DBG_BASE),
  97. .length = SZ_4K,
  98. .type = MT_DEVICE
  99. }, {
  100. .virtual = IO_ADDRESS(INTEGRATOR_CP_GPIO_BASE),
  101. .pfn = __phys_to_pfn(INTEGRATOR_CP_GPIO_BASE),
  102. .length = SZ_4K,
  103. .type = MT_DEVICE
  104. }, {
  105. .virtual = IO_ADDRESS(INTEGRATOR_CP_SIC_BASE),
  106. .pfn = __phys_to_pfn(INTEGRATOR_CP_SIC_BASE),
  107. .length = SZ_4K,
  108. .type = MT_DEVICE
  109. }
  110. };
  111. static void __init intcp_map_io(void)
  112. {
  113. iotable_init(intcp_io_desc, ARRAY_SIZE(intcp_io_desc));
  114. }
  115. /*
  116. * Flash handling.
  117. */
  118. static int intcp_flash_init(struct platform_device *dev)
  119. {
  120. u32 val;
  121. val = readl(intcp_con_base + INTCP_FLASHPROG);
  122. val |= CINTEGRATOR_FLASHPROG_FLWREN;
  123. writel(val, intcp_con_base + INTCP_FLASHPROG);
  124. return 0;
  125. }
  126. static void intcp_flash_exit(struct platform_device *dev)
  127. {
  128. u32 val;
  129. val = readl(intcp_con_base + INTCP_FLASHPROG);
  130. val &= ~(CINTEGRATOR_FLASHPROG_FLVPPEN|CINTEGRATOR_FLASHPROG_FLWREN);
  131. writel(val, intcp_con_base + INTCP_FLASHPROG);
  132. }
  133. static void intcp_flash_set_vpp(struct platform_device *pdev, int on)
  134. {
  135. u32 val;
  136. val = readl(intcp_con_base + INTCP_FLASHPROG);
  137. if (on)
  138. val |= CINTEGRATOR_FLASHPROG_FLVPPEN;
  139. else
  140. val &= ~CINTEGRATOR_FLASHPROG_FLVPPEN;
  141. writel(val, intcp_con_base + INTCP_FLASHPROG);
  142. }
  143. static struct physmap_flash_data intcp_flash_data = {
  144. .width = 4,
  145. .init = intcp_flash_init,
  146. .exit = intcp_flash_exit,
  147. .set_vpp = intcp_flash_set_vpp,
  148. };
  149. /*
  150. * It seems that the card insertion interrupt remains active after
  151. * we've acknowledged it. We therefore ignore the interrupt, and
  152. * rely on reading it from the SIC. This also means that we must
  153. * clear the latched interrupt.
  154. */
  155. static unsigned int mmc_status(struct device *dev)
  156. {
  157. unsigned int status = readl(__io_address(0xca000000 + 4));
  158. writel(8, intcp_con_base + 8);
  159. return status & 8;
  160. }
  161. static struct mmci_platform_data mmc_data = {
  162. .ocr_mask = MMC_VDD_32_33|MMC_VDD_33_34,
  163. .status = mmc_status,
  164. .gpio_wp = -1,
  165. .gpio_cd = -1,
  166. };
  167. /*
  168. * CLCD support
  169. */
  170. /*
  171. * Ensure VGA is selected.
  172. */
  173. static void cp_clcd_enable(struct clcd_fb *fb)
  174. {
  175. struct fb_var_screeninfo *var = &fb->fb.var;
  176. u32 val = CM_CTRL_STATIC1 | CM_CTRL_STATIC2
  177. | CM_CTRL_LCDEN0 | CM_CTRL_LCDEN1;
  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. static const struct of_device_id fpga_irq_of_match[] __initconst = {
  220. { .compatible = "arm,versatile-fpga-irq", .data = fpga_irq_of_init, },
  221. { /* Sentinel */ }
  222. };
  223. static void __init intcp_init_irq_of(void)
  224. {
  225. cm_init();
  226. of_irq_init(fpga_irq_of_match);
  227. integrator_clk_init(true);
  228. }
  229. /*
  230. * For the Device Tree, add in the UART, MMC and CLCD specifics as AUXDATA
  231. * and enforce the bus names since these are used for clock lookups.
  232. */
  233. static struct of_dev_auxdata intcp_auxdata_lookup[] __initdata = {
  234. OF_DEV_AUXDATA("arm,primecell", INTEGRATOR_RTC_BASE,
  235. "rtc", NULL),
  236. OF_DEV_AUXDATA("arm,primecell", INTEGRATOR_UART0_BASE,
  237. "uart0", NULL),
  238. OF_DEV_AUXDATA("arm,primecell", INTEGRATOR_UART1_BASE,
  239. "uart1", NULL),
  240. OF_DEV_AUXDATA("arm,primecell", KMI0_BASE,
  241. "kmi0", NULL),
  242. OF_DEV_AUXDATA("arm,primecell", KMI1_BASE,
  243. "kmi1", NULL),
  244. OF_DEV_AUXDATA("arm,primecell", INTEGRATOR_CP_MMC_BASE,
  245. "mmci", &mmc_data),
  246. OF_DEV_AUXDATA("arm,primecell", INTEGRATOR_CP_AACI_BASE,
  247. "aaci", &mmc_data),
  248. OF_DEV_AUXDATA("arm,primecell", INTCP_PA_CLCD_BASE,
  249. "clcd", &clcd_data),
  250. OF_DEV_AUXDATA("cfi-flash", INTCP_PA_FLASH_BASE,
  251. "physmap-flash", &intcp_flash_data),
  252. { /* sentinel */ },
  253. };
  254. static const struct of_device_id intcp_syscon_match[] = {
  255. { .compatible = "arm,integrator-cp-syscon"},
  256. { },
  257. };
  258. static void __init intcp_init_of(void)
  259. {
  260. struct device_node *root;
  261. struct device_node *cpcon;
  262. struct device *parent;
  263. struct soc_device *soc_dev;
  264. struct soc_device_attribute *soc_dev_attr;
  265. u32 intcp_sc_id;
  266. int err;
  267. /* Here we create an SoC device for the root node */
  268. root = of_find_node_by_path("/");
  269. if (!root)
  270. return;
  271. cpcon = of_find_matching_node(root, intcp_syscon_match);
  272. if (!cpcon)
  273. return;
  274. intcp_con_base = of_iomap(cpcon, 0);
  275. if (!intcp_con_base)
  276. return;
  277. intcp_sc_id = readl(intcp_con_base);
  278. soc_dev_attr = kzalloc(sizeof(*soc_dev_attr), GFP_KERNEL);
  279. if (!soc_dev_attr)
  280. return;
  281. err = of_property_read_string(root, "compatible",
  282. &soc_dev_attr->soc_id);
  283. if (err)
  284. return;
  285. err = of_property_read_string(root, "model", &soc_dev_attr->machine);
  286. if (err)
  287. return;
  288. soc_dev_attr->family = "Integrator";
  289. soc_dev_attr->revision = kasprintf(GFP_KERNEL, "%c",
  290. 'A' + (intcp_sc_id & 0x0f));
  291. soc_dev = soc_device_register(soc_dev_attr);
  292. if (IS_ERR(soc_dev)) {
  293. kfree(soc_dev_attr->revision);
  294. kfree(soc_dev_attr);
  295. return;
  296. }
  297. parent = soc_device_to_device(soc_dev);
  298. integrator_init_sysfs(parent, intcp_sc_id);
  299. of_platform_populate(root, of_default_bus_match_table,
  300. intcp_auxdata_lookup, parent);
  301. }
  302. static const char * intcp_dt_board_compat[] = {
  303. "arm,integrator-cp",
  304. NULL,
  305. };
  306. DT_MACHINE_START(INTEGRATOR_CP_DT, "ARM Integrator/CP (Device Tree)")
  307. .reserve = integrator_reserve,
  308. .map_io = intcp_map_io,
  309. .init_early = intcp_init_early,
  310. .init_irq = intcp_init_irq_of,
  311. .handle_irq = fpga_handle_irq,
  312. .init_machine = intcp_init_of,
  313. .restart = integrator_restart,
  314. .dt_compat = intcp_dt_board_compat,
  315. MACHINE_END