mirror of
https://github.com/u-boot/u-boot.git
synced 2025-04-21 20:34:38 +00:00
Merge branch 'master' of https://gitlab.denx.de/u-boot/custodians/u-boot-samsung
This commit is contained in:
commit
f96e513318
3 changed files with 4 additions and 13 deletions
|
@ -3,17 +3,6 @@
|
|||
* 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 {
|
||||
bootph-all;
|
||||
samsung,uart-debug-1;
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
CONFIG_ARM=y
|
||||
CONFIG_ARCH_CPU_INIT=y
|
||||
CONFIG_ARM_SMCCC=y
|
||||
CONFIG_ARCH_EXYNOS=y
|
||||
CONFIG_TEXT_BASE=0xf8800000
|
||||
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_DEFAULT_DEVICE_TREE="exynos/exynos850-e850-96"
|
||||
CONFIG_SYS_LOAD_ADDR=0x80000000
|
||||
# CONFIG_PSCI_RESET is not set
|
||||
CONFIG_ANDROID_BOOT_IMAGE=y
|
||||
# CONFIG_AUTOBOOT 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)
|
||||
{
|
||||
struct exynos_pinctrl_priv *priv = dev_get_priv(dev);
|
||||
unsigned int count, idx;
|
||||
unsigned int pinvals[PINCFG_TYPE_NUM];
|
||||
int count;
|
||||
unsigned int idx, pinvals[PINCFG_TYPE_NUM];
|
||||
|
||||
/*
|
||||
* refer to the following document for the pinctrl bindings
|
||||
|
|
Loading…
Add table
Reference in a new issue