]> git.ipfire.org Git - thirdparty/u-boot.git/blame - arch/arm/mach-rockchip/rv1108/syscon_rv1108.c
Revert "Merge patch series "arm: dts: am62-beagleplay: Fix Beagleplay Ethernet""
[thirdparty/u-boot.git] / arch / arm / mach-rockchip / rv1108 / syscon_rv1108.c
CommitLineData
83d290c5 1// SPDX-License-Identifier: GPL-2.0+
2c1e11dd
AY
2/*
3 * (C) Copyright 2016 Rockchip Electronics Co., Ltd
2c1e11dd
AY
4 */
5
d678a59d 6#include <common.h>
2c1e11dd
AY
7#include <dm.h>
8#include <syscon.h>
15f09a1a 9#include <asm/arch-rockchip/clock.h>
2c1e11dd
AY
10
11static const struct udevice_id rv1108_syscon_ids[] = {
12 { .compatible = "rockchip,rv1108-grf", .data = ROCKCHIP_SYSCON_GRF },
13 { }
14};
15
16U_BOOT_DRIVER(syscon_rv1108) = {
17 .name = "rv1108_syscon",
18 .id = UCLASS_SYSCON,
19 .of_match = rv1108_syscon_ids,
20};