History log of /openbmc/u-boot/drivers/mtd/ (Results 151 – 175 of 1643)
Revision Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
15e207fa14-Jan-2018 Jörg Krause <joerg.krause@embedded.rocks>

spl, nand: add option CONFIG_SPL_NAND_IDENT to lookup for supported NAND chips

Add the config option `CONFIG_SPL_NAND_IDENT` for using the NAND chip ID list
to identify the NAND flash in SPL.

Signe

spl, nand: add option CONFIG_SPL_NAND_IDENT to lookup for supported NAND chips

Add the config option `CONFIG_SPL_NAND_IDENT` for using the NAND chip ID list
to identify the NAND flash in SPL.

Signed-off-by: Jörg Krause <joerg.krause@embedded.rocks>

show more ...

da37d09614-Jan-2018 Jörg Krause <joerg.krause@embedded.rocks>

mtd: nand: export nand_get_flash_type function

`nand_get_flash_type()` allows identification of supported NAND flashs.
The function is useful in SPL (like mxs_nand_spl.c) to lookup for a NAND
flash

mtd: nand: export nand_get_flash_type function

`nand_get_flash_type()` allows identification of supported NAND flashs.
The function is useful in SPL (like mxs_nand_spl.c) to lookup for a NAND
flash (which does not support ONFi) instead of using nand_simple.c and
hard-coding all required NAND parameters.

Signed-off-by: Jörg Krause <joerg.krause@embedded.rocks>

show more ...

6275445022-Jun-2018 Stefan Agner <stefan.agner@toradex.com>

mtd: nand: mxs_nand: add support for specific ECC strength

Add support for specified ECC strength/size using device tree
properties nand-ecc-strength/nand-ecc-step-size.

This aligns behavior with t

mtd: nand: mxs_nand: add support for specific ECC strength

Add support for specified ECC strength/size using device tree
properties nand-ecc-strength/nand-ecc-step-size.

This aligns behavior with the mainline driver, such that:
- If fsl,use-minimal-ecc is requested it will use data from
data sheet/ONFI. If this is not available the driver will fail.
- If nand-ecc-strength/nand-ecc-step-size are specified those
value will be used.
- By default maximum possible ECC strength is used

Signed-off-by: Stefan Agner <stefan.agner@toradex.com>

show more ...

f75e83bf22-Jun-2018 Stefan Agner <stefan.agner@toradex.com>

mtd: nand: mxs_nand: add device tree support

Support driver data from device tree. Also support fsl,use-minimal-ecc
similar to Linux' GPMI NAND driver.

Signed-off-by: Stefan Agner <stefan.agner@tor

mtd: nand: mxs_nand: add device tree support

Support driver data from device tree. Also support fsl,use-minimal-ecc
similar to Linux' GPMI NAND driver.

Signed-off-by: Stefan Agner <stefan.agner@toradex.com>

show more ...

6874834022-Jun-2018 Stefan Agner <stefan.agner@toradex.com>

mtd: nand: mxs_nand: move structs into header file

Move structs into header file so we can use a separate compile
unit for device tree support.

Signed-off-by: Stefan Agner <stefan.agner@toradex.com>

502bdc6b22-Jun-2018 Stefan Agner <stefan.agner@toradex.com>

mtd: nand: mxs_nand: add use_minimum_ecc to struct

Add use_minimum_ecc as struct mxs_nand_info field in preparation
for device tree support.

Signed-off-by: Stefan Agner <stefan.agner@toradex.com>

3b1328a022-Jun-2018 Stefan Agner <stefan.agner@toradex.com>

mtd: nand: mxs_nand: separate board/controller init

In preparation for device tree support separate board init
from controller init similar to other raw NAND drivers.

Signed-off-by: Stefan Agner <s

mtd: nand: mxs_nand: separate board/controller init

In preparation for device tree support separate board init
from controller init similar to other raw NAND drivers.

Signed-off-by: Stefan Agner <stefan.agner@toradex.com>

show more ...

0d4e9d8b22-Jun-2018 Stefan Agner <stefan.agner@toradex.com>

mtd: nand: mxs_nand: use more precise function name

This function initializes DMA descriptors so mxs_nand_init_dma is
more precise. It also frees up the rather generic name mxs_nand_init.

Signed-of

mtd: nand: mxs_nand: use more precise function name

This function initializes DMA descriptors so mxs_nand_init_dma is
more precise. It also frees up the rather generic name mxs_nand_init.

Signed-off-by: Stefan Agner <stefan.agner@toradex.com>

show more ...

931747e522-Jun-2018 Stefan Agner <stefan.agner@toradex.com>

mtd: nand: mxs_nand: move register structs to driver data

Move GPMI and BCH register structs to the driver struct mxs_nand_info
in prepartion for device tree support.

Signed-off-by: Stefan Agner <s

mtd: nand: mxs_nand: move register structs to driver data

Move GPMI and BCH register structs to the driver struct mxs_nand_info
in prepartion for device tree support.

Signed-off-by: Stefan Agner <stefan.agner@toradex.com>

show more ...

984df7ad22-Jun-2018 Stefan Agner <stefan.agner@toradex.com>

mtd: nand: mxs_nand: add minimal ECC support

Add support for minimum ECC strength supported by the NAND chip.
This aligns with the behavior when using the fsl,use-minimum-ecc
device tree property in

mtd: nand: mxs_nand: add minimal ECC support

Add support for minimum ECC strength supported by the NAND chip.
This aligns with the behavior when using the fsl,use-minimum-ecc
device tree property in Linux.

Signed-off-by: Stefan Agner <stefan.agner@toradex.com>

show more ...

5c69dd0722-Jun-2018 Stefan Agner <stefan.agner@toradex.com>

mtd: nand: mxs_nand: report correct ECC parameters

Report correct ECC parameters back to the stack. Do not report
bytes as we have it not immeaditly available and the Linux version
also does not rep

mtd: nand: mxs_nand: report correct ECC parameters

Report correct ECC parameters back to the stack. Do not report
bytes as we have it not immeaditly available and the Linux version
also does not report it. It seems to have no aversive effect.

Signed-off-by: Stefan Agner <stefan.agner@toradex.com>

show more ...

28897e8d22-Jun-2018 Stefan Agner <stefan.agner@toradex.com>

mtd: nand: mxs_nand: use structure for BCH geometry

Calculate BCH geometry at start and store the information in
a structure. This avoids recalculation on every page access
and allows to calculate E

mtd: nand: mxs_nand: use structure for BCH geometry

Calculate BCH geometry at start and store the information in
a structure. This avoids recalculation on every page access
and allows to calculate ECC relevant information in one place.
This patch does not change ECC layout or driver behavior in
any way.

The patch aligns the driver somewhat with the Linux GPMI NAND
driver which drives the same IP.

Signed-off-by: Stefan Agner <stefan.agner@toradex.com>

show more ...

dc0b69fa22-Jun-2018 Stefan Agner <stefan.agner@toradex.com>

mtd: nand: mxs_nand: allow to enable BBT support

Add config option which allows to enable on flash bad block table
support. This has the same effect as when using the device tree
property "nand-on-f

mtd: nand: mxs_nand: allow to enable BBT support

Add config option which allows to enable on flash bad block table
support. This has the same effect as when using the device tree
property "nand-on-flash-bbt" in Linux.

Signed-off-by: Stefan Agner <stefan.agner@toradex.com>

show more ...

5346c31e22-Jun-2018 Stefan Agner <stefan.agner@toradex.com>

mtd: nand: mxs_nand: use self init

Instead of completing initialization via scan_bbt callback use
NAND self init to initialize the GPMI (MXS) NAND controller.

Suggested-by: Scott Wood <oss@buserror

mtd: nand: mxs_nand: use self init

Instead of completing initialization via scan_bbt callback use
NAND self init to initialize the GPMI (MXS) NAND controller.

Suggested-by: Scott Wood <oss@buserror.net>
Signed-off-by: Stefan Agner <stefan.agner@toradex.com>

show more ...

9345943b22-Jun-2018 Stefan Agner <stefan.agner@toradex.com>

mtd: nand: mxs_nand: introduce SPL specific init

In preparation to convert the driver to use NAND self init
provide a new minimal init for SPL builds. As a side effect
this also reduces size of SPL

mtd: nand: mxs_nand: introduce SPL specific init

In preparation to convert the driver to use NAND self init
provide a new minimal init for SPL builds. As a side effect
this also reduces size of SPL by about 4KiB.

Signed-off-by: Stefan Agner <stefan.agner@toradex.com>

show more ...


/openbmc/u-boot/arch/arm/cpu/arm926ejs/mxs/spl_mem_init.c
/openbmc/u-boot/arch/arm/cpu/armv8/fwcall.c
/openbmc/u-boot/arch/arm/cpu/armv8/zynqmp/cpu.c
/openbmc/u-boot/arch/arm/dts/Makefile
/openbmc/u-boot/arch/arm/dts/am3517.dtsi
/openbmc/u-boot/arch/arm/dts/imx53-kp.dts
/openbmc/u-boot/arch/arm/dts/zynq-zc702.dts
/openbmc/u-boot/arch/arm/dts/zynq-zturn.dts
/openbmc/u-boot/arch/arm/dts/zynqmp-mini-emmc0.dts
/openbmc/u-boot/arch/arm/dts/zynqmp-mini-emmc1.dts
/openbmc/u-boot/arch/arm/dts/zynqmp-zcu100-revC.dts
/openbmc/u-boot/arch/arm/dts/zynqmp-zcu102-revA.dts
/openbmc/u-boot/arch/arm/dts/zynqmp-zcu106-revA.dts
/openbmc/u-boot/arch/arm/dts/zynqmp-zcu111-revA.dts
/openbmc/u-boot/arch/arm/include/asm/arch-sunxi/clock_sun6i.h
/openbmc/u-boot/arch/arm/mach-bcm283x/reset.c
/openbmc/u-boot/arch/arm/mach-imx/cache.c
/openbmc/u-boot/arch/arm/mach-imx/mx7/soc.c
/openbmc/u-boot/arch/x86/Kconfig
/openbmc/u-boot/arch/x86/cpu/Makefile
/openbmc/u-boot/arch/x86/cpu/baytrail/Kconfig
/openbmc/u-boot/arch/x86/cpu/baytrail/cpu.c
/openbmc/u-boot/arch/x86/cpu/intel_common/mrc.c
/openbmc/u-boot/arch/x86/cpu/irq.c
/openbmc/u-boot/arch/x86/cpu/ivybridge/Kconfig
/openbmc/u-boot/arch/x86/cpu/ivybridge/Makefile
/openbmc/u-boot/arch/x86/cpu/ivybridge/model_206ax.c
/openbmc/u-boot/arch/x86/cpu/quark/Makefile
/openbmc/u-boot/arch/x86/cpu/quark/quark.c
/openbmc/u-boot/arch/x86/cpu/queensbay/Makefile
/openbmc/u-boot/arch/x86/cpu/queensbay/tnc.c
/openbmc/u-boot/arch/x86/dts/chromebook_link.dts
/openbmc/u-boot/arch/x86/dts/cougarcanyon2.dts
/openbmc/u-boot/arch/x86/dts/crownbay.dts
/openbmc/u-boot/arch/x86/dts/galileo.dts
/openbmc/u-boot/arch/x86/include/asm/irq.h
/openbmc/u-boot/arch/x86/lib/Makefile
/openbmc/u-boot/board/engicam/common/spl.c
/openbmc/u-boot/board/k+p/bootscripts/tpcboot.cmd
/openbmc/u-boot/board/k+p/kp_imx53/kp_imx53.c
/openbmc/u-boot/board/liebherr/display5/common.c
/openbmc/u-boot/board/liebherr/display5/common.h
/openbmc/u-boot/board/liebherr/display5/display5.c
/openbmc/u-boot/board/liebherr/display5/spl.c
/openbmc/u-boot/board/logicpd/am3517evm/am3517evm.c
/openbmc/u-boot/board/solidrun/mx6cuboxi/mx6cuboxi.c
/openbmc/u-boot/board/synopsys/hsdk/README
/openbmc/u-boot/board/synopsys/hsdk/config.mk
/openbmc/u-boot/board/synopsys/hsdk/headerize-hsdk.py
/openbmc/u-boot/board/ti/am57xx/mux_data.h
/openbmc/u-boot/board/ti/dra7xx/mux_data.h
/openbmc/u-boot/board/xilinx/zynq/board.c
/openbmc/u-boot/board/xilinx/zynqmp/zynqmp.c
/openbmc/u-boot/cmd/Kconfig
/openbmc/u-boot/cmd/bootefi.c
/openbmc/u-boot/cmd/nvedit.c
/openbmc/u-boot/common/image.c
/openbmc/u-boot/common/spl/Kconfig
/openbmc/u-boot/configs/am3517_evm_defconfig
/openbmc/u-boot/configs/cougarcanyon2_defconfig
/openbmc/u-boot/configs/display5_defconfig
/openbmc/u-boot/configs/display5_factory_defconfig
/openbmc/u-boot/configs/efi-x86_defconfig
/openbmc/u-boot/configs/kp_imx53_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_r5_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/disk/part_efi.c
/openbmc/u-boot/doc/README.x86
/openbmc/u-boot/doc/device-tree-bindings/misc/intel,irq-router.txt
/openbmc/u-boot/drivers/gpio/Kconfig
/openbmc/u-boot/drivers/gpio/zynq_gpio.c
/openbmc/u-boot/drivers/mmc/sdhci.c
/openbmc/u-boot/drivers/mmc/zynq_sdhci.c
nand/mxs_nand.c
nand/mxs_nand.h
nand/mxs_nand_spl.c
/openbmc/u-boot/drivers/net/Kconfig
/openbmc/u-boot/drivers/net/Makefile
/openbmc/u-boot/drivers/net/cpsw.c
/openbmc/u-boot/drivers/net/designware.c
/openbmc/u-boot/drivers/net/mvgbe.c
/openbmc/u-boot/drivers/net/mvgbe.h
/openbmc/u-boot/drivers/net/mvneta.c
/openbmc/u-boot/drivers/net/phy/cortina.c
/openbmc/u-boot/drivers/net/phy/mv88e61xx.c
/openbmc/u-boot/drivers/net/sni_ave.c
/openbmc/u-boot/drivers/net/sunxi_emac.c
/openbmc/u-boot/drivers/net/tsec.c
/openbmc/u-boot/drivers/net/vsc9953.c
/openbmc/u-boot/drivers/net/zynq_gem.c
/openbmc/u-boot/drivers/pci/pci-uclass.c
/openbmc/u-boot/drivers/serial/serial_zynq.c
/openbmc/u-boot/drivers/timer/cadence-ttc.c
/openbmc/u-boot/drivers/timer/tsc_timer.c
/openbmc/u-boot/drivers/usb/host/ehci-sunxi.c
/openbmc/u-boot/drivers/usb/host/ohci-sunxi.c
/openbmc/u-boot/drivers/usb/host/xhci-pci.c
/openbmc/u-boot/env/Kconfig
/openbmc/u-boot/include/configs/display5.h
/openbmc/u-boot/include/configs/hsdk.h
/openbmc/u-boot/include/configs/kp_imx53.h
/openbmc/u-boot/include/configs/mx28evk.h
/openbmc/u-boot/include/configs/mx6cuboxi.h
/openbmc/u-boot/include/configs/pico-imx7d.h
/openbmc/u-boot/include/configs/wandboard.h
/openbmc/u-boot/include/configs/xilinx_zynqmp_zcu102.h
/openbmc/u-boot/include/cortina.h
/openbmc/u-boot/include/efi.h
/openbmc/u-boot/include/environment.h
/openbmc/u-boot/include/pe.h
/openbmc/u-boot/include/phy.h
/openbmc/u-boot/include/vsc9953.h
/openbmc/u-boot/lib/efi/Makefile
/openbmc/u-boot/lib/efi/efi_stub.c
/openbmc/u-boot/lib/efi_loader/efi_image_loader.c
/openbmc/u-boot/lib/efi_loader/efi_runtime.c
/openbmc/u-boot/net/arp.c
/openbmc/u-boot/net/eth-uclass.c
/openbmc/u-boot/net/net.c
/openbmc/u-boot/net/nfs.c
/openbmc/u-boot/net/ping.c
/openbmc/u-boot/scripts/Makefile.lib
/openbmc/u-boot/scripts/Makefile.spl
/openbmc/u-boot/scripts/config_whitelist.txt
/openbmc/u-boot/tools/env/fw_env.c
51dce7d225-Jun-2018 Ashish Kumar <Ashish.Kumar@nxp.com>

mtd: spi: Correct parameters for s25fs512s flash

Change sector size to 256KiB in table spi_flash_ids.

Signed-off-by: Ashish Kumar <Ashish.Kumar@nxp.com>
Reviewed-by: Jagan Teki <jagan@openedev.com>


/openbmc/u-boot/Makefile
/openbmc/u-boot/arch/arm/cpu/armv8/fsl-layerscape/mp.c
/openbmc/u-boot/arch/arm/cpu/armv8/zynqmp/mp.c
/openbmc/u-boot/arch/arm/dts/dragonboard410c-uboot.dtsi
/openbmc/u-boot/arch/arm/dts/r8a77970-eagle.dts
/openbmc/u-boot/arch/arm/dts/r8a77990-ebisu.dts
/openbmc/u-boot/arch/arm/dts/uniphier-ld11.dtsi
/openbmc/u-boot/arch/arm/dts/uniphier-ld20.dtsi
/openbmc/u-boot/arch/arm/dts/uniphier-ld4.dtsi
/openbmc/u-boot/arch/arm/dts/uniphier-pro4.dtsi
/openbmc/u-boot/arch/arm/dts/uniphier-pro5.dtsi
/openbmc/u-boot/arch/arm/dts/uniphier-pxs2.dtsi
/openbmc/u-boot/arch/arm/dts/uniphier-pxs3-ref.dts
/openbmc/u-boot/arch/arm/dts/uniphier-pxs3.dtsi
/openbmc/u-boot/arch/arm/dts/uniphier-sld8.dtsi
/openbmc/u-boot/arch/arm/include/asm/arch-meson/clock.h
/openbmc/u-boot/arch/arm/include/asm/arch-meson/gx.h
/openbmc/u-boot/arch/arm/lib/image.c
/openbmc/u-boot/arch/arm/mach-imx/mx6/mp.c
/openbmc/u-boot/arch/arm/mach-meson/Kconfig
/openbmc/u-boot/arch/arm/mach-meson/eth.c
/openbmc/u-boot/arch/powerpc/cpu/mpc85xx/mp.c
/openbmc/u-boot/arch/powerpc/cpu/mpc86xx/mp.c
/openbmc/u-boot/board/amlogic/libretech-cc/libretech-cc.c
/openbmc/u-boot/board/amlogic/odroid-c2/odroid-c2.c
/openbmc/u-boot/board/synopsys/emdk/README
/openbmc/u-boot/cmd/booti.c
/openbmc/u-boot/common/bootm.c
/openbmc/u-boot/configs/khadas-vim_defconfig
/openbmc/u-boot/configs/libretech-cc_defconfig
/openbmc/u-boot/configs/odroid-c2_defconfig
/openbmc/u-boot/configs/p212_defconfig
/openbmc/u-boot/configs/r8a77970_eagle_defconfig
/openbmc/u-boot/configs/uniphier_v7_defconfig
/openbmc/u-boot/configs/uniphier_v8_defconfig
/openbmc/u-boot/drivers/adc/meson-saradc.c
/openbmc/u-boot/drivers/clk/Makefile
/openbmc/u-boot/drivers/clk/clk_meson.c
/openbmc/u-boot/drivers/clk/clk_meson.h
/openbmc/u-boot/drivers/i2c/meson_i2c.c
/openbmc/u-boot/drivers/misc/swap_case.c
spi/spi_flash_ids.c
/openbmc/u-boot/drivers/net/ravb.c
/openbmc/u-boot/drivers/net/sh_eth.c
/openbmc/u-boot/drivers/pinctrl/renesas/pfc.c
/openbmc/u-boot/drivers/reset/reset-uniphier.c
/openbmc/u-boot/drivers/serial/serial_uniphier.c
/openbmc/u-boot/drivers/spi/mxc_spi.c
/openbmc/u-boot/drivers/spi/omap3_spi.c
/openbmc/u-boot/drivers/spi/zynq_qspi.c
/openbmc/u-boot/include/common.h
/openbmc/u-boot/include/configs/dragonboard410c.h
/openbmc/u-boot/include/configs/meson-gx-common.h
/openbmc/u-boot/include/image.h
/openbmc/u-boot/lib/efi_loader/efi_gop.c
/openbmc/u-boot/lib/libavb/Makefile
/openbmc/u-boot/lib/libavb/avb_chain_partition_descriptor.c
/openbmc/u-boot/lib/libavb/avb_chain_partition_descriptor.h
/openbmc/u-boot/lib/libavb/avb_cmdline.c
/openbmc/u-boot/lib/libavb/avb_cmdline.h
/openbmc/u-boot/lib/libavb/avb_crypto.c
/openbmc/u-boot/lib/libavb/avb_crypto.h
/openbmc/u-boot/lib/libavb/avb_descriptor.c
/openbmc/u-boot/lib/libavb/avb_descriptor.h
/openbmc/u-boot/lib/libavb/avb_footer.c
/openbmc/u-boot/lib/libavb/avb_footer.h
/openbmc/u-boot/lib/libavb/avb_hash_descriptor.c
/openbmc/u-boot/lib/libavb/avb_hash_descriptor.h
/openbmc/u-boot/lib/libavb/avb_hashtree_descriptor.c
/openbmc/u-boot/lib/libavb/avb_hashtree_descriptor.h
/openbmc/u-boot/lib/libavb/avb_kernel_cmdline_descriptor.c
/openbmc/u-boot/lib/libavb/avb_kernel_cmdline_descriptor.h
/openbmc/u-boot/lib/libavb/avb_ops.h
/openbmc/u-boot/lib/libavb/avb_property_descriptor.c
/openbmc/u-boot/lib/libavb/avb_property_descriptor.h
/openbmc/u-boot/lib/libavb/avb_rsa.c
/openbmc/u-boot/lib/libavb/avb_rsa.h
/openbmc/u-boot/lib/libavb/avb_sha.h
/openbmc/u-boot/lib/libavb/avb_sha256.c
/openbmc/u-boot/lib/libavb/avb_sha512.c
/openbmc/u-boot/lib/libavb/avb_slot_verify.c
/openbmc/u-boot/lib/libavb/avb_slot_verify.h
/openbmc/u-boot/lib/libavb/avb_sysdeps.h
/openbmc/u-boot/lib/libavb/avb_sysdeps_posix.c
/openbmc/u-boot/lib/libavb/avb_util.c
/openbmc/u-boot/lib/libavb/avb_util.h
/openbmc/u-boot/lib/libavb/avb_vbmeta_image.c
/openbmc/u-boot/lib/libavb/avb_vbmeta_image.h
/openbmc/u-boot/lib/libavb/avb_version.c
/openbmc/u-boot/lib/libavb/avb_version.h
/openbmc/u-boot/lib/libavb/libavb.h
/openbmc/u-boot/test/py/tests/test_avb.py
fb95283912-Jun-2018 Simon Glass <sjg@chromium.org>

spi: sandbox: Fix memory leak in sandbox_sf_bind_emul()

Move the strdup() call so that it is only done when we know we will bind
the device.

Reported-by: Coverity (CID: 131216)

Signed-off-by: Simo

spi: sandbox: Fix memory leak in sandbox_sf_bind_emul()

Move the strdup() call so that it is only done when we know we will bind
the device.

Reported-by: Coverity (CID: 131216)

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

show more ...


