History log of /openbmc/u-boot/lib/ (Results 151 – 175 of 1500)
Revision Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
f1589ffb17-Oct-2018 AKASHI Takahiro <takahiro.akashi@linaro.org>

efi_loader: add efi_dp_from_name()

Factor out efi_set_bootdev() and extract efi_dp_from_name().
This function will be used to set a boot device in efishell command.

Signed-off-by: AKASHI Takahiro <

efi_loader: add efi_dp_from_name()

Factor out efi_set_bootdev() and extract efi_dp_from_name().
This function will be used to set a boot device in efishell command.

Signed-off-by: AKASHI Takahiro <takahiro.akashi@linaro.org>
Signed-off-by: Alexander Graf <agraf@suse.de>

show more ...

e237302124-Sep-2018 Heinrich Schuchardt <xypron.glpk@gmx.de>

efi_loader: UninstallMultipleProtocolInterfaces error code

If UninstallMultipleProtocolInterfaces fails, we sometimes return the wrong
status code. The UEFI spec mandates to always return EFI_INVALI

efi_loader: UninstallMultipleProtocolInterfaces error code

If UninstallMultipleProtocolInterfaces fails, we sometimes return the wrong
status code. The UEFI spec mandates to always return EFI_INVALID_PARAMETER.

Update unit test.

Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Signed-off-by: Alexander Graf <agraf@suse.de>

show more ...

87fc275c24-Sep-2018 Heinrich Schuchardt <xypron.glpk@gmx.de>

efi_selftest: use CR LF in helloworld

The UEFI spec defines that a line feed moves the cursor to the next line
and (only) a carriage return moves the cursor to the beginning of the line.

So we shou

efi_selftest: use CR LF in helloworld

The UEFI spec defines that a line feed moves the cursor to the next line
and (only) a carriage return moves the cursor to the beginning of the line.

So we should issue CR LF when we want to get to the start of the next line.

Add some comments.

Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Signed-off-by: Alexander Graf <agraf@suse.de>

show more ...

d39646a325-Sep-2018 Heinrich Schuchardt <xypron.glpk@gmx.de>

efi_loader: rename parent to header

Rename the component parent of some EFI objects to header. This avoids
misunderstandings.

Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Signed-off-by:

efi_loader: rename parent to header

Rename the component parent of some EFI objects to header. This avoids
misunderstandings.

Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Signed-off-by: Alexander Graf <agraf@suse.de>

show more ...

fae0118e25-Sep-2018 Heinrich Schuchardt <xypron.glpk@gmx.de>

efi_loader: eliminate handle member

A pointer to a struct efi_object is a handle. We do not need any handle
member in this structure. Let's eliminate it.

Signed-off-by: Heinrich Schuchardt <xypron.

efi_loader: eliminate handle member

A pointer to a struct efi_object is a handle. We do not need any handle
member in this structure. Let's eliminate it.

Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Signed-off-by: Alexander Graf <agraf@suse.de>

show more ...

faea104125-Sep-2018 Heinrich Schuchardt <xypron.glpk@gmx.de>

efi_loader: typedef struct efi_object *efi_handle_t

All our handles point to a struct efi_object. So let's define the
efi_handle_t accordingly. This helps us to discover coding errors much
more easi

efi_loader: typedef struct efi_object *efi_handle_t

All our handles point to a struct efi_object. So let's define the
efi_handle_t accordingly. This helps us to discover coding errors much
more easily. This becomes evident by the corrections to the usage of
handles in this patch.

Rename variable image_handle to image_obj where applicable.

Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Signed-off-by: Alexander Graf <agraf@suse.de>

show more ...

d8b2216c27-Sep-2018 Heinrich Schuchardt <xypron.glpk@gmx.de>

efi_selftest: fix typos

fix typos
correct the header comment of efi_selftest_variables.c

Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Signed-off-by: Alexander Graf <agraf@suse.de>

9b47f13b28-Sep-2018 Heinrich Schuchardt <xypron.glpk@gmx.de>

efi_loader: delete handles

When the last protocol interface has been uninstalled remove the handle.

Adjust ReinstallProtocol so that it does not remove the handle.

Signed-off-by: Heinrich Schuchar

efi_loader: delete handles

When the last protocol interface has been uninstalled remove the handle.

Adjust ReinstallProtocol so that it does not remove the handle.

Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Signed-off-by: Alexander Graf <agraf@suse.de>

show more ...

e706ed7f16-Oct-2018 Heinrich Schuchardt <xypron.glpk@gmx.de>

efi_loader: implement EFI_RESET_SHUTDOWN at boot time

Allow an EFI application to shut down the system.

If EFI_RESET_SHUTDOWN is issued call do_poweroff().

Signed-off-by: Heinrich Schuchardt <xypr

efi_loader: implement EFI_RESET_SHUTDOWN at boot time

Allow an EFI application to shut down the system.

If EFI_RESET_SHUTDOWN is issued call do_poweroff().

Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Signed-off-by: Alexander Graf <agraf@suse.de>

show more ...

1c32bb1026-Sep-2018 Heinrich Schuchardt <xypron.glpk@gmx.de>

efi_selftest: test handling of exceptions

Test the handling of execptions by trying to execute an undefined
instruction. For 32bit ARM we expect \selftest to be listed as loaded
image.

Signed-off-b

efi_selftest: test handling of exceptions

Test the handling of execptions by trying to execute an undefined
instruction. For 32bit ARM we expect \selftest to be listed as loaded
image.

Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Signed-off-by: Alexander Graf <agraf@suse.de>

show more ...

f6e7b65326-Sep-2018 Heinrich Schuchardt <xypron.glpk@gmx.de>

efi_selftest: simplify lib/efi_selftest/Makefile

We should not make anything in lib/efi_selftest if
CONFIG_CMD_BOOTEFI_SELFTEST is not defined.

We can make that test in lib/Makefile

Signed-off-by:

efi_selftest: simplify lib/efi_selftest/Makefile

We should not make anything in lib/efi_selftest if
CONFIG_CMD_BOOTEFI_SELFTEST is not defined.

We can make that test in lib/Makefile

Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Signed-off-by: Alexander Graf <agraf@suse.de>

show more ...


/openbmc/u-boot/arch/arm/dts/Makefile
/openbmc/u-boot/arch/arm/dts/armada-8040-mcbin.dts
/openbmc/u-boot/arch/arm/dts/keystone-k2g.dtsi
/openbmc/u-boot/arch/arm/dts/meson-axg-s400.dts
/openbmc/u-boot/arch/arm/dts/meson-axg.dtsi
/openbmc/u-boot/arch/arm/dts/rk3399-puma.dtsi
/openbmc/u-boot/arch/arm/dts/rv1108.dtsi
/openbmc/u-boot/arch/arm/dts/socfpga.dtsi
/openbmc/u-boot/arch/arm/dts/socfpga_arria10.dtsi
/openbmc/u-boot/arch/arm/dts/socfpga_arria5.dtsi
/openbmc/u-boot/arch/arm/dts/socfpga_arria5_socdk-u-boot.dtsi
/openbmc/u-boot/arch/arm/dts/socfpga_arria5_socdk.dts
/openbmc/u-boot/arch/arm/dts/socfpga_cyclone5.dtsi
/openbmc/u-boot/arch/arm/dts/socfpga_cyclone5_dbm_soc1.dts
/openbmc/u-boot/arch/arm/dts/socfpga_cyclone5_de0_nano_soc-u-boot.dtsi
/openbmc/u-boot/arch/arm/dts/socfpga_cyclone5_de0_nano_soc.dts
/openbmc/u-boot/arch/arm/dts/socfpga_cyclone5_de10_nano.dts
/openbmc/u-boot/arch/arm/dts/socfpga_cyclone5_de1_soc.dts
/openbmc/u-boot/arch/arm/dts/socfpga_cyclone5_is1.dts
/openbmc/u-boot/arch/arm/dts/socfpga_cyclone5_socdk-u-boot.dtsi
/openbmc/u-boot/arch/arm/dts/socfpga_cyclone5_socdk.dts
/openbmc/u-boot/arch/arm/dts/socfpga_cyclone5_sockit-u-boot.dtsi
/openbmc/u-boot/arch/arm/dts/socfpga_cyclone5_sockit.dts
/openbmc/u-boot/arch/arm/dts/socfpga_cyclone5_socrates-u-boot.dtsi
/openbmc/u-boot/arch/arm/dts/socfpga_cyclone5_socrates.dts
/openbmc/u-boot/arch/arm/dts/socfpga_cyclone5_sr1500.dts
/openbmc/u-boot/arch/arm/dts/socfpga_cyclone5_vining_fpga-u-boot.dtsi
/openbmc/u-boot/arch/arm/dts/socfpga_cyclone5_vining_fpga.dts
/openbmc/u-boot/arch/arm/dts/stv0991.dts
/openbmc/u-boot/arch/arm/include/asm/arch-meson/axg.h
/openbmc/u-boot/arch/arm/include/asm/arch-meson/boot.h
/openbmc/u-boot/arch/arm/include/asm/arch-meson/clock-axg.h
/openbmc/u-boot/arch/arm/include/asm/arch-meson/clock-gx.h
/openbmc/u-boot/arch/arm/include/asm/arch-meson/eth.h
/openbmc/u-boot/arch/arm/include/asm/arch-meson/gx.h
/openbmc/u-boot/arch/arm/include/asm/arch-meson/mem.h
/openbmc/u-boot/arch/arm/include/asm/arch-rockchip/clock.h
/openbmc/u-boot/arch/arm/include/asm/arch-rockchip/cru_rk3399.h
/openbmc/u-boot/arch/arm/include/asm/arch-rockchip/cru_rv1108.h
/openbmc/u-boot/arch/arm/include/asm/arch-rockchip/grf_rk3188.h
/openbmc/u-boot/arch/arm/mach-meson/Kconfig
/openbmc/u-boot/arch/arm/mach-meson/Makefile
/openbmc/u-boot/arch/arm/mach-meson/board-axg.c
/openbmc/u-boot/arch/arm/mach-meson/board-common.c
/openbmc/u-boot/arch/arm/mach-meson/board-gx.c
/openbmc/u-boot/arch/arm/mach-meson/sm.c
/openbmc/u-boot/arch/arm/mach-mvebu/cpu.c
/openbmc/u-boot/arch/arm/mach-mvebu/include/mach/soc.h
/openbmc/u-boot/arch/arm/mach-mvebu/serdes/a38x/sys_env_lib.h
/openbmc/u-boot/arch/arm/mach-rockchip/Kconfig
/openbmc/u-boot/arch/arm/mach-rockchip/Makefile
/openbmc/u-boot/arch/arm/mach-rockchip/rk3188-board-spl.c
/openbmc/u-boot/arch/arm/mach-rockchip/rk3399-board-spl.c
/openbmc/u-boot/arch/arm/mach-rockchip/rv1108-board.c
/openbmc/u-boot/arch/arm/mach-socfpga/include/mach/base_addr_ac5.h
/openbmc/u-boot/arch/arm/mach-socfpga/include/mach/misc.h
/openbmc/u-boot/arch/arm/mach-socfpga/misc_gen5.c
/openbmc/u-boot/arch/arm/mach-socfpga/spl_gen5.c
/openbmc/u-boot/arch/arm/mach-socfpga/wrap_sdram_config.c
/openbmc/u-boot/arch/mips/dts/mt7628a.dtsi
/openbmc/u-boot/board/amlogic/odroid-c2/MAINTAINERS
/openbmc/u-boot/board/amlogic/odroid-c2/README.nanopi-k2
/openbmc/u-boot/board/amlogic/odroid-c2/README.odroid-c2
/openbmc/u-boot/board/amlogic/odroid-c2/odroid-c2.c
/openbmc/u-boot/board/amlogic/p212/MAINTAINERS
/openbmc/u-boot/board/amlogic/p212/README.khadas-vim
/openbmc/u-boot/board/amlogic/p212/README.libretech-cc
/openbmc/u-boot/board/amlogic/p212/README.p212
/openbmc/u-boot/board/amlogic/p212/p212.c
/openbmc/u-boot/board/amlogic/q200/MAINTAINERS
/openbmc/u-boot/board/amlogic/q200/Makefile
/openbmc/u-boot/board/amlogic/q200/README.khadas-vim2
/openbmc/u-boot/board/amlogic/q200/README.q200
/openbmc/u-boot/board/amlogic/q200/q200.c
/openbmc/u-boot/board/amlogic/s400/MAINTAINERS
/openbmc/u-boot/board/amlogic/s400/Makefile
/openbmc/u-boot/board/amlogic/s400/README
/openbmc/u-boot/board/amlogic/s400/s400.c
/openbmc/u-boot/board/gardena/smart-gateway-mt7688/board.c
/openbmc/u-boot/configs/SBx81LIFKW_defconfig
/openbmc/u-boot/configs/SBx81LIFXCAT_defconfig
/openbmc/u-boot/configs/clearfog_gt_8k_defconfig
/openbmc/u-boot/configs/dreamplug_defconfig
/openbmc/u-boot/configs/ds109_defconfig
/openbmc/u-boot/configs/gardena-smart-gateway-mt7688-ram_defconfig
/openbmc/u-boot/configs/gardena-smart-gateway-mt7688_defconfig
/openbmc/u-boot/configs/khadas-vim2_defconfig
/openbmc/u-boot/configs/khadas-vim_defconfig
/openbmc/u-boot/configs/libretech-cc_defconfig
/openbmc/u-boot/configs/mvebu_db_armada8k_defconfig
/openbmc/u-boot/configs/mvebu_mcbin-88f8040_defconfig
/openbmc/u-boot/configs/nanopi-k2_defconfig
/openbmc/u-boot/configs/odroid-c2_defconfig
/openbmc/u-boot/configs/p212_defconfig
/openbmc/u-boot/configs/rock_defconfig
/openbmc/u-boot/configs/s400_defconfig
/openbmc/u-boot/doc/device-tree-bindings/spi/spi-cadence.txt
/openbmc/u-boot/drivers/clk/Makefile
/openbmc/u-boot/drivers/clk/clk_meson.c
/openbmc/u-boot/drivers/clk/clk_meson_axg.c
/openbmc/u-boot/drivers/clk/rockchip/clk_rk3399.c
/openbmc/u-boot/drivers/clk/rockchip/clk_rv1108.c
/openbmc/u-boot/drivers/core/ofnode.c
/openbmc/u-boot/drivers/gpio/dwapb_gpio.c
/openbmc/u-boot/drivers/mmc/meson_gx_mmc.c
/openbmc/u-boot/drivers/net/designware.c
/openbmc/u-boot/drivers/pinctrl/meson/Kconfig
/openbmc/u-boot/drivers/pinctrl/meson/Makefile
/openbmc/u-boot/drivers/pinctrl/meson/pinctrl-meson-axg-pmx.c
/openbmc/u-boot/drivers/pinctrl/meson/pinctrl-meson-axg.c
/openbmc/u-boot/drivers/pinctrl/meson/pinctrl-meson-axg.h
/openbmc/u-boot/drivers/pinctrl/meson/pinctrl-meson-gx-pmx.c
/openbmc/u-boot/drivers/pinctrl/meson/pinctrl-meson-gx.h
/openbmc/u-boot/drivers/pinctrl/meson/pinctrl-meson-gxbb.c
/openbmc/u-boot/drivers/pinctrl/meson/pinctrl-meson-gxl.c
/openbmc/u-boot/drivers/pinctrl/meson/pinctrl-meson.c
/openbmc/u-boot/drivers/pinctrl/meson/pinctrl-meson.h
/openbmc/u-boot/drivers/rtc/Kconfig
/openbmc/u-boot/drivers/rtc/rtc-lib.c
/openbmc/u-boot/drivers/rtc/rv3029.c
/openbmc/u-boot/drivers/spi/cadence_qspi.c
/openbmc/u-boot/drivers/video/rockchip/rk_mipi.c
/openbmc/u-boot/include/configs/dreamplug.h
/openbmc/u-boot/include/configs/ds109.h
/openbmc/u-boot/include/configs/evb_rv1108.h
/openbmc/u-boot/include/configs/meson64.h
/openbmc/u-boot/include/configs/rv1108_common.h
/openbmc/u-boot/include/dt-bindings/clock/axg-aoclkc.h
/openbmc/u-boot/include/dt-bindings/clock/axg-audio-clkc.h
/openbmc/u-boot/include/dt-bindings/clock/axg-clkc.h
/openbmc/u-boot/include/dt-bindings/clock/rv1108-cru.h
/openbmc/u-boot/include/dt-bindings/gpio/meson-axg-gpio.h
/openbmc/u-boot/include/dt-bindings/reset/amlogic,meson-axg-audio-arb.h
/openbmc/u-boot/include/dt-bindings/reset/amlogic,meson-axg-reset.h
/openbmc/u-boot/include/dt-bindings/reset/axg-aoclkc.h
Makefile
efi_selftest/Makefile
/openbmc/u-boot/scripts/config_whitelist.txt
abdc7b8a18-Nov-2018 Simon Glass <sjg@chromium.org>

tpm: Convert to use a device parameter

At present many TPM calls assume there is only one TPM in the system and
look up this TPM themselves. This is inconsistent with driver model, which
expects all

tpm: Convert to use a device parameter

At present many TPM calls assume there is only one TPM in the system and
look up this TPM themselves. This is inconsistent with driver model, which
expects all driver methods to have a device parameter. Update the code to
correct this.

Signed-off-by: Simon Glass <sjg@chromium.org>

show more ...

51f00c1718-Nov-2018 Simon Glass <sjg@chromium.org>

tpm: Export the open/close functions

At present these functions are not accessible outside the TPM library, but
in some cases we need to call them. Export them in the header file and add
a define fo

tpm: Export the open/close functions

At present these functions are not accessible outside the TPM library, but
in some cases we need to call them. Export them in the header file and add
a define for the SHA1 digest size.

Also adjust tpm_open() to call tpm_close() first so that the TPM is in a
known state before opening (e.g. by a previous phase of U-Boot).

Signed-off-by: Simon Glass <sjg@chromium.org>

show more ...


