ccu-sun5i.c 33 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034
  1. /*
  2. * Copyright (c) 2016 Maxime Ripard. All rights reserved.
  3. *
  4. * This software is licensed under the terms of the GNU General Public
  5. * License version 2, as published by the Free Software Foundation, and
  6. * may be copied, distributed, and modified under those terms.
  7. *
  8. * This program is distributed in the hope that it will be useful,
  9. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. * GNU General Public License for more details.
  12. */
  13. #include <linux/clk-provider.h>
  14. #include <linux/of_address.h>
  15. #include "ccu_common.h"
  16. #include "ccu_reset.h"
  17. #include "ccu_div.h"
  18. #include "ccu_gate.h"
  19. #include "ccu_mp.h"
  20. #include "ccu_mult.h"
  21. #include "ccu_nk.h"
  22. #include "ccu_nkm.h"
  23. #include "ccu_nkmp.h"
  24. #include "ccu_nm.h"
  25. #include "ccu_phase.h"
  26. #include "ccu_sdm.h"
  27. #include "ccu-sun5i.h"
  28. static struct ccu_nkmp pll_core_clk = {
  29. .enable = BIT(31),
  30. .n = _SUNXI_CCU_MULT_OFFSET(8, 5, 0),
  31. .k = _SUNXI_CCU_MULT(4, 2),
  32. .m = _SUNXI_CCU_DIV(0, 2),
  33. .p = _SUNXI_CCU_DIV(16, 2),
  34. .common = {
  35. .reg = 0x000,
  36. .hw.init = CLK_HW_INIT("pll-core",
  37. "hosc",
  38. &ccu_nkmp_ops,
  39. 0),
  40. },
  41. };
  42. /*
  43. * The Audio PLL is supposed to have 4 outputs: 3 fixed factors from
  44. * the base (2x, 4x and 8x), and one variable divider (the one true
  45. * pll audio).
  46. *
  47. * With sigma-delta modulation for fractional-N on the audio PLL,
  48. * we have to use specific dividers. This means the variable divider
  49. * can no longer be used, as the audio codec requests the exact clock
  50. * rates we support through this mechanism. So we now hard code the
  51. * variable divider to 1. This means the clock rates will no longer
  52. * match the clock names.
  53. */
  54. #define SUN5I_PLL_AUDIO_REG 0x008
  55. static struct ccu_sdm_setting pll_audio_sdm_table[] = {
  56. { .rate = 22579200, .pattern = 0xc0010d84, .m = 8, .n = 7 },
  57. { .rate = 24576000, .pattern = 0xc000ac02, .m = 14, .n = 14 },
  58. };
  59. static struct ccu_nm pll_audio_base_clk = {
  60. .enable = BIT(31),
  61. .n = _SUNXI_CCU_MULT_OFFSET(8, 7, 0),
  62. /*
  63. * The datasheet is wrong here, this doesn't have any
  64. * offset
  65. */
  66. .m = _SUNXI_CCU_DIV_OFFSET(0, 5, 0),
  67. .sdm = _SUNXI_CCU_SDM(pll_audio_sdm_table, 0,
  68. 0x00c, BIT(31)),
  69. .common = {
  70. .reg = 0x008,
  71. .features = CCU_FEATURE_SIGMA_DELTA_MOD,
  72. .hw.init = CLK_HW_INIT("pll-audio-base",
  73. "hosc",
  74. &ccu_nm_ops,
  75. 0),
  76. },
  77. };
  78. static struct ccu_mult pll_video0_clk = {
  79. .enable = BIT(31),
  80. .mult = _SUNXI_CCU_MULT_OFFSET_MIN_MAX(0, 7, 0, 9, 127),
  81. .frac = _SUNXI_CCU_FRAC(BIT(15), BIT(14),
  82. 270000000, 297000000),
  83. .common = {
  84. .reg = 0x010,
  85. .features = (CCU_FEATURE_FRACTIONAL |
  86. CCU_FEATURE_ALL_PREDIV),
  87. .prediv = 8,
  88. .hw.init = CLK_HW_INIT("pll-video0",
  89. "hosc",
  90. &ccu_mult_ops,
  91. 0),
  92. },
  93. };
  94. static struct ccu_nkmp pll_ve_clk = {
  95. .enable = BIT(31),
  96. .n = _SUNXI_CCU_MULT_OFFSET(8, 5, 0),
  97. .k = _SUNXI_CCU_MULT(4, 2),
  98. .m = _SUNXI_CCU_DIV(0, 2),
  99. .p = _SUNXI_CCU_DIV(16, 2),
  100. .common = {
  101. .reg = 0x018,
  102. .hw.init = CLK_HW_INIT("pll-ve",
  103. "hosc",
  104. &ccu_nkmp_ops,
  105. 0),
  106. },
  107. };
  108. static struct ccu_nk pll_ddr_base_clk = {
  109. .enable = BIT(31),
  110. .n = _SUNXI_CCU_MULT_OFFSET(8, 5, 0),
  111. .k = _SUNXI_CCU_MULT(4, 2),
  112. .common = {
  113. .reg = 0x020,
  114. .hw.init = CLK_HW_INIT("pll-ddr-base",
  115. "hosc",
  116. &ccu_nk_ops,
  117. 0),
  118. },
  119. };
  120. static SUNXI_CCU_M(pll_ddr_clk, "pll-ddr", "pll-ddr-base", 0x020, 0, 2,
  121. CLK_IS_CRITICAL);
  122. static struct ccu_div pll_ddr_other_clk = {
  123. .div = _SUNXI_CCU_DIV_FLAGS(16, 2, CLK_DIVIDER_POWER_OF_TWO),
  124. .common = {
  125. .reg = 0x020,
  126. .hw.init = CLK_HW_INIT("pll-ddr-other", "pll-ddr-base",
  127. &ccu_div_ops,
  128. 0),
  129. },
  130. };
  131. static struct ccu_nk pll_periph_clk = {
  132. .enable = BIT(31),
  133. .n = _SUNXI_CCU_MULT_OFFSET(8, 5, 0),
  134. .k = _SUNXI_CCU_MULT(4, 2),
  135. .fixed_post_div = 2,
  136. .common = {
  137. .reg = 0x028,
  138. .features = CCU_FEATURE_FIXED_POSTDIV,
  139. .hw.init = CLK_HW_INIT("pll-periph",
  140. "hosc",
  141. &ccu_nk_ops,
  142. 0),
  143. },
  144. };
  145. static struct ccu_mult pll_video1_clk = {
  146. .enable = BIT(31),
  147. .mult = _SUNXI_CCU_MULT_OFFSET_MIN_MAX(0, 7, 0, 9, 127),
  148. .frac = _SUNXI_CCU_FRAC(BIT(15), BIT(14),
  149. 270000000, 297000000),
  150. .common = {
  151. .reg = 0x030,
  152. .features = (CCU_FEATURE_FRACTIONAL |
  153. CCU_FEATURE_ALL_PREDIV),
  154. .prediv = 8,
  155. .hw.init = CLK_HW_INIT("pll-video1",
  156. "hosc",
  157. &ccu_mult_ops,
  158. 0),
  159. },
  160. };
  161. static SUNXI_CCU_GATE(hosc_clk, "hosc", "osc24M", 0x050, BIT(0), 0);
  162. #define SUN5I_AHB_REG 0x054
  163. static const char * const cpu_parents[] = { "osc32k", "hosc",
  164. "pll-core" , "pll-periph" };
  165. static const struct ccu_mux_fixed_prediv cpu_predivs[] = {
  166. { .index = 3, .div = 3, },
  167. };
  168. static struct ccu_mux cpu_clk = {
  169. .mux = {
  170. .shift = 16,
  171. .width = 2,
  172. .fixed_predivs = cpu_predivs,
  173. .n_predivs = ARRAY_SIZE(cpu_predivs),
  174. },
  175. .common = {
  176. .reg = 0x054,
  177. .features = CCU_FEATURE_FIXED_PREDIV,
  178. .hw.init = CLK_HW_INIT_PARENTS("cpu",
  179. cpu_parents,
  180. &ccu_mux_ops,
  181. CLK_SET_RATE_PARENT | CLK_IS_CRITICAL),
  182. }
  183. };
  184. static SUNXI_CCU_M(axi_clk, "axi", "cpu", 0x054, 0, 2, 0);
  185. static const char * const ahb_parents[] = { "axi" , "cpu", "pll-periph" };
  186. static const struct ccu_mux_fixed_prediv ahb_predivs[] = {
  187. { .index = 2, .div = 2, },
  188. };
  189. static struct ccu_div ahb_clk = {
  190. .div = _SUNXI_CCU_DIV_FLAGS(4, 2, CLK_DIVIDER_POWER_OF_TWO),
  191. .mux = {
  192. .shift = 6,
  193. .width = 2,
  194. .fixed_predivs = ahb_predivs,
  195. .n_predivs = ARRAY_SIZE(ahb_predivs),
  196. },
  197. .common = {
  198. .reg = 0x054,
  199. .hw.init = CLK_HW_INIT_PARENTS("ahb",
  200. ahb_parents,
  201. &ccu_div_ops,
  202. 0),
  203. },
  204. };
  205. static struct clk_div_table apb0_div_table[] = {
  206. { .val = 0, .div = 2 },
  207. { .val = 1, .div = 2 },
  208. { .val = 2, .div = 4 },
  209. { .val = 3, .div = 8 },
  210. { /* Sentinel */ },
  211. };
  212. static SUNXI_CCU_DIV_TABLE(apb0_clk, "apb0", "ahb",
  213. 0x054, 8, 2, apb0_div_table, 0);
  214. static const char * const apb1_parents[] = { "hosc", "pll-periph", "osc32k" };
  215. static SUNXI_CCU_MP_WITH_MUX(apb1_clk, "apb1", apb1_parents, 0x058,
  216. 0, 5, /* M */
  217. 16, 2, /* P */
  218. 24, 2, /* mux */
  219. 0);
  220. static SUNXI_CCU_GATE(axi_dram_clk, "axi-dram", "axi",
  221. 0x05c, BIT(0), 0);
  222. static SUNXI_CCU_GATE(ahb_otg_clk, "ahb-otg", "ahb",
  223. 0x060, BIT(0), 0);
  224. static SUNXI_CCU_GATE(ahb_ehci_clk, "ahb-ehci", "ahb",
  225. 0x060, BIT(1), 0);
  226. static SUNXI_CCU_GATE(ahb_ohci_clk, "ahb-ohci", "ahb",
  227. 0x060, BIT(2), 0);
  228. static SUNXI_CCU_GATE(ahb_ss_clk, "ahb-ss", "ahb",
  229. 0x060, BIT(5), 0);
  230. static SUNXI_CCU_GATE(ahb_dma_clk, "ahb-dma", "ahb",
  231. 0x060, BIT(6), 0);
  232. static SUNXI_CCU_GATE(ahb_bist_clk, "ahb-bist", "ahb",
  233. 0x060, BIT(7), 0);
  234. static SUNXI_CCU_GATE(ahb_mmc0_clk, "ahb-mmc0", "ahb",
  235. 0x060, BIT(8), 0);
  236. static SUNXI_CCU_GATE(ahb_mmc1_clk, "ahb-mmc1", "ahb",
  237. 0x060, BIT(9), 0);
  238. static SUNXI_CCU_GATE(ahb_mmc2_clk, "ahb-mmc2", "ahb",
  239. 0x060, BIT(10), 0);
  240. static SUNXI_CCU_GATE(ahb_nand_clk, "ahb-nand", "ahb",
  241. 0x060, BIT(13), 0);
  242. static SUNXI_CCU_GATE(ahb_sdram_clk, "ahb-sdram", "ahb",
  243. 0x060, BIT(14), CLK_IS_CRITICAL);
  244. static SUNXI_CCU_GATE(ahb_emac_clk, "ahb-emac", "ahb",
  245. 0x060, BIT(17), 0);
  246. static SUNXI_CCU_GATE(ahb_ts_clk, "ahb-ts", "ahb",
  247. 0x060, BIT(18), 0);
  248. static SUNXI_CCU_GATE(ahb_spi0_clk, "ahb-spi0", "ahb",
  249. 0x060, BIT(20), 0);
  250. static SUNXI_CCU_GATE(ahb_spi1_clk, "ahb-spi1", "ahb",
  251. 0x060, BIT(21), 0);
  252. static SUNXI_CCU_GATE(ahb_spi2_clk, "ahb-spi2", "ahb",
  253. 0x060, BIT(22), 0);
  254. static SUNXI_CCU_GATE(ahb_gps_clk, "ahb-gps", "ahb",
  255. 0x060, BIT(26), 0);
  256. static SUNXI_CCU_GATE(ahb_hstimer_clk, "ahb-hstimer", "ahb",
  257. 0x060, BIT(28), 0);
  258. static SUNXI_CCU_GATE(ahb_ve_clk, "ahb-ve", "ahb",
  259. 0x064, BIT(0), 0);
  260. static SUNXI_CCU_GATE(ahb_tve_clk, "ahb-tve", "ahb",
  261. 0x064, BIT(2), 0);
  262. static SUNXI_CCU_GATE(ahb_lcd_clk, "ahb-lcd", "ahb",
  263. 0x064, BIT(4), 0);
  264. static SUNXI_CCU_GATE(ahb_csi_clk, "ahb-csi", "ahb",
  265. 0x064, BIT(8), 0);
  266. static SUNXI_CCU_GATE(ahb_hdmi_clk, "ahb-hdmi", "ahb",
  267. 0x064, BIT(11), 0);
  268. static SUNXI_CCU_GATE(ahb_de_be_clk, "ahb-de-be", "ahb",
  269. 0x064, BIT(12), 0);
  270. static SUNXI_CCU_GATE(ahb_de_fe_clk, "ahb-de-fe", "ahb",
  271. 0x064, BIT(14), 0);
  272. static SUNXI_CCU_GATE(ahb_iep_clk, "ahb-iep", "ahb",
  273. 0x064, BIT(19), 0);
  274. static SUNXI_CCU_GATE(ahb_gpu_clk, "ahb-gpu", "ahb",
  275. 0x064, BIT(20), 0);
  276. static SUNXI_CCU_GATE(apb0_codec_clk, "apb0-codec", "apb0",
  277. 0x068, BIT(0), 0);
  278. static SUNXI_CCU_GATE(apb0_spdif_clk, "apb0-spdif", "apb0",
  279. 0x068, BIT(1), 0);
  280. static SUNXI_CCU_GATE(apb0_i2s_clk, "apb0-i2s", "apb0",
  281. 0x068, BIT(3), 0);
  282. static SUNXI_CCU_GATE(apb0_pio_clk, "apb0-pio", "apb0",
  283. 0x068, BIT(5), 0);
  284. static SUNXI_CCU_GATE(apb0_ir_clk, "apb0-ir", "apb0",
  285. 0x068, BIT(6), 0);
  286. static SUNXI_CCU_GATE(apb0_keypad_clk, "apb0-keypad", "apb0",
  287. 0x068, BIT(10), 0);
  288. static SUNXI_CCU_GATE(apb1_i2c0_clk, "apb1-i2c0", "apb1",
  289. 0x06c, BIT(0), 0);
  290. static SUNXI_CCU_GATE(apb1_i2c1_clk, "apb1-i2c1", "apb1",
  291. 0x06c, BIT(1), 0);
  292. static SUNXI_CCU_GATE(apb1_i2c2_clk, "apb1-i2c2", "apb1",
  293. 0x06c, BIT(2), 0);
  294. static SUNXI_CCU_GATE(apb1_uart0_clk, "apb1-uart0", "apb1",
  295. 0x06c, BIT(16), 0);
  296. static SUNXI_CCU_GATE(apb1_uart1_clk, "apb1-uart1", "apb1",
  297. 0x06c, BIT(17), 0);
  298. static SUNXI_CCU_GATE(apb1_uart2_clk, "apb1-uart2", "apb1",
  299. 0x06c, BIT(18), 0);
  300. static SUNXI_CCU_GATE(apb1_uart3_clk, "apb1-uart3", "apb1",
  301. 0x06c, BIT(19), 0);
  302. static const char * const mod0_default_parents[] = { "hosc", "pll-periph",
  303. "pll-ddr-other" };
  304. static SUNXI_CCU_MP_WITH_MUX_GATE(nand_clk, "nand", mod0_default_parents, 0x080,
  305. 0, 4, /* M */
  306. 16, 2, /* P */
  307. 24, 2, /* mux */
  308. BIT(31), /* gate */
  309. 0);
  310. static SUNXI_CCU_MP_WITH_MUX_GATE(mmc0_clk, "mmc0", mod0_default_parents, 0x088,
  311. 0, 4, /* M */
  312. 16, 2, /* P */
  313. 24, 2, /* mux */
  314. BIT(31), /* gate */
  315. 0);
  316. static SUNXI_CCU_MP_WITH_MUX_GATE(mmc1_clk, "mmc1", mod0_default_parents, 0x08c,
  317. 0, 4, /* M */
  318. 16, 2, /* P */
  319. 24, 2, /* mux */
  320. BIT(31), /* gate */
  321. 0);
  322. static SUNXI_CCU_MP_WITH_MUX_GATE(mmc2_clk, "mmc2", mod0_default_parents, 0x090,
  323. 0, 4, /* M */
  324. 16, 2, /* P */
  325. 24, 2, /* mux */
  326. BIT(31), /* gate */
  327. 0);
  328. static SUNXI_CCU_MP_WITH_MUX_GATE(ts_clk, "ts", mod0_default_parents, 0x098,
  329. 0, 4, /* M */
  330. 16, 2, /* P */
  331. 24, 2, /* mux */
  332. BIT(31), /* gate */
  333. 0);
  334. static SUNXI_CCU_MP_WITH_MUX_GATE(ss_clk, "ss", mod0_default_parents, 0x09c,
  335. 0, 4, /* M */
  336. 16, 2, /* P */
  337. 24, 2, /* mux */
  338. BIT(31), /* gate */
  339. 0);
  340. static SUNXI_CCU_MP_WITH_MUX_GATE(spi0_clk, "spi0", mod0_default_parents, 0x0a0,
  341. 0, 4, /* M */
  342. 16, 2, /* P */
  343. 24, 2, /* mux */
  344. BIT(31), /* gate */
  345. 0);
  346. static SUNXI_CCU_MP_WITH_MUX_GATE(spi1_clk, "spi1", mod0_default_parents, 0x0a4,
  347. 0, 4, /* M */
  348. 16, 2, /* P */
  349. 24, 2, /* mux */
  350. BIT(31), /* gate */
  351. 0);
  352. static SUNXI_CCU_MP_WITH_MUX_GATE(spi2_clk, "spi2", mod0_default_parents, 0x0a8,
  353. 0, 4, /* M */
  354. 16, 2, /* P */
  355. 24, 2, /* mux */
  356. BIT(31), /* gate */
  357. 0);
  358. static SUNXI_CCU_MP_WITH_MUX_GATE(ir_clk, "ir", mod0_default_parents, 0x0b0,
  359. 0, 4, /* M */
  360. 16, 2, /* P */
  361. 24, 2, /* mux */
  362. BIT(31), /* gate */
  363. 0);
  364. static const char * const i2s_parents[] = { "pll-audio-8x", "pll-audio-4x",
  365. "pll-audio-2x", "pll-audio" };
  366. static SUNXI_CCU_MUX_WITH_GATE(i2s_clk, "i2s", i2s_parents,
  367. 0x0b8, 16, 2, BIT(31), CLK_SET_RATE_PARENT);
  368. static const char * const spdif_parents[] = { "pll-audio-8x", "pll-audio-4x",
  369. "pll-audio-2x", "pll-audio" };
  370. static SUNXI_CCU_MUX_WITH_GATE(spdif_clk, "spdif", spdif_parents,
  371. 0x0c0, 16, 2, BIT(31), CLK_SET_RATE_PARENT);
  372. static const char * const keypad_parents[] = { "hosc", "losc"};
  373. static const u8 keypad_table[] = { 0, 2 };
  374. static struct ccu_mp keypad_clk = {
  375. .enable = BIT(31),
  376. .m = _SUNXI_CCU_DIV(8, 5),
  377. .p = _SUNXI_CCU_DIV(20, 2),
  378. .mux = _SUNXI_CCU_MUX_TABLE(24, 2, keypad_table),
  379. .common = {
  380. .reg = 0x0c4,
  381. .hw.init = CLK_HW_INIT_PARENTS("keypad",
  382. keypad_parents,
  383. &ccu_mp_ops,
  384. 0),
  385. },
  386. };
  387. static SUNXI_CCU_GATE(usb_ohci_clk, "usb-ohci", "pll-periph",
  388. 0x0cc, BIT(6), 0);
  389. static SUNXI_CCU_GATE(usb_phy0_clk, "usb-phy0", "pll-periph",
  390. 0x0cc, BIT(8), 0);
  391. static SUNXI_CCU_GATE(usb_phy1_clk, "usb-phy1", "pll-periph",
  392. 0x0cc, BIT(9), 0);
  393. static const char * const gps_parents[] = { "hosc", "pll-periph",
  394. "pll-video1", "pll-ve" };
  395. static SUNXI_CCU_M_WITH_MUX_GATE(gps_clk, "gps", gps_parents,
  396. 0x0d0, 0, 3, 24, 2, BIT(31), 0);
  397. static SUNXI_CCU_GATE(dram_ve_clk, "dram-ve", "pll-ddr",
  398. 0x100, BIT(0), 0);
  399. static SUNXI_CCU_GATE(dram_csi_clk, "dram-csi", "pll-ddr",
  400. 0x100, BIT(1), 0);
  401. static SUNXI_CCU_GATE(dram_ts_clk, "dram-ts", "pll-ddr",
  402. 0x100, BIT(3), 0);
  403. static SUNXI_CCU_GATE(dram_tve_clk, "dram-tve", "pll-ddr",
  404. 0x100, BIT(5), 0);
  405. static SUNXI_CCU_GATE(dram_de_fe_clk, "dram-de-fe", "pll-ddr",
  406. 0x100, BIT(25), 0);
  407. static SUNXI_CCU_GATE(dram_de_be_clk, "dram-de-be", "pll-ddr",
  408. 0x100, BIT(26), 0);
  409. static SUNXI_CCU_GATE(dram_ace_clk, "dram-ace", "pll-ddr",
  410. 0x100, BIT(29), 0);
  411. static SUNXI_CCU_GATE(dram_iep_clk, "dram-iep", "pll-ddr",
  412. 0x100, BIT(31), 0);
  413. static const char * const de_parents[] = { "pll-video0", "pll-video1",
  414. "pll-ddr-other" };
  415. static SUNXI_CCU_M_WITH_MUX_GATE(de_be_clk, "de-be", de_parents,
  416. 0x104, 0, 4, 24, 2, BIT(31), 0);
  417. static SUNXI_CCU_M_WITH_MUX_GATE(de_fe_clk, "de-fe", de_parents,
  418. 0x10c, 0, 4, 24, 2, BIT(31), 0);
  419. static const char * const tcon_parents[] = { "pll-video0", "pll-video1",
  420. "pll-video0-2x", "pll-video1-2x" };
  421. static SUNXI_CCU_MUX_WITH_GATE(tcon_ch0_clk, "tcon-ch0-sclk", tcon_parents,
  422. 0x118, 24, 2, BIT(31), CLK_SET_RATE_PARENT);
  423. static SUNXI_CCU_M_WITH_MUX_GATE(tcon_ch1_sclk2_clk, "tcon-ch1-sclk2",
  424. tcon_parents,
  425. 0x12c, 0, 4, 24, 2, BIT(31), CLK_SET_RATE_PARENT);
  426. static SUNXI_CCU_M_WITH_GATE(tcon_ch1_sclk1_clk, "tcon-ch1-sclk1", "tcon-ch1-sclk2",
  427. 0x12c, 11, 1, BIT(15), CLK_SET_RATE_PARENT);
  428. static const char * const csi_parents[] = { "hosc", "pll-video0", "pll-video1",
  429. "pll-video0-2x", "pll-video1-2x" };
  430. static const u8 csi_table[] = { 0, 1, 2, 5, 6 };
  431. static SUNXI_CCU_M_WITH_MUX_TABLE_GATE(csi_clk, "csi",
  432. csi_parents, csi_table,
  433. 0x134, 0, 5, 24, 3, BIT(31), 0);
  434. static SUNXI_CCU_GATE(ve_clk, "ve", "pll-ve",
  435. 0x13c, BIT(31), CLK_SET_RATE_PARENT);
  436. static SUNXI_CCU_GATE(codec_clk, "codec", "pll-audio",
  437. 0x140, BIT(31), CLK_SET_RATE_PARENT);
  438. static SUNXI_CCU_GATE(avs_clk, "avs", "hosc",
  439. 0x144, BIT(31), 0);
  440. static const char * const hdmi_parents[] = { "pll-video0", "pll-video0-2x" };
  441. static const u8 hdmi_table[] = { 0, 2 };
  442. static SUNXI_CCU_M_WITH_MUX_TABLE_GATE(hdmi_clk, "hdmi",
  443. hdmi_parents, hdmi_table,
  444. 0x150, 0, 4, 24, 2, BIT(31),
  445. CLK_SET_RATE_PARENT);
  446. static const char * const gpu_parents[] = { "pll-video0", "pll-ve",
  447. "pll-ddr-other", "pll-video1",
  448. "pll-video1-2x" };
  449. static SUNXI_CCU_M_WITH_MUX_GATE(gpu_clk, "gpu", gpu_parents,
  450. 0x154, 0, 4, 24, 3, BIT(31), 0);
  451. static const char * const mbus_parents[] = { "hosc", "pll-periph", "pll-ddr" };
  452. static SUNXI_CCU_MP_WITH_MUX_GATE(mbus_clk, "mbus", mbus_parents,
  453. 0x15c, 0, 4, 16, 2, 24, 2, BIT(31), CLK_IS_CRITICAL);
  454. static SUNXI_CCU_GATE(iep_clk, "iep", "de-be",
  455. 0x160, BIT(31), 0);
  456. static struct ccu_common *sun5i_a10s_ccu_clks[] = {
  457. &hosc_clk.common,
  458. &pll_core_clk.common,
  459. &pll_audio_base_clk.common,
  460. &pll_video0_clk.common,
  461. &pll_ve_clk.common,
  462. &pll_ddr_base_clk.common,
  463. &pll_ddr_clk.common,
  464. &pll_ddr_other_clk.common,
  465. &pll_periph_clk.common,
  466. &pll_video1_clk.common,
  467. &cpu_clk.common,
  468. &axi_clk.common,
  469. &ahb_clk.common,
  470. &apb0_clk.common,
  471. &apb1_clk.common,
  472. &axi_dram_clk.common,
  473. &ahb_otg_clk.common,
  474. &ahb_ehci_clk.common,
  475. &ahb_ohci_clk.common,
  476. &ahb_ss_clk.common,
  477. &ahb_dma_clk.common,
  478. &ahb_bist_clk.common,
  479. &ahb_mmc0_clk.common,
  480. &ahb_mmc1_clk.common,
  481. &ahb_mmc2_clk.common,
  482. &ahb_nand_clk.common,
  483. &ahb_sdram_clk.common,
  484. &ahb_emac_clk.common,
  485. &ahb_ts_clk.common,
  486. &ahb_spi0_clk.common,
  487. &ahb_spi1_clk.common,
  488. &ahb_spi2_clk.common,
  489. &ahb_gps_clk.common,
  490. &ahb_hstimer_clk.common,
  491. &ahb_ve_clk.common,
  492. &ahb_tve_clk.common,
  493. &ahb_lcd_clk.common,
  494. &ahb_csi_clk.common,
  495. &ahb_hdmi_clk.common,
  496. &ahb_de_be_clk.common,
  497. &ahb_de_fe_clk.common,
  498. &ahb_iep_clk.common,
  499. &ahb_gpu_clk.common,
  500. &apb0_codec_clk.common,
  501. &apb0_spdif_clk.common,
  502. &apb0_i2s_clk.common,
  503. &apb0_pio_clk.common,
  504. &apb0_ir_clk.common,
  505. &apb0_keypad_clk.common,
  506. &apb1_i2c0_clk.common,
  507. &apb1_i2c1_clk.common,
  508. &apb1_i2c2_clk.common,
  509. &apb1_uart0_clk.common,
  510. &apb1_uart1_clk.common,
  511. &apb1_uart2_clk.common,
  512. &apb1_uart3_clk.common,
  513. &nand_clk.common,
  514. &mmc0_clk.common,
  515. &mmc1_clk.common,
  516. &mmc2_clk.common,
  517. &ts_clk.common,
  518. &ss_clk.common,
  519. &spi0_clk.common,
  520. &spi1_clk.common,
  521. &spi2_clk.common,
  522. &ir_clk.common,
  523. &i2s_clk.common,
  524. &spdif_clk.common,
  525. &keypad_clk.common,
  526. &usb_ohci_clk.common,
  527. &usb_phy0_clk.common,
  528. &usb_phy1_clk.common,
  529. &gps_clk.common,
  530. &dram_ve_clk.common,
  531. &dram_csi_clk.common,
  532. &dram_ts_clk.common,
  533. &dram_tve_clk.common,
  534. &dram_de_fe_clk.common,
  535. &dram_de_be_clk.common,
  536. &dram_ace_clk.common,
  537. &dram_iep_clk.common,
  538. &de_be_clk.common,
  539. &de_fe_clk.common,
  540. &tcon_ch0_clk.common,
  541. &tcon_ch1_sclk2_clk.common,
  542. &tcon_ch1_sclk1_clk.common,
  543. &csi_clk.common,
  544. &ve_clk.common,
  545. &codec_clk.common,
  546. &avs_clk.common,
  547. &hdmi_clk.common,
  548. &gpu_clk.common,
  549. &mbus_clk.common,
  550. &iep_clk.common,
  551. };
  552. /* We hardcode the divider to 1 for now */
  553. static CLK_FIXED_FACTOR(pll_audio_clk, "pll-audio",
  554. "pll-audio-base", 1, 1, CLK_SET_RATE_PARENT);
  555. static CLK_FIXED_FACTOR(pll_audio_2x_clk, "pll-audio-2x",
  556. "pll-audio-base", 2, 1, CLK_SET_RATE_PARENT);
  557. static CLK_FIXED_FACTOR(pll_audio_4x_clk, "pll-audio-4x",
  558. "pll-audio-base", 1, 1, CLK_SET_RATE_PARENT);
  559. static CLK_FIXED_FACTOR(pll_audio_8x_clk, "pll-audio-8x",
  560. "pll-audio-base", 1, 2, CLK_SET_RATE_PARENT);
  561. static CLK_FIXED_FACTOR(pll_video0_2x_clk, "pll-video0-2x",
  562. "pll-video0", 1, 2, CLK_SET_RATE_PARENT);
  563. static CLK_FIXED_FACTOR(pll_video1_2x_clk, "pll-video1-2x",
  564. "pll-video1", 1, 2, CLK_SET_RATE_PARENT);
  565. static struct clk_hw_onecell_data sun5i_a10s_hw_clks = {
  566. .hws = {
  567. [CLK_HOSC] = &hosc_clk.common.hw,
  568. [CLK_PLL_CORE] = &pll_core_clk.common.hw,
  569. [CLK_PLL_AUDIO_BASE] = &pll_audio_base_clk.common.hw,
  570. [CLK_PLL_AUDIO] = &pll_audio_clk.hw,
  571. [CLK_PLL_AUDIO_2X] = &pll_audio_2x_clk.hw,
  572. [CLK_PLL_AUDIO_4X] = &pll_audio_4x_clk.hw,
  573. [CLK_PLL_AUDIO_8X] = &pll_audio_8x_clk.hw,
  574. [CLK_PLL_VIDEO0] = &pll_video0_clk.common.hw,
  575. [CLK_PLL_VIDEO0_2X] = &pll_video0_2x_clk.hw,
  576. [CLK_PLL_VE] = &pll_ve_clk.common.hw,
  577. [CLK_PLL_DDR_BASE] = &pll_ddr_base_clk.common.hw,
  578. [CLK_PLL_DDR] = &pll_ddr_clk.common.hw,
  579. [CLK_PLL_DDR_OTHER] = &pll_ddr_other_clk.common.hw,
  580. [CLK_PLL_PERIPH] = &pll_periph_clk.common.hw,
  581. [CLK_PLL_VIDEO1] = &pll_video1_clk.common.hw,
  582. [CLK_PLL_VIDEO1_2X] = &pll_video1_2x_clk.hw,
  583. [CLK_CPU] = &cpu_clk.common.hw,
  584. [CLK_AXI] = &axi_clk.common.hw,
  585. [CLK_AHB] = &ahb_clk.common.hw,
  586. [CLK_APB0] = &apb0_clk.common.hw,
  587. [CLK_APB1] = &apb1_clk.common.hw,
  588. [CLK_DRAM_AXI] = &axi_dram_clk.common.hw,
  589. [CLK_AHB_OTG] = &ahb_otg_clk.common.hw,
  590. [CLK_AHB_EHCI] = &ahb_ehci_clk.common.hw,
  591. [CLK_AHB_OHCI] = &ahb_ohci_clk.common.hw,
  592. [CLK_AHB_SS] = &ahb_ss_clk.common.hw,
  593. [CLK_AHB_DMA] = &ahb_dma_clk.common.hw,
  594. [CLK_AHB_BIST] = &ahb_bist_clk.common.hw,
  595. [CLK_AHB_MMC0] = &ahb_mmc0_clk.common.hw,
  596. [CLK_AHB_MMC1] = &ahb_mmc1_clk.common.hw,
  597. [CLK_AHB_MMC2] = &ahb_mmc2_clk.common.hw,
  598. [CLK_AHB_NAND] = &ahb_nand_clk.common.hw,
  599. [CLK_AHB_SDRAM] = &ahb_sdram_clk.common.hw,
  600. [CLK_AHB_EMAC] = &ahb_emac_clk.common.hw,
  601. [CLK_AHB_TS] = &ahb_ts_clk.common.hw,
  602. [CLK_AHB_SPI0] = &ahb_spi0_clk.common.hw,
  603. [CLK_AHB_SPI1] = &ahb_spi1_clk.common.hw,
  604. [CLK_AHB_SPI2] = &ahb_spi2_clk.common.hw,
  605. [CLK_AHB_GPS] = &ahb_gps_clk.common.hw,
  606. [CLK_AHB_HSTIMER] = &ahb_hstimer_clk.common.hw,
  607. [CLK_AHB_VE] = &ahb_ve_clk.common.hw,
  608. [CLK_AHB_TVE] = &ahb_tve_clk.common.hw,
  609. [CLK_AHB_LCD] = &ahb_lcd_clk.common.hw,
  610. [CLK_AHB_CSI] = &ahb_csi_clk.common.hw,
  611. [CLK_AHB_HDMI] = &ahb_hdmi_clk.common.hw,
  612. [CLK_AHB_DE_BE] = &ahb_de_be_clk.common.hw,
  613. [CLK_AHB_DE_FE] = &ahb_de_fe_clk.common.hw,
  614. [CLK_AHB_IEP] = &ahb_iep_clk.common.hw,
  615. [CLK_AHB_GPU] = &ahb_gpu_clk.common.hw,
  616. [CLK_APB0_CODEC] = &apb0_codec_clk.common.hw,
  617. [CLK_APB0_I2S] = &apb0_i2s_clk.common.hw,
  618. [CLK_APB0_PIO] = &apb0_pio_clk.common.hw,
  619. [CLK_APB0_IR] = &apb0_ir_clk.common.hw,
  620. [CLK_APB0_KEYPAD] = &apb0_keypad_clk.common.hw,
  621. [CLK_APB1_I2C0] = &apb1_i2c0_clk.common.hw,
  622. [CLK_APB1_I2C1] = &apb1_i2c1_clk.common.hw,
  623. [CLK_APB1_I2C2] = &apb1_i2c2_clk.common.hw,
  624. [CLK_APB1_UART0] = &apb1_uart0_clk.common.hw,
  625. [CLK_APB1_UART1] = &apb1_uart1_clk.common.hw,
  626. [CLK_APB1_UART2] = &apb1_uart2_clk.common.hw,
  627. [CLK_APB1_UART3] = &apb1_uart3_clk.common.hw,
  628. [CLK_NAND] = &nand_clk.common.hw,
  629. [CLK_MMC0] = &mmc0_clk.common.hw,
  630. [CLK_MMC1] = &mmc1_clk.common.hw,
  631. [CLK_MMC2] = &mmc2_clk.common.hw,
  632. [CLK_TS] = &ts_clk.common.hw,
  633. [CLK_SS] = &ss_clk.common.hw,
  634. [CLK_SPI0] = &spi0_clk.common.hw,
  635. [CLK_SPI1] = &spi1_clk.common.hw,
  636. [CLK_SPI2] = &spi2_clk.common.hw,
  637. [CLK_IR] = &ir_clk.common.hw,
  638. [CLK_I2S] = &i2s_clk.common.hw,
  639. [CLK_KEYPAD] = &keypad_clk.common.hw,
  640. [CLK_USB_OHCI] = &usb_ohci_clk.common.hw,
  641. [CLK_USB_PHY0] = &usb_phy0_clk.common.hw,
  642. [CLK_USB_PHY1] = &usb_phy1_clk.common.hw,
  643. [CLK_GPS] = &gps_clk.common.hw,
  644. [CLK_DRAM_VE] = &dram_ve_clk.common.hw,
  645. [CLK_DRAM_CSI] = &dram_csi_clk.common.hw,
  646. [CLK_DRAM_TS] = &dram_ts_clk.common.hw,
  647. [CLK_DRAM_TVE] = &dram_tve_clk.common.hw,
  648. [CLK_DRAM_DE_FE] = &dram_de_fe_clk.common.hw,
  649. [CLK_DRAM_DE_BE] = &dram_de_be_clk.common.hw,
  650. [CLK_DRAM_ACE] = &dram_ace_clk.common.hw,
  651. [CLK_DRAM_IEP] = &dram_iep_clk.common.hw,
  652. [CLK_DE_BE] = &de_be_clk.common.hw,
  653. [CLK_DE_FE] = &de_fe_clk.common.hw,
  654. [CLK_TCON_CH0] = &tcon_ch0_clk.common.hw,
  655. [CLK_TCON_CH1_SCLK] = &tcon_ch1_sclk2_clk.common.hw,
  656. [CLK_TCON_CH1] = &tcon_ch1_sclk1_clk.common.hw,
  657. [CLK_CSI] = &csi_clk.common.hw,
  658. [CLK_VE] = &ve_clk.common.hw,
  659. [CLK_CODEC] = &codec_clk.common.hw,
  660. [CLK_AVS] = &avs_clk.common.hw,
  661. [CLK_HDMI] = &hdmi_clk.common.hw,
  662. [CLK_GPU] = &gpu_clk.common.hw,
  663. [CLK_MBUS] = &mbus_clk.common.hw,
  664. [CLK_IEP] = &iep_clk.common.hw,
  665. },
  666. .num = CLK_NUMBER,
  667. };
  668. static struct ccu_reset_map sun5i_a10s_ccu_resets[] = {
  669. [RST_USB_PHY0] = { 0x0cc, BIT(0) },
  670. [RST_USB_PHY1] = { 0x0cc, BIT(1) },
  671. [RST_GPS] = { 0x0d0, BIT(30) },
  672. [RST_DE_BE] = { 0x104, BIT(30) },
  673. [RST_DE_FE] = { 0x10c, BIT(30) },
  674. [RST_TVE] = { 0x118, BIT(29) },
  675. [RST_LCD] = { 0x118, BIT(30) },
  676. [RST_CSI] = { 0x134, BIT(30) },
  677. [RST_VE] = { 0x13c, BIT(0) },
  678. [RST_GPU] = { 0x154, BIT(30) },
  679. [RST_IEP] = { 0x160, BIT(30) },
  680. };
  681. static const struct sunxi_ccu_desc sun5i_a10s_ccu_desc = {
  682. .ccu_clks = sun5i_a10s_ccu_clks,
  683. .num_ccu_clks = ARRAY_SIZE(sun5i_a10s_ccu_clks),
  684. .hw_clks = &sun5i_a10s_hw_clks,
  685. .resets = sun5i_a10s_ccu_resets,
  686. .num_resets = ARRAY_SIZE(sun5i_a10s_ccu_resets),
  687. };
  688. /*
  689. * The A13 is the A10s minus the TS, GPS, HDMI, I2S and the keypad
  690. */
  691. static struct clk_hw_onecell_data sun5i_a13_hw_clks = {
  692. .hws = {
  693. [CLK_HOSC] = &hosc_clk.common.hw,
  694. [CLK_PLL_CORE] = &pll_core_clk.common.hw,
  695. [CLK_PLL_AUDIO_BASE] = &pll_audio_base_clk.common.hw,
  696. [CLK_PLL_AUDIO] = &pll_audio_clk.hw,
  697. [CLK_PLL_AUDIO_2X] = &pll_audio_2x_clk.hw,
  698. [CLK_PLL_AUDIO_4X] = &pll_audio_4x_clk.hw,
  699. [CLK_PLL_AUDIO_8X] = &pll_audio_8x_clk.hw,
  700. [CLK_PLL_VIDEO0] = &pll_video0_clk.common.hw,
  701. [CLK_PLL_VIDEO0_2X] = &pll_video0_2x_clk.hw,
  702. [CLK_PLL_VE] = &pll_ve_clk.common.hw,
  703. [CLK_PLL_DDR_BASE] = &pll_ddr_base_clk.common.hw,
  704. [CLK_PLL_DDR] = &pll_ddr_clk.common.hw,
  705. [CLK_PLL_DDR_OTHER] = &pll_ddr_other_clk.common.hw,
  706. [CLK_PLL_PERIPH] = &pll_periph_clk.common.hw,
  707. [CLK_PLL_VIDEO1] = &pll_video1_clk.common.hw,
  708. [CLK_PLL_VIDEO1_2X] = &pll_video1_2x_clk.hw,
  709. [CLK_CPU] = &cpu_clk.common.hw,
  710. [CLK_AXI] = &axi_clk.common.hw,
  711. [CLK_AHB] = &ahb_clk.common.hw,
  712. [CLK_APB0] = &apb0_clk.common.hw,
  713. [CLK_APB1] = &apb1_clk.common.hw,
  714. [CLK_DRAM_AXI] = &axi_dram_clk.common.hw,
  715. [CLK_AHB_OTG] = &ahb_otg_clk.common.hw,
  716. [CLK_AHB_EHCI] = &ahb_ehci_clk.common.hw,
  717. [CLK_AHB_OHCI] = &ahb_ohci_clk.common.hw,
  718. [CLK_AHB_SS] = &ahb_ss_clk.common.hw,
  719. [CLK_AHB_DMA] = &ahb_dma_clk.common.hw,
  720. [CLK_AHB_BIST] = &ahb_bist_clk.common.hw,
  721. [CLK_AHB_MMC0] = &ahb_mmc0_clk.common.hw,
  722. [CLK_AHB_MMC1] = &ahb_mmc1_clk.common.hw,
  723. [CLK_AHB_MMC2] = &ahb_mmc2_clk.common.hw,
  724. [CLK_AHB_NAND] = &ahb_nand_clk.common.hw,
  725. [CLK_AHB_SDRAM] = &ahb_sdram_clk.common.hw,
  726. [CLK_AHB_EMAC] = &ahb_emac_clk.common.hw,
  727. [CLK_AHB_SPI0] = &ahb_spi0_clk.common.hw,
  728. [CLK_AHB_SPI1] = &ahb_spi1_clk.common.hw,
  729. [CLK_AHB_SPI2] = &ahb_spi2_clk.common.hw,
  730. [CLK_AHB_HSTIMER] = &ahb_hstimer_clk.common.hw,
  731. [CLK_AHB_VE] = &ahb_ve_clk.common.hw,
  732. [CLK_AHB_TVE] = &ahb_tve_clk.common.hw,
  733. [CLK_AHB_LCD] = &ahb_lcd_clk.common.hw,
  734. [CLK_AHB_CSI] = &ahb_csi_clk.common.hw,
  735. [CLK_AHB_DE_BE] = &ahb_de_be_clk.common.hw,
  736. [CLK_AHB_DE_FE] = &ahb_de_fe_clk.common.hw,
  737. [CLK_AHB_IEP] = &ahb_iep_clk.common.hw,
  738. [CLK_AHB_GPU] = &ahb_gpu_clk.common.hw,
  739. [CLK_APB0_CODEC] = &apb0_codec_clk.common.hw,
  740. [CLK_APB0_PIO] = &apb0_pio_clk.common.hw,
  741. [CLK_APB0_IR] = &apb0_ir_clk.common.hw,
  742. [CLK_APB1_I2C0] = &apb1_i2c0_clk.common.hw,
  743. [CLK_APB1_I2C1] = &apb1_i2c1_clk.common.hw,
  744. [CLK_APB1_I2C2] = &apb1_i2c2_clk.common.hw,
  745. [CLK_APB1_UART0] = &apb1_uart0_clk.common.hw,
  746. [CLK_APB1_UART1] = &apb1_uart1_clk.common.hw,
  747. [CLK_APB1_UART2] = &apb1_uart2_clk.common.hw,
  748. [CLK_APB1_UART3] = &apb1_uart3_clk.common.hw,
  749. [CLK_NAND] = &nand_clk.common.hw,
  750. [CLK_MMC0] = &mmc0_clk.common.hw,
  751. [CLK_MMC1] = &mmc1_clk.common.hw,
  752. [CLK_MMC2] = &mmc2_clk.common.hw,
  753. [CLK_SS] = &ss_clk.common.hw,
  754. [CLK_SPI0] = &spi0_clk.common.hw,
  755. [CLK_SPI1] = &spi1_clk.common.hw,
  756. [CLK_SPI2] = &spi2_clk.common.hw,
  757. [CLK_IR] = &ir_clk.common.hw,
  758. [CLK_USB_OHCI] = &usb_ohci_clk.common.hw,
  759. [CLK_USB_PHY0] = &usb_phy0_clk.common.hw,
  760. [CLK_USB_PHY1] = &usb_phy1_clk.common.hw,
  761. [CLK_DRAM_VE] = &dram_ve_clk.common.hw,
  762. [CLK_DRAM_CSI] = &dram_csi_clk.common.hw,
  763. [CLK_DRAM_TVE] = &dram_tve_clk.common.hw,
  764. [CLK_DRAM_DE_FE] = &dram_de_fe_clk.common.hw,
  765. [CLK_DRAM_DE_BE] = &dram_de_be_clk.common.hw,
  766. [CLK_DRAM_ACE] = &dram_ace_clk.common.hw,
  767. [CLK_DRAM_IEP] = &dram_iep_clk.common.hw,
  768. [CLK_DE_BE] = &de_be_clk.common.hw,
  769. [CLK_DE_FE] = &de_fe_clk.common.hw,
  770. [CLK_TCON_CH0] = &tcon_ch0_clk.common.hw,
  771. [CLK_TCON_CH1_SCLK] = &tcon_ch1_sclk2_clk.common.hw,
  772. [CLK_TCON_CH1] = &tcon_ch1_sclk1_clk.common.hw,
  773. [CLK_CSI] = &csi_clk.common.hw,
  774. [CLK_VE] = &ve_clk.common.hw,
  775. [CLK_CODEC] = &codec_clk.common.hw,
  776. [CLK_AVS] = &avs_clk.common.hw,
  777. [CLK_GPU] = &gpu_clk.common.hw,
  778. [CLK_MBUS] = &mbus_clk.common.hw,
  779. [CLK_IEP] = &iep_clk.common.hw,
  780. },
  781. .num = CLK_NUMBER,
  782. };
  783. static const struct sunxi_ccu_desc sun5i_a13_ccu_desc = {
  784. .ccu_clks = sun5i_a10s_ccu_clks,
  785. .num_ccu_clks = ARRAY_SIZE(sun5i_a10s_ccu_clks),
  786. .hw_clks = &sun5i_a13_hw_clks,
  787. .resets = sun5i_a10s_ccu_resets,
  788. .num_resets = ARRAY_SIZE(sun5i_a10s_ccu_resets),
  789. };
  790. /*
  791. * The GR8 is the A10s CCU minus the HDMI and keypad, plus SPDIF
  792. */
  793. static struct clk_hw_onecell_data sun5i_gr8_hw_clks = {
  794. .hws = {
  795. [CLK_HOSC] = &hosc_clk.common.hw,
  796. [CLK_PLL_CORE] = &pll_core_clk.common.hw,
  797. [CLK_PLL_AUDIO_BASE] = &pll_audio_base_clk.common.hw,
  798. [CLK_PLL_AUDIO] = &pll_audio_clk.hw,
  799. [CLK_PLL_AUDIO_2X] = &pll_audio_2x_clk.hw,
  800. [CLK_PLL_AUDIO_4X] = &pll_audio_4x_clk.hw,
  801. [CLK_PLL_AUDIO_8X] = &pll_audio_8x_clk.hw,
  802. [CLK_PLL_VIDEO0] = &pll_video0_clk.common.hw,
  803. [CLK_PLL_VIDEO0_2X] = &pll_video0_2x_clk.hw,
  804. [CLK_PLL_VE] = &pll_ve_clk.common.hw,
  805. [CLK_PLL_DDR_BASE] = &pll_ddr_base_clk.common.hw,
  806. [CLK_PLL_DDR] = &pll_ddr_clk.common.hw,
  807. [CLK_PLL_DDR_OTHER] = &pll_ddr_other_clk.common.hw,
  808. [CLK_PLL_PERIPH] = &pll_periph_clk.common.hw,
  809. [CLK_PLL_VIDEO1] = &pll_video1_clk.common.hw,
  810. [CLK_PLL_VIDEO1_2X] = &pll_video1_2x_clk.hw,
  811. [CLK_CPU] = &cpu_clk.common.hw,
  812. [CLK_AXI] = &axi_clk.common.hw,
  813. [CLK_AHB] = &ahb_clk.common.hw,
  814. [CLK_APB0] = &apb0_clk.common.hw,
  815. [CLK_APB1] = &apb1_clk.common.hw,
  816. [CLK_DRAM_AXI] = &axi_dram_clk.common.hw,
  817. [CLK_AHB_OTG] = &ahb_otg_clk.common.hw,
  818. [CLK_AHB_EHCI] = &ahb_ehci_clk.common.hw,
  819. [CLK_AHB_OHCI] = &ahb_ohci_clk.common.hw,
  820. [CLK_AHB_SS] = &ahb_ss_clk.common.hw,
  821. [CLK_AHB_DMA] = &ahb_dma_clk.common.hw,
  822. [CLK_AHB_BIST] = &ahb_bist_clk.common.hw,
  823. [CLK_AHB_MMC0] = &ahb_mmc0_clk.common.hw,
  824. [CLK_AHB_MMC1] = &ahb_mmc1_clk.common.hw,
  825. [CLK_AHB_MMC2] = &ahb_mmc2_clk.common.hw,
  826. [CLK_AHB_NAND] = &ahb_nand_clk.common.hw,
  827. [CLK_AHB_SDRAM] = &ahb_sdram_clk.common.hw,
  828. [CLK_AHB_EMAC] = &ahb_emac_clk.common.hw,
  829. [CLK_AHB_TS] = &ahb_ts_clk.common.hw,
  830. [CLK_AHB_SPI0] = &ahb_spi0_clk.common.hw,
  831. [CLK_AHB_SPI1] = &ahb_spi1_clk.common.hw,
  832. [CLK_AHB_SPI2] = &ahb_spi2_clk.common.hw,
  833. [CLK_AHB_GPS] = &ahb_gps_clk.common.hw,
  834. [CLK_AHB_HSTIMER] = &ahb_hstimer_clk.common.hw,
  835. [CLK_AHB_VE] = &ahb_ve_clk.common.hw,
  836. [CLK_AHB_TVE] = &ahb_tve_clk.common.hw,
  837. [CLK_AHB_LCD] = &ahb_lcd_clk.common.hw,
  838. [CLK_AHB_CSI] = &ahb_csi_clk.common.hw,
  839. [CLK_AHB_DE_BE] = &ahb_de_be_clk.common.hw,
  840. [CLK_AHB_DE_FE] = &ahb_de_fe_clk.common.hw,
  841. [CLK_AHB_IEP] = &ahb_iep_clk.common.hw,
  842. [CLK_AHB_GPU] = &ahb_gpu_clk.common.hw,
  843. [CLK_APB0_CODEC] = &apb0_codec_clk.common.hw,
  844. [CLK_APB0_SPDIF] = &apb0_spdif_clk.common.hw,
  845. [CLK_APB0_I2S] = &apb0_i2s_clk.common.hw,
  846. [CLK_APB0_PIO] = &apb0_pio_clk.common.hw,
  847. [CLK_APB0_IR] = &apb0_ir_clk.common.hw,
  848. [CLK_APB1_I2C0] = &apb1_i2c0_clk.common.hw,
  849. [CLK_APB1_I2C1] = &apb1_i2c1_clk.common.hw,
  850. [CLK_APB1_I2C2] = &apb1_i2c2_clk.common.hw,
  851. [CLK_APB1_UART0] = &apb1_uart0_clk.common.hw,
  852. [CLK_APB1_UART1] = &apb1_uart1_clk.common.hw,
  853. [CLK_APB1_UART2] = &apb1_uart2_clk.common.hw,
  854. [CLK_APB1_UART3] = &apb1_uart3_clk.common.hw,
  855. [CLK_NAND] = &nand_clk.common.hw,
  856. [CLK_MMC0] = &mmc0_clk.common.hw,
  857. [CLK_MMC1] = &mmc1_clk.common.hw,
  858. [CLK_MMC2] = &mmc2_clk.common.hw,
  859. [CLK_TS] = &ts_clk.common.hw,
  860. [CLK_SS] = &ss_clk.common.hw,
  861. [CLK_SPI0] = &spi0_clk.common.hw,
  862. [CLK_SPI1] = &spi1_clk.common.hw,
  863. [CLK_SPI2] = &spi2_clk.common.hw,
  864. [CLK_IR] = &ir_clk.common.hw,
  865. [CLK_I2S] = &i2s_clk.common.hw,
  866. [CLK_SPDIF] = &spdif_clk.common.hw,
  867. [CLK_USB_OHCI] = &usb_ohci_clk.common.hw,
  868. [CLK_USB_PHY0] = &usb_phy0_clk.common.hw,
  869. [CLK_USB_PHY1] = &usb_phy1_clk.common.hw,
  870. [CLK_GPS] = &gps_clk.common.hw,
  871. [CLK_DRAM_VE] = &dram_ve_clk.common.hw,
  872. [CLK_DRAM_CSI] = &dram_csi_clk.common.hw,
  873. [CLK_DRAM_TS] = &dram_ts_clk.common.hw,
  874. [CLK_DRAM_TVE] = &dram_tve_clk.common.hw,
  875. [CLK_DRAM_DE_FE] = &dram_de_fe_clk.common.hw,
  876. [CLK_DRAM_DE_BE] = &dram_de_be_clk.common.hw,
  877. [CLK_DRAM_ACE] = &dram_ace_clk.common.hw,
  878. [CLK_DRAM_IEP] = &dram_iep_clk.common.hw,
  879. [CLK_DE_BE] = &de_be_clk.common.hw,
  880. [CLK_DE_FE] = &de_fe_clk.common.hw,
  881. [CLK_TCON_CH0] = &tcon_ch0_clk.common.hw,
  882. [CLK_TCON_CH1_SCLK] = &tcon_ch1_sclk2_clk.common.hw,
  883. [CLK_TCON_CH1] = &tcon_ch1_sclk1_clk.common.hw,
  884. [CLK_CSI] = &csi_clk.common.hw,
  885. [CLK_VE] = &ve_clk.common.hw,
  886. [CLK_CODEC] = &codec_clk.common.hw,
  887. [CLK_AVS] = &avs_clk.common.hw,
  888. [CLK_GPU] = &gpu_clk.common.hw,
  889. [CLK_MBUS] = &mbus_clk.common.hw,
  890. [CLK_IEP] = &iep_clk.common.hw,
  891. },
  892. .num = CLK_NUMBER,
  893. };
  894. static const struct sunxi_ccu_desc sun5i_gr8_ccu_desc = {
  895. .ccu_clks = sun5i_a10s_ccu_clks,
  896. .num_ccu_clks = ARRAY_SIZE(sun5i_a10s_ccu_clks),
  897. .hw_clks = &sun5i_gr8_hw_clks,
  898. .resets = sun5i_a10s_ccu_resets,
  899. .num_resets = ARRAY_SIZE(sun5i_a10s_ccu_resets),
  900. };
  901. static void __init sun5i_ccu_init(struct device_node *node,
  902. const struct sunxi_ccu_desc *desc)
  903. {
  904. void __iomem *reg;
  905. u32 val;
  906. reg = of_io_request_and_map(node, 0, of_node_full_name(node));
  907. if (IS_ERR(reg)) {
  908. pr_err("%pOF: Could not map the clock registers\n", node);
  909. return;
  910. }
  911. /* Force the PLL-Audio-1x divider to 1 */
  912. val = readl(reg + SUN5I_PLL_AUDIO_REG);
  913. val &= ~GENMASK(29, 26);
  914. writel(val | (0 << 26), reg + SUN5I_PLL_AUDIO_REG);
  915. /*
  916. * Use the peripheral PLL as the AHB parent, instead of CPU /
  917. * AXI which have rate changes due to cpufreq.
  918. *
  919. * This is especially a big deal for the HS timer whose parent
  920. * clock is AHB.
  921. */
  922. val = readl(reg + SUN5I_AHB_REG);
  923. val &= ~GENMASK(7, 6);
  924. writel(val | (2 << 6), reg + SUN5I_AHB_REG);
  925. sunxi_ccu_probe(node, reg, desc);
  926. }
  927. static void __init sun5i_a10s_ccu_setup(struct device_node *node)
  928. {
  929. sun5i_ccu_init(node, &sun5i_a10s_ccu_desc);
  930. }
  931. CLK_OF_DECLARE(sun5i_a10s_ccu, "allwinner,sun5i-a10s-ccu",
  932. sun5i_a10s_ccu_setup);
  933. static void __init sun5i_a13_ccu_setup(struct device_node *node)
  934. {
  935. sun5i_ccu_init(node, &sun5i_a13_ccu_desc);
  936. }
  937. CLK_OF_DECLARE(sun5i_a13_ccu, "allwinner,sun5i-a13-ccu",
  938. sun5i_a13_ccu_setup);
  939. static void __init sun5i_gr8_ccu_setup(struct device_node *node)
  940. {
  941. sun5i_ccu_init(node, &sun5i_gr8_ccu_desc);
  942. }
  943. CLK_OF_DECLARE(sun5i_gr8_ccu, "nextthing,gr8-ccu",
  944. sun5i_gr8_ccu_setup);