History log of /openbmc/u-boot/test/ (Results 101 – 125 of 647)
Revision Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
cdd140af01-Oct-2018 Simon Glass <sjg@chromium.org>

log: Add helpers for common log levels

At present to output a log message you need something like:

log(UCLASS_SPI, LOCL_INFO, "message1");
log(UCLASS_SPI, LOCL_INFO, "message2");

but many fi

log: Add helpers for common log levels

At present to output a log message you need something like:

log(UCLASS_SPI, LOCL_INFO, "message1");
log(UCLASS_SPI, LOCL_INFO, "message2");

but many files use the same category throughout. Also it is helpful to
shorten the length of log names, providing helpers for common logging
levels. Add some macros so that it is possible to do:

(top of file, before #includes)
#define LOG_CATEGORY UCLASS_SPI

(later in the file)
log_info("message1");
log_debug("message2");
log_err("message3");

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

show more ...

11ae93ee01-Oct-2018 Simon Glass <sjg@chromium.org>

binman: Run tests concurrently

At present the tests run one after the other using a single CPU. This is
not very efficient. Bring in the concurrencytest module and run the tests
concurrently, using

binman: Run tests concurrently

At present the tests run one after the other using a single CPU. This is
not very efficient. Bring in the concurrencytest module and run the tests
concurrently, using one process for each CPU by default. A -P option
allows this to be overridden, which is necessary for code-coverage to
function correctly.

This requires fixing a few tests which are currently not fully
independent.

At some point we might consider doing this across all pytests in U-Boot.
There is a pytest version that supports specifying the number of processes
to use, but it did not work for me.

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

show more ...

2673afe201-Oct-2018 Simon Glass <sjg@chromium.org>

test: Reduce the number of tests run with sandbox_flattree

We only need to run driver-model tests with this config, since this is the
only thing that is different when CONFIG_OF_LIVE is not defined.

test: Reduce the number of tests run with sandbox_flattree

We only need to run driver-model tests with this config, since this is the
only thing that is different when CONFIG_OF_LIVE is not defined. Filter
out the other tests to same time.

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

show more ...

3bc11e8101-Oct-2018 Simon Glass <sjg@chromium.org>

test: Tidy up comments and variable name

The 'result' variable counts the number of failures in running the tests.
Rename it to 'failures' to make this more obvious. Also tidy up a few
comments.

Si

test: Tidy up comments and variable name

The 'result' variable counts the number of failures in running the tests.
Rename it to 'failures' to make this more obvious. Also tidy up a few
comments.

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

show more ...

c9adb35501-Oct-2018 Simon Glass <sjg@chromium.org>

test: Print the name of each test before running it

At present the tests are run without any indication of what is running.
For the tests which start with a build this is pretty obvious, but for
too

test: Print the name of each test before running it

At present the tests are run without any indication of what is running.
For the tests which start with a build this is pretty obvious, but for
tools it is not.

Add a name for each test we run, and print it before starting the test.
Signed-off-by: Simon Glass <sjg@chromium.org>

show more ...

734f3de901-Oct-2018 Simon Glass <sjg@chromium.org>

test: Simplify the PATH setup

Use 'export' to avoid repeating the path setup for each command.

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

87b05ee301-Oct-2018 Simon Glass <sjg@chromium.org>

test/py: Fix unicode handling for log filtering

At present the unicode filtering seems to get confused at times with
this error:

UnicodeDecodeError: 'ascii' codec can't decode byte 0x80 in positi

test/py: Fix unicode handling for log filtering

At present the unicode filtering seems to get confused at times with
this error:

UnicodeDecodeError: 'ascii' codec can't decode byte 0x80 in position
32: ordinal not in range(128)

It seems to be due to self._nonprint being interpreted as UTF-8. Fix it
by using ordinals instead of characters, changing the string to set.

Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Stephen Warren <swarren@nvidia.com>
Tested-by: Michal Simek <michal.simek@xilinx.com>

show more ...

9f8037ea01-Oct-2018 Simon Glass <sjg@chromium.org>

sandbox: Unprotect DATA regions in bus tests

On my Ubuntu 18.04.1 machine two driver-model bus tests have started
failing recently. The problem appears to be that the DATA region of the
executable i

sandbox: Unprotect DATA regions in bus tests

On my Ubuntu 18.04.1 machine two driver-model bus tests have started
failing recently. The problem appears to be that the DATA region of the
executable is protected. This does not seem correct, but perhaps there
is a reason.

To work around it, unprotect the regions in these tests before accessing
them.

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

show more ...

07cbae7625-Sep-2018 Jens Wiklander <jens.wiklander@linaro.org>

test_avb: Update pymark.buildconfigspec information for the AVB tests

Update the pymark.buildconfigspec to depend on 'cmd_mmc' in addition to
'cmd_avb' for those tests that needs more a more complet

test_avb: Update pymark.buildconfigspec information for the AVB tests

Update the pymark.buildconfigspec to depend on 'cmd_mmc' in addition to
'cmd_avb' for those tests that needs more a more complete MMC
implementation or the "mmc" command.

Reviewed-by: Simon Glass <sjg@chromium.org>
Signed-off-by: Jens Wiklander <jens.wiklander@linaro.org>

show more ...

a6ab424525-Sep-2018 Jens Wiklander <jens.wiklander@linaro.org>

test: tee: test TEE uclass

Tests the TEE uclass with a sandbox tee driver.

Reviewed-by: Simon Glass <sjg@chromium.org>
Signed-off-by: Jens Wiklander <jens.wiklander@linaro.org>
[trini: initialize s

test: tee: test TEE uclass

Tests the TEE uclass with a sandbox tee driver.

Reviewed-by: Simon Glass <sjg@chromium.org>
Signed-off-by: Jens Wiklander <jens.wiklander@linaro.org>
[trini: initialize session to 0 in dm_test_tee]
Signed-off-by: Tom Rini <trini@konsulko.com>

show more ...


/openbmc/u-boot/MAINTAINERS
/openbmc/u-boot/arch/Kconfig
/openbmc/u-boot/arch/arm/dts/hi6220-hikey.dts
/openbmc/u-boot/arch/arm/dts/logicpd-som-lv-35xx-devkit-u-boot.dtsi
/openbmc/u-boot/arch/arm/dts/logicpd-som-lv-35xx-devkit.dts
/openbmc/u-boot/arch/arm/dts/logicpd-som-lv-37xx-devkit-u-boot.dtsi
/openbmc/u-boot/arch/arm/dts/logicpd-som-lv-37xx-devkit.dts
/openbmc/u-boot/arch/arm/dts/logicpd-som-lv.dtsi
/openbmc/u-boot/arch/arm/dts/logicpd-torpedo-35xx-devkit-u-boot.dtsi
/openbmc/u-boot/arch/arm/dts/logicpd-torpedo-35xx-devkit.dts
/openbmc/u-boot/arch/arm/dts/logicpd-torpedo-37xx-devkit-u-boot.dtsi
/openbmc/u-boot/arch/arm/dts/logicpd-torpedo-37xx-devkit.dts
/openbmc/u-boot/arch/arm/mach-stm32/soc.c
/openbmc/u-boot/arch/sandbox/dts/sandbox.dts
/openbmc/u-boot/arch/sandbox/dts/sandbox64.dts
/openbmc/u-boot/arch/sandbox/dts/test.dts
/openbmc/u-boot/board/logicpd/omap3som/MAINTAINERS
/openbmc/u-boot/board/logicpd/omap3som/README
/openbmc/u-boot/board/logicpd/omap3som/omap3logic.c
/openbmc/u-boot/cmd/avb.c
/openbmc/u-boot/common/board_r.c
/openbmc/u-boot/common/spl/spl_ram.c
/openbmc/u-boot/common/spl/spl_spi.c
/openbmc/u-boot/configs/omap35_logic_defconfig
/openbmc/u-boot/configs/omap35_logic_somlv_defconfig
/openbmc/u-boot/configs/omap3_logic_somlv_defconfig
/openbmc/u-boot/doc/README.tee
/openbmc/u-boot/doc/device-tree-bindings/firmware/linaro,optee-tz.txt
/openbmc/u-boot/drivers/Kconfig
/openbmc/u-boot/drivers/Makefile
/openbmc/u-boot/drivers/core/root.c
/openbmc/u-boot/drivers/misc/Kconfig
/openbmc/u-boot/drivers/misc/Makefile
/openbmc/u-boot/drivers/misc/vexpress_config.c
/openbmc/u-boot/drivers/mmc/rpmb.c
/openbmc/u-boot/drivers/tee/Kconfig
/openbmc/u-boot/drivers/tee/Makefile
/openbmc/u-boot/drivers/tee/optee/Kconfig
/openbmc/u-boot/drivers/tee/optee/Makefile
/openbmc/u-boot/drivers/tee/optee/core.c
/openbmc/u-boot/drivers/tee/optee/optee_msg.h
/openbmc/u-boot/drivers/tee/optee/optee_msg_supplicant.h
/openbmc/u-boot/drivers/tee/optee/optee_private.h
/openbmc/u-boot/drivers/tee/optee/optee_smc.h
/openbmc/u-boot/drivers/tee/optee/rpmb.c
/openbmc/u-boot/drivers/tee/optee/supplicant.c
/openbmc/u-boot/drivers/tee/sandbox.c
/openbmc/u-boot/drivers/tee/tee-uclass.c
/openbmc/u-boot/fs/fat/fat_write.c
/openbmc/u-boot/include/configs/B4860QDS.h
/openbmc/u-boot/include/configs/BSC9131RDB.h
/openbmc/u-boot/include/configs/BSC9132QDS.h
/openbmc/u-boot/include/configs/C29XPCIE.h
/openbmc/u-boot/include/configs/MPC8536DS.h
/openbmc/u-boot/include/configs/P1010RDB.h
/openbmc/u-boot/include/configs/P2041RDB.h
/openbmc/u-boot/include/configs/T102xQDS.h
/openbmc/u-boot/include/configs/T102xRDB.h
/openbmc/u-boot/include/configs/T1040QDS.h
/openbmc/u-boot/include/configs/T104xRDB.h
/openbmc/u-boot/include/configs/T208xQDS.h
/openbmc/u-boot/include/configs/T208xRDB.h
/openbmc/u-boot/include/configs/T4240QDS.h
/openbmc/u-boot/include/configs/T4240RDB.h
/openbmc/u-boot/include/configs/UCP1020.h
/openbmc/u-boot/include/configs/controlcenterd.h
/openbmc/u-boot/include/configs/corenet_ds.h
/openbmc/u-boot/include/configs/cyrus.h
/openbmc/u-boot/include/configs/km/kmp204x-common.h
/openbmc/u-boot/include/configs/omap3_logic.h
/openbmc/u-boot/include/configs/p1_twr.h
/openbmc/u-boot/include/dm/uclass-id.h
/openbmc/u-boot/include/mmc.h
/openbmc/u-boot/include/sandboxtee.h
/openbmc/u-boot/include/tee.h
/openbmc/u-boot/include/tee/optee_ta_avb.h
/openbmc/u-boot/scripts/config_whitelist.txt
dm/Makefile
dm/tee.c
c906f37227-Sep-2018 Akashi Takahiro <takahiro.akashi@linaro.org>

test/py: test_fs: add docstring comments to helper functions

After Siomon's comment, add a descriptive comment (docstring) to each of
helper functions in conftest.py. No functionality changed.

Sign

test/py: test_fs: add docstring comments to helper functions

After Siomon's comment, add a descriptive comment (docstring) to each of
helper functions in conftest.py. No functionality changed.

Signed-off-by: Akashi Takahiro <takahiro.akashi@linaro.org>
Reviewed-by: Simon Glass <sjg@chromium.org>

show more ...

e4040df527-Sep-2018 Akashi Takahiro <takahiro.akashi@linaro.org>

test/py: test_fs: remove fs_type argument from umount_fs()

Since there is no use of fs_type in umount_fs(), just remove it.

Signed-off-by: Akashi Takahiro <takahiro.akashi@linaro.org>
Reviewed-by:

test/py: test_fs: remove fs_type argument from umount_fs()

Since there is no use of fs_type in umount_fs(), just remove it.

Signed-off-by: Akashi Takahiro <takahiro.akashi@linaro.org>
Reviewed-by: Simon Glass <sjg@chromium.org>

show more ...

dddea0d020-Sep-2018 Stephen Warren <swarren@nvidia.com>

test/py: ignore console read exceptions after test failure

After a test has failed, test/py drains the U-Boot console log to ensure
that any relevant output is captured. At this point, we don't care

test/py: ignore console read exceptions after test failure

After a test has failed, test/py drains the U-Boot console log to ensure
that any relevant output is captured. At this point, we don't care about
detecting any additional errors, since the test is already known to have
failed, and U-Boot will be restarted. To ensure that the test cleanup code
is not interrupted, and can correctly terminate the log sections for the
failed test, ignore any exception that occurs while reading the U-Boot
console output during this limited period of time.

Signed-off-by: Stephen Warren <swarren@nvidia.com>

show more ...


/openbmc/u-boot/MAINTAINERS
/openbmc/u-boot/Makefile
/openbmc/u-boot/README
/openbmc/u-boot/arch/Kconfig
/openbmc/u-boot/arch/arc/Kconfig
/openbmc/u-boot/arch/arc/config.mk
/openbmc/u-boot/arch/arc/dts/Makefile
/openbmc/u-boot/arch/arc/dts/abilis_tb100.dts
/openbmc/u-boot/arch/arc/dts/axs101.dts
/openbmc/u-boot/arch/arc/dts/axs103.dts
/openbmc/u-boot/arch/arc/dts/emdk.dts
/openbmc/u-boot/arch/arc/dts/hsdk.dts
/openbmc/u-boot/arch/arc/dts/iot_devkit.dts
/openbmc/u-boot/arch/arc/dts/nsim.dts
/openbmc/u-boot/arch/arc/lib/cpu.c
/openbmc/u-boot/arch/arm/dts/r8a7791-porter.dts
/openbmc/u-boot/arch/arm/dts/rk3188-radxarock-u-boot.dtsi
/openbmc/u-boot/arch/arm/dts/rk3188-radxarock.dts
/openbmc/u-boot/arch/arm/mach-rmobile/Kconfig
/openbmc/u-boot/arch/arm/mach-rmobile/memmap-gen3.c
/openbmc/u-boot/arch/arm/mach-rockchip/fit_spl_optee.its
/openbmc/u-boot/arch/arm/mach-rockchip/make_fit_atf.py
/openbmc/u-boot/arch/arm/mach-socfpga/include/mach/reset_manager_s10.h
/openbmc/u-boot/arch/arm/mach-socfpga/misc_s10.c
/openbmc/u-boot/arch/arm/mach-socfpga/reset_manager_s10.c
/openbmc/u-boot/arch/arm/mach-uniphier/board_late_init.c
/openbmc/u-boot/arch/riscv/Kconfig
/openbmc/u-boot/arch/riscv/Makefile
/openbmc/u-boot/arch/riscv/config.mk
/openbmc/u-boot/arch/riscv/cpu/Makefile
/openbmc/u-boot/arch/riscv/cpu/ax25/Makefile
/openbmc/u-boot/arch/riscv/cpu/ax25/cpu.c
/openbmc/u-boot/arch/riscv/cpu/cpu.c
/openbmc/u-boot/arch/riscv/cpu/qemu/Makefile
/openbmc/u-boot/arch/riscv/cpu/qemu/cpu.c
/openbmc/u-boot/arch/riscv/cpu/qemu/dram.c
/openbmc/u-boot/arch/riscv/cpu/start.S
/openbmc/u-boot/arch/riscv/cpu/u-boot.lds
/openbmc/u-boot/arch/riscv/dts/ae350.dts
/openbmc/u-boot/arch/riscv/include/asm/csr.h
/openbmc/u-boot/arch/riscv/include/asm/encoding.h
/openbmc/u-boot/arch/riscv/include/asm/u-boot.h
/openbmc/u-boot/arch/riscv/lib/Makefile
/openbmc/u-boot/arch/riscv/lib/bootm.c
/openbmc/u-boot/arch/riscv/lib/reset.c
/openbmc/u-boot/board/AndesTech/ax25-ae350/ax25-ae350.c
/openbmc/u-boot/board/atmel/at91sam9m10g45ek/MAINTAINERS
/openbmc/u-boot/board/atmel/at91sam9n12ek/MAINTAINERS
/openbmc/u-boot/board/atmel/at91sam9x5ek/MAINTAINERS
/openbmc/u-boot/board/atmel/sama5d27_som1_ek/MAINTAINERS
/openbmc/u-boot/board/atmel/sama5d2_ptc_ek/MAINTAINERS
/openbmc/u-boot/board/atmel/sama5d2_xplained/MAINTAINERS
/openbmc/u-boot/board/atmel/sama5d3_xplained/MAINTAINERS
/openbmc/u-boot/board/atmel/sama5d3xek/MAINTAINERS
/openbmc/u-boot/board/atmel/sama5d4_xplained/MAINTAINERS
/openbmc/u-boot/board/atmel/sama5d4ek/MAINTAINERS
/openbmc/u-boot/board/emulation/qemu-riscv/Kconfig
/openbmc/u-boot/board/emulation/qemu-riscv/MAINTAINERS
/openbmc/u-boot/board/emulation/qemu-riscv/Makefile
/openbmc/u-boot/board/emulation/qemu-riscv/qemu-riscv.c
/openbmc/u-boot/board/synopsys/iot_devkit/Kconfig
/openbmc/u-boot/board/synopsys/iot_devkit/MAINTAINERS
/openbmc/u-boot/board/synopsys/iot_devkit/Makefile
/openbmc/u-boot/board/synopsys/iot_devkit/config.mk
/openbmc/u-boot/board/synopsys/iot_devkit/iot_devkit.c
/openbmc/u-boot/board/synopsys/iot_devkit/u-boot.lds
/openbmc/u-boot/cmd/Kconfig
/openbmc/u-boot/cmd/Makefile
/openbmc/u-boot/cmd/bdinfo.c
/openbmc/u-boot/cmd/mtd.c
/openbmc/u-boot/cmd/mtdparts.c
/openbmc/u-boot/cmd/ubi.c
/openbmc/u-boot/common/Kconfig
/openbmc/u-boot/common/spl/Kconfig
/openbmc/u-boot/common/spl/Makefile
/openbmc/u-boot/common/spl/spl.c
/openbmc/u-boot/common/spl/spl_optee.S
/openbmc/u-boot/common/spl/spl_spi.c
/openbmc/u-boot/configs/ax25-ae350_defconfig
/openbmc/u-boot/configs/iot_devkit_defconfig
/openbmc/u-boot/configs/ls1012afrwy_qspi_SECURE_BOOT_defconfig
/openbmc/u-boot/configs/ls1012afrwy_qspi_defconfig
/openbmc/u-boot/configs/qemu-riscv32_defconfig
/openbmc/u-boot/configs/qemu-riscv64_defconfig
/openbmc/u-boot/doc/README.SPL
/openbmc/u-boot/doc/README.arm-relocation
/openbmc/u-boot/doc/README.nand
/openbmc/u-boot/doc/README.qemu-riscv
/openbmc/u-boot/doc/README.zynq
/openbmc/u-boot/doc/device-tree-bindings/mtd/spi-nand.txt
/openbmc/u-boot/drivers/Makefile
/openbmc/u-boot/drivers/gpio/dwapb_gpio.c
/openbmc/u-boot/drivers/i2c/i2c-versatile.c
/openbmc/u-boot/drivers/mmc/dw_mmc.c
/openbmc/u-boot/drivers/mmc/rockchip_dw_mmc.c
/openbmc/u-boot/drivers/mtd/Kconfig
/openbmc/u-boot/drivers/mtd/Makefile
/openbmc/u-boot/drivers/mtd/mtd-uclass.c
/openbmc/u-boot/drivers/mtd/mtd_uboot.c
/openbmc/u-boot/drivers/mtd/mtdcore.c
/openbmc/u-boot/drivers/mtd/mtdcore.h
/openbmc/u-boot/drivers/mtd/mtdpart.c
/openbmc/u-boot/drivers/mtd/nand/Kconfig
/openbmc/u-boot/drivers/mtd/nand/Makefile
/openbmc/u-boot/drivers/mtd/nand/bbt.c
/openbmc/u-boot/drivers/mtd/nand/core.c
/openbmc/u-boot/drivers/mtd/nand/raw/Kconfig
/openbmc/u-boot/drivers/mtd/nand/raw/Makefile
/openbmc/u-boot/drivers/mtd/nand/raw/am335x_spl_bch.c
/openbmc/u-boot/drivers/mtd/nand/raw/arasan_nfc.c
/openbmc/u-boot/drivers/mtd/nand/raw/atmel_nand.c
/openbmc/u-boot/drivers/mtd/nand/raw/atmel_nand_ecc.h
/openbmc/u-boot/drivers/mtd/nand/raw/davinci_nand.c
/openbmc/u-boot/drivers/mtd/nand/raw/denali.c
/openbmc/u-boot/drivers/mtd/nand/raw/denali.h
/openbmc/u-boot/drivers/mtd/nand/raw/denali_dt.c
/openbmc/u-boot/drivers/mtd/nand/raw/denali_spl.c
/openbmc/u-boot/drivers/mtd/nand/raw/fsl_elbc_nand.c
/openbmc/u-boot/drivers/mtd/nand/raw/fsl_elbc_spl.c
/openbmc/u-boot/drivers/mtd/nand/raw/fsl_ifc_nand.c
/openbmc/u-boot/drivers/mtd/nand/raw/fsl_ifc_spl.c
/openbmc/u-boot/drivers/mtd/nand/raw/fsl_upm.c
/openbmc/u-boot/drivers/mtd/nand/raw/fsmc_nand.c
/openbmc/u-boot/drivers/mtd/nand/raw/kb9202_nand.c
/openbmc/u-boot/drivers/mtd/nand/raw/kirkwood_nand.c
/openbmc/u-boot/drivers/mtd/nand/raw/kmeter1_nand.c
/openbmc/u-boot/drivers/mtd/nand/raw/lpc32xx_nand_mlc.c
/openbmc/u-boot/drivers/mtd/nand/raw/lpc32xx_nand_slc.c
/openbmc/u-boot/drivers/mtd/nand/raw/mxc_nand.c
/openbmc/u-boot/drivers/mtd/nand/raw/mxc_nand.h
/openbmc/u-boot/drivers/mtd/nand/raw/mxc_nand_spl.c
/openbmc/u-boot/drivers/mtd/nand/raw/mxs_nand.c
/openbmc/u-boot/drivers/mtd/nand/raw/mxs_nand.h
/openbmc/u-boot/drivers/mtd/nand/raw/mxs_nand_dt.c
/openbmc/u-boot/drivers/mtd/nand/raw/mxs_nand_spl.c
/openbmc/u-boot/drivers/mtd/nand/raw/nand.c
/openbmc/u-boot/drivers/mtd/nand/raw/nand_base.c
/openbmc/u-boot/drivers/mtd/nand/raw/nand_bbt.c
/openbmc/u-boot/drivers/mtd/nand/raw/nand_bch.c
/openbmc/u-boot/drivers/mtd/nand/raw/nand_ecc.c
/openbmc/u-boot/drivers/mtd/nand/raw/nand_ids.c
/openbmc/u-boot/drivers/mtd/nand/raw/nand_plat.c
/openbmc/u-boot/drivers/mtd/nand/raw/nand_spl_load.c
/openbmc/u-boot/drivers/mtd/nand/raw/nand_spl_loaders.c
/openbmc/u-boot/drivers/mtd/nand/raw/nand_spl_simple.c
/openbmc/u-boot/drivers/mtd/nand/raw/nand_timings.c
/openbmc/u-boot/drivers/mtd/nand/raw/nand_util.c
/openbmc/u-boot/drivers/mtd/nand/raw/omap_elm.c
/openbmc/u-boot/drivers/mtd/nand/raw/omap_gpmc.c
/openbmc/u-boot/drivers/mtd/nand/raw/pxa3xx_nand.c
/openbmc/u-boot/drivers/mtd/nand/raw/pxa3xx_nand.h
/openbmc/u-boot/drivers/mtd/nand/raw/sunxi_nand.c
/openbmc/u-boot/drivers/mtd/nand/raw/sunxi_nand_spl.c
/openbmc/u-boot/drivers/mtd/nand/raw/tegra_nand.c
/openbmc/u-boot/drivers/mtd/nand/raw/tegra_nand.h
/openbmc/u-boot/drivers/mtd/nand/raw/vf610_nfc.c
/openbmc/u-boot/drivers/mtd/nand/raw/zynq_nand.c
/openbmc/u-boot/drivers/mtd/nand/spi/Kconfig
/openbmc/u-boot/drivers/mtd/nand/spi/Makefile
/openbmc/u-boot/drivers/mtd/nand/spi/core.c
/openbmc/u-boot/drivers/mtd/nand/spi/gigadevice.c
/openbmc/u-boot/drivers/mtd/nand/spi/macronix.c
/openbmc/u-boot/drivers/mtd/nand/spi/micron.c
/openbmc/u-boot/drivers/mtd/nand/spi/winbond.c
/openbmc/u-boot/drivers/mtd/onenand/onenand_base.c
/openbmc/u-boot/drivers/mtd/spi/Kconfig
/openbmc/u-boot/drivers/mtd/spi/spi_flash_ids.c
/openbmc/u-boot/drivers/net/gmac_rockchip.c
/openbmc/u-boot/drivers/phy/Kconfig
/openbmc/u-boot/drivers/phy/Makefile
/openbmc/u-boot/drivers/phy/phy-rcar-gen3.c
/openbmc/u-boot/drivers/spi/Kconfig
/openbmc/u-boot/drivers/spi/Makefile
/openbmc/u-boot/drivers/spi/designware_spi.c
/openbmc/u-boot/drivers/spi/fsl_qspi.c
/openbmc/u-boot/drivers/spi/mt7621_spi.c
/openbmc/u-boot/drivers/spi/sh_qspi.c
/openbmc/u-boot/drivers/spi/spi-mem.c
/openbmc/u-boot/include/configs/MPC8313ERDB.h
/openbmc/u-boot/include/configs/iot_devkit.h
/openbmc/u-boot/include/configs/qemu-riscv.h
/openbmc/u-boot/include/configs/rcar-gen2-common.h
/openbmc/u-boot/include/dwmmc.h
/openbmc/u-boot/include/jffs2/load_kernel.h
/openbmc/u-boot/include/linux/mtd/mtd.h
/openbmc/u-boot/include/linux/mtd/nand.h
/openbmc/u-boot/include/linux/mtd/partitions.h
/openbmc/u-boot/include/linux/mtd/spinand.h
/openbmc/u-boot/include/mtd.h
/openbmc/u-boot/include/spi-mem.h
/openbmc/u-boot/include/spi.h
/openbmc/u-boot/include/spl.h
/openbmc/u-boot/lib/strto.c
py/u_boot_console_base.py
/openbmc/u-boot/tools/rkimage.c
/openbmc/u-boot/tools/socfpgaimage.c
d24c1d0f30-Sep-2018 Tom Rini <trini@konsulko.com>

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


/openbmc/u-boot/.travis.yml
/openbmc/u-boot/Documentation/devicetree/bindings/board/gdsys,board_gazerbeam.txt
/openbmc/u-boot/MAINTAINERS
/openbmc/u-boot/Makefile
/openbmc/u-boot/arch/Kconfig
/openbmc/u-boot/arch/arm/cpu/armv7/ls102xa/Makefile
/openbmc/u-boot/arch/arm/cpu/armv7/ls102xa/ls102xa_psci.c
/openbmc/u-boot/arch/arm/cpu/armv8/fsl-layerscape/Makefile
/openbmc/u-boot/arch/arm/cpu/armv8/fsl-layerscape/fsl_lsch3_speed.c
/openbmc/u-boot/arch/arm/cpu/armv8/fsl-layerscape/ls1043_ids.c
/openbmc/u-boot/arch/arm/cpu/armv8/fsl-layerscape/ppa.c
/openbmc/u-boot/arch/arm/cpu/armv8/fsl-layerscape/soc.c
/openbmc/u-boot/arch/arm/dts/am3517-evm-u-boot.dtsi
/openbmc/u-boot/arch/arm/dts/at91-sama5d27_som1_ek.dts
/openbmc/u-boot/arch/arm/dts/at91-sama5d2_ptc_ek.dts
/openbmc/u-boot/arch/arm/dts/at91-sama5d2_xplained.dts
/openbmc/u-boot/arch/arm/dts/at91-sama5d3_xplained.dts
/openbmc/u-boot/arch/arm/dts/at91-sama5d4_xplained.dts
/openbmc/u-boot/arch/arm/dts/axp209.dtsi
/openbmc/u-boot/arch/arm/dts/dragonboard410c.dts
/openbmc/u-boot/arch/arm/dts/fsl-ls1043a-qds.dtsi
/openbmc/u-boot/arch/arm/dts/fsl-ls1043a.dtsi
/openbmc/u-boot/arch/arm/dts/fsl-ls1046a.dtsi
/openbmc/u-boot/arch/arm/dts/fsl-ls1088a.dtsi
/openbmc/u-boot/arch/arm/dts/fsl-ls2080a.dtsi
/openbmc/u-boot/arch/arm/dts/ls1021a-qds.dtsi
/openbmc/u-boot/arch/arm/dts/ls1021a-twr.dtsi
/openbmc/u-boot/arch/arm/dts/ls1021a.dtsi
/openbmc/u-boot/arch/arm/dts/omap3-beagle-u-boot.dtsi
/openbmc/u-boot/arch/arm/dts/omap3-beagle-xm-ab-u-boot.dtsi
/openbmc/u-boot/arch/arm/dts/omap3-beagle-xm-u-boot.dtsi
/openbmc/u-boot/arch/arm/dts/omap3-evm-37xx-u-boot.dtsi
/openbmc/u-boot/arch/arm/dts/omap3-evm-u-boot.dtsi
/openbmc/u-boot/arch/arm/dts/sama5d2.dtsi
/openbmc/u-boot/arch/arm/dts/sama5d3.dtsi
/openbmc/u-boot/arch/arm/dts/sama5d4.dtsi
/openbmc/u-boot/arch/arm/dts/sun4i-a10-a1000.dts
/openbmc/u-boot/arch/arm/dts/sun4i-a10-ba10-tvbox.dts
/openbmc/u-boot/arch/arm/dts/sun4i-a10-chuwi-v7-cw0825.dts
/openbmc/u-boot/arch/arm/dts/sun4i-a10-cubieboard.dts
/openbmc/u-boot/arch/arm/dts/sun4i-a10-dserve-dsrv9703c.dts
/openbmc/u-boot/arch/arm/dts/sun4i-a10-gemei-g9.dts
/openbmc/u-boot/arch/arm/dts/sun4i-a10-hackberry.dts
/openbmc/u-boot/arch/arm/dts/sun4i-a10-hyundai-a7hd.dts
/openbmc/u-boot/arch/arm/dts/sun4i-a10-inet-3f.dts
/openbmc/u-boot/arch/arm/dts/sun4i-a10-inet-3w.dts
/openbmc/u-boot/arch/arm/dts/sun4i-a10-inet1.dts
/openbmc/u-boot/arch/arm/dts/sun4i-a10-inet97fv2.dts
/openbmc/u-boot/arch/arm/dts/sun4i-a10-inet9f-rev03.dts
/openbmc/u-boot/arch/arm/dts/sun4i-a10-itead-iteaduino-plus.dts
/openbmc/u-boot/arch/arm/dts/sun4i-a10-jesurun-q5.dts
/openbmc/u-boot/arch/arm/dts/sun4i-a10-marsboard.dts
/openbmc/u-boot/arch/arm/dts/sun4i-a10-mini-xplus.dts
/openbmc/u-boot/arch/arm/dts/sun4i-a10-mk802.dts
/openbmc/u-boot/arch/arm/dts/sun4i-a10-mk802ii.dts
/openbmc/u-boot/arch/arm/dts/sun4i-a10-olinuxino-lime.dts
/openbmc/u-boot/arch/arm/dts/sun4i-a10-pcduino.dts
/openbmc/u-boot/arch/arm/dts/sun4i-a10-pcduino2.dts
/openbmc/u-boot/arch/arm/dts/sun4i-a10-pov-protab2-ips9.dts
/openbmc/u-boot/arch/arm/dts/sun4i-a10.dtsi
/openbmc/u-boot/arch/arm/dts/sun5i-a10s-auxtek-t003.dts
/openbmc/u-boot/arch/arm/dts/sun5i-a10s-auxtek-t004.dts
/openbmc/u-boot/arch/arm/dts/sun5i-a10s-mk802.dts
/openbmc/u-boot/arch/arm/dts/sun5i-a10s-olinuxino-micro.dts
/openbmc/u-boot/arch/arm/dts/sun5i-a10s-r7-tv-dongle.dts
/openbmc/u-boot/arch/arm/dts/sun5i-a10s-wobo-i5.dts
/openbmc/u-boot/arch/arm/dts/sun5i-a10s.dtsi
/openbmc/u-boot/arch/arm/dts/sun5i-a13-empire-electronix-d709.dts
/openbmc/u-boot/arch/arm/dts/sun5i-a13-hsg-h702.dts
/openbmc/u-boot/arch/arm/dts/sun5i-a13-inet-98v-rev2.dts
/openbmc/u-boot/arch/arm/dts/sun5i-a13-olinuxino-micro.dts
/openbmc/u-boot/arch/arm/dts/sun5i-a13-olinuxino.dts
/openbmc/u-boot/arch/arm/dts/sun5i-a13-utoo-p66.dts
/openbmc/u-boot/arch/arm/dts/sun5i-a13.dtsi
/openbmc/u-boot/arch/arm/dts/sun5i-gr8-chip-pro.dts
/openbmc/u-boot/arch/arm/dts/sun5i-gr8.dtsi
/openbmc/u-boot/arch/arm/dts/sun5i-r8-chip.dts
/openbmc/u-boot/arch/arm/dts/sun5i-r8.dtsi
/openbmc/u-boot/arch/arm/dts/sun5i-reference-design-tablet.dtsi
/openbmc/u-boot/arch/arm/dts/sun5i.dtsi
/openbmc/u-boot/arch/arm/dts/sun6i-a31-app4-evb1.dts
/openbmc/u-boot/arch/arm/dts/sun6i-a31-colombus.dts
/openbmc/u-boot/arch/arm/dts/sun6i-a31-hummingbird.dts
/openbmc/u-boot/arch/arm/dts/sun6i-a31-i7.dts
/openbmc/u-boot/arch/arm/dts/sun6i-a31-m9.dts
/openbmc/u-boot/arch/arm/dts/sun6i-a31-mele-a1000g-quad.dts
/openbmc/u-boot/arch/arm/dts/sun6i-a31.dtsi
/openbmc/u-boot/arch/arm/dts/sun6i-a31s-cs908.dts
/openbmc/u-boot/arch/arm/dts/sun6i-a31s-primo81.dts
/openbmc/u-boot/arch/arm/dts/sun6i-a31s-sina31s-core.dtsi
/openbmc/u-boot/arch/arm/dts/sun6i-a31s-sina31s.dts
/openbmc/u-boot/arch/arm/dts/sun6i-a31s-sinovoip-bpi-m2.dts
/openbmc/u-boot/arch/arm/dts/sun6i-a31s-yones-toptech-bs1078-v2.dts
/openbmc/u-boot/arch/arm/dts/sun6i-a31s.dtsi
/openbmc/u-boot/arch/arm/dts/sun6i-reference-design-tablet.dtsi
/openbmc/u-boot/arch/arm/dts/sun7i-a20-bananapi-m1-plus.dts
/openbmc/u-boot/arch/arm/dts/sun7i-a20-bananapi.dts
/openbmc/u-boot/arch/arm/dts/sun7i-a20-bananapro.dts
/openbmc/u-boot/arch/arm/dts/sun7i-a20-cubieboard2.dts
/openbmc/u-boot/arch/arm/dts/sun7i-a20-cubietruck.dts
/openbmc/u-boot/arch/arm/dts/sun7i-a20-hummingbird.dts
/openbmc/u-boot/arch/arm/dts/sun7i-a20-i12-tvbox.dts
/openbmc/u-boot/arch/arm/dts/sun7i-a20-icnova-swac.dts
/openbmc/u-boot/arch/arm/dts/sun7i-a20-itead-ibox.dts
/openbmc/u-boot/arch/arm/dts/sun7i-a20-lamobo-r1.dts
/openbmc/u-boot/arch/arm/dts/sun7i-a20-m3.dts
/openbmc/u-boot/arch/arm/dts/sun7i-a20-mk808c.dts
/openbmc/u-boot/arch/arm/dts/sun7i-a20-olimex-som-evb.dts
/openbmc/u-boot/arch/arm/dts/sun7i-a20-olimex-som204-evb.dts
/openbmc/u-boot/arch/arm/dts/sun7i-a20-olinuxino-lime.dts
/openbmc/u-boot/arch/arm/dts/sun7i-a20-olinuxino-lime2-emmc.dts
/openbmc/u-boot/arch/arm/dts/sun7i-a20-olinuxino-lime2.dts
/openbmc/u-boot/arch/arm/dts/sun7i-a20-olinuxino-micro.dts
/openbmc/u-boot/arch/arm/dts/sun7i-a20-orangepi-mini.dts
/openbmc/u-boot/arch/arm/dts/sun7i-a20-orangepi.dts
/openbmc/u-boot/arch/arm/dts/sun7i-a20-pcduino3-nano.dts
/openbmc/u-boot/arch/arm/dts/sun7i-a20-pcduino3.dts
/openbmc/u-boot/arch/arm/dts/sun7i-a20-primo73.dts
/openbmc/u-boot/arch/arm/dts/sun7i-a20-wexler-tab7200.dts
/openbmc/u-boot/arch/arm/dts/sun7i-a20-wits-pro-a20-dkt.dts
/openbmc/u-boot/arch/arm/dts/sun7i-a20.dtsi
/openbmc/u-boot/arch/arm/dts/sun8i-a23-a33.dtsi
/openbmc/u-boot/arch/arm/dts/sun8i-a23-evb.dts
/openbmc/u-boot/arch/arm/dts/sun8i-a23-gt90h-v4.dts
/openbmc/u-boot/arch/arm/dts/sun8i-a23-inet86dz.dts
/openbmc/u-boot/arch/arm/dts/sun8i-a23-polaroid-mid2407pxe03.dts
/openbmc/u-boot/arch/arm/dts/sun8i-a23-polaroid-mid2809pxe04.dts
/openbmc/u-boot/arch/arm/dts/sun8i-a23-q8-tablet.dts
/openbmc/u-boot/arch/arm/dts/sun8i-a23.dtsi
/openbmc/u-boot/arch/arm/dts/sun8i-a33-ga10h-v1.1.dts
/openbmc/u-boot/arch/arm/dts/sun8i-a33-inet-d978-rev2.dts
/openbmc/u-boot/arch/arm/dts/sun8i-a33-olinuxino.dts
/openbmc/u-boot/arch/arm/dts/sun8i-a33-sinlinx-sina33.dts
/openbmc/u-boot/arch/arm/dts/sun8i-a33.dtsi
/openbmc/u-boot/arch/arm/dts/sun8i-q8-common.dtsi
/openbmc/u-boot/arch/arm/dts/sun8i-r16-bananapi-m2m.dts
/openbmc/u-boot/arch/arm/dts/sun8i-r16-nintendo-nes-classic-edition.dts
/openbmc/u-boot/arch/arm/dts/sun8i-r16-parrot.dts
/openbmc/u-boot/arch/arm/dts/sun8i-reference-design-tablet.dtsi
/openbmc/u-boot/arch/arm/include/asm/arch-fsl-layerscape/config.h
/openbmc/u-boot/arch/arm/include/asm/arch-fsl-layerscape/fsl_icid.h
/openbmc/u-boot/arch/arm/include/asm/arch-fsl-layerscape/immap_lsch2.h
/openbmc/u-boot/arch/arm/include/asm/arch-fsl-layerscape/stream_id_lsch3.h
/openbmc/u-boot/arch/arm/include/asm/arch-ls102xa/immap_ls102xa.h
/openbmc/u-boot/arch/arm/include/asm/omap_mmc.h
/openbmc/u-boot/arch/arm/mach-at91/Kconfig
/openbmc/u-boot/arch/arm/mach-davinci/da850_lowlevel.c
/openbmc/u-boot/arch/arm/mach-snapdragon/Kconfig
/openbmc/u-boot/arch/powerpc/Kconfig
/openbmc/u-boot/arch/powerpc/cpu/mpc85xx/Kconfig
/openbmc/u-boot/arch/powerpc/cpu/mpc85xx/u-boot-nand.lds
/openbmc/u-boot/arch/powerpc/cpu/mpc85xx/u-boot-nand_spl.lds
/openbmc/u-boot/arch/powerpc/cpu/mpc85xx/u-boot-spl.lds
/openbmc/u-boot/arch/powerpc/cpu/mpc85xx/u-boot.lds
/openbmc/u-boot/arch/powerpc/dts/Makefile
/openbmc/u-boot/arch/powerpc/dts/e6500_power_isa.dtsi
/openbmc/u-boot/arch/powerpc/dts/t2080.dtsi
/openbmc/u-boot/arch/powerpc/dts/t2080qds.dts
/openbmc/u-boot/arch/powerpc/dts/u-boot.dtsi
/openbmc/u-boot/arch/sandbox/dts/sandbox.dts
/openbmc/u-boot/arch/sandbox/dts/test.dts
/openbmc/u-boot/board/atmel/common/board.c
/openbmc/u-boot/board/atmel/sama5d27_som1_ek/MAINTAINERS
/openbmc/u-boot/board/atmel/sama5d27_som1_ek/sama5d27_som1_ek.c
/openbmc/u-boot/board/atmel/sama5d2_ptc_ek/sama5d2_ptc_ek.c
/openbmc/u-boot/board/atmel/sama5d2_xplained/MAINTAINERS
/openbmc/u-boot/board/atmel/sama5d2_xplained/sama5d2_xplained.c
/openbmc/u-boot/board/atmel/sama5d3_xplained/sama5d3_xplained.c
/openbmc/u-boot/board/atmel/sama5d4_xplained/sama5d4_xplained.c
/openbmc/u-boot/board/freescale/ls1012afrdm/ls1012afrdm.c
/openbmc/u-boot/board/freescale/ls1021aiot/ls1021aiot.c
/openbmc/u-boot/board/freescale/ls1021aqds/ls1021aqds.c
/openbmc/u-boot/board/freescale/ls1021atwr/ls1021atwr.c
/openbmc/u-boot/board/freescale/ls1043aqds/ls1043aqds.c
/openbmc/u-boot/board/freescale/ls1043ardb/ls1043ardb.c
/openbmc/u-boot/board/freescale/ls1088a/ls1088a.c
/openbmc/u-boot/board/freescale/ls2080a/ls2080a.c
/openbmc/u-boot/board/freescale/ls2080aqds/ls2080aqds.c
/openbmc/u-boot/board/freescale/ls2080ardb/ls2080ardb.c
/openbmc/u-boot/board/freescale/t208xqds/README
/openbmc/u-boot/board/gdsys/common/Makefile
/openbmc/u-boot/board/gdsys/common/osd_cmd.c
/openbmc/u-boot/board/gdsys/mpc8308/Kconfig
/openbmc/u-boot/board/logicpd/omap3som/omap3logic.c
/openbmc/u-boot/board/logicpd/omap3som/omap3logic.h
/openbmc/u-boot/board/qualcomm/dragonboard410c/dragonboard410c.c
/openbmc/u-boot/board/sandbox/README.sandbox
/openbmc/u-boot/board/seeed/linkit-smart-7688/MAINTAINERS
/openbmc/u-boot/cmd/Kconfig
/openbmc/u-boot/cmd/Makefile
/openbmc/u-boot/cmd/clk.c
/openbmc/u-boot/cmd/elf.c
/openbmc/u-boot/cmd/nvedit.c
/openbmc/u-boot/cmd/osd.c
/openbmc/u-boot/cmd/ubi.c
/openbmc/u-boot/cmd/ubifs.c
/openbmc/u-boot/cmd/w1.c
/openbmc/u-boot/common/Kconfig
/openbmc/u-boot/common/spl/spl_mmc.c
/openbmc/u-boot/configs/T2080QDS_NAND_defconfig
/openbmc/u-boot/configs/T2080QDS_SDCARD_defconfig
/openbmc/u-boot/configs/T2080QDS_SPIFLASH_defconfig
/openbmc/u-boot/configs/T2080QDS_defconfig
/openbmc/u-boot/configs/am3517_evm_defconfig
/openbmc/u-boot/configs/da850evm_defconfig
/openbmc/u-boot/configs/da850evm_direct_nor_defconfig
/openbmc/u-boot/configs/da850evm_nand_defconfig
/openbmc/u-boot/configs/dragonboard410c_defconfig
/openbmc/u-boot/configs/ls1021atwr_nor_SECURE_BOOT_defconfig
/openbmc/u-boot/configs/ls1021atwr_nor_defconfig
/openbmc/u-boot/configs/ls1021atwr_nor_lpuart_defconfig
/openbmc/u-boot/configs/ls1021atwr_qspi_defconfig
/openbmc/u-boot/configs/ls1021atwr_sdcard_ifc_defconfig
/openbmc/u-boot/configs/ls1021atwr_sdcard_qspi_defconfig
/openbmc/u-boot/configs/ls1043aqds_defconfig
/openbmc/u-boot/configs/ls1043aqds_lpuart_defconfig
/openbmc/u-boot/configs/ls1043aqds_nand_defconfig
/openbmc/u-boot/configs/ls1043aqds_nor_ddr3_defconfig
/openbmc/u-boot/configs/ls1043aqds_qspi_defconfig
/openbmc/u-boot/configs/ls1043aqds_sdcard_ifc_defconfig
/openbmc/u-boot/configs/ls1043aqds_sdcard_qspi_defconfig
/openbmc/u-boot/configs/ls1043ardb_SECURE_BOOT_defconfig
/openbmc/u-boot/configs/ls1043ardb_defconfig
/openbmc/u-boot/configs/ls1043ardb_nand_SECURE_BOOT_defconfig
/openbmc/u-boot/configs/ls1043ardb_nand_defconfig
/openbmc/u-boot/configs/ls1043ardb_sdcard_defconfig
/openbmc/u-boot/configs/ls1046aqds_SECURE_BOOT_defconfig
/openbmc/u-boot/configs/ls1046aqds_defconfig
/openbmc/u-boot/configs/ls1046aqds_lpuart_defconfig
/openbmc/u-boot/configs/ls1046aqds_nand_defconfig
/openbmc/u-boot/configs/ls1046aqds_qspi_defconfig
/openbmc/u-boot/configs/ls1046aqds_sdcard_ifc_defconfig
/openbmc/u-boot/configs/ls1046aqds_sdcard_qspi_defconfig
/openbmc/u-boot/configs/ls1046ardb_emmc_defconfig
/openbmc/u-boot/configs/ls1046ardb_qspi_SECURE_BOOT_defconfig
/openbmc/u-boot/configs/ls1046ardb_qspi_defconfig
/openbmc/u-boot/configs/ls1046ardb_sdcard_defconfig
/openbmc/u-boot/configs/ls1088aqds_defconfig
/openbmc/u-boot/configs/ls1088aqds_qspi_SECURE_BOOT_defconfig
/openbmc/u-boot/configs/ls1088aqds_qspi_defconfig
/openbmc/u-boot/configs/ls1088aqds_sdcard_ifc_defconfig
/openbmc/u-boot/configs/ls1088aqds_sdcard_qspi_defconfig
/openbmc/u-boot/configs/ls1088ardb_qspi_SECURE_BOOT_defconfig
/openbmc/u-boot/configs/ls1088ardb_qspi_defconfig
/openbmc/u-boot/configs/ls1088ardb_sdcard_qspi_defconfig
/openbmc/u-boot/configs/ls2080a_emu_defconfig
/openbmc/u-boot/configs/ls2080a_simu_defconfig
/openbmc/u-boot/configs/ls2080aqds_SECURE_BOOT_defconfig
/openbmc/u-boot/configs/ls2080aqds_defconfig
/openbmc/u-boot/configs/ls2080aqds_nand_defconfig
/openbmc/u-boot/configs/ls2080aqds_qspi_defconfig
/openbmc/u-boot/configs/ls2080aqds_sdcard_defconfig
/openbmc/u-boot/configs/ls2080ardb_SECURE_BOOT_defconfig
/openbmc/u-boot/configs/ls2080ardb_defconfig
/openbmc/u-boot/configs/ls2080ardb_nand_defconfig
/openbmc/u-boot/configs/ls2088ardb_qspi_SECURE_BOOT_defconfig
/openbmc/u-boot/configs/ls2088ardb_qspi_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/sama5d3_xplained_mmc_defconfig
/openbmc/u-boot/configs/sama5d3_xplained_nandflash_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/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/doc/device-tree-bindings/chosen.txt
/openbmc/u-boot/doc/device-tree-bindings/misc/fs_loader.txt
/openbmc/u-boot/doc/device-tree-bindings/w1-eeprom/ds24xxx.txt
/openbmc/u-boot/doc/device-tree-bindings/w1-eeprom/eep_sandbox.txt
/openbmc/u-boot/doc/device-tree-bindings/w1/w1-gpio.txt
/openbmc/u-boot/doc/driver-model/fs_firmware_loader.txt
/openbmc/u-boot/drivers/Kconfig
/openbmc/u-boot/drivers/Makefile
/openbmc/u-boot/drivers/ata/sata_ceva.c
/openbmc/u-boot/drivers/block/blk-uclass.c
/openbmc/u-boot/drivers/board/Kconfig
/openbmc/u-boot/drivers/board/Makefile
/openbmc/u-boot/drivers/board/board-uclass.c
/openbmc/u-boot/drivers/board/gazerbeam.c
/openbmc/u-boot/drivers/board/gazerbeam.h
/openbmc/u-boot/drivers/board/sandbox.c
/openbmc/u-boot/drivers/board/sandbox.h
/openbmc/u-boot/drivers/clk/Kconfig
/openbmc/u-boot/drivers/clk/Makefile
/openbmc/u-boot/drivers/clk/clk_vexpress_osc.c
/openbmc/u-boot/drivers/core/device.c
/openbmc/u-boot/drivers/core/ofnode.c
/openbmc/u-boot/drivers/firmware/Kconfig
/openbmc/u-boot/drivers/firmware/Makefile
/openbmc/u-boot/drivers/firmware/firmware-sandbox.c
/openbmc/u-boot/drivers/firmware/firmware-uclass.c
/openbmc/u-boot/drivers/misc/Kconfig
/openbmc/u-boot/drivers/misc/Makefile
/openbmc/u-boot/drivers/misc/fs_loader.c
/openbmc/u-boot/drivers/misc/fsl_portals.c
/openbmc/u-boot/drivers/mmc/omap_hsmmc.c
/openbmc/u-boot/drivers/net/fm/fm.c
/openbmc/u-boot/drivers/net/fm/init.c
/openbmc/u-boot/drivers/net/fsl-mc/mc.c
/openbmc/u-boot/drivers/net/pfe_eth/pfe_mdio.c
/openbmc/u-boot/drivers/phy/Kconfig
/openbmc/u-boot/drivers/phy/Makefile
/openbmc/u-boot/drivers/phy/msm8916-usbh-phy.c
/openbmc/u-boot/drivers/pinctrl/pinctrl-sandbox.c
/openbmc/u-boot/drivers/qe/Kconfig
/openbmc/u-boot/drivers/qe/qe.c
/openbmc/u-boot/drivers/serial/serial_stm32.h
/openbmc/u-boot/drivers/usb/gadget/ci_udc.c
/openbmc/u-boot/drivers/usb/host/Kconfig
/openbmc/u-boot/drivers/usb/host/ehci-msm.c
/openbmc/u-boot/drivers/video/Kconfig
/openbmc/u-boot/drivers/video/Makefile
/openbmc/u-boot/drivers/video/cfb_console.c
/openbmc/u-boot/drivers/video/mali_dp.c
/openbmc/u-boot/drivers/video/tda19988.c
/openbmc/u-boot/drivers/w1-eeprom/Kconfig
/openbmc/u-boot/drivers/w1-eeprom/Makefile
/openbmc/u-boot/drivers/w1-eeprom/ds24xxx.c
/openbmc/u-boot/drivers/w1-eeprom/eep_sandbox.c
/openbmc/u-boot/drivers/w1-eeprom/w1-eeprom-uclass.c
/openbmc/u-boot/drivers/w1/Kconfig
/openbmc/u-boot/drivers/w1/Makefile
/openbmc/u-boot/drivers/w1/w1-gpio.c
/openbmc/u-boot/drivers/w1/w1-uclass.c
/openbmc/u-boot/dts/Makefile
/openbmc/u-boot/fs/btrfs/ctree.c
/openbmc/u-boot/fs/btrfs/extent-io.c
/openbmc/u-boot/fs/btrfs/super.c
/openbmc/u-boot/include/blk.h
/openbmc/u-boot/include/board.h
/openbmc/u-boot/include/clk.h
/openbmc/u-boot/include/configs/T102xQDS.h
/openbmc/u-boot/include/configs/T102xRDB.h
/openbmc/u-boot/include/configs/T1040QDS.h
/openbmc/u-boot/include/configs/da850evm.h
/openbmc/u-boot/include/configs/ls1012afrwy.h
/openbmc/u-boot/include/configs/ls1021aqds.h
/openbmc/u-boot/include/configs/ls1021atwr.h
/openbmc/u-boot/include/configs/ls1043ardb.h
/openbmc/u-boot/include/configs/ls1088ardb.h
/openbmc/u-boot/include/configs/ls2080ardb.h
/openbmc/u-boot/include/dm.h
/openbmc/u-boot/include/dm/device.h
/openbmc/u-boot/include/dm/ofnode.h
/openbmc/u-boot/include/dm/uclass-id.h
/openbmc/u-boot/include/dt-bindings/clock/sun4i-a10-ccu.h
/openbmc/u-boot/include/dt-bindings/clock/sun5i-ccu.h
/openbmc/u-boot/include/dt-bindings/clock/sun6i-a31-ccu.h
/openbmc/u-boot/include/dt-bindings/clock/sun7i-a20-ccu.h
/openbmc/u-boot/include/dt-bindings/reset/sun4i-a10-ccu.h
/openbmc/u-boot/include/dt-bindings/reset/sun5i-ccu.h
/openbmc/u-boot/include/dt-bindings/reset/sun6i-a31-ccu.h
/openbmc/u-boot/include/fs_loader.h
/openbmc/u-boot/include/fsl-mc/fsl_mc.h
/openbmc/u-boot/include/ubi_uboot.h
/openbmc/u-boot/include/video.h
/openbmc/u-boot/include/w1-eeprom.h
/openbmc/u-boot/include/w1.h
/openbmc/u-boot/lib/fdtdec.c
/openbmc/u-boot/scripts/Kbuild.include
/openbmc/u-boot/scripts/Makefile.lib
/openbmc/u-boot/scripts/config_whitelist.txt
/openbmc/u-boot/scripts/dtc/pylibfdt/libfdt.i_shipped
dm/Makefile
dm/board.c
dm/firmware.c
dm/test-fdt.c
/openbmc/u-boot/tools/binman/README
/openbmc/u-boot/tools/binman/README.entries
/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/entry.py
/openbmc/u-boot/tools/binman/entry_test.py
/openbmc/u-boot/tools/binman/etype/_testing.py
/openbmc/u-boot/tools/binman/etype/blob.py
/openbmc/u-boot/tools/binman/etype/blob_dtb.py
/openbmc/u-boot/tools/binman/etype/files.py
/openbmc/u-boot/tools/binman/etype/fill.py
/openbmc/u-boot/tools/binman/etype/fmap.py
/openbmc/u-boot/tools/binman/etype/powerpc_mpc85xx_bootpg_resetvec.py
/openbmc/u-boot/tools/binman/etype/section.py
/openbmc/u-boot/tools/binman/etype/text.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_elf.py
/openbmc/u-boot/tools/binman/etype/u_boot_spl_dtb.py
/openbmc/u-boot/tools/binman/etype/u_boot_spl_elf.py
/openbmc/u-boot/tools/binman/etype/u_boot_spl_with_ucode_ptr.py
/openbmc/u-boot/tools/binman/etype/u_boot_tpl_dtb.py
/openbmc/u-boot/tools/binman/etype/u_boot_tpl_dtb_with_ucode.py
/openbmc/u-boot/tools/binman/etype/u_boot_tpl_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/vblock.py
/openbmc/u-boot/tools/binman/etype/x86_start16_tpl.py
/openbmc/u-boot/tools/binman/fmap_util.py
/openbmc/u-boot/tools/binman/ftest.py
/openbmc/u-boot/tools/binman/image.py
/openbmc/u-boot/tools/binman/state.py
/openbmc/u-boot/tools/binman/test/80_4gb_and_skip_at_start_together.dts
/openbmc/u-boot/tools/binman/test/80_fill_empty.dts
/openbmc/u-boot/tools/binman/test/81_powerpc_mpc85xx_bootpg_resetvec.dts
/openbmc/u-boot/tools/binman/test/81_x86-start16-tpl.dts
/openbmc/u-boot/tools/binman/test/82_fdt_update_all.dts
/openbmc/u-boot/tools/binman/test/83_compress.dts
/openbmc/u-boot/tools/binman/test/84_files.dts
/openbmc/u-boot/tools/binman/test/85_files_compress.dts
/openbmc/u-boot/tools/binman/test/86_files_none.dts
/openbmc/u-boot/tools/binman/test/87_files_no_pattern.dts
/openbmc/u-boot/tools/binman/test/88_expand_size.dts
/openbmc/u-boot/tools/binman/test/89_expand_size_bad.dts
/openbmc/u-boot/tools/binman/test/90_hash.dts
/openbmc/u-boot/tools/binman/test/91_hash_no_algo.dts
/openbmc/u-boot/tools/binman/test/92_hash_bad_algo.dts
/openbmc/u-boot/tools/binman/test/93_x86_tpl_ucode.dts
/openbmc/u-boot/tools/binman/test/94_fmap_x86.dts
/openbmc/u-boot/tools/binman/test/95_fmap_x86_section.dts
/openbmc/u-boot/tools/binman/test/96_elf.dts
/openbmc/u-boot/tools/binman/test/97_elf_strip.dts
/openbmc/u-boot/tools/binman/test/99_hash_section.dts
/openbmc/u-boot/tools/binman/test/files/1.dat
/openbmc/u-boot/tools/binman/test/files/2.dat
/openbmc/u-boot/tools/binman/test/files/ignored_dir.dat/ignore
/openbmc/u-boot/tools/binman/test/files/not-this-one
/openbmc/u-boot/tools/buildman/builder.py
/openbmc/u-boot/tools/dtoc/fdt.py
/openbmc/u-boot/tools/dtoc/test_fdt.py
/openbmc/u-boot/tools/patman/tools.py
31b8217e19-Sep-2018 Rajan Vaja <rajan.vaja@xilinx.com>

dm: test: Add "/firmware" node scan test

Add a test which verifies that all subnodes under "/firmware"
nodes are scanned.

Signed-off-by: Rajan Vaja <rajan.vaja@xilinx.com>
Reviewed-by: Simon Glass

dm: test: Add "/firmware" node scan test

Add a test which verifies that all subnodes under "/firmware"
nodes are scanned.

Signed-off-by: Rajan Vaja <rajan.vaja@xilinx.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Added 'imply FIRMWARE' to sandbox Kconfig to fix test failures, fixed
ordering of lines in arch/sandbox/dts/test.dts and test/dm/Makefile,
updated #if condition in drivers/firmware/firmware-uclass.c:
Signed-off-by: Simon Glass <sjg@chromium.org>

show more ...

e6fd018131-Jul-2018 Mario Six <mario.six@gdsys.cc>

test: Add tests for board uclass

Add tests for the new board uclass.

Reviewed-by: Simon Glass <sjg@chromium.org>
Signed-off-by: Mario Six <mario.six@gdsys.cc>

172942a426-Jun-2018 Mario Six <mario.six@gdsys.cc>

test: Add tests for dev_{enable, disable}_by_path

Add tests for the dev_{enable,disable}_by_path functions.

Reviewed-by: Simon Glass <sjg@chromium.org>
Signed-off-by: Mario Six <mario.six@gdsys.cc>

2ea4d0db26-Jun-2018 Mario Six <mario.six@gdsys.cc>

test: Add tests for DT-manipulation functions

Add tests for the ofnode_set_enabled, ofnode_write_string, and
ofnode_write_property functions.

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

test: Add tests for DT-manipulation functions

Add tests for the ofnode_set_enabled, ofnode_write_string, and
ofnode_write_property functions.

Reviewed-by: Simon Glass <sjg@chromium.org>
Signed-off-by: Mario Six <mario.six@gdsys.cc>

show more ...


/openbmc/u-boot/.travis.yml
/openbmc/u-boot/Makefile
/openbmc/u-boot/README
/openbmc/u-boot/arch/arm/Kconfig
/openbmc/u-boot/arch/arm/cpu/arm926ejs/spear/cpu.c
/openbmc/u-boot/arch/arm/cpu/armv8/zynqmp/cpu.c
/openbmc/u-boot/arch/arm/dts/stm32mp157-pinctrl.dtsi
/openbmc/u-boot/arch/arm/dts/stm32mp157c-ev1-u-boot.dtsi
/openbmc/u-boot/arch/arm/dts/stm32mp157c-ev1.dts
/openbmc/u-boot/arch/arm/dts/stm32mp157c.dtsi
/openbmc/u-boot/arch/arm/include/asm/arch-omap3/mmc_host_def.h
/openbmc/u-boot/arch/arm/include/asm/arch-spear/spr_misc.h
/openbmc/u-boot/arch/arm/include/asm/arch-zynqmp/sys_proto.h
/openbmc/u-boot/arch/arm/include/asm/atomic.h
/openbmc/u-boot/arch/mips/Kconfig
/openbmc/u-boot/arch/mips/Makefile
/openbmc/u-boot/arch/mips/cpu/start.S
/openbmc/u-boot/arch/mips/dts/brcm,bcm6838.dtsi
/openbmc/u-boot/arch/mips/dts/gardena-smart-gateway-mt7688.dts
/openbmc/u-boot/arch/mips/dts/linkit-smart-7688.dts
/openbmc/u-boot/arch/mips/dts/mt7628a.dtsi
/openbmc/u-boot/arch/mips/include/asm/atomic.h
/openbmc/u-boot/arch/mips/lib/cache.c
/openbmc/u-boot/arch/mips/lib/cache_init.S
/openbmc/u-boot/arch/mips/mach-mt7620/Kconfig
/openbmc/u-boot/arch/mips/mach-mt7620/Makefile
/openbmc/u-boot/arch/mips/mach-mt7620/cpu.c
/openbmc/u-boot/arch/mips/mach-mt7620/ddr_calibrate.c
/openbmc/u-boot/arch/mips/mach-mt7620/lowlevel_init.S
/openbmc/u-boot/arch/mips/mach-mt7620/mt76xx.h
/openbmc/u-boot/arch/nds32/config.mk
/openbmc/u-boot/arch/riscv/config.mk
/openbmc/u-boot/arch/sandbox/cpu/cpu.c
/openbmc/u-boot/arch/sandbox/cpu/os.c
/openbmc/u-boot/arch/sandbox/cpu/state.c
/openbmc/u-boot/arch/sandbox/include/asm/setjmp.h
/openbmc/u-boot/arch/sandbox/include/asm/state.h
/openbmc/u-boot/arch/x86/config.mk
/openbmc/u-boot/arch/xtensa/include/asm/atomic.h
/openbmc/u-boot/board/gardena/smart-gateway-mt7688/Kconfig
/openbmc/u-boot/board/gardena/smart-gateway-mt7688/MAINTAINERS
/openbmc/u-boot/board/gardena/smart-gateway-mt7688/Makefile
/openbmc/u-boot/board/gardena/smart-gateway-mt7688/board.c
/openbmc/u-boot/board/seeed/linkit-smart-7688/Kconfig
/openbmc/u-boot/board/seeed/linkit-smart-7688/MAINTAINERS
/openbmc/u-boot/board/seeed/linkit-smart-7688/Makefile
/openbmc/u-boot/board/seeed/linkit-smart-7688/board.c
/openbmc/u-boot/board/st/stm32mp1/stm32mp1.c
/openbmc/u-boot/board/ti/am335x/board.c
/openbmc/u-boot/board/xilinx/zynqmp/zynqmp.c
/openbmc/u-boot/cmd/Kconfig
/openbmc/u-boot/cmd/Makefile
/openbmc/u-boot/cmd/bootefi.c
/openbmc/u-boot/cmd/conitrace.c
/openbmc/u-boot/common/Kconfig
/openbmc/u-boot/common/bootm.c
/openbmc/u-boot/common/image-fdt.c
/openbmc/u-boot/common/spl/spl.c
/openbmc/u-boot/common/spl/spl_ext.c
/openbmc/u-boot/common/spl/spl_fat.c
/openbmc/u-boot/common/spl/spl_fit.c
/openbmc/u-boot/common/spl/spl_mmc.c
/openbmc/u-boot/common/spl/spl_nand.c
/openbmc/u-boot/common/spl/spl_onenand.c
/openbmc/u-boot/common/spl/spl_ram.c
/openbmc/u-boot/common/spl/spl_spi.c
/openbmc/u-boot/common/spl/spl_ubi.c
/openbmc/u-boot/configs/am335x_evm_defconfig
/openbmc/u-boot/configs/bcm968380gerg_ram_defconfig
/openbmc/u-boot/configs/gardena-smart-gateway-mt7688-ram_defconfig
/openbmc/u-boot/configs/gardena-smart-gateway-mt7688_defconfig
/openbmc/u-boot/configs/linkit-smart-7688-ram_defconfig
/openbmc/u-boot/configs/linkit-smart-7688_defconfig
/openbmc/u-boot/configs/qemu_arm64_defconfig
/openbmc/u-boot/configs/qemu_arm_defconfig
/openbmc/u-boot/configs/sama5d27_som1_ek_mmc1_defconfig
/openbmc/u-boot/configs/sama5d27_som1_ek_mmc_defconfig
/openbmc/u-boot/configs/sama5d2_xplained_emmc_defconfig
/openbmc/u-boot/configs/sandbox_defconfig
/openbmc/u-boot/configs/stm32mp15_basic_defconfig
/openbmc/u-boot/configs/vf610twr_defconfig
/openbmc/u-boot/configs/vf610twr_nand_defconfig
/openbmc/u-boot/configs/xilinx_zynqmp_mini_emmc0_defconfig
/openbmc/u-boot/configs/xilinx_zynqmp_mini_emmc1_defconfig
/openbmc/u-boot/configs/xilinx_zynqmp_mini_nand_defconfig
/openbmc/u-boot/configs/xilinx_zynqmp_mini_qspi_defconfig
/openbmc/u-boot/configs/zynq_cse_nand_defconfig
/openbmc/u-boot/configs/zynq_cse_nor_defconfig
/openbmc/u-boot/configs/zynq_cse_qspi_defconfig
/openbmc/u-boot/configs/zynq_zybo_defconfig
/openbmc/u-boot/doc/device-tree-bindings/pinctrl/bcm6838-pinctrl.txt
/openbmc/u-boot/doc/driver-model/README.txt
/openbmc/u-boot/drivers/ata/ahci.c
/openbmc/u-boot/drivers/core/ofnode.c
/openbmc/u-boot/drivers/fpga/zynqmppl.c
/openbmc/u-boot/drivers/mmc/omap_hsmmc.c
/openbmc/u-boot/drivers/net/cpsw.c
/openbmc/u-boot/drivers/net/zynq_gem.c
/openbmc/u-boot/drivers/pinctrl/broadcom/Kconfig
/openbmc/u-boot/drivers/pinctrl/broadcom/Makefile
/openbmc/u-boot/drivers/pinctrl/broadcom/pinctrl-bcm6838.c
/openbmc/u-boot/drivers/rtc/pl031.c
/openbmc/u-boot/drivers/serial/serial_omap.c
/openbmc/u-boot/drivers/spi/Kconfig
/openbmc/u-boot/drivers/spi/Makefile
/openbmc/u-boot/drivers/spi/pl022_spi.c
/openbmc/u-boot/drivers/video/vidconsole-uclass.c
/openbmc/u-boot/fs/fat/fat.c
/openbmc/u-boot/fs/fat/fat_write.c
/openbmc/u-boot/include/asm-generic/atomic.h
/openbmc/u-boot/include/config_distro_bootcmd.h
/openbmc/u-boot/include/configs/MPC8544DS.h
/openbmc/u-boot/include/configs/MPC8572DS.h
/openbmc/u-boot/include/configs/MPC8610HPCD.h
/openbmc/u-boot/include/configs/MPC8641HPCN.h
/openbmc/u-boot/include/configs/dra7xx_evm.h
/openbmc/u-boot/include/configs/gardena-smart-gateway-mt7688.h
/openbmc/u-boot/include/configs/imgtec_xilfpga.h
/openbmc/u-boot/include/configs/linkit-smart-7688.h
/openbmc/u-boot/include/configs/pic32mzdask.h
/openbmc/u-boot/include/configs/qemu-arm.h
/openbmc/u-boot/include/configs/sama5d27_som1_ek.h
/openbmc/u-boot/include/configs/sama5d2_xplained.h
/openbmc/u-boot/include/configs/sbc8641d.h
/openbmc/u-boot/include/configs/x86-common.h
/openbmc/u-boot/include/configs/xilinx_zynqmp.h
/openbmc/u-boot/include/configs/xilinx_zynqmp_mini.h
/openbmc/u-boot/include/configs/zynq-common.h
/openbmc/u-boot/include/configs/zynq_cse.h
/openbmc/u-boot/include/configs/zynq_zybo.h
/openbmc/u-boot/include/cpsw.h
/openbmc/u-boot/include/dm/ofnode.h
/openbmc/u-boot/include/dm/platform_data/pl022_spi.h
/openbmc/u-boot/include/efi_api.h
/openbmc/u-boot/include/efi_loader.h
/openbmc/u-boot/include/os.h
/openbmc/u-boot/include/spl.h
/openbmc/u-boot/lib/efi_driver/efi_uclass.c
/openbmc/u-boot/lib/efi_loader/Kconfig
/openbmc/u-boot/lib/efi_loader/Makefile
/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_device_path.c
/openbmc/u-boot/lib/efi_loader/efi_device_path_to_text.c
/openbmc/u-boot/lib/efi_loader/efi_file.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_root_node.c
/openbmc/u-boot/lib/efi_loader/efi_variable.c
/openbmc/u-boot/lib/efi_selftest/Kconfig
/openbmc/u-boot/lib/efi_selftest/efi_selftest_textinputex.c
/openbmc/u-boot/scripts/config_whitelist.txt
/openbmc/u-boot/scripts/dtc/pylibfdt/libfdt.i_shipped
dm/test-fdt.c
/openbmc/u-boot/tools/binman/README
/openbmc/u-boot/tools/binman/README.entries
/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/entry.py
/openbmc/u-boot/tools/binman/entry_test.py
/openbmc/u-boot/tools/binman/etype/_testing.py
/openbmc/u-boot/tools/binman/etype/blob.py
/openbmc/u-boot/tools/binman/etype/blob_dtb.py
/openbmc/u-boot/tools/binman/etype/files.py
/openbmc/u-boot/tools/binman/etype/fill.py
/openbmc/u-boot/tools/binman/etype/fmap.py
/openbmc/u-boot/tools/binman/etype/section.py
/openbmc/u-boot/tools/binman/etype/text.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_elf.py
/openbmc/u-boot/tools/binman/etype/u_boot_spl_dtb.py
/openbmc/u-boot/tools/binman/etype/u_boot_spl_elf.py
/openbmc/u-boot/tools/binman/etype/u_boot_spl_with_ucode_ptr.py
/openbmc/u-boot/tools/binman/etype/u_boot_tpl_dtb.py
/openbmc/u-boot/tools/binman/etype/u_boot_tpl_dtb_with_ucode.py
/openbmc/u-boot/tools/binman/etype/u_boot_tpl_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/vblock.py
/openbmc/u-boot/tools/binman/etype/x86_start16_tpl.py
/openbmc/u-boot/tools/binman/fmap_util.py
/openbmc/u-boot/tools/binman/ftest.py
/openbmc/u-boot/tools/binman/image.py
/openbmc/u-boot/tools/binman/state.py
/openbmc/u-boot/tools/binman/test/80_fill_empty.dts
/openbmc/u-boot/tools/binman/test/81_x86-start16-tpl.dts
/openbmc/u-boot/tools/binman/test/82_fdt_update_all.dts
/openbmc/u-boot/tools/binman/test/83_compress.dts
/openbmc/u-boot/tools/binman/test/84_files.dts
/openbmc/u-boot/tools/binman/test/85_files_compress.dts
/openbmc/u-boot/tools/binman/test/86_files_none.dts
/openbmc/u-boot/tools/binman/test/87_files_no_pattern.dts
/openbmc/u-boot/tools/binman/test/88_expand_size.dts
/openbmc/u-boot/tools/binman/test/89_expand_size_bad.dts
/openbmc/u-boot/tools/binman/test/90_hash.dts
/openbmc/u-boot/tools/binman/test/91_hash_no_algo.dts
/openbmc/u-boot/tools/binman/test/92_hash_bad_algo.dts
/openbmc/u-boot/tools/binman/test/93_x86_tpl_ucode.dts
/openbmc/u-boot/tools/binman/test/94_fmap_x86.dts
/openbmc/u-boot/tools/binman/test/95_fmap_x86_section.dts
/openbmc/u-boot/tools/binman/test/96_elf.dts
/openbmc/u-boot/tools/binman/test/97_elf_strip.dts
/openbmc/u-boot/tools/binman/test/99_hash_section.dts
/openbmc/u-boot/tools/binman/test/files/1.dat
/openbmc/u-boot/tools/binman/test/files/2.dat
/openbmc/u-boot/tools/binman/test/files/ignored_dir.dat/ignore
/openbmc/u-boot/tools/binman/test/files/not-this-one
/openbmc/u-boot/tools/dtoc/fdt.py
/openbmc/u-boot/tools/dtoc/test_fdt.py
/openbmc/u-boot/tools/patman/tools.py
87be2fe627-Sep-2018 Mario Six <mario.six@gdsys.cc>

test: list: Add tests for hexdump.c

Add tests for the hex2bin, bin2hex, and hex_to_bin functions, which were
recently added to U-Boot.

Signed-off-by: Mario Six <mario.six@gdsys.cc>
Reviewed-by: Sim

test: list: Add tests for hexdump.c

Add tests for the hex2bin, bin2hex, and hex_to_bin functions, which were
recently added to U-Boot.

Signed-off-by: Mario Six <mario.six@gdsys.cc>
Reviewed-by: Simon Glass <sjg@chromium.org>

show more ...

4eea531827-Sep-2018 Mario Six <mario.six@gdsys.cc>

video_osd: Add osd sandbox driver and tests

Add sandbox driver and tests for the new OSD uclass.

Signed-off-by: Mario Six <mario.six@gdsys.cc>
Reviewed-by: Simon Glass <sjg@chromium.org>


/openbmc/u-boot/MAINTAINERS
/openbmc/u-boot/Makefile
/openbmc/u-boot/README
/openbmc/u-boot/arch/arm/Kconfig
/openbmc/u-boot/arch/arm/cpu/arm926ejs/spear/cpu.c
/openbmc/u-boot/arch/arm/cpu/armv8/zynqmp/cpu.c
/openbmc/u-boot/arch/arm/dts/stm32mp157-pinctrl.dtsi
/openbmc/u-boot/arch/arm/dts/stm32mp157c-ev1-u-boot.dtsi
/openbmc/u-boot/arch/arm/dts/stm32mp157c-ev1.dts
/openbmc/u-boot/arch/arm/dts/stm32mp157c.dtsi
/openbmc/u-boot/arch/arm/include/asm/arch-omap3/mmc_host_def.h
/openbmc/u-boot/arch/arm/include/asm/arch-spear/spr_misc.h
/openbmc/u-boot/arch/arm/include/asm/arch-zynqmp/sys_proto.h
/openbmc/u-boot/arch/arm/include/asm/atomic.h
/openbmc/u-boot/arch/mips/Kconfig
/openbmc/u-boot/arch/mips/Makefile
/openbmc/u-boot/arch/mips/cpu/start.S
/openbmc/u-boot/arch/mips/dts/brcm,bcm6838.dtsi
/openbmc/u-boot/arch/mips/dts/gardena-smart-gateway-mt7688.dts
/openbmc/u-boot/arch/mips/dts/linkit-smart-7688.dts
/openbmc/u-boot/arch/mips/dts/mt7628a.dtsi
/openbmc/u-boot/arch/mips/include/asm/atomic.h
/openbmc/u-boot/arch/mips/lib/cache.c
/openbmc/u-boot/arch/mips/lib/cache_init.S
/openbmc/u-boot/arch/mips/mach-mt7620/Kconfig
/openbmc/u-boot/arch/mips/mach-mt7620/Makefile
/openbmc/u-boot/arch/mips/mach-mt7620/cpu.c
/openbmc/u-boot/arch/mips/mach-mt7620/ddr_calibrate.c
/openbmc/u-boot/arch/mips/mach-mt7620/lowlevel_init.S
/openbmc/u-boot/arch/mips/mach-mt7620/mt76xx.h
/openbmc/u-boot/arch/nds32/config.mk
/openbmc/u-boot/arch/riscv/config.mk
/openbmc/u-boot/arch/sandbox/cpu/cpu.c
/openbmc/u-boot/arch/sandbox/cpu/os.c
/openbmc/u-boot/arch/sandbox/cpu/state.c
/openbmc/u-boot/arch/sandbox/dts/test.dts
/openbmc/u-boot/arch/sandbox/include/asm/setjmp.h
/openbmc/u-boot/arch/sandbox/include/asm/state.h
/openbmc/u-boot/arch/sandbox/include/asm/test.h
/openbmc/u-boot/arch/x86/config.mk
/openbmc/u-boot/arch/xtensa/include/asm/atomic.h
/openbmc/u-boot/board/gardena/smart-gateway-mt7688/Kconfig
/openbmc/u-boot/board/gardena/smart-gateway-mt7688/MAINTAINERS
/openbmc/u-boot/board/gardena/smart-gateway-mt7688/Makefile
/openbmc/u-boot/board/gardena/smart-gateway-mt7688/board.c
/openbmc/u-boot/board/seeed/linkit-smart-7688/Kconfig
/openbmc/u-boot/board/seeed/linkit-smart-7688/MAINTAINERS
/openbmc/u-boot/board/seeed/linkit-smart-7688/Makefile
/openbmc/u-boot/board/seeed/linkit-smart-7688/board.c
/openbmc/u-boot/board/st/stm32mp1/stm32mp1.c
/openbmc/u-boot/board/ti/am335x/board.c
/openbmc/u-boot/board/xilinx/zynqmp/zynqmp.c
/openbmc/u-boot/cmd/Kconfig
/openbmc/u-boot/cmd/Makefile
/openbmc/u-boot/cmd/bootefi.c
/openbmc/u-boot/cmd/conitrace.c
/openbmc/u-boot/common/Kconfig
/openbmc/u-boot/common/bootm.c
/openbmc/u-boot/common/image-fdt.c
/openbmc/u-boot/common/spl/spl.c
/openbmc/u-boot/common/spl/spl_ext.c
/openbmc/u-boot/common/spl/spl_fat.c
/openbmc/u-boot/common/spl/spl_fit.c
/openbmc/u-boot/common/spl/spl_mmc.c
/openbmc/u-boot/common/spl/spl_nand.c
/openbmc/u-boot/common/spl/spl_onenand.c
/openbmc/u-boot/common/spl/spl_ram.c
/openbmc/u-boot/common/spl/spl_spi.c
/openbmc/u-boot/common/spl/spl_ubi.c
/openbmc/u-boot/configs/am335x_evm_defconfig
/openbmc/u-boot/configs/bcm968380gerg_ram_defconfig
/openbmc/u-boot/configs/gardena-smart-gateway-mt7688-ram_defconfig
/openbmc/u-boot/configs/gardena-smart-gateway-mt7688_defconfig
/openbmc/u-boot/configs/linkit-smart-7688-ram_defconfig
/openbmc/u-boot/configs/linkit-smart-7688_defconfig
/openbmc/u-boot/configs/qemu_arm64_defconfig
/openbmc/u-boot/configs/qemu_arm_defconfig
/openbmc/u-boot/configs/sama5d27_som1_ek_mmc1_defconfig
/openbmc/u-boot/configs/sama5d27_som1_ek_mmc_defconfig
/openbmc/u-boot/configs/sama5d2_xplained_emmc_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/vf610twr_defconfig
/openbmc/u-boot/configs/vf610twr_nand_defconfig
/openbmc/u-boot/configs/xilinx_zynqmp_mini_emmc0_defconfig
/openbmc/u-boot/configs/xilinx_zynqmp_mini_emmc1_defconfig
/openbmc/u-boot/configs/xilinx_zynqmp_mini_nand_defconfig
/openbmc/u-boot/configs/xilinx_zynqmp_mini_qspi_defconfig
/openbmc/u-boot/configs/zynq_cse_nand_defconfig
/openbmc/u-boot/configs/zynq_cse_nor_defconfig
/openbmc/u-boot/configs/zynq_cse_qspi_defconfig
/openbmc/u-boot/configs/zynq_zybo_defconfig
/openbmc/u-boot/doc/device-tree-bindings/pinctrl/bcm6838-pinctrl.txt
/openbmc/u-boot/doc/device-tree-bindings/video/osd/gdsys,ihs_video_out.txt
/openbmc/u-boot/doc/driver-model/README.txt
/openbmc/u-boot/drivers/ata/ahci.c
/openbmc/u-boot/drivers/fpga/zynqmppl.c
/openbmc/u-boot/drivers/mmc/omap_hsmmc.c
/openbmc/u-boot/drivers/net/cpsw.c
/openbmc/u-boot/drivers/net/zynq_gem.c
/openbmc/u-boot/drivers/pinctrl/broadcom/Kconfig
/openbmc/u-boot/drivers/pinctrl/broadcom/Makefile
/openbmc/u-boot/drivers/pinctrl/broadcom/pinctrl-bcm6838.c
/openbmc/u-boot/drivers/rtc/pl031.c
/openbmc/u-boot/drivers/serial/serial_omap.c
/openbmc/u-boot/drivers/spi/Kconfig
/openbmc/u-boot/drivers/spi/Makefile
/openbmc/u-boot/drivers/spi/pl022_spi.c
/openbmc/u-boot/drivers/video/Kconfig
/openbmc/u-boot/drivers/video/Makefile
/openbmc/u-boot/drivers/video/ihs_video_out.c
/openbmc/u-boot/drivers/video/sandbox_osd.c
/openbmc/u-boot/drivers/video/sandbox_osd.h
/openbmc/u-boot/drivers/video/vidconsole-uclass.c
/openbmc/u-boot/drivers/video/video_osd-uclass.c
/openbmc/u-boot/fs/fat/fat.c
/openbmc/u-boot/fs/fat/fat_write.c
/openbmc/u-boot/include/asm-generic/atomic.h
/openbmc/u-boot/include/config_distro_bootcmd.h
/openbmc/u-boot/include/configs/MPC8544DS.h
/openbmc/u-boot/include/configs/MPC8572DS.h
/openbmc/u-boot/include/configs/MPC8610HPCD.h
/openbmc/u-boot/include/configs/MPC8641HPCN.h
/openbmc/u-boot/include/configs/dra7xx_evm.h
/openbmc/u-boot/include/configs/gardena-smart-gateway-mt7688.h
/openbmc/u-boot/include/configs/imgtec_xilfpga.h
/openbmc/u-boot/include/configs/linkit-smart-7688.h
/openbmc/u-boot/include/configs/pic32mzdask.h
/openbmc/u-boot/include/configs/qemu-arm.h
/openbmc/u-boot/include/configs/sama5d27_som1_ek.h
/openbmc/u-boot/include/configs/sama5d2_xplained.h
/openbmc/u-boot/include/configs/sbc8641d.h
/openbmc/u-boot/include/configs/x86-common.h
/openbmc/u-boot/include/configs/xilinx_zynqmp.h
/openbmc/u-boot/include/configs/xilinx_zynqmp_mini.h
/openbmc/u-boot/include/configs/zynq-common.h
/openbmc/u-boot/include/configs/zynq_cse.h
/openbmc/u-boot/include/configs/zynq_zybo.h
/openbmc/u-boot/include/cpsw.h
/openbmc/u-boot/include/dm/platform_data/pl022_spi.h
/openbmc/u-boot/include/dm/uclass-id.h
/openbmc/u-boot/include/efi_api.h
/openbmc/u-boot/include/efi_loader.h
/openbmc/u-boot/include/os.h
/openbmc/u-boot/include/spl.h
/openbmc/u-boot/include/video_console.h
/openbmc/u-boot/include/video_osd.h
/openbmc/u-boot/lib/efi_driver/efi_uclass.c
/openbmc/u-boot/lib/efi_loader/Kconfig
/openbmc/u-boot/lib/efi_loader/Makefile
/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_device_path.c
/openbmc/u-boot/lib/efi_loader/efi_device_path_to_text.c
/openbmc/u-boot/lib/efi_loader/efi_file.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_root_node.c
/openbmc/u-boot/lib/efi_loader/efi_variable.c
/openbmc/u-boot/lib/efi_selftest/Kconfig
/openbmc/u-boot/lib/efi_selftest/efi_selftest_textinputex.c
/openbmc/u-boot/scripts/config_whitelist.txt
dm/Makefile
dm/osd.c
6dec873911-Sep-2018 Heinrich Schuchardt <xypron.glpk@gmx.de>

efi_selftest: test key notification functions

Use a key notification function to leave the
EFI_SIMPLE_TEXT_INPUT_EX_PROTOCOL test.

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

efi_selftest: test key notification functions

Use a key notification function to leave the
EFI_SIMPLE_TEXT_INPUT_EX_PROTOCOL test.

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

show more ...

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

test/py: test EFI_SIMPLE_TEXT_INPUT_EX_PROTOCOL

Add a unit test for the EFI_SIMPLE_TEXT_INPUT_EX_PROTOCOL.

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

test/py: test EFI_SIMPLE_TEXT_INPUT_EX_PROTOCOL

Add a unit test for the EFI_SIMPLE_TEXT_INPUT_EX_PROTOCOL.

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

show more ...

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

test/py: rework test_efi_selftest_text_input()

Use more precise regular expressions.

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

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

test/py: Unicode w/ EFI_SIMPLE_TEXT_INPUT_PROTOCOL

Test that the Euro sign is correctly retrieved from the console via the
EFI_SIMPLE_TEXT_INPUT_PROTOCOL.

Signed-off-by: Heinrich Schuchardt <xypron

test/py: Unicode w/ EFI_SIMPLE_TEXT_INPUT_PROTOCOL

Test that the Euro sign is correctly retrieved from the console via the
EFI_SIMPLE_TEXT_INPUT_PROTOCOL.

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

show more ...

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

efi_loader: support Unicode text input

Up to now the EFI_TEXT_INPUT_PROTOCOL only supported ASCII characters.
With the patch it can consume UTF-8 from the console.

Currently only the serial console

efi_loader: support Unicode text input

Up to now the EFI_TEXT_INPUT_PROTOCOL only supported ASCII characters.
With the patch it can consume UTF-8 from the console.

Currently only the serial console and the console can deliver UTF-8.
Local consoles are restricted to ASCII.

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

show more ...

12345678910>>...26