/openbmc/u-boot/MAINTAINERS
/openbmc/u-boot/Makefile
/openbmc/u-boot/arch/Kconfig
/openbmc/u-boot/arch/arm/Kconfig
/openbmc/u-boot/arch/arm/Makefile
/openbmc/u-boot/arch/arm/cpu/armv7/start.S
/openbmc/u-boot/arch/arm/dts/Makefile
/openbmc/u-boot/arch/arm/dts/am335x-chiliboard-u-boot.dtsi
/openbmc/u-boot/arch/arm/dts/am335x-chiliboard.dts
/openbmc/u-boot/arch/arm/dts/am335x-chilisom.dtsi
/openbmc/u-boot/arch/arm/dts/mt7623.dtsi
/openbmc/u-boot/arch/arm/dts/mt7623n-bananapi-bpi-r2.dts
/openbmc/u-boot/arch/arm/dts/mt7629-rfb-u-boot.dtsi
/openbmc/u-boot/arch/arm/dts/mt7629-rfb.dts
/openbmc/u-boot/arch/arm/dts/mt7629.dtsi
/openbmc/u-boot/arch/arm/include/asm/arch-mediatek/gpio.h
/openbmc/u-boot/arch/arm/include/asm/arch-mediatek/misc.h
/openbmc/u-boot/arch/arm/mach-k3/Makefile
/openbmc/u-boot/arch/arm/mach-k3/lowlevel_init.S
/openbmc/u-boot/arch/arm/mach-mediatek/Kconfig
/openbmc/u-boot/arch/arm/mach-mediatek/Makefile
/openbmc/u-boot/arch/arm/mach-mediatek/cpu.c
/openbmc/u-boot/arch/arm/mach-mediatek/init.h
/openbmc/u-boot/arch/arm/mach-mediatek/mt7623/Makefile
/openbmc/u-boot/arch/arm/mach-mediatek/mt7623/init.c
/openbmc/u-boot/arch/arm/mach-mediatek/mt7623/lowlevel_init.S
/openbmc/u-boot/arch/arm/mach-mediatek/mt7623/preloader.h
/openbmc/u-boot/arch/arm/mach-mediatek/mt7629/Makefile
/openbmc/u-boot/arch/arm/mach-mediatek/mt7629/init.c
/openbmc/u-boot/arch/arm/mach-mediatek/mt7629/lowlevel_init.S
/openbmc/u-boot/arch/arm/mach-mediatek/spl.c
/openbmc/u-boot/arch/arm/mach-stm32mp/cpu.c
/openbmc/u-boot/arch/arm/mach-sunxi/Kconfig
/openbmc/u-boot/arch/arm/mach-sunxi/dram_sun8i_a33.c
/openbmc/u-boot/arch/nds32/cpu/n1213/start.S
/openbmc/u-boot/arch/powerpc/include/asm/spl.h
/openbmc/u-boot/arch/riscv/Kconfig
/openbmc/u-boot/arch/riscv/Makefile
/openbmc/u-boot/arch/riscv/config.mk
/openbmc/u-boot/arch/riscv/cpu/ax25/Kconfig
/openbmc/u-boot/arch/riscv/cpu/ax25/Makefile
/openbmc/u-boot/arch/riscv/cpu/ax25/cache.c
/openbmc/u-boot/arch/riscv/cpu/ax25/cpu.c
/openbmc/u-boot/arch/riscv/cpu/cpu.c
/openbmc/u-boot/arch/riscv/cpu/qemu/cpu.c
/openbmc/u-boot/arch/riscv/cpu/start.S
/openbmc/u-boot/arch/riscv/dts/Makefile
/openbmc/u-boot/arch/riscv/dts/ae350.dts
/openbmc/u-boot/arch/riscv/dts/ae350_32.dts
/openbmc/u-boot/arch/riscv/dts/ae350_64.dts
/openbmc/u-boot/arch/riscv/include/asm/barrier.h
/openbmc/u-boot/arch/riscv/include/asm/cache.h
/openbmc/u-boot/arch/riscv/include/asm/io.h
/openbmc/u-boot/arch/riscv/include/asm/posix_types.h
/openbmc/u-boot/arch/riscv/include/asm/types.h
/openbmc/u-boot/arch/riscv/lib/bootm.c
/openbmc/u-boot/arch/riscv/lib/cache.c
/openbmc/u-boot/arch/riscv/lib/interrupts.c
/openbmc/u-boot/arch/riscv/lib/setjmp.S
/openbmc/u-boot/arch/sandbox/cpu/eth-raw-os.c
/openbmc/u-boot/arch/sandbox/cpu/os.c
/openbmc/u-boot/arch/sandbox/cpu/sdl.c
/openbmc/u-boot/arch/sandbox/cpu/spl.c
/openbmc/u-boot/arch/sandbox/cpu/start.c
/openbmc/u-boot/arch/sandbox/cpu/u-boot-spl.lds
/openbmc/u-boot/arch/sandbox/dts/sandbox.dts
/openbmc/u-boot/arch/sandbox/dts/sandbox64.dts
/openbmc/u-boot/arch/sandbox/dts/sandbox_pmic.dtsi
/openbmc/u-boot/arch/sandbox/dts/test.dts
/openbmc/u-boot/arch/sandbox/include/asm/handoff.h
/openbmc/u-boot/arch/sandbox/include/asm/state.h
/openbmc/u-boot/arch/sandbox/include/asm/test.h
/openbmc/u-boot/board/AndesTech/ax25-ae350/MAINTAINERS
/openbmc/u-boot/board/armltd/integrator/README
/openbmc/u-boot/board/emulation/qemu-riscv/Kconfig
/openbmc/u-boot/board/emulation/qemu-riscv/qemu-riscv.c
/openbmc/u-boot/board/grinn/chiliboard/board.c
/openbmc/u-boot/board/mediatek/mt7623/Kconfig
/openbmc/u-boot/board/mediatek/mt7623/MAINTAINERS
/openbmc/u-boot/board/mediatek/mt7623/Makefile
/openbmc/u-boot/board/mediatek/mt7623/mt7623_rfb.c
/openbmc/u-boot/board/mediatek/mt7629/Kconfig
/openbmc/u-boot/board/mediatek/mt7629/MAINTAINERS
/openbmc/u-boot/board/mediatek/mt7629/Makefile
/openbmc/u-boot/board/mediatek/mt7629/mt7629_rfb.c
/openbmc/u-boot/board/sandbox/README.sandbox
/openbmc/u-boot/cmd/Makefile
/openbmc/u-boot/cmd/bootmenu.c
/openbmc/u-boot/cmd/fdt.c
/openbmc/u-boot/cmd/host.c
/openbmc/u-boot/cmd/sb.c
/openbmc/u-boot/common/Kconfig
/openbmc/u-boot/common/Makefile
/openbmc/u-boot/common/bloblist.c
/openbmc/u-boot/common/board_f.c
/openbmc/u-boot/common/console.c
/openbmc/u-boot/common/image.c
/openbmc/u-boot/common/init/Makefile
/openbmc/u-boot/common/init/handoff.c
/openbmc/u-boot/common/malloc_simple.c
/openbmc/u-boot/common/spl/Kconfig
/openbmc/u-boot/common/spl/spl.c
/openbmc/u-boot/common/usb.c
/openbmc/u-boot/common/usb_hub.c
/openbmc/u-boot/common/usb_kbd.c
/openbmc/u-boot/common/usb_storage.c
/openbmc/u-boot/configs/a25-ae350_32_defconfig
/openbmc/u-boot/configs/am335x_evm_defconfig
/openbmc/u-boot/configs/ax25-ae350_64_defconfig
/openbmc/u-boot/configs/chiliboard_defconfig
/openbmc/u-boot/configs/mt7623n_bpir2_defconfig
/openbmc/u-boot/configs/mt7629_rfb_defconfig
/openbmc/u-boot/configs/qemu-riscv32_defconfig
/openbmc/u-boot/configs/qemu-riscv64_defconfig
/openbmc/u-boot/configs/sandbox_spl_defconfig
/openbmc/u-boot/configs/vexpress_aemv8a_dram_defconfig
/openbmc/u-boot/configs/vexpress_aemv8a_juno_defconfig
/openbmc/u-boot/configs/vexpress_aemv8a_semi_defconfig
/openbmc/u-boot/configs/vexpress_ca15_tc2_defconfig
/openbmc/u-boot/configs/vexpress_ca5x2_defconfig
/openbmc/u-boot/configs/vexpress_ca9x4_defconfig
/openbmc/u-boot/doc/README.bloblist
/openbmc/u-boot/doc/README.distro
/openbmc/u-boot/doc/README.mediatek
/openbmc/u-boot/doc/README.trace
/openbmc/u-boot/drivers/Makefile
/openbmc/u-boot/drivers/clk/Makefile
/openbmc/u-boot/drivers/clk/clk_vexpress_osc.c
/openbmc/u-boot/drivers/clk/mediatek/Makefile
/openbmc/u-boot/drivers/clk/mediatek/clk-mt7623.c
/openbmc/u-boot/drivers/clk/mediatek/clk-mt7629.c
/openbmc/u-boot/drivers/clk/mediatek/clk-mtk.c
/openbmc/u-boot/drivers/clk/mediatek/clk-mtk.h
/openbmc/u-boot/drivers/core/device.c
/openbmc/u-boot/drivers/core/uclass.c
/openbmc/u-boot/drivers/i2c/i2c-emul-uclass.c
/openbmc/u-boot/drivers/i2c/sandbox_i2c.c
/openbmc/u-boot/drivers/misc/altera_sysid.c
/openbmc/u-boot/drivers/misc/misc_sandbox.c
/openbmc/u-boot/drivers/misc/rockchip-efuse.c
/openbmc/u-boot/drivers/misc/stm32mp_fuse.c
/openbmc/u-boot/drivers/mmc/Kconfig
/openbmc/u-boot/drivers/mmc/Makefile
/openbmc/u-boot/drivers/mmc/mtk-sd.c
/openbmc/u-boot/drivers/mmc/sunxi_mmc.c
/openbmc/u-boot/drivers/mtd/spi/sandbox.c
/openbmc/u-boot/drivers/mtd/spi/sf-uclass.c
/openbmc/u-boot/drivers/mtd/spi/sf_internal.h
/openbmc/u-boot/drivers/mtd/spi/sf_probe.c
/openbmc/u-boot/drivers/mtd/spi/spi_flash.c
/openbmc/u-boot/drivers/net/sun8i_emac.c
/openbmc/u-boot/drivers/pinctrl/Kconfig
/openbmc/u-boot/drivers/pinctrl/Makefile
/openbmc/u-boot/drivers/pinctrl/mediatek/Kconfig
/openbmc/u-boot/drivers/pinctrl/mediatek/Makefile
/openbmc/u-boot/drivers/pinctrl/mediatek/pinctrl-mt7623.c
/openbmc/u-boot/drivers/pinctrl/mediatek/pinctrl-mt7629.c
/openbmc/u-boot/drivers/pinctrl/mediatek/pinctrl-mtk-common.c
/openbmc/u-boot/drivers/pinctrl/mediatek/pinctrl-mtk-common.h
/openbmc/u-boot/drivers/power/domain/Kconfig
/openbmc/u-boot/drivers/power/domain/Makefile
/openbmc/u-boot/drivers/power/domain/mtk-power-domain.c
/openbmc/u-boot/drivers/power/pmic/act8846.c
/openbmc/u-boot/drivers/power/pmic/as3722.c
/openbmc/u-boot/drivers/power/pmic/as3722_gpio.c
/openbmc/u-boot/drivers/power/pmic/i2c_pmic_emul.c
/openbmc/u-boot/drivers/power/pmic/lp873x.c
/openbmc/u-boot/drivers/power/pmic/lp87565.c
/openbmc/u-boot/drivers/power/pmic/max77686.c
/openbmc/u-boot/drivers/power/pmic/max8997.c
/openbmc/u-boot/drivers/power/pmic/max8998.c
/openbmc/u-boot/drivers/power/pmic/mc34708.c
/openbmc/u-boot/drivers/power/pmic/palmas.c
/openbmc/u-boot/drivers/power/pmic/pfuze100.c
/openbmc/u-boot/drivers/power/pmic/rk8xx.c
/openbmc/u-boot/drivers/power/pmic/rn5t567.c
/openbmc/u-boot/drivers/power/pmic/s2mps11.c
/openbmc/u-boot/drivers/power/pmic/s5m8767.c
/openbmc/u-boot/drivers/power/pmic/sandbox.c
/openbmc/u-boot/drivers/power/pmic/stpmu1.c
/openbmc/u-boot/drivers/power/pmic/tps65090.c
/openbmc/u-boot/drivers/ram/Makefile
/openbmc/u-boot/drivers/ram/mediatek/Makefile
/openbmc/u-boot/drivers/ram/mediatek/ddr3-mt7629.c
/openbmc/u-boot/drivers/rtc/rtc-uclass.c
/openbmc/u-boot/drivers/serial/Kconfig
/openbmc/u-boot/drivers/serial/Makefile
/openbmc/u-boot/drivers/serial/serial_mtk.c
/openbmc/u-boot/drivers/sound/sound-i2s.c
/openbmc/u-boot/drivers/sound/sound.c
/openbmc/u-boot/drivers/timer/Kconfig
/openbmc/u-boot/drivers/timer/Makefile
/openbmc/u-boot/drivers/timer/mtk_timer.c
/openbmc/u-boot/drivers/tpm/tpm_tis_lpc.c
/openbmc/u-boot/drivers/usb/Kconfig
/openbmc/u-boot/drivers/usb/common/Makefile
/openbmc/u-boot/drivers/usb/dwc3/core.c
/openbmc/u-boot/drivers/usb/dwc3/core.h
/openbmc/u-boot/drivers/usb/eth/usb_ether.c
/openbmc/u-boot/drivers/usb/gadget/ci_udc.c
/openbmc/u-boot/drivers/usb/gadget/ether.c
/openbmc/u-boot/drivers/usb/host/Makefile
/openbmc/u-boot/drivers/usb/host/dwc2.c
/openbmc/u-boot/drivers/usb/host/ehci-atmel.c
/openbmc/u-boot/drivers/usb/host/ehci-fsl.c
/openbmc/u-boot/drivers/usb/host/ehci-hcd.c
/openbmc/u-boot/drivers/usb/host/ehci-marvell.c
/openbmc/u-boot/drivers/usb/host/ehci-mx6.c
/openbmc/u-boot/drivers/usb/host/ehci-pci.c
/openbmc/u-boot/drivers/usb/host/ehci-vf.c
/openbmc/u-boot/drivers/usb/host/ohci-hcd.c
/openbmc/u-boot/drivers/usb/host/ohci.h
/openbmc/u-boot/drivers/usb/host/xhci-dwc3.c
/openbmc/u-boot/drivers/usb/host/xhci-fsl.c
/openbmc/u-boot/drivers/usb/host/xhci-mem.c
/openbmc/u-boot/drivers/usb/host/xhci.c
/openbmc/u-boot/drivers/usb/host/xhci.h
/openbmc/u-boot/drivers/usb/musb-new/musb_uboot.c
/openbmc/u-boot/drivers/usb/musb-new/omap2430.c
/openbmc/u-boot/drivers/usb/musb-new/ti-musb.c
/openbmc/u-boot/drivers/usb/musb-new/usb-compat.h
/openbmc/u-boot/drivers/video/vidconsole-uclass.c
/openbmc/u-boot/drivers/watchdog/Kconfig
/openbmc/u-boot/drivers/watchdog/Makefile
/openbmc/u-boot/drivers/watchdog/mtk_wdt.c
/openbmc/u-boot/dts/Makefile
/openbmc/u-boot/include/asm-generic/global_data.h
/openbmc/u-boot/include/bloblist.h
/openbmc/u-boot/include/common.h
/openbmc/u-boot/include/config_distro_bootcmd.h
/openbmc/u-boot/include/configs/am65x_evm.h
/openbmc/u-boot/include/configs/da850evm.h
/openbmc/u-boot/include/configs/edminiv2.h
/openbmc/u-boot/include/configs/km/km_arm.h
/openbmc/u-boot/include/configs/mt7623.h
/openbmc/u-boot/include/configs/mt7629.h
/openbmc/u-boot/include/configs/mv-common.h
/openbmc/u-boot/include/configs/qemu-riscv.h
/openbmc/u-boot/include/configs/vexpress_common.h
/openbmc/u-boot/include/dm/device.h
/openbmc/u-boot/include/dm/ofnode.h
/openbmc/u-boot/include/dm/uclass-id.h
/openbmc/u-boot/include/dm/uclass-internal.h
/openbmc/u-boot/include/dt-bindings/clock/mt7623-clk.h
/openbmc/u-boot/include/dt-bindings/clock/mt7629-clk.h
/openbmc/u-boot/include/dt-bindings/power/mt7623-power.h
/openbmc/u-boot/include/dt-bindings/power/mt7629-power.h
/openbmc/u-boot/include/environment/ti/boot.h
/openbmc/u-boot/include/handoff.h
/openbmc/u-boot/include/i2c.h
/openbmc/u-boot/include/image.h
/openbmc/u-boot/include/log.h
/openbmc/u-boot/include/malloc.h
/openbmc/u-boot/include/misc.h
/openbmc/u-boot/include/sound.h
/openbmc/u-boot/include/spi_flash.h
/openbmc/u-boot/include/spl.h
/openbmc/u-boot/include/test/suites.h
/openbmc/u-boot/include/tpm-common.h
/openbmc/u-boot/include/usb.h
tpm-utils.h
/openbmc/u-boot/scripts/Makefile.spl
/openbmc/u-boot/scripts/config_whitelist.txt
/openbmc/u-boot/test/Makefile
/openbmc/u-boot/test/README
/openbmc/u-boot/test/bloblist.c
/openbmc/u-boot/test/cmd_ut.c
/openbmc/u-boot/test/dm/i2c.c
/openbmc/u-boot/test/dm/misc.c
/openbmc/u-boot/test/dm/rtc.c
/openbmc/u-boot/test/dm/sf.c
/openbmc/u-boot/test/dm/test-fdt.c
/openbmc/u-boot/test/dm/video.c
/openbmc/u-boot/test/fs/fs-test.sh
/openbmc/u-boot/test/py/tests/test_fit.py
/openbmc/u-boot/test/py/tests/test_fs/test_basic.py
/openbmc/u-boot/test/py/tests/test_fs/test_ext.py
/openbmc/u-boot/test/py/tests/test_fs/test_mkdir.py
/openbmc/u-boot/test/py/tests/test_fs/test_unlink.py
/openbmc/u-boot/test/py/tests/test_handoff.py
/openbmc/u-boot/test/py/tests/test_ofplatdata.py
/openbmc/u-boot/test/py/tests/test_vboot.py
/openbmc/u-boot/test/py/u_boot_console_base.py
/openbmc/u-boot/test/py/u_boot_console_sandbox.py
/openbmc/u-boot/test/run
/openbmc/u-boot/tools/.gitignore
/openbmc/u-boot/tools/Makefile
/openbmc/u-boot/tools/file2include.c
/openbmc/u-boot/tools/mtk_image.c
/openbmc/u-boot/tools/mtk_image.h
96794a3e06-Nov-2018 Simon Glass <sjg@chromium.org>

string: Include the config header

At present the config header is not included in this file, but it does use
a CONFIG option. Fix it.

Signed-off-by: Simon Glass <sjg@chromium.org>

048c6e8906-Nov-2018 Simon Glass <sjg@chromium.org>

spl: lz4: Allow use of lz4 compression in SPL

In some cases U-Boot is compressed and it is useful to be able to
decompress it in SPL. Add a Kconfig and Makefile change to allow this.
Note that this

spl: lz4: Allow use of lz4 compression in SPL

In some cases U-Boot is compressed and it is useful to be able to
decompress it in SPL. Add a Kconfig and Makefile change to allow this.
Note that this does not actually implement decompression.

Signed-off-by: Simon Glass <sjg@chromium.org>

show more ...

410d9b6418-Oct-2018 Marek Vasut <marek.vasut@gmail.com>

fdt: Fix uncompress_blob() for U-Boot proper

When U-Boot proper is compiled with CONFIG_MULTI_DTB_FIT and tries
to call uncompress_blob(), it fails with -ENOTSUPP. This is because
the full implement

fdt: Fix uncompress_blob() for U-Boot proper

When U-Boot proper is compiled with CONFIG_MULTI_DTB_FIT and tries
to call uncompress_blob(), it fails with -ENOTSUPP. This is because
the full implementation of this function which includes compression
is available only in SPL. In U-Boot proper or if the compression is
not enabled, the blob is not compressed and thus can be passed to
locate_dtb_in_fit() in fdtdec_setup() without any changes. Pass the
blob without any changes if compression is not enabled instead of
failing.

Signed-off-by: Marek Vasut <marek.vasut+renesas@gmail.com>
Cc: Michal Simek <michal.simek@xilinx.com>
Cc: Tom Rini <trini@konsulko.com>
Reviewed-by: Simon Glass <sjg@chromium.org>

show more ...


/openbmc/u-boot/arch/arm/dts/Makefile
/openbmc/u-boot/arch/arm/dts/armada-8040-clearfog-gt-8k.dts
/openbmc/u-boot/arch/arm/include/asm/armv8/mmu.h
/openbmc/u-boot/arch/arm/mach-mvebu/arm64-common.c
/openbmc/u-boot/arch/arm/mach-tegra/tegra186/nvtboot_mem.c
/openbmc/u-boot/arch/mips/Kconfig
/openbmc/u-boot/arch/mips/config.mk
/openbmc/u-boot/arch/mips/dts/gardena-smart-gateway-mt7688.dts
/openbmc/u-boot/arch/mips/dts/linkit-smart-7688.dts
/openbmc/u-boot/arch/mips/dts/mt7628a.dtsi
/openbmc/u-boot/arch/mips/include/asm/mach-generic/spaces.h
/openbmc/u-boot/arch/mips/include/asm/u-boot-mips.h
/openbmc/u-boot/arch/mips/mach-mt7620/Kconfig
/openbmc/u-boot/arch/mips/mach-mt7620/cpu.c
/openbmc/u-boot/arch/mips/mach-mt7620/lowlevel_init.S
/openbmc/u-boot/arch/nds32/config.mk
/openbmc/u-boot/arch/riscv/config.mk
/openbmc/u-boot/arch/riscv/include/asm/csr.h
/openbmc/u-boot/arch/sandbox/cpu/cpu.c
/openbmc/u-boot/arch/sh/config.mk
/openbmc/u-boot/board/gardena/smart-gateway-mt7688/board.c
/openbmc/u-boot/board/sandbox/README.sandbox
/openbmc/u-boot/board/seeed/linkit-smart-7688/board.c
/openbmc/u-boot/board/solidrun/clearfog/MAINTAINERS
/openbmc/u-boot/board/sunxi/MAINTAINERS
/openbmc/u-boot/cmd/adc.c
/openbmc/u-boot/config.mk
/openbmc/u-boot/configs/clearfog_gt_8k_defconfig
/openbmc/u-boot/configs/gardena-smart-gateway-mt7688-ram_defconfig
/openbmc/u-boot/configs/gardena-smart-gateway-mt7688_defconfig
/openbmc/u-boot/configs/linkit-smart-7688-ram_defconfig
/openbmc/u-boot/configs/linkit-smart-7688_defconfig
/openbmc/u-boot/drivers/adc/adc-uclass.c
/openbmc/u-boot/drivers/clk/clk_meson.c
/openbmc/u-boot/drivers/core/dump.c
/openbmc/u-boot/drivers/gpio/Kconfig
/openbmc/u-boot/drivers/gpio/Makefile
/openbmc/u-boot/drivers/gpio/mt7621_gpio.c
/openbmc/u-boot/drivers/pci/pci-uclass.c
/openbmc/u-boot/drivers/watchdog/Kconfig
/openbmc/u-boot/drivers/watchdog/Makefile
/openbmc/u-boot/drivers/watchdog/mt7621_wdt.c
/openbmc/u-boot/examples/standalone/Makefile
/openbmc/u-boot/fs/fat/fat.c
/openbmc/u-boot/include/adc.h
/openbmc/u-boot/include/common.h
/openbmc/u-boot/include/configs/db-88f6820-amc.h
/openbmc/u-boot/include/configs/db-88f6820-gp.h
/openbmc/u-boot/include/configs/gardena-smart-gateway-mt7688.h
/openbmc/u-boot/include/configs/linkit-smart-7688.h
/openbmc/u-boot/include/linux/const.h
/openbmc/u-boot/include/linux/sizes.h
fdtdec.c
/openbmc/u-boot/test/dm/adc.c
/openbmc/u-boot/test/py/tests/test_bind.py
21ebf2ad07-Nov-2018 Konrad Beckmann <konrad.beckmann@gmail.com>

fdt_region: Ensure that depth never goes below -1

A specially crafted FIT image makes it possible to overflow the stack
with controlled values when using the verified boot feature. Depending
on the

fdt_region: Ensure that depth never goes below -1

A specially crafted FIT image makes it possible to overflow the stack
with controlled values when using the verified boot feature. Depending
on the memory layout, this could be used to overwrite configuration
variables on the heap and setting them to 0, e.g. disable signature
verification, thus bypassing it.

This change fixes a bug in fdt_find_regions where the fdt structure is
parsed. A lower value than -1 of depth can lead to a buffer underflow
write on the stack.

Signed-off-by: Konrad Beckmann <konrad.beckmann@gmail.com>
Reviewed-by: Simon Glass <sjg@chromium.org>

show more ...


/openbmc/u-boot/.travis.yml
/openbmc/u-boot/arch/arm/Kconfig
/openbmc/u-boot/arch/arm/cpu/armv8/Kconfig
/openbmc/u-boot/arch/arm/cpu/armv8/psci.S
/openbmc/u-boot/arch/arm/dts/Makefile
/openbmc/u-boot/arch/arm/dts/am3517-evm.dts
/openbmc/u-boot/arch/arm/dts/am3517-som.dtsi
/openbmc/u-boot/arch/arm/dts/am3517.dtsi
/openbmc/u-boot/arch/arm/dts/at91sam9260-smartweb.dts
/openbmc/u-boot/arch/arm/dts/at91sam9g20-taurus.dts
/openbmc/u-boot/arch/arm/dts/bcm6858.dtsi
/openbmc/u-boot/arch/arm/dts/bcm968580xref.dts
/openbmc/u-boot/arch/arm/dts/k3-am65-main.dtsi
/openbmc/u-boot/arch/arm/dts/k3-am65-mcu.dtsi
/openbmc/u-boot/arch/arm/dts/k3-am65-wakeup.dtsi
/openbmc/u-boot/arch/arm/dts/k3-am65.dtsi
/openbmc/u-boot/arch/arm/dts/k3-am654-base-board-ddr4-1600MHz.dtsi
/openbmc/u-boot/arch/arm/dts/k3-am654-base-board-u-boot.dtsi
/openbmc/u-boot/arch/arm/dts/k3-am654-ddr.dtsi
/openbmc/u-boot/arch/arm/dts/k3-am654-r5-base-board.dts
/openbmc/u-boot/arch/arm/dts/sun50i-a64-amarula-relic.dts
/openbmc/u-boot/arch/arm/dts/sun50i-a64-bananapi-m64.dts
/openbmc/u-boot/arch/arm/dts/sun50i-a64-nanopi-a64.dts
/openbmc/u-boot/arch/arm/dts/sun50i-a64-olinuxino.dts
/openbmc/u-boot/arch/arm/dts/sun50i-a64-orangepi-win.dts
/openbmc/u-boot/arch/arm/dts/sun50i-a64-pine64-lts.dts
/openbmc/u-boot/arch/arm/dts/sun50i-a64-pine64.dts
/openbmc/u-boot/arch/arm/dts/sun50i-a64-pinebook-u-boot.dtsi
/openbmc/u-boot/arch/arm/dts/sun50i-a64-pinebook.dts
/openbmc/u-boot/arch/arm/dts/sun50i-a64-sopine-baseboard.dts
/openbmc/u-boot/arch/arm/dts/sun50i-a64-sopine.dtsi
/openbmc/u-boot/arch/arm/dts/sun50i-a64.dtsi
/openbmc/u-boot/arch/arm/dts/sun50i-h5-orangepi-pc2.dts
/openbmc/u-boot/arch/arm/dts/sun50i-h5-orangepi-zero-plus.dts
/openbmc/u-boot/arch/arm/dts/sun50i-h6-orangepi-lite2.dts
/openbmc/u-boot/arch/arm/dts/sun50i-h6-orangepi-one-plus.dts
/openbmc/u-boot/arch/arm/dts/sun50i-h6-orangepi.dtsi
/openbmc/u-boot/arch/arm/dts/sun8i-h2-plus-bananapi-m2-zero.dts
/openbmc/u-boot/arch/arm/dts/sun8i-h3.dtsi
/openbmc/u-boot/arch/arm/dts/sunxi-h3-h5.dtsi
/openbmc/u-boot/arch/arm/include/asm/arch-sunxi/gpio.h
/openbmc/u-boot/arch/arm/include/asm/arch-sunxi/mmc.h
/openbmc/u-boot/arch/arm/include/asm/macro.h
/openbmc/u-boot/arch/arm/include/asm/system.h
/openbmc/u-boot/arch/arm/lib/memcpy.S
/openbmc/u-boot/arch/arm/mach-at91/include/mach/at91_wdt.h
/openbmc/u-boot/arch/arm/mach-at91/spl.c
/openbmc/u-boot/arch/arm/mach-at91/spl_at91.c
/openbmc/u-boot/arch/arm/mach-at91/spl_atmel.c
/openbmc/u-boot/arch/arm/mach-k3/Kconfig
/openbmc/u-boot/arch/arm/mach-k3/Makefile
/openbmc/u-boot/arch/arm/mach-k3/am6_init.c
/openbmc/u-boot/arch/arm/mach-k3/common.c
/openbmc/u-boot/arch/arm/mach-k3/common.h
/openbmc/u-boot/arch/arm/mach-k3/config.mk
/openbmc/u-boot/arch/arm/mach-k3/include/mach/sys_proto.h
/openbmc/u-boot/arch/arm/mach-k3/r5_mpu.c
/openbmc/u-boot/arch/arm/mach-sunxi/Kconfig
/openbmc/u-boot/arch/arm/mach-sunxi/clock_sun6i.c
/openbmc/u-boot/arch/sandbox/dts/test.dts
/openbmc/u-boot/arch/x86/cpu/baytrail/cpu.c
/openbmc/u-boot/arch/x86/cpu/broadwell/cpu.c
/openbmc/u-boot/arch/x86/cpu/cpu_x86.c
/openbmc/u-boot/arch/x86/cpu/ivybridge/model_206ax.c
/openbmc/u-boot/board/broadcom/bcm968580xref/Kconfig
/openbmc/u-boot/board/broadcom/bcm968580xref/MAINTAINERS
/openbmc/u-boot/board/broadcom/bcm968580xref/Makefile
/openbmc/u-boot/board/broadcom/bcm968580xref/bcm968580xref.c
/openbmc/u-boot/board/sunxi/MAINTAINERS
/openbmc/u-boot/board/sunxi/board.c
/openbmc/u-boot/board/ti/am65x/Kconfig
/openbmc/u-boot/board/ti/am65x/MAINTAINERS
/openbmc/u-boot/board/ti/am65x/README
/openbmc/u-boot/cmd/Kconfig
/openbmc/u-boot/cmd/Makefile
/openbmc/u-boot/cmd/bdinfo.c
/openbmc/u-boot/cmd/pinmux.c
/openbmc/u-boot/common/board_f.c
/openbmc/u-boot/common/image-sig.c
/openbmc/u-boot/configs/am3517_evm_defconfig
/openbmc/u-boot/configs/am65x_evm_r5_defconfig
/openbmc/u-boot/configs/bananapi_m2_zero_defconfig
/openbmc/u-boot/configs/bcm968580_ram_defconfig
/openbmc/u-boot/configs/clearfog_defconfig
/openbmc/u-boot/configs/corvus_defconfig
/openbmc/u-boot/configs/imx8qxp_mek_defconfig
/openbmc/u-boot/configs/omap35_logic_defconfig
/openbmc/u-boot/configs/omap35_logic_somlv_defconfig
/openbmc/u-boot/configs/omap3_logic_defconfig
/openbmc/u-boot/configs/omap3_logic_somlv_defconfig
/openbmc/u-boot/configs/orangepi_lite2_defconfig
/openbmc/u-boot/configs/picosam9g45_defconfig
/openbmc/u-boot/configs/pine64-lts_defconfig
/openbmc/u-boot/configs/pinebook_defconfig
/openbmc/u-boot/configs/smartweb_defconfig
/openbmc/u-boot/configs/taurus_defconfig
/openbmc/u-boot/configs/wb45n_defconfig
/openbmc/u-boot/doc/README.at91
/openbmc/u-boot/doc/README.watchdog
/openbmc/u-boot/doc/device-tree-bindings/ram/k3-am654-ddrss.txt
/openbmc/u-boot/doc/device-tree-bindings/w1-eeprom/ds2502.txt
/openbmc/u-boot/doc/driver-model/README.txt
/openbmc/u-boot/drivers/clk/clk-uclass.c
/openbmc/u-boot/drivers/core/uclass.c
/openbmc/u-boot/drivers/gpio/pca953x_gpio.c
/openbmc/u-boot/drivers/gpio/stm32f7_gpio.c
/openbmc/u-boot/drivers/i2c/stm32f7_i2c.c
/openbmc/u-boot/drivers/misc/fs_loader.c
/openbmc/u-boot/drivers/mmc/sunxi_mmc.c
/openbmc/u-boot/drivers/mtd/nand/raw/lpc32xx_nand_mlc.c
/openbmc/u-boot/drivers/mtd/nand/raw/lpc32xx_nand_slc.c
/openbmc/u-boot/drivers/pinctrl/pinctrl-sandbox.c
/openbmc/u-boot/drivers/pinctrl/pinctrl-uclass.c
/openbmc/u-boot/drivers/pinctrl/pinctrl_stm32.c
/openbmc/u-boot/drivers/ram/Kconfig
/openbmc/u-boot/drivers/ram/Makefile
/openbmc/u-boot/drivers/ram/k3-am654-ddrss.c
/openbmc/u-boot/drivers/ram/k3-am654-ddrss.h
/openbmc/u-boot/drivers/serial/Kconfig
/openbmc/u-boot/drivers/serial/Makefile
/openbmc/u-boot/drivers/serial/ns16550.c
/openbmc/u-boot/drivers/serial/serial_bcm6858.c
/openbmc/u-boot/drivers/video/bridge/video-bridge-uclass.c
/openbmc/u-boot/drivers/video/simplefb.c
/openbmc/u-boot/drivers/video/sunxi/lcdc.c
/openbmc/u-boot/drivers/w1-eeprom/Kconfig
/openbmc/u-boot/drivers/w1-eeprom/Makefile
/openbmc/u-boot/drivers/w1-eeprom/ds2502.c
/openbmc/u-boot/drivers/watchdog/Kconfig
/openbmc/u-boot/drivers/watchdog/Makefile
/openbmc/u-boot/drivers/watchdog/ast_wdt.c
/openbmc/u-boot/drivers/watchdog/at91sam9_wdt.c
/openbmc/u-boot/fs/Makefile
/openbmc/u-boot/include/config_distro_bootcmd.h
/openbmc/u-boot/include/configs/am3517_evm.h
/openbmc/u-boot/include/configs/am65x_evm.h
/openbmc/u-boot/include/configs/broadcom_bcm968580xref.h
/openbmc/u-boot/include/configs/picosam9g45.h
/openbmc/u-boot/include/configs/smartweb.h
/openbmc/u-boot/include/configs/taurus.h
/openbmc/u-boot/include/configs/ti_armv7_common.h
/openbmc/u-boot/include/dm/pinctrl.h
/openbmc/u-boot/include/dm/uclass.h
/openbmc/u-boot/include/serial.h
/openbmc/u-boot/include/w1.h
libfdt/fdt_region.c
/openbmc/u-boot/scripts/config_whitelist.txt
/openbmc/u-boot/test/py/tests/test_pinmux.py
/openbmc/u-boot/tools/k3_x509template.txt
ef329a6a24-Oct-2018 Bin Meng <bmeng.cn@gmail.com>

