blob: 6524c13540e0c4f76666974ae146140918d0ac20 [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>
Samuel Holland21d314a2021-09-12 11:48:43 -050011#include <clk/sunxi.h>
Jagan Teki6239a6d2018-08-05 14:31:54 +053012#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
Samuel Holland77024aa2022-11-28 01:02:24 -060023 [CLK_BUS_TCON0] = GATE(0x064, BIT(4)),
24 [CLK_BUS_DE] = GATE(0x064, BIT(12)),
25
Andre Przywara444ab352022-05-04 22:10:28 +010026 [CLK_BUS_PIO] = GATE(0x068, BIT(5)),
27
Samuel Hollandc61897b2021-09-12 09:47:24 -050028 [CLK_BUS_I2C0] = GATE(0x06c, BIT(0)),
29 [CLK_BUS_I2C1] = GATE(0x06c, BIT(1)),
Jagan Teki4acc7112018-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
Jagan Teki82111462019-02-27 20:02:06 +053034 [CLK_SPI0] = GATE(0x0a0, BIT(31)),
35
Jagan Teki6239a6d2018-08-05 14:31:54 +053036 [CLK_USB_PHY0] = GATE(0x0cc, BIT(8)),
Samuel Holland77024aa2022-11-28 01:02:24 -060037
38 [CLK_DE] = GATE(0x104, BIT(31)),
39 [CLK_TCON0] = GATE(0x118, BIT(31)),
Jagan Teki6239a6d2018-08-05 14:31:54 +053040};
41
42static struct ccu_reset v3s_resets[] = {
43 [RST_USB_PHY0] = RESET(0x0cc, BIT(0)),
44
Andre Przywarabb3e5aa2019-01-29 15:54:09 +000045 [RST_BUS_MMC0] = RESET(0x2c0, BIT(8)),
46 [RST_BUS_MMC1] = RESET(0x2c0, BIT(9)),
47 [RST_BUS_MMC2] = RESET(0x2c0, BIT(10)),
Jagan Teki82111462019-02-27 20:02:06 +053048 [RST_BUS_SPI0] = RESET(0x2c0, BIT(20)),
Jagan Teki6239a6d2018-08-05 14:31:54 +053049 [RST_BUS_OTG] = RESET(0x2c0, BIT(24)),
Jagan Teki8606f962018-12-30 21:37:31 +053050
Samuel Holland77024aa2022-11-28 01:02:24 -060051 [RST_BUS_TCON0] = RESET(0x2c4, BIT(4)),
52 [RST_BUS_DE] = RESET(0x2c4, BIT(12)),
53
Samuel Hollandc61897b2021-09-12 09:47:24 -050054 [RST_BUS_I2C0] = RESET(0x2d8, BIT(0)),
55 [RST_BUS_I2C1] = RESET(0x2d8, BIT(1)),
Jagan Teki8606f962018-12-30 21:37:31 +053056 [RST_BUS_UART0] = RESET(0x2d8, BIT(16)),
57 [RST_BUS_UART1] = RESET(0x2d8, BIT(17)),
58 [RST_BUS_UART2] = RESET(0x2d8, BIT(18)),
Jagan Teki6239a6d2018-08-05 14:31:54 +053059};
60
Samuel Holland46fa23f2022-05-09 00:29:34 -050061const struct ccu_desc v3s_ccu_desc = {
Jagan Teki6239a6d2018-08-05 14:31:54 +053062 .gates = v3s_gates,
63 .resets = v3s_resets,
Samuel Holland49b2b0a2022-05-09 00:29:31 -050064 .num_gates = ARRAY_SIZE(v3s_gates),
65 .num_resets = ARRAY_SIZE(v3s_resets),
Jagan Teki6239a6d2018-08-05 14:31:54 +053066};