/openbmc/u-boot/.gitignore
/openbmc/u-boot/MAINTAINERS
/openbmc/u-boot/arch/arm/cpu/armv8/fwcall.c
/openbmc/u-boot/arch/arm/cpu/armv8/zynqmp/cpu.c
/openbmc/u-boot/arch/arm/dts/Makefile
/openbmc/u-boot/arch/arm/dts/am3517.dtsi
/openbmc/u-boot/arch/arm/dts/dragonboard410c-uboot.dtsi
/openbmc/u-boot/arch/arm/dts/r8a7790-lager.dts
/openbmc/u-boot/arch/arm/dts/r8a7790.dtsi
/openbmc/u-boot/arch/arm/dts/r8a7791-koelsch.dts
/openbmc/u-boot/arch/arm/dts/r8a7791-porter.dts
/openbmc/u-boot/arch/arm/dts/r8a7791.dtsi
/openbmc/u-boot/arch/arm/dts/r8a7792.dtsi
/openbmc/u-boot/arch/arm/dts/r8a7793-gose.dts
/openbmc/u-boot/arch/arm/dts/r8a7793.dtsi
/openbmc/u-boot/arch/arm/dts/r8a7794-alt.dts
/openbmc/u-boot/arch/arm/dts/r8a7794-silk.dts
/openbmc/u-boot/arch/arm/dts/r8a7794.dtsi
/openbmc/u-boot/arch/arm/dts/r8a7795.dtsi
/openbmc/u-boot/arch/arm/dts/r8a7796.dtsi
/openbmc/u-boot/arch/arm/dts/r8a77965.dtsi
/openbmc/u-boot/arch/arm/dts/r8a77970-eagle.dts
/openbmc/u-boot/arch/arm/dts/r8a77970.dtsi
/openbmc/u-boot/arch/arm/dts/r8a77990-ebisu.dts
/openbmc/u-boot/arch/arm/dts/r8a77990.dtsi
/openbmc/u-boot/arch/arm/dts/r8a77995-draak.dts
/openbmc/u-boot/arch/arm/dts/r8a77995.dtsi
/openbmc/u-boot/arch/arm/dts/salvator-common.dtsi
/openbmc/u-boot/arch/arm/dts/ulcb.dtsi
/openbmc/u-boot/arch/arm/dts/zynq-zc702.dts
/openbmc/u-boot/arch/arm/dts/zynq-zturn.dts
/openbmc/u-boot/arch/arm/dts/zynqmp-mini-emmc0.dts
/openbmc/u-boot/arch/arm/dts/zynqmp-mini-emmc1.dts
/openbmc/u-boot/arch/arm/dts/zynqmp-zcu100-revC.dts
/openbmc/u-boot/arch/arm/dts/zynqmp-zcu102-revA.dts
/openbmc/u-boot/arch/arm/dts/zynqmp-zcu106-revA.dts
/openbmc/u-boot/arch/arm/dts/zynqmp-zcu111-revA.dts
/openbmc/u-boot/arch/arm/include/asm/arch-sunxi/clock_sun6i.h
/openbmc/u-boot/arch/arm/lib/vectors.S
/openbmc/u-boot/arch/arm/mach-bcm283x/reset.c
/openbmc/u-boot/arch/arm/mach-davinci/include/mach/gpio.h
/openbmc/u-boot/arch/arm/mach-omap2/omap3/clock.c
/openbmc/u-boot/arch/arm/mach-sunxi/board.c
/openbmc/u-boot/arch/m68k/include/asm/processor.h
/openbmc/u-boot/arch/x86/Kconfig
/openbmc/u-boot/arch/x86/cpu/Makefile
/openbmc/u-boot/arch/x86/cpu/baytrail/Kconfig
/openbmc/u-boot/arch/x86/cpu/baytrail/cpu.c
/openbmc/u-boot/arch/x86/cpu/baytrail/valleyview.c
/openbmc/u-boot/arch/x86/cpu/efi/Kconfig
/openbmc/u-boot/arch/x86/cpu/efi/Makefile
/openbmc/u-boot/arch/x86/cpu/efi/app.c
/openbmc/u-boot/arch/x86/cpu/efi/car.S
/openbmc/u-boot/arch/x86/cpu/efi/payload.c
/openbmc/u-boot/arch/x86/cpu/intel_common/Makefile
/openbmc/u-boot/arch/x86/cpu/intel_common/mrc.c
/openbmc/u-boot/arch/x86/cpu/irq.c
/openbmc/u-boot/arch/x86/cpu/ivybridge/Kconfig
/openbmc/u-boot/arch/x86/cpu/ivybridge/Makefile
/openbmc/u-boot/arch/x86/cpu/ivybridge/model_206ax.c
/openbmc/u-boot/arch/x86/cpu/qemu/Makefile
/openbmc/u-boot/arch/x86/cpu/qemu/qemu.c
/openbmc/u-boot/arch/x86/cpu/quark/Makefile
/openbmc/u-boot/arch/x86/cpu/quark/quark.c
/openbmc/u-boot/arch/x86/cpu/queensbay/Makefile
/openbmc/u-boot/arch/x86/cpu/queensbay/tnc.c
/openbmc/u-boot/arch/x86/dts/Makefile
/openbmc/u-boot/arch/x86/dts/cherryhill.dts
/openbmc/u-boot/arch/x86/dts/chromebook_link.dts
/openbmc/u-boot/arch/x86/dts/cougarcanyon2.dts
/openbmc/u-boot/arch/x86/dts/crownbay.dts
/openbmc/u-boot/arch/x86/dts/efi-x86_app.dts
/openbmc/u-boot/arch/x86/dts/efi-x86_payload.dts
/openbmc/u-boot/arch/x86/dts/galileo.dts
/openbmc/u-boot/arch/x86/include/asm/irq.h
/openbmc/u-boot/arch/x86/lib/Makefile
/openbmc/u-boot/arch/x86/lib/crt0_x86_64_efi.S
/openbmc/u-boot/board/advantech/som-db5800-som-6867/Kconfig
/openbmc/u-boot/board/congatec/conga-qeval20-qa3-e3845/Kconfig
/openbmc/u-boot/board/davinci/da8xxevm/da850evm.c
/openbmc/u-boot/board/dfi/dfi-bt700/Kconfig
/openbmc/u-boot/board/efi/Kconfig
/openbmc/u-boot/board/efi/efi-x86_app/Kconfig
/openbmc/u-boot/board/efi/efi-x86_app/MAINTAINERS
/openbmc/u-boot/board/efi/efi-x86_app/Makefile
/openbmc/u-boot/board/efi/efi-x86_app/app.c
/openbmc/u-boot/board/efi/efi-x86_payload/Kconfig
/openbmc/u-boot/board/efi/efi-x86_payload/MAINTAINERS
/openbmc/u-boot/board/efi/efi-x86_payload/Makefile
/openbmc/u-boot/board/efi/efi-x86_payload/start.S
/openbmc/u-boot/board/emulation/qemu-x86/Kconfig
/openbmc/u-boot/board/emulation/qemu-x86/MAINTAINERS
/openbmc/u-boot/board/intel/minnowmax/Kconfig
/openbmc/u-boot/board/logicpd/am3517evm/am3517evm.c
/openbmc/u-boot/board/renesas/eagle/eagle.c
/openbmc/u-boot/board/synopsys/hsdk/README
/openbmc/u-boot/board/synopsys/hsdk/config.mk
/openbmc/u-boot/board/synopsys/hsdk/headerize-hsdk.py
/openbmc/u-boot/board/ti/am57xx/mux_data.h
/openbmc/u-boot/board/ti/dra7xx/mux_data.h
/openbmc/u-boot/board/xilinx/zynq/board.c
/openbmc/u-boot/board/xilinx/zynqmp/zynqmp.c
/openbmc/u-boot/cmd/Kconfig
/openbmc/u-boot/cmd/Makefile
/openbmc/u-boot/cmd/avb.c
/openbmc/u-boot/cmd/bootefi.c
/openbmc/u-boot/cmd/iotrace.c
/openbmc/u-boot/cmd/mmc.c
/openbmc/u-boot/cmd/nvedit.c
/openbmc/u-boot/common/Makefile
/openbmc/u-boot/common/avb_verify.c
/openbmc/u-boot/common/console.c
/openbmc/u-boot/common/image.c
/openbmc/u-boot/common/iotrace.c
/openbmc/u-boot/common/log.c
/openbmc/u-boot/common/spl/Kconfig
/openbmc/u-boot/configs/am3517_evm_defconfig
/openbmc/u-boot/configs/cougarcanyon2_defconfig
/openbmc/u-boot/configs/da850evm_defconfig
/openbmc/u-boot/configs/efi-x86_app_defconfig
/openbmc/u-boot/configs/efi-x86_payload32_defconfig
/openbmc/u-boot/configs/efi-x86_payload64_defconfig
/openbmc/u-boot/configs/r8a77970_eagle_defconfig
/openbmc/u-boot/configs/r8a77995_draak_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_r5_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/disk/part_efi.c
/openbmc/u-boot/doc/README.avb2
/openbmc/u-boot/doc/README.u-boot_on_efi
/openbmc/u-boot/doc/README.x86
/openbmc/u-boot/doc/device-tree-bindings/misc/intel,irq-router.txt
/openbmc/u-boot/drivers/block/Kconfig
/openbmc/u-boot/drivers/block/Makefile
/openbmc/u-boot/drivers/clk/renesas/r8a77990-cpg-mssr.c
/openbmc/u-boot/drivers/clk/renesas/r8a77995-cpg-mssr.c
/openbmc/u-boot/drivers/gpio/da8xx_gpio.c
/openbmc/u-boot/drivers/gpio/omap_gpio.c
/openbmc/u-boot/drivers/gpio/zynq_gpio.c
/openbmc/u-boot/drivers/mmc/sdhci.c
/openbmc/u-boot/drivers/mmc/zynq_sdhci.c
spi/sandbox.c
/openbmc/u-boot/drivers/net/Kconfig
/openbmc/u-boot/drivers/net/Makefile
/openbmc/u-boot/drivers/net/cpsw.c
/openbmc/u-boot/drivers/net/designware.c
/openbmc/u-boot/drivers/net/mvgbe.c
/openbmc/u-boot/drivers/net/mvgbe.h
/openbmc/u-boot/drivers/net/mvneta.c
/openbmc/u-boot/drivers/net/phy/cortina.c
/openbmc/u-boot/drivers/net/phy/mv88e61xx.c
/openbmc/u-boot/drivers/net/sni_ave.c
/openbmc/u-boot/drivers/net/sunxi_emac.c
/openbmc/u-boot/drivers/net/tsec.c
/openbmc/u-boot/drivers/net/vsc9953.c
/openbmc/u-boot/drivers/net/zynq_gem.c
/openbmc/u-boot/drivers/pci/pci-uclass.c
/openbmc/u-boot/drivers/pinctrl/renesas/pfc-r8a7790.c
/openbmc/u-boot/drivers/pinctrl/renesas/pfc-r8a7791.c
/openbmc/u-boot/drivers/pinctrl/renesas/pfc-r8a7794.c
/openbmc/u-boot/drivers/pinctrl/renesas/pfc-r8a7795.c
/openbmc/u-boot/drivers/pinctrl/renesas/pfc-r8a7796.c
/openbmc/u-boot/drivers/pinctrl/renesas/pfc-r8a77970.c
/openbmc/u-boot/drivers/pinctrl/renesas/pfc-r8a77990.c
/openbmc/u-boot/drivers/pinctrl/renesas/pfc-r8a77995.c
/openbmc/u-boot/drivers/pinctrl/renesas/pfc.c
/openbmc/u-boot/drivers/pinctrl/renesas/sh_pfc.h
/openbmc/u-boot/drivers/serial/serial_zynq.c
/openbmc/u-boot/drivers/timer/cadence-ttc.c
/openbmc/u-boot/drivers/timer/tsc_timer.c
/openbmc/u-boot/drivers/usb/host/ehci-sunxi.c
/openbmc/u-boot/drivers/usb/host/ohci-sunxi.c
/openbmc/u-boot/drivers/usb/host/xhci-pci.c
/openbmc/u-boot/drivers/video/Kconfig
/openbmc/u-boot/drivers/video/Makefile
/openbmc/u-boot/drivers/video/efi.c
/openbmc/u-boot/env/Kconfig
/openbmc/u-boot/fs/btrfs/btrfs.h
/openbmc/u-boot/fs/btrfs/super.c
/openbmc/u-boot/include/avb_verify.h
/openbmc/u-boot/include/blk.h
/openbmc/u-boot/include/configs/UCP1020.h
/openbmc/u-boot/include/configs/da850evm.h
/openbmc/u-boot/include/configs/draak.h
/openbmc/u-boot/include/configs/ebisu.h
/openbmc/u-boot/include/configs/efi-x86_app.h
/openbmc/u-boot/include/configs/efi-x86_payload.h
/openbmc/u-boot/include/configs/hsdk.h
/openbmc/u-boot/include/configs/mx28evk.h
/openbmc/u-boot/include/configs/rcar-gen2-common.h
/openbmc/u-boot/include/configs/rcar-gen3-common.h
/openbmc/u-boot/include/configs/salvator-x.h
/openbmc/u-boot/include/configs/ulcb.h
/openbmc/u-boot/include/configs/vme8349.h
/openbmc/u-boot/include/configs/xilinx_zynqmp_zcu102.h
/openbmc/u-boot/include/cortina.h
/openbmc/u-boot/include/dt-bindings/gpio/gpio.h
/openbmc/u-boot/include/efi.h
/openbmc/u-boot/include/environment.h
/openbmc/u-boot/include/environment/ti/boot.h
/openbmc/u-boot/include/iotrace.h
/openbmc/u-boot/include/log.h
/openbmc/u-boot/include/pe.h
/openbmc/u-boot/include/phy.h
/openbmc/u-boot/include/vsc9953.h
/openbmc/u-boot/lib/Kconfig
/openbmc/u-boot/lib/Makefile
/openbmc/u-boot/lib/efi/Makefile
/openbmc/u-boot/lib/efi/efi_app.c
/openbmc/u-boot/lib/efi/efi_stub.c
/openbmc/u-boot/lib/efi_loader/efi_image_loader.c
/openbmc/u-boot/lib/efi_loader/efi_runtime.c
/openbmc/u-boot/lib/libavb/Makefile
/openbmc/u-boot/lib/libavb/avb_chain_partition_descriptor.c
/openbmc/u-boot/lib/libavb/avb_chain_partition_descriptor.h
/openbmc/u-boot/lib/libavb/avb_cmdline.c
/openbmc/u-boot/lib/libavb/avb_cmdline.h
/openbmc/u-boot/lib/libavb/avb_crypto.c
/openbmc/u-boot/lib/libavb/avb_crypto.h
/openbmc/u-boot/lib/libavb/avb_descriptor.c
/openbmc/u-boot/lib/libavb/avb_descriptor.h
/openbmc/u-boot/lib/libavb/avb_footer.c
/openbmc/u-boot/lib/libavb/avb_footer.h
/openbmc/u-boot/lib/libavb/avb_hash_descriptor.c
/openbmc/u-boot/lib/libavb/avb_hash_descriptor.h
/openbmc/u-boot/lib/libavb/avb_hashtree_descriptor.c
/openbmc/u-boot/lib/libavb/avb_hashtree_descriptor.h
/openbmc/u-boot/lib/libavb/avb_kernel_cmdline_descriptor.c
/openbmc/u-boot/lib/libavb/avb_kernel_cmdline_descriptor.h
/openbmc/u-boot/lib/libavb/avb_ops.h
/openbmc/u-boot/lib/libavb/avb_property_descriptor.c
/openbmc/u-boot/lib/libavb/avb_property_descriptor.h
/openbmc/u-boot/lib/libavb/avb_rsa.c
/openbmc/u-boot/lib/libavb/avb_rsa.h
/openbmc/u-boot/lib/libavb/avb_sha.h
/openbmc/u-boot/lib/libavb/avb_sha256.c
/openbmc/u-boot/lib/libavb/avb_sha512.c
/openbmc/u-boot/lib/libavb/avb_slot_verify.c
/openbmc/u-boot/lib/libavb/avb_slot_verify.h
/openbmc/u-boot/lib/libavb/avb_sysdeps.h
/openbmc/u-boot/lib/libavb/avb_sysdeps_posix.c
/openbmc/u-boot/lib/libavb/avb_util.c
/openbmc/u-boot/lib/libavb/avb_util.h
/openbmc/u-boot/lib/libavb/avb_vbmeta_image.c
/openbmc/u-boot/lib/libavb/avb_vbmeta_image.h
/openbmc/u-boot/lib/libavb/avb_version.c
/openbmc/u-boot/lib/libavb/avb_version.h
/openbmc/u-boot/lib/libavb/libavb.h
/openbmc/u-boot/lib/rsa/rsa-sign.c
/openbmc/u-boot/net/arp.c
/openbmc/u-boot/net/eth-uclass.c
/openbmc/u-boot/net/net.c
/openbmc/u-boot/net/nfs.c
/openbmc/u-boot/net/ping.c
/openbmc/u-boot/scripts/Makefile.lib
/openbmc/u-boot/scripts/Makefile.spl
/openbmc/u-boot/scripts/config_whitelist.txt
/openbmc/u-boot/test/py/tests/test_avb.py
/openbmc/u-boot/tools/env/fw_env.c
/openbmc/u-boot/tools/fdtgrep.c
f8c987f805-Jun-2018 Alexey Brodkin <Alexey.Brodkin@synopsys.com>

lib: Add hexdump

Often during debugging session it's very interesting to see
what data we were dealing with. For example what we write or read
to/from memory or peripherals.

This change introduces

lib: Add hexdump

Often during debugging session it's very interesting to see
what data we were dealing with. For example what we write or read
to/from memory or peripherals.

This change introduces functions that allow to dump binary
data with one simple function invocation like:
------------------->8----------------
print_hex_dump_bytes("", DUMP_PREFIX_OFFSET, buf, len);
------------------->8----------------

which gives us the following:
------------------->8----------------
00000000: f2 b7 c9 88 62 61 75 64 72 61 74 65 3d 31 31 35 ....baudrate=115
00000010: 32 30 30 00 62 6f 6f 74 61 72 67 73 3d 63 6f 6e 200.bootargs=con
00000020: 73 6f 6c 65 3d 74 74 79 53 33 2c 31 31 35 32 30 sole=ttyS3,11520
00000030: 30 6e 38 00 62 6f 6f 74 64 65 6c 61 79 3d 33 00 0n8.bootdelay=3.
00000040: 62 6f 6f 74 66 69 6c 65 3d 75 49 6d 61 67 65 00 bootfile=uImage.
00000050: 66 64 74 63 6f 6e 74 72 6f 6c 61 64 64 72 3d 39 fdtcontroladdr=9
00000060: 66 66 62 31 62 61 30 00 6c 6f 61 64 61 64 64 72 ffb1ba0.loadaddr
00000070: 3d 30 78 38 32 30 30 30 30 30 30 00 73 74 64 65 =0x82000000.stde
00000080: 72 72 3d 73 65 72 69 61 6c 30 40 65 30 30 32 32 rr=serial0@e0022
00000090: 30 30 30 00 73 74 64 69 6e 3d 73 65 72 69 61 6c 000.stdin=serial
000000a0: 30 40 65 30 30 32 32 30 30 30 00 73 74 64 6f 75 0@e0022000.stdou
000000b0: 74 3d 73 65 72 69 61 6c 30 40 65 30 30 32 32 30 t=serial0@e00220
000000c0: 30 30 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00..............
...
------------------->8----------------

Source of hexdump.c was copied from Linux kernel v4.7-rc2.

Signed-off-by: Alexey Brodkin <abrodkin@synopsys.com>
Cc: Anatolij Gustschin <agust@denx.de>
Cc: Mario Six <mario.six@gdsys.cc>
Cc: Simon Glass <sjg@chromium.org>
Cc: Tom Rini <trini@konsulko.com>
Cc: Stefan Roese <sr@denx.de>

show more ...


/openbmc/u-boot/arch/arm/Kconfig
/openbmc/u-boot/arch/arm/cpu/armv8/Kconfig
/openbmc/u-boot/arch/arm/cpu/armv8/fsl-layerscape/Kconfig
/openbmc/u-boot/arch/arm/dts/Makefile
/openbmc/u-boot/arch/arm/dts/armada-388-helios4.dts
/openbmc/u-boot/arch/arm/dts/armada-38x-solidrun-microsom.dtsi
/openbmc/u-boot/arch/arm/dts/fsl-ls1012a-frwy.dts
/openbmc/u-boot/arch/arm/dts/meson-gx.dtsi
/openbmc/u-boot/arch/arm/dts/meson-gxbb-odroidc2.dts
/openbmc/u-boot/arch/arm/dts/meson-gxbb.dtsi
/openbmc/u-boot/arch/arm/dts/meson-gxl-mali.dtsi
/openbmc/u-boot/arch/arm/dts/meson-gxl-s905x-khadas-vim.dts
/openbmc/u-boot/arch/arm/dts/meson-gxl-s905x-libretech-cc.dts
/openbmc/u-boot/arch/arm/dts/meson-gxl-s905x-p212.dts
/openbmc/u-boot/arch/arm/dts/meson-gxl-s905x-p212.dtsi
/openbmc/u-boot/arch/arm/dts/meson-gxl-s905x.dtsi
/openbmc/u-boot/arch/arm/dts/meson-gxl.dtsi
/openbmc/u-boot/arch/arm/mach-mvebu/Kconfig
/openbmc/u-boot/board/freescale/common/vid.c
/openbmc/u-boot/board/freescale/ls1012afrdm/Kconfig
/openbmc/u-boot/board/freescale/ls1012afrdm/MAINTAINERS
/openbmc/u-boot/board/freescale/ls1012afrdm/ls1012afrdm.c
/openbmc/u-boot/board/freescale/ls1012aqds/Kconfig
/openbmc/u-boot/board/freescale/ls1012ardb/Kconfig
/openbmc/u-boot/board/freescale/ls1043aqds/Kconfig
/openbmc/u-boot/board/freescale/ls1043ardb/Kconfig
/openbmc/u-boot/board/freescale/ls1046aqds/Kconfig
/openbmc/u-boot/board/freescale/ls1046ardb/Kconfig
/openbmc/u-boot/board/freescale/ls1088a/Kconfig
/openbmc/u-boot/board/freescale/ls2080aqds/Kconfig
/openbmc/u-boot/board/freescale/ls2080ardb/Kconfig
/openbmc/u-boot/board/kobol/helios4/MAINTAINERS
/openbmc/u-boot/board/kobol/helios4/Makefile
/openbmc/u-boot/board/kobol/helios4/README
/openbmc/u-boot/board/kobol/helios4/helios4.c
/openbmc/u-boot/board/kobol/helios4/kwbimage.cfg
/openbmc/u-boot/configs/helios4_defconfig
/openbmc/u-boot/configs/ls1012afrwy_qspi_SECURE_BOOT_defconfig
/openbmc/u-boot/configs/ls1012afrwy_qspi_defconfig
/openbmc/u-boot/configs/ls1088ardb_sdcard_qspi_SECURE_BOOT_defconfig
/openbmc/u-boot/doc/mvebu/cmd/bubt.txt
ubi/attach.c
ubi/debug.c
ubi/debug.h
ubi/io.c
/openbmc/u-boot/drivers/net/pfe_eth/pfe_firmware.c
/openbmc/u-boot/drivers/usb/gadget/f_mass_storage.c
/openbmc/u-boot/drivers/usb/gadget/storage_common.c
/openbmc/u-boot/examples/api/Makefile
/openbmc/u-boot/fs/btrfs/chunk-map.c
/openbmc/u-boot/fs/ubifs/debug.c
/openbmc/u-boot/fs/ubifs/scan.c
/openbmc/u-boot/include/configs/helios4.h
/openbmc/u-boot/include/configs/ls1012afrwy.h
/openbmc/u-boot/include/configs/ls1021aqds.h
/openbmc/u-boot/include/configs/pcm051.h
/openbmc/u-boot/include/fat.h
/openbmc/u-boot/include/hexdump.h
/openbmc/u-boot/include/linux/byteorder/generic.h
/openbmc/u-boot/include/linux/compat.h
/openbmc/u-boot/lib/Kconfig
/openbmc/u-boot/lib/Makefile
/openbmc/u-boot/lib/hexdump.c
/openbmc/u-boot/lib/vsprintf.c
813d1fb508-Jun-2018 Tom Rini <trini@konsulko.com>

Merge branch 'master' of git://git.denx.de/u-boot-ubi