sysreset: Remove DM_FLAG_PRE_RELOC flag in various drivers

When a driver declares DM_FLAG_PRE_RELOC flag, it wishes to be
bound before relocation. However due to a bug in the DM core,
the flag only

sysreset: Remove DM_FLAG_PRE_RELOC flag in various drivers

When a driver declares DM_FLAG_PRE_RELOC flag, it wishes to be
bound before relocation. However due to a bug in the DM core,
the flag only takes effect when devices are statically declared
via U_BOOT_DEVICE(). This bug has been fixed recently by commit
"dm: core: Respect drivers with the DM_FLAG_PRE_RELOC flag in
lists_bind_fdt()", but with the fix, it has a side effect that
all existing drivers that declared DM_FLAG_PRE_RELOC flag will
be bound before relocation now. This may expose potential boot
failure on some boards due to insufficient memory during the
pre-relocation stage.

To mitigate this potential impact, the following changes are
implemented:

- Remove DM_FLAG_PRE_RELOC flag in the driver, if the driver
only supports configuration from device tree (OF_CONTROL)
- Keep DM_FLAG_PRE_RELOC flag in the driver only if the device
is statically declared via U_BOOT_DEVICE()
- Surround DM_FLAG_PRE_RELOC flag with OF_CONTROL check, for
drivers that support both statically declared devices and
configuration from device tree

Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
Reviewed-by: Simon Glass <sjg@chromium.org>

show more ...


/openbmc/u-boot/arch/Kconfig
/openbmc/u-boot/arch/arm/Kconfig
/openbmc/u-boot/arch/arm/mach-stm32mp/bsec.c
/openbmc/u-boot/arch/sandbox/dts/test.dts
/openbmc/u-boot/arch/x86/cpu/tangier/sysreset.c
/openbmc/u-boot/arch/x86/include/asm/io.h
/openbmc/u-boot/board/emulation/qemu-arm/Kconfig
/openbmc/u-boot/board/emulation/qemu-arm/qemu-arm.c
/openbmc/u-boot/board/emulation/qemu-x86/Kconfig
/openbmc/u-boot/configs/qemu_arm64_defconfig
/openbmc/u-boot/configs/qemu_arm_defconfig
/openbmc/u-boot/configs/sandbox_noblk_defconfig
/openbmc/u-boot/doc/README.virtio
/openbmc/u-boot/drivers/clk/altera/clk-arria10.c
/openbmc/u-boot/drivers/clk/clk_pic32.c
/openbmc/u-boot/drivers/clk/clk_zynq.c
/openbmc/u-boot/drivers/clk/exynos/clk-exynos7420.c
/openbmc/u-boot/drivers/clk/owl/clk_s900.c
/openbmc/u-boot/drivers/core/dump.c
/openbmc/u-boot/drivers/core/uclass.c
/openbmc/u-boot/drivers/gpio/omap_gpio.c
/openbmc/u-boot/drivers/gpio/stm32f7_gpio.c
/openbmc/u-boot/drivers/gpio/tegra186_gpio.c
/openbmc/u-boot/drivers/gpio/tegra_gpio.c
/openbmc/u-boot/drivers/i2c/omap24xx_i2c.c
/openbmc/u-boot/drivers/misc/swap_case.c
/openbmc/u-boot/drivers/mmc/omap_hsmmc.c
/openbmc/u-boot/drivers/pci/pci-uclass.c
/openbmc/u-boot/drivers/pinctrl/broadcom/pinctrl-bcm283x.c
/openbmc/u-boot/drivers/pinctrl/exynos/pinctrl-exynos7420.c
/openbmc/u-boot/drivers/pinctrl/nxp/pinctrl-imx5.c
/openbmc/u-boot/drivers/pinctrl/nxp/pinctrl-imx6.c
/openbmc/u-boot/drivers/pinctrl/nxp/pinctrl-imx7.c
/openbmc/u-boot/drivers/pinctrl/nxp/pinctrl-imx7ulp.c
/openbmc/u-boot/drivers/pinctrl/pinctrl-single.c
/openbmc/u-boot/drivers/pinctrl/uniphier/pinctrl-uniphier-pro4.c
/openbmc/u-boot/drivers/pinctrl/uniphier/pinctrl-uniphier-pro5.c
/openbmc/u-boot/drivers/ram/bmips_ram.c
/openbmc/u-boot/drivers/serial/altera_jtag_uart.c
/openbmc/u-boot/drivers/serial/altera_uart.c
/openbmc/u-boot/drivers/serial/arm_dcc.c
/openbmc/u-boot/drivers/serial/atmel_usart.c
/openbmc/u-boot/drivers/serial/ns16550.c
/openbmc/u-boot/drivers/serial/serial_ar933x.c
/openbmc/u-boot/drivers/serial/serial_arc.c
/openbmc/u-boot/drivers/serial/serial_bcm283x_mu.c
/openbmc/u-boot/drivers/serial/serial_bcm283x_pl011.c
/openbmc/u-boot/drivers/serial/serial_bcm6345.c
/openbmc/u-boot/drivers/serial/serial_efi.c
/openbmc/u-boot/drivers/serial/serial_intel_mid.c
/openbmc/u-boot/drivers/serial/serial_lpuart.c
/openbmc/u-boot/drivers/serial/serial_meson.c
/openbmc/u-boot/drivers/serial/serial_mvebu_a3700.c
/openbmc/u-boot/drivers/serial/serial_mxc.c
/openbmc/u-boot/drivers/serial/serial_omap.c
/openbmc/u-boot/drivers/serial/serial_owl.c
/openbmc/u-boot/drivers/serial/serial_pic32.c
/openbmc/u-boot/drivers/serial/serial_pl01x.c
/openbmc/u-boot/drivers/serial/serial_s5p.c
/openbmc/u-boot/drivers/serial/serial_sh.c
/openbmc/u-boot/drivers/serial/serial_sti_asc.c
/openbmc/u-boot/drivers/serial/serial_stm32.c
/openbmc/u-boot/drivers/serial/serial_xuartlite.c
/openbmc/u-boot/drivers/serial/serial_zynq.c
/openbmc/u-boot/drivers/sysreset/sysreset_x86.c
/openbmc/u-boot/drivers/timer/ag101p_timer.c
/openbmc/u-boot/drivers/timer/altera_timer.c
/openbmc/u-boot/drivers/timer/arc_timer.c
/openbmc/u-boot/drivers/timer/ast_timer.c
/openbmc/u-boot/drivers/timer/atcpit100_timer.c
/openbmc/u-boot/drivers/timer/atmel_pit_timer.c
/openbmc/u-boot/drivers/timer/cadence-ttc.c
/openbmc/u-boot/drivers/timer/dw-apb-timer.c
/openbmc/u-boot/drivers/timer/mpc83xx_timer.c
/openbmc/u-boot/drivers/timer/omap-timer.c
/openbmc/u-boot/drivers/timer/rockchip_timer.c
/openbmc/u-boot/drivers/timer/sti-timer.c
/openbmc/u-boot/drivers/timer/stm32_timer.c
/openbmc/u-boot/drivers/timer/tsc_timer.c
/openbmc/u-boot/drivers/virtio/Kconfig
/openbmc/u-boot/drivers/virtio/Makefile
/openbmc/u-boot/drivers/virtio/virtio_net.c
/openbmc/u-boot/drivers/virtio/virtio_pci.h
/openbmc/u-boot/drivers/virtio/virtio_pci_legacy.c
/openbmc/u-boot/drivers/virtio/virtio_pci_modern.c
/openbmc/u-boot/drivers/virtio/virtio_sandbox.c
/openbmc/u-boot/include/pci.h
efi/efi_app.c
/openbmc/u-boot/test/dm/Makefile
/openbmc/u-boot/test/dm/pci.c
/openbmc/u-boot/test/dm/virtio.c
2895c4b715-Oct-2018 Bin Meng <bmeng.cn@gmail.com>

kconfig: Introduce HAVE_ARCH_IOMAP

Introduce a new Kconfig option for architecture codes to control
whether it provides io{read,write}{8,16,32} I/O accessor functions.

Signed-off-by: Bin Meng <bmen

kconfig: Introduce HAVE_ARCH_IOMAP

Introduce a new Kconfig option for architecture codes to control
whether it provides io{read,write}{8,16,32} I/O accessor functions.

Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
Reviewed-by: Simon Glass <sjg@chromium.org>

show more ...

d0851c8915-Oct-2018 Bin Meng <bmeng.cn@gmail.com>

blk: Call part_init() in the post_probe() method

part_init() is currently called in every DM BLK driver, either
in its bind() or probe() method. However we can use the BLK
uclass driver's post_probe

blk: Call part_init() in the post_probe() method

part_init() is currently called in every DM BLK driver, either
in its bind() or probe() method. However we can use the BLK
uclass driver's post_probe() method to do it automatically.

Update all DM BLK drivers to adopt this change.

Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
Reviewed-by: Simon Glass <sjg@chromium.org>

show more ...

f26ce03b15-Oct-2018 Bin Meng <bmeng.cn@gmail.com>

efi_driver: blk: Switch to use platdata_auto_alloc_size for the driver data

Currently the efi block driver uses priv_auto_alloc_size for the
driver data, however that's only available after the devi

efi_driver: blk: Switch to use platdata_auto_alloc_size for the driver data

Currently the efi block driver uses priv_auto_alloc_size for the
driver data, however that's only available after the device probe
phase. In order to make it accessible in an earlier phase, switch
to use platdata_auto_alloc_size instead.

This patch is the prerequisite for the follow up patch of DM BLK
driver changes to work with EFI loader.

Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
Reviewed-by: Simon Glass <sjg@chromium.org>

show more ...


