Merge branch 'master' of git://git.denx.de/u-boot-samsung
[platform/kernel/u-boot.git] / arch / arm / mach-rockchip / rv1108 / syscon_rv1108.c
1 /*
2  * (C) Copyright 2016 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 rv1108_syscon_ids[] = {
13         { .compatible = "rockchip,rv1108-grf", .data = ROCKCHIP_SYSCON_GRF },
14         { }
15 };
16
17 U_BOOT_DRIVER(syscon_rv1108) = {
18         .name = "rv1108_syscon",
19         .id = UCLASS_SYSCON,
20         .of_match = rv1108_syscon_ids,
21 };