Jagan Teki | d69bf0b | 2018-08-05 14:31:54 +0530 | [diff] [blame] | 1 | // 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 Holland | 12e3faa | 2021-09-12 11:48:43 -0500 | [diff] [blame] | 11 | #include <clk/sunxi.h> |
Jagan Teki | d69bf0b | 2018-08-05 14:31:54 +0530 | [diff] [blame] | 12 | #include <dt-bindings/clock/sun8i-v3s-ccu.h> |
| 13 | #include <dt-bindings/reset/sun8i-v3s-ccu.h> |
Simon Glass | 4dcacfc | 2020-05-10 11:40:13 -0600 | [diff] [blame] | 14 | #include <linux/bitops.h> |
Jagan Teki | d69bf0b | 2018-08-05 14:31:54 +0530 | [diff] [blame] | 15 | |
| 16 | static struct ccu_clk_gate v3s_gates[] = { |
Andre Przywara | ddf33c1 | 2019-01-29 15:54:09 +0000 | [diff] [blame] | 17 | [CLK_BUS_MMC0] = GATE(0x060, BIT(8)), |
| 18 | [CLK_BUS_MMC1] = GATE(0x060, BIT(9)), |
| 19 | [CLK_BUS_MMC2] = GATE(0x060, BIT(10)), |
Jagan Teki | bc12313 | 2019-02-27 20:02:06 +0530 | [diff] [blame] | 20 | [CLK_BUS_SPI0] = GATE(0x060, BIT(20)), |
Jagan Teki | d69bf0b | 2018-08-05 14:31:54 +0530 | [diff] [blame] | 21 | [CLK_BUS_OTG] = GATE(0x060, BIT(24)), |
| 22 | |
Samuel Holland | 1467d44 | 2022-11-28 01:02:24 -0600 | [diff] [blame^] | 23 | [CLK_BUS_TCON0] = GATE(0x064, BIT(4)), |
| 24 | [CLK_BUS_DE] = GATE(0x064, BIT(12)), |
| 25 | |
Andre Przywara | 3e9aa0b | 2022-05-04 22:10:28 +0100 | [diff] [blame] | 26 | [CLK_BUS_PIO] = GATE(0x068, BIT(5)), |
| 27 | |
Samuel Holland | fa7a7fa | 2021-09-12 09:47:24 -0500 | [diff] [blame] | 28 | [CLK_BUS_I2C0] = GATE(0x06c, BIT(0)), |
| 29 | [CLK_BUS_I2C1] = GATE(0x06c, BIT(1)), |
Jagan Teki | 8cf08ea | 2018-12-30 21:29:24 +0530 | [diff] [blame] | 30 | [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 Teki | bc12313 | 2019-02-27 20:02:06 +0530 | [diff] [blame] | 34 | [CLK_SPI0] = GATE(0x0a0, BIT(31)), |
| 35 | |
Jagan Teki | d69bf0b | 2018-08-05 14:31:54 +0530 | [diff] [blame] | 36 | [CLK_USB_PHY0] = GATE(0x0cc, BIT(8)), |
Samuel Holland | 1467d44 | 2022-11-28 01:02:24 -0600 | [diff] [blame^] | 37 | |
| 38 | [CLK_DE] = GATE(0x104, BIT(31)), |
| 39 | [CLK_TCON0] = GATE(0x118, BIT(31)), |
Jagan Teki | d69bf0b | 2018-08-05 14:31:54 +0530 | [diff] [blame] | 40 | }; |
| 41 | |
| 42 | static struct ccu_reset v3s_resets[] = { |
| 43 | [RST_USB_PHY0] = RESET(0x0cc, BIT(0)), |
| 44 | |
Andre Przywara | ddf33c1 | 2019-01-29 15:54:09 +0000 | [diff] [blame] | 45 | [RST_BUS_MMC0] = RESET(0x2c0, BIT(8)), |
| 46 | [RST_BUS_MMC1] = RESET(0x2c0, BIT(9)), |
| 47 | [RST_BUS_MMC2] = RESET(0x2c0, BIT(10)), |
Jagan Teki | bc12313 | 2019-02-27 20:02:06 +0530 | [diff] [blame] | 48 | [RST_BUS_SPI0] = RESET(0x2c0, BIT(20)), |
Jagan Teki | d69bf0b | 2018-08-05 14:31:54 +0530 | [diff] [blame] | 49 | [RST_BUS_OTG] = RESET(0x2c0, BIT(24)), |
Jagan Teki | b490aa5 | 2018-12-30 21:37:31 +0530 | [diff] [blame] | 50 | |
Samuel Holland | 1467d44 | 2022-11-28 01:02:24 -0600 | [diff] [blame^] | 51 | [RST_BUS_TCON0] = RESET(0x2c4, BIT(4)), |
| 52 | [RST_BUS_DE] = RESET(0x2c4, BIT(12)), |
| 53 | |
Samuel Holland | fa7a7fa | 2021-09-12 09:47:24 -0500 | [diff] [blame] | 54 | [RST_BUS_I2C0] = RESET(0x2d8, BIT(0)), |
| 55 | [RST_BUS_I2C1] = RESET(0x2d8, BIT(1)), |
Jagan Teki | b490aa5 | 2018-12-30 21:37:31 +0530 | [diff] [blame] | 56 | [RST_BUS_UART0] = RESET(0x2d8, BIT(16)), |
| 57 | [RST_BUS_UART1] = RESET(0x2d8, BIT(17)), |
| 58 | [RST_BUS_UART2] = RESET(0x2d8, BIT(18)), |
Jagan Teki | d69bf0b | 2018-08-05 14:31:54 +0530 | [diff] [blame] | 59 | }; |
| 60 | |
Samuel Holland | 751c6c6 | 2022-05-09 00:29:34 -0500 | [diff] [blame] | 61 | const struct ccu_desc v3s_ccu_desc = { |
Jagan Teki | d69bf0b | 2018-08-05 14:31:54 +0530 | [diff] [blame] | 62 | .gates = v3s_gates, |
| 63 | .resets = v3s_resets, |
Samuel Holland | 8443650 | 2022-05-09 00:29:31 -0500 | [diff] [blame] | 64 | .num_gates = ARRAY_SIZE(v3s_gates), |
| 65 | .num_resets = ARRAY_SIZE(v3s_resets), |
Jagan Teki | d69bf0b | 2018-08-05 14:31:54 +0530 | [diff] [blame] | 66 | }; |