blob: f3fc06ab31ed2302f906a5f8b42c988ab446c43e [file] [log] [blame]
Jagan Teki6239a6d2018-08-05 14:31:54 +05301// SPDX-License-Identifier: (GPL-2.0+ OR MIT)
2/*
3 * Copyright (C) 2018 Amarula Solutions.
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-v3s-ccu.h>
13#include <dt-bindings/reset/sun8i-v3s-ccu.h>
Simon Glasscd93d622020-05-10 11:40:13 -060014#include <linux/bitops.h>
Jagan Teki6239a6d2018-08-05 14:31:54 +053015
16static struct ccu_clk_gate v3s_gates[] = {
Andre Przywarabb3e5aa2019-01-29 15:54:09 +000017 [CLK_BUS_MMC0] = GATE(0x060, BIT(8)),
18 [CLK_BUS_MMC1] = GATE(0x060, BIT(9)),
19 [CLK_BUS_MMC2] = GATE(0x060, BIT(10)),
Jagan Teki82111462019-02-27 20:02:06 +053020 [CLK_BUS_SPI0] = GATE(0x060, BIT(20)),
Jagan Teki6239a6d2018-08-05 14:31:54 +053021 [CLK_BUS_OTG] = GATE(0x060, BIT(24)),
22
Jagan Teki4acc7112018-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
Jagan Teki82111462019-02-27 20:02:06 +053027 [CLK_SPI0] = GATE(0x0a0, BIT(31)),
28
Jagan Teki6239a6d2018-08-05 14:31:54 +053029 [CLK_USB_PHY0] = GATE(0x0cc, BIT(8)),
30};
31
32static struct ccu_reset v3s_resets[] = {
33 [RST_USB_PHY0] = RESET(0x0cc, BIT(0)),
34
Andre Przywarabb3e5aa2019-01-29 15:54:09 +000035 [RST_BUS_MMC0] = RESET(0x2c0, BIT(8)),
36 [RST_BUS_MMC1] = RESET(0x2c0, BIT(9)),
37 [RST_BUS_MMC2] = RESET(0x2c0, BIT(10)),
Jagan Teki82111462019-02-27 20:02:06 +053038 [RST_BUS_SPI0] = RESET(0x2c0, BIT(20)),
Jagan Teki6239a6d2018-08-05 14:31:54 +053039 [RST_BUS_OTG] = RESET(0x2c0, BIT(24)),
Jagan Teki8606f962018-12-30 21:37:31 +053040
41 [RST_BUS_UART0] = RESET(0x2d8, BIT(16)),
42 [RST_BUS_UART1] = RESET(0x2d8, BIT(17)),
43 [RST_BUS_UART2] = RESET(0x2d8, BIT(18)),
Jagan Teki6239a6d2018-08-05 14:31:54 +053044};
45
46static const struct ccu_desc v3s_ccu_desc = {
47 .gates = v3s_gates,
48 .resets = v3s_resets,
49};
50
51static int v3s_clk_bind(struct udevice *dev)
52{
53 return sunxi_reset_bind(dev, ARRAY_SIZE(v3s_resets));
54}
55
56static const struct udevice_id v3s_clk_ids[] = {
57 { .compatible = "allwinner,sun8i-v3s-ccu",
58 .data = (ulong)&v3s_ccu_desc },
Icenowy Zheng6ffdc432020-10-26 22:18:02 +080059 { .compatible = "allwinner,sun8i-v3-ccu",
60 .data = (ulong)&v3s_ccu_desc },
Jagan Teki6239a6d2018-08-05 14:31:54 +053061 { }
62};
63
64U_BOOT_DRIVER(clk_sun8i_v3s) = {
65 .name = "sun8i_v3s_ccu",
66 .id = UCLASS_CLK,
67 .of_match = v3s_clk_ids,
68 .priv_auto_alloc_size = sizeof(struct ccu_priv),
69 .ops = &sunxi_clk_ops,
70 .probe = sunxi_clk_probe,
71 .bind = v3s_clk_bind,
72};