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> |
| 11 | #include <asm/arch/ccu.h> |
| 12 | #include <dt-bindings/clock/sun8i-v3s-ccu.h> |
| 13 | #include <dt-bindings/reset/sun8i-v3s-ccu.h> |
| 14 | |
| 15 | static struct ccu_clk_gate v3s_gates[] = { |
| 16 | [CLK_BUS_OTG] = GATE(0x060, BIT(24)), |
| 17 | |
| 18 | [CLK_USB_PHY0] = GATE(0x0cc, BIT(8)), |
| 19 | }; |
| 20 | |
| 21 | static struct ccu_reset v3s_resets[] = { |
| 22 | [RST_USB_PHY0] = RESET(0x0cc, BIT(0)), |
| 23 | |
| 24 | [RST_BUS_OTG] = RESET(0x2c0, BIT(24)), |
| 25 | }; |
| 26 | |
| 27 | static const struct ccu_desc v3s_ccu_desc = { |
| 28 | .gates = v3s_gates, |
| 29 | .resets = v3s_resets, |
| 30 | }; |
| 31 | |
| 32 | static int v3s_clk_bind(struct udevice *dev) |
| 33 | { |
| 34 | return sunxi_reset_bind(dev, ARRAY_SIZE(v3s_resets)); |
| 35 | } |
| 36 | |
| 37 | static const struct udevice_id v3s_clk_ids[] = { |
| 38 | { .compatible = "allwinner,sun8i-v3s-ccu", |
| 39 | .data = (ulong)&v3s_ccu_desc }, |
| 40 | { } |
| 41 | }; |
| 42 | |
| 43 | U_BOOT_DRIVER(clk_sun8i_v3s) = { |
| 44 | .name = "sun8i_v3s_ccu", |
| 45 | .id = UCLASS_CLK, |
| 46 | .of_match = v3s_clk_ids, |
| 47 | .priv_auto_alloc_size = sizeof(struct ccu_priv), |
| 48 | .ops = &sunxi_clk_ops, |
| 49 | .probe = sunxi_clk_probe, |
| 50 | .bind = v3s_clk_bind, |
| 51 | }; |