Skip to content

Commit

Permalink
Merge branch 'master' into next
Browse files Browse the repository at this point in the history
  • Loading branch information
trini committed Mar 27, 2023
2 parents fde4392 + 41a88ad commit 605bc14
Show file tree
Hide file tree
Showing 471 changed files with 1,553 additions and 646 deletions.
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Declare files that always have LF line endings on checkout
* text eol=lf
# Denote all files that are truly binary and should not be modified
*.bin binary
*.bmp binary
*.ttf binary
*.gz binary
Expand Down
27 changes: 0 additions & 27 deletions Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -191,33 +191,6 @@ config XEN

[1] - https://xenproject.org/

config DISTRO_DEFAULTS
bool "Select defaults suitable for booting general purpose Linux distributions"
select AUTO_COMPLETE
select CMDLINE_EDITING
select CMD_BOOTI if ARM64
select CMD_BOOTZ if ARM && !ARM64
select CMD_DHCP if CMD_NET
select CMD_ENV_EXISTS
select CMD_EXT2
select CMD_EXT4
select CMD_FAT
select CMD_FS_GENERIC
select CMD_PART if PARTITIONS
select CMD_PING if CMD_NET
select CMD_PXE if NET
select CMD_SYSBOOT
select ENV_VARS_UBOOT_CONFIG
select HUSH_PARSER
select SUPPORT_RAW_INITRD
select SYS_LONGHELP
imply CMD_MII if NET
imply USB_STORAGE
imply USE_BOOTCOMMAND
help
Select this to enable various options and commands which are suitable
for building u-boot for booting general purpose Linux distributions.

config ENV_VARS_UBOOT_CONFIG
bool "Add arch, board, vendor and soc variables to default environment"
help
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
VERSION = 2023
PATCHLEVEL = 04
SUBLEVEL =
EXTRAVERSION = -rc4
EXTRAVERSION = -rc5
NAME =

# *DOCUMENTATION*
Expand Down
1 change: 1 addition & 0 deletions arch/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ config ARM
config M68K
bool "M68000 architecture"
select HAVE_PRIVATE_LIBGCC
select USE_PRIVATE_LIBGCC
select NEEDS_MANUAL_RELOC
select SYS_BOOT_GET_CMDLINE
select SYS_BOOT_GET_KBD
Expand Down
3 changes: 2 additions & 1 deletion arch/arm/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -1956,7 +1956,8 @@ config ARCH_ROCKCHIP
imply ADC
imply CMD_DM
imply DEBUG_UART_BOARD_INIT
imply DISTRO_DEFAULTS
imply DISTRO_DEFAULTS if !ROCKCHIP_RK3399
imply BOOTSTD_DEFAULTS if !DISTRO_DEFAULTS
imply FAT_WRITE
imply SARADC_ROCKCHIP
imply SPL_SYSRESET
Expand Down
10 changes: 0 additions & 10 deletions arch/arm/dts/axp803.dtsi
Original file line number Diff line number Diff line change
Expand Up @@ -25,16 +25,6 @@
compatible = "x-powers,axp803-gpio", "x-powers,axp813-gpio";
gpio-controller;
#gpio-cells = <2>;

gpio0_ldo: gpio0-ldo-pin {
pins = "GPIO0";
function = "ldo";
};

gpio1_ldo: gpio1-ldo-pin {
pins = "GPIO1";
function = "ldo";
};
};

battery_power_supply: battery-power {
Expand Down
8 changes: 8 additions & 0 deletions arch/arm/dts/meson-g12b-odroid-go-ultra-u-boot.dtsi
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,11 @@
&usb3_pcie_phy {
/delete-property/ phy-supply;
};

&vcc_2v3 {
regulator-init-microvolt = <2400000>;
};

&vdd_ee {
regulator-init-microvolt = <875000>;
};
1 change: 0 additions & 1 deletion arch/arm/dts/rk3188-radxarock-u-boot.dtsi
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,6 @@
};

&timer3 {
compatible = "rockchip,rk3368-timer", "rockchip,rk3288-timer";
clock-frequency = <24000000>;
bootph-pre-ram;
};
Expand Down
2 changes: 1 addition & 1 deletion arch/arm/dts/rk3308-rock-pi-s-u-boot.dtsi
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
};

&uart0 {
bootph-all;
u-boot,dm-pre-reloc;
clock-frequency = <24000000>;
status = "okay";
};
2 changes: 1 addition & 1 deletion arch/arm/dts/rk3566-radxa-cm3-io-u-boot.dtsi
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@

&uart2 {
clock-frequency = <24000000>;
bootph-all;
u-boot,dm-pre-reloc;
status = "okay";
};
12 changes: 8 additions & 4 deletions arch/arm/dts/rk3568-rock-3a-u-boot.dtsi
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,20 @@
/ {
chosen {
stdout-path = &uart2;
u-boot,spl-boot-order = "same-as-spl", &sdmmc0;
u-boot,spl-boot-order = "same-as-spl", &sdmmc0, &sdhci;
};
};

&sdmmc0 {
status = "okay";
&sdmmc2 {
status = "disabled";
};

&uart1 {
status = "disabled";
};

&uart2 {
clock-frequency = <24000000>;
bootph-all;
u-boot,dm-pre-reloc;
status = "okay";
};
Loading

0 comments on commit 605bc14

Please sign in to comment.