integrator_cp.c 8.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329
  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/platform_data/video-clcd-versatile.h>
  22. #include <linux/amba/mmci.h>
  23. #include <linux/io.h>
  24. #include <linux/irqchip.h>
  25. #include <linux/gfp.h>
  26. #include <linux/mtd/physmap.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 <linux/sched_clock.h>
  32. #include <asm/setup.h>
  33. #include <asm/mach-types.h>
  34. #include <asm/mach/arch.h>
  35. #include <asm/mach/irq.h>
  36. #include <asm/mach/map.h>
  37. #include <asm/mach/time.h>
  38. #include "hardware.h"
  39. #include "cm.h"
  40. #include "common.h"
  41. /* Base address to the CP controller */
  42. static void __iomem *intcp_con_base;
  43. #define INTCP_PA_FLASH_BASE 0x24000000
  44. #define INTCP_PA_CLCD_BASE 0xc0000000
  45. #define INTCP_FLASHPROG 0x04
  46. #define CINTEGRATOR_FLASHPROG_FLVPPEN (1 << 0)
  47. #define CINTEGRATOR_FLASHPROG_FLWREN (1 << 1)
  48. /*
  49. * Logical Physical
  50. * f1000000 10000000 Core module registers
  51. * f1300000 13000000 Counter/Timer
  52. * f1400000 14000000 Interrupt controller
  53. * f1600000 16000000 UART 0
  54. * f1700000 17000000 UART 1
  55. * f1a00000 1a000000 Debug LEDs
  56. * fc900000 c9000000 GPIO
  57. * fca00000 ca000000 SIC
  58. */
  59. static struct map_desc intcp_io_desc[] __initdata __maybe_unused = {
  60. {
  61. .virtual = IO_ADDRESS(INTEGRATOR_HDR_BASE),
  62. .pfn = __phys_to_pfn(INTEGRATOR_HDR_BASE),
  63. .length = SZ_4K,
  64. .type = MT_DEVICE
  65. }, {
  66. .virtual = IO_ADDRESS(INTEGRATOR_CT_BASE),
  67. .pfn = __phys_to_pfn(INTEGRATOR_CT_BASE),
  68. .length = SZ_4K,
  69. .type = MT_DEVICE
  70. }, {
  71. .virtual = IO_ADDRESS(INTEGRATOR_IC_BASE),
  72. .pfn = __phys_to_pfn(INTEGRATOR_IC_BASE),
  73. .length = SZ_4K,
  74. .type = MT_DEVICE
  75. }, {
  76. .virtual = IO_ADDRESS(INTEGRATOR_UART0_BASE),
  77. .pfn = __phys_to_pfn(INTEGRATOR_UART0_BASE),
  78. .length = SZ_4K,
  79. .type = MT_DEVICE
  80. }, {
  81. .virtual = IO_ADDRESS(INTEGRATOR_DBG_BASE),
  82. .pfn = __phys_to_pfn(INTEGRATOR_DBG_BASE),
  83. .length = SZ_4K,
  84. .type = MT_DEVICE
  85. }, {
  86. .virtual = IO_ADDRESS(INTEGRATOR_CP_GPIO_BASE),
  87. .pfn = __phys_to_pfn(INTEGRATOR_CP_GPIO_BASE),
  88. .length = SZ_4K,
  89. .type = MT_DEVICE
  90. }, {
  91. .virtual = IO_ADDRESS(INTEGRATOR_CP_SIC_BASE),
  92. .pfn = __phys_to_pfn(INTEGRATOR_CP_SIC_BASE),
  93. .length = SZ_4K,
  94. .type = MT_DEVICE
  95. }
  96. };
  97. static void __init intcp_map_io(void)
  98. {
  99. iotable_init(intcp_io_desc, ARRAY_SIZE(intcp_io_desc));
  100. }
  101. /*
  102. * Flash handling.
  103. */
  104. static int intcp_flash_init(struct platform_device *dev)
  105. {
  106. u32 val;
  107. val = readl(intcp_con_base + INTCP_FLASHPROG);
  108. val |= CINTEGRATOR_FLASHPROG_FLWREN;
  109. writel(val, intcp_con_base + INTCP_FLASHPROG);
  110. return 0;
  111. }
  112. static void intcp_flash_exit(struct platform_device *dev)
  113. {
  114. u32 val;
  115. val = readl(intcp_con_base + INTCP_FLASHPROG);
  116. val &= ~(CINTEGRATOR_FLASHPROG_FLVPPEN|CINTEGRATOR_FLASHPROG_FLWREN);
  117. writel(val, intcp_con_base + INTCP_FLASHPROG);
  118. }
  119. static void intcp_flash_set_vpp(struct platform_device *pdev, int on)
  120. {
  121. u32 val;
  122. val = readl(intcp_con_base + INTCP_FLASHPROG);
  123. if (on)
  124. val |= CINTEGRATOR_FLASHPROG_FLVPPEN;
  125. else
  126. val &= ~CINTEGRATOR_FLASHPROG_FLVPPEN;
  127. writel(val, intcp_con_base + INTCP_FLASHPROG);
  128. }
  129. static struct physmap_flash_data intcp_flash_data = {
  130. .width = 4,
  131. .init = intcp_flash_init,
  132. .exit = intcp_flash_exit,
  133. .set_vpp = intcp_flash_set_vpp,
  134. };
  135. /*
  136. * It seems that the card insertion interrupt remains active after
  137. * we've acknowledged it. We therefore ignore the interrupt, and
  138. * rely on reading it from the SIC. This also means that we must
  139. * clear the latched interrupt.
  140. */
  141. static unsigned int mmc_status(struct device *dev)
  142. {
  143. unsigned int status = readl(__io_address(0xca000000 + 4));
  144. writel(8, intcp_con_base + 8);
  145. return status & 8;
  146. }
  147. static struct mmci_platform_data mmc_data = {
  148. .ocr_mask = MMC_VDD_32_33|MMC_VDD_33_34,
  149. .status = mmc_status,
  150. .gpio_wp = -1,
  151. .gpio_cd = -1,
  152. };
  153. /*
  154. * CLCD support
  155. */
  156. /*
  157. * Ensure VGA is selected.
  158. */
  159. static void cp_clcd_enable(struct clcd_fb *fb)
  160. {
  161. struct fb_var_screeninfo *var = &fb->fb.var;
  162. u32 val = CM_CTRL_STATIC1 | CM_CTRL_STATIC2
  163. | CM_CTRL_LCDEN0 | CM_CTRL_LCDEN1;
  164. if (var->bits_per_pixel <= 8 ||
  165. (var->bits_per_pixel == 16 && var->green.length == 5))
  166. /* Pseudocolor, RGB555, BGR555 */
  167. val |= CM_CTRL_LCDMUXSEL_VGA555_TFT555;
  168. else if (fb->fb.var.bits_per_pixel <= 16)
  169. /* truecolor RGB565 */
  170. val |= CM_CTRL_LCDMUXSEL_VGA565_TFT555;
  171. else
  172. val = 0; /* no idea for this, don't trust the docs */
  173. cm_control(CM_CTRL_LCDMUXSEL_MASK|
  174. CM_CTRL_LCDEN0|
  175. CM_CTRL_LCDEN1|
  176. CM_CTRL_STATIC1|
  177. CM_CTRL_STATIC2|
  178. CM_CTRL_STATIC|
  179. CM_CTRL_n24BITEN, val);
  180. }
  181. static int cp_clcd_setup(struct clcd_fb *fb)
  182. {
  183. fb->panel = versatile_clcd_get_panel("VGA");
  184. if (!fb->panel)
  185. return -EINVAL;
  186. return versatile_clcd_setup_dma(fb, SZ_1M);
  187. }
  188. static struct clcd_board clcd_data = {
  189. .name = "Integrator/CP",
  190. .caps = CLCD_CAP_5551 | CLCD_CAP_RGB565 | CLCD_CAP_888,
  191. .check = clcdfb_check,
  192. .decode = clcdfb_decode,
  193. .enable = cp_clcd_enable,
  194. .setup = cp_clcd_setup,
  195. .mmap = versatile_clcd_mmap_dma,
  196. .remove = versatile_clcd_remove_dma,
  197. };
  198. #define REFCOUNTER (__io_address(INTEGRATOR_HDR_BASE) + 0x28)
  199. static u64 notrace intcp_read_sched_clock(void)
  200. {
  201. return readl(REFCOUNTER);
  202. }
  203. static void __init intcp_init_early(void)
  204. {
  205. sched_clock_register(intcp_read_sched_clock, 32, 24000000);
  206. }
  207. static void __init intcp_init_irq_of(void)
  208. {
  209. cm_init();
  210. irqchip_init();
  211. }
  212. /*
  213. * For the Device Tree, add in the UART, MMC and CLCD specifics as AUXDATA
  214. * and enforce the bus names since these are used for clock lookups.
  215. */
  216. static struct of_dev_auxdata intcp_auxdata_lookup[] __initdata = {
  217. OF_DEV_AUXDATA("arm,primecell", INTEGRATOR_RTC_BASE,
  218. "rtc", NULL),
  219. OF_DEV_AUXDATA("arm,primecell", INTEGRATOR_UART0_BASE,
  220. "uart0", NULL),
  221. OF_DEV_AUXDATA("arm,primecell", INTEGRATOR_UART1_BASE,
  222. "uart1", NULL),
  223. OF_DEV_AUXDATA("arm,primecell", KMI0_BASE,
  224. "kmi0", NULL),
  225. OF_DEV_AUXDATA("arm,primecell", KMI1_BASE,
  226. "kmi1", NULL),
  227. OF_DEV_AUXDATA("arm,primecell", INTEGRATOR_CP_MMC_BASE,
  228. "mmci", &mmc_data),
  229. OF_DEV_AUXDATA("arm,primecell", INTEGRATOR_CP_AACI_BASE,
  230. "aaci", &mmc_data),
  231. OF_DEV_AUXDATA("arm,primecell", INTCP_PA_CLCD_BASE,
  232. "clcd", &clcd_data),
  233. OF_DEV_AUXDATA("cfi-flash", INTCP_PA_FLASH_BASE,
  234. "physmap-flash", &intcp_flash_data),
  235. { /* sentinel */ },
  236. };
  237. static const struct of_device_id intcp_syscon_match[] = {
  238. { .compatible = "arm,integrator-cp-syscon"},
  239. { },
  240. };
  241. static void __init intcp_init_of(void)
  242. {
  243. struct device_node *cpcon;
  244. struct device *parent;
  245. struct soc_device *soc_dev;
  246. struct soc_device_attribute *soc_dev_attr;
  247. u32 intcp_sc_id;
  248. cpcon = of_find_matching_node(NULL, intcp_syscon_match);
  249. if (!cpcon)
  250. return;
  251. intcp_con_base = of_iomap(cpcon, 0);
  252. if (!intcp_con_base)
  253. return;
  254. of_platform_populate(NULL, of_default_bus_match_table,
  255. intcp_auxdata_lookup, NULL);
  256. intcp_sc_id = readl(intcp_con_base);
  257. soc_dev_attr = kzalloc(sizeof(*soc_dev_attr), GFP_KERNEL);
  258. if (!soc_dev_attr)
  259. return;
  260. soc_dev_attr->soc_id = "XCV";
  261. soc_dev_attr->machine = "Integrator/CP";
  262. soc_dev_attr->family = "Integrator";
  263. soc_dev_attr->revision = kasprintf(GFP_KERNEL, "%c",
  264. 'A' + (intcp_sc_id & 0x0f));
  265. soc_dev = soc_device_register(soc_dev_attr);
  266. if (IS_ERR(soc_dev)) {
  267. kfree(soc_dev_attr->revision);
  268. kfree(soc_dev_attr);
  269. return;
  270. }
  271. parent = soc_device_to_device(soc_dev);
  272. integrator_init_sysfs(parent, intcp_sc_id);
  273. }
  274. static const char * intcp_dt_board_compat[] = {
  275. "arm,integrator-cp",
  276. NULL,
  277. };
  278. DT_MACHINE_START(INTEGRATOR_CP_DT, "ARM Integrator/CP (Device Tree)")
  279. .reserve = integrator_reserve,
  280. .map_io = intcp_map_io,
  281. .init_early = intcp_init_early,
  282. .init_irq = intcp_init_irq_of,
  283. .init_machine = intcp_init_of,
  284. .restart = integrator_restart,
  285. .dt_compat = intcp_dt_board_compat,
  286. MACHINE_END