mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-05 20:54:31 +00:00
37a0c60085
The RK3368 is an octa-core Cortex-A53 SoC from Rockchip. This adds basic support to chain-load U-Boot from Rockchip's miniloader. Signed-off-by: Andreas Färber <afaerber@suse.de> Signed-off-by: Andy Yan <andy.yan@rock-chips.com> Reviewed-by: Simon Glass <sjg@chromium.org>
24 lines
562 B
C
24 lines
562 B
C
/*
|
|
* (C) Copyright 2017 Rockchip Electronics Co., Ltd
|
|
* Author: Andy Yan <andy.yan@rock-chips.com>
|
|
* 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 rk3368_syscon_ids[] = {
|
|
{ .compatible = "rockchip,rk3368-grf",
|
|
.data = ROCKCHIP_SYSCON_GRF },
|
|
{ .compatible = "rockchip,rk3368-pmugrf",
|
|
.data = ROCKCHIP_SYSCON_PMUGRF },
|
|
{ }
|
|
};
|
|
|
|
U_BOOT_DRIVER(syscon_rk3368) = {
|
|
.name = "rk3368_syscon",
|
|
.id = UCLASS_SYSCON,
|
|
.of_match = rk3368_syscon_ids,
|
|
};
|