common.c 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451
  1. // SPDX-License-Identifier: GPL-2.0-only
  2. /*
  3. * arch/arm/mach-dove/common.c
  4. *
  5. * Core functions for Marvell Dove 88AP510 System On Chip
  6. */
  7. #include <linux/clk-provider.h>
  8. #include <linux/dma-mapping.h>
  9. #include <linux/init.h>
  10. #include <linux/io.h>
  11. #include <linux/of.h>
  12. #include <linux/of_platform.h>
  13. #include <linux/platform_data/dma-mv_xor.h>
  14. #include <linux/platform_data/usb-ehci-orion.h>
  15. #include <linux/platform_device.h>
  16. #include <linux/soc/dove/pmu.h>
  17. #include <asm/hardware/cache-tauros2.h>
  18. #include <asm/mach/arch.h>
  19. #include <asm/mach/map.h>
  20. #include <asm/mach/time.h>
  21. #include <plat/common.h>
  22. #include <plat/irq.h>
  23. #include <plat/time.h>
  24. #include "bridge-regs.h"
  25. #include "pm.h"
  26. #include "common.h"
  27. /* These can go away once Dove uses the mvebu-mbus DT binding */
  28. #define DOVE_MBUS_PCIE0_MEM_TARGET 0x4
  29. #define DOVE_MBUS_PCIE0_MEM_ATTR 0xe8
  30. #define DOVE_MBUS_PCIE0_IO_TARGET 0x4
  31. #define DOVE_MBUS_PCIE0_IO_ATTR 0xe0
  32. #define DOVE_MBUS_PCIE1_MEM_TARGET 0x8
  33. #define DOVE_MBUS_PCIE1_MEM_ATTR 0xe8
  34. #define DOVE_MBUS_PCIE1_IO_TARGET 0x8
  35. #define DOVE_MBUS_PCIE1_IO_ATTR 0xe0
  36. #define DOVE_MBUS_CESA_TARGET 0x3
  37. #define DOVE_MBUS_CESA_ATTR 0x1
  38. #define DOVE_MBUS_BOOTROM_TARGET 0x1
  39. #define DOVE_MBUS_BOOTROM_ATTR 0xfd
  40. #define DOVE_MBUS_SCRATCHPAD_TARGET 0xd
  41. #define DOVE_MBUS_SCRATCHPAD_ATTR 0x0
  42. /*****************************************************************************
  43. * I/O Address Mapping
  44. ****************************************************************************/
  45. static struct map_desc __maybe_unused dove_io_desc[] __initdata = {
  46. {
  47. .virtual = (unsigned long) DOVE_SB_REGS_VIRT_BASE,
  48. .pfn = __phys_to_pfn(DOVE_SB_REGS_PHYS_BASE),
  49. .length = DOVE_SB_REGS_SIZE,
  50. .type = MT_DEVICE,
  51. }, {
  52. .virtual = (unsigned long) DOVE_NB_REGS_VIRT_BASE,
  53. .pfn = __phys_to_pfn(DOVE_NB_REGS_PHYS_BASE),
  54. .length = DOVE_NB_REGS_SIZE,
  55. .type = MT_DEVICE,
  56. },
  57. };
  58. void __init dove_map_io(void)
  59. {
  60. iotable_init(dove_io_desc, ARRAY_SIZE(dove_io_desc));
  61. }
  62. /*****************************************************************************
  63. * CLK tree
  64. ****************************************************************************/
  65. static int dove_tclk;
  66. static DEFINE_SPINLOCK(gating_lock);
  67. static struct clk *tclk;
  68. static struct clk __init *dove_register_gate(const char *name,
  69. const char *parent, u8 bit_idx)
  70. {
  71. return clk_register_gate(NULL, name, parent, 0,
  72. (void __iomem *)CLOCK_GATING_CONTROL,
  73. bit_idx, 0, &gating_lock);
  74. }
  75. static void __init dove_clk_init(void)
  76. {
  77. struct clk *usb0, *usb1, *sata, *pex0, *pex1, *sdio0, *sdio1;
  78. struct clk *nand, *camera, *i2s0, *i2s1, *crypto, *ac97, *pdma;
  79. struct clk *xor0, *xor1, *ge, *gephy;
  80. tclk = clk_register_fixed_rate(NULL, "tclk", NULL, 0, dove_tclk);
  81. usb0 = dove_register_gate("usb0", "tclk", CLOCK_GATING_BIT_USB0);
  82. usb1 = dove_register_gate("usb1", "tclk", CLOCK_GATING_BIT_USB1);
  83. sata = dove_register_gate("sata", "tclk", CLOCK_GATING_BIT_SATA);
  84. pex0 = dove_register_gate("pex0", "tclk", CLOCK_GATING_BIT_PCIE0);
  85. pex1 = dove_register_gate("pex1", "tclk", CLOCK_GATING_BIT_PCIE1);
  86. sdio0 = dove_register_gate("sdio0", "tclk", CLOCK_GATING_BIT_SDIO0);
  87. sdio1 = dove_register_gate("sdio1", "tclk", CLOCK_GATING_BIT_SDIO1);
  88. nand = dove_register_gate("nand", "tclk", CLOCK_GATING_BIT_NAND);
  89. camera = dove_register_gate("camera", "tclk", CLOCK_GATING_BIT_CAMERA);
  90. i2s0 = dove_register_gate("i2s0", "tclk", CLOCK_GATING_BIT_I2S0);
  91. i2s1 = dove_register_gate("i2s1", "tclk", CLOCK_GATING_BIT_I2S1);
  92. crypto = dove_register_gate("crypto", "tclk", CLOCK_GATING_BIT_CRYPTO);
  93. ac97 = dove_register_gate("ac97", "tclk", CLOCK_GATING_BIT_AC97);
  94. pdma = dove_register_gate("pdma", "tclk", CLOCK_GATING_BIT_PDMA);
  95. xor0 = dove_register_gate("xor0", "tclk", CLOCK_GATING_BIT_XOR0);
  96. xor1 = dove_register_gate("xor1", "tclk", CLOCK_GATING_BIT_XOR1);
  97. gephy = dove_register_gate("gephy", "tclk", CLOCK_GATING_BIT_GIGA_PHY);
  98. ge = dove_register_gate("ge", "gephy", CLOCK_GATING_BIT_GBE);
  99. orion_clkdev_add(NULL, "orion_spi.0", tclk);
  100. orion_clkdev_add(NULL, "orion_spi.1", tclk);
  101. orion_clkdev_add(NULL, "orion_wdt", tclk);
  102. orion_clkdev_add(NULL, "mv64xxx_i2c.0", tclk);
  103. orion_clkdev_add(NULL, "orion-ehci.0", usb0);
  104. orion_clkdev_add(NULL, "orion-ehci.1", usb1);
  105. orion_clkdev_add(NULL, "mv643xx_eth_port.0", ge);
  106. orion_clkdev_add(NULL, "sata_mv.0", sata);
  107. orion_clkdev_add("0", "pcie", pex0);
  108. orion_clkdev_add("1", "pcie", pex1);
  109. orion_clkdev_add(NULL, "sdhci-dove.0", sdio0);
  110. orion_clkdev_add(NULL, "sdhci-dove.1", sdio1);
  111. orion_clkdev_add(NULL, "orion_nand", nand);
  112. orion_clkdev_add(NULL, "cafe1000-ccic.0", camera);
  113. orion_clkdev_add(NULL, "mvebu-audio.0", i2s0);
  114. orion_clkdev_add(NULL, "mvebu-audio.1", i2s1);
  115. orion_clkdev_add(NULL, "mv_crypto", crypto);
  116. orion_clkdev_add(NULL, "dove-ac97", ac97);
  117. orion_clkdev_add(NULL, "dove-pdma", pdma);
  118. orion_clkdev_add(NULL, MV_XOR_NAME ".0", xor0);
  119. orion_clkdev_add(NULL, MV_XOR_NAME ".1", xor1);
  120. }
  121. /*****************************************************************************
  122. * EHCI0
  123. ****************************************************************************/
  124. void __init dove_ehci0_init(void)
  125. {
  126. orion_ehci_init(DOVE_USB0_PHYS_BASE, IRQ_DOVE_USB0, EHCI_PHY_NA);
  127. }
  128. /*****************************************************************************
  129. * EHCI1
  130. ****************************************************************************/
  131. void __init dove_ehci1_init(void)
  132. {
  133. orion_ehci_1_init(DOVE_USB1_PHYS_BASE, IRQ_DOVE_USB1);
  134. }
  135. /*****************************************************************************
  136. * GE00
  137. ****************************************************************************/
  138. void __init dove_ge00_init(struct mv643xx_eth_platform_data *eth_data)
  139. {
  140. orion_ge00_init(eth_data, DOVE_GE00_PHYS_BASE,
  141. IRQ_DOVE_GE00_SUM, IRQ_DOVE_GE00_ERR,
  142. 1600);
  143. }
  144. /*****************************************************************************
  145. * SoC RTC
  146. ****************************************************************************/
  147. static void __init dove_rtc_init(void)
  148. {
  149. orion_rtc_init(DOVE_RTC_PHYS_BASE, IRQ_DOVE_RTC);
  150. }
  151. /*****************************************************************************
  152. * SATA
  153. ****************************************************************************/
  154. void __init dove_sata_init(struct mv_sata_platform_data *sata_data)
  155. {
  156. orion_sata_init(sata_data, DOVE_SATA_PHYS_BASE, IRQ_DOVE_SATA);
  157. }
  158. /*****************************************************************************
  159. * UART0
  160. ****************************************************************************/
  161. void __init dove_uart0_init(void)
  162. {
  163. orion_uart0_init(DOVE_UART0_VIRT_BASE, DOVE_UART0_PHYS_BASE,
  164. IRQ_DOVE_UART_0, tclk);
  165. }
  166. /*****************************************************************************
  167. * UART1
  168. ****************************************************************************/
  169. void __init dove_uart1_init(void)
  170. {
  171. orion_uart1_init(DOVE_UART1_VIRT_BASE, DOVE_UART1_PHYS_BASE,
  172. IRQ_DOVE_UART_1, tclk);
  173. }
  174. /*****************************************************************************
  175. * UART2
  176. ****************************************************************************/
  177. void __init dove_uart2_init(void)
  178. {
  179. orion_uart2_init(DOVE_UART2_VIRT_BASE, DOVE_UART2_PHYS_BASE,
  180. IRQ_DOVE_UART_2, tclk);
  181. }
  182. /*****************************************************************************
  183. * UART3
  184. ****************************************************************************/
  185. void __init dove_uart3_init(void)
  186. {
  187. orion_uart3_init(DOVE_UART3_VIRT_BASE, DOVE_UART3_PHYS_BASE,
  188. IRQ_DOVE_UART_3, tclk);
  189. }
  190. /*****************************************************************************
  191. * SPI
  192. ****************************************************************************/
  193. void __init dove_spi0_init(void)
  194. {
  195. orion_spi_init(DOVE_SPI0_PHYS_BASE);
  196. }
  197. void __init dove_spi1_init(void)
  198. {
  199. orion_spi_1_init(DOVE_SPI1_PHYS_BASE);
  200. }
  201. /*****************************************************************************
  202. * I2C
  203. ****************************************************************************/
  204. void __init dove_i2c_init(void)
  205. {
  206. orion_i2c_init(DOVE_I2C_PHYS_BASE, IRQ_DOVE_I2C, 10);
  207. }
  208. /*****************************************************************************
  209. * Time handling
  210. ****************************************************************************/
  211. void __init dove_init_early(void)
  212. {
  213. orion_time_set_base(TIMER_VIRT_BASE);
  214. mvebu_mbus_init("marvell,dove-mbus",
  215. BRIDGE_WINS_BASE, BRIDGE_WINS_SZ,
  216. DOVE_MC_WINS_BASE, DOVE_MC_WINS_SZ);
  217. }
  218. static int __init dove_find_tclk(void)
  219. {
  220. return 166666667;
  221. }
  222. void __init dove_timer_init(void)
  223. {
  224. dove_tclk = dove_find_tclk();
  225. orion_time_init(BRIDGE_VIRT_BASE, BRIDGE_INT_TIMER1_CLR,
  226. IRQ_DOVE_BRIDGE, dove_tclk);
  227. }
  228. /*****************************************************************************
  229. * XOR 0
  230. ****************************************************************************/
  231. static void __init dove_xor0_init(void)
  232. {
  233. orion_xor0_init(DOVE_XOR0_PHYS_BASE, DOVE_XOR0_HIGH_PHYS_BASE,
  234. IRQ_DOVE_XOR_00, IRQ_DOVE_XOR_01);
  235. }
  236. /*****************************************************************************
  237. * XOR 1
  238. ****************************************************************************/
  239. static void __init dove_xor1_init(void)
  240. {
  241. orion_xor1_init(DOVE_XOR1_PHYS_BASE, DOVE_XOR1_HIGH_PHYS_BASE,
  242. IRQ_DOVE_XOR_10, IRQ_DOVE_XOR_11);
  243. }
  244. /*****************************************************************************
  245. * SDIO
  246. ****************************************************************************/
  247. static u64 sdio_dmamask = DMA_BIT_MASK(32);
  248. static struct resource dove_sdio0_resources[] = {
  249. {
  250. .start = DOVE_SDIO0_PHYS_BASE,
  251. .end = DOVE_SDIO0_PHYS_BASE + 0xff,
  252. .flags = IORESOURCE_MEM,
  253. }, {
  254. .start = IRQ_DOVE_SDIO0,
  255. .end = IRQ_DOVE_SDIO0,
  256. .flags = IORESOURCE_IRQ,
  257. },
  258. };
  259. static struct platform_device dove_sdio0 = {
  260. .name = "sdhci-dove",
  261. .id = 0,
  262. .dev = {
  263. .dma_mask = &sdio_dmamask,
  264. .coherent_dma_mask = DMA_BIT_MASK(32),
  265. },
  266. .resource = dove_sdio0_resources,
  267. .num_resources = ARRAY_SIZE(dove_sdio0_resources),
  268. };
  269. void __init dove_sdio0_init(void)
  270. {
  271. platform_device_register(&dove_sdio0);
  272. }
  273. static struct resource dove_sdio1_resources[] = {
  274. {
  275. .start = DOVE_SDIO1_PHYS_BASE,
  276. .end = DOVE_SDIO1_PHYS_BASE + 0xff,
  277. .flags = IORESOURCE_MEM,
  278. }, {
  279. .start = IRQ_DOVE_SDIO1,
  280. .end = IRQ_DOVE_SDIO1,
  281. .flags = IORESOURCE_IRQ,
  282. },
  283. };
  284. static struct platform_device dove_sdio1 = {
  285. .name = "sdhci-dove",
  286. .id = 1,
  287. .dev = {
  288. .dma_mask = &sdio_dmamask,
  289. .coherent_dma_mask = DMA_BIT_MASK(32),
  290. },
  291. .resource = dove_sdio1_resources,
  292. .num_resources = ARRAY_SIZE(dove_sdio1_resources),
  293. };
  294. void __init dove_sdio1_init(void)
  295. {
  296. platform_device_register(&dove_sdio1);
  297. }
  298. void __init dove_setup_cpu_wins(void)
  299. {
  300. /*
  301. * The PCIe windows will no longer be statically allocated
  302. * here once Dove is migrated to the pci-mvebu driver. The
  303. * non-PCIe windows will no longer be created here once Dove
  304. * fully moves to DT.
  305. */
  306. mvebu_mbus_add_window_remap_by_id(DOVE_MBUS_PCIE0_IO_TARGET,
  307. DOVE_MBUS_PCIE0_IO_ATTR,
  308. DOVE_PCIE0_IO_PHYS_BASE,
  309. DOVE_PCIE0_IO_SIZE,
  310. DOVE_PCIE0_IO_BUS_BASE);
  311. mvebu_mbus_add_window_remap_by_id(DOVE_MBUS_PCIE1_IO_TARGET,
  312. DOVE_MBUS_PCIE1_IO_ATTR,
  313. DOVE_PCIE1_IO_PHYS_BASE,
  314. DOVE_PCIE1_IO_SIZE,
  315. DOVE_PCIE1_IO_BUS_BASE);
  316. mvebu_mbus_add_window_by_id(DOVE_MBUS_PCIE0_MEM_TARGET,
  317. DOVE_MBUS_PCIE0_MEM_ATTR,
  318. DOVE_PCIE0_MEM_PHYS_BASE,
  319. DOVE_PCIE0_MEM_SIZE);
  320. mvebu_mbus_add_window_by_id(DOVE_MBUS_PCIE1_MEM_TARGET,
  321. DOVE_MBUS_PCIE1_MEM_ATTR,
  322. DOVE_PCIE1_MEM_PHYS_BASE,
  323. DOVE_PCIE1_MEM_SIZE);
  324. mvebu_mbus_add_window_by_id(DOVE_MBUS_CESA_TARGET,
  325. DOVE_MBUS_CESA_ATTR,
  326. DOVE_CESA_PHYS_BASE,
  327. DOVE_CESA_SIZE);
  328. mvebu_mbus_add_window_by_id(DOVE_MBUS_BOOTROM_TARGET,
  329. DOVE_MBUS_BOOTROM_ATTR,
  330. DOVE_BOOTROM_PHYS_BASE,
  331. DOVE_BOOTROM_SIZE);
  332. mvebu_mbus_add_window_by_id(DOVE_MBUS_SCRATCHPAD_TARGET,
  333. DOVE_MBUS_SCRATCHPAD_ATTR,
  334. DOVE_SCRATCHPAD_PHYS_BASE,
  335. DOVE_SCRATCHPAD_SIZE);
  336. }
  337. static struct resource orion_wdt_resource[] = {
  338. DEFINE_RES_MEM(TIMER_PHYS_BASE, 0x04),
  339. DEFINE_RES_MEM(RSTOUTn_MASK_PHYS, 0x04),
  340. };
  341. static struct platform_device orion_wdt_device = {
  342. .name = "orion_wdt",
  343. .id = -1,
  344. .num_resources = ARRAY_SIZE(orion_wdt_resource),
  345. .resource = orion_wdt_resource,
  346. };
  347. static void __init __maybe_unused orion_wdt_init(void)
  348. {
  349. platform_device_register(&orion_wdt_device);
  350. }
  351. static const struct dove_pmu_domain_initdata pmu_domains[] __initconst = {
  352. {
  353. .pwr_mask = PMU_PWR_VPU_PWR_DWN_MASK,
  354. .rst_mask = PMU_SW_RST_VIDEO_MASK,
  355. .iso_mask = PMU_ISO_VIDEO_MASK,
  356. .name = "vpu-domain",
  357. }, {
  358. .pwr_mask = PMU_PWR_GPU_PWR_DWN_MASK,
  359. .rst_mask = PMU_SW_RST_GPU_MASK,
  360. .iso_mask = PMU_ISO_GPU_MASK,
  361. .name = "gpu-domain",
  362. }, {
  363. /* sentinel */
  364. },
  365. };
  366. static const struct dove_pmu_initdata pmu_data __initconst = {
  367. .pmc_base = DOVE_PMU_VIRT_BASE,
  368. .pmu_base = DOVE_PMU_VIRT_BASE + 0x8000,
  369. .irq = IRQ_DOVE_PMU,
  370. .irq_domain_start = IRQ_DOVE_PMU_START,
  371. .domains = pmu_domains,
  372. };
  373. void __init dove_init(void)
  374. {
  375. pr_info("Dove 88AP510 SoC, TCLK = %d MHz.\n",
  376. (dove_tclk + 499999) / 1000000);
  377. #ifdef CONFIG_CACHE_TAUROS2
  378. tauros2_init(0);
  379. #endif
  380. dove_setup_cpu_wins();
  381. /* Setup root of clk tree */
  382. dove_clk_init();
  383. /* internal devices that every board has */
  384. dove_init_pmu_legacy(&pmu_data);
  385. dove_rtc_init();
  386. dove_xor0_init();
  387. dove_xor1_init();
  388. }
  389. void dove_restart(enum reboot_mode mode, const char *cmd)
  390. {
  391. /*
  392. * Enable soft reset to assert RSTOUTn.
  393. */
  394. writel(SOFT_RESET_OUT_EN, RSTOUTn_MASK);
  395. /*
  396. * Assert soft reset.
  397. */
  398. writel(SOFT_RESET, SYSTEM_SOFT_RESET);
  399. while (1)
  400. ;
  401. }