/openbmc/u-boot/Documentation/devicetree/bindings/misc/gdsys,iocon_fpga.txt
/openbmc/u-boot/Documentation/devicetree/bindings/misc/gdsys,iocpu_fpga.txt
/openbmc/u-boot/Documentation/devicetree/bindings/misc/gdsys,soc.txt
/openbmc/u-boot/MAINTAINERS
/openbmc/u-boot/Makefile
/openbmc/u-boot/arch/arc/Kconfig
/openbmc/u-boot/arch/arc/dts/Makefile
/openbmc/u-boot/arch/arc/dts/emsdp.dts
/openbmc/u-boot/arch/arm/Kconfig
/openbmc/u-boot/arch/arm/dts/armada-xp-theadorable.dts
/openbmc/u-boot/arch/arm/dts/ast2500-evb.dts
/openbmc/u-boot/arch/arm/dts/ast2500.dtsi
/openbmc/u-boot/arch/arm/dts/fsl-imx8qxp-mek.dts
/openbmc/u-boot/arch/arm/include/asm/arch-sunxi/spl.h
/openbmc/u-boot/arch/arm/include/asm/ti-common/keystone_net.h
/openbmc/u-boot/arch/arm/mach-davinci/dp83848.c
/openbmc/u-boot/arch/arm/mach-davinci/et1011c.c
/openbmc/u-boot/arch/arm/mach-davinci/ksz8873.c
/openbmc/u-boot/arch/arm/mach-davinci/lxt972.c
/openbmc/u-boot/arch/arm/mach-imx/Makefile
/openbmc/u-boot/arch/arm/mach-imx/mx6/soc.c
/openbmc/u-boot/arch/arm/mach-mvebu/dram.c
/openbmc/u-boot/arch/arm/mach-mvebu/include/mach/cpu.h
/openbmc/u-boot/arch/arm/mach-rmobile/cpu_info.c
/openbmc/u-boot/arch/arm/mach-rmobile/memmap-gen3.c
/openbmc/u-boot/arch/arm/mach-sunxi/Kconfig
/openbmc/u-boot/arch/arm/mach-sunxi/board.c
/openbmc/u-boot/arch/arm/mach-sunxi/dram_sun4i.c
/openbmc/u-boot/arch/arm/mach-sunxi/p2wi.c
/openbmc/u-boot/arch/mips/Kconfig
/openbmc/u-boot/arch/mips/config.mk
/openbmc/u-boot/arch/mips/cpu/u-boot.lds
/openbmc/u-boot/arch/mips/include/asm/io.h
/openbmc/u-boot/arch/powerpc/cpu/mpc85xx/Kconfig
/openbmc/u-boot/arch/powerpc/cpu/mpc85xx/cmd_errata.c
/openbmc/u-boot/arch/powerpc/include/asm/immap_85xx.h
/openbmc/u-boot/arch/riscv/lib/bootm.c
/openbmc/u-boot/arch/sandbox/cpu/os.c
/openbmc/u-boot/arch/sandbox/dts/test.dts
/openbmc/u-boot/arch/x86/cpu/start.S
/openbmc/u-boot/arch/x86/include/asm/arch-baytrail/acpi/global_nvs.asl
/openbmc/u-boot/arch/x86/include/asm/arch-baytrail/acpi/southcluster.asl
/openbmc/u-boot/arch/x86/include/asm/arch-quark/acpi/global_nvs.asl
/openbmc/u-boot/arch/x86/include/asm/arch-tangier/acpi/global_nvs.asl
/openbmc/u-boot/board/st/stm32mp1/MAINTAINERS
/openbmc/u-boot/board/sunxi/README.nand
/openbmc/u-boot/board/sunxi/README.sunxi64
/openbmc/u-boot/board/sunxi/board.c
/openbmc/u-boot/board/synopsys/emsdp/Kconfig
/openbmc/u-boot/board/synopsys/emsdp/MAINTAINERS
/openbmc/u-boot/board/synopsys/emsdp/Makefile
/openbmc/u-boot/board/synopsys/emsdp/README
/openbmc/u-boot/board/synopsys/emsdp/emsdp.c
/openbmc/u-boot/board/synopsys/iot_devkit/README
/openbmc/u-boot/board/ti/ks2_evm/board.c
/openbmc/u-boot/board/ti/ks2_evm/board.h
/openbmc/u-boot/board/ti/ks2_evm/board_k2e.c
/openbmc/u-boot/board/ti/ks2_evm/board_k2g.c
/openbmc/u-boot/board/ti/ks2_evm/board_k2hk.c
/openbmc/u-boot/board/ti/ks2_evm/board_k2l.c
/openbmc/u-boot/cmd/Kconfig
/openbmc/u-boot/cmd/Makefile
/openbmc/u-boot/cmd/mii.c
/openbmc/u-boot/cmd/remoteproc.c
/openbmc/u-boot/cmd/ubi.c
/openbmc/u-boot/common/Makefile
/openbmc/u-boot/common/board_f.c
/openbmc/u-boot/common/common_fit.c
/openbmc/u-boot/common/miiphyutil.c
/openbmc/u-boot/common/spl/spl.c
/openbmc/u-boot/configs/BSC9131RDB_NAND_SYSCLK100_defconfig
/openbmc/u-boot/configs/BSC9131RDB_NAND_defconfig
/openbmc/u-boot/configs/BSC9131RDB_SPIFLASH_SYSCLK100_defconfig
/openbmc/u-boot/configs/BSC9131RDB_SPIFLASH_defconfig
/openbmc/u-boot/configs/BSC9132QDS_NAND_DDRCLK100_SECURE_defconfig
/openbmc/u-boot/configs/BSC9132QDS_NAND_DDRCLK100_defconfig
/openbmc/u-boot/configs/BSC9132QDS_NAND_DDRCLK133_SECURE_defconfig
/openbmc/u-boot/configs/BSC9132QDS_NAND_DDRCLK133_defconfig
/openbmc/u-boot/configs/BSC9132QDS_NOR_DDRCLK100_SECURE_defconfig
/openbmc/u-boot/configs/BSC9132QDS_NOR_DDRCLK100_defconfig
/openbmc/u-boot/configs/BSC9132QDS_NOR_DDRCLK133_SECURE_defconfig
/openbmc/u-boot/configs/BSC9132QDS_NOR_DDRCLK133_defconfig
/openbmc/u-boot/configs/BSC9132QDS_SDCARD_DDRCLK100_SECURE_defconfig
/openbmc/u-boot/configs/BSC9132QDS_SDCARD_DDRCLK100_defconfig
/openbmc/u-boot/configs/BSC9132QDS_SDCARD_DDRCLK133_SECURE_defconfig
/openbmc/u-boot/configs/BSC9132QDS_SDCARD_DDRCLK133_defconfig
/openbmc/u-boot/configs/BSC9132QDS_SPIFLASH_DDRCLK100_SECURE_defconfig
/openbmc/u-boot/configs/BSC9132QDS_SPIFLASH_DDRCLK100_defconfig
/openbmc/u-boot/configs/BSC9132QDS_SPIFLASH_DDRCLK133_SECURE_defconfig
/openbmc/u-boot/configs/BSC9132QDS_SPIFLASH_DDRCLK133_defconfig
/openbmc/u-boot/configs/CHIP_pro_defconfig
/openbmc/u-boot/configs/Nintendo_NES_Classic_Edition_defconfig
/openbmc/u-boot/configs/P1020RDB-PD_NAND_defconfig
/openbmc/u-boot/configs/P1020RDB-PD_SDCARD_defconfig
/openbmc/u-boot/configs/P1020RDB-PD_SPIFLASH_defconfig
/openbmc/u-boot/configs/P1020RDB-PD_defconfig
/openbmc/u-boot/configs/P1021RDB-PC_36BIT_NAND_defconfig
/openbmc/u-boot/configs/P1021RDB-PC_36BIT_SDCARD_defconfig
/openbmc/u-boot/configs/P1021RDB-PC_36BIT_SPIFLASH_defconfig
/openbmc/u-boot/configs/P1021RDB-PC_36BIT_defconfig
/openbmc/u-boot/configs/P1021RDB-PC_NAND_defconfig
/openbmc/u-boot/configs/P1021RDB-PC_SDCARD_defconfig
/openbmc/u-boot/configs/P1021RDB-PC_SPIFLASH_defconfig
/openbmc/u-boot/configs/P1021RDB-PC_defconfig
/openbmc/u-boot/configs/P1022DS_36BIT_NAND_defconfig
/openbmc/u-boot/configs/P1022DS_36BIT_SDCARD_defconfig
/openbmc/u-boot/configs/P1022DS_36BIT_SPIFLASH_defconfig
/openbmc/u-boot/configs/P1022DS_36BIT_defconfig
/openbmc/u-boot/configs/P1022DS_NAND_defconfig
/openbmc/u-boot/configs/P1022DS_SDCARD_defconfig
/openbmc/u-boot/configs/P1022DS_SPIFLASH_defconfig
/openbmc/u-boot/configs/P1022DS_defconfig
/openbmc/u-boot/configs/P2020RDB-PC_36BIT_NAND_defconfig
/openbmc/u-boot/configs/P2020RDB-PC_36BIT_SDCARD_defconfig
/openbmc/u-boot/configs/P2020RDB-PC_36BIT_SPIFLASH_defconfig
/openbmc/u-boot/configs/P2020RDB-PC_36BIT_defconfig
/openbmc/u-boot/configs/P2020RDB-PC_NAND_defconfig
/openbmc/u-boot/configs/P2020RDB-PC_SDCARD_defconfig
/openbmc/u-boot/configs/P2020RDB-PC_SPIFLASH_defconfig
/openbmc/u-boot/configs/P2020RDB-PC_defconfig
/openbmc/u-boot/configs/T1023RDB_NAND_defconfig
/openbmc/u-boot/configs/T1023RDB_SDCARD_defconfig
/openbmc/u-boot/configs/T1023RDB_SECURE_BOOT_defconfig
/openbmc/u-boot/configs/T1023RDB_SPIFLASH_defconfig
/openbmc/u-boot/configs/T1023RDB_defconfig
/openbmc/u-boot/configs/T1024QDS_DDR4_SECURE_BOOT_defconfig
/openbmc/u-boot/configs/T1024QDS_DDR4_defconfig
/openbmc/u-boot/configs/T1024QDS_NAND_defconfig
/openbmc/u-boot/configs/T1024QDS_SDCARD_defconfig
/openbmc/u-boot/configs/T1024QDS_SECURE_BOOT_defconfig
/openbmc/u-boot/configs/T1024QDS_SPIFLASH_defconfig
/openbmc/u-boot/configs/T1024QDS_defconfig
/openbmc/u-boot/configs/T1024RDB_NAND_defconfig
/openbmc/u-boot/configs/T1024RDB_SDCARD_defconfig
/openbmc/u-boot/configs/T1024RDB_SECURE_BOOT_defconfig
/openbmc/u-boot/configs/T1024RDB_SPIFLASH_defconfig
/openbmc/u-boot/configs/T1024RDB_defconfig
/openbmc/u-boot/configs/T1040D4RDB_NAND_defconfig
/openbmc/u-boot/configs/T1040D4RDB_SDCARD_defconfig
/openbmc/u-boot/configs/T1040D4RDB_SECURE_BOOT_defconfig
/openbmc/u-boot/configs/T1040D4RDB_SPIFLASH_defconfig
/openbmc/u-boot/configs/T1040D4RDB_defconfig
/openbmc/u-boot/configs/T1040QDS_DDR4_defconfig
/openbmc/u-boot/configs/T1040QDS_SECURE_BOOT_defconfig
/openbmc/u-boot/configs/T1040QDS_defconfig
/openbmc/u-boot/configs/T1040RDB_NAND_defconfig
/openbmc/u-boot/configs/T1040RDB_SDCARD_defconfig
/openbmc/u-boot/configs/T1040RDB_SECURE_BOOT_defconfig
/openbmc/u-boot/configs/T1040RDB_SPIFLASH_defconfig
/openbmc/u-boot/configs/T1040RDB_defconfig
/openbmc/u-boot/configs/T1042D4RDB_NAND_defconfig
/openbmc/u-boot/configs/T1042D4RDB_SDCARD_defconfig
/openbmc/u-boot/configs/T1042D4RDB_SECURE_BOOT_defconfig
/openbmc/u-boot/configs/T1042D4RDB_SPIFLASH_defconfig
/openbmc/u-boot/configs/T1042D4RDB_defconfig
/openbmc/u-boot/configs/T1042RDB_PI_NAND_SECURE_BOOT_defconfig
/openbmc/u-boot/configs/T1042RDB_PI_NAND_defconfig
/openbmc/u-boot/configs/T1042RDB_PI_SDCARD_defconfig
/openbmc/u-boot/configs/T1042RDB_PI_SPIFLASH_defconfig
/openbmc/u-boot/configs/T1042RDB_PI_defconfig
/openbmc/u-boot/configs/T1042RDB_SECURE_BOOT_defconfig
/openbmc/u-boot/configs/T1042RDB_defconfig
/openbmc/u-boot/configs/T2080QDS_NAND_defconfig
/openbmc/u-boot/configs/T2080QDS_SDCARD_defconfig
/openbmc/u-boot/configs/T2080QDS_SECURE_BOOT_defconfig
/openbmc/u-boot/configs/T2080QDS_SPIFLASH_defconfig
/openbmc/u-boot/configs/T2080QDS_SRIO_PCIE_BOOT_defconfig
/openbmc/u-boot/configs/T2080QDS_defconfig
/openbmc/u-boot/configs/T2080RDB_NAND_defconfig
/openbmc/u-boot/configs/T2080RDB_SDCARD_defconfig
/openbmc/u-boot/configs/T2080RDB_SECURE_BOOT_defconfig
/openbmc/u-boot/configs/T2080RDB_SPIFLASH_defconfig
/openbmc/u-boot/configs/T2080RDB_SRIO_PCIE_BOOT_defconfig
/openbmc/u-boot/configs/T2080RDB_defconfig
/openbmc/u-boot/configs/T2081QDS_NAND_defconfig
/openbmc/u-boot/configs/T2081QDS_SDCARD_defconfig
/openbmc/u-boot/configs/T2081QDS_SPIFLASH_defconfig
/openbmc/u-boot/configs/T2081QDS_SRIO_PCIE_BOOT_defconfig
/openbmc/u-boot/configs/T2081QDS_defconfig
/openbmc/u-boot/configs/TWR-P1025_defconfig
/openbmc/u-boot/configs/alt_defconfig
/openbmc/u-boot/configs/am335x_baltos_defconfig
/openbmc/u-boot/configs/am335x_boneblack_defconfig
/openbmc/u-boot/configs/am335x_boneblack_vboot_defconfig
/openbmc/u-boot/configs/am335x_evm_defconfig
/openbmc/u-boot/configs/am335x_evm_spiboot_defconfig
/openbmc/u-boot/configs/am335x_evm_usbspl_defconfig
/openbmc/u-boot/configs/am335x_hs_evm_defconfig
/openbmc/u-boot/configs/am335x_hs_evm_uart_defconfig
/openbmc/u-boot/configs/am335x_igep003x_defconfig
/openbmc/u-boot/configs/am335x_pdu001_defconfig
/openbmc/u-boot/configs/am335x_shc_defconfig
/openbmc/u-boot/configs/am335x_shc_ict_defconfig
/openbmc/u-boot/configs/am335x_shc_netboot_defconfig
/openbmc/u-boot/configs/am335x_shc_prompt_defconfig
/openbmc/u-boot/configs/am335x_shc_sdboot_defconfig
/openbmc/u-boot/configs/am335x_shc_sdboot_prompt_defconfig
/openbmc/u-boot/configs/am335x_sl50_defconfig
/openbmc/u-boot/configs/am3517_evm_defconfig
/openbmc/u-boot/configs/am43xx_evm_defconfig
/openbmc/u-boot/configs/am43xx_evm_rtconly_defconfig
/openbmc/u-boot/configs/am43xx_evm_usbhost_boot_defconfig
/openbmc/u-boot/configs/am43xx_hs_evm_defconfig
/openbmc/u-boot/configs/am57xx_evm_defconfig
/openbmc/u-boot/configs/am57xx_hs_evm_defconfig
/openbmc/u-boot/configs/apf27_defconfig
/openbmc/u-boot/configs/apx4devkit_defconfig
/openbmc/u-boot/configs/aristainetos2_defconfig
/openbmc/u-boot/configs/aristainetos2b_defconfig
/openbmc/u-boot/configs/aristainetos_defconfig
/openbmc/u-boot/configs/at91sam9n12ek_mmc_defconfig
/openbmc/u-boot/configs/at91sam9n12ek_nandflash_defconfig
/openbmc/u-boot/configs/at91sam9n12ek_spiflash_defconfig
/openbmc/u-boot/configs/at91sam9x5ek_dataflash_defconfig
/openbmc/u-boot/configs/at91sam9x5ek_mmc_defconfig
/openbmc/u-boot/configs/at91sam9x5ek_nandflash_defconfig
/openbmc/u-boot/configs/at91sam9x5ek_spiflash_defconfig
/openbmc/u-boot/configs/bcm7260_defconfig
/openbmc/u-boot/configs/bcm7445_defconfig
/openbmc/u-boot/configs/birdland_bav335a_defconfig
/openbmc/u-boot/configs/birdland_bav335b_defconfig
/openbmc/u-boot/configs/brppt1_mmc_defconfig
/openbmc/u-boot/configs/brppt1_nand_defconfig
/openbmc/u-boot/configs/brppt1_spi_defconfig
/openbmc/u-boot/configs/cairo_defconfig
/openbmc/u-boot/configs/chiliboard_defconfig
/openbmc/u-boot/configs/chromebook_link64_defconfig
/openbmc/u-boot/configs/chromebook_link_defconfig
/openbmc/u-boot/configs/cm_fx6_defconfig
/openbmc/u-boot/configs/cm_t335_defconfig
/openbmc/u-boot/configs/cm_t3517_defconfig
/openbmc/u-boot/configs/cm_t35_defconfig
/openbmc/u-boot/configs/cm_t43_defconfig
/openbmc/u-boot/configs/colibri-imx6ull_defconfig
/openbmc/u-boot/configs/colibri_imx7_defconfig
/openbmc/u-boot/configs/colibri_t20_defconfig
/openbmc/u-boot/configs/colibri_vf_defconfig
/openbmc/u-boot/configs/corvus_defconfig
/openbmc/u-boot/configs/da850_am18xxevm_defconfig
/openbmc/u-boot/configs/da850evm_defconfig
/openbmc/u-boot/configs/da850evm_nand_defconfig
/openbmc/u-boot/configs/devkit8000_defconfig
/openbmc/u-boot/configs/display5_defconfig
/openbmc/u-boot/configs/display5_factory_defconfig
/openbmc/u-boot/configs/dns325_defconfig
/openbmc/u-boot/configs/dockstar_defconfig
/openbmc/u-boot/configs/dra7xx_evm_defconfig
/openbmc/u-boot/configs/dra7xx_hs_evm_defconfig
/openbmc/u-boot/configs/draco_defconfig
/openbmc/u-boot/configs/dragonboard410c_defconfig
/openbmc/u-boot/configs/ds414_defconfig
/openbmc/u-boot/configs/ea20_defconfig
/openbmc/u-boot/configs/eco5pk_defconfig
/openbmc/u-boot/configs/emsdp_defconfig
/openbmc/u-boot/configs/etamin_defconfig
/openbmc/u-boot/configs/ethernut5_defconfig
/openbmc/u-boot/configs/evb-ast2500_defconfig
/openbmc/u-boot/configs/flea3_defconfig
/openbmc/u-boot/configs/gardena-smart-gateway-mt7688-ram_defconfig
/openbmc/u-boot/configs/gardena-smart-gateway-mt7688_defconfig
/openbmc/u-boot/configs/goflexhome_defconfig
/openbmc/u-boot/configs/gose_defconfig
/openbmc/u-boot/configs/guruplug_defconfig
/openbmc/u-boot/configs/gwventana_emmc_defconfig
/openbmc/u-boot/configs/gwventana_gw5904_defconfig
/openbmc/u-boot/configs/gwventana_nand_defconfig
/openbmc/u-boot/configs/harmony_defconfig
/openbmc/u-boot/configs/hikey_defconfig
/openbmc/u-boot/configs/ib62x0_defconfig
/openbmc/u-boot/configs/iconnect_defconfig
/openbmc/u-boot/configs/ids8313_defconfig
/openbmc/u-boot/configs/igep0032_defconfig
/openbmc/u-boot/configs/igep00x0_defconfig
/openbmc/u-boot/configs/imx6dl_icore_nand_defconfig
/openbmc/u-boot/configs/imx6q_icore_nand_defconfig
/openbmc/u-boot/configs/imx6q_logic_defconfig
/openbmc/u-boot/configs/imx6qdl_icore_mmc_defconfig
/openbmc/u-boot/configs/imx6qdl_icore_nand_defconfig
/openbmc/u-boot/configs/imx6ul_geam_nand_defconfig
/openbmc/u-boot/configs/imx6ul_isiot_nand_defconfig
/openbmc/u-boot/configs/imx8qxp_mek_defconfig
/openbmc/u-boot/configs/ipam390_defconfig
/openbmc/u-boot/configs/k2e_evm_defconfig
/openbmc/u-boot/configs/k2e_hs_evm_defconfig
/openbmc/u-boot/configs/k2g_evm_defconfig
/openbmc/u-boot/configs/k2g_hs_evm_defconfig
/openbmc/u-boot/configs/k2hk_evm_defconfig
/openbmc/u-boot/configs/k2hk_hs_evm_defconfig
/openbmc/u-boot/configs/k2l_evm_defconfig
/openbmc/u-boot/configs/k2l_hs_evm_defconfig
/openbmc/u-boot/configs/khadas-vim2_defconfig
/openbmc/u-boot/configs/km_kirkwood_128m16_defconfig
/openbmc/u-boot/configs/km_kirkwood_defconfig
/openbmc/u-boot/configs/km_kirkwood_pci_defconfig
/openbmc/u-boot/configs/kmcoge4_defconfig
/openbmc/u-boot/configs/kmcoge5ne_defconfig
/openbmc/u-boot/configs/kmcoge5un_defconfig
/openbmc/u-boot/configs/kmeter1_defconfig
/openbmc/u-boot/configs/kmlion1_defconfig
/openbmc/u-boot/configs/kmnusa_defconfig
/openbmc/u-boot/configs/kmopti2_defconfig
/openbmc/u-boot/configs/kmsugp1_defconfig
/openbmc/u-boot/configs/kmsupx5_defconfig
/openbmc/u-boot/configs/kmsuv31_defconfig
/openbmc/u-boot/configs/kmtegr1_defconfig
/openbmc/u-boot/configs/kmtepr2_defconfig
/openbmc/u-boot/configs/kmvect1_defconfig
/openbmc/u-boot/configs/koelsch_defconfig
/openbmc/u-boot/configs/lager_defconfig
/openbmc/u-boot/configs/ls1021atwr_qspi_defconfig
/openbmc/u-boot/configs/ls1021atwr_sdcard_qspi_defconfig
/openbmc/u-boot/configs/ls1043aqds_qspi_defconfig
/openbmc/u-boot/configs/ls1043aqds_sdcard_qspi_defconfig
/openbmc/u-boot/configs/ls1043ardb_defconfig
/openbmc/u-boot/configs/ls1043ardb_nand_SECURE_BOOT_defconfig
/openbmc/u-boot/configs/ls1043ardb_nand_defconfig
/openbmc/u-boot/configs/ls1043ardb_sdcard_defconfig
/openbmc/u-boot/configs/ls1046aqds_qspi_defconfig
/openbmc/u-boot/configs/ls1046aqds_sdcard_qspi_defconfig
/openbmc/u-boot/configs/ls1046ardb_emmc_defconfig
/openbmc/u-boot/configs/ls1046ardb_qspi_SECURE_BOOT_defconfig
/openbmc/u-boot/configs/ls1046ardb_qspi_defconfig
/openbmc/u-boot/configs/ls1046ardb_sdcard_SECURE_BOOT_defconfig
/openbmc/u-boot/configs/ls1046ardb_sdcard_defconfig
/openbmc/u-boot/configs/ls1088aqds_qspi_SECURE_BOOT_defconfig
/openbmc/u-boot/configs/ls1088aqds_qspi_defconfig
/openbmc/u-boot/configs/ls1088aqds_sdcard_qspi_defconfig
/openbmc/u-boot/configs/ls1088ardb_qspi_SECURE_BOOT_defconfig
/openbmc/u-boot/configs/ls1088ardb_qspi_defconfig
/openbmc/u-boot/configs/ls1088ardb_sdcard_qspi_defconfig
/openbmc/u-boot/configs/ls2080a_emu_defconfig
/openbmc/u-boot/configs/ls2080aqds_nand_defconfig
/openbmc/u-boot/configs/ls2080aqds_qspi_defconfig
/openbmc/u-boot/configs/ls2080aqds_sdcard_defconfig
/openbmc/u-boot/configs/ls2080ardb_SECURE_BOOT_defconfig
/openbmc/u-boot/configs/ls2080ardb_defconfig
/openbmc/u-boot/configs/ls2080ardb_nand_defconfig
/openbmc/u-boot/configs/ls2081ardb_defconfig
/openbmc/u-boot/configs/ls2088ardb_qspi_SECURE_BOOT_defconfig
/openbmc/u-boot/configs/ls2088ardb_qspi_defconfig
/openbmc/u-boot/configs/m53menlo_defconfig
/openbmc/u-boot/configs/mccmon6_nor_defconfig
/openbmc/u-boot/configs/mccmon6_sd_defconfig
/openbmc/u-boot/configs/mcx_defconfig
/openbmc/u-boot/configs/mgcoge3un_defconfig
/openbmc/u-boot/configs/microblaze-generic_defconfig
/openbmc/u-boot/configs/mt_ventoux_defconfig
/openbmc/u-boot/configs/mx28evk_auart_console_defconfig
/openbmc/u-boot/configs/mx28evk_defconfig
/openbmc/u-boot/configs/mx28evk_nand_defconfig
/openbmc/u-boot/configs/mx28evk_spi_defconfig
/openbmc/u-boot/configs/mx35pdk_defconfig
/openbmc/u-boot/configs/mx6sxsabreauto_defconfig
/openbmc/u-boot/configs/mx6sxsabresd_defconfig
/openbmc/u-boot/configs/mx6ul_14x14_evk_defconfig
/openbmc/u-boot/configs/mx6ul_9x9_evk_defconfig
/openbmc/u-boot/configs/mx7dsabresd_qspi_defconfig
/openbmc/u-boot/configs/nas220_defconfig
/openbmc/u-boot/configs/nsa310s_defconfig
/openbmc/u-boot/configs/omap35_logic_defconfig
/openbmc/u-boot/configs/omap35_logic_somlv_defconfig
/openbmc/u-boot/configs/omap3_beagle_defconfig
/openbmc/u-boot/configs/omap3_evm_defconfig
/openbmc/u-boot/configs/omap3_logic_defconfig
/openbmc/u-boot/configs/omap3_logic_somlv_defconfig
/openbmc/u-boot/configs/omap3_overo_defconfig
/openbmc/u-boot/configs/omap3_pandora_defconfig
/openbmc/u-boot/configs/omap3_zoom1_defconfig
/openbmc/u-boot/configs/omapl138_lcdk_defconfig
/openbmc/u-boot/configs/openrd_base_defconfig
/openbmc/u-boot/configs/openrd_client_defconfig
/openbmc/u-boot/configs/openrd_ultimate_defconfig
/openbmc/u-boot/configs/pcm051_rev1_defconfig
/openbmc/u-boot/configs/pcm051_rev3_defconfig
/openbmc/u-boot/configs/pcm058_defconfig
/openbmc/u-boot/configs/pengwyn_defconfig
/openbmc/u-boot/configs/pepper_defconfig
/openbmc/u-boot/configs/pfla02_defconfig
/openbmc/u-boot/configs/pine64_plus_defconfig
/openbmc/u-boot/configs/platinum_picon_defconfig
/openbmc/u-boot/configs/platinum_titanium_defconfig
/openbmc/u-boot/configs/pogo_e02_defconfig
/openbmc/u-boot/configs/porter_defconfig
/openbmc/u-boot/configs/portl2_defconfig
/openbmc/u-boot/configs/pxm2_defconfig
/openbmc/u-boot/configs/qemu_arm64_defconfig
/openbmc/u-boot/configs/qemu_arm_defconfig
/openbmc/u-boot/configs/r8a7795_salvator-x_defconfig
/openbmc/u-boot/configs/r8a77970_eagle_defconfig
/openbmc/u-boot/configs/rastaban_defconfig
/openbmc/u-boot/configs/rut_defconfig
/openbmc/u-boot/configs/s5pc210_universal_defconfig
/openbmc/u-boot/configs/sama5d2_ptc_ek_mmc_defconfig
/openbmc/u-boot/configs/sama5d3_xplained_mmc_defconfig
/openbmc/u-boot/configs/sama5d3_xplained_nandflash_defconfig
/openbmc/u-boot/configs/sandbox64_defconfig
/openbmc/u-boot/configs/sandbox_defconfig
/openbmc/u-boot/configs/sandbox_flattree_defconfig
/openbmc/u-boot/configs/sandbox_spl_defconfig
/openbmc/u-boot/configs/sheevaplug_defconfig
/openbmc/u-boot/configs/silk_defconfig
/openbmc/u-boot/configs/smartweb_defconfig
/openbmc/u-boot/configs/smdkc100_defconfig
/openbmc/u-boot/configs/sniper_defconfig
/openbmc/u-boot/configs/socfpga_arria10_defconfig
/openbmc/u-boot/configs/socfpga_dbm_soc1_defconfig
/openbmc/u-boot/configs/socfpga_de10_nano_defconfig
/openbmc/u-boot/configs/socfpga_de1_soc_defconfig
/openbmc/u-boot/configs/spear300_defconfig
/openbmc/u-boot/configs/spear300_nand_defconfig
/openbmc/u-boot/configs/spear300_usbtty_defconfig
/openbmc/u-boot/configs/spear300_usbtty_nand_defconfig
/openbmc/u-boot/configs/spear310_defconfig
/openbmc/u-boot/configs/spear310_nand_defconfig
/openbmc/u-boot/configs/spear310_pnor_defconfig
/openbmc/u-boot/configs/spear310_usbtty_defconfig
/openbmc/u-boot/configs/spear310_usbtty_nand_defconfig
/openbmc/u-boot/configs/spear310_usbtty_pnor_defconfig
/openbmc/u-boot/configs/spear320_defconfig
/openbmc/u-boot/configs/spear320_nand_defconfig
/openbmc/u-boot/configs/spear320_pnor_defconfig
/openbmc/u-boot/configs/spear320_usbtty_defconfig
/openbmc/u-boot/configs/spear320_usbtty_nand_defconfig
/openbmc/u-boot/configs/spear320_usbtty_pnor_defconfig
/openbmc/u-boot/configs/spear600_defconfig
/openbmc/u-boot/configs/spear600_nand_defconfig
/openbmc/u-boot/configs/spear600_usbtty_defconfig
/openbmc/u-boot/configs/spear600_usbtty_nand_defconfig
/openbmc/u-boot/configs/stout_defconfig
/openbmc/u-boot/configs/suvd3_defconfig
/openbmc/u-boot/configs/taurus_defconfig
/openbmc/u-boot/configs/theadorable-x86-conga-qa3-e3845-pcie-x4_defconfig
/openbmc/u-boot/configs/theadorable-x86-conga-qa3-e3845_defconfig
/openbmc/u-boot/configs/theadorable-x86-dfi-bt700_defconfig
/openbmc/u-boot/configs/thuban_defconfig
/openbmc/u-boot/configs/titanium_defconfig
/openbmc/u-boot/configs/tricorder_defconfig
/openbmc/u-boot/configs/tricorder_flash_defconfig
/openbmc/u-boot/configs/tuge1_defconfig
/openbmc/u-boot/configs/turris_mox_defconfig
/openbmc/u-boot/configs/tuxx1_defconfig
/openbmc/u-boot/configs/twister_defconfig
/openbmc/u-boot/configs/udoo_defconfig
/openbmc/u-boot/configs/uniphier_ld4_sld8_defconfig
/openbmc/u-boot/configs/uniphier_v7_defconfig
/openbmc/u-boot/configs/uniphier_v8_defconfig
/openbmc/u-boot/configs/vct_platinum_onenand_defconfig
/openbmc/u-boot/configs/vct_platinum_onenand_small_defconfig
/openbmc/u-boot/configs/vct_platinumavc_onenand_defconfig
/openbmc/u-boot/configs/vct_platinumavc_onenand_small_defconfig
/openbmc/u-boot/configs/vct_premium_onenand_defconfig
/openbmc/u-boot/configs/vct_premium_onenand_small_defconfig
/openbmc/u-boot/configs/vf610twr_defconfig
/openbmc/u-boot/configs/vf610twr_nand_defconfig
/openbmc/u-boot/configs/warp7_bl33_defconfig
/openbmc/u-boot/configs/warp7_defconfig
/openbmc/u-boot/configs/wb45n_defconfig
/openbmc/u-boot/configs/woodburn_defconfig
/openbmc/u-boot/configs/woodburn_sd_defconfig
/openbmc/u-boot/configs/x600_defconfig
/openbmc/u-boot/doc/device-tree-bindings/net/mediatek,mt7628-eth.txt
/openbmc/u-boot/drivers/Kconfig
/openbmc/u-boot/drivers/Makefile
/openbmc/u-boot/drivers/adc/Makefile
/openbmc/u-boot/drivers/axi/Makefile
/openbmc/u-boot/drivers/block/sandbox.c
/openbmc/u-boot/drivers/board/Makefile
/openbmc/u-boot/drivers/board/gazerbeam.h
/openbmc/u-boot/drivers/clk/Makefile
/openbmc/u-boot/drivers/clk/altera/Makefile
/openbmc/u-boot/drivers/clk/aspeed/Makefile
/openbmc/u-boot/drivers/clk/aspeed/clk_ast2500.c
/openbmc/u-boot/drivers/clk/owl/Makefile
/openbmc/u-boot/drivers/clk/rockchip/Makefile
/openbmc/u-boot/drivers/clk/tegra/Makefile
/openbmc/u-boot/drivers/core/device.c
/openbmc/u-boot/drivers/core/lists.c
/openbmc/u-boot/drivers/core/ofnode.c
/openbmc/u-boot/drivers/core/regmap.c
/openbmc/u-boot/drivers/core/root.c
/openbmc/u-boot/drivers/core/uclass.c
/openbmc/u-boot/drivers/core/util.c
/openbmc/u-boot/drivers/cpu/Makefile
/openbmc/u-boot/drivers/cpu/mpc83xx_cpu.c
/openbmc/u-boot/drivers/dfu/Kconfig
/openbmc/u-boot/drivers/fastboot/Makefile
/openbmc/u-boot/drivers/fpga/socfpga_arria10.c
/openbmc/u-boot/drivers/fpga/socfpga_gen5.c
/openbmc/u-boot/drivers/gpio/pca953x_gpio.c
/openbmc/u-boot/drivers/mailbox/Makefile
/openbmc/u-boot/drivers/misc/Kconfig
/openbmc/u-boot/drivers/misc/Makefile
/openbmc/u-boot/drivers/misc/fs_loader.c
/openbmc/u-boot/drivers/misc/gdsys_soc.c
/openbmc/u-boot/drivers/misc/gdsys_soc.h
/openbmc/u-boot/drivers/misc/ihs_fpga.c
/openbmc/u-boot/drivers/misc/ihs_fpga.h
/openbmc/u-boot/drivers/misc/imx8/scu.c
/openbmc/u-boot/drivers/mmc/dw_mmc.c
/openbmc/u-boot/drivers/mmc/renesas-sdhi.c
/openbmc/u-boot/drivers/mmc/tmio-common.c
/openbmc/u-boot/drivers/mtd/Kconfig
/openbmc/u-boot/drivers/mtd/mtd_uboot.c
/openbmc/u-boot/drivers/net/Kconfig
/openbmc/u-boot/drivers/net/Makefile
/openbmc/u-boot/drivers/net/fec_mxc.c
/openbmc/u-boot/drivers/net/fec_mxc.h
/openbmc/u-boot/drivers/net/fm/t1040.c
/openbmc/u-boot/drivers/net/ftgmac100.c
/openbmc/u-boot/drivers/net/ftgmac100.h
/openbmc/u-boot/drivers/net/mt7628-eth.c
/openbmc/u-boot/drivers/net/mvpp2.c
/openbmc/u-boot/drivers/net/pfe_eth/Makefile
/openbmc/u-boot/drivers/net/phy/Kconfig
/openbmc/u-boot/drivers/net/phy/aquantia.c
/openbmc/u-boot/drivers/net/phy/mscc.c
/openbmc/u-boot/drivers/net/ti/Kconfig
/openbmc/u-boot/drivers/net/ti/Makefile
/openbmc/u-boot/drivers/net/ti/cpsw-common.c
/openbmc/u-boot/drivers/net/ti/cpsw.c
/openbmc/u-boot/drivers/net/ti/cpsw_mdio.c
/openbmc/u-boot/drivers/net/ti/cpsw_mdio.h
/openbmc/u-boot/drivers/net/ti/davinci_emac.c
/openbmc/u-boot/drivers/net/ti/davinci_emac.h
/openbmc/u-boot/drivers/net/ti/keystone_net.c
/openbmc/u-boot/drivers/phy/allwinner/Makefile
/openbmc/u-boot/drivers/pinctrl/renesas/pfc-r8a77990.c
/openbmc/u-boot/drivers/pinctrl/renesas/pfc.c
/openbmc/u-boot/drivers/power/domain/Makefile
/openbmc/u-boot/drivers/power/regulator/Kconfig
/openbmc/u-boot/drivers/power/regulator/Makefile
/openbmc/u-boot/drivers/pwm/sunxi_pwm.c
/openbmc/u-boot/drivers/ram/Makefile
/openbmc/u-boot/drivers/ram/rockchip/Makefile
/openbmc/u-boot/drivers/reset/Makefile
/openbmc/u-boot/drivers/serial/serial-uclass.c
/openbmc/u-boot/drivers/timer/Kconfig
/openbmc/u-boot/drivers/timer/timer-uclass.c
/openbmc/u-boot/drivers/usb/common/Makefile
/openbmc/u-boot/drivers/usb/common/fsl-errata.c
/openbmc/u-boot/drivers/usb/dwc3/dwc3-generic.c
/openbmc/u-boot/drivers/usb/host/ehci-fsl.c
/openbmc/u-boot/drivers/usb/host/ehci-hcd.c
/openbmc/u-boot/drivers/usb/host/ehci.h
/openbmc/u-boot/drivers/video/sunxi/sunxi_display.c
/openbmc/u-boot/drivers/video/tegra124/Makefile
/openbmc/u-boot/drivers/virtio/Kconfig
/openbmc/u-boot/drivers/virtio/Makefile
/openbmc/u-boot/drivers/virtio/virtio-uclass.c
/openbmc/u-boot/drivers/virtio/virtio_mmio.c
/openbmc/u-boot/drivers/virtio/virtio_mmio.h
/openbmc/u-boot/drivers/virtio/virtio_net.c
/openbmc/u-boot/drivers/virtio/virtio_net.h
/openbmc/u-boot/drivers/virtio/virtio_ring.c
/openbmc/u-boot/drivers/w1-eeprom/ds24xxx.c
/openbmc/u-boot/drivers/w1/w1-uclass.c
/openbmc/u-boot/fs/ubifs/ubifs.c
/openbmc/u-boot/include/configs/T102xRDB.h
/openbmc/u-boot/include/configs/T208xQDS.h
/openbmc/u-boot/include/configs/T208xRDB.h
/openbmc/u-boot/include/configs/at91sam9x5ek.h
/openbmc/u-boot/include/configs/emsdp.h
/openbmc/u-boot/include/configs/ls1043ardb.h
/openbmc/u-boot/include/configs/ls1046ardb.h
/openbmc/u-boot/include/configs/ls1088ardb.h
/openbmc/u-boot/include/configs/ls2080ardb.h
/openbmc/u-boot/include/configs/socfpga_common.h
/openbmc/u-boot/include/configs/theadorable-x86-common.h
/openbmc/u-boot/include/configs/ti_armv7_keystone2.h
/openbmc/u-boot/include/configs/wb45n.h
/openbmc/u-boot/include/configs/zynq-common.h
/openbmc/u-boot/include/dm/device-internal.h
/openbmc/u-boot/include/dm/lists.h
/openbmc/u-boot/include/dm/root.h
/openbmc/u-boot/include/dm/test.h
/openbmc/u-boot/include/dm/uclass-id.h
/openbmc/u-boot/include/dm/uclass.h
/openbmc/u-boot/include/dm/util.h
/openbmc/u-boot/include/dwmmc.h
/openbmc/u-boot/include/environment/ti/boot.h
/openbmc/u-boot/include/fsl_usb.h
/openbmc/u-boot/include/miiphy.h
/openbmc/u-boot/include/netdev.h
/openbmc/u-boot/include/phy.h
/openbmc/u-boot/include/regmap.h
/openbmc/u-boot/include/virtio.h
/openbmc/u-boot/include/virtio_ring.h
/openbmc/u-boot/include/virtio_types.h
efi_driver/efi_block_device.c
/openbmc/u-boot/scripts/config_whitelist.txt
/openbmc/u-boot/test/dm/blk.c
/openbmc/u-boot/test/dm/bus.c
/openbmc/u-boot/test/dm/regmap.c
/openbmc/u-boot/test/dm/tee.c
/openbmc/u-boot/test/dm/test-fdt.c
/openbmc/u-boot/tools/buildman/README
/openbmc/u-boot/tools/buildman/board.py
/openbmc/u-boot/tools/buildman/cmdline.py
/openbmc/u-boot/tools/buildman/control.py
/openbmc/u-boot/tools/buildman/test.py
/openbmc/u-boot/tools/imx8image.c
/openbmc/u-boot/tools/mips-relocs.c
cf033e0425-Oct-2018 Tom Rini <trini@konsulko.com>

