Heiko Stuebner | fc36785 | 2019-07-16 22:18:21 +0200 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0 |
| 2 | /* |
| 3 | * (C) Copyright 2017 Rockchip Electronics Co., Ltd |
| 4 | */ |
| 5 | |
| 6 | #include <common.h> |
| 7 | #include <dm.h> |
Simon Glass | 0f2af88 | 2020-05-10 11:40:05 -0600 | [diff] [blame] | 8 | #include <log.h> |
Heiko Stuebner | fc36785 | 2019-07-16 22:18:21 +0200 | [diff] [blame] | 9 | #include <syscon.h> |
| 10 | #include <asm/arch-rockchip/clock.h> |
| 11 | |
| 12 | static const struct udevice_id px30_syscon_ids[] = { |
| 13 | { .compatible = "rockchip,px30-pmu", .data = ROCKCHIP_SYSCON_PMU }, |
| 14 | { .compatible = "rockchip,px30-pmugrf", .data = ROCKCHIP_SYSCON_PMUGRF }, |
| 15 | { .compatible = "rockchip,px30-grf", .data = ROCKCHIP_SYSCON_GRF }, |
| 16 | { } |
| 17 | }; |
| 18 | |
| 19 | U_BOOT_DRIVER(syscon_px30) = { |
| 20 | .id = UCLASS_SYSCON, |
| 21 | .name = "px30_syscon", |
| 22 | .of_match = px30_syscon_ids, |
| 23 | }; |
| 24 | |
| 25 | #if CONFIG_IS_ENABLED(OF_PLATDATA) |
Simon Glass | b75b15b | 2020-12-03 16:55:23 -0700 | [diff] [blame] | 26 | static int px30_syscon_bind_of_plat(struct udevice *dev) |
Heiko Stuebner | fc36785 | 2019-07-16 22:18:21 +0200 | [diff] [blame] | 27 | { |
| 28 | dev->driver_data = dev->driver->of_match->data; |
| 29 | debug("syscon: %s %d\n", dev->name, (uint)dev->driver_data); |
| 30 | |
| 31 | return 0; |
| 32 | } |
| 33 | |
| 34 | U_BOOT_DRIVER(rockchip_px30_pmu) = { |
| 35 | .name = "rockchip_px30_pmu", |
| 36 | .id = UCLASS_SYSCON, |
| 37 | .of_match = px30_syscon_ids, |
Simon Glass | b75b15b | 2020-12-03 16:55:23 -0700 | [diff] [blame] | 38 | .bind = px30_syscon_bind_of_plat, |
Heiko Stuebner | fc36785 | 2019-07-16 22:18:21 +0200 | [diff] [blame] | 39 | }; |
| 40 | |
| 41 | U_BOOT_DRIVER(rockchip_px30_pmugrf) = { |
| 42 | .name = "rockchip_px30_pmugrf", |
| 43 | .id = UCLASS_SYSCON, |
| 44 | .of_match = px30_syscon_ids + 1, |
Simon Glass | b75b15b | 2020-12-03 16:55:23 -0700 | [diff] [blame] | 45 | .bind = px30_syscon_bind_of_plat, |
Heiko Stuebner | fc36785 | 2019-07-16 22:18:21 +0200 | [diff] [blame] | 46 | }; |
| 47 | |
| 48 | U_BOOT_DRIVER(rockchip_px30_grf) = { |
| 49 | .name = "rockchip_px30_grf", |
| 50 | .id = UCLASS_SYSCON, |
| 51 | .of_match = px30_syscon_ids + 2, |
Simon Glass | b75b15b | 2020-12-03 16:55:23 -0700 | [diff] [blame] | 52 | .bind = px30_syscon_bind_of_plat, |
Heiko Stuebner | fc36785 | 2019-07-16 22:18:21 +0200 | [diff] [blame] | 53 | }; |
| 54 | #endif |