mirror of
https://source.denx.de/u-boot/u-boot.git
synced 2025-08-29 18:41:37 +02:00
Merge branch 'master' of https://gitlab.denx.de/u-boot/custodians/u-boot-samsung
This commit is contained in:
commit
f96e513318
@ -3,17 +3,6 @@
|
|||||||
* Copyright (c) 2023 Linaro Ltd.
|
* Copyright (c) 2023 Linaro Ltd.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
&soc {
|
|
||||||
/* TODO: Remove this node once it appears in upstream dts */
|
|
||||||
trng: rng@12081400 {
|
|
||||||
compatible = "samsung,exynos850-trng";
|
|
||||||
reg = <0x12081400 0x100>;
|
|
||||||
clocks = <&cmu_core CLK_GOUT_SSS_ACLK>,
|
|
||||||
<&cmu_core CLK_GOUT_SSS_PCLK>;
|
|
||||||
clock-names = "secss", "pclk";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
&pmu_system_controller {
|
&pmu_system_controller {
|
||||||
bootph-all;
|
bootph-all;
|
||||||
samsung,uart-debug-1;
|
samsung,uart-debug-1;
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
CONFIG_ARM=y
|
CONFIG_ARM=y
|
||||||
CONFIG_ARCH_CPU_INIT=y
|
CONFIG_ARCH_CPU_INIT=y
|
||||||
|
CONFIG_ARM_SMCCC=y
|
||||||
CONFIG_ARCH_EXYNOS=y
|
CONFIG_ARCH_EXYNOS=y
|
||||||
CONFIG_TEXT_BASE=0xf8800000
|
CONFIG_TEXT_BASE=0xf8800000
|
||||||
CONFIG_SYS_MALLOC_LEN=0x81f000
|
CONFIG_SYS_MALLOC_LEN=0x81f000
|
||||||
@ -9,6 +10,7 @@ CONFIG_HAS_CUSTOM_SYS_INIT_SP_ADDR=y
|
|||||||
CONFIG_CUSTOM_SYS_INIT_SP_ADDR=0xf8c00000
|
CONFIG_CUSTOM_SYS_INIT_SP_ADDR=0xf8c00000
|
||||||
CONFIG_DEFAULT_DEVICE_TREE="exynos/exynos850-e850-96"
|
CONFIG_DEFAULT_DEVICE_TREE="exynos/exynos850-e850-96"
|
||||||
CONFIG_SYS_LOAD_ADDR=0x80000000
|
CONFIG_SYS_LOAD_ADDR=0x80000000
|
||||||
|
# CONFIG_PSCI_RESET is not set
|
||||||
CONFIG_ANDROID_BOOT_IMAGE=y
|
CONFIG_ANDROID_BOOT_IMAGE=y
|
||||||
# CONFIG_AUTOBOOT is not set
|
# CONFIG_AUTOBOOT is not set
|
||||||
# CONFIG_DISPLAY_CPUINFO is not set
|
# CONFIG_DISPLAY_CPUINFO is not set
|
||||||
|
@ -114,8 +114,8 @@ static void exynos_pinctrl_set_pincfg(unsigned long reg_base, u32 pin_num,
|
|||||||
int exynos_pinctrl_set_state(struct udevice *dev, struct udevice *config)
|
int exynos_pinctrl_set_state(struct udevice *dev, struct udevice *config)
|
||||||
{
|
{
|
||||||
struct exynos_pinctrl_priv *priv = dev_get_priv(dev);
|
struct exynos_pinctrl_priv *priv = dev_get_priv(dev);
|
||||||
unsigned int count, idx;
|
int count;
|
||||||
unsigned int pinvals[PINCFG_TYPE_NUM];
|
unsigned int idx, pinvals[PINCFG_TYPE_NUM];
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* refer to the following document for the pinctrl bindings
|
* refer to the following document for the pinctrl bindings
|
||||||
|
Loading…
x
Reference in New Issue
Block a user