Merge tag 'u-boot-imx-20181025' of git://git.denx.de/u-boot-imx

Merged imx8 architecture, fix build for imx8 + warnings


/openbmc/u-boot/.travis.yml
/openbmc/u-boot/Kconfig
/openbmc/u-boot/MAINTAINERS
/openbmc/u-boot/Makefile
/openbmc/u-boot/arch/arm/Kconfig
/openbmc/u-boot/arch/arm/Makefile
/openbmc/u-boot/arch/arm/cpu/arm926ejs/lpc32xx/Kconfig
/openbmc/u-boot/arch/arm/cpu/arm926ejs/lpc32xx/dram.c
/openbmc/u-boot/arch/arm/cpu/armv8/zynqmp/cpu.c
/openbmc/u-boot/arch/arm/dts/Makefile
/openbmc/u-boot/arch/arm/dts/fsl-imx8-ca35.dtsi
/openbmc/u-boot/arch/arm/dts/fsl-imx8dx.dtsi
/openbmc/u-boot/arch/arm/dts/fsl-imx8dxp.dtsi
/openbmc/u-boot/arch/arm/dts/fsl-imx8qxp-mek.dts
/openbmc/u-boot/arch/arm/dts/fsl-imx8qxp.dtsi
/openbmc/u-boot/arch/arm/dts/imx6ul-opos6ul-u-boot.dtsi
/openbmc/u-boot/arch/arm/dts/imx6ul-opos6ul.dtsi
/openbmc/u-boot/arch/arm/dts/imx6ul-opos6uldev-u-boot.dtsi
/openbmc/u-boot/arch/arm/dts/imx6ul-opos6uldev.dts
/openbmc/u-boot/arch/arm/dts/r8a77990-ebisu.dts
/openbmc/u-boot/arch/arm/dts/r8a77990.dtsi
/openbmc/u-boot/arch/arm/dts/zynq-7000.dtsi
/openbmc/u-boot/arch/arm/dts/zynq-dlc20-rev1.0.dts
/openbmc/u-boot/arch/arm/include/asm/arch-aspeed/wdt.h
/openbmc/u-boot/arch/arm/include/asm/arch-imx/cpu.h
/openbmc/u-boot/arch/arm/include/asm/arch-imx8/clock.h
/openbmc/u-boot/arch/arm/include/asm/arch-imx8/gpio.h
/openbmc/u-boot/arch/arm/include/asm/arch-imx8/imx-regs.h
/openbmc/u-boot/arch/arm/include/asm/arch-imx8/imx8-pins.h
/openbmc/u-boot/arch/arm/include/asm/arch-imx8/iomux.h
/openbmc/u-boot/arch/arm/include/asm/arch-imx8/power-domain.h
/openbmc/u-boot/arch/arm/include/asm/arch-imx8/sci/rpc.h
/openbmc/u-boot/arch/arm/include/asm/arch-imx8/sci/sci.h
/openbmc/u-boot/arch/arm/include/asm/arch-imx8/sci/svc/misc/api.h
/openbmc/u-boot/arch/arm/include/asm/arch-imx8/sci/svc/pad/api.h
/openbmc/u-boot/arch/arm/include/asm/arch-imx8/sci/svc/pm/api.h
/openbmc/u-boot/arch/arm/include/asm/arch-imx8/sci/svc/rm/api.h
/openbmc/u-boot/arch/arm/include/asm/arch-imx8/sci/types.h
/openbmc/u-boot/arch/arm/include/asm/arch-imx8/sys_proto.h
/openbmc/u-boot/arch/arm/include/asm/arch-lpc32xx/config.h
/openbmc/u-boot/arch/arm/include/asm/arch-mx5/clock.h
/openbmc/u-boot/arch/arm/include/asm/arch-zynqmp/sys_proto.h
/openbmc/u-boot/arch/arm/include/asm/armv8/cpu.h
/openbmc/u-boot/arch/arm/include/asm/global_data.h
/openbmc/u-boot/arch/arm/include/asm/mach-imx/boot_mode.h
/openbmc/u-boot/arch/arm/include/asm/mach-imx/sys_proto.h
/openbmc/u-boot/arch/arm/lib/gic_64.S
/openbmc/u-boot/arch/arm/mach-imx/Makefile
/openbmc/u-boot/arch/arm/mach-imx/imx8/Kconfig
/openbmc/u-boot/arch/arm/mach-imx/imx8/Makefile
/openbmc/u-boot/arch/arm/mach-imx/imx8/clock.c
/openbmc/u-boot/arch/arm/mach-imx/imx8/cpu.c
/openbmc/u-boot/arch/arm/mach-imx/imx8/iomux.c
/openbmc/u-boot/arch/arm/mach-imx/mx5/Kconfig
/openbmc/u-boot/arch/arm/mach-imx/mx5/clock.c
/openbmc/u-boot/arch/arm/mach-imx/mx7/ddr.c
/openbmc/u-boot/arch/arm/mach-imx/mx7/soc.c
/openbmc/u-boot/arch/arm/mach-imx/syscounter.c
/openbmc/u-boot/arch/arm/mach-omap2/Kconfig
/openbmc/u-boot/arch/arm/mach-rmobile/Kconfig
/openbmc/u-boot/arch/arm/mach-rmobile/cpu_info-rcar.c
/openbmc/u-boot/arch/arm/mach-versal/Kconfig
/openbmc/u-boot/arch/arm/mach-versal/Makefile
/openbmc/u-boot/arch/arm/mach-versal/clk.c
/openbmc/u-boot/arch/arm/mach-versal/cpu.c
/openbmc/u-boot/arch/arm/mach-versal/include/mach/gpio.h
/openbmc/u-boot/arch/arm/mach-versal/include/mach/hardware.h
/openbmc/u-boot/arch/arm/mach-versal/include/mach/sys_proto.h
/openbmc/u-boot/arch/sandbox/dts/test.dts
/openbmc/u-boot/arch/x86/config.mk
/openbmc/u-boot/arch/x86/cpu/quark/Kconfig
/openbmc/u-boot/arch/x86/cpu/start64.S
/openbmc/u-boot/arch/x86/cpu/x86_64/cpu.c
/openbmc/u-boot/arch/x86/lib/bootm.c
/openbmc/u-boot/arch/x86/lib/relocate.c
/openbmc/u-boot/board/atmel/at91sam9x5ek/at91sam9x5ek.c
/openbmc/u-boot/board/atmel/common/board.c
/openbmc/u-boot/board/freescale/imx8qxp_mek/Kconfig
/openbmc/u-boot/board/freescale/imx8qxp_mek/MAINTAINERS
/openbmc/u-boot/board/freescale/imx8qxp_mek/Makefile
/openbmc/u-boot/board/freescale/imx8qxp_mek/README
/openbmc/u-boot/board/freescale/imx8qxp_mek/imx8qxp_mek.c
/openbmc/u-boot/board/freescale/imx8qxp_mek/imximage.cfg
/openbmc/u-boot/board/freescale/mx8mq_evk/README
/openbmc/u-boot/board/ge/bx50v3/MAINTAINERS
/openbmc/u-boot/board/ge/bx50v3/bx50v3.c
/openbmc/u-boot/board/logicpd/omap3som/omap3logic.c
/openbmc/u-boot/board/menlo/m53menlo/Kconfig
/openbmc/u-boot/board/menlo/m53menlo/MAINTAINERS
/openbmc/u-boot/board/menlo/m53menlo/Makefile
/openbmc/u-boot/board/menlo/m53menlo/imximage.cfg
/openbmc/u-boot/board/menlo/m53menlo/m53menlo.c
/openbmc/u-boot/board/renesas/draak/draak.c
/openbmc/u-boot/board/renesas/eagle/eagle.c
/openbmc/u-boot/board/renesas/ebisu/ebisu.c
/openbmc/u-boot/board/renesas/salvator-x/salvator-x.c
/openbmc/u-boot/board/renesas/ulcb/ulcb.c
/openbmc/u-boot/board/samsung/common/exynos5-dt-types.c
/openbmc/u-boot/board/samsung/common/exynos5-dt.c
/openbmc/u-boot/board/technexion/pico-imx7d/pico-imx7d.c
/openbmc/u-boot/board/timll/devkit3250/Kconfig
/openbmc/u-boot/board/toradex/colibri_imx7/colibri_imx7.c
/openbmc/u-boot/board/warp7/MAINTAINERS
/openbmc/u-boot/board/work-microwave/work_92105/Kconfig
/openbmc/u-boot/board/xilinx/versal/MAINTAINERS
/openbmc/u-boot/board/xilinx/versal/Makefile
/openbmc/u-boot/board/xilinx/versal/board.c
/openbmc/u-boot/board/xilinx/zynq/zynq-dlc20-rev1.0/ps7_init_gpl.c
/openbmc/u-boot/board/xilinx/zynqmp/cmds.c
/openbmc/u-boot/cmd/Kconfig
/openbmc/u-boot/common/image.c
/openbmc/u-boot/common/spl/spl_fit.c
/openbmc/u-boot/configs/3c120_defconfig
/openbmc/u-boot/configs/B4420QDS_NAND_defconfig
/openbmc/u-boot/configs/B4420QDS_SPIFLASH_defconfig
/openbmc/u-boot/configs/B4420QDS_defconfig
/openbmc/u-boot/configs/B4860QDS_NAND_defconfig
/openbmc/u-boot/configs/B4860QDS_SECURE_BOOT_defconfig
/openbmc/u-boot/configs/B4860QDS_SPIFLASH_defconfig
/openbmc/u-boot/configs/B4860QDS_defconfig
/openbmc/u-boot/configs/BSC9132QDS_NAND_DDRCLK100_SECURE_defconfig
/openbmc/u-boot/configs/BSC9132QDS_NAND_DDRCLK100_defconfig
/openbmc/u-boot/configs/BSC9132QDS_NAND_DDRCLK133_SECURE_defconfig
/openbmc/u-boot/configs/BSC9132QDS_NAND_DDRCLK133_defconfig
/openbmc/u-boot/configs/BSC9132QDS_NOR_DDRCLK100_SECURE_defconfig
/openbmc/u-boot/configs/BSC9132QDS_NOR_DDRCLK100_defconfig
/openbmc/u-boot/configs/BSC9132QDS_NOR_DDRCLK133_SECURE_defconfig
/openbmc/u-boot/configs/BSC9132QDS_NOR_DDRCLK133_defconfig
/openbmc/u-boot/configs/BSC9132QDS_SDCARD_DDRCLK100_SECURE_defconfig
/openbmc/u-boot/configs/BSC9132QDS_SDCARD_DDRCLK100_defconfig
/openbmc/u-boot/configs/BSC9132QDS_SDCARD_DDRCLK133_SECURE_defconfig
/openbmc/u-boot/configs/BSC9132QDS_SDCARD_DDRCLK133_defconfig
/openbmc/u-boot/configs/BSC9132QDS_SPIFLASH_DDRCLK100_SECURE_defconfig
/openbmc/u-boot/configs/BSC9132QDS_SPIFLASH_DDRCLK100_defconfig
/openbmc/u-boot/configs/BSC9132QDS_SPIFLASH_DDRCLK133_SECURE_defconfig
/openbmc/u-boot/configs/BSC9132QDS_SPIFLASH_DDRCLK133_defconfig
/openbmc/u-boot/configs/C29XPCIE_NAND_defconfig
/openbmc/u-boot/configs/C29XPCIE_NOR_SECBOOT_defconfig
/openbmc/u-boot/configs/C29XPCIE_SPIFLASH_SECBOOT_defconfig
/openbmc/u-boot/configs/C29XPCIE_SPIFLASH_defconfig
/openbmc/u-boot/configs/C29XPCIE_defconfig
/openbmc/u-boot/configs/M5208EVBE_defconfig
/openbmc/u-boot/configs/M52277EVB_defconfig
/openbmc/u-boot/configs/M52277EVB_stmicro_defconfig
/openbmc/u-boot/configs/M5235EVB_Flash32_defconfig
/openbmc/u-boot/configs/M5235EVB_defconfig
/openbmc/u-boot/configs/M5249EVB_defconfig
/openbmc/u-boot/configs/M5272C3_defconfig
/openbmc/u-boot/configs/M5275EVB_defconfig
/openbmc/u-boot/configs/M5282EVB_defconfig
/openbmc/u-boot/configs/M53017EVB_defconfig
/openbmc/u-boot/configs/M5329AFEE_defconfig
/openbmc/u-boot/configs/M5329BFEE_defconfig
/openbmc/u-boot/configs/M5373EVB_defconfig
/openbmc/u-boot/configs/M54451EVB_defconfig
/openbmc/u-boot/configs/M54451EVB_stmicro_defconfig
/openbmc/u-boot/configs/M54455EVB_a66_defconfig
/openbmc/u-boot/configs/M54455EVB_defconfig
/openbmc/u-boot/configs/M54455EVB_i66_defconfig
/openbmc/u-boot/configs/M54455EVB_intel_defconfig
/openbmc/u-boot/configs/M54455EVB_stm33_defconfig
/openbmc/u-boot/configs/M5475AFE_defconfig
/openbmc/u-boot/configs/M5475BFE_defconfig
/openbmc/u-boot/configs/M5475CFE_defconfig
/openbmc/u-boot/configs/M5475DFE_defconfig
/openbmc/u-boot/configs/M5475EFE_defconfig
/openbmc/u-boot/configs/M5475FFE_defconfig
/openbmc/u-boot/configs/M5475GFE_defconfig
/openbmc/u-boot/configs/M5485AFE_defconfig
/openbmc/u-boot/configs/M5485BFE_defconfig
/openbmc/u-boot/configs/M5485CFE_defconfig
/openbmc/u-boot/configs/M5485DFE_defconfig
/openbmc/u-boot/configs/M5485EFE_defconfig
/openbmc/u-boot/configs/M5485FFE_defconfig
/openbmc/u-boot/configs/M5485GFE_defconfig
/openbmc/u-boot/configs/M5485HFE_defconfig
/openbmc/u-boot/configs/MCR3000_defconfig
/openbmc/u-boot/configs/MPC8308RDB_defconfig
/openbmc/u-boot/configs/MPC8313ERDB_33_defconfig
/openbmc/u-boot/configs/MPC8313ERDB_66_defconfig
/openbmc/u-boot/configs/MPC8313ERDB_NAND_33_defconfig
/openbmc/u-boot/configs/MPC8313ERDB_NAND_66_defconfig
/openbmc/u-boot/configs/MPC8315ERDB_defconfig
/openbmc/u-boot/configs/MPC8323ERDB_defconfig
/openbmc/u-boot/configs/MPC832XEMDS_ATM_defconfig
/openbmc/u-boot/configs/MPC832XEMDS_HOST_33_defconfig
/openbmc/u-boot/configs/MPC832XEMDS_HOST_66_defconfig
/openbmc/u-boot/configs/MPC832XEMDS_SLAVE_defconfig
/openbmc/u-boot/configs/MPC832XEMDS_defconfig
/openbmc/u-boot/configs/MPC8349EMDS_defconfig
/openbmc/u-boot/configs/MPC8349ITXGP_defconfig
/openbmc/u-boot/configs/MPC8349ITX_LOWBOOT_defconfig
/openbmc/u-boot/configs/MPC8349ITX_defconfig
/openbmc/u-boot/configs/MPC837XEMDS_HOST_defconfig
/openbmc/u-boot/configs/MPC837XEMDS_defconfig
/openbmc/u-boot/configs/MPC837XERDB_defconfig
/openbmc/u-boot/configs/MPC8536DS_36BIT_defconfig
/openbmc/u-boot/configs/MPC8536DS_SDCARD_defconfig
/openbmc/u-boot/configs/MPC8536DS_SPIFLASH_defconfig
/openbmc/u-boot/configs/MPC8536DS_defconfig
/openbmc/u-boot/configs/MPC8541CDS_defconfig
/openbmc/u-boot/configs/MPC8541CDS_legacy_defconfig
/openbmc/u-boot/configs/MPC8544DS_defconfig
/openbmc/u-boot/configs/MPC8548CDS_36BIT_defconfig
/openbmc/u-boot/configs/MPC8548CDS_defconfig
/openbmc/u-boot/configs/MPC8548CDS_legacy_defconfig
/openbmc/u-boot/configs/MPC8555CDS_defconfig
/openbmc/u-boot/configs/MPC8555CDS_legacy_defconfig
/openbmc/u-boot/configs/MPC8568MDS_defconfig
/openbmc/u-boot/configs/MPC8569MDS_ATM_defconfig
/openbmc/u-boot/configs/MPC8569MDS_defconfig
/openbmc/u-boot/configs/MPC8572DS_36BIT_defconfig
/openbmc/u-boot/configs/MPC8572DS_defconfig
/openbmc/u-boot/configs/MPC8610HPCD_defconfig
/openbmc/u-boot/configs/MPC8641HPCN_36BIT_defconfig
/openbmc/u-boot/configs/MPC8641HPCN_defconfig
/openbmc/u-boot/configs/MigoR_defconfig
/openbmc/u-boot/configs/P1010RDB-PA_36BIT_NAND_SECBOOT_defconfig
/openbmc/u-boot/configs/P1010RDB-PA_36BIT_NAND_defconfig
/openbmc/u-boot/configs/P1010RDB-PA_36BIT_NOR_SECBOOT_defconfig
/openbmc/u-boot/configs/P1010RDB-PA_36BIT_NOR_defconfig
/openbmc/u-boot/configs/P1010RDB-PA_36BIT_SDCARD_defconfig
/openbmc/u-boot/configs/P1010RDB-PA_36BIT_SPIFLASH_SECBOOT_defconfig
/openbmc/u-boot/configs/P1010RDB-PA_36BIT_SPIFLASH_defconfig
/openbmc/u-boot/configs/P1010RDB-PA_NAND_SECBOOT_defconfig
/openbmc/u-boot/configs/P1010RDB-PA_NAND_defconfig
/openbmc/u-boot/configs/P1010RDB-PA_NOR_SECBOOT_defconfig
/openbmc/u-boot/configs/P1010RDB-PA_NOR_defconfig
/openbmc/u-boot/configs/P1010RDB-PA_SDCARD_defconfig
/openbmc/u-boot/configs/P1010RDB-PA_SPIFLASH_SECBOOT_defconfig
/openbmc/u-boot/configs/P1010RDB-PA_SPIFLASH_defconfig
/openbmc/u-boot/configs/P1010RDB-PB_36BIT_NAND_SECBOOT_defconfig
/openbmc/u-boot/configs/P1010RDB-PB_36BIT_NAND_defconfig
/openbmc/u-boot/configs/P1010RDB-PB_36BIT_NOR_SECBOOT_defconfig
/openbmc/u-boot/configs/P1010RDB-PB_36BIT_NOR_defconfig
/openbmc/u-boot/configs/P1010RDB-PB_36BIT_SDCARD_defconfig
/openbmc/u-boot/configs/P1010RDB-PB_36BIT_SPIFLASH_SECBOOT_defconfig
/openbmc/u-boot/configs/P1010RDB-PB_36BIT_SPIFLASH_defconfig
/openbmc/u-boot/configs/P1010RDB-PB_NAND_SECBOOT_defconfig
/openbmc/u-boot/configs/P1010RDB-PB_NAND_defconfig
/openbmc/u-boot/configs/P1010RDB-PB_NOR_SECBOOT_defconfig
/openbmc/u-boot/configs/P1010RDB-PB_NOR_defconfig
/openbmc/u-boot/configs/P1010RDB-PB_SDCARD_defconfig
/openbmc/u-boot/configs/P1010RDB-PB_SPIFLASH_SECBOOT_defconfig
/openbmc/u-boot/configs/P1010RDB-PB_SPIFLASH_defconfig
/openbmc/u-boot/configs/P1020MBG-PC_36BIT_SDCARD_defconfig
/openbmc/u-boot/configs/P1020MBG-PC_36BIT_defconfig
/openbmc/u-boot/configs/P1020MBG-PC_SDCARD_defconfig
/openbmc/u-boot/configs/P1020MBG-PC_defconfig
/openbmc/u-boot/configs/P1020RDB-PC_36BIT_NAND_defconfig
/openbmc/u-boot/configs/P1020RDB-PC_36BIT_SDCARD_defconfig
/openbmc/u-boot/configs/P1020RDB-PC_36BIT_SPIFLASH_defconfig
/openbmc/u-boot/configs/P1020RDB-PC_36BIT_defconfig
/openbmc/u-boot/configs/P1020RDB-PC_NAND_defconfig
/openbmc/u-boot/configs/P1020RDB-PC_SDCARD_defconfig
/openbmc/u-boot/configs/P1020RDB-PC_SPIFLASH_defconfig
/openbmc/u-boot/configs/P1020RDB-PC_defconfig
/openbmc/u-boot/configs/P1020RDB-PD_NAND_defconfig
/openbmc/u-boot/configs/P1020RDB-PD_SDCARD_defconfig
/openbmc/u-boot/configs/P1020RDB-PD_SPIFLASH_defconfig
/openbmc/u-boot/configs/P1020RDB-PD_defconfig
/openbmc/u-boot/configs/P1020UTM-PC_36BIT_SDCARD_defconfig
/openbmc/u-boot/configs/P1020UTM-PC_36BIT_defconfig
/openbmc/u-boot/configs/P1020UTM-PC_SDCARD_defconfig
/openbmc/u-boot/configs/P1020UTM-PC_defconfig
/openbmc/u-boot/configs/P1021RDB-PC_36BIT_NAND_defconfig
/openbmc/u-boot/configs/P1021RDB-PC_36BIT_SDCARD_defconfig
/openbmc/u-boot/configs/P1021RDB-PC_36BIT_SPIFLASH_defconfig
/openbmc/u-boot/configs/P1021RDB-PC_36BIT_defconfig
/openbmc/u-boot/configs/P1021RDB-PC_NAND_defconfig
/openbmc/u-boot/configs/P1021RDB-PC_SDCARD_defconfig
/openbmc/u-boot/configs/P1021RDB-PC_SPIFLASH_defconfig
/openbmc/u-boot/configs/P1021RDB-PC_defconfig
/openbmc/u-boot/configs/P1022DS_36BIT_NAND_defconfig
/openbmc/u-boot/configs/P1022DS_36BIT_SDCARD_defconfig
/openbmc/u-boot/configs/P1022DS_36BIT_SPIFLASH_defconfig
/openbmc/u-boot/configs/P1022DS_36BIT_defconfig
/openbmc/u-boot/configs/P1022DS_NAND_defconfig
/openbmc/u-boot/configs/P1022DS_SDCARD_defconfig
/openbmc/u-boot/configs/P1022DS_SPIFLASH_defconfig
/openbmc/u-boot/configs/P1022DS_defconfig
/openbmc/u-boot/configs/P1023RDB_defconfig
/openbmc/u-boot/configs/P1024RDB_36BIT_defconfig
/openbmc/u-boot/configs/P1024RDB_NAND_defconfig
/openbmc/u-boot/configs/P1024RDB_SDCARD_defconfig
/openbmc/u-boot/configs/P1024RDB_SPIFLASH_defconfig
/openbmc/u-boot/configs/P1024RDB_defconfig
/openbmc/u-boot/configs/P1025RDB_36BIT_defconfig
/openbmc/u-boot/configs/P1025RDB_NAND_defconfig
/openbmc/u-boot/configs/P1025RDB_SDCARD_defconfig
/openbmc/u-boot/configs/P1025RDB_SPIFLASH_defconfig
/openbmc/u-boot/configs/P1025RDB_defconfig
/openbmc/u-boot/configs/P2020RDB-PC_36BIT_NAND_defconfig
/openbmc/u-boot/configs/P2020RDB-PC_36BIT_SDCARD_defconfig
/openbmc/u-boot/configs/P2020RDB-PC_36BIT_SPIFLASH_defconfig
/openbmc/u-boot/configs/P2020RDB-PC_36BIT_defconfig
/openbmc/u-boot/configs/P2020RDB-PC_NAND_defconfig
/openbmc/u-boot/configs/P2020RDB-PC_SDCARD_defconfig
/openbmc/u-boot/configs/P2020RDB-PC_SPIFLASH_defconfig
/openbmc/u-boot/configs/P2020RDB-PC_defconfig
/openbmc/u-boot/configs/P2041RDB_NAND_defconfig
/openbmc/u-boot/configs/P2041RDB_SDCARD_defconfig
/openbmc/u-boot/configs/P2041RDB_SECURE_BOOT_defconfig
/openbmc/u-boot/configs/P2041RDB_SPIFLASH_defconfig
/openbmc/u-boot/configs/P2041RDB_defconfig
/openbmc/u-boot/configs/P3041DS_NAND_SECURE_BOOT_defconfig
/openbmc/u-boot/configs/P3041DS_NAND_defconfig
/openbmc/u-boot/configs/P3041DS_SDCARD_defconfig
/openbmc/u-boot/configs/P3041DS_SECURE_BOOT_defconfig
/openbmc/u-boot/configs/P3041DS_SPIFLASH_defconfig
/openbmc/u-boot/configs/P3041DS_defconfig
/openbmc/u-boot/configs/P4080DS_SDCARD_defconfig
/openbmc/u-boot/configs/P4080DS_SECURE_BOOT_defconfig
/openbmc/u-boot/configs/P4080DS_SPIFLASH_defconfig
/openbmc/u-boot/configs/P4080DS_defconfig
/openbmc/u-boot/configs/P5020DS_NAND_SECURE_BOOT_defconfig
/openbmc/u-boot/configs/P5020DS_NAND_defconfig
/openbmc/u-boot/configs/P5020DS_SDCARD_defconfig
/openbmc/u-boot/configs/P5020DS_SECURE_BOOT_defconfig
/openbmc/u-boot/configs/P5020DS_SPIFLASH_defconfig
/openbmc/u-boot/configs/P5020DS_defconfig
/openbmc/u-boot/configs/P5040DS_NAND_SECURE_BOOT_defconfig
/openbmc/u-boot/configs/P5040DS_NAND_defconfig
/openbmc/u-boot/configs/P5040DS_SDCARD_defconfig
/openbmc/u-boot/configs/P5040DS_SECURE_BOOT_defconfig
/openbmc/u-boot/configs/P5040DS_SPIFLASH_defconfig
/openbmc/u-boot/configs/P5040DS_defconfig
/openbmc/u-boot/configs/T1023RDB_NAND_defconfig
/openbmc/u-boot/configs/T1023RDB_SDCARD_defconfig
/openbmc/u-boot/configs/T1023RDB_SECURE_BOOT_defconfig
/openbmc/u-boot/configs/T1023RDB_SPIFLASH_defconfig
/openbmc/u-boot/configs/T1023RDB_defconfig
/openbmc/u-boot/configs/T1024QDS_DDR4_SECURE_BOOT_defconfig
/openbmc/u-boot/configs/T1024QDS_DDR4_defconfig
/openbmc/u-boot/configs/T1024QDS_NAND_defconfig
/openbmc/u-boot/configs/T1024QDS_SDCARD_defconfig
/openbmc/u-boot/configs/T1024QDS_SECURE_BOOT_defconfig
/openbmc/u-boot/configs/T1024QDS_SPIFLASH_defconfig
/openbmc/u-boot/configs/T1024QDS_defconfig
/openbmc/u-boot/configs/T1024RDB_NAND_defconfig
/openbmc/u-boot/configs/T1024RDB_SDCARD_defconfig
/openbmc/u-boot/configs/T1024RDB_SECURE_BOOT_defconfig
/openbmc/u-boot/configs/T1024RDB_SPIFLASH_defconfig
/openbmc/u-boot/configs/T1024RDB_defconfig
/openbmc/u-boot/configs/T1040D4RDB_NAND_defconfig
/openbmc/u-boot/configs/T1040D4RDB_SDCARD_defconfig
/openbmc/u-boot/configs/T1040D4RDB_SECURE_BOOT_defconfig
/openbmc/u-boot/configs/T1040D4RDB_SPIFLASH_defconfig
/openbmc/u-boot/configs/T1040D4RDB_defconfig
/openbmc/u-boot/configs/T1040QDS_DDR4_defconfig
/openbmc/u-boot/configs/T1040QDS_SECURE_BOOT_defconfig
/openbmc/u-boot/configs/T1040QDS_defconfig
/openbmc/u-boot/configs/T1040RDB_NAND_defconfig
/openbmc/u-boot/configs/T1040RDB_SDCARD_defconfig
/openbmc/u-boot/configs/T1040RDB_SECURE_BOOT_defconfig
/openbmc/u-boot/configs/T1040RDB_SPIFLASH_defconfig
/openbmc/u-boot/configs/T1040RDB_defconfig
/openbmc/u-boot/configs/T1042D4RDB_NAND_defconfig
/openbmc/u-boot/configs/T1042D4RDB_SDCARD_defconfig
/openbmc/u-boot/configs/T1042D4RDB_SECURE_BOOT_defconfig
/openbmc/u-boot/configs/T1042D4RDB_SPIFLASH_defconfig
/openbmc/u-boot/configs/T1042D4RDB_defconfig
/openbmc/u-boot/configs/T1042RDB_PI_NAND_SECURE_BOOT_defconfig
/openbmc/u-boot/configs/T1042RDB_PI_NAND_defconfig
/openbmc/u-boot/configs/T1042RDB_PI_SDCARD_defconfig
/openbmc/u-boot/configs/T1042RDB_PI_SPIFLASH_defconfig
/openbmc/u-boot/configs/T1042RDB_PI_defconfig
/openbmc/u-boot/configs/T1042RDB_SECURE_BOOT_defconfig
/openbmc/u-boot/configs/T1042RDB_defconfig
/openbmc/u-boot/configs/T2080QDS_NAND_defconfig
/openbmc/u-boot/configs/T2080QDS_SDCARD_defconfig
/openbmc/u-boot/configs/T2080QDS_SECURE_BOOT_defconfig
/openbmc/u-boot/configs/T2080QDS_SPIFLASH_defconfig
/openbmc/u-boot/configs/T2080QDS_defconfig
/openbmc/u-boot/configs/T2080RDB_NAND_defconfig
/openbmc/u-boot/configs/T2080RDB_SDCARD_defconfig
/openbmc/u-boot/configs/T2080RDB_SECURE_BOOT_defconfig
/openbmc/u-boot/configs/T2080RDB_SPIFLASH_defconfig
/openbmc/u-boot/configs/T2080RDB_defconfig
/openbmc/u-boot/configs/T2081QDS_NAND_defconfig
/openbmc/u-boot/configs/T2081QDS_SDCARD_defconfig
/openbmc/u-boot/configs/T2081QDS_SPIFLASH_defconfig
/openbmc/u-boot/configs/T2081QDS_defconfig
/openbmc/u-boot/configs/T4160QDS_NAND_defconfig
/openbmc/u-boot/configs/T4160QDS_SDCARD_defconfig
/openbmc/u-boot/configs/T4160QDS_SECURE_BOOT_defconfig
/openbmc/u-boot/configs/T4160QDS_defconfig
/openbmc/u-boot/configs/T4160RDB_defconfig
/openbmc/u-boot/configs/T4240QDS_NAND_defconfig
/openbmc/u-boot/configs/T4240QDS_SDCARD_defconfig
/openbmc/u-boot/configs/T4240QDS_SECURE_BOOT_defconfig
/openbmc/u-boot/configs/T4240QDS_defconfig
/openbmc/u-boot/configs/T4240RDB_SDCARD_defconfig
/openbmc/u-boot/configs/T4240RDB_defconfig
/openbmc/u-boot/configs/TQM834x_defconfig
/openbmc/u-boot/configs/TWR-P1025_defconfig
/openbmc/u-boot/configs/UCP1020_SPIFLASH_defconfig
/openbmc/u-boot/configs/UCP1020_defconfig
/openbmc/u-boot/configs/adp-ae3xx_defconfig
/openbmc/u-boot/configs/adp-ag101p_defconfig
/openbmc/u-boot/configs/am335x_evm_nor_defconfig
/openbmc/u-boot/configs/am335x_evm_norboot_defconfig
/openbmc/u-boot/configs/amcore_defconfig
/openbmc/u-boot/configs/ap325rxa_defconfig
/openbmc/u-boot/configs/ap_sh4a_4a_defconfig
/openbmc/u-boot/configs/aristainetos2_defconfig
/openbmc/u-boot/configs/aristainetos2b_defconfig
/openbmc/u-boot/configs/aristainetos_defconfig
/openbmc/u-boot/configs/astro_mcf5373l_defconfig
/openbmc/u-boot/configs/at91rm9200ek_defconfig
/openbmc/u-boot/configs/at91rm9200ek_ram_defconfig
/openbmc/u-boot/configs/at91sam9263ek_norflash_boot_defconfig
/openbmc/u-boot/configs/at91sam9263ek_norflash_defconfig
/openbmc/u-boot/configs/at91sam9x5ek_dataflash_defconfig
/openbmc/u-boot/configs/at91sam9x5ek_mmc_defconfig
/openbmc/u-boot/configs/at91sam9x5ek_nandflash_defconfig
/openbmc/u-boot/configs/at91sam9x5ek_spiflash_defconfig
/openbmc/u-boot/configs/avnet_ultra96_rev1_defconfig
/openbmc/u-boot/configs/ax25-ae350_defconfig
/openbmc/u-boot/configs/blanche_defconfig
/openbmc/u-boot/configs/boston32r2_defconfig
/openbmc/u-boot/configs/boston32r2el_defconfig
/openbmc/u-boot/configs/boston32r6_defconfig
/openbmc/u-boot/configs/boston32r6el_defconfig
/openbmc/u-boot/configs/boston64r2_defconfig
/openbmc/u-boot/configs/boston64r2el_defconfig
/openbmc/u-boot/configs/boston64r6_defconfig
/openbmc/u-boot/configs/boston64r6el_defconfig
/openbmc/u-boot/configs/caddy2_defconfig
/openbmc/u-boot/configs/calimain_defconfig
/openbmc/u-boot/configs/chromebook_samus_defconfig
/openbmc/u-boot/configs/colibri_pxa270_defconfig
/openbmc/u-boot/configs/comtrend_ct5361_ram_defconfig
/openbmc/u-boot/configs/comtrend_wap5813n_ram_defconfig
/openbmc/u-boot/configs/da850evm_direct_nor_defconfig
/openbmc/u-boot/configs/devkit3250_defconfig
/openbmc/u-boot/configs/dh_imx6_defconfig
/openbmc/u-boot/configs/display5_defconfig
/openbmc/u-boot/configs/display5_factory_defconfig
/openbmc/u-boot/configs/eb_cpu5282_defconfig
/openbmc/u-boot/configs/eb_cpu5282_internal_defconfig
/openbmc/u-boot/configs/ecovec_defconfig
/openbmc/u-boot/configs/edb9315a_defconfig
/openbmc/u-boot/configs/edminiv2_defconfig
/openbmc/u-boot/configs/espt_defconfig
/openbmc/u-boot/configs/flea3_defconfig
/openbmc/u-boot/configs/ge_bx50v3_defconfig
/openbmc/u-boot/configs/hrcon_defconfig
/openbmc/u-boot/configs/hrcon_dh_defconfig
/openbmc/u-boot/configs/huawei_hg556a_ram_defconfig
/openbmc/u-boot/configs/ids8313_defconfig
/openbmc/u-boot/configs/imx8qxp_mek_defconfig
/openbmc/u-boot/configs/integratorap_cm720t_defconfig
/openbmc/u-boot/configs/integratorap_cm920t_defconfig
/openbmc/u-boot/configs/integratorap_cm926ejs_defconfig
/openbmc/u-boot/configs/integratorap_cm946es_defconfig
/openbmc/u-boot/configs/integratorcp_cm1136_defconfig
/openbmc/u-boot/configs/integratorcp_cm920t_defconfig
/openbmc/u-boot/configs/integratorcp_cm926ejs_defconfig
/openbmc/u-boot/configs/integratorcp_cm946es_defconfig
/openbmc/u-boot/configs/kmcoge5ne_defconfig
/openbmc/u-boot/configs/kmeter1_defconfig
/openbmc/u-boot/configs/kmopti2_defconfig
/openbmc/u-boot/configs/kmsupx5_defconfig
/openbmc/u-boot/configs/kmtegr1_defconfig
/openbmc/u-boot/configs/kmtepr2_defconfig
/openbmc/u-boot/configs/kmvect1_defconfig
/openbmc/u-boot/configs/kp_imx6q_tpc_defconfig
/openbmc/u-boot/configs/kzm9g_defconfig
/openbmc/u-boot/configs/ls1021aqds_ddr4_nor_defconfig
/openbmc/u-boot/configs/ls1021aqds_ddr4_nor_lpuart_defconfig
/openbmc/u-boot/configs/ls1021aqds_nand_defconfig
/openbmc/u-boot/configs/ls1021aqds_nor_SECURE_BOOT_defconfig
/openbmc/u-boot/configs/ls1021aqds_nor_defconfig
/openbmc/u-boot/configs/ls1021aqds_nor_lpuart_defconfig
/openbmc/u-boot/configs/ls1021aqds_sdcard_ifc_defconfig
/openbmc/u-boot/configs/ls1021atwr_nor_SECURE_BOOT_defconfig
/openbmc/u-boot/configs/ls1021atwr_nor_defconfig
/openbmc/u-boot/configs/ls1021atwr_nor_lpuart_defconfig
/openbmc/u-boot/configs/ls1021atwr_sdcard_ifc_SECURE_BOOT_defconfig
/openbmc/u-boot/configs/ls1021atwr_sdcard_ifc_defconfig
/openbmc/u-boot/configs/ls1043aqds_defconfig
/openbmc/u-boot/configs/ls1043aqds_lpuart_defconfig
/openbmc/u-boot/configs/ls1043aqds_nand_defconfig
/openbmc/u-boot/configs/ls1043aqds_nor_ddr3_defconfig
/openbmc/u-boot/configs/ls1043aqds_sdcard_ifc_defconfig
/openbmc/u-boot/configs/ls1043ardb_SECURE_BOOT_defconfig
/openbmc/u-boot/configs/ls1043ardb_defconfig
/openbmc/u-boot/configs/ls1043ardb_nand_SECURE_BOOT_defconfig
/openbmc/u-boot/configs/ls1043ardb_nand_defconfig
/openbmc/u-boot/configs/ls1043ardb_sdcard_SECURE_BOOT_defconfig
/openbmc/u-boot/configs/ls1043ardb_sdcard_defconfig
/openbmc/u-boot/configs/ls1046aqds_SECURE_BOOT_defconfig
/openbmc/u-boot/configs/ls1046aqds_defconfig
/openbmc/u-boot/configs/ls1046aqds_lpuart_defconfig
/openbmc/u-boot/configs/ls1046aqds_nand_defconfig
/openbmc/u-boot/configs/ls1046aqds_sdcard_ifc_defconfig
/openbmc/u-boot/configs/ls1088aqds_defconfig
/openbmc/u-boot/configs/ls1088aqds_sdcard_ifc_defconfig
/openbmc/u-boot/configs/ls2080a_simu_defconfig
/openbmc/u-boot/configs/ls2080aqds_SECURE_BOOT_defconfig
/openbmc/u-boot/configs/ls2080aqds_defconfig
/openbmc/u-boot/configs/ls2080ardb_SECURE_BOOT_defconfig
/openbmc/u-boot/configs/ls2080ardb_defconfig
/openbmc/u-boot/configs/ls2080ardb_nand_defconfig
/openbmc/u-boot/configs/m53menlo_defconfig
/openbmc/u-boot/configs/malta64_defconfig
/openbmc/u-boot/configs/malta64el_defconfig
/openbmc/u-boot/configs/malta_defconfig
/openbmc/u-boot/configs/maltael_defconfig
/openbmc/u-boot/configs/mccmon6_nor_defconfig
/openbmc/u-boot/configs/mccmon6_sd_defconfig
/openbmc/u-boot/configs/microblaze-generic_defconfig
/openbmc/u-boot/configs/mpc8308_p1m_defconfig
/openbmc/u-boot/configs/mpr2_defconfig
/openbmc/u-boot/configs/ms7720se_defconfig
/openbmc/u-boot/configs/ms7722se_defconfig
/openbmc/u-boot/configs/ms7750se_defconfig
/openbmc/u-boot/configs/mx35pdk_defconfig
/openbmc/u-boot/configs/mx53ppd_defconfig
/openbmc/u-boot/configs/odroid-xu3_defconfig
/openbmc/u-boot/configs/omap35_logic_somlv_defconfig
/openbmc/u-boot/configs/omap3_logic_somlv_defconfig
/openbmc/u-boot/configs/pico-hobbit-imx7d_defconfig
/openbmc/u-boot/configs/pico-imx7d_defconfig
/openbmc/u-boot/configs/pico-pi-imx7d_defconfig
/openbmc/u-boot/configs/pm9261_defconfig
/openbmc/u-boot/configs/pm9263_defconfig
/openbmc/u-boot/configs/qemu-x86_64_defconfig
/openbmc/u-boot/configs/qemu_mips64_defconfig
/openbmc/u-boot/configs/qemu_mips64el_defconfig
/openbmc/u-boot/configs/qemu_mips_defconfig
/openbmc/u-boot/configs/qemu_mipsel_defconfig
/openbmc/u-boot/configs/r0p7734_defconfig
/openbmc/u-boot/configs/r2dplus_defconfig
/openbmc/u-boot/configs/r7780mp_defconfig
/openbmc/u-boot/configs/r8a7795_salvator-x_defconfig
/openbmc/u-boot/configs/r8a7795_ulcb_defconfig
/openbmc/u-boot/configs/r8a77965_salvator-x_defconfig
/openbmc/u-boot/configs/r8a7796_salvator-x_defconfig
/openbmc/u-boot/configs/r8a7796_ulcb_defconfig
/openbmc/u-boot/configs/r8a77970_eagle_defconfig
/openbmc/u-boot/configs/r8a77990_ebisu_defconfig
/openbmc/u-boot/configs/r8a77995_draak_defconfig
/openbmc/u-boot/configs/rsk7203_defconfig
/openbmc/u-boot/configs/rsk7264_defconfig
/openbmc/u-boot/configs/rsk7269_defconfig
/openbmc/u-boot/configs/sama5d27_som1_ek_mmc1_defconfig
/openbmc/u-boot/configs/sama5d27_som1_ek_mmc_defconfig
/openbmc/u-boot/configs/sama5d2_ptc_ek_mmc_defconfig
/openbmc/u-boot/configs/sama5d2_ptc_ek_nandflash_defconfig
/openbmc/u-boot/configs/sama5d2_xplained_emmc_defconfig
/openbmc/u-boot/configs/sama5d2_xplained_mmc_defconfig
/openbmc/u-boot/configs/sama5d2_xplained_spiflash_defconfig
/openbmc/u-boot/configs/sama5d3_xplained_mmc_defconfig
/openbmc/u-boot/configs/sama5d3_xplained_nandflash_defconfig
/openbmc/u-boot/configs/sama5d3xek_mmc_defconfig
/openbmc/u-boot/configs/sama5d3xek_nandflash_defconfig
/openbmc/u-boot/configs/sama5d3xek_spiflash_defconfig
/openbmc/u-boot/configs/sama5d4_xplained_mmc_defconfig
/openbmc/u-boot/configs/sama5d4_xplained_nandflash_defconfig
/openbmc/u-boot/configs/sama5d4_xplained_spiflash_defconfig
/openbmc/u-boot/configs/sbc8349_PCI_33_defconfig
/openbmc/u-boot/configs/sbc8349_PCI_66_defconfig
/openbmc/u-boot/configs/sbc8349_defconfig
/openbmc/u-boot/configs/sbc8548_PCI_33_PCIE_defconfig
/openbmc/u-boot/configs/sbc8548_PCI_33_defconfig
/openbmc/u-boot/configs/sbc8548_PCI_66_PCIE_defconfig
/openbmc/u-boot/configs/sbc8548_PCI_66_defconfig
/openbmc/u-boot/configs/sbc8548_defconfig
/openbmc/u-boot/configs/sbc8641d_defconfig
/openbmc/u-boot/configs/sfr_nb4-ser_ram_defconfig
/openbmc/u-boot/configs/sh7763rdp_defconfig
/openbmc/u-boot/configs/sh7785lcr_32bit_defconfig
/openbmc/u-boot/configs/sh7785lcr_defconfig
/openbmc/u-boot/configs/shmin_defconfig
/openbmc/u-boot/configs/socrates_defconfig
/openbmc/u-boot/configs/spear310_pnor_defconfig
/openbmc/u-boot/configs/spear310_usbtty_pnor_defconfig
/openbmc/u-boot/configs/spear320_pnor_defconfig
/openbmc/u-boot/configs/spear320_usbtty_pnor_defconfig
/openbmc/u-boot/configs/strider_con_defconfig
/openbmc/u-boot/configs/strider_con_dp_defconfig
/openbmc/u-boot/configs/strider_cpu_defconfig
/openbmc/u-boot/configs/strider_cpu_dp_defconfig
/openbmc/u-boot/configs/suvd3_defconfig
/openbmc/u-boot/configs/tqma6s_wru4_mmc_defconfig
/openbmc/u-boot/configs/tuge1_defconfig
/openbmc/u-boot/configs/tuxx1_defconfig
/openbmc/u-boot/configs/udoo_defconfig
/openbmc/u-boot/configs/uniphier_ld4_sld8_defconfig
/openbmc/u-boot/configs/uniphier_v7_defconfig
/openbmc/u-boot/configs/uniphier_v8_defconfig
/openbmc/u-boot/configs/vct_platinum_defconfig
/openbmc/u-boot/configs/vct_platinum_small_defconfig
/openbmc/u-boot/configs/vct_platinumavc_defconfig
/openbmc/u-boot/configs/vct_platinumavc_small_defconfig
/openbmc/u-boot/configs/vct_premium_defconfig
/openbmc/u-boot/configs/vct_premium_small_defconfig
/openbmc/u-boot/configs/ve8313_defconfig
/openbmc/u-boot/configs/vexpress_aemv8a_dram_defconfig
/openbmc/u-boot/configs/vexpress_aemv8a_juno_defconfig
/openbmc/u-boot/configs/vexpress_aemv8a_semi_defconfig
/openbmc/u-boot/configs/vexpress_ca15_tc2_defconfig
/openbmc/u-boot/configs/vexpress_ca5x2_defconfig
/openbmc/u-boot/configs/vexpress_ca9x4_defconfig
/openbmc/u-boot/configs/vme8349_defconfig
/openbmc/u-boot/configs/warp7_bl33_defconfig
/openbmc/u-boot/configs/warp7_defconfig
/openbmc/u-boot/configs/warp_defconfig
/openbmc/u-boot/configs/woodburn_defconfig
/openbmc/u-boot/configs/woodburn_sd_defconfig
/openbmc/u-boot/configs/work_92105_defconfig
/openbmc/u-boot/configs/xilinx_versal_virt_defconfig
/openbmc/u-boot/configs/xilinx_zynqmp_mini_emmc0_defconfig
/openbmc/u-boot/configs/xilinx_zynqmp_mini_emmc1_defconfig
/openbmc/u-boot/configs/xilinx_zynqmp_mini_nand_defconfig
/openbmc/u-boot/configs/xilinx_zynqmp_mini_qspi_defconfig
/openbmc/u-boot/configs/xilinx_zynqmp_zc1232_revA_defconfig
/openbmc/u-boot/configs/xilinx_zynqmp_zc1254_revA_defconfig
/openbmc/u-boot/configs/xilinx_zynqmp_zc1275_revA_defconfig
/openbmc/u-boot/configs/xilinx_zynqmp_zc1275_revB_defconfig
/openbmc/u-boot/configs/xilinx_zynqmp_zc1751_xm015_dc1_defconfig
/openbmc/u-boot/configs/xilinx_zynqmp_zc1751_xm016_dc2_defconfig
/openbmc/u-boot/configs/xilinx_zynqmp_zc1751_xm017_dc3_defconfig
/openbmc/u-boot/configs/xilinx_zynqmp_zc1751_xm018_dc4_defconfig
/openbmc/u-boot/configs/xilinx_zynqmp_zc1751_xm019_dc5_defconfig
/openbmc/u-boot/configs/xilinx_zynqmp_zcu100_revC_defconfig
/openbmc/u-boot/configs/xilinx_zynqmp_zcu102_rev1_0_defconfig
/openbmc/u-boot/configs/xilinx_zynqmp_zcu102_revA_defconfig
/openbmc/u-boot/configs/xilinx_zynqmp_zcu102_revB_defconfig
/openbmc/u-boot/configs/xilinx_zynqmp_zcu104_revA_defconfig
/openbmc/u-boot/configs/xilinx_zynqmp_zcu104_revC_defconfig
/openbmc/u-boot/configs/xilinx_zynqmp_zcu106_revA_defconfig
/openbmc/u-boot/configs/xilinx_zynqmp_zcu111_revA_defconfig
/openbmc/u-boot/configs/xpedite517x_defconfig
/openbmc/u-boot/configs/xpedite520x_defconfig
/openbmc/u-boot/configs/xpedite537x_defconfig
/openbmc/u-boot/configs/xpedite550x_defconfig
/openbmc/u-boot/configs/xtfpga_defconfig
/openbmc/u-boot/configs/zipitz2_defconfig
/openbmc/u-boot/configs/zmx25_defconfig
/openbmc/u-boot/configs/zynq_cse_nor_defconfig
/openbmc/u-boot/configs/zynq_dlc20_rev1_0_defconfig
/openbmc/u-boot/configs/zynq_zc706_defconfig
/openbmc/u-boot/configs/zynq_zc770_xm012_defconfig
/openbmc/u-boot/doc/README.x86
/openbmc/u-boot/doc/driver-model/pci-info.txt
/openbmc/u-boot/doc/imx/common/imx25.txt
/openbmc/u-boot/doc/imx/common/imx27.txt
/openbmc/u-boot/doc/imx/common/imx5.txt
/openbmc/u-boot/doc/imx/common/imx6.txt
/openbmc/u-boot/doc/imx/common/mxs.txt
/openbmc/u-boot/doc/imx/hab/habv4/encrypted_boot.txt
/openbmc/u-boot/doc/imx/hab/habv4/secure_boot.txt
/openbmc/u-boot/doc/imx/misc/sdp.txt
/openbmc/u-boot/doc/imx/mkimage/imximage.txt
/openbmc/u-boot/doc/imx/mkimage/mxsimage.txt
/openbmc/u-boot/drivers/bootcount/Kconfig
/openbmc/u-boot/drivers/bootcount/bootcount.c
/openbmc/u-boot/drivers/bootcount/bootcount_at91.c
/openbmc/u-boot/drivers/bootcount/bootcount_davinci.c
/openbmc/u-boot/drivers/bootcount/bootcount_ram.c
/openbmc/u-boot/drivers/clk/Kconfig
/openbmc/u-boot/drivers/clk/Makefile
/openbmc/u-boot/drivers/clk/imx/Kconfig
/openbmc/u-boot/drivers/clk/imx/Makefile
/openbmc/u-boot/drivers/clk/imx/clk-imx8.c
/openbmc/u-boot/drivers/gpio/mxc_gpio.c
/openbmc/u-boot/drivers/i2c/imx_lpi2c.c
/openbmc/u-boot/drivers/misc/Makefile
/openbmc/u-boot/drivers/misc/imx8/Makefile
/openbmc/u-boot/drivers/misc/imx8/scu.c
/openbmc/u-boot/drivers/misc/imx8/scu_api.c
/openbmc/u-boot/drivers/mmc/Kconfig
/openbmc/u-boot/drivers/mmc/fsl_esdhc.c
/openbmc/u-boot/drivers/mtd/Kconfig
/openbmc/u-boot/drivers/mtd/nand/raw/atmel_nand.c
/openbmc/u-boot/drivers/net/Kconfig
/openbmc/u-boot/drivers/net/zynq_gem.c
/openbmc/u-boot/drivers/pci/pci-uclass.c
/openbmc/u-boot/drivers/pinctrl/nxp/Kconfig
/openbmc/u-boot/drivers/pinctrl/nxp/Makefile
/openbmc/u-boot/drivers/pinctrl/nxp/pinctrl-imx.c
/openbmc/u-boot/drivers/pinctrl/nxp/pinctrl-imx.h
/openbmc/u-boot/drivers/pinctrl/nxp/pinctrl-imx8.c
/openbmc/u-boot/drivers/pinctrl/nxp/pinctrl-scu.c
/openbmc/u-boot/drivers/power/domain/Kconfig
/openbmc/u-boot/drivers/power/domain/Makefile
/openbmc/u-boot/drivers/power/domain/imx8-power-domain.c
/openbmc/u-boot/drivers/serial/serial_lpuart.c
/openbmc/u-boot/drivers/serial/serial_mxc.c
/openbmc/u-boot/drivers/spi/Kconfig
/openbmc/u-boot/drivers/timer/Kconfig
/openbmc/u-boot/drivers/timer/tsc_timer.c
/openbmc/u-boot/drivers/watchdog/Kconfig
/openbmc/u-boot/drivers/watchdog/ast_wdt.c
/openbmc/u-boot/env/Kconfig
/openbmc/u-boot/include/command.h
/openbmc/u-boot/include/common.h
/openbmc/u-boot/include/configs/3c120_devboard.h
/openbmc/u-boot/include/configs/B4860QDS.h
/openbmc/u-boot/include/configs/BSC9132QDS.h
/openbmc/u-boot/include/configs/C29XPCIE.h
/openbmc/u-boot/include/configs/M5208EVBE.h
/openbmc/u-boot/include/configs/M52277EVB.h
/openbmc/u-boot/include/configs/M5235EVB.h
/openbmc/u-boot/include/configs/M5249EVB.h
/openbmc/u-boot/include/configs/M5253DEMO.h
/openbmc/u-boot/include/configs/M5272C3.h
/openbmc/u-boot/include/configs/M5275EVB.h
/openbmc/u-boot/include/configs/M5282EVB.h
/openbmc/u-boot/include/configs/M53017EVB.h
/openbmc/u-boot/include/configs/M5329EVB.h
/openbmc/u-boot/include/configs/M5373EVB.h
/openbmc/u-boot/include/configs/M54418TWR.h
/openbmc/u-boot/include/configs/M54451EVB.h
/openbmc/u-boot/include/configs/M54455EVB.h
/openbmc/u-boot/include/configs/M5475EVB.h
/openbmc/u-boot/include/configs/M5485EVB.h
/openbmc/u-boot/include/configs/MCR3000.h
/openbmc/u-boot/include/configs/MPC8308RDB.h
/openbmc/u-boot/include/configs/MPC8313ERDB.h
/openbmc/u-boot/include/configs/MPC8315ERDB.h
/openbmc/u-boot/include/configs/MPC8323ERDB.h
/openbmc/u-boot/include/configs/MPC832XEMDS.h
/openbmc/u-boot/include/configs/MPC8349EMDS.h
/openbmc/u-boot/include/configs/MPC8349ITX.h
/openbmc/u-boot/include/configs/MPC837XEMDS.h
/openbmc/u-boot/include/configs/MPC837XERDB.h
/openbmc/u-boot/include/configs/MPC8536DS.h
/openbmc/u-boot/include/configs/MPC8540ADS.h
/openbmc/u-boot/include/configs/MPC8541CDS.h
/openbmc/u-boot/include/configs/MPC8544DS.h
/openbmc/u-boot/include/configs/MPC8548CDS.h
/openbmc/u-boot/include/configs/MPC8555CDS.h
/openbmc/u-boot/include/configs/MPC8560ADS.h
/openbmc/u-boot/include/configs/MPC8568MDS.h
/openbmc/u-boot/include/configs/MPC8569MDS.h
/openbmc/u-boot/include/configs/MPC8572DS.h
/openbmc/u-boot/include/configs/MPC8610HPCD.h
/openbmc/u-boot/include/configs/MPC8641HPCN.h
/openbmc/u-boot/include/configs/MigoR.h
/openbmc/u-boot/include/configs/P1010RDB.h
/openbmc/u-boot/include/configs/P1022DS.h
/openbmc/u-boot/include/configs/P1023RDB.h
/openbmc/u-boot/include/configs/P2041RDB.h
/openbmc/u-boot/include/configs/T102xQDS.h
/openbmc/u-boot/include/configs/T102xRDB.h
/openbmc/u-boot/include/configs/T1040QDS.h
/openbmc/u-boot/include/configs/T104xRDB.h
/openbmc/u-boot/include/configs/T208xQDS.h
/openbmc/u-boot/include/configs/T208xRDB.h
/openbmc/u-boot/include/configs/T4240QDS.h
/openbmc/u-boot/include/configs/T4240RDB.h
/openbmc/u-boot/include/configs/TQM834x.h
/openbmc/u-boot/include/configs/UCP1020.h
/openbmc/u-boot/include/configs/adp-ae3xx.h
/openbmc/u-boot/include/configs/adp-ag101p.h
/openbmc/u-boot/include/configs/am335x_evm.h
/openbmc/u-boot/include/configs/amcore.h
/openbmc/u-boot/include/configs/ap325rxa.h
/openbmc/u-boot/include/configs/ap_sh4a_4a.h
/openbmc/u-boot/include/configs/aristainetos-common.h
/openbmc/u-boot/include/configs/armadillo-800eva.h
/openbmc/u-boot/include/configs/astro_mcf5373l.h
/openbmc/u-boot/include/configs/at91rm9200ek.h
/openbmc/u-boot/include/configs/at91sam9263ek.h
/openbmc/u-boot/include/configs/ax25-ae350.h
/openbmc/u-boot/include/configs/bav335x.h
/openbmc/u-boot/include/configs/blanche.h
/openbmc/u-boot/include/configs/bmips_bcm6338.h
/openbmc/u-boot/include/configs/bmips_bcm6348.h
/openbmc/u-boot/include/configs/bmips_bcm6358.h
/openbmc/u-boot/include/configs/bmips_bcm6368.h
/openbmc/u-boot/include/configs/boston.h
/openbmc/u-boot/include/configs/calimain.h
/openbmc/u-boot/include/configs/cl-som-imx7.h
/openbmc/u-boot/include/configs/colibri-imx6ull.h
/openbmc/u-boot/include/configs/colibri_imx7.h
/openbmc/u-boot/include/configs/colibri_pxa270.h
/openbmc/u-boot/include/configs/comtrend_ct5361.h
/openbmc/u-boot/include/configs/comtrend_wap5813n.h
/openbmc/u-boot/include/configs/corenet_ds.h
/openbmc/u-boot/include/configs/da850evm.h
/openbmc/u-boot/include/configs/devkit3250.h
/openbmc/u-boot/include/configs/dh_imx6.h
/openbmc/u-boot/include/configs/display5.h
/openbmc/u-boot/include/configs/dra7xx_evm.h
/openbmc/u-boot/include/configs/draak.h
/openbmc/u-boot/include/configs/eb_cpu5282.h
/openbmc/u-boot/include/configs/ecovec.h
/openbmc/u-boot/include/configs/edb93xx.h
/openbmc/u-boot/include/configs/edminiv2.h
/openbmc/u-boot/include/configs/espt.h
/openbmc/u-boot/include/configs/ethernut5.h
/openbmc/u-boot/include/configs/flea3.h
/openbmc/u-boot/include/configs/ge_bx50v3.h
/openbmc/u-boot/include/configs/hrcon.h
/openbmc/u-boot/include/configs/huawei_hg556a.h
/openbmc/u-boot/include/configs/ids8313.h
/openbmc/u-boot/include/configs/imx27lite-common.h
/openbmc/u-boot/include/configs/imx8qxp_mek.h
/openbmc/u-boot/include/configs/integrator-common.h
/openbmc/u-boot/include/configs/km/keymile-common.h
/openbmc/u-boot/include/configs/km/km-powerpc.h
/openbmc/u-boot/include/configs/km/km83xx-common.h
/openbmc/u-boot/include/configs/km/km_arm.h
/openbmc/u-boot/include/configs/km/kmp204x-common.h
/openbmc/u-boot/include/configs/kp_imx6q_tpc.h
/openbmc/u-boot/include/configs/kzm9g.h
/openbmc/u-boot/include/configs/ls1021aqds.h
/openbmc/u-boot/include/configs/ls1021atwr.h
/openbmc/u-boot/include/configs/ls1043a_common.h
/openbmc/u-boot/include/configs/ls1046aqds.h
/openbmc/u-boot/include/configs/ls1088aqds.h
/openbmc/u-boot/include/configs/ls1088ardb.h
/openbmc/u-boot/include/configs/ls2080a_simu.h
/openbmc/u-boot/include/configs/ls2080aqds.h
/openbmc/u-boot/include/configs/ls2080ardb.h
/openbmc/u-boot/include/configs/m53menlo.h
/openbmc/u-boot/include/configs/malta.h
/openbmc/u-boot/include/configs/mccmon6.h
/openbmc/u-boot/include/configs/microblaze-generic.h
/openbmc/u-boot/include/configs/mpc8308_p1m.h
/openbmc/u-boot/include/configs/mpr2.h
/openbmc/u-boot/include/configs/ms7720se.h
/openbmc/u-boot/include/configs/ms7722se.h
/openbmc/u-boot/include/configs/ms7750se.h
/openbmc/u-boot/include/configs/mx35pdk.h
/openbmc/u-boot/include/configs/mx53ppd.h
/openbmc/u-boot/include/configs/mx6sabreauto.h
/openbmc/u-boot/include/configs/mx7dsabresd.h
/openbmc/u-boot/include/configs/omap3_logic.h
/openbmc/u-boot/include/configs/omapl138_lcdk.h
/openbmc/u-boot/include/configs/p1_p2_rdb_pc.h
/openbmc/u-boot/include/configs/p1_twr.h
/openbmc/u-boot/include/configs/pico-imx6ul.h
/openbmc/u-boot/include/configs/pico-imx7d.h
/openbmc/u-boot/include/configs/pm9261.h
/openbmc/u-boot/include/configs/pm9263.h
/openbmc/u-boot/include/configs/qemu-mips.h
/openbmc/u-boot/include/configs/qemu-mips64.h
/openbmc/u-boot/include/configs/r0p7734.h
/openbmc/u-boot/include/configs/r2dplus.h
/openbmc/u-boot/include/configs/r7780mp.h
/openbmc/u-boot/include/configs/rsk7203.h
/openbmc/u-boot/include/configs/rsk7264.h
/openbmc/u-boot/include/configs/rsk7269.h
/openbmc/u-boot/include/configs/sama5d3xek.h
/openbmc/u-boot/include/configs/sbc8349.h
/openbmc/u-boot/include/configs/sbc8548.h
/openbmc/u-boot/include/configs/sbc8641d.h
/openbmc/u-boot/include/configs/sfr_nb4_ser.h
/openbmc/u-boot/include/configs/sh7763rdp.h
/openbmc/u-boot/include/configs/sh7785lcr.h
/openbmc/u-boot/include/configs/shmin.h
/openbmc/u-boot/include/configs/socrates.h
/openbmc/u-boot/include/configs/spear3xx_evb.h
/openbmc/u-boot/include/configs/strider.h
/openbmc/u-boot/include/configs/tqma6_wru4.h
/openbmc/u-boot/include/configs/udoo.h
/openbmc/u-boot/include/configs/uniphier.h
/openbmc/u-boot/include/configs/vct.h
/openbmc/u-boot/include/configs/ve8313.h
/openbmc/u-boot/include/configs/vexpress_aemv8a.h
/openbmc/u-boot/include/configs/vexpress_common.h
/openbmc/u-boot/include/configs/vme8349.h
/openbmc/u-boot/include/configs/warp.h
/openbmc/u-boot/include/configs/warp7.h
/openbmc/u-boot/include/configs/woodburn_common.h
/openbmc/u-boot/include/configs/work_92105.h
/openbmc/u-boot/include/configs/xilinx_versal.h
/openbmc/u-boot/include/configs/xpedite517x.h
/openbmc/u-boot/include/configs/xpedite520x.h
/openbmc/u-boot/include/configs/xpedite537x.h
/openbmc/u-boot/include/configs/xpedite550x.h
/openbmc/u-boot/include/configs/xtfpga.h
/openbmc/u-boot/include/configs/zipitz2.h
/openbmc/u-boot/include/configs/zmx25.h
/openbmc/u-boot/include/configs/zynq-common.h
/openbmc/u-boot/include/dt-bindings/clock/imx8qxp-clock.h
/openbmc/u-boot/include/dt-bindings/pinctrl/pads-imx8qxp.h
/openbmc/u-boot/include/dt-bindings/power/r8a77990-sysc.h
/openbmc/u-boot/include/dt-bindings/soc/imx8_pd.h
/openbmc/u-boot/include/dt-bindings/soc/imx_rsrc.h
/openbmc/u-boot/include/environment/ti/boot.h
/openbmc/u-boot/include/fsl_lpuart.h
/openbmc/u-boot/include/image.h
/openbmc/u-boot/include/imx8image.h
/openbmc/u-boot/include/samsung/exynos5-dt-types.h
optee/Kconfig
/openbmc/u-boot/scripts/config_whitelist.txt
/openbmc/u-boot/test/dm/pci.c
/openbmc/u-boot/test/overlay/cmd_ut_overlay.c
/openbmc/u-boot/tools/Makefile
/openbmc/u-boot/tools/binman/etype/intel_refcode.py
/openbmc/u-boot/tools/binman/ftest.py
/openbmc/u-boot/tools/binman/test/100_intel_refcode.dts
/openbmc/u-boot/tools/imagetool.h
/openbmc/u-boot/tools/imx8image.c
/openbmc/u-boot/tools/imx_cntr_image.sh
/openbmc/u-boot/tools/mkimage.c
c7b3a7ee05-Sep-2018 Rui Miguel Silva <rui.silva@linaro.org>