/openbmc/u-boot/Makefile
/openbmc/u-boot/arch/arm/dts/armada-388-clearfog.dts
/openbmc/u-boot/arch/arm/dts/dragonboard410c-uboot.dtsi
/openbmc/u-boot/arch/arm/dts/exynos5.dtsi
/openbmc/u-boot/arch/arm/dts/kirkwood-atl-sbx81lifkw.dts
/openbmc/u-boot/arch/arm/dts/kirkwood-lsxl.dtsi
/openbmc/u-boot/arch/arm/mach-kirkwood/Kconfig
/openbmc/u-boot/arch/arm/mach-kirkwood/include/mach/config.h
/openbmc/u-boot/arch/arm/mach-mvebu/serdes/a38x/high_speed_env_spec.c
/openbmc/u-boot/arch/arm/mach-mvebu/serdes/a38x/sys_env_lib.h
/openbmc/u-boot/arch/arm/mach-orion5x/lowlevel_init.S
/openbmc/u-boot/arch/arm/mach-stm32/Kconfig
/openbmc/u-boot/board/CZ.NIC/turris_omnia/turris_omnia.c
/openbmc/u-boot/board/alliedtelesis/SBx81LIFKW/Kconfig
/openbmc/u-boot/board/alliedtelesis/SBx81LIFKW/MAINTAINERS
/openbmc/u-boot/board/alliedtelesis/SBx81LIFKW/Makefile
/openbmc/u-boot/board/alliedtelesis/SBx81LIFKW/kwbimage.cfg
/openbmc/u-boot/board/alliedtelesis/SBx81LIFKW/sbx81lifkw.c
/openbmc/u-boot/board/lego/ev3/README
/openbmc/u-boot/board/lego/ev3/legoev3.c
/openbmc/u-boot/board/qualcomm/dragonboard410c/MAINTAINERS
/openbmc/u-boot/board/samsung/common/exynos5-dt.c
/openbmc/u-boot/board/samsung/common/misc.c
/openbmc/u-boot/board/samsung/odroid/odroid.c
/openbmc/u-boot/board/solidrun/clearfog/clearfog.c
/openbmc/u-boot/cmd/fastboot.c
/openbmc/u-boot/cmd/iotrace.c
/openbmc/u-boot/cmd/pxe.c
/openbmc/u-boot/cmd/regulator.c
/openbmc/u-boot/cmd/thordown.c
/openbmc/u-boot/cmd/usb_mass_storage.c
/openbmc/u-boot/common/board_f.c
/openbmc/u-boot/common/iotrace.c
/openbmc/u-boot/common/menu.c
/openbmc/u-boot/configs/B4420QDS_NAND_defconfig
/openbmc/u-boot/configs/B4860QDS_NAND_defconfig
/openbmc/u-boot/configs/BSC9131RDB_NAND_SYSCLK100_defconfig
/openbmc/u-boot/configs/BSC9131RDB_NAND_defconfig
/openbmc/u-boot/configs/BSC9132QDS_NAND_DDRCLK100_defconfig
/openbmc/u-boot/configs/BSC9132QDS_NAND_DDRCLK133_defconfig
/openbmc/u-boot/configs/C29XPCIE_NAND_defconfig
/openbmc/u-boot/configs/MPC8313ERDB_NAND_33_defconfig
/openbmc/u-boot/configs/MPC8313ERDB_NAND_66_defconfig
/openbmc/u-boot/configs/P1010RDB-PA_36BIT_NAND_defconfig
/openbmc/u-boot/configs/P1010RDB-PA_36BIT_SPIFLASH_defconfig
/openbmc/u-boot/configs/P1010RDB-PA_NAND_defconfig
/openbmc/u-boot/configs/P1010RDB-PA_SPIFLASH_defconfig
/openbmc/u-boot/configs/P1010RDB-PB_36BIT_NAND_defconfig
/openbmc/u-boot/configs/P1010RDB-PB_36BIT_SPIFLASH_defconfig
/openbmc/u-boot/configs/P1010RDB-PB_NAND_defconfig
/openbmc/u-boot/configs/P1010RDB-PB_SPIFLASH_defconfig
/openbmc/u-boot/configs/P1020RDB-PC_36BIT_NAND_defconfig
/openbmc/u-boot/configs/P1020RDB-PC_36BIT_SPIFLASH_defconfig
/openbmc/u-boot/configs/P1020RDB-PC_NAND_defconfig
/openbmc/u-boot/configs/P1020RDB-PC_SPIFLASH_defconfig
/openbmc/u-boot/configs/P1020RDB-PD_NAND_defconfig
/openbmc/u-boot/configs/P1020RDB-PD_SPIFLASH_defconfig
/openbmc/u-boot/configs/P1021RDB-PC_36BIT_NAND_defconfig
/openbmc/u-boot/configs/P1021RDB-PC_36BIT_SPIFLASH_defconfig
/openbmc/u-boot/configs/P1021RDB-PC_NAND_defconfig
/openbmc/u-boot/configs/P1021RDB-PC_SPIFLASH_defconfig
/openbmc/u-boot/configs/P1022DS_36BIT_NAND_defconfig
/openbmc/u-boot/configs/P1022DS_36BIT_SPIFLASH_defconfig
/openbmc/u-boot/configs/P1022DS_NAND_defconfig
/openbmc/u-boot/configs/P1022DS_SPIFLASH_defconfig
/openbmc/u-boot/configs/P1024RDB_NAND_defconfig
/openbmc/u-boot/configs/P1024RDB_SPIFLASH_defconfig
/openbmc/u-boot/configs/P1025RDB_NAND_defconfig
/openbmc/u-boot/configs/P1025RDB_SPIFLASH_defconfig
/openbmc/u-boot/configs/P2020RDB-PC_36BIT_NAND_defconfig
/openbmc/u-boot/configs/P2020RDB-PC_36BIT_SPIFLASH_defconfig
/openbmc/u-boot/configs/P2020RDB-PC_NAND_defconfig
/openbmc/u-boot/configs/P2020RDB-PC_SPIFLASH_defconfig
/openbmc/u-boot/configs/SBx81LIFKW_defconfig
/openbmc/u-boot/configs/T1023RDB_NAND_defconfig
/openbmc/u-boot/configs/T1023RDB_SPIFLASH_defconfig
/openbmc/u-boot/configs/T1024QDS_NAND_defconfig
/openbmc/u-boot/configs/T1024QDS_SPIFLASH_defconfig
/openbmc/u-boot/configs/T1024RDB_NAND_defconfig
/openbmc/u-boot/configs/T1024RDB_SPIFLASH_defconfig
/openbmc/u-boot/configs/T1040D4RDB_NAND_defconfig
/openbmc/u-boot/configs/T1040D4RDB_SPIFLASH_defconfig
/openbmc/u-boot/configs/T1040RDB_NAND_defconfig
/openbmc/u-boot/configs/T1040RDB_SPIFLASH_defconfig
/openbmc/u-boot/configs/T1042D4RDB_NAND_defconfig
/openbmc/u-boot/configs/T1042D4RDB_SPIFLASH_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_SPIFLASH_defconfig
/openbmc/u-boot/configs/T2080QDS_NAND_defconfig
/openbmc/u-boot/configs/T2080QDS_SPIFLASH_defconfig
/openbmc/u-boot/configs/T2080RDB_NAND_defconfig
/openbmc/u-boot/configs/T2080RDB_SPIFLASH_defconfig
/openbmc/u-boot/configs/T2081QDS_NAND_defconfig
/openbmc/u-boot/configs/T2081QDS_SPIFLASH_defconfig
/openbmc/u-boot/configs/T4160QDS_NAND_defconfig
/openbmc/u-boot/configs/T4240QDS_NAND_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_nor_defconfig
/openbmc/u-boot/configs/am335x_evm_norboot_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/am57xx_evm_defconfig
/openbmc/u-boot/configs/am57xx_hs_evm_defconfig
/openbmc/u-boot/configs/amarula_a64_relic_defconfig
/openbmc/u-boot/configs/ap121_defconfig
/openbmc/u-boot/configs/ap143_defconfig
/openbmc/u-boot/configs/apf27_defconfig
/openbmc/u-boot/configs/at91sam9260ek_dataflash_cs0_defconfig
/openbmc/u-boot/configs/at91sam9260ek_dataflash_cs1_defconfig
/openbmc/u-boot/configs/at91sam9260ek_nandflash_defconfig
/openbmc/u-boot/configs/at91sam9261ek_dataflash_cs0_defconfig
/openbmc/u-boot/configs/at91sam9261ek_dataflash_cs3_defconfig
/openbmc/u-boot/configs/at91sam9261ek_nandflash_defconfig
/openbmc/u-boot/configs/at91sam9263ek_dataflash_cs0_defconfig
/openbmc/u-boot/configs/at91sam9263ek_dataflash_defconfig
/openbmc/u-boot/configs/at91sam9263ek_nandflash_defconfig
/openbmc/u-boot/configs/at91sam9263ek_norflash_boot_defconfig
/openbmc/u-boot/configs/at91sam9263ek_norflash_defconfig
/openbmc/u-boot/configs/at91sam9g10ek_dataflash_cs0_defconfig
/openbmc/u-boot/configs/at91sam9g10ek_dataflash_cs3_defconfig
/openbmc/u-boot/configs/at91sam9g10ek_nandflash_defconfig
/openbmc/u-boot/configs/at91sam9g20ek_2mmc_defconfig
/openbmc/u-boot/configs/at91sam9g20ek_2mmc_nandflash_defconfig
/openbmc/u-boot/configs/at91sam9g20ek_dataflash_cs0_defconfig
/openbmc/u-boot/configs/at91sam9g20ek_dataflash_cs1_defconfig
/openbmc/u-boot/configs/at91sam9g20ek_nandflash_defconfig
/openbmc/u-boot/configs/at91sam9m10g45ek_mmc_defconfig
/openbmc/u-boot/configs/at91sam9m10g45ek_nandflash_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/at91sam9rlek_dataflash_defconfig
/openbmc/u-boot/configs/at91sam9rlek_mmc_defconfig
/openbmc/u-boot/configs/at91sam9rlek_nandflash_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/at91sam9xeek_dataflash_cs0_defconfig
/openbmc/u-boot/configs/at91sam9xeek_dataflash_cs1_defconfig
/openbmc/u-boot/configs/at91sam9xeek_nandflash_defconfig
/openbmc/u-boot/configs/ax25-ae350_defconfig
/openbmc/u-boot/configs/axm_defconfig
/openbmc/u-boot/configs/axs101_defconfig
/openbmc/u-boot/configs/axs103_defconfig
/openbmc/u-boot/configs/bcm23550_w1d_defconfig
/openbmc/u-boot/configs/bcm28155_ap_defconfig
/openbmc/u-boot/configs/birdland_bav335a_defconfig
/openbmc/u-boot/configs/birdland_bav335b_defconfig
/openbmc/u-boot/configs/bitmain_antminer_s9_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/brxre1_defconfig
/openbmc/u-boot/configs/cgtqmx6eval_defconfig
/openbmc/u-boot/configs/cherryhill_defconfig
/openbmc/u-boot/configs/chiliboard_defconfig
/openbmc/u-boot/configs/chromebit_mickey_defconfig
/openbmc/u-boot/configs/chromebook_jerry_defconfig
/openbmc/u-boot/configs/chromebook_link64_defconfig
/openbmc/u-boot/configs/chromebook_link_defconfig
/openbmc/u-boot/configs/chromebook_minnie_defconfig
/openbmc/u-boot/configs/chromebook_samus_defconfig
/openbmc/u-boot/configs/cl-som-am57x_defconfig
/openbmc/u-boot/configs/cl-som-imx7_defconfig
/openbmc/u-boot/configs/clearfog_defconfig
/openbmc/u-boot/configs/cm_fx6_defconfig
/openbmc/u-boot/configs/cm_t335_defconfig
/openbmc/u-boot/configs/cm_t43_defconfig
/openbmc/u-boot/configs/cm_t54_defconfig
/openbmc/u-boot/configs/conga-qeval20-qa3-e3845-internal-uart_defconfig
/openbmc/u-boot/configs/controlcenterdc_defconfig
/openbmc/u-boot/configs/corvus_defconfig
/openbmc/u-boot/configs/da850_am18xxevm_defconfig
/openbmc/u-boot/configs/da850evm_defconfig
/openbmc/u-boot/configs/db-88f6720_defconfig
/openbmc/u-boot/configs/db-88f6820-amc_defconfig
/openbmc/u-boot/configs/db-88f6820-gp_defconfig
/openbmc/u-boot/configs/db-mv784mp-gp_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/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/duovero_defconfig
/openbmc/u-boot/configs/efi-x86_defconfig
/openbmc/u-boot/configs/etamin_defconfig
/openbmc/u-boot/configs/evb-px5_defconfig
/openbmc/u-boot/configs/evb-rk3036_defconfig
/openbmc/u-boot/configs/evb-rk3128_defconfig
/openbmc/u-boot/configs/evb-rk3229_defconfig
/openbmc/u-boot/configs/evb-rk3288_defconfig
/openbmc/u-boot/configs/evb-rk3328_defconfig
/openbmc/u-boot/configs/evb-rk3399_defconfig
/openbmc/u-boot/configs/evb-rv1108_defconfig
/openbmc/u-boot/configs/fennec-rk3288_defconfig
/openbmc/u-boot/configs/firefly-rk3288_defconfig
/openbmc/u-boot/configs/firefly-rk3399_defconfig
/openbmc/u-boot/configs/ge_bx50v3_defconfig
/openbmc/u-boot/configs/geekbox_defconfig
/openbmc/u-boot/configs/gose_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/hsdk_defconfig
/openbmc/u-boot/configs/imx6dl_icore_nand_defconfig
/openbmc/u-boot/configs/imx6dl_mamoj_defconfig
/openbmc/u-boot/configs/imx6q_icore_nand_defconfig
/openbmc/u-boot/configs/imx6qdl_icore_mipi_defconfig
/openbmc/u-boot/configs/imx6qdl_icore_mmc_defconfig
/openbmc/u-boot/configs/imx6qdl_icore_nand_defconfig
/openbmc/u-boot/configs/imx6qdl_icore_rqs_defconfig
/openbmc/u-boot/configs/imx6ul_geam_mmc_defconfig
/openbmc/u-boot/configs/imx6ul_geam_nand_defconfig
/openbmc/u-boot/configs/imx6ul_isiot_emmc_defconfig
/openbmc/u-boot/configs/imx6ul_isiot_nand_defconfig
/openbmc/u-boot/configs/ipam390_defconfig
/openbmc/u-boot/configs/k2e_evm_defconfig
/openbmc/u-boot/configs/k2g_evm_defconfig
/openbmc/u-boot/configs/k2hk_evm_defconfig
/openbmc/u-boot/configs/k2l_evm_defconfig
/openbmc/u-boot/configs/kc1_defconfig
/openbmc/u-boot/configs/khadas-vim_defconfig
/openbmc/u-boot/configs/koelsch_defconfig
/openbmc/u-boot/configs/kp_imx53_defconfig
/openbmc/u-boot/configs/kp_imx6q_tpc_defconfig
/openbmc/u-boot/configs/kylin-rk3036_defconfig
/openbmc/u-boot/configs/lager_defconfig
/openbmc/u-boot/configs/legoev3_defconfig
/openbmc/u-boot/configs/libretech-cc_defconfig
/openbmc/u-boot/configs/lion-rk3368_defconfig
/openbmc/u-boot/configs/liteboard_defconfig
/openbmc/u-boot/configs/ls1021aqds_nand_defconfig
/openbmc/u-boot/configs/ls1021aqds_sdcard_ifc_defconfig
/openbmc/u-boot/configs/ls1021aqds_sdcard_qspi_defconfig
/openbmc/u-boot/configs/ls1021atwr_sdcard_ifc_SECURE_BOOT_defconfig
/openbmc/u-boot/configs/ls1021atwr_sdcard_ifc_defconfig
/openbmc/u-boot/configs/ls1021atwr_sdcard_qspi_defconfig
/openbmc/u-boot/configs/ls1043aqds_nand_defconfig
/openbmc/u-boot/configs/ls1043aqds_sdcard_ifc_defconfig
/openbmc/u-boot/configs/ls1043aqds_sdcard_qspi_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/ls2080aqds_nand_defconfig
/openbmc/u-boot/configs/ls2080ardb_nand_defconfig
/openbmc/u-boot/configs/lschlv2_defconfig
/openbmc/u-boot/configs/lsxhl_defconfig
/openbmc/u-boot/configs/m53evk_defconfig
/openbmc/u-boot/configs/ma5d4evk_defconfig
/openbmc/u-boot/configs/maxbcm_defconfig
/openbmc/u-boot/configs/minnowmax_defconfig
/openbmc/u-boot/configs/miqi-rk3288_defconfig
/openbmc/u-boot/configs/mvebu_db-88f3720_defconfig
/openbmc/u-boot/configs/mvebu_db_armada8k_defconfig
/openbmc/u-boot/configs/mvebu_espressobin-88f3720_defconfig
/openbmc/u-boot/configs/mvebu_mcbin-88f8040_defconfig
/openbmc/u-boot/configs/mx31pdk_defconfig
/openbmc/u-boot/configs/mx6cuboxi_defconfig
/openbmc/u-boot/configs/mx6memcal_defconfig
/openbmc/u-boot/configs/mx6qsabrelite_defconfig
/openbmc/u-boot/configs/mx6sabreauto_defconfig
/openbmc/u-boot/configs/mx6sabresd_defconfig
/openbmc/u-boot/configs/mx6slevk_spl_defconfig
/openbmc/u-boot/configs/mx6sxsabresd_spl_defconfig
/openbmc/u-boot/configs/mx6ul_14x14_evk_defconfig
/openbmc/u-boot/configs/mx6ul_9x9_evk_defconfig
/openbmc/u-boot/configs/nitrogen6dl2g_defconfig
/openbmc/u-boot/configs/nitrogen6dl_defconfig
/openbmc/u-boot/configs/nitrogen6q2g_defconfig
/openbmc/u-boot/configs/nitrogen6q_defconfig
/openbmc/u-boot/configs/nitrogen6s1g_defconfig
/openbmc/u-boot/configs/nitrogen6s_defconfig
/openbmc/u-boot/configs/novena_defconfig
/openbmc/u-boot/configs/nsim_700_defconfig
/openbmc/u-boot/configs/nsim_700be_defconfig
/openbmc/u-boot/configs/nsim_hs38_defconfig
/openbmc/u-boot/configs/nsim_hs38be_defconfig
/openbmc/u-boot/configs/nyan-big_defconfig
/openbmc/u-boot/configs/odroid-c2_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/omap4_panda_defconfig
/openbmc/u-boot/configs/omap4_sdp4430_defconfig
/openbmc/u-boot/configs/omap5_uevm_defconfig
/openbmc/u-boot/configs/omapl138_lcdk_defconfig
/openbmc/u-boot/configs/opos6uldev_defconfig
/openbmc/u-boot/configs/ot1200_spl_defconfig
/openbmc/u-boot/configs/p212_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/phycore-rk3288_defconfig
/openbmc/u-boot/configs/picosam9g45_defconfig
/openbmc/u-boot/configs/platinum_picon_defconfig
/openbmc/u-boot/configs/platinum_titanium_defconfig
/openbmc/u-boot/configs/popmetal-rk3288_defconfig
/openbmc/u-boot/configs/porter_defconfig
/openbmc/u-boot/configs/puma-rk3399_defconfig
/openbmc/u-boot/configs/pxm2_defconfig
/openbmc/u-boot/configs/qemu-x86_64_defconfig
/openbmc/u-boot/configs/rastaban_defconfig
/openbmc/u-boot/configs/rock2_defconfig
/openbmc/u-boot/configs/rock_defconfig
/openbmc/u-boot/configs/rut_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_mmc_defconfig
/openbmc/u-boot/configs/sama5d2_xplained_spiflash_defconfig
/openbmc/u-boot/configs/sama5d36ek_cmp_mmc_defconfig
/openbmc/u-boot/configs/sama5d36ek_cmp_nandflash_defconfig
/openbmc/u-boot/configs/sama5d36ek_cmp_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/sama5d4ek_mmc_defconfig
/openbmc/u-boot/configs/sama5d4ek_nandflash_defconfig
/openbmc/u-boot/configs/sama5d4ek_spiflash_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_noblk_defconfig
/openbmc/u-boot/configs/sandbox_spl_defconfig
/openbmc/u-boot/configs/sheep-rk3368_defconfig
/openbmc/u-boot/configs/sheevaplug_defconfig
/openbmc/u-boot/configs/silk_defconfig
/openbmc/u-boot/configs/sksimx6_defconfig
/openbmc/u-boot/configs/smartweb_defconfig
/openbmc/u-boot/configs/sniper_defconfig
/openbmc/u-boot/configs/snow_defconfig
/openbmc/u-boot/configs/socfpga_arria10_defconfig
/openbmc/u-boot/configs/socfpga_arria5_defconfig
/openbmc/u-boot/configs/socfpga_cyclone5_defconfig
/openbmc/u-boot/configs/socfpga_dbm_soc1_defconfig
/openbmc/u-boot/configs/socfpga_de0_nano_soc_defconfig
/openbmc/u-boot/configs/socfpga_de10_nano_defconfig
/openbmc/u-boot/configs/socfpga_de1_soc_defconfig
/openbmc/u-boot/configs/socfpga_is1_defconfig
/openbmc/u-boot/configs/socfpga_mcvevk_defconfig
/openbmc/u-boot/configs/socfpga_sockit_defconfig
/openbmc/u-boot/configs/socfpga_socrates_defconfig
/openbmc/u-boot/configs/socfpga_sr1500_defconfig
/openbmc/u-boot/configs/socfpga_vining_fpga_defconfig
/openbmc/u-boot/configs/som-db5800-som-6867_defconfig
/openbmc/u-boot/configs/spring_defconfig
/openbmc/u-boot/configs/stm32mp15_basic_defconfig
/openbmc/u-boot/configs/stout_defconfig
/openbmc/u-boot/configs/syzygy_hub_defconfig
/openbmc/u-boot/configs/taurus_defconfig
/openbmc/u-boot/configs/tbs2910_defconfig
/openbmc/u-boot/configs/theadorable_debug_defconfig
/openbmc/u-boot/configs/thuban_defconfig
/openbmc/u-boot/configs/thunderx_88xx_defconfig
/openbmc/u-boot/configs/ti814x_evm_defconfig
/openbmc/u-boot/configs/ti816x_evm_defconfig
/openbmc/u-boot/configs/tinker-rk3288_defconfig
/openbmc/u-boot/configs/topic_miami_defconfig
/openbmc/u-boot/configs/topic_miamilite_defconfig
/openbmc/u-boot/configs/topic_miamiplus_defconfig
/openbmc/u-boot/configs/turris_mox_defconfig
/openbmc/u-boot/configs/turris_omnia_defconfig
/openbmc/u-boot/configs/udoo_defconfig
/openbmc/u-boot/configs/udoo_neo_defconfig
/openbmc/u-boot/configs/uniphier_ld4_sld8_defconfig
/openbmc/u-boot/configs/uniphier_v7_defconfig
/openbmc/u-boot/configs/vyasa-rk3288_defconfig
/openbmc/u-boot/configs/wandboard_defconfig
/openbmc/u-boot/configs/warp7_defconfig
/openbmc/u-boot/configs/wb45n_defconfig
/openbmc/u-boot/configs/wb50n_defconfig
/openbmc/u-boot/configs/woodburn_sd_defconfig
/openbmc/u-boot/configs/work_92105_defconfig
/openbmc/u-boot/configs/xilinx_zynqmp_r5_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/xpress_spl_defconfig
/openbmc/u-boot/configs/zc5202_defconfig
/openbmc/u-boot/configs/zc5601_defconfig
/openbmc/u-boot/configs/zynq_cc108_defconfig
/openbmc/u-boot/configs/zynq_cse_qspi_defconfig
/openbmc/u-boot/configs/zynq_minized_defconfig
/openbmc/u-boot/configs/zynq_z_turn_defconfig
/openbmc/u-boot/configs/zynq_zc702_defconfig
/openbmc/u-boot/configs/zynq_zc706_defconfig
/openbmc/u-boot/configs/zynq_zc770_xm010_defconfig
/openbmc/u-boot/configs/zynq_zc770_xm011_defconfig
/openbmc/u-boot/configs/zynq_zc770_xm011_x16_defconfig
/openbmc/u-boot/configs/zynq_zed_defconfig
/openbmc/u-boot/configs/zynq_zybo_defconfig
/openbmc/u-boot/disk/part_efi.c
/openbmc/u-boot/drivers/block/Kconfig
/openbmc/u-boot/drivers/i2c/mvtwsi.c
/openbmc/u-boot/drivers/misc/stm32_rcc.c
ubi/build.c
/openbmc/u-boot/drivers/rtc/Kconfig
/openbmc/u-boot/drivers/rtc/mvrtc.c
/openbmc/u-boot/drivers/rtc/mvrtc.h
/openbmc/u-boot/drivers/usb/dwc3/linux-compat.h
/openbmc/u-boot/drivers/usb/musb-new/linux-compat.h
/openbmc/u-boot/include/configs/SBx81LIFKW.h
/openbmc/u-boot/include/configs/clearfog.h
/openbmc/u-boot/include/configs/guruplug.h
/openbmc/u-boot/include/configs/legoev3.h
/openbmc/u-boot/include/configs/odroid_xu3.h
/openbmc/u-boot/include/configs/sheevaplug.h
/openbmc/u-boot/include/configs/stih410-b2260.h
/openbmc/u-boot/include/iotrace.h
/openbmc/u-boot/include/linux/bug.h
/openbmc/u-boot/include/part_efi.h
/openbmc/u-boot/scripts/Makefile.spl
/openbmc/u-boot/scripts/config_whitelist.txt
/openbmc/u-boot/scripts/get_default_envs.sh
/openbmc/u-boot/scripts/mailmapper
/openbmc/u-boot/test/run
/openbmc/u-boot/tools/binman/README
/openbmc/u-boot/tools/binman/binman.py
/openbmc/u-boot/tools/binman/bsection.py
/openbmc/u-boot/tools/binman/cmdline.py
/openbmc/u-boot/tools/binman/control.py
/openbmc/u-boot/tools/binman/elf.py
/openbmc/u-boot/tools/binman/elf_test.py
/openbmc/u-boot/tools/binman/entry.py
/openbmc/u-boot/tools/binman/etype/_testing.py
/openbmc/u-boot/tools/binman/etype/blob.py
/openbmc/u-boot/tools/binman/etype/intel_cmc.py
/openbmc/u-boot/tools/binman/etype/intel_descriptor.py
/openbmc/u-boot/tools/binman/etype/intel_fsp.py
/openbmc/u-boot/tools/binman/etype/intel_me.py
/openbmc/u-boot/tools/binman/etype/intel_mrc.py
/openbmc/u-boot/tools/binman/etype/intel_vbt.py
/openbmc/u-boot/tools/binman/etype/intel_vga.py
/openbmc/u-boot/tools/binman/etype/section.py
/openbmc/u-boot/tools/binman/etype/u_boot.py
/openbmc/u-boot/tools/binman/etype/u_boot_dtb.py
/openbmc/u-boot/tools/binman/etype/u_boot_dtb_with_ucode.py
/openbmc/u-boot/tools/binman/etype/u_boot_img.py
/openbmc/u-boot/tools/binman/etype/u_boot_nodtb.py
/openbmc/u-boot/tools/binman/etype/u_boot_spl.py
/openbmc/u-boot/tools/binman/etype/u_boot_spl_bss_pad.py
/openbmc/u-boot/tools/binman/etype/u_boot_spl_dtb.py
/openbmc/u-boot/tools/binman/etype/u_boot_spl_nodtb.py
/openbmc/u-boot/tools/binman/etype/u_boot_spl_with_ucode_ptr.py
/openbmc/u-boot/tools/binman/etype/u_boot_ucode.py
/openbmc/u-boot/tools/binman/etype/u_boot_with_ucode_ptr.py
/openbmc/u-boot/tools/binman/etype/x86_start16.py
/openbmc/u-boot/tools/binman/etype/x86_start16_spl.py
/openbmc/u-boot/tools/binman/ftest.py
/openbmc/u-boot/tools/binman/image.py
/openbmc/u-boot/tools/binman/image_test.py
/openbmc/u-boot/tools/binman/test/54_unit_address.dts
/openbmc/u-boot/tools/binman/test/55_sections.dts
/openbmc/u-boot/tools/binman/test/56_name_prefix.dts
/openbmc/u-boot/tools/buildman/README
/openbmc/u-boot/tools/buildman/builder.py
/openbmc/u-boot/tools/buildman/builderthread.py
/openbmc/u-boot/tools/buildman/cmdline.py
/openbmc/u-boot/tools/buildman/control.py
/openbmc/u-boot/tools/buildman/func_test.py
/openbmc/u-boot/tools/patman/test.py
78306cba29-May-2018 Stefan Roese <sr@denx.de>

mtd: ubi: Add missing newlines in ubi_init()

I just stumbled over some cluttered UBI messages. It seems some newline
chars are missing in the current U-Boot UBI source. Lets fix this
in U-Boot as we

mtd: ubi: Add missing newlines in ubi_init()

I just stumbled over some cluttered UBI messages. It seems some newline
chars are missing in the current U-Boot UBI source. Lets fix this
in U-Boot as well (Linux has those fixes already).

Signed-off-by: Stefan Roese <sr@denx.de>
Cc: Heiko Schocher <hs@denx.de>

show more ...


