8117895434c658d6ee7af4d3ebf3fca6b37c300e
[oweals/u-boot.git] / arch / arm / mach-rockchip / rk3128 / syscon_rk3128.c
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>
8 #include <syscon.h>
9 #include <asm/arch/clock.h>
10
11 static const struct udevice_id rk3128_syscon_ids[] = {
12         { .compatible = "rockchip,rk3128-grf", .data = ROCKCHIP_SYSCON_GRF },
13         { }
14 };
15
16 U_BOOT_DRIVER(syscon_rk3128) = {
17         .name = "rk3128_syscon",
18         .id = UCLASS_SYSCON,
19         .of_match = rk3128_syscon_ids,
20 };