common.c 13 KB

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