mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-12 07:57:21 +00:00
22 lines
440 B
C
22 lines
440 B
C
|
/*
|
||
|
* (C) Copyright 2017 Rockchip Electronics Co., Ltd
|
||
|
*
|
||
|
* SPDX-License-Identifier: GPL-2.0+
|
||
|
*/
|
||
|
|
||
|
#include <common.h>
|
||
|
#include <dm.h>
|
||
|
#include <syscon.h>
|
||
|
#include <asm/arch/clock.h>
|
||
|
|
||
|
static const struct udevice_id rk3128_syscon_ids[] = {
|
||
|
{ .compatible = "rockchip,rk3128-grf", .data = ROCKCHIP_SYSCON_GRF },
|
||
|
{ }
|
||
|
};
|
||
|
|
||
|
U_BOOT_DRIVER(syscon_rk3128) = {
|
||
|
.name = "rk3128_syscon",
|
||
|
.id = UCLASS_SYSCON,
|
||
|
.of_match = rk3128_syscon_ids,
|
||
|
};
|