common.c 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471
  1. /*
  2. * arch/arm/mach-dove/common.c
  3. *
  4. * Core functions for Marvell Dove 88AP510 System On Chip
  5. *
  6. * This file is licensed under the terms of the GNU General Public
  7. * License version 2. This program is licensed "as is" without any
  8. * warranty of any kind, whether express or implied.
  9. */
  10. #include <linux/kernel.h>
  11. #include <linux/delay.h>
  12. #include <linux/init.h>
  13. #include <linux/platform_device.h>
  14. #include <linux/pci.h>
  15. #include <linux/clk-provider.h>
  16. #include <linux/clk/mvebu.h>
  17. #include <linux/ata_platform.h>
  18. #include <linux/gpio.h>
  19. #include <linux/of.h>
  20. #include <linux/of_platform.h>
  21. #include <asm/page.h>
  22. #include <asm/setup.h>
  23. #include <asm/timex.h>
  24. #include <asm/hardware/cache-tauros2.h>
  25. #include <asm/mach/map.h>
  26. #include <asm/mach/time.h>
  27. #include <asm/mach/pci.h>
  28. #include <mach/dove.h>
  29. #include <mach/pm.h>
  30. #include <mach/bridge-regs.h>
  31. #include <asm/mach/arch.h>
  32. #include <linux/irq.h>
  33. #include <plat/time.h>
  34. #include <linux/platform_data/usb-ehci-orion.h>
  35. #include <plat/irq.h>
  36. #include <plat/common.h>
  37. #include <plat/addr-map.h>
  38. #include "common.h"
  39. /*****************************************************************************
  40. * I/O Address Mapping
  41. ****************************************************************************/
  42. static struct map_desc dove_io_desc[] __initdata = {
  43. {
  44. .virtual = (unsigned long) DOVE_SB_REGS_VIRT_BASE,
  45. .pfn = __phys_to_pfn(DOVE_SB_REGS_PHYS_BASE),
  46. .length = DOVE_SB_REGS_SIZE,
  47. .type = MT_DEVICE,
  48. }, {
  49. .virtual = (unsigned long) DOVE_NB_REGS_VIRT_BASE,
  50. .pfn = __phys_to_pfn(DOVE_NB_REGS_PHYS_BASE),
  51. .length = DOVE_NB_REGS_SIZE,
  52. .type = MT_DEVICE,
  53. },
  54. };
  55. void __init dove_map_io(void)
  56. {
  57. iotable_init(dove_io_desc, ARRAY_SIZE(dove_io_desc));
  58. }
  59. /*****************************************************************************
  60. * CLK tree
  61. ****************************************************************************/
  62. static int dove_tclk;
  63. static DEFINE_SPINLOCK(gating_lock);
  64. static struct clk *tclk;
  65. static struct clk __init *dove_register_gate(const char *name,
  66. const char *parent, u8 bit_idx)
  67. {
  68. return clk_register_gate(NULL, name, parent, 0,
  69. (void __iomem *)CLOCK_GATING_CONTROL,
  70. bit_idx, 0, &gating_lock);
  71. }
  72. static void __init dove_clk_init(void)
  73. {
  74. struct clk *usb0, *usb1, *sata, *pex0, *pex1, *sdio0, *sdio1;
  75. struct clk *nand, *camera, *i2s0, *i2s1, *crypto, *ac97, *pdma;
  76. struct clk *xor0, *xor1, *ge, *gephy;
  77. tclk = clk_register_fixed_rate(NULL, "tclk", NULL, CLK_IS_ROOT,
  78. dove_tclk);
  79. usb0 = dove_register_gate("usb0", "tclk", CLOCK_GATING_BIT_USB0);
  80. usb1 = dove_register_gate("usb1", "tclk", CLOCK_GATING_BIT_USB1);
  81. sata = dove_register_gate("sata", "tclk", CLOCK_GATING_BIT_SATA);
  82. pex0 = dove_register_gate("pex0", "tclk", CLOCK_GATING_BIT_PCIE0);
  83. pex1 = dove_register_gate("pex1", "tclk", CLOCK_GATING_BIT_PCIE1);
  84. sdio0 = dove_register_gate("sdio0", "tclk", CLOCK_GATING_BIT_SDIO0);
  85. sdio1 = dove_register_gate("sdio1", "tclk", CLOCK_GATING_BIT_SDIO1);
  86. nand = dove_register_gate("nand", "tclk", CLOCK_GATING_BIT_NAND);
  87. camera = dove_register_gate("camera", "tclk", CLOCK_GATING_BIT_CAMERA);
  88. i2s0 = dove_register_gate("i2s0", "tclk", CLOCK_GATING_BIT_I2S0);
  89. i2s1 = dove_register_gate("i2s1", "tclk", CLOCK_GATING_BIT_I2S1);
  90. crypto = dove_register_gate("crypto", "tclk", CLOCK_GATING_BIT_CRYPTO);
  91. ac97 = dove_register_gate("ac97", "tclk", CLOCK_GATING_BIT_AC97);
  92. pdma = dove_register_gate("pdma", "tclk", CLOCK_GATING_BIT_PDMA);
  93. xor0 = dove_register_gate("xor0", "tclk", CLOCK_GATING_BIT_XOR0);
  94. xor1 = dove_register_gate("xor1", "tclk", CLOCK_GATING_BIT_XOR1);
  95. gephy = dove_register_gate("gephy", "tclk", CLOCK_GATING_BIT_GIGA_PHY);
  96. ge = dove_register_gate("ge", "gephy", CLOCK_GATING_BIT_GBE);
  97. orion_clkdev_add(NULL, "orion_spi.0", tclk);
  98. orion_clkdev_add(NULL, "orion_spi.1", tclk);
  99. orion_clkdev_add(NULL, "orion_wdt", tclk);
  100. orion_clkdev_add(NULL, "mv64xxx_i2c.0", tclk);
  101. orion_clkdev_add(NULL, "orion-ehci.0", usb0);
  102. orion_clkdev_add(NULL, "orion-ehci.1", usb1);
  103. orion_clkdev_add(NULL, "mv643xx_eth_port.0", ge);
  104. orion_clkdev_add(NULL, "sata_mv.0", sata);
  105. orion_clkdev_add("0", "pcie", pex0);
  106. orion_clkdev_add("1", "pcie", pex1);
  107. orion_clkdev_add(NULL, "sdhci-dove.0", sdio0);
  108. orion_clkdev_add(NULL, "sdhci-dove.1", sdio1);
  109. orion_clkdev_add(NULL, "orion_nand", nand);
  110. orion_clkdev_add(NULL, "cafe1000-ccic.0", camera);
  111. orion_clkdev_add(NULL, "kirkwood-i2s.0", i2s0);
  112. orion_clkdev_add(NULL, "kirkwood-i2s.1", i2s1);
  113. orion_clkdev_add(NULL, "mv_crypto", crypto);
  114. orion_clkdev_add(NULL, "dove-ac97", ac97);
  115. orion_clkdev_add(NULL, "dove-pdma", pdma);
  116. orion_clkdev_add(NULL, "mv_xor_shared.0", xor0);
  117. orion_clkdev_add(NULL, "mv_xor_shared.1", xor1);
  118. }
  119. /*****************************************************************************
  120. * EHCI0
  121. ****************************************************************************/
  122. void __init dove_ehci0_init(void)
  123. {
  124. orion_ehci_init(DOVE_USB0_PHYS_BASE, IRQ_DOVE_USB0, EHCI_PHY_NA);
  125. }
  126. /*****************************************************************************
  127. * EHCI1
  128. ****************************************************************************/
  129. void __init dove_ehci1_init(void)
  130. {
  131. orion_ehci_1_init(DOVE_USB1_PHYS_BASE, IRQ_DOVE_USB1);
  132. }
  133. /*****************************************************************************
  134. * GE00
  135. ****************************************************************************/
  136. void __init dove_ge00_init(struct mv643xx_eth_platform_data *eth_data)
  137. {
  138. orion_ge00_init(eth_data, DOVE_GE00_PHYS_BASE,
  139. IRQ_DOVE_GE00_SUM, IRQ_DOVE_GE00_ERR,
  140. 1600);
  141. }
  142. /*****************************************************************************
  143. * SoC RTC
  144. ****************************************************************************/
  145. void __init dove_rtc_init(void)
  146. {
  147. orion_rtc_init(DOVE_RTC_PHYS_BASE, IRQ_DOVE_RTC);
  148. }
  149. /*****************************************************************************
  150. * SATA
  151. ****************************************************************************/
  152. void __init dove_sata_init(struct mv_sata_platform_data *sata_data)
  153. {
  154. orion_sata_init(sata_data, DOVE_SATA_PHYS_BASE, IRQ_DOVE_SATA);
  155. }
  156. /*****************************************************************************
  157. * UART0
  158. ****************************************************************************/
  159. void __init dove_uart0_init(void)
  160. {
  161. orion_uart0_init(DOVE_UART0_VIRT_BASE, DOVE_UART0_PHYS_BASE,
  162. IRQ_DOVE_UART_0, tclk);
  163. }
  164. /*****************************************************************************
  165. * UART1
  166. ****************************************************************************/
  167. void __init dove_uart1_init(void)
  168. {
  169. orion_uart1_init(DOVE_UART1_VIRT_BASE, DOVE_UART1_PHYS_BASE,
  170. IRQ_DOVE_UART_1, tclk);
  171. }
  172. /*****************************************************************************
  173. * UART2
  174. ****************************************************************************/
  175. void __init dove_uart2_init(void)
  176. {
  177. orion_uart2_init(DOVE_UART2_VIRT_BASE, DOVE_UART2_PHYS_BASE,
  178. IRQ_DOVE_UART_2, tclk);
  179. }
  180. /*****************************************************************************
  181. * UART3
  182. ****************************************************************************/
  183. void __init dove_uart3_init(void)
  184. {
  185. orion_uart3_init(DOVE_UART3_VIRT_BASE, DOVE_UART3_PHYS_BASE,
  186. IRQ_DOVE_UART_3, tclk);
  187. }
  188. /*****************************************************************************
  189. * SPI
  190. ****************************************************************************/
  191. void __init dove_spi0_init(void)
  192. {
  193. orion_spi_init(DOVE_SPI0_PHYS_BASE);
  194. }
  195. void __init dove_spi1_init(void)
  196. {
  197. orion_spi_1_init(DOVE_SPI1_PHYS_BASE);
  198. }
  199. /*****************************************************************************
  200. * I2C
  201. ****************************************************************************/
  202. void __init dove_i2c_init(void)
  203. {
  204. orion_i2c_init(DOVE_I2C_PHYS_BASE, IRQ_DOVE_I2C, 10);
  205. }
  206. /*****************************************************************************
  207. * Time handling
  208. ****************************************************************************/
  209. void __init dove_init_early(void)
  210. {
  211. orion_time_set_base(TIMER_VIRT_BASE);
  212. }
  213. static int __init dove_find_tclk(void)
  214. {
  215. return 166666667;
  216. }
  217. static void __init dove_timer_init(void)
  218. {
  219. dove_tclk = dove_find_tclk();
  220. orion_time_init(BRIDGE_VIRT_BASE, BRIDGE_INT_TIMER1_CLR,
  221. IRQ_DOVE_BRIDGE, dove_tclk);
  222. }
  223. struct sys_timer dove_timer = {
  224. .init = dove_timer_init,
  225. };
  226. /*****************************************************************************
  227. * Cryptographic Engines and Security Accelerator (CESA)
  228. ****************************************************************************/
  229. void __init dove_crypto_init(void)
  230. {
  231. orion_crypto_init(DOVE_CRYPT_PHYS_BASE, DOVE_CESA_PHYS_BASE,
  232. DOVE_CESA_SIZE, IRQ_DOVE_CRYPTO);
  233. }
  234. /*****************************************************************************
  235. * XOR 0
  236. ****************************************************************************/
  237. void __init dove_xor0_init(void)
  238. {
  239. orion_xor0_init(DOVE_XOR0_PHYS_BASE, DOVE_XOR0_HIGH_PHYS_BASE,
  240. IRQ_DOVE_XOR_00, IRQ_DOVE_XOR_01);
  241. }
  242. /*****************************************************************************
  243. * XOR 1
  244. ****************************************************************************/
  245. void __init dove_xor1_init(void)
  246. {
  247. orion_xor1_init(DOVE_XOR1_PHYS_BASE, DOVE_XOR1_HIGH_PHYS_BASE,
  248. IRQ_DOVE_XOR_10, IRQ_DOVE_XOR_11);
  249. }
  250. /*****************************************************************************
  251. * SDIO
  252. ****************************************************************************/
  253. static u64 sdio_dmamask = DMA_BIT_MASK(32);
  254. static struct resource dove_sdio0_resources[] = {
  255. {
  256. .start = DOVE_SDIO0_PHYS_BASE,
  257. .end = DOVE_SDIO0_PHYS_BASE + 0xff,
  258. .flags = IORESOURCE_MEM,
  259. }, {
  260. .start = IRQ_DOVE_SDIO0,
  261. .end = IRQ_DOVE_SDIO0,
  262. .flags = IORESOURCE_IRQ,
  263. },
  264. };
  265. static struct platform_device dove_sdio0 = {
  266. .name = "sdhci-dove",
  267. .id = 0,
  268. .dev = {
  269. .dma_mask = &sdio_dmamask,
  270. .coherent_dma_mask = DMA_BIT_MASK(32),
  271. },
  272. .resource = dove_sdio0_resources,
  273. .num_resources = ARRAY_SIZE(dove_sdio0_resources),
  274. };
  275. void __init dove_sdio0_init(void)
  276. {
  277. platform_device_register(&dove_sdio0);
  278. }
  279. static struct resource dove_sdio1_resources[] = {
  280. {
  281. .start = DOVE_SDIO1_PHYS_BASE,
  282. .end = DOVE_SDIO1_PHYS_BASE + 0xff,
  283. .flags = IORESOURCE_MEM,
  284. }, {
  285. .start = IRQ_DOVE_SDIO1,
  286. .end = IRQ_DOVE_SDIO1,
  287. .flags = IORESOURCE_IRQ,
  288. },
  289. };
  290. static struct platform_device dove_sdio1 = {
  291. .name = "sdhci-dove",
  292. .id = 1,
  293. .dev = {
  294. .dma_mask = &sdio_dmamask,
  295. .coherent_dma_mask = DMA_BIT_MASK(32),
  296. },
  297. .resource = dove_sdio1_resources,
  298. .num_resources = ARRAY_SIZE(dove_sdio1_resources),
  299. };
  300. void __init dove_sdio1_init(void)
  301. {
  302. platform_device_register(&dove_sdio1);
  303. }
  304. void __init dove_init(void)
  305. {
  306. pr_info("Dove 88AP510 SoC, TCLK = %d MHz.\n",
  307. (dove_tclk + 499999) / 1000000);
  308. #ifdef CONFIG_CACHE_TAUROS2
  309. tauros2_init(0);
  310. #endif
  311. dove_setup_cpu_mbus();
  312. /* Setup root of clk tree */
  313. dove_clk_init();
  314. /* internal devices that every board has */
  315. dove_rtc_init();
  316. dove_xor0_init();
  317. dove_xor1_init();
  318. }
  319. void dove_restart(char mode, const char *cmd)
  320. {
  321. /*
  322. * Enable soft reset to assert RSTOUTn.
  323. */
  324. writel(SOFT_RESET_OUT_EN, RSTOUTn_MASK);
  325. /*
  326. * Assert soft reset.
  327. */
  328. writel(SOFT_RESET, SYSTEM_SOFT_RESET);
  329. while (1)
  330. ;
  331. }
  332. #if defined(CONFIG_MACH_DOVE_DT)
  333. /*
  334. * There are still devices that doesn't even know about DT,
  335. * get clock gates here and add a clock lookup.
  336. */
  337. static void __init dove_legacy_clk_init(void)
  338. {
  339. struct device_node *np = of_find_compatible_node(NULL, NULL,
  340. "marvell,dove-gating-clock");
  341. struct of_phandle_args clkspec;
  342. clkspec.np = np;
  343. clkspec.args_count = 1;
  344. clkspec.args[0] = CLOCK_GATING_BIT_USB0;
  345. orion_clkdev_add(NULL, "orion-ehci.0",
  346. of_clk_get_from_provider(&clkspec));
  347. clkspec.args[0] = CLOCK_GATING_BIT_USB1;
  348. orion_clkdev_add(NULL, "orion-ehci.1",
  349. of_clk_get_from_provider(&clkspec));
  350. clkspec.args[0] = CLOCK_GATING_BIT_GBE;
  351. orion_clkdev_add(NULL, "mv643xx_eth_port.0",
  352. of_clk_get_from_provider(&clkspec));
  353. clkspec.args[0] = CLOCK_GATING_BIT_PCIE0;
  354. orion_clkdev_add("0", "pcie",
  355. of_clk_get_from_provider(&clkspec));
  356. clkspec.args[0] = CLOCK_GATING_BIT_PCIE1;
  357. orion_clkdev_add("1", "pcie",
  358. of_clk_get_from_provider(&clkspec));
  359. clkspec.args[0] = CLOCK_GATING_BIT_XOR0;
  360. orion_clkdev_add(NULL, "mv_xor_shared.0",
  361. of_clk_get_from_provider(&clkspec));
  362. clkspec.args[0] = CLOCK_GATING_BIT_XOR1;
  363. orion_clkdev_add(NULL, "mv_xor_shared.1",
  364. of_clk_get_from_provider(&clkspec));
  365. }
  366. static void __init dove_of_clk_init(void)
  367. {
  368. mvebu_clocks_init();
  369. dove_legacy_clk_init();
  370. }
  371. static struct mv643xx_eth_platform_data dove_dt_ge00_data = {
  372. .phy_addr = MV643XX_ETH_PHY_ADDR_DEFAULT,
  373. };
  374. static void __init dove_dt_init(void)
  375. {
  376. pr_info("Dove 88AP510 SoC, TCLK = %d MHz.\n",
  377. (dove_tclk + 499999) / 1000000);
  378. #ifdef CONFIG_CACHE_TAUROS2
  379. tauros2_init(0);
  380. #endif
  381. dove_setup_cpu_mbus();
  382. /* Setup root of clk tree */
  383. dove_of_clk_init();
  384. /* Internal devices not ported to DT yet */
  385. dove_rtc_init();
  386. dove_xor0_init();
  387. dove_xor1_init();
  388. dove_ge00_init(&dove_dt_ge00_data);
  389. dove_ehci0_init();
  390. dove_ehci1_init();
  391. dove_pcie_init(1, 1);
  392. of_platform_populate(NULL, of_default_bus_match_table, NULL, NULL);
  393. }
  394. static const char * const dove_dt_board_compat[] = {
  395. "marvell,dove",
  396. NULL
  397. };
  398. DT_MACHINE_START(DOVE_DT, "Marvell Dove (Flattened Device Tree)")
  399. .map_io = dove_map_io,
  400. .init_early = dove_init_early,
  401. .init_irq = orion_dt_init_irq,
  402. .timer = &dove_timer,
  403. .init_machine = dove_dt_init,
  404. .restart = dove_restart,
  405. .dt_compat = dove_dt_board_compat,
  406. MACHINE_END
  407. #endif