/openbmc/u-boot/.gitignore
/openbmc/u-boot/MAINTAINERS
/openbmc/u-boot/Makefile
/openbmc/u-boot/arch/arc/Kconfig
/openbmc/u-boot/arch/arc/cpu/u-boot.lds
/openbmc/u-boot/arch/arc/dts/Makefile
/openbmc/u-boot/arch/arc/dts/emdk.dts
/openbmc/u-boot/arch/arc/lib/cache.c
/openbmc/u-boot/arch/arc/lib/relocate.c
/openbmc/u-boot/arch/arc/lib/reset.c
/openbmc/u-boot/arch/arm/Kconfig
/openbmc/u-boot/arch/arm/cpu/armv7/Makefile
/openbmc/u-boot/arch/arm/cpu/armv7/sctlr.S
/openbmc/u-boot/arch/arm/cpu/armv8/zynqmp/clk.c
/openbmc/u-boot/arch/arm/cpu/armv8/zynqmp/cpu.c
/openbmc/u-boot/arch/arm/dts/Makefile
/openbmc/u-boot/arch/arm/dts/armada-388-clearfog.dts
/openbmc/u-boot/arch/arm/dts/bitmain-antminer-s9.dts
/openbmc/u-boot/arch/arm/dts/dragonboard410c-uboot.dtsi
/openbmc/u-boot/arch/arm/dts/kirkwood-atl-sbx81lifkw.dts
/openbmc/u-boot/arch/arm/dts/kirkwood-lsxl.dtsi
/openbmc/u-boot/arch/arm/dts/r8a77990-ebisu-u-boot.dts
/openbmc/u-boot/arch/arm/dts/r8a77990-ebisu.dts
/openbmc/u-boot/arch/arm/dts/r8a77990-u-boot.dtsi
/openbmc/u-boot/arch/arm/dts/r8a77990.dtsi
/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-h5-orangepi-pc2.dts
/openbmc/u-boot/arch/arm/dts/sun50i-h5-orangepi-prime.dts
/openbmc/u-boot/arch/arm/dts/sun8i-a83t.dtsi
/openbmc/u-boot/arch/arm/dts/sun8i-h3-bananapi-m2-plus.dts
/openbmc/u-boot/arch/arm/dts/sun8i-h3.dtsi
/openbmc/u-boot/arch/arm/dts/sunxi-u-boot.dtsi
/openbmc/u-boot/arch/arm/dts/zynq-minized.dts
/openbmc/u-boot/arch/arm/dts/zynqmp-clk-ccf.dtsi
/openbmc/u-boot/arch/arm/dts/zynqmp-zcu100-revC.dts
/openbmc/u-boot/arch/arm/dts/zynqmp-zcu104-revA.dts
/openbmc/u-boot/arch/arm/dts/zynqmp-zcu104-revC.dts
/openbmc/u-boot/arch/arm/dts/zynqmp-zcu111-revA.dts
/openbmc/u-boot/arch/arm/include/asm/arch-sunxi/clock_sun6i.h
/openbmc/u-boot/arch/arm/include/asm/arch-zynqmp/hardware.h
/openbmc/u-boot/arch/arm/include/asm/arch-zynqmp/sys_proto.h
/openbmc/u-boot/arch/arm/include/asm/u-boot-arm.h
/openbmc/u-boot/arch/arm/mach-kirkwood/Kconfig
/openbmc/u-boot/arch/arm/mach-kirkwood/include/mach/config.h
/openbmc/u-boot/arch/arm/mach-mvebu/serdes/a38x/high_speed_env_spec.c
/openbmc/u-boot/arch/arm/mach-mvebu/serdes/a38x/sys_env_lib.h
/openbmc/u-boot/arch/arm/mach-omap2/boot-common.c
/openbmc/u-boot/arch/arm/mach-omap2/utils.c
/openbmc/u-boot/arch/arm/mach-rmobile/Kconfig.64
/openbmc/u-boot/arch/arm/mach-rmobile/cpu_info.c
/openbmc/u-boot/arch/arm/mach-rmobile/include/mach/rmobile.h
/openbmc/u-boot/arch/arm/mach-rockchip/rk3128-board.c
/openbmc/u-boot/arch/arm/mach-rockchip/rk322x-board.c
/openbmc/u-boot/arch/arm/mach-sunxi/Kconfig
/openbmc/u-boot/arch/arm/mach-sunxi/Makefile
/openbmc/u-boot/arch/sandbox/cpu/cpu.c
/openbmc/u-boot/arch/sandbox/cpu/os.c
/openbmc/u-boot/arch/sandbox/cpu/u-boot.lds
/openbmc/u-boot/arch/sandbox/dts/test.dts
/openbmc/u-boot/arch/sandbox/include/asm/setjmp.h
/openbmc/u-boot/arch/sandbox/lib/Makefile
/openbmc/u-boot/arch/sandbox/lib/sections.c
/openbmc/u-boot/arch/x86/config.mk
/openbmc/u-boot/arch/x86/include/asm/u-boot-x86.h
/openbmc/u-boot/arch/x86/lib/Makefile
/openbmc/u-boot/arch/x86/lib/bootm.c
/openbmc/u-boot/board/alliedtelesis/SBx81LIFKW/Kconfig
/openbmc/u-boot/board/alliedtelesis/SBx81LIFKW/MAINTAINERS
/openbmc/u-boot/board/alliedtelesis/SBx81LIFKW/Makefile
/openbmc/u-boot/board/alliedtelesis/SBx81LIFKW/kwbimage.cfg
/openbmc/u-boot/board/alliedtelesis/SBx81LIFKW/sbx81lifkw.c
/openbmc/u-boot/board/amazon/kc1/kc1.c
/openbmc/u-boot/board/bitmain/antminer_s9/MAINTAINERS
/openbmc/u-boot/board/bitmain/antminer_s9/Makefile
/openbmc/u-boot/board/bitmain/antminer_s9/bitmain-antminer-s9/ps7_init_gpl.c
/openbmc/u-boot/board/bitmain/antminer_s9/board.c
/openbmc/u-boot/board/eets/pdu001/Kconfig
/openbmc/u-boot/board/lg/sniper/sniper.c
/openbmc/u-boot/board/qualcomm/dragonboard410c/MAINTAINERS
/openbmc/u-boot/board/renesas/ebisu/Kconfig
/openbmc/u-boot/board/renesas/ebisu/MAINTAINERS
/openbmc/u-boot/board/renesas/ebisu/Makefile
/openbmc/u-boot/board/renesas/ebisu/ebisu.c
/openbmc/u-boot/board/solidrun/clearfog/clearfog.c
/openbmc/u-boot/board/sunxi/MAINTAINERS
/openbmc/u-boot/board/sunxi/board.c
/openbmc/u-boot/board/synopsys/emdk/Kconfig
/openbmc/u-boot/board/synopsys/emdk/MAINTAINERS
/openbmc/u-boot/board/synopsys/emdk/Makefile
/openbmc/u-boot/board/synopsys/emdk/emdk.c
/openbmc/u-boot/board/ti/am57xx/board.c
/openbmc/u-boot/board/ti/common/Kconfig
/openbmc/u-boot/board/ti/dra7xx/evm.c
/openbmc/u-boot/board/xilinx/zynqmp/zynqmp.c
/openbmc/u-boot/cmd/Kconfig
/openbmc/u-boot/cmd/bootefi.c
/openbmc/u-boot/cmd/fastboot.c
/openbmc/u-boot/cmd/fpga.c
/openbmc/u-boot/cmd/mmc.c
/openbmc/u-boot/common/Makefile
/openbmc/u-boot/common/bootm.c
/openbmc/u-boot/configs/A13-OLinuXino_defconfig
/openbmc/u-boot/configs/A20-OLinuXino-Lime2-eMMC_defconfig
/openbmc/u-boot/configs/A20-OLinuXino-Lime2_defconfig
/openbmc/u-boot/configs/A20-Olimex-SOM204-EVB-eMMC_defconfig
/openbmc/u-boot/configs/A20-Olimex-SOM204-EVB_defconfig
/openbmc/u-boot/configs/B4420QDS_NAND_defconfig
/openbmc/u-boot/configs/B4860QDS_NAND_defconfig
/openbmc/u-boot/configs/BSC9131RDB_NAND_SYSCLK100_defconfig
/openbmc/u-boot/configs/BSC9131RDB_NAND_defconfig
/openbmc/u-boot/configs/BSC9132QDS_NAND_DDRCLK100_defconfig
/openbmc/u-boot/configs/BSC9132QDS_NAND_DDRCLK133_defconfig
/openbmc/u-boot/configs/Bananapi_m2m_defconfig
/openbmc/u-boot/configs/C29XPCIE_NAND_defconfig
/openbmc/u-boot/configs/Cubietruck_defconfig
/openbmc/u-boot/configs/MPC8313ERDB_NAND_33_defconfig
/openbmc/u-boot/configs/MPC8313ERDB_NAND_66_defconfig
/openbmc/u-boot/configs/P1010RDB-PA_36BIT_NAND_defconfig
/openbmc/u-boot/configs/P1010RDB-PA_36BIT_SPIFLASH_defconfig
/openbmc/u-boot/configs/P1010RDB-PA_NAND_defconfig
/openbmc/u-boot/configs/P1010RDB-PA_SPIFLASH_defconfig
/openbmc/u-boot/configs/P1010RDB-PB_36BIT_NAND_defconfig
/openbmc/u-boot/configs/P1010RDB-PB_36BIT_SPIFLASH_defconfig
/openbmc/u-boot/configs/P1010RDB-PB_NAND_defconfig
/openbmc/u-boot/configs/P1010RDB-PB_SPIFLASH_defconfig
/openbmc/u-boot/configs/P1020RDB-PC_36BIT_NAND_defconfig
/openbmc/u-boot/configs/P1020RDB-PC_36BIT_SPIFLASH_defconfig
/openbmc/u-boot/configs/P1020RDB-PC_NAND_defconfig
/openbmc/u-boot/configs/P1020RDB-PC_SPIFLASH_defconfig
/openbmc/u-boot/configs/P1020RDB-PD_NAND_defconfig
/openbmc/u-boot/configs/P1020RDB-PD_SPIFLASH_defconfig
/openbmc/u-boot/configs/P1021RDB-PC_36BIT_NAND_defconfig
/openbmc/u-boot/configs/P1021RDB-PC_36BIT_SPIFLASH_defconfig
/openbmc/u-boot/configs/P1021RDB-PC_NAND_defconfig
/openbmc/u-boot/configs/P1021RDB-PC_SPIFLASH_defconfig
/openbmc/u-boot/configs/P1022DS_36BIT_NAND_defconfig
/openbmc/u-boot/configs/P1022DS_36BIT_SPIFLASH_defconfig
/openbmc/u-boot/configs/P1022DS_NAND_defconfig
/openbmc/u-boot/configs/P1022DS_SPIFLASH_defconfig
/openbmc/u-boot/configs/P1024RDB_NAND_defconfig
/openbmc/u-boot/configs/P1024RDB_SPIFLASH_defconfig
/openbmc/u-boot/configs/P1025RDB_NAND_defconfig
/openbmc/u-boot/configs/P1025RDB_SPIFLASH_defconfig
/openbmc/u-boot/configs/P2020RDB-PC_36BIT_NAND_defconfig
/openbmc/u-boot/configs/P2020RDB-PC_36BIT_SPIFLASH_defconfig
/openbmc/u-boot/configs/P2020RDB-PC_NAND_defconfig
/openbmc/u-boot/configs/P2020RDB-PC_SPIFLASH_defconfig
/openbmc/u-boot/configs/SBx81LIFKW_defconfig
/openbmc/u-boot/configs/Sinlinx_SinA33_defconfig
/openbmc/u-boot/configs/Sinovoip_BPI_M2_Plus_defconfig
/openbmc/u-boot/configs/T1023RDB_NAND_defconfig
/openbmc/u-boot/configs/T1023RDB_SPIFLASH_defconfig
/openbmc/u-boot/configs/T1024QDS_NAND_defconfig
/openbmc/u-boot/configs/T1024QDS_SPIFLASH_defconfig
/openbmc/u-boot/configs/T1024RDB_NAND_defconfig
/openbmc/u-boot/configs/T1024RDB_SPIFLASH_defconfig
/openbmc/u-boot/configs/T1040D4RDB_NAND_defconfig
/openbmc/u-boot/configs/T1040D4RDB_SPIFLASH_defconfig
/openbmc/u-boot/configs/T1040RDB_NAND_defconfig
/openbmc/u-boot/configs/T1040RDB_SPIFLASH_defconfig
/openbmc/u-boot/configs/T1042D4RDB_NAND_defconfig
/openbmc/u-boot/configs/T1042D4RDB_SPIFLASH_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_SPIFLASH_defconfig
/openbmc/u-boot/configs/T2080QDS_NAND_defconfig
/openbmc/u-boot/configs/T2080QDS_SPIFLASH_defconfig
/openbmc/u-boot/configs/T2080RDB_NAND_defconfig
/openbmc/u-boot/configs/T2080RDB_SPIFLASH_defconfig
/openbmc/u-boot/configs/T2081QDS_NAND_defconfig
/openbmc/u-boot/configs/T2081QDS_SPIFLASH_defconfig
/openbmc/u-boot/configs/T4160QDS_NAND_defconfig
/openbmc/u-boot/configs/T4240QDS_NAND_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_nor_defconfig
/openbmc/u-boot/configs/am335x_evm_norboot_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/am57xx_evm_defconfig
/openbmc/u-boot/configs/am57xx_hs_evm_defconfig
/openbmc/u-boot/configs/amarula_a64_relic_defconfig
/openbmc/u-boot/configs/ap121_defconfig
/openbmc/u-boot/configs/ap143_defconfig
/openbmc/u-boot/configs/apf27_defconfig
/openbmc/u-boot/configs/at91sam9260ek_dataflash_cs0_defconfig
/openbmc/u-boot/configs/at91sam9260ek_dataflash_cs1_defconfig
/openbmc/u-boot/configs/at91sam9260ek_nandflash_defconfig
/openbmc/u-boot/configs/at91sam9261ek_dataflash_cs0_defconfig
/openbmc/u-boot/configs/at91sam9261ek_dataflash_cs3_defconfig
/openbmc/u-boot/configs/at91sam9261ek_nandflash_defconfig
/openbmc/u-boot/configs/at91sam9263ek_dataflash_cs0_defconfig
/openbmc/u-boot/configs/at91sam9263ek_dataflash_defconfig
/openbmc/u-boot/configs/at91sam9263ek_nandflash_defconfig
/openbmc/u-boot/configs/at91sam9263ek_norflash_boot_defconfig
/openbmc/u-boot/configs/at91sam9263ek_norflash_defconfig
/openbmc/u-boot/configs/at91sam9g10ek_dataflash_cs0_defconfig
/openbmc/u-boot/configs/at91sam9g10ek_dataflash_cs3_defconfig
/openbmc/u-boot/configs/at91sam9g10ek_nandflash_defconfig
/openbmc/u-boot/configs/at91sam9g20ek_2mmc_defconfig
/openbmc/u-boot/configs/at91sam9g20ek_2mmc_nandflash_defconfig
/openbmc/u-boot/configs/at91sam9g20ek_dataflash_cs0_defconfig
/openbmc/u-boot/configs/at91sam9g20ek_dataflash_cs1_defconfig
/openbmc/u-boot/configs/at91sam9g20ek_nandflash_defconfig
/openbmc/u-boot/configs/at91sam9m10g45ek_mmc_defconfig
/openbmc/u-boot/configs/at91sam9m10g45ek_nandflash_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/at91sam9rlek_dataflash_defconfig
/openbmc/u-boot/configs/at91sam9rlek_mmc_defconfig
/openbmc/u-boot/configs/at91sam9rlek_nandflash_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/at91sam9xeek_dataflash_cs0_defconfig
/openbmc/u-boot/configs/at91sam9xeek_dataflash_cs1_defconfig
/openbmc/u-boot/configs/at91sam9xeek_nandflash_defconfig
/openbmc/u-boot/configs/ax25-ae350_defconfig
/openbmc/u-boot/configs/axm_defconfig
/openbmc/u-boot/configs/axs101_defconfig
/openbmc/u-boot/configs/axs103_defconfig
/openbmc/u-boot/configs/bananapi_m64_defconfig
/openbmc/u-boot/configs/bcm23550_w1d_defconfig
/openbmc/u-boot/configs/bcm28155_ap_defconfig
/openbmc/u-boot/configs/birdland_bav335a_defconfig
/openbmc/u-boot/configs/birdland_bav335b_defconfig
/openbmc/u-boot/configs/bitmain_antminer_s9_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/brxre1_defconfig
/openbmc/u-boot/configs/cgtqmx6eval_defconfig
/openbmc/u-boot/configs/cherryhill_defconfig
/openbmc/u-boot/configs/chiliboard_defconfig
/openbmc/u-boot/configs/chromebit_mickey_defconfig
/openbmc/u-boot/configs/chromebook_jerry_defconfig
/openbmc/u-boot/configs/chromebook_link64_defconfig
/openbmc/u-boot/configs/chromebook_link_defconfig
/openbmc/u-boot/configs/chromebook_minnie_defconfig
/openbmc/u-boot/configs/chromebook_samus_defconfig
/openbmc/u-boot/configs/cl-som-am57x_defconfig
/openbmc/u-boot/configs/cl-som-imx7_defconfig
/openbmc/u-boot/configs/clearfog_defconfig
/openbmc/u-boot/configs/cm_fx6_defconfig
/openbmc/u-boot/configs/cm_t335_defconfig
/openbmc/u-boot/configs/cm_t43_defconfig
/openbmc/u-boot/configs/cm_t54_defconfig
/openbmc/u-boot/configs/conga-qeval20-qa3-e3845-internal-uart_defconfig
/openbmc/u-boot/configs/controlcenterdc_defconfig
/openbmc/u-boot/configs/corvus_defconfig
/openbmc/u-boot/configs/da850_am18xxevm_defconfig
/openbmc/u-boot/configs/da850evm_defconfig
/openbmc/u-boot/configs/db-88f6720_defconfig
/openbmc/u-boot/configs/db-88f6820-amc_defconfig
/openbmc/u-boot/configs/db-88f6820-gp_defconfig
/openbmc/u-boot/configs/db-mv784mp-gp_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/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/duovero_defconfig
/openbmc/u-boot/configs/efi-x86_defconfig
/openbmc/u-boot/configs/emdk_defconfig
/openbmc/u-boot/configs/etamin_defconfig
/openbmc/u-boot/configs/evb-px5_defconfig
/openbmc/u-boot/configs/evb-rk3036_defconfig
/openbmc/u-boot/configs/evb-rk3128_defconfig
/openbmc/u-boot/configs/evb-rk3229_defconfig
/openbmc/u-boot/configs/evb-rk3288_defconfig
/openbmc/u-boot/configs/evb-rk3328_defconfig
/openbmc/u-boot/configs/evb-rk3399_defconfig
/openbmc/u-boot/configs/evb-rv1108_defconfig
/openbmc/u-boot/configs/fennec-rk3288_defconfig
/openbmc/u-boot/configs/firefly-rk3288_defconfig
/openbmc/u-boot/configs/firefly-rk3399_defconfig
/openbmc/u-boot/configs/ge_bx50v3_defconfig
/openbmc/u-boot/configs/geekbox_defconfig
/openbmc/u-boot/configs/gose_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/hsdk_defconfig
/openbmc/u-boot/configs/imx6dl_icore_nand_defconfig
/openbmc/u-boot/configs/imx6dl_mamoj_defconfig
/openbmc/u-boot/configs/imx6q_icore_nand_defconfig
/openbmc/u-boot/configs/imx6qdl_icore_mipi_defconfig
/openbmc/u-boot/configs/imx6qdl_icore_mmc_defconfig
/openbmc/u-boot/configs/imx6qdl_icore_nand_defconfig
/openbmc/u-boot/configs/imx6qdl_icore_rqs_defconfig
/openbmc/u-boot/configs/imx6ul_geam_mmc_defconfig
/openbmc/u-boot/configs/imx6ul_geam_nand_defconfig
/openbmc/u-boot/configs/imx6ul_isiot_emmc_defconfig
/openbmc/u-boot/configs/imx6ul_isiot_nand_defconfig
/openbmc/u-boot/configs/ipam390_defconfig
/openbmc/u-boot/configs/k2e_evm_defconfig
/openbmc/u-boot/configs/k2g_evm_defconfig
/openbmc/u-boot/configs/k2hk_evm_defconfig
/openbmc/u-boot/configs/k2l_evm_defconfig
/openbmc/u-boot/configs/kc1_defconfig
/openbmc/u-boot/configs/khadas-vim_defconfig
/openbmc/u-boot/configs/koelsch_defconfig
/openbmc/u-boot/configs/kp_imx53_defconfig
/openbmc/u-boot/configs/kp_imx6q_tpc_defconfig
/openbmc/u-boot/configs/kylin-rk3036_defconfig
/openbmc/u-boot/configs/lager_defconfig
/openbmc/u-boot/configs/libretech-cc_defconfig
/openbmc/u-boot/configs/lion-rk3368_defconfig
/openbmc/u-boot/configs/liteboard_defconfig
/openbmc/u-boot/configs/ls1021aqds_nand_defconfig
/openbmc/u-boot/configs/ls1021aqds_sdcard_ifc_defconfig
/openbmc/u-boot/configs/ls1021aqds_sdcard_qspi_defconfig
/openbmc/u-boot/configs/ls1021atwr_sdcard_ifc_SECURE_BOOT_defconfig
/openbmc/u-boot/configs/ls1021atwr_sdcard_ifc_defconfig
/openbmc/u-boot/configs/ls1021atwr_sdcard_qspi_defconfig
/openbmc/u-boot/configs/ls1043aqds_nand_defconfig
/openbmc/u-boot/configs/ls1043aqds_sdcard_ifc_defconfig
/openbmc/u-boot/configs/ls1043aqds_sdcard_qspi_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/ls2080aqds_nand_defconfig
/openbmc/u-boot/configs/ls2080ardb_nand_defconfig
/openbmc/u-boot/configs/lschlv2_defconfig
/openbmc/u-boot/configs/lsxhl_defconfig
/openbmc/u-boot/configs/m53evk_defconfig
/openbmc/u-boot/configs/ma5d4evk_defconfig
/openbmc/u-boot/configs/maxbcm_defconfig
/openbmc/u-boot/configs/minnowmax_defconfig
/openbmc/u-boot/configs/miqi-rk3288_defconfig
/openbmc/u-boot/configs/mvebu_db-88f3720_defconfig
/openbmc/u-boot/configs/mvebu_db_armada8k_defconfig
/openbmc/u-boot/configs/mvebu_espressobin-88f3720_defconfig
/openbmc/u-boot/configs/mvebu_mcbin-88f8040_defconfig
/openbmc/u-boot/configs/mx31pdk_defconfig
/openbmc/u-boot/configs/mx6cuboxi_defconfig
/openbmc/u-boot/configs/mx6memcal_defconfig
/openbmc/u-boot/configs/mx6qsabrelite_defconfig
/openbmc/u-boot/configs/mx6sabreauto_defconfig
/openbmc/u-boot/configs/mx6sabresd_defconfig
/openbmc/u-boot/configs/mx6slevk_spl_defconfig
/openbmc/u-boot/configs/mx6sxsabresd_spl_defconfig
/openbmc/u-boot/configs/mx6ul_14x14_evk_defconfig
/openbmc/u-boot/configs/mx6ul_9x9_evk_defconfig
/openbmc/u-boot/configs/nitrogen6dl2g_defconfig
/openbmc/u-boot/configs/nitrogen6dl_defconfig
/openbmc/u-boot/configs/nitrogen6q2g_defconfig
/openbmc/u-boot/configs/nitrogen6q_defconfig
/openbmc/u-boot/configs/nitrogen6s1g_defconfig
/openbmc/u-boot/configs/nitrogen6s_defconfig
/openbmc/u-boot/configs/novena_defconfig
/openbmc/u-boot/configs/nsim_700_defconfig
/openbmc/u-boot/configs/nsim_700be_defconfig
/openbmc/u-boot/configs/nsim_hs38_defconfig
/openbmc/u-boot/configs/nsim_hs38be_defconfig
/openbmc/u-boot/configs/nyan-big_defconfig
/openbmc/u-boot/configs/odroid-c2_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/omap4_panda_defconfig
/openbmc/u-boot/configs/omap4_sdp4430_defconfig
/openbmc/u-boot/configs/omap5_uevm_defconfig
/openbmc/u-boot/configs/omapl138_lcdk_defconfig
/openbmc/u-boot/configs/opos6uldev_defconfig
/openbmc/u-boot/configs/orangepi_pc2_defconfig
/openbmc/u-boot/configs/orangepi_prime_defconfig
/openbmc/u-boot/configs/ot1200_spl_defconfig
/openbmc/u-boot/configs/p212_defconfig
/openbmc/u-boot/configs/parrot_r16_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/phycore-rk3288_defconfig
/openbmc/u-boot/configs/picosam9g45_defconfig
/openbmc/u-boot/configs/platinum_picon_defconfig
/openbmc/u-boot/configs/platinum_titanium_defconfig
/openbmc/u-boot/configs/popmetal-rk3288_defconfig
/openbmc/u-boot/configs/porter_defconfig
/openbmc/u-boot/configs/puma-rk3399_defconfig
/openbmc/u-boot/configs/pxm2_defconfig
/openbmc/u-boot/configs/qemu-x86_64_defconfig
/openbmc/u-boot/configs/r8a77990_ebisu_defconfig
/openbmc/u-boot/configs/rastaban_defconfig
/openbmc/u-boot/configs/rock2_defconfig
/openbmc/u-boot/configs/rock_defconfig
/openbmc/u-boot/configs/rut_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_mmc_defconfig
/openbmc/u-boot/configs/sama5d2_xplained_spiflash_defconfig
/openbmc/u-boot/configs/sama5d36ek_cmp_mmc_defconfig
/openbmc/u-boot/configs/sama5d36ek_cmp_nandflash_defconfig
/openbmc/u-boot/configs/sama5d36ek_cmp_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/sama5d4ek_mmc_defconfig
/openbmc/u-boot/configs/sama5d4ek_nandflash_defconfig
/openbmc/u-boot/configs/sama5d4ek_spiflash_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_noblk_defconfig
/openbmc/u-boot/configs/sandbox_spl_defconfig
/openbmc/u-boot/configs/sheep-rk3368_defconfig
/openbmc/u-boot/configs/sheevaplug_defconfig
/openbmc/u-boot/configs/silk_defconfig
/openbmc/u-boot/configs/sksimx6_defconfig
/openbmc/u-boot/configs/smartweb_defconfig
/openbmc/u-boot/configs/sniper_defconfig
/openbmc/u-boot/configs/snow_defconfig
/openbmc/u-boot/configs/socfpga_arria10_defconfig
/openbmc/u-boot/configs/socfpga_arria5_defconfig
/openbmc/u-boot/configs/socfpga_cyclone5_defconfig
/openbmc/u-boot/configs/socfpga_dbm_soc1_defconfig
/openbmc/u-boot/configs/socfpga_de0_nano_soc_defconfig
/openbmc/u-boot/configs/socfpga_de10_nano_defconfig
/openbmc/u-boot/configs/socfpga_de1_soc_defconfig
/openbmc/u-boot/configs/socfpga_is1_defconfig
/openbmc/u-boot/configs/socfpga_mcvevk_defconfig
/openbmc/u-boot/configs/socfpga_sockit_defconfig
/openbmc/u-boot/configs/socfpga_socrates_defconfig
/openbmc/u-boot/configs/socfpga_sr1500_defconfig
/openbmc/u-boot/configs/socfpga_vining_fpga_defconfig
/openbmc/u-boot/configs/som-db5800-som-6867_defconfig
/openbmc/u-boot/configs/spring_defconfig
/openbmc/u-boot/configs/stih410-b2260_defconfig
/openbmc/u-boot/configs/stm32mp15_basic_defconfig
/openbmc/u-boot/configs/stout_defconfig
/openbmc/u-boot/configs/syzygy_hub_defconfig
/openbmc/u-boot/configs/taurus_defconfig
/openbmc/u-boot/configs/tbs2910_defconfig
/openbmc/u-boot/configs/tbs_a711_defconfig
/openbmc/u-boot/configs/theadorable_debug_defconfig
/openbmc/u-boot/configs/thuban_defconfig
/openbmc/u-boot/configs/thunderx_88xx_defconfig
/openbmc/u-boot/configs/ti814x_evm_defconfig
/openbmc/u-boot/configs/ti816x_evm_defconfig
/openbmc/u-boot/configs/tinker-rk3288_defconfig
/openbmc/u-boot/configs/topic_miami_defconfig
/openbmc/u-boot/configs/topic_miamilite_defconfig
/openbmc/u-boot/configs/topic_miamiplus_defconfig
/openbmc/u-boot/configs/turris_mox_defconfig
/openbmc/u-boot/configs/turris_omnia_defconfig
/openbmc/u-boot/configs/udoo_defconfig
/openbmc/u-boot/configs/udoo_neo_defconfig
/openbmc/u-boot/configs/uniphier_ld4_sld8_defconfig
/openbmc/u-boot/configs/uniphier_v7_defconfig
/openbmc/u-boot/configs/vyasa-rk3288_defconfig
/openbmc/u-boot/configs/wandboard_defconfig
/openbmc/u-boot/configs/warp7_defconfig
/openbmc/u-boot/configs/wb45n_defconfig
/openbmc/u-boot/configs/wb50n_defconfig
/openbmc/u-boot/configs/woodburn_sd_defconfig
/openbmc/u-boot/configs/work_92105_defconfig
/openbmc/u-boot/configs/xilinx_zynqmp_r5_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/xpress_spl_defconfig
/openbmc/u-boot/configs/zc5202_defconfig
/openbmc/u-boot/configs/zc5601_defconfig
/openbmc/u-boot/configs/zynq_cc108_defconfig
/openbmc/u-boot/configs/zynq_cse_qspi_defconfig
/openbmc/u-boot/configs/zynq_minized_defconfig
/openbmc/u-boot/configs/zynq_z_turn_defconfig
/openbmc/u-boot/configs/zynq_zc702_defconfig
/openbmc/u-boot/configs/zynq_zc706_defconfig
/openbmc/u-boot/configs/zynq_zc770_xm010_defconfig
/openbmc/u-boot/configs/zynq_zc770_xm011_defconfig
/openbmc/u-boot/configs/zynq_zc770_xm011_x16_defconfig
/openbmc/u-boot/configs/zynq_zed_defconfig
/openbmc/u-boot/configs/zynq_zybo_defconfig
/openbmc/u-boot/doc/DocBook/Makefile
/openbmc/u-boot/doc/DocBook/efi.tmpl
/openbmc/u-boot/doc/README.android-fastboot
/openbmc/u-boot/doc/README.uefi
/openbmc/u-boot/doc/device-tree-bindings/phy/sun4i-usb-phy.txt
/openbmc/u-boot/drivers/Kconfig
/openbmc/u-boot/drivers/Makefile
/openbmc/u-boot/drivers/clk/clk_bcm6345.c
/openbmc/u-boot/drivers/clk/renesas/Kconfig
/openbmc/u-boot/drivers/clk/renesas/Makefile
/openbmc/u-boot/drivers/clk/renesas/clk-rcar-gen3.c
/openbmc/u-boot/drivers/clk/renesas/r8a77990-cpg-mssr.c
/openbmc/u-boot/drivers/clk/renesas/rcar-gen3-cpg.h
/openbmc/u-boot/drivers/core/fdtaddr.c
/openbmc/u-boot/drivers/core/read.c
/openbmc/u-boot/drivers/cpu/bmips_cpu.c
/openbmc/u-boot/drivers/fastboot/Kconfig
/openbmc/u-boot/drivers/fastboot/Makefile
/openbmc/u-boot/drivers/fastboot/fb_command.c
/openbmc/u-boot/drivers/fastboot/fb_common.c
/openbmc/u-boot/drivers/fastboot/fb_getvar.c
/openbmc/u-boot/drivers/fastboot/fb_mmc.c
/openbmc/u-boot/drivers/fastboot/fb_nand.c
/openbmc/u-boot/drivers/fpga/fpga.c
/openbmc/u-boot/drivers/fpga/xilinx.c
/openbmc/u-boot/drivers/fpga/zynqmppl.c
/openbmc/u-boot/drivers/gpio/bcm6345_gpio.c
/openbmc/u-boot/drivers/gpio/gpio-rcar.c
/openbmc/u-boot/drivers/led/led_bcm6328.c
/openbmc/u-boot/drivers/led/led_bcm6358.c
/openbmc/u-boot/drivers/mmc/renesas-sdhi.c
/openbmc/u-boot/drivers/mmc/sdhci.c
/openbmc/u-boot/drivers/mmc/zynq_sdhci.c
ubi/build.c
/openbmc/u-boot/drivers/net/ravb.c
/openbmc/u-boot/drivers/phy/allwinner/Kconfig
/openbmc/u-boot/drivers/phy/allwinner/Makefile
/openbmc/u-boot/drivers/phy/allwinner/phy-sun4i-usb.c
/openbmc/u-boot/drivers/phy/bcm6318-usbh-phy.c
/openbmc/u-boot/drivers/phy/bcm6348-usbh-phy.c
/openbmc/u-boot/drivers/phy/bcm6358-usbh-phy.c
/openbmc/u-boot/drivers/phy/bcm6368-usbh-phy.c
/openbmc/u-boot/drivers/pinctrl/renesas/Kconfig
/openbmc/u-boot/drivers/pinctrl/renesas/Makefile
/openbmc/u-boot/drivers/pinctrl/renesas/pfc-r8a77990.c
/openbmc/u-boot/drivers/pinctrl/renesas/pfc.c
/openbmc/u-boot/drivers/pinctrl/renesas/sh_pfc.h
/openbmc/u-boot/drivers/power/domain/bcm6328-power-domain.c
/openbmc/u-boot/drivers/ram/bmips_ram.c
/openbmc/u-boot/drivers/reset/reset-bcm6345.c
/openbmc/u-boot/drivers/serial/serial_bcm6345.c
/openbmc/u-boot/drivers/serial/serial_zynq.c
/openbmc/u-boot/drivers/spi/bcm63xx_hsspi.c
/openbmc/u-boot/drivers/spi/bcm63xx_spi.c
/openbmc/u-boot/drivers/timer/cadence-ttc.c
/openbmc/u-boot/drivers/usb/gadget/f_fastboot.c
/openbmc/u-boot/drivers/usb/gadget/f_thor.c
/openbmc/u-boot/drivers/usb/host/ehci-sunxi.c
/openbmc/u-boot/drivers/usb/host/ohci-sunxi.c
/openbmc/u-boot/drivers/usb/host/xhci-rcar.c
/openbmc/u-boot/drivers/usb/host/xhci-rockchip.c
/openbmc/u-boot/drivers/usb/host/xhci-zynqmp.c
/openbmc/u-boot/drivers/usb/host/xhci.c
/openbmc/u-boot/drivers/usb/musb-new/musb_core.h
/openbmc/u-boot/drivers/usb/musb-new/musb_regs.h
/openbmc/u-boot/drivers/usb/musb-new/musb_uboot.c
/openbmc/u-boot/drivers/usb/musb-new/sunxi.c
/openbmc/u-boot/drivers/video/sunxi/sunxi_de2.c
/openbmc/u-boot/drivers/watchdog/bcm6345_wdt.c
/openbmc/u-boot/drivers/watchdog/cdns_wdt.c
/openbmc/u-boot/fs/fs.c
/openbmc/u-boot/include/asm-generic/unaligned.h
/openbmc/u-boot/include/bootm.h
/openbmc/u-boot/include/configs/SBx81LIFKW.h
/openbmc/u-boot/include/configs/bitmain_antminer_s9.h
/openbmc/u-boot/include/configs/clearfog.h
/openbmc/u-boot/include/configs/ebisu.h
/openbmc/u-boot/include/configs/emdk.h
/openbmc/u-boot/include/configs/guruplug.h
/openbmc/u-boot/include/configs/odroid_xu3.h
/openbmc/u-boot/include/configs/rcar-gen2-common.h
/openbmc/u-boot/include/configs/rpi.h
/openbmc/u-boot/include/configs/sheevaplug.h
/openbmc/u-boot/include/configs/xilinx_zynqmp_mini.h
/openbmc/u-boot/include/dm/fdtaddr.h
/openbmc/u-boot/include/dm/read.h
/openbmc/u-boot/include/dt-bindings/clock/r8a77990-cpg-mssr.h
/openbmc/u-boot/include/efi_api.h
/openbmc/u-boot/include/efi_loader.h
/openbmc/u-boot/include/fastboot-internal.h
/openbmc/u-boot/include/fastboot.h
/openbmc/u-boot/include/fb_mmc.h
/openbmc/u-boot/include/fb_nand.h
/openbmc/u-boot/include/fpga.h
/openbmc/u-boot/include/fs.h
/openbmc/u-boot/include/image-sparse.h
/openbmc/u-boot/include/linux/libfdt_env.h
/openbmc/u-boot/include/net.h
/openbmc/u-boot/include/net/fastboot.h
/openbmc/u-boot/include/os.h
/openbmc/u-boot/include/phy-sun4i-usb.h
/openbmc/u-boot/include/smbios.h
/openbmc/u-boot/include/xilinx.h
/openbmc/u-boot/include/zynqmppl.h
/openbmc/u-boot/lib/Kconfig
/openbmc/u-boot/lib/Makefile
/openbmc/u-boot/lib/efi_loader/Kconfig
/openbmc/u-boot/lib/efi_loader/efi_bootmgr.c
/openbmc/u-boot/lib/efi_loader/efi_boottime.c
/openbmc/u-boot/lib/efi_loader/efi_console.c
/openbmc/u-boot/lib/efi_loader/efi_image_loader.c
/openbmc/u-boot/lib/efi_loader/efi_memory.c
/openbmc/u-boot/lib/efi_loader/efi_runtime.c
/openbmc/u-boot/lib/efi_loader/efi_smbios.c
/openbmc/u-boot/lib/efi_loader/efi_variable.c
/openbmc/u-boot/lib/efi_selftest/Kconfig
/openbmc/u-boot/lib/efi_selftest/Makefile
/openbmc/u-boot/lib/efi_selftest/efi_selftest_controllers.c
/openbmc/u-boot/lib/efi_selftest/efi_selftest_manageprotocols.c
/openbmc/u-boot/lib/efi_selftest/efi_selftest_textoutput.c
/openbmc/u-boot/lib/efi_selftest/efi_selftest_unaligned.c
/openbmc/u-boot/lib/efi_selftest/efi_selftest_variables.c
/openbmc/u-boot/lib/image-sparse.c
/openbmc/u-boot/lib/libfdt/fdt_ro.c
/openbmc/u-boot/net/Makefile
/openbmc/u-boot/net/fastboot.c
/openbmc/u-boot/net/net.c
/openbmc/u-boot/scripts/Makefile.build
/openbmc/u-boot/scripts/Makefile.lib
/openbmc/u-boot/scripts/Makefile.spl
/openbmc/u-boot/scripts/config_whitelist.txt
/openbmc/u-boot/scripts/dtc/.gitignore
/openbmc/u-boot/scripts/dtc/Makefile
/openbmc/u-boot/scripts/dtc/checks.c
/openbmc/u-boot/scripts/dtc/dtc-parser.y
/openbmc/u-boot/scripts/dtc/dtc.c
/openbmc/u-boot/scripts/dtc/dtc.h
/openbmc/u-boot/scripts/dtc/flattree.c
/openbmc/u-boot/scripts/dtc/libfdt/fdt.c
/openbmc/u-boot/scripts/dtc/libfdt/fdt.h
/openbmc/u-boot/scripts/dtc/libfdt/fdt_overlay.c
/openbmc/u-boot/scripts/dtc/libfdt/fdt_ro.c
/openbmc/u-boot/scripts/dtc/libfdt/fdt_rw.c
/openbmc/u-boot/scripts/dtc/libfdt/fdt_sw.c
/openbmc/u-boot/scripts/dtc/libfdt/fdt_wip.c
/openbmc/u-boot/scripts/dtc/libfdt/libfdt.h
/openbmc/u-boot/scripts/dtc/libfdt/libfdt_env.h
/openbmc/u-boot/scripts/dtc/libfdt/libfdt_internal.h
/openbmc/u-boot/scripts/dtc/livetree.c
/openbmc/u-boot/scripts/dtc/srcpos.c
/openbmc/u-boot/scripts/dtc/srcpos.h
/openbmc/u-boot/scripts/dtc/update-dtc-source.sh
/openbmc/u-boot/scripts/dtc/util.h
/openbmc/u-boot/scripts/dtc/version_gen.h
/openbmc/u-boot/scripts/kconfig/.gitignore
/openbmc/u-boot/scripts/kconfig/Makefile
/openbmc/u-boot/scripts/kconfig/check.sh
/openbmc/u-boot/scripts/kconfig/conf.c
/openbmc/u-boot/scripts/kconfig/confdata.c
/openbmc/u-boot/scripts/kconfig/expr.c
/openbmc/u-boot/scripts/kconfig/expr.h
/openbmc/u-boot/scripts/kconfig/gconf.c
/openbmc/u-boot/scripts/kconfig/kconf_id.c
/openbmc/u-boot/scripts/kconfig/kxgettext.c
/openbmc/u-boot/scripts/kconfig/list.h
/openbmc/u-boot/scripts/kconfig/lkc.h
/openbmc/u-boot/scripts/kconfig/lkc_proto.h
/openbmc/u-boot/scripts/kconfig/lxdialog/check-lxdialog.sh
/openbmc/u-boot/scripts/kconfig/mconf.c
/openbmc/u-boot/scripts/kconfig/menu.c
/openbmc/u-boot/scripts/kconfig/nconf.c
/openbmc/u-boot/scripts/kconfig/nconf.gui.c
/openbmc/u-boot/scripts/kconfig/nconf.h
/openbmc/u-boot/scripts/kconfig/streamline_config.pl
/openbmc/u-boot/scripts/kconfig/symbol.c
/openbmc/u-boot/scripts/kconfig/tests/auto_submenu/Kconfig
/openbmc/u-boot/scripts/kconfig/tests/auto_submenu/__init__.py
/openbmc/u-boot/scripts/kconfig/tests/auto_submenu/expected_stdout
/openbmc/u-boot/scripts/kconfig/tests/choice/Kconfig
/openbmc/u-boot/scripts/kconfig/tests/choice/__init__.py
/openbmc/u-boot/scripts/kconfig/tests/choice/alldef_expected_config
/openbmc/u-boot/scripts/kconfig/tests/choice/allmod_expected_config
/openbmc/u-boot/scripts/kconfig/tests/choice/allno_expected_config
/openbmc/u-boot/scripts/kconfig/tests/choice/allyes_expected_config
/openbmc/u-boot/scripts/kconfig/tests/choice/oldask0_expected_stdout
/openbmc/u-boot/scripts/kconfig/tests/choice/oldask1_config
/openbmc/u-boot/scripts/kconfig/tests/choice/oldask1_expected_stdout
/openbmc/u-boot/scripts/kconfig/tests/choice_value_with_m_dep/Kconfig
/openbmc/u-boot/scripts/kconfig/tests/choice_value_with_m_dep/__init__.py
/openbmc/u-boot/scripts/kconfig/tests/choice_value_with_m_dep/config
/openbmc/u-boot/scripts/kconfig/tests/choice_value_with_m_dep/expected_config
/openbmc/u-boot/scripts/kconfig/tests/choice_value_with_m_dep/expected_stdout
/openbmc/u-boot/scripts/kconfig/tests/conftest.py
/openbmc/u-boot/scripts/kconfig/tests/err_recursive_inc/Kconfig
/openbmc/u-boot/scripts/kconfig/tests/err_recursive_inc/Kconfig.inc1
/openbmc/u-boot/scripts/kconfig/tests/err_recursive_inc/Kconfig.inc2
/openbmc/u-boot/scripts/kconfig/tests/err_recursive_inc/Kconfig.inc3
/openbmc/u-boot/scripts/kconfig/tests/err_recursive_inc/__init__.py
/openbmc/u-boot/scripts/kconfig/tests/err_recursive_inc/expected_stderr
/openbmc/u-boot/scripts/kconfig/tests/inter_choice/Kconfig
/openbmc/u-boot/scripts/kconfig/tests/inter_choice/__init__.py
/openbmc/u-boot/scripts/kconfig/tests/inter_choice/defconfig
/openbmc/u-boot/scripts/kconfig/tests/inter_choice/expected_config
/openbmc/u-boot/scripts/kconfig/tests/new_choice_with_dep/Kconfig
/openbmc/u-boot/scripts/kconfig/tests/new_choice_with_dep/__init__.py
/openbmc/u-boot/scripts/kconfig/tests/new_choice_with_dep/config
/openbmc/u-boot/scripts/kconfig/tests/new_choice_with_dep/expected_stdout
/openbmc/u-boot/scripts/kconfig/tests/no_write_if_dep_unmet/Kconfig
/openbmc/u-boot/scripts/kconfig/tests/no_write_if_dep_unmet/__init__.py
/openbmc/u-boot/scripts/kconfig/tests/no_write_if_dep_unmet/config
/openbmc/u-boot/scripts/kconfig/tests/no_write_if_dep_unmet/expected_config
/openbmc/u-boot/scripts/kconfig/tests/pytest.ini
/openbmc/u-boot/scripts/kconfig/tests/rand_nested_choice/Kconfig
/openbmc/u-boot/scripts/kconfig/tests/rand_nested_choice/__init__.py
/openbmc/u-boot/scripts/kconfig/tests/rand_nested_choice/expected_stdout0
/openbmc/u-boot/scripts/kconfig/tests/rand_nested_choice/expected_stdout1
/openbmc/u-boot/scripts/kconfig/tests/rand_nested_choice/expected_stdout2
/openbmc/u-boot/scripts/kconfig/tests/warn_recursive_dep/Kconfig
/openbmc/u-boot/scripts/kconfig/tests/warn_recursive_dep/__init__.py
/openbmc/u-boot/scripts/kconfig/tests/warn_recursive_dep/expected_stderr
/openbmc/u-boot/scripts/kconfig/util.c
/openbmc/u-boot/scripts/kconfig/zconf.l
/openbmc/u-boot/scripts/kconfig/zconf.y
/openbmc/u-boot/scripts/mailmapper
/openbmc/u-boot/test/dm/test-fdt.c
/openbmc/u-boot/test/py/tests/test_log.py
/openbmc/u-boot/tools/libfdt/fdt_rw.c
/openbmc/u-boot/tools/logos/u-boot_logo.bmp
/openbmc/u-boot/tools/logos/u-boot_logo.svg
b1f2b72e02-Jun-2018 Carlo Caione <carlo@endlessm.com>

