Merge tag 'efi-2020-07-rc4' of https://gitlab.denx.de/u-boot/custodians/u-boot-efi
[oweals/u-boot.git] / arch / arm / mach-rockchip / rk3036 / syscon_rk3036.c
1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3  * (C) Copyright 2015 Rockchip Electronics Co., Ltd
4  */
5
6 #include <common.h>
7 #include <dm.h>
8 #include <syscon.h>
9 #include <asm/arch-rockchip/clock.h>
10
11 static const struct udevice_id rk3036_syscon_ids[] = {
12         { .compatible = "rockchip,rk3036-grf", .data = ROCKCHIP_SYSCON_GRF },
13         { }
14 };
15
16 U_BOOT_DRIVER(syscon_rk3036) = {
17         .name = "rk3036_syscon",
18         .id = UCLASS_SYSCON,
19         .of_match = rk3036_syscon_ids,
20 };