blob: f2fd11eac2c8cb52ec1820f068d6a2cc5e27c100 [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
7#include <common.h>
8#include <clk-uclass.h>
9#include <dm.h>
10#include <errno.h>
Samuel Holland12e3faa2021-09-12 11:48:43 -050011#include <clk/sunxi.h>
Jagan Tekid69bf0b2018-08-05 14:31:54 +053012#include <dt-bindings/clock/sun8i-v3s-ccu.h>
13#include <dt-bindings/reset/sun8i-v3s-ccu.h>
Simon Glass4dcacfc2020-05-10 11:40:13 -060014#include <linux/bitops.h>
Jagan Tekid69bf0b2018-08-05 14:31:54 +053015
16static struct ccu_clk_gate v3s_gates[] = {
Andre Przywaraddf33c12019-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 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
Andre Przywara3e9aa0b2022-05-04 22:10:28 +010023 [CLK_BUS_PIO] = GATE(0x068, BIT(5)),
24
Samuel Hollandfa7a7fa2021-09-12 09:47:24 -050025 [CLK_BUS_I2C0] = GATE(0x06c, BIT(0)),
26 [CLK_BUS_I2C1] = GATE(0x06c, BIT(1)),
Jagan Teki8cf08ea2018-12-30 21:29:24 +053027 [CLK_BUS_UART0] = GATE(0x06c, BIT(16)),
28 [CLK_BUS_UART1] = GATE(0x06c, BIT(17)),
29 [CLK_BUS_UART2] = GATE(0x06c, BIT(18)),
30
Jagan Tekibc123132019-02-27 20:02:06 +053031 [CLK_SPI0] = GATE(0x0a0, BIT(31)),
32
Jagan Tekid69bf0b2018-08-05 14:31:54 +053033 [CLK_USB_PHY0] = GATE(0x0cc, BIT(8)),
34};
35
36static struct ccu_reset v3s_resets[] = {
37 [RST_USB_PHY0] = RESET(0x0cc, BIT(0)),
38
Andre Przywaraddf33c12019-01-29 15:54:09 +000039 [RST_BUS_MMC0] = RESET(0x2c0, BIT(8)),
40 [RST_BUS_MMC1] = RESET(0x2c0, BIT(9)),
41 [RST_BUS_MMC2] = RESET(0x2c0, BIT(10)),
Jagan Tekibc123132019-02-27 20:02:06 +053042 [RST_BUS_SPI0] = RESET(0x2c0, BIT(20)),
Jagan Tekid69bf0b2018-08-05 14:31:54 +053043 [RST_BUS_OTG] = RESET(0x2c0, BIT(24)),
Jagan Tekib490aa52018-12-30 21:37:31 +053044
Samuel Hollandfa7a7fa2021-09-12 09:47:24 -050045 [RST_BUS_I2C0] = RESET(0x2d8, BIT(0)),
46 [RST_BUS_I2C1] = RESET(0x2d8, BIT(1)),
Jagan Tekib490aa52018-12-30 21:37:31 +053047 [RST_BUS_UART0] = RESET(0x2d8, BIT(16)),
48 [RST_BUS_UART1] = RESET(0x2d8, BIT(17)),
49 [RST_BUS_UART2] = RESET(0x2d8, BIT(18)),
Jagan Tekid69bf0b2018-08-05 14:31:54 +053050};
51
Samuel Holland751c6c62022-05-09 00:29:34 -050052const struct ccu_desc v3s_ccu_desc = {
Jagan Tekid69bf0b2018-08-05 14:31:54 +053053 .gates = v3s_gates,
54 .resets = v3s_resets,
Samuel Holland84436502022-05-09 00:29:31 -050055 .num_gates = ARRAY_SIZE(v3s_gates),
56 .num_resets = ARRAY_SIZE(v3s_resets),
Jagan Tekid69bf0b2018-08-05 14:31:54 +053057};