sf: Add support for gd25q32b gigadevice flash

This flash IC is used in some chromebook models
manufactured by Bitland.

Signed-off-by: Carlo Caione <carlo@endlessm.com>
Reviewed-by: Jagan Teki <jaga

sf: Add support for gd25q32b gigadevice flash

This flash IC is used in some chromebook models
manufactured by Bitland.

Signed-off-by: Carlo Caione <carlo@endlessm.com>
Reviewed-by: Jagan Teki <jagan@openedev.com>

show more ...

8ff4130d24-May-2018 Marek Vasut <marex@denx.de>

sf: Set current flash bank to 0 in clean_bar()

The clean_bar() function resets the SPI NOR BAR register to 0, but
does not set the flash->curr_bar to 0 , therefore those two can get
out of sync, whi

sf: Set current flash bank to 0 in clean_bar()

The clean_bar() function resets the SPI NOR BAR register to 0, but
does not set the flash->curr_bar to 0 , therefore those two can get
out of sync, which could ultimatelly result in corrupted flash content.

The simplest test case is this:

=> mw 0x10000000 0x1234abcd 0x4000
=> sf probe
=> sf erase 0x1000000 0x10000
=> sf write 0x10000000 0x1000000 0x10000

=> sf probe ; sf read 0x12000000 0 0x10000 ; md 0x12000000

That is, erase a sector above the 16 MiB boundary and write it with
random pre-configured data. What will actually happen without this
patch is the sector will be erased, but the data will be written to
BAR 0 offset 0x0 in the flash.

This is because the erase command will call write_bar()+clean_bar(),
which will leave flash->bank_curr = 1 while the hardware BAR registers
will be set to 0 through clean_bar(). The subsequent write will also
trigger write_bar()+clean_bar(), but write_bar checks if the target
bank == flash->bank_curr and if so, does NOT reconfigure the BAR in
the SPI NOR. Since flash->bank_curr is still 1 and out of sync with
the HW, the condition matches, BAR programming is skipped and write
ends up at address 0x0, thus corrupting flash content.

Signed-off-by: Marek Vasut <marex@denx.de>
Cc: Tom Rini <trini@konsulko.com>
Reviewed-by: Jagan Teki <jagan@openedev.com>

show more ...


