blob: 1ef235928600eaf7deb9f643e50cf4954b910ef3 [file] [log] [blame]
Jagan Teki885abd82018-08-02 23:25:03 +05301// SPDX-License-Identifier: (GPL-2.0+ OR MIT)
2/*
3 * Copyright (C) 2018 Amarula Solutions B.V.
4 * Author: Jagan Teki <jagan@amarulasolutions.com>
5 */
6
7#include <common.h>
8#include <clk-uclass.h>
9#include <dm.h>
10#include <errno.h>
11#include <asm/arch/ccu.h>
12#include <dt-bindings/clock/sun8i-a23-a33-ccu.h>
13#include <dt-bindings/reset/sun8i-a23-a33-ccu.h>
14
15static struct ccu_clk_gate a23_gates[] = {
Andre Przywaraddf33c12019-01-29 15:54:09 +000016 [CLK_BUS_MMC0] = GATE(0x060, BIT(8)),
17 [CLK_BUS_MMC1] = GATE(0x060, BIT(9)),
18 [CLK_BUS_MMC2] = GATE(0x060, BIT(10)),
Jagan Teki885abd82018-08-02 23:25:03 +053019 [CLK_BUS_OTG] = GATE(0x060, BIT(24)),
20 [CLK_BUS_EHCI] = GATE(0x060, BIT(26)),
21 [CLK_BUS_OHCI] = GATE(0x060, BIT(29)),
22
Jagan Teki8cf08ea2018-12-30 21:29:24 +053023 [CLK_BUS_UART0] = GATE(0x06c, BIT(16)),
24 [CLK_BUS_UART1] = GATE(0x06c, BIT(17)),
25 [CLK_BUS_UART2] = GATE(0x06c, BIT(18)),
26 [CLK_BUS_UART3] = GATE(0x06c, BIT(19)),
27 [CLK_BUS_UART4] = GATE(0x06c, BIT(20)),
28
Jagan Teki885abd82018-08-02 23:25:03 +053029 [CLK_USB_PHY0] = GATE(0x0cc, BIT(8)),
30 [CLK_USB_PHY1] = GATE(0x0cc, BIT(9)),
31 [CLK_USB_HSIC] = GATE(0x0cc, BIT(10)),
32 [CLK_USB_HSIC_12M] = GATE(0x0cc, BIT(11)),
33 [CLK_USB_OHCI] = GATE(0x0cc, BIT(16)),
34};
35
36static struct ccu_reset a23_resets[] = {
37 [RST_USB_PHY0] = RESET(0x0cc, BIT(0)),
38 [RST_USB_PHY1] = RESET(0x0cc, BIT(1)),
39 [RST_USB_HSIC] = RESET(0x0cc, BIT(2)),
40
Andre Przywaraddf33c12019-01-29 15:54:09 +000041 [RST_BUS_MMC0] = RESET(0x2c0, BIT(8)),
42 [RST_BUS_MMC1] = RESET(0x2c0, BIT(9)),
43 [RST_BUS_MMC2] = RESET(0x2c0, BIT(10)),
Jagan Teki885abd82018-08-02 23:25:03 +053044 [RST_BUS_OTG] = RESET(0x2c0, BIT(24)),
45 [RST_BUS_EHCI] = RESET(0x2c0, BIT(26)),
46 [RST_BUS_OHCI] = RESET(0x2c0, BIT(29)),
Jagan Tekib490aa52018-12-30 21:37:31 +053047
48 [RST_BUS_UART0] = RESET(0x2d8, BIT(16)),
49 [RST_BUS_UART1] = RESET(0x2d8, BIT(17)),
50 [RST_BUS_UART2] = RESET(0x2d8, BIT(18)),
51 [RST_BUS_UART3] = RESET(0x2d8, BIT(19)),
52 [RST_BUS_UART4] = RESET(0x2d8, BIT(20)),
Jagan Teki885abd82018-08-02 23:25:03 +053053};
54
55static const struct ccu_desc a23_ccu_desc = {
56 .gates = a23_gates,
57 .resets = a23_resets,
58};
59
60static int a23_clk_bind(struct udevice *dev)
61{
62 return sunxi_reset_bind(dev, ARRAY_SIZE(a23_resets));
63}
64
65static const struct udevice_id a23_clk_ids[] = {
66 { .compatible = "allwinner,sun8i-a23-ccu",
67 .data = (ulong)&a23_ccu_desc },
68 { .compatible = "allwinner,sun8i-a33-ccu",
69 .data = (ulong)&a23_ccu_desc },
70 { }
71};
72
73U_BOOT_DRIVER(clk_sun8i_a23) = {
74 .name = "sun8i_a23_ccu",
75 .id = UCLASS_CLK,
76 .of_match = a23_clk_ids,
77 .priv_auto_alloc_size = sizeof(struct ccu_priv),
78 .ops = &sunxi_clk_ops,
79 .probe = sunxi_clk_probe,
80 .bind = a23_clk_bind,
81};