Lines Matching +full:24 +full:- +full:bit
1 // SPDX-License-Identifier: GPL-2.0-only
6 #include <linux/clk-provider.h>
25 #include "ccu-sun8i-r40.h"
29 .enable = BIT(31),
30 .lock = BIT(28),
37 .hw.init = CLK_HW_INIT("pll-cpu",
49 * With sigma-delta modulation for fractional-N on the audio PLL,
63 static SUNXI_CCU_NM_WITH_SDM_GATE_LOCK(pll_audio_base_clk, "pll-audio-base",
67 pll_audio_sdm_table, BIT(24),
68 0x284, BIT(31),
69 BIT(31), /* gate */
70 BIT(28), /* lock */
73 static SUNXI_CCU_NM_WITH_FRAC_GATE_LOCK_MIN_MAX(pll_video0_clk, "pll-video0",
79 BIT(24), /* frac enable */
80 BIT(25), /* frac select */
83 BIT(31), /* gate */
84 BIT(28), /* lock */
88 static SUNXI_CCU_NM_WITH_FRAC_GATE_LOCK(pll_ve_clk, "pll-ve",
92 BIT(24), /* frac enable */
93 BIT(25), /* frac select */
96 BIT(31), /* gate */
97 BIT(28), /* lock */
101 static SUNXI_CCU_NKM_WITH_GATE_LOCK(pll_ddr0_clk, "pll-ddr0",
106 BIT(31), /* gate */
107 BIT(28), /* lock */
112 .enable = BIT(31),
113 .lock = BIT(28),
120 .hw.init = CLK_HW_INIT("pll-periph0", "osc24M",
127 .enable = BIT(24),
130 * The formula of pll-periph0 (1x) is 24MHz*N*K/2, and the formula
131 * of pll-periph0-sata is 24MHz*N*K/M/6, so the postdiv here is
138 .hw.init = CLK_HW_INIT("pll-periph0-sata",
139 "pll-periph0",
146 .enable = BIT(31),
147 .lock = BIT(28),
154 .hw.init = CLK_HW_INIT("pll-periph1", "osc24M",
160 static SUNXI_CCU_NM_WITH_FRAC_GATE_LOCK_MIN_MAX(pll_video1_clk, "pll-video1",
166 BIT(24), /* frac enable */
167 BIT(25), /* frac select */
170 BIT(31), /* gate */
171 BIT(28), /* lock */
175 .enable = BIT(31),
176 .lock = BIT(28),
184 .hw.init = CLK_HW_INIT("pll-sata", "osc24M",
190 static const char * const pll_sata_out_parents[] = { "pll-sata",
191 "pll-periph0-sata" };
192 static SUNXI_CCU_MUX_WITH_GATE(pll_sata_out_clk, "pll-sata-out",
195 BIT(14), /* gate */
199 static SUNXI_CCU_NM_WITH_FRAC_GATE_LOCK(pll_gpu_clk, "pll-gpu",
203 BIT(24), /* frac enable */
204 BIT(25), /* frac select */
207 BIT(31), /* gate */
208 BIT(28), /* lock */
214 * The MIPI mode is a standard NKM-style clock. The HDMI mode is an
223 static const char * const pll_mipi_parents[] = { "pll-video0" };
225 .enable = BIT(31) | BIT(23) | BIT(22),
226 .lock = BIT(28),
233 .hw.init = CLK_HW_INIT_PARENTS("pll-mipi",
241 static SUNXI_CCU_NM_WITH_FRAC_GATE_LOCK(pll_de_clk, "pll-de",
245 BIT(24), /* frac enable */
246 BIT(25), /* frac select */
249 BIT(31), /* gate */
250 BIT(28), /* lock */
254 static SUNXI_CCU_NM_WITH_GATE_LOCK(pll_ddr1_clk, "pll-ddr1",
258 BIT(31), /* gate */
259 BIT(28), /* lock */
263 "pll-cpu", "pll-cpu" };
270 "axi", "pll-periph0" };
306 "pll-periph0-2x",
307 "pll-periph0-2x" };
311 24, 2, /* mux */
314 static SUNXI_CCU_GATE(bus_mipi_dsi_clk, "bus-mipi-dsi", "ahb1",
315 0x060, BIT(1), 0);
316 static SUNXI_CCU_GATE(bus_ce_clk, "bus-ce", "ahb1",
317 0x060, BIT(5), 0);
318 static SUNXI_CCU_GATE(bus_dma_clk, "bus-dma", "ahb1",
319 0x060, BIT(6), 0);
320 static SUNXI_CCU_GATE(bus_mmc0_clk, "bus-mmc0", "ahb1",
321 0x060, BIT(8), 0);
322 static SUNXI_CCU_GATE(bus_mmc1_clk, "bus-mmc1", "ahb1",
323 0x060, BIT(9), 0);
324 static SUNXI_CCU_GATE(bus_mmc2_clk, "bus-mmc2", "ahb1",
325 0x060, BIT(10), 0);
326 static SUNXI_CCU_GATE(bus_mmc3_clk, "bus-mmc3", "ahb1",
327 0x060, BIT(11), 0);
328 static SUNXI_CCU_GATE(bus_nand_clk, "bus-nand", "ahb1",
329 0x060, BIT(13), 0);
330 static SUNXI_CCU_GATE(bus_dram_clk, "bus-dram", "ahb1",
331 0x060, BIT(14), 0);
332 static SUNXI_CCU_GATE(bus_emac_clk, "bus-emac", "ahb1",
333 0x060, BIT(17), 0);
334 static SUNXI_CCU_GATE(bus_ts_clk, "bus-ts", "ahb1",
335 0x060, BIT(18), 0);
336 static SUNXI_CCU_GATE(bus_hstimer_clk, "bus-hstimer", "ahb1",
337 0x060, BIT(19), 0);
338 static SUNXI_CCU_GATE(bus_spi0_clk, "bus-spi0", "ahb1",
339 0x060, BIT(20), 0);
340 static SUNXI_CCU_GATE(bus_spi1_clk, "bus-spi1", "ahb1",
341 0x060, BIT(21), 0);
342 static SUNXI_CCU_GATE(bus_spi2_clk, "bus-spi2", "ahb1",
343 0x060, BIT(22), 0);
344 static SUNXI_CCU_GATE(bus_spi3_clk, "bus-spi3", "ahb1",
345 0x060, BIT(23), 0);
346 static SUNXI_CCU_GATE(bus_sata_clk, "bus-sata", "ahb1",
347 0x060, BIT(24), 0);
348 static SUNXI_CCU_GATE(bus_otg_clk, "bus-otg", "ahb1",
349 0x060, BIT(25), 0);
350 static SUNXI_CCU_GATE(bus_ehci0_clk, "bus-ehci0", "ahb1",
351 0x060, BIT(26), 0);
352 static SUNXI_CCU_GATE(bus_ehci1_clk, "bus-ehci1", "ahb1",
353 0x060, BIT(27), 0);
354 static SUNXI_CCU_GATE(bus_ehci2_clk, "bus-ehci2", "ahb1",
355 0x060, BIT(28), 0);
356 static SUNXI_CCU_GATE(bus_ohci0_clk, "bus-ohci0", "ahb1",
357 0x060, BIT(29), 0);
358 static SUNXI_CCU_GATE(bus_ohci1_clk, "bus-ohci1", "ahb1",
359 0x060, BIT(30), 0);
360 static SUNXI_CCU_GATE(bus_ohci2_clk, "bus-ohci2", "ahb1",
361 0x060, BIT(31), 0);
363 static SUNXI_CCU_GATE(bus_ve_clk, "bus-ve", "ahb1",
364 0x064, BIT(0), 0);
365 static SUNXI_CCU_GATE(bus_mp_clk, "bus-mp", "ahb1",
366 0x064, BIT(2), 0);
367 static SUNXI_CCU_GATE(bus_deinterlace_clk, "bus-deinterlace", "ahb1",
368 0x064, BIT(5), 0);
369 static SUNXI_CCU_GATE(bus_csi0_clk, "bus-csi0", "ahb1",
370 0x064, BIT(8), 0);
371 static SUNXI_CCU_GATE(bus_csi1_clk, "bus-csi1", "ahb1",
372 0x064, BIT(9), 0);
373 static SUNXI_CCU_GATE(bus_hdmi0_clk, "bus-hdmi0", "ahb1",
374 0x064, BIT(10), 0);
375 static SUNXI_CCU_GATE(bus_hdmi1_clk, "bus-hdmi1", "ahb1",
376 0x064, BIT(11), 0);
377 static SUNXI_CCU_GATE(bus_de_clk, "bus-de", "ahb1",
378 0x064, BIT(12), 0);
379 static SUNXI_CCU_GATE(bus_tve0_clk, "bus-tve0", "ahb1",
380 0x064, BIT(13), 0);
381 static SUNXI_CCU_GATE(bus_tve1_clk, "bus-tve1", "ahb1",
382 0x064, BIT(14), 0);
383 static SUNXI_CCU_GATE(bus_tve_top_clk, "bus-tve-top", "ahb1",
384 0x064, BIT(15), 0);
385 static SUNXI_CCU_GATE(bus_gmac_clk, "bus-gmac", "ahb1",
386 0x064, BIT(17), 0);
387 static SUNXI_CCU_GATE(bus_gpu_clk, "bus-gpu", "ahb1",
388 0x064, BIT(20), 0);
389 static SUNXI_CCU_GATE(bus_tvd0_clk, "bus-tvd0", "ahb1",
390 0x064, BIT(21), 0);
391 static SUNXI_CCU_GATE(bus_tvd1_clk, "bus-tvd1", "ahb1",
392 0x064, BIT(22), 0);
393 static SUNXI_CCU_GATE(bus_tvd2_clk, "bus-tvd2", "ahb1",
394 0x064, BIT(23), 0);
395 static SUNXI_CCU_GATE(bus_tvd3_clk, "bus-tvd3", "ahb1",
396 0x064, BIT(24), 0);
397 static SUNXI_CCU_GATE(bus_tvd_top_clk, "bus-tvd-top", "ahb1",
398 0x064, BIT(25), 0);
399 static SUNXI_CCU_GATE(bus_tcon_lcd0_clk, "bus-tcon-lcd0", "ahb1",
400 0x064, BIT(26), 0);
401 static SUNXI_CCU_GATE(bus_tcon_lcd1_clk, "bus-tcon-lcd1", "ahb1",
402 0x064, BIT(27), 0);
403 static SUNXI_CCU_GATE(bus_tcon_tv0_clk, "bus-tcon-tv0", "ahb1",
404 0x064, BIT(28), 0);
405 static SUNXI_CCU_GATE(bus_tcon_tv1_clk, "bus-tcon-tv1", "ahb1",
406 0x064, BIT(29), 0);
407 static SUNXI_CCU_GATE(bus_tcon_top_clk, "bus-tcon-top", "ahb1",
408 0x064, BIT(30), 0);
410 static SUNXI_CCU_GATE(bus_codec_clk, "bus-codec", "apb1",
411 0x068, BIT(0), 0);
412 static SUNXI_CCU_GATE(bus_spdif_clk, "bus-spdif", "apb1",
413 0x068, BIT(1), 0);
414 static SUNXI_CCU_GATE(bus_ac97_clk, "bus-ac97", "apb1",
415 0x068, BIT(2), 0);
416 static SUNXI_CCU_GATE(bus_pio_clk, "bus-pio", "apb1",
417 0x068, BIT(5), 0);
418 static SUNXI_CCU_GATE(bus_ir0_clk, "bus-ir0", "apb1",
419 0x068, BIT(6), 0);
420 static SUNXI_CCU_GATE(bus_ir1_clk, "bus-ir1", "apb1",
421 0x068, BIT(7), 0);
422 static SUNXI_CCU_GATE(bus_ths_clk, "bus-ths", "apb1",
423 0x068, BIT(8), 0);
424 static SUNXI_CCU_GATE(bus_keypad_clk, "bus-keypad", "apb1",
425 0x068, BIT(10), 0);
426 static SUNXI_CCU_GATE(bus_i2s0_clk, "bus-i2s0", "apb1",
427 0x068, BIT(12), 0);
428 static SUNXI_CCU_GATE(bus_i2s1_clk, "bus-i2s1", "apb1",
429 0x068, BIT(13), 0);
430 static SUNXI_CCU_GATE(bus_i2s2_clk, "bus-i2s2", "apb1",
431 0x068, BIT(14), 0);
433 static SUNXI_CCU_GATE(bus_i2c0_clk, "bus-i2c0", "apb2",
434 0x06c, BIT(0), 0);
435 static SUNXI_CCU_GATE(bus_i2c1_clk, "bus-i2c1", "apb2",
436 0x06c, BIT(1), 0);
437 static SUNXI_CCU_GATE(bus_i2c2_clk, "bus-i2c2", "apb2",
438 0x06c, BIT(2), 0);
439 static SUNXI_CCU_GATE(bus_i2c3_clk, "bus-i2c3", "apb2",
440 0x06c, BIT(3), 0);
445 static SUNXI_CCU_GATE(bus_can_clk, "bus-can", "apb2",
446 0x06c, BIT(4), 0);
447 static SUNXI_CCU_GATE(bus_scr_clk, "bus-scr", "apb2",
448 0x06c, BIT(5), 0);
449 static SUNXI_CCU_GATE(bus_ps20_clk, "bus-ps20", "apb2",
450 0x06c, BIT(6), 0);
451 static SUNXI_CCU_GATE(bus_ps21_clk, "bus-ps21", "apb2",
452 0x06c, BIT(7), 0);
453 static SUNXI_CCU_GATE(bus_i2c4_clk, "bus-i2c4", "apb2",
454 0x06c, BIT(15), 0);
455 static SUNXI_CCU_GATE(bus_uart0_clk, "bus-uart0", "apb2",
456 0x06c, BIT(16), 0);
457 static SUNXI_CCU_GATE(bus_uart1_clk, "bus-uart1", "apb2",
458 0x06c, BIT(17), 0);
459 static SUNXI_CCU_GATE(bus_uart2_clk, "bus-uart2", "apb2",
460 0x06c, BIT(18), 0);
461 static SUNXI_CCU_GATE(bus_uart3_clk, "bus-uart3", "apb2",
462 0x06c, BIT(19), 0);
463 static SUNXI_CCU_GATE(bus_uart4_clk, "bus-uart4", "apb2",
464 0x06c, BIT(20), 0);
465 static SUNXI_CCU_GATE(bus_uart5_clk, "bus-uart5", "apb2",
466 0x06c, BIT(21), 0);
467 static SUNXI_CCU_GATE(bus_uart6_clk, "bus-uart6", "apb2",
468 0x06c, BIT(22), 0);
469 static SUNXI_CCU_GATE(bus_uart7_clk, "bus-uart7", "apb2",
470 0x06c, BIT(23), 0);
472 static SUNXI_CCU_GATE(bus_dbg_clk, "bus-dbg", "ahb1",
473 0x070, BIT(7), 0);
477 .enable = BIT(31),
479 .mux = _SUNXI_CCU_MUX(24, 2),
489 static const char * const mod0_default_parents[] = { "osc24M", "pll-periph0",
490 "pll-periph1" };
494 24, 2, /* mux */
495 BIT(31), /* gate */
501 24, 2, /* mux */
502 BIT(31), /* gate */
508 24, 2, /* mux */
509 BIT(31), /* gate */
515 24, 2, /* mux */
516 BIT(31), /* gate */
522 24, 2, /* mux */
523 BIT(31), /* gate */
526 static const char * const ts_parents[] = { "osc24M", "pll-periph0", };
530 24, 4, /* mux */
531 BIT(31), /* gate */
534 static const char * const ce_parents[] = { "osc24M", "pll-periph0-2x",
535 "pll-periph1-2x" };
539 24, 2, /* mux */
540 BIT(31), /* gate */
546 24, 2, /* mux */
547 BIT(31), /* gate */
553 24, 2, /* mux */
554 BIT(31), /* gate */
560 24, 2, /* mux */
561 BIT(31), /* gate */
567 24, 2, /* mux */
568 BIT(31), /* gate */
571 static const char * const i2s_parents[] = { "pll-audio-8x", "pll-audio-4x",
572 "pll-audio-2x", "pll-audio" };
574 0x0b0, 16, 2, BIT(31), CLK_SET_RATE_PARENT);
577 0x0b4, 16, 2, BIT(31), CLK_SET_RATE_PARENT);
580 0x0b8, 16, 2, BIT(31), CLK_SET_RATE_PARENT);
583 0x0bc, 16, 2, BIT(31), CLK_SET_RATE_PARENT);
586 0x0c0, 16, 2, BIT(31), CLK_SET_RATE_PARENT);
591 .enable = BIT(31),
594 .mux = _SUNXI_CCU_MUX_TABLE(24, 2, keypad_table),
604 static const char * const sata_parents[] = { "pll-sata-out", "sata-ext" };
606 0x0c8, 24, 1, BIT(31), CLK_SET_RATE_PARENT);
614 static SUNXI_CCU_GATE(usb_phy0_clk, "usb-phy0", "osc24M",
615 0x0cc, BIT(8), 0);
616 static SUNXI_CCU_GATE(usb_phy1_clk, "usb-phy1", "osc24M",
617 0x0cc, BIT(9), 0);
618 static SUNXI_CCU_GATE(usb_phy2_clk, "usb-phy2", "osc24M",
619 0x0cc, BIT(10), 0);
620 static SUNXI_CCU_GATE(usb_ohci0_clk, "usb-ohci0", "osc12M",
621 0x0cc, BIT(16), 0);
622 static SUNXI_CCU_GATE(usb_ohci1_clk, "usb-ohci1", "osc12M",
623 0x0cc, BIT(17), 0);
624 static SUNXI_CCU_GATE(usb_ohci2_clk, "usb-ohci2", "osc12M",
625 0x0cc, BIT(18), 0);
627 static const char * const ir_parents[] = { "osc24M", "pll-periph0",
628 "pll-periph1", "osc32k" };
632 24, 2, /* mux */
633 BIT(31), /* gate */
639 24, 2, /* mux */
640 BIT(31), /* gate */
643 static const char * const dram_parents[] = { "pll-ddr0", "pll-ddr1" };
647 static SUNXI_CCU_GATE(dram_ve_clk, "dram-ve", "dram",
648 0x100, BIT(0), 0);
649 static SUNXI_CCU_GATE(dram_csi0_clk, "dram-csi0", "dram",
650 0x100, BIT(1), 0);
651 static SUNXI_CCU_GATE(dram_csi1_clk, "dram-csi1", "dram",
652 0x100, BIT(2), 0);
653 static SUNXI_CCU_GATE(dram_ts_clk, "dram-ts", "dram",
654 0x100, BIT(3), 0);
655 static SUNXI_CCU_GATE(dram_tvd_clk, "dram-tvd", "dram",
656 0x100, BIT(4), 0);
657 static SUNXI_CCU_GATE(dram_mp_clk, "dram-mp", "dram",
658 0x100, BIT(5), 0);
659 static SUNXI_CCU_GATE(dram_deinterlace_clk, "dram-deinterlace", "dram",
660 0x100, BIT(6), 0);
662 static const char * const de_parents[] = { "pll-periph0-2x", "pll-de" };
664 0x104, 0, 4, 24, 3, BIT(31),
667 0x108, 0, 4, 24, 3, BIT(31), 0);
669 static const char * const tcon_parents[] = { "pll-video0", "pll-video1",
670 "pll-video0-2x", "pll-video1-2x",
671 "pll-mipi" };
672 static SUNXI_CCU_MUX_WITH_GATE(tcon_lcd0_clk, "tcon-lcd0", tcon_parents,
673 0x110, 24, 3, BIT(31), CLK_SET_RATE_PARENT);
674 static SUNXI_CCU_MUX_WITH_GATE(tcon_lcd1_clk, "tcon-lcd1", tcon_parents,
675 0x114, 24, 3, BIT(31), CLK_SET_RATE_PARENT);
676 static SUNXI_CCU_M_WITH_MUX_GATE(tcon_tv0_clk, "tcon-tv0", tcon_parents,
677 0x118, 0, 4, 24, 3, BIT(31),
679 static SUNXI_CCU_M_WITH_MUX_GATE(tcon_tv1_clk, "tcon-tv1", tcon_parents,
680 0x11c, 0, 4, 24, 3, BIT(31),
683 static const char * const deinterlace_parents[] = { "pll-periph0",
684 "pll-periph1" };
686 deinterlace_parents, 0x124, 0, 4, 24, 3,
687 BIT(31), 0);
689 static const char * const csi_mclk_parents[] = { "osc24M", "pll-video1",
690 "pll-periph1" };
691 static SUNXI_CCU_M_WITH_MUX_GATE(csi1_mclk_clk, "csi1-mclk", csi_mclk_parents,
692 0x130, 0, 5, 8, 3, BIT(15), 0);
694 static const char * const csi_sclk_parents[] = { "pll-periph0", "pll-periph1" };
695 static SUNXI_CCU_M_WITH_MUX_GATE(csi_sclk_clk, "csi-sclk", csi_sclk_parents,
696 0x134, 16, 4, 24, 3, BIT(31), 0);
698 static SUNXI_CCU_M_WITH_MUX_GATE(csi0_mclk_clk, "csi0-mclk", csi_mclk_parents,
699 0x134, 0, 5, 8, 3, BIT(15), 0);
701 static SUNXI_CCU_M_WITH_GATE(ve_clk, "ve", "pll-ve",
702 0x13c, 16, 3, BIT(31), CLK_SET_RATE_PARENT);
704 static SUNXI_CCU_GATE(codec_clk, "codec", "pll-audio",
705 0x140, BIT(31), CLK_SET_RATE_PARENT);
707 0x144, BIT(31), 0);
709 static const char * const hdmi_parents[] = { "pll-video0", "pll-video1" };
711 0x150, 0, 4, 24, 2, BIT(31),
714 static SUNXI_CCU_GATE(hdmi_slow_clk, "hdmi-slow", "osc24M",
715 0x154, BIT(31), 0);
724 static const char * const mbus_parents[] = { "osc24M", "pll-periph0-2x",
725 "pll-ddr0" };
729 24, 2, /* mux */
730 BIT(31), /* gate */
733 static const char * const dsi_dphy_parents[] = { "pll-video0", "pll-video1",
734 "pll-periph0" };
735 static SUNXI_CCU_M_WITH_MUX_GATE(dsi_dphy_clk, "dsi-dphy", dsi_dphy_parents,
736 0x168, 0, 4, 8, 2, BIT(15), 0);
739 0x180, 0, 4, 24, 3, BIT(31), 0);
741 0x184, 0, 4, 24, 3, BIT(31), 0);
743 static const char * const tvd_parents[] = { "pll-video0", "pll-video1",
744 "pll-video0-2x", "pll-video1-2x" };
746 0x188, 0, 4, 24, 3, BIT(31), 0);
748 0x18c, 0, 4, 24, 3, BIT(31), 0);
750 0x190, 0, 4, 24, 3, BIT(31), 0);
752 0x194, 0, 4, 24, 3, BIT(31), 0);
754 static SUNXI_CCU_M_WITH_GATE(gpu_clk, "gpu", "pll-gpu",
755 0x1a0, 0, 3, BIT(31), CLK_SET_RATE_PARENT);
763 .enable = BIT(31),
767 .shift = 24,
782 .enable = BIT(31),
786 .shift = 24,
968 static CLK_FIXED_FACTOR_HWS(pll_audio_clk, "pll-audio",
971 static CLK_FIXED_FACTOR_HWS(pll_audio_2x_clk, "pll-audio-2x",
974 static CLK_FIXED_FACTOR_HWS(pll_audio_4x_clk, "pll-audio-4x",
977 static CLK_FIXED_FACTOR_HWS(pll_audio_8x_clk, "pll-audio-8x",
980 static CLK_FIXED_FACTOR_HW(pll_periph0_2x_clk, "pll-periph0-2x",
983 static CLK_FIXED_FACTOR_HW(pll_periph1_2x_clk, "pll-periph1-2x",
986 static CLK_FIXED_FACTOR_HW(pll_video0_2x_clk, "pll-video0-2x",
989 static CLK_FIXED_FACTOR_HW(pll_video1_2x_clk, "pll-video1-2x",
1166 [RST_USB_PHY0] = { 0x0cc, BIT(0) },
1167 [RST_USB_PHY1] = { 0x0cc, BIT(1) },
1168 [RST_USB_PHY2] = { 0x0cc, BIT(2) },
1170 [RST_DRAM] = { 0x0f4, BIT(31) },
1171 [RST_MBUS] = { 0x0fc, BIT(31) },
1173 [RST_BUS_MIPI_DSI] = { 0x2c0, BIT(1) },
1174 [RST_BUS_CE] = { 0x2c0, BIT(5) },
1175 [RST_BUS_DMA] = { 0x2c0, BIT(6) },
1176 [RST_BUS_MMC0] = { 0x2c0, BIT(8) },
1177 [RST_BUS_MMC1] = { 0x2c0, BIT(9) },
1178 [RST_BUS_MMC2] = { 0x2c0, BIT(10) },
1179 [RST_BUS_MMC3] = { 0x2c0, BIT(11) },
1180 [RST_BUS_NAND] = { 0x2c0, BIT(13) },
1181 [RST_BUS_DRAM] = { 0x2c0, BIT(14) },
1182 [RST_BUS_EMAC] = { 0x2c0, BIT(17) },
1183 [RST_BUS_TS] = { 0x2c0, BIT(18) },
1184 [RST_BUS_HSTIMER] = { 0x2c0, BIT(19) },
1185 [RST_BUS_SPI0] = { 0x2c0, BIT(20) },
1186 [RST_BUS_SPI1] = { 0x2c0, BIT(21) },
1187 [RST_BUS_SPI2] = { 0x2c0, BIT(22) },
1188 [RST_BUS_SPI3] = { 0x2c0, BIT(23) },
1189 [RST_BUS_SATA] = { 0x2c0, BIT(24) },
1190 [RST_BUS_OTG] = { 0x2c0, BIT(25) },
1191 [RST_BUS_EHCI0] = { 0x2c0, BIT(26) },
1192 [RST_BUS_EHCI1] = { 0x2c0, BIT(27) },
1193 [RST_BUS_EHCI2] = { 0x2c0, BIT(28) },
1194 [RST_BUS_OHCI0] = { 0x2c0, BIT(29) },
1195 [RST_BUS_OHCI1] = { 0x2c0, BIT(30) },
1196 [RST_BUS_OHCI2] = { 0x2c0, BIT(31) },
1198 [RST_BUS_VE] = { 0x2c4, BIT(0) },
1199 [RST_BUS_MP] = { 0x2c4, BIT(2) },
1200 [RST_BUS_DEINTERLACE] = { 0x2c4, BIT(5) },
1201 [RST_BUS_CSI0] = { 0x2c4, BIT(8) },
1202 [RST_BUS_CSI1] = { 0x2c4, BIT(9) },
1203 [RST_BUS_HDMI0] = { 0x2c4, BIT(10) },
1204 [RST_BUS_HDMI1] = { 0x2c4, BIT(11) },
1205 [RST_BUS_DE] = { 0x2c4, BIT(12) },
1206 [RST_BUS_TVE0] = { 0x2c4, BIT(13) },
1207 [RST_BUS_TVE1] = { 0x2c4, BIT(14) },
1208 [RST_BUS_TVE_TOP] = { 0x2c4, BIT(15) },
1209 [RST_BUS_GMAC] = { 0x2c4, BIT(17) },
1210 [RST_BUS_GPU] = { 0x2c4, BIT(20) },
1211 [RST_BUS_TVD0] = { 0x2c4, BIT(21) },
1212 [RST_BUS_TVD1] = { 0x2c4, BIT(22) },
1213 [RST_BUS_TVD2] = { 0x2c4, BIT(23) },
1214 [RST_BUS_TVD3] = { 0x2c4, BIT(24) },
1215 [RST_BUS_TVD_TOP] = { 0x2c4, BIT(25) },
1216 [RST_BUS_TCON_LCD0] = { 0x2c4, BIT(26) },
1217 [RST_BUS_TCON_LCD1] = { 0x2c4, BIT(27) },
1218 [RST_BUS_TCON_TV0] = { 0x2c4, BIT(28) },
1219 [RST_BUS_TCON_TV1] = { 0x2c4, BIT(29) },
1220 [RST_BUS_TCON_TOP] = { 0x2c4, BIT(30) },
1221 [RST_BUS_DBG] = { 0x2c4, BIT(31) },
1223 [RST_BUS_LVDS] = { 0x2c8, BIT(0) },
1225 [RST_BUS_CODEC] = { 0x2d0, BIT(0) },
1226 [RST_BUS_SPDIF] = { 0x2d0, BIT(1) },
1227 [RST_BUS_AC97] = { 0x2d0, BIT(2) },
1228 [RST_BUS_IR0] = { 0x2d0, BIT(6) },
1229 [RST_BUS_IR1] = { 0x2d0, BIT(7) },
1230 [RST_BUS_THS] = { 0x2d0, BIT(8) },
1231 [RST_BUS_KEYPAD] = { 0x2d0, BIT(10) },
1232 [RST_BUS_I2S0] = { 0x2d0, BIT(12) },
1233 [RST_BUS_I2S1] = { 0x2d0, BIT(13) },
1234 [RST_BUS_I2S2] = { 0x2d0, BIT(14) },
1236 [RST_BUS_I2C0] = { 0x2d8, BIT(0) },
1237 [RST_BUS_I2C1] = { 0x2d8, BIT(1) },
1238 [RST_BUS_I2C2] = { 0x2d8, BIT(2) },
1239 [RST_BUS_I2C3] = { 0x2d8, BIT(3) },
1240 [RST_BUS_CAN] = { 0x2d8, BIT(4) },
1241 [RST_BUS_SCR] = { 0x2d8, BIT(5) },
1242 [RST_BUS_PS20] = { 0x2d8, BIT(6) },
1243 [RST_BUS_PS21] = { 0x2d8, BIT(7) },
1244 [RST_BUS_I2C4] = { 0x2d8, BIT(15) },
1245 [RST_BUS_UART0] = { 0x2d8, BIT(16) },
1246 [RST_BUS_UART1] = { 0x2d8, BIT(17) },
1247 [RST_BUS_UART2] = { 0x2d8, BIT(18) },
1248 [RST_BUS_UART3] = { 0x2d8, BIT(19) },
1249 [RST_BUS_UART4] = { 0x2d8, BIT(20) },
1250 [RST_BUS_UART5] = { 0x2d8, BIT(21) },
1251 [RST_BUS_UART6] = { 0x2d8, BIT(22) },
1252 [RST_BUS_UART7] = { 0x2d8, BIT(23) },
1268 .enable = BIT(31),
1269 .lock = BIT(28),
1275 .delay_us = 1, /* > 8 clock cycles at 24 MHz */
1276 .bypass_index = 1, /* index of 24 MHz oscillator */
1280 * Add a regmap for the GMAC driver (dwmac-sun8i) to access the
1320 /* Force the PLL-Audio-1x divider to 1 */ in sun8i_r40_ccu_probe()
1325 /* Force PLL-MIPI to MIPI mode */ in sun8i_r40_ccu_probe()
1327 val &= ~BIT(16); in sun8i_r40_ccu_probe()
1340 writel(SUN8I_R40_SYS_32K_CLK_KEY | BIT(8), in sun8i_r40_ccu_probe()
1343 regmap = devm_regmap_init_mmio(&pdev->dev, reg, in sun8i_r40_ccu_probe()
1348 ret = devm_sunxi_ccu_probe(&pdev->dev, reg, &sun8i_r40_ccu_desc); in sun8i_r40_ccu_probe()
1363 { .compatible = "allwinner,sun8i-r40-ccu" },
1370 .name = "sun8i-r40-ccu",