blob: 8a0834d83a3206c2ab03c517a4e50b718238d93e [file] [log] [blame]
Jagan Teki6901aab2019-01-11 15:41:46 +05301// SPDX-License-Identifier: GPL-2.0+
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>
Samuel Holland21d314a2021-09-12 11:48:43 -050011#include <clk/sunxi.h>
Jagan Teki6901aab2019-01-11 15:41:46 +053012#include <dt-bindings/clock/sun9i-a80-ccu.h>
13#include <dt-bindings/reset/sun9i-a80-ccu.h>
Simon Glasscd93d622020-05-10 11:40:13 -060014#include <linux/bitops.h>
Jagan Teki6901aab2019-01-11 15:41:46 +053015
16static const struct ccu_clk_gate a80_gates[] = {
Jagan Teki82111462019-02-27 20:02:06 +053017 [CLK_SPI0] = GATE(0x430, BIT(31)),
18 [CLK_SPI1] = GATE(0x434, BIT(31)),
19 [CLK_SPI2] = GATE(0x438, BIT(31)),
20 [CLK_SPI3] = GATE(0x43c, BIT(31)),
21
Andre Przywarabb3e5aa2019-01-29 15:54:09 +000022 [CLK_BUS_MMC] = GATE(0x580, BIT(8)),
Jagan Teki82111462019-02-27 20:02:06 +053023 [CLK_BUS_SPI0] = GATE(0x580, BIT(20)),
24 [CLK_BUS_SPI1] = GATE(0x580, BIT(21)),
25 [CLK_BUS_SPI2] = GATE(0x580, BIT(22)),
26 [CLK_BUS_SPI3] = GATE(0x580, BIT(23)),
Andre Przywarabb3e5aa2019-01-29 15:54:09 +000027
Samuel Hollandc61897b2021-09-12 09:47:24 -050028 [CLK_BUS_I2C0] = GATE(0x594, BIT(0)),
29 [CLK_BUS_I2C1] = GATE(0x594, BIT(1)),
30 [CLK_BUS_I2C2] = GATE(0x594, BIT(2)),
31 [CLK_BUS_I2C3] = GATE(0x594, BIT(3)),
32 [CLK_BUS_I2C4] = GATE(0x594, BIT(4)),
Jagan Teki6901aab2019-01-11 15:41:46 +053033 [CLK_BUS_UART0] = GATE(0x594, BIT(16)),
34 [CLK_BUS_UART1] = GATE(0x594, BIT(17)),
35 [CLK_BUS_UART2] = GATE(0x594, BIT(18)),
36 [CLK_BUS_UART3] = GATE(0x594, BIT(19)),
37 [CLK_BUS_UART4] = GATE(0x594, BIT(20)),
38 [CLK_BUS_UART5] = GATE(0x594, BIT(21)),
39};
40
41static const struct ccu_reset a80_resets[] = {
Andre Przywarabb3e5aa2019-01-29 15:54:09 +000042 [RST_BUS_MMC] = RESET(0x5a0, BIT(8)),
Jagan Teki82111462019-02-27 20:02:06 +053043 [RST_BUS_SPI0] = RESET(0x5a0, BIT(20)),
44 [RST_BUS_SPI1] = RESET(0x5a0, BIT(21)),
45 [RST_BUS_SPI2] = RESET(0x5a0, BIT(22)),
46 [RST_BUS_SPI3] = RESET(0x5a0, BIT(23)),
Andre Przywarabb3e5aa2019-01-29 15:54:09 +000047
Samuel Hollandc61897b2021-09-12 09:47:24 -050048 [RST_BUS_I2C0] = RESET(0x5b4, BIT(0)),
49 [RST_BUS_I2C1] = RESET(0x5b4, BIT(1)),
50 [RST_BUS_I2C2] = RESET(0x5b4, BIT(2)),
51 [RST_BUS_I2C3] = RESET(0x5b4, BIT(3)),
52 [RST_BUS_I2C4] = RESET(0x5b4, BIT(4)),
Jagan Teki6901aab2019-01-11 15:41:46 +053053 [RST_BUS_UART0] = RESET(0x5b4, BIT(16)),
54 [RST_BUS_UART1] = RESET(0x5b4, BIT(17)),
55 [RST_BUS_UART2] = RESET(0x5b4, BIT(18)),
56 [RST_BUS_UART3] = RESET(0x5b4, BIT(19)),
57 [RST_BUS_UART4] = RESET(0x5b4, BIT(20)),
58 [RST_BUS_UART5] = RESET(0x5b4, BIT(21)),
59};
60
Andre Przywarae0c7ce72019-01-29 15:54:10 +000061static const struct ccu_clk_gate a80_mmc_gates[] = {
62 [0] = GATE(0x0, BIT(16)),
63 [1] = GATE(0x4, BIT(16)),
64 [2] = GATE(0x8, BIT(16)),
65 [3] = GATE(0xc, BIT(16)),
66};
67
68static const struct ccu_reset a80_mmc_resets[] = {
69 [0] = GATE(0x0, BIT(18)),
70 [1] = GATE(0x4, BIT(18)),
71 [2] = GATE(0x8, BIT(18)),
72 [3] = GATE(0xc, BIT(18)),
73};
74
Jagan Teki6901aab2019-01-11 15:41:46 +053075static const struct ccu_desc a80_ccu_desc = {
76 .gates = a80_gates,
77 .resets = a80_resets,
78};
79
Andre Przywarae0c7ce72019-01-29 15:54:10 +000080static const struct ccu_desc a80_mmc_clk_desc = {
81 .gates = a80_mmc_gates,
82 .resets = a80_mmc_resets,
83};
84
Jagan Teki6901aab2019-01-11 15:41:46 +053085static int a80_clk_bind(struct udevice *dev)
86{
Andre Przywarae0c7ce72019-01-29 15:54:10 +000087 ulong count = ARRAY_SIZE(a80_resets);
88
89 if (device_is_compatible(dev, "allwinner,sun9i-a80-mmc-config-clk"))
90 count = ARRAY_SIZE(a80_mmc_resets);
91
92 return sunxi_reset_bind(dev, count);
Jagan Teki6901aab2019-01-11 15:41:46 +053093}
94
95static const struct udevice_id a80_ccu_ids[] = {
96 { .compatible = "allwinner,sun9i-a80-ccu",
97 .data = (ulong)&a80_ccu_desc },
Andre Przywarae0c7ce72019-01-29 15:54:10 +000098 { .compatible = "allwinner,sun9i-a80-mmc-config-clk",
99 .data = (ulong)&a80_mmc_clk_desc },
Jagan Teki6901aab2019-01-11 15:41:46 +0530100 { }
101};
102
103U_BOOT_DRIVER(clk_sun9i_a80) = {
104 .name = "sun9i_a80_ccu",
105 .id = UCLASS_CLK,
106 .of_match = a80_ccu_ids,
Simon Glass41575d82020-12-03 16:55:17 -0700107 .priv_auto = sizeof(struct ccu_priv),
Jagan Teki6901aab2019-01-11 15:41:46 +0530108 .ops = &sunxi_clk_ops,
109 .probe = sunxi_clk_probe,
110 .bind = a80_clk_bind,
111};