/openbmc/u-boot/.gitignore
/openbmc/u-boot/MAINTAINERS
/openbmc/u-boot/Makefile
/openbmc/u-boot/arch/arc/Kconfig
/openbmc/u-boot/arch/arc/cpu/u-boot.lds
/openbmc/u-boot/arch/arc/dts/Makefile
/openbmc/u-boot/arch/arc/dts/emdk.dts
/openbmc/u-boot/arch/arc/lib/cache.c
/openbmc/u-boot/arch/arc/lib/relocate.c
/openbmc/u-boot/arch/arc/lib/reset.c
/openbmc/u-boot/arch/arm/Kconfig
/openbmc/u-boot/arch/arm/cpu/armv7/Makefile
/openbmc/u-boot/arch/arm/cpu/armv7/sctlr.S
/openbmc/u-boot/arch/arm/cpu/armv8/zynqmp/clk.c
/openbmc/u-boot/arch/arm/cpu/armv8/zynqmp/cpu.c
/openbmc/u-boot/arch/arm/dts/Makefile
/openbmc/u-boot/arch/arm/dts/bitmain-antminer-s9.dts
/openbmc/u-boot/arch/arm/dts/r8a77990-ebisu-u-boot.dts
/openbmc/u-boot/arch/arm/dts/r8a77990-ebisu.dts
/openbmc/u-boot/arch/arm/dts/r8a77990-u-boot.dtsi
/openbmc/u-boot/arch/arm/dts/r8a77990.dtsi
/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-h5-orangepi-pc2.dts
/openbmc/u-boot/arch/arm/dts/sun50i-h5-orangepi-prime.dts
/openbmc/u-boot/arch/arm/dts/sun8i-a83t.dtsi
/openbmc/u-boot/arch/arm/dts/sun8i-h3-bananapi-m2-plus.dts
/openbmc/u-boot/arch/arm/dts/sun8i-h3.dtsi
/openbmc/u-boot/arch/arm/dts/sunxi-u-boot.dtsi
/openbmc/u-boot/arch/arm/dts/zynq-minized.dts
/openbmc/u-boot/arch/arm/dts/zynqmp-clk-ccf.dtsi
/openbmc/u-boot/arch/arm/dts/zynqmp-zcu100-revC.dts
/openbmc/u-boot/arch/arm/dts/zynqmp-zcu104-revA.dts
/openbmc/u-boot/arch/arm/dts/zynqmp-zcu104-revC.dts
/openbmc/u-boot/arch/arm/dts/zynqmp-zcu111-revA.dts
/openbmc/u-boot/arch/arm/include/asm/arch-sunxi/clock_sun6i.h
/openbmc/u-boot/arch/arm/include/asm/arch-zynqmp/hardware.h
/openbmc/u-boot/arch/arm/include/asm/arch-zynqmp/sys_proto.h
/openbmc/u-boot/arch/arm/include/asm/u-boot-arm.h
/openbmc/u-boot/arch/arm/mach-omap2/boot-common.c
/openbmc/u-boot/arch/arm/mach-omap2/utils.c
/openbmc/u-boot/arch/arm/mach-rmobile/Kconfig.64
/openbmc/u-boot/arch/arm/mach-rmobile/cpu_info.c
/openbmc/u-boot/arch/arm/mach-rmobile/include/mach/rmobile.h
/openbmc/u-boot/arch/arm/mach-rockchip/rk3128-board.c
/openbmc/u-boot/arch/arm/mach-rockchip/rk322x-board.c
/openbmc/u-boot/arch/arm/mach-sunxi/Kconfig
/openbmc/u-boot/arch/arm/mach-sunxi/Makefile
/openbmc/u-boot/arch/sandbox/cpu/cpu.c
/openbmc/u-boot/arch/sandbox/cpu/os.c
/openbmc/u-boot/arch/sandbox/cpu/u-boot.lds
/openbmc/u-boot/arch/sandbox/dts/test.dts
/openbmc/u-boot/arch/sandbox/include/asm/setjmp.h
/openbmc/u-boot/arch/sandbox/lib/Makefile
/openbmc/u-boot/arch/sandbox/lib/sections.c
/openbmc/u-boot/arch/x86/config.mk
/openbmc/u-boot/arch/x86/include/asm/u-boot-x86.h
/openbmc/u-boot/arch/x86/lib/Makefile
/openbmc/u-boot/arch/x86/lib/bootm.c
/openbmc/u-boot/board/amazon/kc1/kc1.c
/openbmc/u-boot/board/bitmain/antminer_s9/MAINTAINERS
/openbmc/u-boot/board/bitmain/antminer_s9/Makefile
/openbmc/u-boot/board/bitmain/antminer_s9/bitmain-antminer-s9/ps7_init_gpl.c
/openbmc/u-boot/board/bitmain/antminer_s9/board.c
/openbmc/u-boot/board/eets/pdu001/Kconfig
/openbmc/u-boot/board/lg/sniper/sniper.c
/openbmc/u-boot/board/renesas/ebisu/Kconfig
/openbmc/u-boot/board/renesas/ebisu/MAINTAINERS
/openbmc/u-boot/board/renesas/ebisu/Makefile
/openbmc/u-boot/board/renesas/ebisu/ebisu.c
/openbmc/u-boot/board/sunxi/MAINTAINERS
/openbmc/u-boot/board/sunxi/board.c
/openbmc/u-boot/board/synopsys/emdk/Kconfig
/openbmc/u-boot/board/synopsys/emdk/MAINTAINERS
/openbmc/u-boot/board/synopsys/emdk/Makefile
/openbmc/u-boot/board/synopsys/emdk/emdk.c
/openbmc/u-boot/board/ti/am57xx/board.c
/openbmc/u-boot/board/ti/common/Kconfig
/openbmc/u-boot/board/ti/dra7xx/evm.c
/openbmc/u-boot/board/xilinx/zynqmp/zynqmp.c
/openbmc/u-boot/cmd/Kconfig
/openbmc/u-boot/cmd/bootefi.c
/openbmc/u-boot/cmd/fastboot.c
/openbmc/u-boot/cmd/fpga.c
/openbmc/u-boot/cmd/mmc.c
/openbmc/u-boot/common/Makefile
/openbmc/u-boot/common/bootm.c
/openbmc/u-boot/configs/A13-OLinuXino_defconfig
/openbmc/u-boot/configs/A20-OLinuXino-Lime2-eMMC_defconfig
/openbmc/u-boot/configs/A20-OLinuXino-Lime2_defconfig
/openbmc/u-boot/configs/A20-Olimex-SOM204-EVB-eMMC_defconfig
/openbmc/u-boot/configs/A20-Olimex-SOM204-EVB_defconfig
/openbmc/u-boot/configs/Bananapi_m2m_defconfig
/openbmc/u-boot/configs/Cubietruck_defconfig
/openbmc/u-boot/configs/Sinlinx_SinA33_defconfig
/openbmc/u-boot/configs/Sinovoip_BPI_M2_Plus_defconfig
/openbmc/u-boot/configs/alt_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_nor_defconfig
/openbmc/u-boot/configs/am335x_evm_norboot_defconfig
/openbmc/u-boot/configs/am335x_evm_spiboot_defconfig
/openbmc/u-boot/configs/am335x_evm_usbspl_defconfig
/openbmc/u-boot/configs/am57xx_evm_defconfig
/openbmc/u-boot/configs/am57xx_hs_evm_defconfig
/openbmc/u-boot/configs/amarula_a64_relic_defconfig
/openbmc/u-boot/configs/bananapi_m64_defconfig
/openbmc/u-boot/configs/bcm23550_w1d_defconfig
/openbmc/u-boot/configs/bcm28155_ap_defconfig
/openbmc/u-boot/configs/birdland_bav335a_defconfig
/openbmc/u-boot/configs/birdland_bav335b_defconfig
/openbmc/u-boot/configs/bitmain_antminer_s9_defconfig
/openbmc/u-boot/configs/cgtqmx6eval_defconfig
/openbmc/u-boot/configs/chromebit_mickey_defconfig
/openbmc/u-boot/configs/chromebook_jerry_defconfig
/openbmc/u-boot/configs/chromebook_minnie_defconfig
/openbmc/u-boot/configs/dra7xx_evm_defconfig
/openbmc/u-boot/configs/dra7xx_hs_evm_defconfig
/openbmc/u-boot/configs/emdk_defconfig
/openbmc/u-boot/configs/evb-rk3036_defconfig
/openbmc/u-boot/configs/evb-rk3128_defconfig
/openbmc/u-boot/configs/evb-rk3229_defconfig
/openbmc/u-boot/configs/evb-rk3288_defconfig
/openbmc/u-boot/configs/evb-rk3328_defconfig
/openbmc/u-boot/configs/fennec-rk3288_defconfig
/openbmc/u-boot/configs/firefly-rk3288_defconfig
/openbmc/u-boot/configs/gose_defconfig
/openbmc/u-boot/configs/imx6dl_mamoj_defconfig
/openbmc/u-boot/configs/kc1_defconfig
/openbmc/u-boot/configs/koelsch_defconfig
/openbmc/u-boot/configs/kylin-rk3036_defconfig
/openbmc/u-boot/configs/lager_defconfig
/openbmc/u-boot/configs/miqi-rk3288_defconfig
/openbmc/u-boot/configs/mx6qsabrelite_defconfig
/openbmc/u-boot/configs/mx6sabresd_defconfig
/openbmc/u-boot/configs/nitrogen6dl2g_defconfig
/openbmc/u-boot/configs/nitrogen6dl_defconfig
/openbmc/u-boot/configs/nitrogen6q2g_defconfig
/openbmc/u-boot/configs/nitrogen6q_defconfig
/openbmc/u-boot/configs/nitrogen6s1g_defconfig
/openbmc/u-boot/configs/nitrogen6s_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/orangepi_pc2_defconfig
/openbmc/u-boot/configs/orangepi_prime_defconfig
/openbmc/u-boot/configs/parrot_r16_defconfig
/openbmc/u-boot/configs/phycore-rk3288_defconfig
/openbmc/u-boot/configs/popmetal-rk3288_defconfig
/openbmc/u-boot/configs/porter_defconfig
/openbmc/u-boot/configs/r8a77990_ebisu_defconfig
/openbmc/u-boot/configs/rock2_defconfig
/openbmc/u-boot/configs/silk_defconfig
/openbmc/u-boot/configs/sniper_defconfig
/openbmc/u-boot/configs/stih410-b2260_defconfig
/openbmc/u-boot/configs/stout_defconfig
/openbmc/u-boot/configs/tbs_a711_defconfig
/openbmc/u-boot/configs/tinker-rk3288_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_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_zcu106_revA_defconfig
/openbmc/u-boot/configs/zynq_minized_defconfig
/openbmc/u-boot/doc/DocBook/Makefile
/openbmc/u-boot/doc/DocBook/efi.tmpl
/openbmc/u-boot/doc/README.android-fastboot
/openbmc/u-boot/doc/README.uefi
/openbmc/u-boot/doc/device-tree-bindings/phy/sun4i-usb-phy.txt
/openbmc/u-boot/drivers/Kconfig
/openbmc/u-boot/drivers/Makefile
/openbmc/u-boot/drivers/clk/clk_bcm6345.c
/openbmc/u-boot/drivers/clk/renesas/Kconfig
/openbmc/u-boot/drivers/clk/renesas/Makefile
/openbmc/u-boot/drivers/clk/renesas/clk-rcar-gen3.c
/openbmc/u-boot/drivers/clk/renesas/r8a77990-cpg-mssr.c
/openbmc/u-boot/drivers/clk/renesas/rcar-gen3-cpg.h
/openbmc/u-boot/drivers/core/fdtaddr.c
/openbmc/u-boot/drivers/core/read.c
/openbmc/u-boot/drivers/cpu/bmips_cpu.c
/openbmc/u-boot/drivers/fastboot/Kconfig
/openbmc/u-boot/drivers/fastboot/Makefile
/openbmc/u-boot/drivers/fastboot/fb_command.c
/openbmc/u-boot/drivers/fastboot/fb_common.c
/openbmc/u-boot/drivers/fastboot/fb_getvar.c
/openbmc/u-boot/drivers/fastboot/fb_mmc.c
/openbmc/u-boot/drivers/fastboot/fb_nand.c
/openbmc/u-boot/drivers/fpga/fpga.c
/openbmc/u-boot/drivers/fpga/xilinx.c
/openbmc/u-boot/drivers/fpga/zynqmppl.c
/openbmc/u-boot/drivers/gpio/bcm6345_gpio.c
/openbmc/u-boot/drivers/gpio/gpio-rcar.c
/openbmc/u-boot/drivers/led/led_bcm6328.c
/openbmc/u-boot/drivers/led/led_bcm6358.c
/openbmc/u-boot/drivers/mmc/renesas-sdhi.c
/openbmc/u-boot/drivers/mmc/sdhci.c
/openbmc/u-boot/drivers/mmc/zynq_sdhci.c
spi/spi_flash.c
/openbmc/u-boot/drivers/net/ravb.c
/openbmc/u-boot/drivers/phy/allwinner/Kconfig
/openbmc/u-boot/drivers/phy/allwinner/Makefile
/openbmc/u-boot/drivers/phy/allwinner/phy-sun4i-usb.c
/openbmc/u-boot/drivers/phy/bcm6318-usbh-phy.c
/openbmc/u-boot/drivers/phy/bcm6348-usbh-phy.c
/openbmc/u-boot/drivers/phy/bcm6358-usbh-phy.c
/openbmc/u-boot/drivers/phy/bcm6368-usbh-phy.c
/openbmc/u-boot/drivers/pinctrl/renesas/Kconfig
/openbmc/u-boot/drivers/pinctrl/renesas/Makefile
/openbmc/u-boot/drivers/pinctrl/renesas/pfc-r8a77990.c
/openbmc/u-boot/drivers/pinctrl/renesas/pfc.c
/openbmc/u-boot/drivers/pinctrl/renesas/sh_pfc.h
/openbmc/u-boot/drivers/power/domain/bcm6328-power-domain.c
/openbmc/u-boot/drivers/ram/bmips_ram.c
/openbmc/u-boot/drivers/reset/reset-bcm6345.c
/openbmc/u-boot/drivers/serial/serial_bcm6345.c
/openbmc/u-boot/drivers/serial/serial_zynq.c
/openbmc/u-boot/drivers/spi/bcm63xx_hsspi.c
/openbmc/u-boot/drivers/spi/bcm63xx_spi.c
/openbmc/u-boot/drivers/spi/cadence_qspi.c
/openbmc/u-boot/drivers/timer/cadence-ttc.c
/openbmc/u-boot/drivers/usb/gadget/f_fastboot.c
/openbmc/u-boot/drivers/usb/gadget/f_thor.c
/openbmc/u-boot/drivers/usb/host/ehci-sunxi.c
/openbmc/u-boot/drivers/usb/host/ohci-sunxi.c
/openbmc/u-boot/drivers/usb/host/xhci-rcar.c
/openbmc/u-boot/drivers/usb/host/xhci-rockchip.c
/openbmc/u-boot/drivers/usb/host/xhci-zynqmp.c
/openbmc/u-boot/drivers/usb/host/xhci.c
/openbmc/u-boot/drivers/usb/musb-new/musb_core.h
/openbmc/u-boot/drivers/usb/musb-new/musb_regs.h
/openbmc/u-boot/drivers/usb/musb-new/musb_uboot.c
/openbmc/u-boot/drivers/usb/musb-new/sunxi.c
/openbmc/u-boot/drivers/video/sunxi/sunxi_de2.c
/openbmc/u-boot/drivers/watchdog/bcm6345_wdt.c
/openbmc/u-boot/drivers/watchdog/cdns_wdt.c
/openbmc/u-boot/fs/fs.c
/openbmc/u-boot/include/asm-generic/unaligned.h
/openbmc/u-boot/include/bootm.h
/openbmc/u-boot/include/configs/bitmain_antminer_s9.h
/openbmc/u-boot/include/configs/ebisu.h
/openbmc/u-boot/include/configs/emdk.h
/openbmc/u-boot/include/configs/rcar-gen2-common.h
/openbmc/u-boot/include/configs/rpi.h
/openbmc/u-boot/include/configs/xilinx_zynqmp_mini.h
/openbmc/u-boot/include/dm/fdtaddr.h
/openbmc/u-boot/include/dm/read.h
/openbmc/u-boot/include/dt-bindings/clock/r8a77990-cpg-mssr.h
/openbmc/u-boot/include/efi_api.h
/openbmc/u-boot/include/efi_loader.h
/openbmc/u-boot/include/fastboot-internal.h
/openbmc/u-boot/include/fastboot.h
/openbmc/u-boot/include/fb_mmc.h
/openbmc/u-boot/include/fb_nand.h
/openbmc/u-boot/include/fpga.h
/openbmc/u-boot/include/fs.h
/openbmc/u-boot/include/image-sparse.h
/openbmc/u-boot/include/linux/libfdt_env.h
/openbmc/u-boot/include/net.h
/openbmc/u-boot/include/net/fastboot.h
/openbmc/u-boot/include/os.h
/openbmc/u-boot/include/phy-sun4i-usb.h
/openbmc/u-boot/include/smbios.h
/openbmc/u-boot/include/xilinx.h
/openbmc/u-boot/include/zynqmppl.h
/openbmc/u-boot/lib/Kconfig
/openbmc/u-boot/lib/Makefile
/openbmc/u-boot/lib/efi_loader/Kconfig
/openbmc/u-boot/lib/efi_loader/efi_bootmgr.c
/openbmc/u-boot/lib/efi_loader/efi_boottime.c
/openbmc/u-boot/lib/efi_loader/efi_console.c
/openbmc/u-boot/lib/efi_loader/efi_image_loader.c
/openbmc/u-boot/lib/efi_loader/efi_memory.c
/openbmc/u-boot/lib/efi_loader/efi_runtime.c
/openbmc/u-boot/lib/efi_loader/efi_smbios.c
/openbmc/u-boot/lib/efi_loader/efi_variable.c
/openbmc/u-boot/lib/efi_selftest/Kconfig
/openbmc/u-boot/lib/efi_selftest/Makefile
/openbmc/u-boot/lib/efi_selftest/efi_selftest_controllers.c
/openbmc/u-boot/lib/efi_selftest/efi_selftest_manageprotocols.c
/openbmc/u-boot/lib/efi_selftest/efi_selftest_textoutput.c
/openbmc/u-boot/lib/efi_selftest/efi_selftest_unaligned.c
/openbmc/u-boot/lib/efi_selftest/efi_selftest_variables.c
/openbmc/u-boot/lib/image-sparse.c
/openbmc/u-boot/lib/libfdt/fdt_ro.c
/openbmc/u-boot/net/Makefile
/openbmc/u-boot/net/fastboot.c
/openbmc/u-boot/net/net.c
/openbmc/u-boot/scripts/Makefile.build
/openbmc/u-boot/scripts/Makefile.lib
/openbmc/u-boot/scripts/config_whitelist.txt
/openbmc/u-boot/scripts/dtc/.gitignore
/openbmc/u-boot/scripts/dtc/Makefile
/openbmc/u-boot/scripts/dtc/checks.c
/openbmc/u-boot/scripts/dtc/dtc-parser.y
/openbmc/u-boot/scripts/dtc/dtc.c
/openbmc/u-boot/scripts/dtc/dtc.h
/openbmc/u-boot/scripts/dtc/flattree.c
/openbmc/u-boot/scripts/dtc/libfdt/fdt.c
/openbmc/u-boot/scripts/dtc/libfdt/fdt.h
/openbmc/u-boot/scripts/dtc/libfdt/fdt_overlay.c
/openbmc/u-boot/scripts/dtc/libfdt/fdt_ro.c
/openbmc/u-boot/scripts/dtc/libfdt/fdt_rw.c
/openbmc/u-boot/scripts/dtc/libfdt/fdt_sw.c
/openbmc/u-boot/scripts/dtc/libfdt/fdt_wip.c
/openbmc/u-boot/scripts/dtc/libfdt/libfdt.h
/openbmc/u-boot/scripts/dtc/libfdt/libfdt_env.h
/openbmc/u-boot/scripts/dtc/libfdt/libfdt_internal.h
/openbmc/u-boot/scripts/dtc/livetree.c
/openbmc/u-boot/scripts/dtc/srcpos.c
/openbmc/u-boot/scripts/dtc/srcpos.h
/openbmc/u-boot/scripts/dtc/update-dtc-source.sh
/openbmc/u-boot/scripts/dtc/util.h
/openbmc/u-boot/scripts/dtc/version_gen.h
/openbmc/u-boot/scripts/kconfig/.gitignore
/openbmc/u-boot/scripts/kconfig/Makefile
/openbmc/u-boot/scripts/kconfig/check.sh
/openbmc/u-boot/scripts/kconfig/conf.c
/openbmc/u-boot/scripts/kconfig/confdata.c
/openbmc/u-boot/scripts/kconfig/expr.c
/openbmc/u-boot/scripts/kconfig/expr.h
/openbmc/u-boot/scripts/kconfig/gconf.c
/openbmc/u-boot/scripts/kconfig/kconf_id.c
/openbmc/u-boot/scripts/kconfig/kxgettext.c
/openbmc/u-boot/scripts/kconfig/list.h
/openbmc/u-boot/scripts/kconfig/lkc.h
/openbmc/u-boot/scripts/kconfig/lkc_proto.h
/openbmc/u-boot/scripts/kconfig/lxdialog/check-lxdialog.sh
/openbmc/u-boot/scripts/kconfig/mconf.c
/openbmc/u-boot/scripts/kconfig/menu.c
/openbmc/u-boot/scripts/kconfig/nconf.c
/openbmc/u-boot/scripts/kconfig/nconf.gui.c
/openbmc/u-boot/scripts/kconfig/nconf.h
/openbmc/u-boot/scripts/kconfig/streamline_config.pl
/openbmc/u-boot/scripts/kconfig/symbol.c
/openbmc/u-boot/scripts/kconfig/tests/auto_submenu/Kconfig
/openbmc/u-boot/scripts/kconfig/tests/auto_submenu/__init__.py
/openbmc/u-boot/scripts/kconfig/tests/auto_submenu/expected_stdout
/openbmc/u-boot/scripts/kconfig/tests/choice/Kconfig
/openbmc/u-boot/scripts/kconfig/tests/choice/__init__.py
/openbmc/u-boot/scripts/kconfig/tests/choice/alldef_expected_config
/openbmc/u-boot/scripts/kconfig/tests/choice/allmod_expected_config
/openbmc/u-boot/scripts/kconfig/tests/choice/allno_expected_config
/openbmc/u-boot/scripts/kconfig/tests/choice/allyes_expected_config
/openbmc/u-boot/scripts/kconfig/tests/choice/oldask0_expected_stdout
/openbmc/u-boot/scripts/kconfig/tests/choice/oldask1_config
/openbmc/u-boot/scripts/kconfig/tests/choice/oldask1_expected_stdout
/openbmc/u-boot/scripts/kconfig/tests/choice_value_with_m_dep/Kconfig
/openbmc/u-boot/scripts/kconfig/tests/choice_value_with_m_dep/__init__.py
/openbmc/u-boot/scripts/kconfig/tests/choice_value_with_m_dep/config
/openbmc/u-boot/scripts/kconfig/tests/choice_value_with_m_dep/expected_config
/openbmc/u-boot/scripts/kconfig/tests/choice_value_with_m_dep/expected_stdout
/openbmc/u-boot/scripts/kconfig/tests/conftest.py
/openbmc/u-boot/scripts/kconfig/tests/err_recursive_inc/Kconfig
/openbmc/u-boot/scripts/kconfig/tests/err_recursive_inc/Kconfig.inc1
/openbmc/u-boot/scripts/kconfig/tests/err_recursive_inc/Kconfig.inc2
/openbmc/u-boot/scripts/kconfig/tests/err_recursive_inc/Kconfig.inc3
/openbmc/u-boot/scripts/kconfig/tests/err_recursive_inc/__init__.py
/openbmc/u-boot/scripts/kconfig/tests/err_recursive_inc/expected_stderr
/openbmc/u-boot/scripts/kconfig/tests/inter_choice/Kconfig
/openbmc/u-boot/scripts/kconfig/tests/inter_choice/__init__.py
/openbmc/u-boot/scripts/kconfig/tests/inter_choice/defconfig
/openbmc/u-boot/scripts/kconfig/tests/inter_choice/expected_config
/openbmc/u-boot/scripts/kconfig/tests/new_choice_with_dep/Kconfig
/openbmc/u-boot/scripts/kconfig/tests/new_choice_with_dep/__init__.py
/openbmc/u-boot/scripts/kconfig/tests/new_choice_with_dep/config
/openbmc/u-boot/scripts/kconfig/tests/new_choice_with_dep/expected_stdout
/openbmc/u-boot/scripts/kconfig/tests/no_write_if_dep_unmet/Kconfig
/openbmc/u-boot/scripts/kconfig/tests/no_write_if_dep_unmet/__init__.py
/openbmc/u-boot/scripts/kconfig/tests/no_write_if_dep_unmet/config
/openbmc/u-boot/scripts/kconfig/tests/no_write_if_dep_unmet/expected_config
/openbmc/u-boot/scripts/kconfig/tests/pytest.ini
/openbmc/u-boot/scripts/kconfig/tests/rand_nested_choice/Kconfig
/openbmc/u-boot/scripts/kconfig/tests/rand_nested_choice/__init__.py
/openbmc/u-boot/scripts/kconfig/tests/rand_nested_choice/expected_stdout0
/openbmc/u-boot/scripts/kconfig/tests/rand_nested_choice/expected_stdout1
/openbmc/u-boot/scripts/kconfig/tests/rand_nested_choice/expected_stdout2
/openbmc/u-boot/scripts/kconfig/tests/warn_recursive_dep/Kconfig
/openbmc/u-boot/scripts/kconfig/tests/warn_recursive_dep/__init__.py
/openbmc/u-boot/scripts/kconfig/tests/warn_recursive_dep/expected_stderr
/openbmc/u-boot/scripts/kconfig/util.c
/openbmc/u-boot/scripts/kconfig/zconf.l
/openbmc/u-boot/scripts/kconfig/zconf.y
/openbmc/u-boot/test/dm/test-fdt.c
/openbmc/u-boot/test/py/tests/test_log.py
/openbmc/u-boot/tools/libfdt/fdt_rw.c
/openbmc/u-boot/tools/logos/u-boot_logo.bmp
/openbmc/u-boot/tools/logos/u-boot_logo.svg
8ada17dd30-May-2018 Tom Rini <trini@konsulko.com>

Merge branch 'master' of git://git.denx.de/u-boot-spi

- Fix a conflict in drivers/spi/atcspi200_spi.c related to the riscv
tree fixing a warning.

Signed-off-by: Tom Rini <trini@konsulko.com>

964d4f7230-May-2018 Tom Rini <trini@konsulko.com>

Merge git://git.denx.de/u-boot-riscv