optee: adjust dependencies and default values for dram

We may have, the not yet considered, scenario where OPTEE is loaded before
u-boot and *not* by u-boot, e.g, the boot flow using the ARM Trusted

optee: adjust dependencies and default values for dram

We may have, the not yet considered, scenario where OPTEE is loaded before
u-boot and *not* by u-boot, e.g, the boot flow using the ARM Trusted
Firmware (ATF), where in the 32bit flow is:
BootRom->ATF(BL2)->Optee(BL32)->u-boot(BL33)

In this case we need still to reserve the memory used by optee, to avoid
for example to realocate ourself to the same address at the end of DRAM.
So, we change here the dependencies on the OPTEE lib and we set the default
size and base of TZRAM to zero.

Signed-off-by: Rui Miguel Silva <rui.silva@linaro.org>
Signed-off-by: Bryan O'Donoghue <bryan.odonoghue@linaro.org>
Cc: Fabio Estevam <fabio.estevam@nxp.com>
Cc: Ryan Harkin <ryan.harkin@linaro.org>
Cc: u-boot@lists.denx.de

show more ...


/openbmc/u-boot/MAINTAINERS
/openbmc/u-boot/Makefile
/openbmc/u-boot/arch/Kconfig
/openbmc/u-boot/arch/arc/Kconfig
/openbmc/u-boot/arch/arc/config.mk
/openbmc/u-boot/arch/arc/dts/Makefile
/openbmc/u-boot/arch/arc/dts/abilis_tb100.dts
/openbmc/u-boot/arch/arc/dts/axs101.dts
/openbmc/u-boot/arch/arc/dts/axs103.dts
/openbmc/u-boot/arch/arc/dts/emdk.dts
/openbmc/u-boot/arch/arc/dts/hsdk.dts
/openbmc/u-boot/arch/arc/dts/iot_devkit.dts
/openbmc/u-boot/arch/arc/dts/nsim.dts
/openbmc/u-boot/arch/arc/lib/cpu.c
/openbmc/u-boot/arch/arm/Kconfig
/openbmc/u-boot/arch/arm/Makefile
/openbmc/u-boot/arch/arm/dts/Makefile
/openbmc/u-boot/arch/arm/dts/fsl-imx8-ca35.dtsi
/openbmc/u-boot/arch/arm/dts/fsl-imx8dx.dtsi
/openbmc/u-boot/arch/arm/dts/fsl-imx8dxp.dtsi
/openbmc/u-boot/arch/arm/dts/fsl-imx8qxp-mek.dts
/openbmc/u-boot/arch/arm/dts/fsl-imx8qxp.dtsi
/openbmc/u-boot/arch/arm/dts/hi6220-hikey.dts
/openbmc/u-boot/arch/arm/dts/imx6ul-opos6ul-u-boot.dtsi
/openbmc/u-boot/arch/arm/dts/imx6ul-opos6ul.dtsi
/openbmc/u-boot/arch/arm/dts/imx6ul-opos6uldev-u-boot.dtsi
/openbmc/u-boot/arch/arm/dts/imx6ul-opos6uldev.dts
/openbmc/u-boot/arch/arm/dts/logicpd-som-lv-35xx-devkit-u-boot.dtsi
/openbmc/u-boot/arch/arm/dts/logicpd-som-lv-35xx-devkit.dts
/openbmc/u-boot/arch/arm/dts/logicpd-som-lv-37xx-devkit-u-boot.dtsi
/openbmc/u-boot/arch/arm/dts/logicpd-som-lv-37xx-devkit.dts
/openbmc/u-boot/arch/arm/dts/logicpd-som-lv.dtsi
/openbmc/u-boot/arch/arm/dts/logicpd-torpedo-35xx-devkit-u-boot.dtsi
/openbmc/u-boot/arch/arm/dts/logicpd-torpedo-35xx-devkit.dts
/openbmc/u-boot/arch/arm/dts/logicpd-torpedo-37xx-devkit-u-boot.dtsi
/openbmc/u-boot/arch/arm/dts/logicpd-torpedo-37xx-devkit.dts
/openbmc/u-boot/arch/arm/dts/r8a7791-porter.dts
/openbmc/u-boot/arch/arm/dts/rk3188-radxarock-u-boot.dtsi
/openbmc/u-boot/arch/arm/dts/rk3188-radxarock.dts
/openbmc/u-boot/arch/arm/include/asm/arch-imx/cpu.h
/openbmc/u-boot/arch/arm/include/asm/arch-imx8/clock.h
/openbmc/u-boot/arch/arm/include/asm/arch-imx8/gpio.h
/openbmc/u-boot/arch/arm/include/asm/arch-imx8/imx-regs.h
/openbmc/u-boot/arch/arm/include/asm/arch-imx8/imx8-pins.h
/openbmc/u-boot/arch/arm/include/asm/arch-imx8/iomux.h
/openbmc/u-boot/arch/arm/include/asm/arch-imx8/power-domain.h
/openbmc/u-boot/arch/arm/include/asm/arch-imx8/sci/rpc.h
/openbmc/u-boot/arch/arm/include/asm/arch-imx8/sci/sci.h
/openbmc/u-boot/arch/arm/include/asm/arch-imx8/sci/svc/misc/api.h
/openbmc/u-boot/arch/arm/include/asm/arch-imx8/sci/svc/pad/api.h
/openbmc/u-boot/arch/arm/include/asm/arch-imx8/sci/svc/pm/api.h
/openbmc/u-boot/arch/arm/include/asm/arch-imx8/sci/svc/rm/api.h
/openbmc/u-boot/arch/arm/include/asm/arch-imx8/sci/types.h
/openbmc/u-boot/arch/arm/include/asm/arch-imx8/sys_proto.h
/openbmc/u-boot/arch/arm/include/asm/arch-mx5/clock.h
/openbmc/u-boot/arch/arm/include/asm/armv8/cpu.h
/openbmc/u-boot/arch/arm/include/asm/global_data.h
/openbmc/u-boot/arch/arm/include/asm/mach-imx/boot_mode.h
/openbmc/u-boot/arch/arm/include/asm/mach-imx/sys_proto.h
/openbmc/u-boot/arch/arm/mach-imx/Makefile
/openbmc/u-boot/arch/arm/mach-imx/imx8/Kconfig
/openbmc/u-boot/arch/arm/mach-imx/imx8/Makefile
/openbmc/u-boot/arch/arm/mach-imx/imx8/clock.c
/openbmc/u-boot/arch/arm/mach-imx/imx8/cpu.c
/openbmc/u-boot/arch/arm/mach-imx/imx8/iomux.c
/openbmc/u-boot/arch/arm/mach-imx/mx5/Kconfig
/openbmc/u-boot/arch/arm/mach-imx/mx5/clock.c
/openbmc/u-boot/arch/arm/mach-imx/mx7/ddr.c
/openbmc/u-boot/arch/arm/mach-imx/mx7/soc.c
/openbmc/u-boot/arch/arm/mach-imx/syscounter.c
/openbmc/u-boot/arch/arm/mach-rmobile/Kconfig
/openbmc/u-boot/arch/arm/mach-rmobile/memmap-gen3.c
/openbmc/u-boot/arch/arm/mach-rockchip/fit_spl_optee.its
/openbmc/u-boot/arch/arm/mach-rockchip/make_fit_atf.py
/openbmc/u-boot/arch/arm/mach-socfpga/include/mach/reset_manager_s10.h
/openbmc/u-boot/arch/arm/mach-socfpga/misc_s10.c
/openbmc/u-boot/arch/arm/mach-socfpga/reset_manager_s10.c
/openbmc/u-boot/arch/arm/mach-stm32/soc.c
/openbmc/u-boot/arch/riscv/Kconfig
/openbmc/u-boot/arch/riscv/Makefile
/openbmc/u-boot/arch/riscv/config.mk
/openbmc/u-boot/arch/riscv/cpu/Makefile
/openbmc/u-boot/arch/riscv/cpu/ax25/Makefile
/openbmc/u-boot/arch/riscv/cpu/ax25/cpu.c
/openbmc/u-boot/arch/riscv/cpu/cpu.c
/openbmc/u-boot/arch/riscv/cpu/qemu/Makefile
/openbmc/u-boot/arch/riscv/cpu/qemu/cpu.c
/openbmc/u-boot/arch/riscv/cpu/qemu/dram.c
/openbmc/u-boot/arch/riscv/cpu/start.S
/openbmc/u-boot/arch/riscv/cpu/u-boot.lds
/openbmc/u-boot/arch/riscv/dts/ae350.dts
/openbmc/u-boot/arch/riscv/include/asm/csr.h
/openbmc/u-boot/arch/riscv/include/asm/encoding.h
/openbmc/u-boot/arch/riscv/include/asm/u-boot.h
/openbmc/u-boot/arch/riscv/lib/Makefile
/openbmc/u-boot/arch/riscv/lib/bootm.c
/openbmc/u-boot/arch/riscv/lib/reset.c
/openbmc/u-boot/arch/sandbox/dts/sandbox.dts
/openbmc/u-boot/arch/sandbox/dts/sandbox64.dts
/openbmc/u-boot/arch/sandbox/dts/test.dts
/openbmc/u-boot/board/AndesTech/ax25-ae350/ax25-ae350.c
/openbmc/u-boot/board/emulation/qemu-riscv/Kconfig
/openbmc/u-boot/board/emulation/qemu-riscv/MAINTAINERS
/openbmc/u-boot/board/emulation/qemu-riscv/Makefile
/openbmc/u-boot/board/emulation/qemu-riscv/qemu-riscv.c
/openbmc/u-boot/board/freescale/imx8qxp_mek/Kconfig
/openbmc/u-boot/board/freescale/imx8qxp_mek/MAINTAINERS
/openbmc/u-boot/board/freescale/imx8qxp_mek/Makefile
/openbmc/u-boot/board/freescale/imx8qxp_mek/README
/openbmc/u-boot/board/freescale/imx8qxp_mek/imx8qxp_mek.c
/openbmc/u-boot/board/freescale/imx8qxp_mek/imximage.cfg
/openbmc/u-boot/board/freescale/mx8mq_evk/README
/openbmc/u-boot/board/ge/bx50v3/MAINTAINERS
/openbmc/u-boot/board/ge/bx50v3/bx50v3.c
/openbmc/u-boot/board/logicpd/omap3som/MAINTAINERS
/openbmc/u-boot/board/logicpd/omap3som/README
/openbmc/u-boot/board/logicpd/omap3som/omap3logic.c
/openbmc/u-boot/board/menlo/m53menlo/Kconfig
/openbmc/u-boot/board/menlo/m53menlo/MAINTAINERS
/openbmc/u-boot/board/menlo/m53menlo/Makefile
/openbmc/u-boot/board/menlo/m53menlo/imximage.cfg
/openbmc/u-boot/board/menlo/m53menlo/m53menlo.c
/openbmc/u-boot/board/synopsys/iot_devkit/Kconfig
/openbmc/u-boot/board/synopsys/iot_devkit/MAINTAINERS
/openbmc/u-boot/board/synopsys/iot_devkit/Makefile
/openbmc/u-boot/board/synopsys/iot_devkit/config.mk
/openbmc/u-boot/board/synopsys/iot_devkit/iot_devkit.c
/openbmc/u-boot/board/synopsys/iot_devkit/u-boot.lds
/openbmc/u-boot/board/technexion/pico-imx7d/pico-imx7d.c
/openbmc/u-boot/board/toradex/colibri_imx7/colibri_imx7.c
/openbmc/u-boot/cmd/avb.c
/openbmc/u-boot/cmd/bdinfo.c
/openbmc/u-boot/common/Kconfig
/openbmc/u-boot/common/avb_verify.c
/openbmc/u-boot/common/board_r.c
/openbmc/u-boot/common/image.c
/openbmc/u-boot/common/spl/Kconfig
/openbmc/u-boot/common/spl/Makefile
/openbmc/u-boot/common/spl/spl.c
/openbmc/u-boot/common/spl/spl_optee.S
/openbmc/u-boot/common/spl/spl_ram.c
/openbmc/u-boot/common/spl/spl_spi.c
/openbmc/u-boot/configs/aristainetos2_defconfig
/openbmc/u-boot/configs/aristainetos2b_defconfig
/openbmc/u-boot/configs/aristainetos_defconfig
/openbmc/u-boot/configs/ax25-ae350_defconfig
/openbmc/u-boot/configs/dh_imx6_defconfig
/openbmc/u-boot/configs/display5_defconfig
/openbmc/u-boot/configs/display5_factory_defconfig
/openbmc/u-boot/configs/ge_bx50v3_defconfig
/openbmc/u-boot/configs/imx8qxp_mek_defconfig
/openbmc/u-boot/configs/iot_devkit_defconfig
/openbmc/u-boot/configs/kp_imx6q_tpc_defconfig
/openbmc/u-boot/configs/m53menlo_defconfig
/openbmc/u-boot/configs/mx53ppd_defconfig
/openbmc/u-boot/configs/omap35_logic_defconfig
/openbmc/u-boot/configs/omap35_logic_somlv_defconfig
/openbmc/u-boot/configs/omap3_logic_somlv_defconfig
/openbmc/u-boot/configs/pico-hobbit-imx7d_defconfig
/openbmc/u-boot/configs/pico-imx7d_defconfig
/openbmc/u-boot/configs/pico-pi-imx7d_defconfig
/openbmc/u-boot/configs/qemu-riscv32_defconfig
/openbmc/u-boot/configs/qemu-riscv64_defconfig
/openbmc/u-boot/configs/sandbox_noblk_defconfig
/openbmc/u-boot/configs/tqma6s_wru4_mmc_defconfig
/openbmc/u-boot/configs/warp7_defconfig
/openbmc/u-boot/configs/warp_defconfig
/openbmc/u-boot/doc/README.avb2
/openbmc/u-boot/doc/README.qemu-riscv
/openbmc/u-boot/doc/README.tee
/openbmc/u-boot/doc/device-tree-bindings/firmware/linaro,optee-tz.txt
/openbmc/u-boot/doc/imx/common/imx25.txt
/openbmc/u-boot/doc/imx/common/imx27.txt
/openbmc/u-boot/doc/imx/common/imx5.txt
/openbmc/u-boot/doc/imx/common/imx6.txt
/openbmc/u-boot/doc/imx/common/mxs.txt
/openbmc/u-boot/doc/imx/hab/habv4/encrypted_boot.txt
/openbmc/u-boot/doc/imx/hab/habv4/secure_boot.txt
/openbmc/u-boot/doc/imx/misc/sdp.txt
/openbmc/u-boot/doc/imx/mkimage/imximage.txt
/openbmc/u-boot/doc/imx/mkimage/mxsimage.txt
/openbmc/u-boot/drivers/Kconfig
/openbmc/u-boot/drivers/Makefile
/openbmc/u-boot/drivers/clk/Kconfig
/openbmc/u-boot/drivers/clk/Makefile
/openbmc/u-boot/drivers/clk/imx/Kconfig
/openbmc/u-boot/drivers/clk/imx/Makefile
/openbmc/u-boot/drivers/clk/imx/clk-imx8.c
/openbmc/u-boot/drivers/core/root.c
/openbmc/u-boot/drivers/fastboot/Kconfig
/openbmc/u-boot/drivers/gpio/dwapb_gpio.c
/openbmc/u-boot/drivers/gpio/mxc_gpio.c
/openbmc/u-boot/drivers/i2c/i2c-versatile.c
/openbmc/u-boot/drivers/i2c/imx_lpi2c.c
/openbmc/u-boot/drivers/misc/Kconfig
/openbmc/u-boot/drivers/misc/Makefile
/openbmc/u-boot/drivers/misc/imx8/Makefile
/openbmc/u-boot/drivers/misc/imx8/scu.c
/openbmc/u-boot/drivers/misc/imx8/scu_api.c
/openbmc/u-boot/drivers/misc/vexpress_config.c
/openbmc/u-boot/drivers/mmc/dw_mmc.c
/openbmc/u-boot/drivers/mmc/fsl_esdhc.c
/openbmc/u-boot/drivers/mmc/rockchip_dw_mmc.c
/openbmc/u-boot/drivers/mmc/rpmb.c
/openbmc/u-boot/drivers/mtd/nand/spi/Makefile
/openbmc/u-boot/drivers/mtd/nand/spi/core.c
/openbmc/u-boot/drivers/mtd/nand/spi/gigadevice.c
/openbmc/u-boot/drivers/mtd/spi/Kconfig
/openbmc/u-boot/drivers/mtd/spi/spi_flash_ids.c
/openbmc/u-boot/drivers/net/gmac_rockchip.c
/openbmc/u-boot/drivers/phy/Kconfig
/openbmc/u-boot/drivers/phy/Makefile
/openbmc/u-boot/drivers/phy/phy-rcar-gen3.c
/openbmc/u-boot/drivers/pinctrl/nxp/Kconfig
/openbmc/u-boot/drivers/pinctrl/nxp/Makefile
/openbmc/u-boot/drivers/pinctrl/nxp/pinctrl-imx.c
/openbmc/u-boot/drivers/pinctrl/nxp/pinctrl-imx.h
/openbmc/u-boot/drivers/pinctrl/nxp/pinctrl-imx8.c
/openbmc/u-boot/drivers/pinctrl/nxp/pinctrl-scu.c
/openbmc/u-boot/drivers/power/domain/Kconfig
/openbmc/u-boot/drivers/power/domain/Makefile
/openbmc/u-boot/drivers/power/domain/imx8-power-domain.c
/openbmc/u-boot/drivers/serial/serial_lpuart.c
/openbmc/u-boot/drivers/spi/Kconfig
/openbmc/u-boot/drivers/spi/Makefile
/openbmc/u-boot/drivers/spi/mt7621_spi.c
/openbmc/u-boot/drivers/tee/Kconfig
/openbmc/u-boot/drivers/tee/Makefile
/openbmc/u-boot/drivers/tee/optee/Kconfig
/openbmc/u-boot/drivers/tee/optee/Makefile
/openbmc/u-boot/drivers/tee/optee/core.c
/openbmc/u-boot/drivers/tee/optee/optee_msg.h
/openbmc/u-boot/drivers/tee/optee/optee_msg_supplicant.h
/openbmc/u-boot/drivers/tee/optee/optee_private.h
/openbmc/u-boot/drivers/tee/optee/optee_smc.h
/openbmc/u-boot/drivers/tee/optee/rpmb.c
/openbmc/u-boot/drivers/tee/optee/supplicant.c
/openbmc/u-boot/drivers/tee/sandbox.c
/openbmc/u-boot/drivers/tee/tee-uclass.c
/openbmc/u-boot/drivers/watchdog/Kconfig
/openbmc/u-boot/fs/fat/fat_write.c
/openbmc/u-boot/include/avb_verify.h
/openbmc/u-boot/include/configs/B4860QDS.h
/openbmc/u-boot/include/configs/BSC9131RDB.h
/openbmc/u-boot/include/configs/BSC9132QDS.h
/openbmc/u-boot/include/configs/C29XPCIE.h
/openbmc/u-boot/include/configs/MPC8536DS.h
/openbmc/u-boot/include/configs/P1010RDB.h
/openbmc/u-boot/include/configs/P2041RDB.h
/openbmc/u-boot/include/configs/T102xQDS.h
/openbmc/u-boot/include/configs/T102xRDB.h
/openbmc/u-boot/include/configs/T1040QDS.h
/openbmc/u-boot/include/configs/T104xRDB.h
/openbmc/u-boot/include/configs/T208xQDS.h
/openbmc/u-boot/include/configs/T208xRDB.h
/openbmc/u-boot/include/configs/T4240QDS.h
/openbmc/u-boot/include/configs/T4240RDB.h
/openbmc/u-boot/include/configs/UCP1020.h
/openbmc/u-boot/include/configs/aristainetos-common.h
/openbmc/u-boot/include/configs/cl-som-imx7.h
/openbmc/u-boot/include/configs/colibri-imx6ull.h
/openbmc/u-boot/include/configs/colibri_imx7.h
/openbmc/u-boot/include/configs/controlcenterd.h
/openbmc/u-boot/include/configs/corenet_ds.h
/openbmc/u-boot/include/configs/cyrus.h
/openbmc/u-boot/include/configs/dh_imx6.h
/openbmc/u-boot/include/configs/display5.h
/openbmc/u-boot/include/configs/ge_bx50v3.h
/openbmc/u-boot/include/configs/imx8qxp_mek.h
/openbmc/u-boot/include/configs/iot_devkit.h
/openbmc/u-boot/include/configs/km/kmp204x-common.h
/openbmc/u-boot/include/configs/kp_imx6q_tpc.h
/openbmc/u-boot/include/configs/m53menlo.h
/openbmc/u-boot/include/configs/mx53ppd.h
/openbmc/u-boot/include/configs/mx7dsabresd.h
/openbmc/u-boot/include/configs/omap3_logic.h
/openbmc/u-boot/include/configs/p1_twr.h
/openbmc/u-boot/include/configs/pico-imx6ul.h
/openbmc/u-boot/include/configs/pico-imx7d.h
/openbmc/u-boot/include/configs/qemu-riscv.h
/openbmc/u-boot/include/configs/rcar-gen2-common.h
/openbmc/u-boot/include/configs/tqma6_wru4.h
/openbmc/u-boot/include/configs/warp.h
/openbmc/u-boot/include/dm/uclass-id.h
/openbmc/u-boot/include/dt-bindings/clock/imx8qxp-clock.h
/openbmc/u-boot/include/dt-bindings/pinctrl/pads-imx8qxp.h
/openbmc/u-boot/include/dt-bindings/soc/imx8_pd.h
/openbmc/u-boot/include/dt-bindings/soc/imx_rsrc.h
/openbmc/u-boot/include/dwmmc.h
/openbmc/u-boot/include/fsl_lpuart.h
/openbmc/u-boot/include/image.h
/openbmc/u-boot/include/imx8image.h
/openbmc/u-boot/include/linux/mtd/spinand.h
/openbmc/u-boot/include/mmc.h
/openbmc/u-boot/include/sandboxtee.h
/openbmc/u-boot/include/spl.h
/openbmc/u-boot/include/tee.h
/openbmc/u-boot/include/tee/optee_ta_avb.h
optee/Kconfig
/openbmc/u-boot/scripts/config_whitelist.txt
/openbmc/u-boot/test/dm/Makefile
/openbmc/u-boot/test/dm/tee.c
/openbmc/u-boot/test/py/tests/test_avb.py
/openbmc/u-boot/test/py/tests/test_fs/conftest.py
/openbmc/u-boot/test/py/u_boot_console_base.py
/openbmc/u-boot/tools/Makefile
/openbmc/u-boot/tools/imagetool.h
/openbmc/u-boot/tools/imx8image.c
/openbmc/u-boot/tools/mkimage.c
/openbmc/u-boot/tools/rkimage.c
/openbmc/u-boot/tools/socfpgaimage.c
d081f27f27-Sep-2018 Heinrich Schuchardt <xypron.glpk@gmx.de>

efi_loader: efi_dp_get_next_instance() superfluous statement

Remove a superfluous statement in efi_dp_get_next_instance().

Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Signed-off-by: Ale

efi_loader: efi_dp_get_next_instance() superfluous statement

Remove a superfluous statement in efi_dp_get_next_instance().

Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Signed-off-by: Alexander Graf <agraf@suse.de>

show more ...

b50f075228-Sep-2018 Heinrich Schuchardt <xypron.glpk@gmx.de>

efi_selftest: creating new handle in controller test

When the last protocol interface is uninstalled the handle is deleted but
this does not set the value of the handle to NULL.

To create a new han

efi_selftest: creating new handle in controller test

When the last protocol interface is uninstalled the handle is deleted but
this does not set the value of the handle to NULL.

To create a new handle with OpenProtocolInterface the value of the handle
must be NULL.

Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Signed-off-by: Alexander Graf <agraf@suse.de>

show more ...

12345678910>>...60