]> git.ipfire.org Git - people/ms/u-boot.git/blob - arch/arm/mach-rockchip/rk3128/syscon_rk3128.c
Merge git://git.denx.de/u-boot-sunxi
[people/ms/u-boot.git] / arch / arm / mach-rockchip / rk3128 / syscon_rk3128.c
1 /*
2 * (C) Copyright 2017 Rockchip Electronics Co., Ltd
3 *
4 * SPDX-License-Identifier: GPL-2.0+
5 */
6
7 #include <common.h>
8 #include <dm.h>
9 #include <syscon.h>
10 #include <asm/arch/clock.h>
11
12 static const struct udevice_id rk3128_syscon_ids[] = {
13 { .compatible = "rockchip,rk3128-grf", .data = ROCKCHIP_SYSCON_GRF },
14 { }
15 };
16
17 U_BOOT_DRIVER(syscon_rk3128) = {
18 .name = "rk3128_syscon",
19 .id = UCLASS_SYSCON,
20 .of_match = rk3128_syscon_ids,
21 };