/openbmc/u-boot/.travis.yml
/openbmc/u-boot/Kconfig
/openbmc/u-boot/Licenses/README
/openbmc/u-boot/MAINTAINERS
/openbmc/u-boot/Makefile
/openbmc/u-boot/README
/openbmc/u-boot/arch/arc/lib/start.S
/openbmc/u-boot/arch/arm/Kconfig
/openbmc/u-boot/arch/arm/Makefile
/openbmc/u-boot/arch/arm/cpu/armv7m/config.mk
/openbmc/u-boot/arch/arm/cpu/armv8/generic_timer.c
/openbmc/u-boot/arch/arm/dts/armada-8040-db.dts
/openbmc/u-boot/arch/arm/dts/armada-8040-mcbin.dts
/openbmc/u-boot/arch/arm/dts/armada-ap806.dtsi
/openbmc/u-boot/arch/arm/dts/armada-cp110-master.dtsi
/openbmc/u-boot/arch/arm/dts/armada-cp110-slave.dtsi
/openbmc/u-boot/arch/arm/dts/dragonboard410c.dts
/openbmc/u-boot/arch/arm/dts/dragonboard820c-uboot.dtsi
/openbmc/u-boot/arch/arm/dts/dragonboard820c.dts
/openbmc/u-boot/arch/arm/dts/kirkwood-d2net.dts
/openbmc/u-boot/arch/arm/dts/kirkwood-dreamplug.dts
/openbmc/u-boot/arch/arm/dts/kirkwood-ds109.dts
/openbmc/u-boot/arch/arm/dts/kirkwood-is2.dts
/openbmc/u-boot/arch/arm/dts/kirkwood-km_common.dtsi
/openbmc/u-boot/arch/arm/dts/kirkwood-km_kirkwood.dts
/openbmc/u-boot/arch/arm/dts/kirkwood-lschlv2.dts
/openbmc/u-boot/arch/arm/dts/kirkwood-lsxhl.dts
/openbmc/u-boot/arch/arm/dts/kirkwood-lsxl.dtsi
/openbmc/u-boot/arch/arm/dts/kirkwood-net2big.dts
/openbmc/u-boot/arch/arm/dts/kirkwood-netxbig.dtsi
/openbmc/u-boot/arch/arm/dts/kirkwood-ns2-common.dtsi
/openbmc/u-boot/arch/arm/dts/kirkwood-ns2.dts
/openbmc/u-boot/arch/arm/dts/kirkwood-ns2lite.dts
/openbmc/u-boot/arch/arm/dts/kirkwood-ns2max.dts
/openbmc/u-boot/arch/arm/dts/kirkwood-ns2mini.dts
/openbmc/u-boot/arch/arm/dts/kirkwood-synology.dtsi
/openbmc/u-boot/arch/arm/dts/stm32f429-disco-u-boot.dtsi
/openbmc/u-boot/arch/arm/dts/uniphier-ld11.dtsi
/openbmc/u-boot/arch/arm/dts/uniphier-ld20-ref.dts
/openbmc/u-boot/arch/arm/dts/uniphier-ld20.dtsi
/openbmc/u-boot/arch/arm/dts/uniphier-pro4.dtsi
/openbmc/u-boot/arch/arm/dts/uniphier-pxs2.dtsi
/openbmc/u-boot/arch/arm/dts/uniphier-pxs3.dtsi
/openbmc/u-boot/arch/arm/lib/interrupts.c
/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-mvebu/Makefile
/openbmc/u-boot/arch/arm/mach-snapdragon/Kconfig
/openbmc/u-boot/arch/arm/mach-snapdragon/Makefile
/openbmc/u-boot/arch/arm/mach-snapdragon/clock-apq8016.c
/openbmc/u-boot/arch/arm/mach-snapdragon/clock-apq8096.c
/openbmc/u-boot/arch/arm/mach-snapdragon/clock-snapdragon.c
/openbmc/u-boot/arch/arm/mach-snapdragon/clock-snapdragon.h
/openbmc/u-boot/arch/arm/mach-snapdragon/include/mach/sysmap-apq8016.h
/openbmc/u-boot/arch/arm/mach-snapdragon/pinctrl-apq8016.c
/openbmc/u-boot/arch/arm/mach-snapdragon/pinctrl-snapdragon.c
/openbmc/u-boot/arch/arm/mach-snapdragon/pinctrl-snapdragon.h
/openbmc/u-boot/arch/arm/mach-stm32mp/Kconfig
/openbmc/u-boot/arch/arm/mach-stm32mp/Makefile
/openbmc/u-boot/arch/arm/mach-stm32mp/bsec.c
/openbmc/u-boot/arch/arm/mach-stm32mp/cpu.c
/openbmc/u-boot/arch/arm/mach-stm32mp/include/mach/stm32.h
/openbmc/u-boot/arch/arm/mach-stm32mp/spl.c
/openbmc/u-boot/arch/arm/mach-uniphier/board_late_init.c
/openbmc/u-boot/arch/riscv/Kconfig
/openbmc/u-boot/arch/riscv/config.mk
/openbmc/u-boot/arch/riscv/cpu/ax25/Makefile
/openbmc/u-boot/arch/riscv/cpu/ax25/cpu.c
/openbmc/u-boot/arch/riscv/cpu/ax25/start.S
/openbmc/u-boot/arch/riscv/cpu/ax25/u-boot.lds
/openbmc/u-boot/arch/riscv/dts/Makefile
/openbmc/u-boot/arch/riscv/dts/ae350.dts
/openbmc/u-boot/arch/riscv/include/asm/mach-types.h
/openbmc/u-boot/arch/riscv/include/asm/setjmp.h
/openbmc/u-boot/arch/riscv/include/asm/u-boot-riscv.h
/openbmc/u-boot/arch/riscv/lib/Makefile
/openbmc/u-boot/arch/riscv/lib/bootm.c
/openbmc/u-boot/arch/riscv/lib/crt0_riscv_efi.S
/openbmc/u-boot/arch/riscv/lib/elf_riscv32_efi.lds
/openbmc/u-boot/arch/riscv/lib/elf_riscv64_efi.lds
/openbmc/u-boot/arch/riscv/lib/reloc_riscv_efi.c
/openbmc/u-boot/arch/riscv/lib/setjmp.S
/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/Kconfig
/openbmc/u-boot/board/AndesTech/ax25-ae350/MAINTAINERS
/openbmc/u-boot/board/AndesTech/ax25-ae350/Makefile
/openbmc/u-boot/board/AndesTech/ax25-ae350/ax25-ae350.c
/openbmc/u-boot/board/emulation/qemu-arm/qemu-arm.c
/openbmc/u-boot/board/gdsys/a38x/controlcenterdc.c
/openbmc/u-boot/board/gdsys/a38x/hre.c
/openbmc/u-boot/board/gdsys/a38x/keyprogram.c
/openbmc/u-boot/board/gdsys/p1022/controlcenterd-id.c
/openbmc/u-boot/board/st/stm32mp1/board.c
/openbmc/u-boot/board/technexion/twister/twister.c
/openbmc/u-boot/cmd/Kconfig
/openbmc/u-boot/cmd/Makefile
/openbmc/u-boot/cmd/bootcount.c
/openbmc/u-boot/cmd/mmc.c
/openbmc/u-boot/cmd/tpm-common.c
/openbmc/u-boot/cmd/tpm-user-utils.h
/openbmc/u-boot/cmd/tpm-v1.c
/openbmc/u-boot/cmd/tpm-v2.c
/openbmc/u-boot/cmd/tpm_test.c
/openbmc/u-boot/common/dlmalloc.c
/openbmc/u-boot/common/image-fit.c
/openbmc/u-boot/common/spl/spl.c
/openbmc/u-boot/common/spl/spl_fit.c
/openbmc/u-boot/configs/at91sam9x5ek_dataflash_defconfig
/openbmc/u-boot/configs/at91sam9x5ek_nandflash_defconfig
/openbmc/u-boot/configs/at91sam9x5ek_spiflash_defconfig
/openbmc/u-boot/configs/ax25-ae350_defconfig
/openbmc/u-boot/configs/axs101_defconfig
/openbmc/u-boot/configs/axs103_defconfig
/openbmc/u-boot/configs/d2net_v2_defconfig
/openbmc/u-boot/configs/dragonboard410c_defconfig
/openbmc/u-boot/configs/dreamplug_defconfig
/openbmc/u-boot/configs/ds109_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/hsdk_defconfig
/openbmc/u-boot/configs/inetspace_v2_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/kmcoge5un_defconfig
/openbmc/u-boot/configs/kmnusa_defconfig
/openbmc/u-boot/configs/kmsugp1_defconfig
/openbmc/u-boot/configs/kmsuv31_defconfig
/openbmc/u-boot/configs/lschlv2_defconfig
/openbmc/u-boot/configs/lsxhl_defconfig
/openbmc/u-boot/configs/mgcoge3un_defconfig
/openbmc/u-boot/configs/mvebu_db-88f3720_defconfig
/openbmc/u-boot/configs/mvebu_db_armada8k_defconfig
/openbmc/u-boot/configs/mvebu_espressobin-88f3720_defconfig
/openbmc/u-boot/configs/mvebu_mcbin-88f8040_defconfig
/openbmc/u-boot/configs/net2big_v2_defconfig
/openbmc/u-boot/configs/netspace_lite_v2_defconfig
/openbmc/u-boot/configs/netspace_max_v2_defconfig
/openbmc/u-boot/configs/netspace_mini_v2_defconfig
/openbmc/u-boot/configs/netspace_v2_defconfig
/openbmc/u-boot/configs/nsim_700_defconfig
/openbmc/u-boot/configs/nsim_700be_defconfig
/openbmc/u-boot/configs/nsim_hs38_defconfig
/openbmc/u-boot/configs/nsim_hs38be_defconfig
/openbmc/u-boot/configs/sama5d2_xplained_mmc_defconfig
/openbmc/u-boot/configs/sama5d2_xplained_spiflash_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_noblk_defconfig
/openbmc/u-boot/configs/sandbox_spl_defconfig
/openbmc/u-boot/configs/stm32mp15_basic_defconfig
/openbmc/u-boot/configs/turris_mox_defconfig
/openbmc/u-boot/configs/vining_2000_defconfig
/openbmc/u-boot/doc/README.AX25
/openbmc/u-boot/doc/README.ae350
/openbmc/u-boot/doc/README.commands
/openbmc/u-boot/doc/README.qemu-arm
/openbmc/u-boot/doc/device-tree-bindings/pinctrl/marvell,mvebu-pinctrl.txt
/openbmc/u-boot/doc/device-tree-bindings/tpm2/sandbox.txt
/openbmc/u-boot/doc/device-tree-bindings/tpm2/tis-tpm2-spi.txt
/openbmc/u-boot/doc/driver-model/i2c-howto.txt
/openbmc/u-boot/drivers/ata/Kconfig
/openbmc/u-boot/drivers/ata/Makefile
/openbmc/u-boot/drivers/ata/ahci_mvebu.c
/openbmc/u-boot/drivers/clk/at91/clk-h32mx.c
/openbmc/u-boot/drivers/i2c/Makefile
/openbmc/u-boot/drivers/misc/Kconfig
/openbmc/u-boot/drivers/misc/Makefile
/openbmc/u-boot/drivers/misc/stm32mp_fuse.c
/openbmc/u-boot/drivers/mmc/Kconfig
/openbmc/u-boot/drivers/mmc/bcm2835_sdhost.c
/openbmc/u-boot/drivers/mmc/ftsdc010_mci.c
/openbmc/u-boot/drivers/mmc/stm32_sdmmc2.c
Makefile
/openbmc/u-boot/drivers/net/Makefile
/openbmc/u-boot/drivers/net/ftmac100.c
/openbmc/u-boot/drivers/pci/pci-uclass.c
/openbmc/u-boot/drivers/pci/pci_auto.c
/openbmc/u-boot/drivers/pci/pci_auto_common.c
/openbmc/u-boot/drivers/pci/pci_auto_old.c
/openbmc/u-boot/drivers/pinctrl/mvebu/pinctrl-mvebu.c
/openbmc/u-boot/drivers/ram/stm32_sdram.c
/openbmc/u-boot/drivers/serial/Kconfig
/openbmc/u-boot/drivers/serial/serial_arc.c
/openbmc/u-boot/drivers/serial/serial_msm.c
/openbmc/u-boot/drivers/serial/serial_stm32.c
/openbmc/u-boot/drivers/serial/serial_stm32.h
/openbmc/u-boot/drivers/spi/atcspi200_spi.c
/openbmc/u-boot/drivers/tpm/Kconfig
/openbmc/u-boot/drivers/tpm/Makefile
/openbmc/u-boot/drivers/tpm/tpm-uclass.c
/openbmc/u-boot/drivers/tpm/tpm2_tis_sandbox.c
/openbmc/u-boot/drivers/tpm/tpm2_tis_spi.c
/openbmc/u-boot/drivers/tpm/tpm_atmel_twi.c
/openbmc/u-boot/drivers/tpm/tpm_tis.h
/openbmc/u-boot/drivers/tpm/tpm_tis_infineon.c
/openbmc/u-boot/drivers/tpm/tpm_tis_lpc.c
/openbmc/u-boot/drivers/tpm/tpm_tis_sandbox.c
/openbmc/u-boot/drivers/tpm/tpm_tis_st33zp24_i2c.c
/openbmc/u-boot/drivers/tpm/tpm_tis_st33zp24_spi.c
/openbmc/u-boot/fs/ext4/ext4fs.c
/openbmc/u-boot/include/config_distro_bootcmd.h
/openbmc/u-boot/include/configs/at91-sama5_common.h
/openbmc/u-boot/include/configs/at91sam9260ek.h
/openbmc/u-boot/include/configs/at91sam9261ek.h
/openbmc/u-boot/include/configs/at91sam9263ek.h
/openbmc/u-boot/include/configs/at91sam9m10g45ek.h
/openbmc/u-boot/include/configs/at91sam9n12ek.h
/openbmc/u-boot/include/configs/at91sam9rlek.h
/openbmc/u-boot/include/configs/at91sam9x5ek.h
/openbmc/u-boot/include/configs/ax25-ae350.h
/openbmc/u-boot/include/configs/dns325.h
/openbmc/u-boot/include/configs/ds414.h
/openbmc/u-boot/include/configs/goflexhome.h
/openbmc/u-boot/include/configs/guruplug.h
/openbmc/u-boot/include/configs/gw_ventana.h
/openbmc/u-boot/include/configs/ib62x0.h
/openbmc/u-boot/include/configs/iconnect.h
/openbmc/u-boot/include/configs/mv-common.h
/openbmc/u-boot/include/configs/mv-plug-common.h
/openbmc/u-boot/include/configs/nsa310s.h
/openbmc/u-boot/include/configs/nsim.h
/openbmc/u-boot/include/configs/openrd.h
/openbmc/u-boot/include/configs/pogo_e02.h
/openbmc/u-boot/include/configs/rpi.h
/openbmc/u-boot/include/configs/sama5d2_xplained.h
/openbmc/u-boot/include/configs/sheevaplug.h
/openbmc/u-boot/include/configs/stm32f429-discovery.h
/openbmc/u-boot/include/configs/uniphier.h
/openbmc/u-boot/include/configs/vining_2000.h
/openbmc/u-boot/include/dt-bindings/leds/leds-netxbig.h
/openbmc/u-boot/include/dt-bindings/leds/leds-ns2.h
/openbmc/u-boot/include/dt-bindings/pinctrl/pinctrl-snapdragon.h
/openbmc/u-boot/include/dt_table.h
/openbmc/u-boot/include/efi_loader.h
/openbmc/u-boot/include/image.h
/openbmc/u-boot/include/netdev.h
/openbmc/u-boot/include/pci.h
/openbmc/u-boot/include/serial.h
/openbmc/u-boot/include/tpm-common.h
/openbmc/u-boot/include/tpm-v1.h
/openbmc/u-boot/include/tpm-v2.h
/openbmc/u-boot/lib/Makefile
/openbmc/u-boot/lib/efi_loader/Kconfig
/openbmc/u-boot/lib/efi_loader/efi_image_loader.c
/openbmc/u-boot/lib/efi_loader/efi_runtime.c
/openbmc/u-boot/lib/tpm-common.c
/openbmc/u-boot/lib/tpm-utils.h
/openbmc/u-boot/lib/tpm-v1.c
/openbmc/u-boot/lib/tpm-v2.c
/openbmc/u-boot/scripts/config_whitelist.txt
/openbmc/u-boot/scripts/decodecode
/openbmc/u-boot/scripts/dtc/pylibfdt/Makefile
/openbmc/u-boot/test/fs/fs-test.sh
/openbmc/u-boot/test/py/tests/test_tpm2.py
/openbmc/u-boot/tools/buildman/toolchain.py
9171ab8828-May-2018 Rick Chen <rick@andestech.com>

mtd: ftsmc020: Drop unsed code

ftsmc020_init is not used anymore.
So it can be removed.

Signed-off-by: Rick Chen <rick@andestech.com>
Signed-off-by: Rick Chen <rickchen36@gmail.com>
Cc: Greentime H

mtd: ftsmc020: Drop unsed code

ftsmc020_init is not used anymore.
So it can be removed.

Signed-off-by: Rick Chen <rick@andestech.com>
Signed-off-by: Rick Chen <rickchen36@gmail.com>
Cc: Greentime Hu <green.hu@gmail.com>

show more ...


