blob: 292c8c44f970581bf08c216b50f19fb601983bd4 [file] [log] [blame]
Jagan Tekid69bf0b2018-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
Jagan Tekid69bf0b2018-08-05 14:31:54 +05307#include <clk-uclass.h>
8#include <dm.h>
9#include <errno.h>
Samuel Holland12e3faa2021-09-12 11:48:43 -050010#include <clk/sunxi.h>
Jagan Tekid69bf0b2018-08-05 14:31:54 +053011#include <dt-bindings/clock/sun8i-v3s-ccu.h>
12#include <dt-bindings/reset/sun8i-v3s-ccu.h>
Simon Glass4dcacfc2020-05-10 11:40:13 -060013#include <linux/bitops.h>
Jagan Tekid69bf0b2018-08-05 14:31:54 +053014
15static struct ccu_clk_gate v3s_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)),
Michael Wallef3730022024-05-13 22:56:08 +020019 [CLK_BUS_EMAC] = GATE(0x060, BIT(17)),
Jagan Tekibc123132019-02-27 20:02:06 +053020 [CLK_BUS_SPI0] = GATE(0x060, BIT(20)),
Jagan Tekid69bf0b2018-08-05 14:31:54 +053021 [CLK_BUS_OTG] = GATE(0x060, BIT(24)),
22
Samuel Holland1467d442022-11-28 01:02:24 -060023 [CLK_BUS_TCON0] = GATE(0x064, BIT(4)),
24 [CLK_BUS_DE] = GATE(0x064, BIT(12)),
25
Andre Przywara3e9aa0b2022-05-04 22:10:28 +010026 [CLK_BUS_PIO] = GATE(0x068, BIT(5)),
27
Samuel Hollandfa7a7fa2021-09-12 09:47:24 -050028 [CLK_BUS_I2C0] = GATE(0x06c, BIT(0)),
29 [CLK_BUS_I2C1] = GATE(0x06c, BIT(1)),
Jagan Teki8cf08ea2018-12-30 21:29:24 +053030 [CLK_BUS_UART0] = GATE(0x06c, BIT(16)),
31 [CLK_BUS_UART1] = GATE(0x06c, BIT(17)),
32 [CLK_BUS_UART2] = GATE(0x06c, BIT(18)),
33
Michael Wallef3730022024-05-13 22:56:08 +020034 [CLK_BUS_EPHY] = GATE(0x070, BIT(0)),
35
Jagan Tekibc123132019-02-27 20:02:06 +053036 [CLK_SPI0] = GATE(0x0a0, BIT(31)),
37
Jagan Tekid69bf0b2018-08-05 14:31:54 +053038 [CLK_USB_PHY0] = GATE(0x0cc, BIT(8)),
Samuel Holland1467d442022-11-28 01:02:24 -060039
40 [CLK_DE] = GATE(0x104, BIT(31)),
41 [CLK_TCON0] = GATE(0x118, BIT(31)),
Jagan Tekid69bf0b2018-08-05 14:31:54 +053042};
43
44static struct ccu_reset v3s_resets[] = {
45 [RST_USB_PHY0] = RESET(0x0cc, BIT(0)),
46
Andre Przywaraddf33c12019-01-29 15:54:09 +000047 [RST_BUS_MMC0] = RESET(0x2c0, BIT(8)),
48 [RST_BUS_MMC1] = RESET(0x2c0, BIT(9)),
49 [RST_BUS_MMC2] = RESET(0x2c0, BIT(10)),
Michael Wallef3730022024-05-13 22:56:08 +020050 [RST_BUS_EMAC] = RESET(0x2c0, BIT(17)),
Jagan Tekibc123132019-02-27 20:02:06 +053051 [RST_BUS_SPI0] = RESET(0x2c0, BIT(20)),
Jagan Tekid69bf0b2018-08-05 14:31:54 +053052 [RST_BUS_OTG] = RESET(0x2c0, BIT(24)),
Jagan Tekib490aa52018-12-30 21:37:31 +053053
Samuel Holland1467d442022-11-28 01:02:24 -060054 [RST_BUS_TCON0] = RESET(0x2c4, BIT(4)),
55 [RST_BUS_DE] = RESET(0x2c4, BIT(12)),
56
Michael Wallef3730022024-05-13 22:56:08 +020057 [RST_BUS_EPHY] = RESET(0x2c8, BIT(2)),
58
Samuel Hollandfa7a7fa2021-09-12 09:47:24 -050059 [RST_BUS_I2C0] = RESET(0x2d8, BIT(0)),
60 [RST_BUS_I2C1] = RESET(0x2d8, BIT(1)),
Jagan Tekib490aa52018-12-30 21:37:31 +053061 [RST_BUS_UART0] = RESET(0x2d8, BIT(16)),
62 [RST_BUS_UART1] = RESET(0x2d8, BIT(17)),
63 [RST_BUS_UART2] = RESET(0x2d8, BIT(18)),
Jagan Tekid69bf0b2018-08-05 14:31:54 +053064};
65
Samuel Holland751c6c62022-05-09 00:29:34 -050066const struct ccu_desc v3s_ccu_desc = {
Jagan Tekid69bf0b2018-08-05 14:31:54 +053067 .gates = v3s_gates,
68 .resets = v3s_resets,
Samuel Holland84436502022-05-09 00:29:31 -050069 .num_gates = ARRAY_SIZE(v3s_gates),
70 .num_resets = ARRAY_SIZE(v3s_resets),
Jagan Tekid69bf0b2018-08-05 14:31:54 +053071};