/openbmc/u-boot/.travis.yml
/openbmc/u-boot/Documentation/devicetree/bindings/phy/phy-stm32-usbphyc.txt
/openbmc/u-boot/Kconfig
/openbmc/u-boot/Licenses/README
/openbmc/u-boot/MAINTAINERS
/openbmc/u-boot/Makefile
/openbmc/u-boot/README
/openbmc/u-boot/arch/arc/lib/start.S
/openbmc/u-boot/arch/arm/Kconfig
/openbmc/u-boot/arch/arm/Makefile
/openbmc/u-boot/arch/arm/cpu/armv7m/config.mk
/openbmc/u-boot/arch/arm/cpu/armv8/generic_timer.c
/openbmc/u-boot/arch/arm/dts/Makefile
/openbmc/u-boot/arch/arm/dts/armada-3720-turris-mox.dts
/openbmc/u-boot/arch/arm/dts/armada-37xx.dtsi
/openbmc/u-boot/arch/arm/dts/dragonboard410c.dts
/openbmc/u-boot/arch/arm/dts/dragonboard820c-uboot.dtsi
/openbmc/u-boot/arch/arm/dts/imx53-kp.dts
/openbmc/u-boot/arch/arm/dts/imx53-pinfunc.h
/openbmc/u-boot/arch/arm/dts/imx53.dtsi
/openbmc/u-boot/arch/arm/dts/imx6dl-icore-mipi-u-boot.dtsi
/openbmc/u-boot/arch/arm/dts/imx6dl-icore-mipi.dts
/openbmc/u-boot/arch/arm/dts/imx6dl-icore-rqs-u-boot.dtsi
/openbmc/u-boot/arch/arm/dts/imx6dl-icore-u-boot.dtsi
/openbmc/u-boot/arch/arm/dts/imx6dl-mamoj-u-boot.dtsi
/openbmc/u-boot/arch/arm/dts/imx6dl-mamoj.dts
/openbmc/u-boot/arch/arm/dts/imx6q-icore-mipi-u-boot.dtsi
/openbmc/u-boot/arch/arm/dts/imx6q-icore-mipi.dts
/openbmc/u-boot/arch/arm/dts/imx6q-icore-rqs-u-boot.dtsi
/openbmc/u-boot/arch/arm/dts/imx6q-icore-u-boot.dtsi
/openbmc/u-boot/arch/arm/dts/imx6qdl-icore-rqs-u-boot.dtsi
/openbmc/u-boot/arch/arm/dts/imx6qdl-icore-rqs.dtsi
/openbmc/u-boot/arch/arm/dts/imx6qdl-icore-u-boot.dtsi
/openbmc/u-boot/arch/arm/dts/imx6qdl-icore.dtsi
/openbmc/u-boot/arch/arm/dts/imx6qdl-u-boot.dtsi
/openbmc/u-boot/arch/arm/dts/imx6qdl.dtsi
/openbmc/u-boot/arch/arm/dts/imx6ul-geam-kit-u-boot.dtsi
/openbmc/u-boot/arch/arm/dts/imx6ul-geam-kit.dts
/openbmc/u-boot/arch/arm/dts/imx6ul-isiot-emmc-u-boot.dtsi
/openbmc/u-boot/arch/arm/dts/imx6ul-isiot-emmc.dts
/openbmc/u-boot/arch/arm/dts/imx6ul-isiot-nand.dts
/openbmc/u-boot/arch/arm/dts/imx6ul-isiot-u-boot.dtsi
/openbmc/u-boot/arch/arm/dts/imx6ul-isiot.dtsi
/openbmc/u-boot/arch/arm/dts/imx6ul-u-boot.dtsi
/openbmc/u-boot/arch/arm/dts/imx6ul.dtsi
/openbmc/u-boot/arch/arm/dts/kirkwood-6192.dtsi
/openbmc/u-boot/arch/arm/dts/kirkwood-6281.dtsi
/openbmc/u-boot/arch/arm/dts/kirkwood-98dx4122.dtsi
/openbmc/u-boot/arch/arm/dts/kirkwood-blackarmor-nas220.dts
/openbmc/u-boot/arch/arm/dts/kirkwood-dns325.dts
/openbmc/u-boot/arch/arm/dts/kirkwood-dnskw.dtsi
/openbmc/u-boot/arch/arm/dts/kirkwood-dockstar.dts
/openbmc/u-boot/arch/arm/dts/kirkwood-goflexnet.dts
/openbmc/u-boot/arch/arm/dts/kirkwood-guruplug-server-plus.dts
/openbmc/u-boot/arch/arm/dts/kirkwood-ib62x0.dts
/openbmc/u-boot/arch/arm/dts/kirkwood-iconnect.dts
/openbmc/u-boot/arch/arm/dts/kirkwood-openrd-base.dts
/openbmc/u-boot/arch/arm/dts/kirkwood-openrd-client.dts
/openbmc/u-boot/arch/arm/dts/kirkwood-openrd-ultimate.dts
/openbmc/u-boot/arch/arm/dts/kirkwood-openrd.dtsi
/openbmc/u-boot/arch/arm/dts/kirkwood-pogo_e02.dts
/openbmc/u-boot/arch/arm/dts/kirkwood-sheevaplug-common.dtsi
/openbmc/u-boot/arch/arm/dts/kirkwood-sheevaplug.dts
/openbmc/u-boot/arch/arm/dts/kirkwood.dtsi
/openbmc/u-boot/arch/arm/dts/r8a7792-blanche-u-boot.dts
/openbmc/u-boot/arch/arm/dts/socfpga.dtsi
/openbmc/u-boot/arch/arm/dts/socfpga_arria10.dtsi
/openbmc/u-boot/arch/arm/dts/socfpga_arria10_socdk.dtsi
/openbmc/u-boot/arch/arm/dts/socfpga_arria10_socdk_sdmmc.dts
/openbmc/u-boot/arch/arm/dts/socfpga_arria10_socdk_sdmmc_handoff.dtsi
/openbmc/u-boot/arch/arm/dts/socfpga_stratix10.dtsi
/openbmc/u-boot/arch/arm/dts/socfpga_stratix10_socdk.dts
/openbmc/u-boot/arch/arm/dts/stm32f429-disco-u-boot.dtsi
/openbmc/u-boot/arch/arm/dts/sun50i-a64.dtsi
/openbmc/u-boot/arch/arm/dts/uniphier-ld11.dtsi
/openbmc/u-boot/arch/arm/dts/uniphier-ld20-ref.dts
/openbmc/u-boot/arch/arm/dts/uniphier-ld20.dtsi
/openbmc/u-boot/arch/arm/dts/uniphier-pro4.dtsi
/openbmc/u-boot/arch/arm/dts/uniphier-pxs2.dtsi
/openbmc/u-boot/arch/arm/dts/uniphier-pxs3.dtsi
/openbmc/u-boot/arch/arm/include/asm/arch-mx31/clock.h
/openbmc/u-boot/arch/arm/include/asm/arch-sunxi/gpio.h
/openbmc/u-boot/arch/arm/include/asm/arch-sunxi/pwm.h
/openbmc/u-boot/arch/arm/include/asm/arch-zynqmp/hardware.h
/openbmc/u-boot/arch/arm/lib/interrupts.c
/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-imx/mx3/Kconfig
/openbmc/u-boot/arch/arm/mach-imx/mx5/Kconfig
/openbmc/u-boot/arch/arm/mach-imx/mx6/Kconfig
/openbmc/u-boot/arch/arm/mach-kirkwood/include/mach/config.h
/openbmc/u-boot/arch/arm/mach-mvebu/Kconfig
/openbmc/u-boot/arch/arm/mach-mvebu/Makefile
/openbmc/u-boot/arch/arm/mach-mvebu/serdes/a38x/ctrl_pex.h
/openbmc/u-boot/arch/arm/mach-mvebu/serdes/a38x/sys_env_lib.c
/openbmc/u-boot/arch/arm/mach-mvebu/serdes/a38x/sys_env_lib.h
/openbmc/u-boot/arch/arm/mach-rmobile/Kconfig.32
/openbmc/u-boot/arch/arm/mach-rmobile/Makefile
/openbmc/u-boot/arch/arm/mach-rmobile/include/mach/gpio.h
/openbmc/u-boot/arch/arm/mach-snapdragon/Makefile
/openbmc/u-boot/arch/arm/mach-snapdragon/clock-apq8016.c
/openbmc/u-boot/arch/arm/mach-snapdragon/clock-apq8096.c
/openbmc/u-boot/arch/arm/mach-snapdragon/clock-snapdragon.c
/openbmc/u-boot/arch/arm/mach-snapdragon/clock-snapdragon.h
/openbmc/u-boot/arch/arm/mach-snapdragon/include/mach/sysmap-apq8016.h
/openbmc/u-boot/arch/arm/mach-snapdragon/pinctrl-apq8016.c
/openbmc/u-boot/arch/arm/mach-snapdragon/pinctrl-snapdragon.c
/openbmc/u-boot/arch/arm/mach-snapdragon/pinctrl-snapdragon.h
/openbmc/u-boot/arch/arm/mach-socfpga/Kconfig
/openbmc/u-boot/arch/arm/mach-socfpga/Makefile
/openbmc/u-boot/arch/arm/mach-socfpga/board.c
/openbmc/u-boot/arch/arm/mach-socfpga/clock_manager.c
/openbmc/u-boot/arch/arm/mach-socfpga/clock_manager_arria10.c
/openbmc/u-boot/arch/arm/mach-socfpga/clock_manager_s10.c
/openbmc/u-boot/arch/arm/mach-socfpga/include/mach/base_addr_s10.h
/openbmc/u-boot/arch/arm/mach-socfpga/include/mach/clock_manager.h
/openbmc/u-boot/arch/arm/mach-socfpga/include/mach/clock_manager_arria10.h
/openbmc/u-boot/arch/arm/mach-socfpga/include/mach/clock_manager_s10.h
/openbmc/u-boot/arch/arm/mach-socfpga/include/mach/handoff_s10.h
/openbmc/u-boot/arch/arm/mach-socfpga/include/mach/reset_manager.h
/openbmc/u-boot/arch/arm/mach-socfpga/include/mach/reset_manager_s10.h
/openbmc/u-boot/arch/arm/mach-socfpga/include/mach/scu.h
/openbmc/u-boot/arch/arm/mach-socfpga/include/mach/sdram.h
/openbmc/u-boot/arch/arm/mach-socfpga/include/mach/sdram_arria10.h
/openbmc/u-boot/arch/arm/mach-socfpga/include/mach/sdram_gen5.h
/openbmc/u-boot/arch/arm/mach-socfpga/include/mach/system_manager.h
/openbmc/u-boot/arch/arm/mach-socfpga/include/mach/system_manager_s10.h
/openbmc/u-boot/arch/arm/mach-socfpga/misc.c
/openbmc/u-boot/arch/arm/mach-socfpga/misc_arria10.c
/openbmc/u-boot/arch/arm/mach-socfpga/misc_gen5.c
/openbmc/u-boot/arch/arm/mach-socfpga/reset_manager.c
/openbmc/u-boot/arch/arm/mach-socfpga/reset_manager_arria10.c
/openbmc/u-boot/arch/arm/mach-socfpga/reset_manager_gen5.c
/openbmc/u-boot/arch/arm/mach-socfpga/reset_manager_s10.c
/openbmc/u-boot/arch/arm/mach-socfpga/spl.c
/openbmc/u-boot/arch/arm/mach-socfpga/system_manager_s10.c
/openbmc/u-boot/arch/arm/mach-socfpga/wrap_pinmux_config_s10.c
/openbmc/u-boot/arch/arm/mach-socfpga/wrap_pll_config_s10.c
/openbmc/u-boot/arch/arm/mach-stm32mp/Kconfig
/openbmc/u-boot/arch/arm/mach-stm32mp/Makefile
/openbmc/u-boot/arch/arm/mach-stm32mp/bsec.c
/openbmc/u-boot/arch/arm/mach-stm32mp/cpu.c
/openbmc/u-boot/arch/arm/mach-stm32mp/include/mach/stm32.h
/openbmc/u-boot/arch/arm/mach-stm32mp/spl.c
/openbmc/u-boot/arch/arm/mach-uniphier/board_late_init.c
/openbmc/u-boot/arch/nds32/include/asm/bitops.h
/openbmc/u-boot/arch/nios2/include/asm/bitops/non-atomic.h
/openbmc/u-boot/arch/riscv/Kconfig
/openbmc/u-boot/arch/riscv/config.mk
/openbmc/u-boot/arch/riscv/cpu/ax25/Makefile
/openbmc/u-boot/arch/riscv/cpu/ax25/cpu.c
/openbmc/u-boot/arch/riscv/cpu/ax25/start.S
/openbmc/u-boot/arch/riscv/cpu/ax25/u-boot.lds
/openbmc/u-boot/arch/riscv/dts/Makefile
/openbmc/u-boot/arch/riscv/dts/ae350.dts
/openbmc/u-boot/arch/riscv/include/asm/bitops.h
/openbmc/u-boot/arch/riscv/include/asm/mach-types.h
/openbmc/u-boot/arch/riscv/include/asm/setjmp.h
/openbmc/u-boot/arch/riscv/include/asm/u-boot-riscv.h
/openbmc/u-boot/arch/riscv/lib/Makefile
/openbmc/u-boot/arch/riscv/lib/bootm.c
/openbmc/u-boot/arch/riscv/lib/crt0_riscv_efi.S
/openbmc/u-boot/arch/riscv/lib/elf_riscv32_efi.lds
/openbmc/u-boot/arch/riscv/lib/elf_riscv64_efi.lds
/openbmc/u-boot/arch/riscv/lib/reloc_riscv_efi.c
/openbmc/u-boot/arch/riscv/lib/setjmp.S
/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/x86/include/asm/bitops.h
/openbmc/u-boot/board/AndesTech/ax25-ae350/Kconfig
/openbmc/u-boot/board/AndesTech/ax25-ae350/MAINTAINERS
/openbmc/u-boot/board/AndesTech/ax25-ae350/Makefile
/openbmc/u-boot/board/AndesTech/ax25-ae350/ax25-ae350.c
/openbmc/u-boot/board/CZ.NIC/turris_mox/MAINTAINERS
/openbmc/u-boot/board/CZ.NIC/turris_mox/Makefile
/openbmc/u-boot/board/CZ.NIC/turris_mox/turris_mox.c
/openbmc/u-boot/board/CZ.NIC/turris_omnia/turris_omnia.c
/openbmc/u-boot/board/Marvell/db-88f6820-amc/db-88f6820-amc.c
/openbmc/u-boot/board/Marvell/db-88f6820-gp/db-88f6820-gp.c
/openbmc/u-boot/board/bticino/mamoj/Kconfig
/openbmc/u-boot/board/bticino/mamoj/MAINTAINERS
/openbmc/u-boot/board/bticino/mamoj/Makefile
/openbmc/u-boot/board/bticino/mamoj/README
/openbmc/u-boot/board/bticino/mamoj/mamoj.c
/openbmc/u-boot/board/bticino/mamoj/spl.c
/openbmc/u-boot/board/emulation/qemu-arm/qemu-arm.c
/openbmc/u-boot/board/engicam/imx6q/MAINTAINERS
/openbmc/u-boot/board/engicam/imx6ul/MAINTAINERS
/openbmc/u-boot/board/gdsys/a38x/controlcenterdc.c
/openbmc/u-boot/board/gdsys/a38x/hre.c
/openbmc/u-boot/board/gdsys/a38x/keyprogram.c
/openbmc/u-boot/board/gdsys/p1022/controlcenterd-id.c
/openbmc/u-boot/board/ge/bx50v3/Kconfig
/openbmc/u-boot/board/ge/bx50v3/bx50v3.c
/openbmc/u-boot/board/k+p/kp_imx53/Kconfig
/openbmc/u-boot/board/k+p/kp_imx53/MAINTAINERS
/openbmc/u-boot/board/k+p/kp_imx53/Makefile
/openbmc/u-boot/board/k+p/kp_imx53/kp_id_rev.c
/openbmc/u-boot/board/k+p/kp_imx53/kp_id_rev.h
/openbmc/u-boot/board/k+p/kp_imx53/kp_imx53.c
/openbmc/u-boot/board/renesas/blanche/Makefile
/openbmc/u-boot/board/renesas/blanche/blanche.c
/openbmc/u-boot/board/solidrun/clearfog/clearfog.c
/openbmc/u-boot/board/st/stm32mp1/board.c
/openbmc/u-boot/board/technexion/twister/twister.c
/openbmc/u-boot/board/xilinx/zynqmp/zynqmp.c
/openbmc/u-boot/cmd/Kconfig
/openbmc/u-boot/cmd/Makefile
/openbmc/u-boot/cmd/bootcount.c
/openbmc/u-boot/cmd/mmc.c
/openbmc/u-boot/cmd/pmic.c
/openbmc/u-boot/cmd/tpm-common.c
/openbmc/u-boot/cmd/tpm-user-utils.h
/openbmc/u-boot/cmd/tpm-v1.c
/openbmc/u-boot/cmd/tpm-v2.c
/openbmc/u-boot/cmd/tpm_test.c
/openbmc/u-boot/common/dlmalloc.c
/openbmc/u-boot/common/image-fit.c
/openbmc/u-boot/common/spl/spl.c
/openbmc/u-boot/common/spl/spl_fit.c
/openbmc/u-boot/configs/10m50_defconfig
/openbmc/u-boot/configs/3c120_defconfig
/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/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/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/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/MPC8572DS_36BIT_defconfig
/openbmc/u-boot/configs/MPC8572DS_defconfig
/openbmc/u-boot/configs/MPC8641HPCN_36BIT_defconfig
/openbmc/u-boot/configs/MPC8641HPCN_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/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/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/at91sam9x5ek_dataflash_defconfig
/openbmc/u-boot/configs/at91sam9x5ek_nandflash_defconfig
/openbmc/u-boot/configs/at91sam9x5ek_spiflash_defconfig
/openbmc/u-boot/configs/ax25-ae350_defconfig
/openbmc/u-boot/configs/axs101_defconfig
/openbmc/u-boot/configs/axs103_defconfig
/openbmc/u-boot/configs/blanche_defconfig
/openbmc/u-boot/configs/clearfog_defconfig
/openbmc/u-boot/configs/controlcenterd_36BIT_SDCARD_DEVELOP_defconfig
/openbmc/u-boot/configs/controlcenterd_36BIT_SDCARD_defconfig
/openbmc/u-boot/configs/controlcenterdc_defconfig
/openbmc/u-boot/configs/d2net_v2_defconfig
/openbmc/u-boot/configs/db-88f6720_defconfig
/openbmc/u-boot/configs/db-88f6820-amc_defconfig
/openbmc/u-boot/configs/db-88f6820-gp_defconfig
/openbmc/u-boot/configs/db-mv784mp-gp_defconfig
/openbmc/u-boot/configs/devkit8000_defconfig
/openbmc/u-boot/configs/dns325_defconfig
/openbmc/u-boot/configs/dockstar_defconfig
/openbmc/u-boot/configs/dragonboard410c_defconfig
/openbmc/u-boot/configs/dreamplug_defconfig
/openbmc/u-boot/configs/ds109_defconfig
/openbmc/u-boot/configs/ds414_defconfig
/openbmc/u-boot/configs/edminiv2_defconfig
/openbmc/u-boot/configs/ge_bx50v3_defconfig
/openbmc/u-boot/configs/goflexhome_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/hrcon_defconfig
/openbmc/u-boot/configs/hrcon_dh_defconfig
/openbmc/u-boot/configs/hsdk_defconfig
/openbmc/u-boot/configs/ib62x0_defconfig
/openbmc/u-boot/configs/iconnect_defconfig
/openbmc/u-boot/configs/ids8313_defconfig
/openbmc/u-boot/configs/imx6dl_mamoj_defconfig
/openbmc/u-boot/configs/inetspace_v2_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/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/kmcoge5un_defconfig
/openbmc/u-boot/configs/kmlion1_defconfig
/openbmc/u-boot/configs/kmnusa_defconfig
/openbmc/u-boot/configs/kmsugp1_defconfig
/openbmc/u-boot/configs/kmsuv31_defconfig
/openbmc/u-boot/configs/kp_imx53_defconfig
/openbmc/u-boot/configs/lager_defconfig
/openbmc/u-boot/configs/lschlv2_defconfig
/openbmc/u-boot/configs/lsxhl_defconfig
/openbmc/u-boot/configs/maxbcm_defconfig
/openbmc/u-boot/configs/mgcoge3un_defconfig
/openbmc/u-boot/configs/mpc8308_p1m_defconfig
/openbmc/u-boot/configs/mvebu_db-88f3720_defconfig
/openbmc/u-boot/configs/mvebu_espressobin-88f3720_defconfig
/openbmc/u-boot/configs/mx31pdk_defconfig
/openbmc/u-boot/configs/mx53ppd_defconfig
/openbmc/u-boot/configs/mx6qsabrelite_defconfig
/openbmc/u-boot/configs/nas220_defconfig
/openbmc/u-boot/configs/net2big_v2_defconfig
/openbmc/u-boot/configs/netspace_lite_v2_defconfig
/openbmc/u-boot/configs/netspace_max_v2_defconfig
/openbmc/u-boot/configs/netspace_mini_v2_defconfig
/openbmc/u-boot/configs/netspace_v2_defconfig
/openbmc/u-boot/configs/nsa310s_defconfig
/openbmc/u-boot/configs/nsim_700_defconfig
/openbmc/u-boot/configs/nsim_700be_defconfig
/openbmc/u-boot/configs/nsim_hs38_defconfig
/openbmc/u-boot/configs/nsim_hs38be_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/pogo_e02_defconfig
/openbmc/u-boot/configs/portl2_defconfig
/openbmc/u-boot/configs/sama5d2_xplained_mmc_defconfig
/openbmc/u-boot/configs/sama5d2_xplained_spiflash_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_noblk_defconfig
/openbmc/u-boot/configs/sandbox_spl_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/sheevaplug_defconfig
/openbmc/u-boot/configs/silk_defconfig
/openbmc/u-boot/configs/socfpga_sr1500_defconfig
/openbmc/u-boot/configs/socrates_defconfig
/openbmc/u-boot/configs/stm32mp15_basic_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/theadorable_debug_defconfig
/openbmc/u-boot/configs/turris_mox_defconfig
/openbmc/u-boot/configs/turris_omnia_defconfig
/openbmc/u-boot/configs/ve8313_defconfig
/openbmc/u-boot/configs/vining_2000_defconfig
/openbmc/u-boot/configs/vme8349_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_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/doc/README.AX25
/openbmc/u-boot/doc/README.ae350
/openbmc/u-boot/doc/README.commands
/openbmc/u-boot/doc/README.qemu-arm
/openbmc/u-boot/doc/device-tree-bindings/tpm2/sandbox.txt
/openbmc/u-boot/doc/device-tree-bindings/tpm2/tis-tpm2-spi.txt
/openbmc/u-boot/doc/driver-model/i2c-howto.txt
/openbmc/u-boot/drivers/clk/Kconfig
/openbmc/u-boot/drivers/clk/Makefile
/openbmc/u-boot/drivers/clk/at91/clk-h32mx.c
/openbmc/u-boot/drivers/clk/mvebu/Kconfig
/openbmc/u-boot/drivers/clk/mvebu/Makefile
/openbmc/u-boot/drivers/clk/mvebu/armada-37xx-periph.c
/openbmc/u-boot/drivers/clk/mvebu/armada-37xx-tbg.c
/openbmc/u-boot/drivers/clk/rockchip/clk_rk3288.c
/openbmc/u-boot/drivers/ddr/altera/Kconfig
/openbmc/u-boot/drivers/ddr/altera/Makefile
/openbmc/u-boot/drivers/ddr/altera/sdram_arria10.c
/openbmc/u-boot/drivers/ddr/altera/sdram_gen5.c
/openbmc/u-boot/drivers/ddr/marvell/a38x/Makefile
/openbmc/u-boot/drivers/ddr/marvell/a38x/ddr3_debug.c
/openbmc/u-boot/drivers/ddr/marvell/a38x/ddr3_init.c
/openbmc/u-boot/drivers/ddr/marvell/a38x/ddr3_init.h
/openbmc/u-boot/drivers/ddr/marvell/a38x/ddr3_logging_def.h
/openbmc/u-boot/drivers/ddr/marvell/a38x/ddr3_patterns_64bit.h
/openbmc/u-boot/drivers/ddr/marvell/a38x/ddr3_topology_def.h
/openbmc/u-boot/drivers/ddr/marvell/a38x/ddr3_training.c
/openbmc/u-boot/drivers/ddr/marvell/a38x/ddr3_training_bist.c
/openbmc/u-boot/drivers/ddr/marvell/a38x/ddr3_training_centralization.c
/openbmc/u-boot/drivers/ddr/marvell/a38x/ddr3_training_db.c
/openbmc/u-boot/drivers/ddr/marvell/a38x/ddr3_training_hw_algo.c
/openbmc/u-boot/drivers/ddr/marvell/a38x/ddr3_training_ip.h
/openbmc/u-boot/drivers/ddr/marvell/a38x/ddr3_training_ip_bist.h
/openbmc/u-boot/drivers/ddr/marvell/a38x/ddr3_training_ip_db.h
/openbmc/u-boot/drivers/ddr/marvell/a38x/ddr3_training_ip_def.h
/openbmc/u-boot/drivers/ddr/marvell/a38x/ddr3_training_ip_engine.c
/openbmc/u-boot/drivers/ddr/marvell/a38x/ddr3_training_ip_engine.h
/openbmc/u-boot/drivers/ddr/marvell/a38x/ddr3_training_ip_flow.h
/openbmc/u-boot/drivers/ddr/marvell/a38x/ddr3_training_ip_prv_if.h
/openbmc/u-boot/drivers/ddr/marvell/a38x/ddr3_training_leveling.c
/openbmc/u-boot/drivers/ddr/marvell/a38x/ddr3_training_leveling.h
/openbmc/u-boot/drivers/ddr/marvell/a38x/ddr3_training_pbs.c
/openbmc/u-boot/drivers/ddr/marvell/a38x/ddr_ml_wrapper.h
/openbmc/u-boot/drivers/ddr/marvell/a38x/ddr_topology_def.h
/openbmc/u-boot/drivers/ddr/marvell/a38x/mv_ddr_build_message.c
/openbmc/u-boot/drivers/ddr/marvell/a38x/mv_ddr_common.c
/openbmc/u-boot/drivers/ddr/marvell/a38x/mv_ddr_common.h
/openbmc/u-boot/drivers/ddr/marvell/a38x/mv_ddr_plat.c
/openbmc/u-boot/drivers/ddr/marvell/a38x/mv_ddr_plat.h
/openbmc/u-boot/drivers/ddr/marvell/a38x/mv_ddr_regs.h
/openbmc/u-boot/drivers/ddr/marvell/a38x/mv_ddr_spd.c
/openbmc/u-boot/drivers/ddr/marvell/a38x/mv_ddr_spd.h
/openbmc/u-boot/drivers/ddr/marvell/a38x/mv_ddr_sys_env_lib.c
/openbmc/u-boot/drivers/ddr/marvell/a38x/mv_ddr_sys_env_lib.h
/openbmc/u-boot/drivers/ddr/marvell/a38x/mv_ddr_topology.c
/openbmc/u-boot/drivers/ddr/marvell/a38x/mv_ddr_topology.h
/openbmc/u-boot/drivers/ddr/marvell/a38x/seq_exec.h
/openbmc/u-boot/drivers/ddr/marvell/a38x/xor.c
/openbmc/u-boot/drivers/ddr/marvell/a38x/xor.h
/openbmc/u-boot/drivers/i2c/Kconfig
/openbmc/u-boot/drivers/i2c/Makefile
/openbmc/u-boot/drivers/i2c/rcar_i2c.c
/openbmc/u-boot/drivers/misc/Kconfig
/openbmc/u-boot/drivers/misc/Makefile
/openbmc/u-boot/drivers/misc/stm32mp_fuse.c
/openbmc/u-boot/drivers/mmc/Kconfig
/openbmc/u-boot/drivers/mmc/bcm2835_sdhost.c
/openbmc/u-boot/drivers/mmc/ftsdc010_mci.c
/openbmc/u-boot/drivers/mmc/mmc.c
/openbmc/u-boot/drivers/mmc/mmc_legacy.c
/openbmc/u-boot/drivers/mmc/sdhci.c
/openbmc/u-boot/drivers/mmc/stm32_sdmmc2.c
Makefile
/openbmc/u-boot/drivers/net/Kconfig
/openbmc/u-boot/drivers/net/Makefile
/openbmc/u-boot/drivers/net/ftmac100.c
/openbmc/u-boot/drivers/net/mvgbe.c
/openbmc/u-boot/drivers/net/mvgbe.h
/openbmc/u-boot/drivers/net/mvneta.c
/openbmc/u-boot/drivers/pci/pci-uclass.c
/openbmc/u-boot/drivers/pci/pci_auto.c
/openbmc/u-boot/drivers/pci/pci_auto_common.c
/openbmc/u-boot/drivers/pci/pci_auto_old.c
/openbmc/u-boot/drivers/phy/Kconfig
/openbmc/u-boot/drivers/phy/Makefile
/openbmc/u-boot/drivers/phy/marvell/comphy.h
/openbmc/u-boot/drivers/phy/marvell/comphy_a3700.c
/openbmc/u-boot/drivers/phy/marvell/comphy_a3700.h
/openbmc/u-boot/drivers/phy/marvell/comphy_core.c
/openbmc/u-boot/drivers/phy/marvell/comphy_mux.c
/openbmc/u-boot/drivers/phy/phy-stm32-usbphyc.c
/openbmc/u-boot/drivers/pinctrl/pinctrl-uclass.c
/openbmc/u-boot/drivers/power/pmic/Kconfig
/openbmc/u-boot/drivers/power/pmic/Makefile
/openbmc/u-boot/drivers/power/pmic/i2c_pmic_emul.c
/openbmc/u-boot/drivers/power/pmic/mc34708.c
/openbmc/u-boot/drivers/power/pmic/pmic-uclass.c
/openbmc/u-boot/drivers/pwm/Kconfig
/openbmc/u-boot/drivers/pwm/Makefile
/openbmc/u-boot/drivers/pwm/sunxi_pwm.c
/openbmc/u-boot/drivers/ram/stm32_sdram.c
/openbmc/u-boot/drivers/serial/Kconfig
/openbmc/u-boot/drivers/serial/serial_arc.c
/openbmc/u-boot/drivers/serial/serial_msm.c
/openbmc/u-boot/drivers/serial/serial_stm32.c
/openbmc/u-boot/drivers/serial/serial_stm32.h
/openbmc/u-boot/drivers/spi/Kconfig
/openbmc/u-boot/drivers/spi/atcspi200_spi.c
/openbmc/u-boot/drivers/spi/mvebu_a3700_spi.c
/openbmc/u-boot/drivers/tpm/Kconfig
/openbmc/u-boot/drivers/tpm/Makefile
/openbmc/u-boot/drivers/tpm/tpm-uclass.c
/openbmc/u-boot/drivers/tpm/tpm2_tis_sandbox.c
/openbmc/u-boot/drivers/tpm/tpm2_tis_spi.c
/openbmc/u-boot/drivers/tpm/tpm_atmel_twi.c
/openbmc/u-boot/drivers/tpm/tpm_tis.h
/openbmc/u-boot/drivers/tpm/tpm_tis_infineon.c
/openbmc/u-boot/drivers/tpm/tpm_tis_lpc.c
/openbmc/u-boot/drivers/tpm/tpm_tis_sandbox.c
/openbmc/u-boot/drivers/tpm/tpm_tis_st33zp24_i2c.c
/openbmc/u-boot/drivers/tpm/tpm_tis_st33zp24_spi.c
/openbmc/u-boot/drivers/usb/common/common.c
/openbmc/u-boot/drivers/usb/dwc3/Kconfig
/openbmc/u-boot/drivers/usb/dwc3/Makefile
/openbmc/u-boot/drivers/usb/dwc3/core.c
/openbmc/u-boot/drivers/usb/dwc3/core.h
/openbmc/u-boot/drivers/usb/dwc3/dwc3-generic.c
/openbmc/u-boot/drivers/usb/dwc3/dwc3-omap.c
/openbmc/u-boot/drivers/usb/dwc3/gadget.c
/openbmc/u-boot/drivers/usb/dwc3/linux-compat.h
/openbmc/u-boot/drivers/usb/dwc3/ti_usb_phy.c
/openbmc/u-boot/drivers/usb/gadget/composite.c
/openbmc/u-boot/drivers/usb/gadget/f_mass_storage.c
/openbmc/u-boot/drivers/usb/gadget/f_thor.c
/openbmc/u-boot/drivers/usb/gadget/f_thor.h
/openbmc/u-boot/drivers/usb/host/Kconfig
/openbmc/u-boot/drivers/usb/host/xhci-zynqmp.c
/openbmc/u-boot/drivers/video/dw_hdmi.c
/openbmc/u-boot/drivers/video/sunxi/sunxi_dw_hdmi.c
/openbmc/u-boot/drivers/watchdog/Kconfig
/openbmc/u-boot/drivers/watchdog/Makefile
/openbmc/u-boot/drivers/watchdog/armada-37xx-wdt.c
/openbmc/u-boot/fs/ext4/ext4fs.c
/openbmc/u-boot/include/config_distro_bootcmd.h
/openbmc/u-boot/include/config_phylib_all_drivers.h
/openbmc/u-boot/include/configs/10m50_devboard.h
/openbmc/u-boot/include/configs/3c120_devboard.h
/openbmc/u-boot/include/configs/MPC8548CDS.h
/openbmc/u-boot/include/configs/advantech_dms-ba16.h
/openbmc/u-boot/include/configs/apalis_imx6.h
/openbmc/u-boot/include/configs/at91-sama5_common.h
/openbmc/u-boot/include/configs/at91sam9260ek.h
/openbmc/u-boot/include/configs/at91sam9261ek.h
/openbmc/u-boot/include/configs/at91sam9263ek.h
/openbmc/u-boot/include/configs/at91sam9m10g45ek.h
/openbmc/u-boot/include/configs/at91sam9n12ek.h
/openbmc/u-boot/include/configs/at91sam9rlek.h
/openbmc/u-boot/include/configs/at91sam9x5ek.h
/openbmc/u-boot/include/configs/ax25-ae350.h
/openbmc/u-boot/include/configs/blanche.h
/openbmc/u-boot/include/configs/clearfog.h
/openbmc/u-boot/include/configs/colibri_imx6.h
/openbmc/u-boot/include/configs/controlcenterdc.h
/openbmc/u-boot/include/configs/db-88f6720.h
/openbmc/u-boot/include/configs/db-88f6820-amc.h
/openbmc/u-boot/include/configs/db-88f6820-gp.h
/openbmc/u-boot/include/configs/db-mv784mp-gp.h
/openbmc/u-boot/include/configs/devkit8000.h
/openbmc/u-boot/include/configs/dh_imx6.h
/openbmc/u-boot/include/configs/ds414.h
/openbmc/u-boot/include/configs/edminiv2.h
/openbmc/u-boot/include/configs/ge_bx50v3.h
/openbmc/u-boot/include/configs/gw_ventana.h
/openbmc/u-boot/include/configs/imx6dl-mamoj.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_imx53.h
/openbmc/u-boot/include/configs/kp_imx6q_tpc.h
/openbmc/u-boot/include/configs/maxbcm.h
/openbmc/u-boot/include/configs/mvebu_armada-37xx.h
/openbmc/u-boot/include/configs/mx31pdk.h
/openbmc/u-boot/include/configs/mx53ppd.h
/openbmc/u-boot/include/configs/mx6_common.h
/openbmc/u-boot/include/configs/mx7_common.h
/openbmc/u-boot/include/configs/nitrogen6x.h
/openbmc/u-boot/include/configs/nsim.h
/openbmc/u-boot/include/configs/rockchip-common.h
/openbmc/u-boot/include/configs/rpi.h
/openbmc/u-boot/include/configs/sama5d2_xplained.h
/openbmc/u-boot/include/configs/socfpga_common.h
/openbmc/u-boot/include/configs/socfpga_sr1500.h
/openbmc/u-boot/include/configs/stm32f429-discovery.h
/openbmc/u-boot/include/configs/theadorable.h
/openbmc/u-boot/include/configs/ti_armv7_keystone2.h
/openbmc/u-boot/include/configs/turris_mox.h
/openbmc/u-boot/include/configs/turris_omnia.h
/openbmc/u-boot/include/configs/uniphier.h
/openbmc/u-boot/include/configs/vining_2000.h
/openbmc/u-boot/include/configs/xilinx_zynqmp_zc1751_xm015_dc1.h
/openbmc/u-boot/include/configs/xilinx_zynqmp_zc1751_xm016_dc2.h
/openbmc/u-boot/include/configs/xilinx_zynqmp_zc1751_xm017_dc3.h
/openbmc/u-boot/include/configs/xilinx_zynqmp_zcu100.h
/openbmc/u-boot/include/configs/xilinx_zynqmp_zcu102.h
/openbmc/u-boot/include/configs/xilinx_zynqmp_zcu104.h
/openbmc/u-boot/include/configs/xilinx_zynqmp_zcu106.h
/openbmc/u-boot/include/configs/xilinx_zynqmp_zcu111.h
/openbmc/u-boot/include/dt-bindings/pinctrl/pinctrl-snapdragon.h
/openbmc/u-boot/include/efi_loader.h
/openbmc/u-boot/include/fdtdec.h
/openbmc/u-boot/include/fsl_pmic.h
/openbmc/u-boot/include/image.h
/openbmc/u-boot/include/linux/usb/otg.h
/openbmc/u-boot/include/netdev.h
/openbmc/u-boot/include/pci.h
/openbmc/u-boot/include/power/pmic.h
/openbmc/u-boot/include/serial.h
/openbmc/u-boot/include/tpm-common.h
/openbmc/u-boot/include/tpm-v1.h
/openbmc/u-boot/include/tpm-v2.h
/openbmc/u-boot/lib/Makefile
/openbmc/u-boot/lib/efi_loader/Kconfig
/openbmc/u-boot/lib/efi_loader/efi_image_loader.c
/openbmc/u-boot/lib/efi_loader/efi_runtime.c
/openbmc/u-boot/lib/fdtdec.c
/openbmc/u-boot/lib/tpm-common.c
/openbmc/u-boot/lib/tpm-utils.h
/openbmc/u-boot/lib/tpm-v1.c
/openbmc/u-boot/lib/tpm-v2.c
/openbmc/u-boot/net/bootp.c
/openbmc/u-boot/scripts/config_whitelist.txt
/openbmc/u-boot/scripts/decodecode
/openbmc/u-boot/scripts/dtc/pylibfdt/Makefile
/openbmc/u-boot/test/dm/pmic.c
/openbmc/u-boot/test/fs/fs-test.sh
/openbmc/u-boot/test/py/tests/test_tpm2.py
/openbmc/u-boot/tools/buildman/builderthread.py
/openbmc/u-boot/tools/buildman/control.py
/openbmc/u-boot/tools/buildman/func_test.py
/openbmc/u-boot/tools/buildman/toolchain.py

12345678910>>...66