History log of /openbmc/u-boot/lib/ (Results 226 – 250 of 1415)
Revision Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
14deb5e630-Aug-2018 Stephen Warren <swarren@nvidia.com>

Revert "Revert "efi_loader: efi_allocate_pages is too restrictive""

This reverts commit ccfc78b820e5e431c5bd73b072e7536a972e1710.

Now that the underlying issue is fixed, we can revert the revert an

Revert "Revert "efi_loader: efi_allocate_pages is too restrictive""

This reverts commit ccfc78b820e5e431c5bd73b072e7536a972e1710.

Now that the underlying issue is fixed, we can revert the revert and hence
restore the original EFI code.

Signed-off-by: Stephen Warren <swarren@nvidia.com>
Signed-off-by: Alexander Graf <agraf@suse.de>

show more ...

75cb1cd231-Aug-2018 Heinrich Schuchardt <xypron.glpk@gmx.de>

lib: charset: remove obsolete functions

Remove functions:
- utf8_to_utf16()
- utf16_strcpy()
- utf16_strdup()

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

lib: charset: remove obsolete functions

Remove functions:
- utf8_to_utf16()
- utf16_strcpy()
- utf16_strdup()

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

show more ...

ba7bd5c231-Aug-2018 Heinrich Schuchardt <xypron.glpk@gmx.de>

efi_loader: don't use unlimited stack as buffer

The length of a string printed to the console by the
EFI_SIMPLE_TEXT_OUTPUT_PROTOCOL is not limited by the UEFI spec.
Hence should not allocate a buff

efi_loader: don't use unlimited stack as buffer

The length of a string printed to the console by the
EFI_SIMPLE_TEXT_OUTPUT_PROTOCOL is not limited by the UEFI spec.
Hence should not allocate a buffer for it on the stack.

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

show more ...

dcdb64f731-Aug-2018 Heinrich Schuchardt <xypron.glpk@gmx.de>

efi_loader: remove limit on variable length

The EFI spec does not provide a length limit for variables.

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

efi_loader: remove limit on variable length

The EFI spec does not provide a length limit for variables.

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

show more ...

31bd711c31-Aug-2018 Heinrich Schuchardt <xypron.glpk@gmx.de>

lib: vsprintf: correct printing of Unicode strings

The width and precision of the printf() function refer to the number of
characters not to the number of bytes printed.

Signed-off-by: Heinrich Sch

lib: vsprintf: correct printing of Unicode strings

The width and precision of the printf() function refer to the number of
characters not to the number of bytes printed.

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

show more ...

f11a164b31-Aug-2018 Heinrich Schuchardt <xypron.glpk@gmx.de>

test: unit tests for Unicode functions

Provide unit tests for Unicode functions.

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

d8c2823231-Aug-2018 Heinrich Schuchardt <xypron.glpk@gmx.de>

lib: charset: utility functions for Unicode

utf8_get() - get next UTF-8 code point from buffer
utf8_put() - write UTF-8 code point to buffer
utf8_utf16_strnlen() - length of a utf-8 string after con

lib: charset: utility functions for Unicode

utf8_get() - get next UTF-8 code point from buffer
utf8_put() - write UTF-8 code point to buffer
utf8_utf16_strnlen() - length of a utf-8 string after conversion to utf-16
utf8_utf16_strncpy() - copy a utf-8 string to utf-16
utf16_get() - get next UTF-16 code point from buffer
utf16_put() - write UTF-16 code point to buffer
utf16_strnlen() - number of codes points in a utf-16 string
utf16_utf8_strnlen() - length of a utf-16 string after conversion to utf-8
utf16_utf8_strncpy() - copy a utf-16 string to utf-8

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

show more ...

1dde0d5731-Aug-2018 Heinrich Schuchardt <xypron.glpk@gmx.de>

efi_loader: rename utf16_strlen, utf16_strnlen

The function names utf16_strlen() and utf16_strnlen() are misnomers.
The functions do not count utf-16 characters but non-zero words.
So let's rename t

efi_loader: rename utf16_strlen, utf16_strnlen

The function names utf16_strlen() and utf16_strnlen() are misnomers.
The functions do not count utf-16 characters but non-zero words.
So let's rename them to u16_strlen and u16_strnlen().

In utf16_dup() avoid assignment in if clause.

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

show more ...

fbb3ea8031-Aug-2018 Heinrich Schuchardt <xypron.glpk@gmx.de>

lib: build charset.o only if needed

charset.o is only needed for the EFI subsystem

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

4ddcc4e531-Aug-2018 Heinrich Schuchardt <xypron.glpk@gmx.de>

vsprintf.c: use #if CONFIG_IS_ENABLED(EFI_LOADER)

Using CONFIG_IS_ENABLED(EFI_LOADER) allows to simply the #if statements.

Suggested-by: Alexander Graf <agraf@suse.de>
Signed-off-by: Heinrich Schuc

vsprintf.c: use #if CONFIG_IS_ENABLED(EFI_LOADER)

Using CONFIG_IS_ENABLED(EFI_LOADER) allows to simply the #if statements.

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

show more ...

d5a5a5a708-Aug-2018 Alexander Graf <agraf@suse.de>

efi_loader: Pass address to fs_read()

The fs_read() function wants to get an address rather than the
pointer to a buffer.

So let's convert the passed buffer from pointer back a the address
to make

efi_loader: Pass address to fs_read()

The fs_read() function wants to get an address rather than the
pointer to a buffer.

So let's convert the passed buffer from pointer back a the address
to make efi_loader on sandbox happier.

Signed-off-by: Alexander Graf <agraf@suse.de>
Reviewed-by: Simon Glass <sjg@chromium.org>
Signed-off-by: Simon Glass <sjg@chromium.org>
Signed-off-by: Alexander Graf <agraf@suse.de>

show more ...

efe79a7c26-Aug-2018 Heinrich Schuchardt <xypron.glpk@gmx.de>

efi_selftest: test for loaded image protocol

Verify that the loaded image protocol is installed on the image handle.
Verify that the loaded image protocol points to the system table.

Signed-off-by:

efi_selftest: test for loaded image protocol

Verify that the loaded image protocol is installed on the image handle.
Verify that the loaded image protocol points to the system table.

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

show more ...

7e1effce26-Aug-2018 Heinrich Schuchardt <xypron.glpk@gmx.de>

efi_loader: pass system table in loaded image protocol

The system table must be passed as a pointer in the loaded image
protocol.

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

efi_loader: pass system table in loaded image protocol

The system table must be passed as a pointer in the loaded image
protocol.

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

show more ...

e470efd226-Aug-2018 Heinrich Schuchardt <xypron.glpk@gmx.de>

efi_selftest: memory leak testing manage protocols

Remove memory leak in efi_selftest_manageprotocols.c.

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

efi_selftest: memory leak testing manage protocols

Remove memory leak in efi_selftest_manageprotocols.c.

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

show more ...


/openbmc/u-boot/Documentation/devicetree/bindings/clk/fsl,mpc83xx-clk.txt
/openbmc/u-boot/Documentation/devicetree/bindings/cpu/fsl,mpc83xx.txt
/openbmc/u-boot/Documentation/devicetree/bindings/misc/fsl,mpc83xx-serdes.txt
/openbmc/u-boot/Documentation/devicetree/bindings/ram/fsl,mpc83xx-mem-controller.txt
/openbmc/u-boot/Documentation/devicetree/bindings/timer/fsl,mpc83xx-timer.txt
/openbmc/u-boot/MAINTAINERS
/openbmc/u-boot/arch/Kconfig
/openbmc/u-boot/arch/arm/dts/armada-3720-turris-mox.dts
/openbmc/u-boot/arch/arm/dts/armada-8040-mcbin.dts
/openbmc/u-boot/arch/arm/include/asm/arch-mx6/mx6ull_pins.h
/openbmc/u-boot/arch/arm/mach-imx/mx6/Kconfig
/openbmc/u-boot/arch/arm/mach-mvebu/armada8k/cpu.c
/openbmc/u-boot/arch/arm/mach-mvebu/include/mach/soc.h
/openbmc/u-boot/arch/arm/mach-mvebu/spl.c
/openbmc/u-boot/arch/powerpc/cpu/mpc83xx/cpu.c
/openbmc/u-boot/arch/powerpc/cpu/mpc83xx/cpu_init.c
/openbmc/u-boot/arch/powerpc/cpu/mpc83xx/serdes.c
/openbmc/u-boot/arch/powerpc/cpu/mpc83xx/spd_sdram.c
/openbmc/u-boot/arch/powerpc/cpu/mpc83xx/speed.c
/openbmc/u-boot/arch/powerpc/include/asm/arch-mpc83xx/soc.h
/openbmc/u-boot/arch/powerpc/include/asm/config.h
/openbmc/u-boot/arch/powerpc/include/asm/fsl_mpc83xx_serdes.h
/openbmc/u-boot/arch/powerpc/include/asm/global_data.h
/openbmc/u-boot/arch/powerpc/include/asm/io.h
/openbmc/u-boot/arch/powerpc/include/asm/processor.h
/openbmc/u-boot/arch/powerpc/lib/Makefile
/openbmc/u-boot/arch/powerpc/lib/interrupts.c
/openbmc/u-boot/arch/sandbox/dts/test.dts
/openbmc/u-boot/arch/x86/cpu/tangier/Makefile
/openbmc/u-boot/arch/x86/cpu/tangier/pinmux.c
/openbmc/u-boot/arch/x86/dts/edison.dts
/openbmc/u-boot/arch/x86/include/asm/arch-tangier/acpi/southcluster.asl
/openbmc/u-boot/arch/x86/include/asm/scu.h
/openbmc/u-boot/arch/x86/lib/scu.c
/openbmc/u-boot/board/CZ.NIC/turris_mox/turris_mox.c
/openbmc/u-boot/board/k+p/bootscripts/tpcboot.cmd
/openbmc/u-boot/board/technexion/pico-imx6ul/MAINTAINERS
/openbmc/u-boot/board/technexion/pico-imx6ul/Makefile
/openbmc/u-boot/board/technexion/pico-imx6ul/README
/openbmc/u-boot/board/technexion/pico-imx6ul/spl.c
/openbmc/u-boot/board/technexion/pico-imx7d/MAINTAINERS
/openbmc/u-boot/board/wandboard/README
/openbmc/u-boot/cmd/Makefile
/openbmc/u-boot/common/board_f.c
/openbmc/u-boot/configs/pico-hobbit-imx6ul_defconfig
/openbmc/u-boot/configs/pico-hobbit-imx7d_defconfig
/openbmc/u-boot/configs/pico-imx6ul_defconfig
/openbmc/u-boot/configs/pico-pi-imx6ul_defconfig
/openbmc/u-boot/configs/turris_mox_defconfig
/openbmc/u-boot/doc/git-mailrc
/openbmc/u-boot/drivers/clk/Kconfig
/openbmc/u-boot/drivers/clk/Makefile
/openbmc/u-boot/drivers/clk/mpc83xx_clk.c
/openbmc/u-boot/drivers/clk/mpc83xx_clk.h
/openbmc/u-boot/drivers/clk/mvebu/armada-37xx-periph.c
/openbmc/u-boot/drivers/core/fdtaddr.c
/openbmc/u-boot/drivers/core/of_access.c
/openbmc/u-boot/drivers/core/ofnode.c
/openbmc/u-boot/drivers/core/root.c
/openbmc/u-boot/drivers/cpu/Kconfig
/openbmc/u-boot/drivers/cpu/Makefile
/openbmc/u-boot/drivers/cpu/cpu-uclass.c
/openbmc/u-boot/drivers/cpu/cpu_sandbox.c
/openbmc/u-boot/drivers/cpu/mpc83xx_cpu.c
/openbmc/u-boot/drivers/cpu/mpc83xx_cpu.h
/openbmc/u-boot/drivers/misc/Kconfig
/openbmc/u-boot/drivers/misc/Makefile
/openbmc/u-boot/drivers/misc/mpc83xx_serdes.c
/openbmc/u-boot/drivers/misc/mpc83xx_serdes.h
/openbmc/u-boot/drivers/mtd/nand/pxa3xx_nand.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_core.h
/openbmc/u-boot/drivers/phy/marvell/comphy_cp110.c
/openbmc/u-boot/drivers/phy/marvell/comphy_hpipe.h
/openbmc/u-boot/drivers/phy/marvell/comphy_mux.c
/openbmc/u-boot/drivers/ram/Kconfig
/openbmc/u-boot/drivers/ram/Makefile
/openbmc/u-boot/drivers/ram/mpc83xx_sdram.c
/openbmc/u-boot/drivers/sysreset/Kconfig
/openbmc/u-boot/drivers/sysreset/Makefile
/openbmc/u-boot/drivers/sysreset/sysreset-uclass.c
/openbmc/u-boot/drivers/sysreset/sysreset_mpc83xx.c
/openbmc/u-boot/drivers/sysreset/sysreset_mpc83xx.h
/openbmc/u-boot/drivers/sysreset/sysreset_sandbox.c
/openbmc/u-boot/drivers/timer/Kconfig
/openbmc/u-boot/drivers/timer/Makefile
/openbmc/u-boot/drivers/timer/mpc83xx_timer.c
/openbmc/u-boot/env/sf.c
/openbmc/u-boot/include/configs/clearfog.h
/openbmc/u-boot/include/configs/db-88f6820-gp.h
/openbmc/u-boot/include/configs/mvebu_armada-8k.h
/openbmc/u-boot/include/configs/nas220.h
/openbmc/u-boot/include/configs/pico-imx6ul.h
/openbmc/u-boot/include/configs/pico-imx7d.h
/openbmc/u-boot/include/configs/x86-common.h
/openbmc/u-boot/include/cpu.h
/openbmc/u-boot/include/dm/of_access.h
/openbmc/u-boot/include/dm/ofnode.h
/openbmc/u-boot/include/dm/uclass.h
/openbmc/u-boot/include/dt-bindings/clk/mpc83xx-clk.h
/openbmc/u-boot/include/dt-bindings/memory/mpc83xx-sdram.h
/openbmc/u-boot/include/init.h
/openbmc/u-boot/include/mpc83xx.h
/openbmc/u-boot/include/mvebu/comphy.h
/openbmc/u-boot/include/sysreset.h
efi_selftest/efi_selftest_manageprotocols.c
/openbmc/u-boot/test/dm/Makefile
/openbmc/u-boot/test/dm/cmd_dm.c
/openbmc/u-boot/test/dm/cpu.c
/openbmc/u-boot/test/dm/ofnode.c
/openbmc/u-boot/test/dm/sysreset.c
/openbmc/u-boot/tools/binman/README
/openbmc/u-boot/tools/kwboot.c
b87b0d8d06-Sep-2018 Miquel Raynal <miquel.raynal@bootlin.com>

lib: strto: fix metric suffix parsing in strtoul[l]

While 1kB or 1kiB will be parsed correctly, 1k will return the right
amount, but the metric suffix will not be escaped once the char
pointer updat

lib: strto: fix metric suffix parsing in strtoul[l]

While 1kB or 1kiB will be parsed correctly, 1k will return the right
amount, but the metric suffix will not be escaped once the char
pointer updated. Fix this situation by simplifying the move of the
endp pointer.

Signed-off-by: Miquel Raynal <miquel.raynal@bootlin.com>
Reviewed-by: Stefan Roese <sr@denx.de>

show more ...

a353e6aa06-Sep-2018 Miquel Raynal <miquel.raynal@bootlin.com>

lib: strto: parse all lowercase metric prefixes in ustrtoul[l]

Both ustrtoul and ustrtoull interpret 1k but not 1m or 1g. Even if the
SI symbols for Mega and Giga are 'M' and 'G', certain entries of

lib: strto: parse all lowercase metric prefixes in ustrtoul[l]

Both ustrtoul and ustrtoull interpret 1k but not 1m or 1g. Even if the
SI symbols for Mega and Giga are 'M' and 'G', certain entries of
eg. mtdparts also use (wrongly) the metric prefix 'm' and 'g'.

I do not see how parsing lowercase prefixes could break anything, so
parse them like their uppercase counterpart.

Also, even though kiB is not equal to kB in general, lets not change
U-Boot behavior and always use kiB and kB (same applies for MiB vs. MB
and GiB vs. GB) as a representation for 1024 instead of 1000.

Signed-off-by: Miquel Raynal <miquel.raynal@bootlin.com>
Reviewed-by: Stefan Roese <sr@denx.de>

show more ...


/openbmc/u-boot/Documentation/devicetree/bindings/clk/fsl,mpc83xx-clk.txt
/openbmc/u-boot/Documentation/devicetree/bindings/cpu/fsl,mpc83xx.txt
/openbmc/u-boot/Documentation/devicetree/bindings/misc/fsl,mpc83xx-serdes.txt
/openbmc/u-boot/Documentation/devicetree/bindings/ram/fsl,mpc83xx-mem-controller.txt
/openbmc/u-boot/Documentation/devicetree/bindings/timer/fsl,mpc83xx-timer.txt
/openbmc/u-boot/MAINTAINERS
/openbmc/u-boot/Makefile
/openbmc/u-boot/README
/openbmc/u-boot/arch/Kconfig
/openbmc/u-boot/arch/arm/dts/armada-3720-turris-mox.dts
/openbmc/u-boot/arch/arm/dts/armada-8040-mcbin.dts
/openbmc/u-boot/arch/arm/include/asm/arch-mx6/mx6ull_pins.h
/openbmc/u-boot/arch/arm/mach-imx/mx6/Kconfig
/openbmc/u-boot/arch/arm/mach-mvebu/armada8k/cpu.c
/openbmc/u-boot/arch/arm/mach-mvebu/include/mach/soc.h
/openbmc/u-boot/arch/arm/mach-mvebu/spl.c
/openbmc/u-boot/arch/arm/mach-uniphier/board_late_init.c
/openbmc/u-boot/arch/powerpc/cpu/mpc83xx/cpu.c
/openbmc/u-boot/arch/powerpc/cpu/mpc83xx/cpu_init.c
/openbmc/u-boot/arch/powerpc/cpu/mpc83xx/serdes.c
/openbmc/u-boot/arch/powerpc/cpu/mpc83xx/spd_sdram.c
/openbmc/u-boot/arch/powerpc/cpu/mpc83xx/speed.c
/openbmc/u-boot/arch/powerpc/include/asm/arch-mpc83xx/soc.h
/openbmc/u-boot/arch/powerpc/include/asm/config.h
/openbmc/u-boot/arch/powerpc/include/asm/fsl_mpc83xx_serdes.h
/openbmc/u-boot/arch/powerpc/include/asm/global_data.h
/openbmc/u-boot/arch/powerpc/include/asm/io.h
/openbmc/u-boot/arch/powerpc/include/asm/processor.h
/openbmc/u-boot/arch/powerpc/lib/Makefile
/openbmc/u-boot/arch/powerpc/lib/interrupts.c
/openbmc/u-boot/arch/sandbox/dts/test.dts
/openbmc/u-boot/arch/x86/cpu/tangier/Makefile
/openbmc/u-boot/arch/x86/cpu/tangier/pinmux.c
/openbmc/u-boot/arch/x86/dts/edison.dts
/openbmc/u-boot/arch/x86/include/asm/arch-tangier/acpi/southcluster.asl
/openbmc/u-boot/arch/x86/include/asm/scu.h
/openbmc/u-boot/arch/x86/lib/scu.c
/openbmc/u-boot/board/CZ.NIC/turris_mox/turris_mox.c
/openbmc/u-boot/board/k+p/bootscripts/tpcboot.cmd
/openbmc/u-boot/board/technexion/pico-imx6ul/MAINTAINERS
/openbmc/u-boot/board/technexion/pico-imx6ul/Makefile
/openbmc/u-boot/board/technexion/pico-imx6ul/README
/openbmc/u-boot/board/technexion/pico-imx6ul/spl.c
/openbmc/u-boot/board/technexion/pico-imx7d/MAINTAINERS
/openbmc/u-boot/board/wandboard/README
/openbmc/u-boot/cmd/Makefile
/openbmc/u-boot/cmd/mtdparts.c
/openbmc/u-boot/cmd/ubi.c
/openbmc/u-boot/common/board_f.c
/openbmc/u-boot/common/spl/Kconfig
/openbmc/u-boot/common/spl/spl_spi.c
/openbmc/u-boot/configs/pico-hobbit-imx6ul_defconfig
/openbmc/u-boot/configs/pico-hobbit-imx7d_defconfig
/openbmc/u-boot/configs/pico-imx6ul_defconfig
/openbmc/u-boot/configs/pico-pi-imx6ul_defconfig
/openbmc/u-boot/configs/turris_mox_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.zynq
/openbmc/u-boot/doc/device-tree-bindings/mtd/spi-nand.txt
/openbmc/u-boot/doc/git-mailrc
/openbmc/u-boot/drivers/Makefile
/openbmc/u-boot/drivers/clk/Kconfig
/openbmc/u-boot/drivers/clk/Makefile
/openbmc/u-boot/drivers/clk/mpc83xx_clk.c
/openbmc/u-boot/drivers/clk/mpc83xx_clk.h
/openbmc/u-boot/drivers/clk/mvebu/armada-37xx-periph.c
/openbmc/u-boot/drivers/core/fdtaddr.c
/openbmc/u-boot/drivers/core/of_access.c
/openbmc/u-boot/drivers/core/ofnode.c
/openbmc/u-boot/drivers/core/root.c
/openbmc/u-boot/drivers/cpu/Kconfig
/openbmc/u-boot/drivers/cpu/Makefile
/openbmc/u-boot/drivers/cpu/cpu-uclass.c
/openbmc/u-boot/drivers/cpu/cpu_sandbox.c
/openbmc/u-boot/drivers/cpu/mpc83xx_cpu.c
/openbmc/u-boot/drivers/cpu/mpc83xx_cpu.h
/openbmc/u-boot/drivers/misc/Kconfig
/openbmc/u-boot/drivers/misc/Makefile
/openbmc/u-boot/drivers/misc/mpc83xx_serdes.c
/openbmc/u-boot/drivers/misc/mpc83xx_serdes.h
/openbmc/u-boot/drivers/mtd/Kconfig
/openbmc/u-boot/drivers/mtd/Makefile
/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/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/phy/marvell/comphy_a3700.h
/openbmc/u-boot/drivers/phy/marvell/comphy_core.c
/openbmc/u-boot/drivers/phy/marvell/comphy_core.h
/openbmc/u-boot/drivers/phy/marvell/comphy_cp110.c
/openbmc/u-boot/drivers/phy/marvell/comphy_hpipe.h
/openbmc/u-boot/drivers/phy/marvell/comphy_mux.c
/openbmc/u-boot/drivers/ram/Kconfig
/openbmc/u-boot/drivers/ram/Makefile
/openbmc/u-boot/drivers/ram/mpc83xx_sdram.c
/openbmc/u-boot/drivers/spi/Kconfig
/openbmc/u-boot/drivers/spi/Makefile
/openbmc/u-boot/drivers/spi/spi-mem.c
/openbmc/u-boot/drivers/sysreset/Kconfig
/openbmc/u-boot/drivers/sysreset/Makefile
/openbmc/u-boot/drivers/sysreset/sysreset-uclass.c
/openbmc/u-boot/drivers/sysreset/sysreset_mpc83xx.c
/openbmc/u-boot/drivers/sysreset/sysreset_mpc83xx.h
/openbmc/u-boot/drivers/sysreset/sysreset_sandbox.c
/openbmc/u-boot/drivers/timer/Kconfig
/openbmc/u-boot/drivers/timer/Makefile
/openbmc/u-boot/drivers/timer/mpc83xx_timer.c
/openbmc/u-boot/env/sf.c
/openbmc/u-boot/include/configs/MPC8313ERDB.h
/openbmc/u-boot/include/configs/clearfog.h
/openbmc/u-boot/include/configs/db-88f6820-gp.h
/openbmc/u-boot/include/configs/mvebu_armada-8k.h
/openbmc/u-boot/include/configs/nas220.h
/openbmc/u-boot/include/configs/pico-imx6ul.h
/openbmc/u-boot/include/configs/pico-imx7d.h
/openbmc/u-boot/include/configs/x86-common.h
/openbmc/u-boot/include/cpu.h
/openbmc/u-boot/include/dm/of_access.h
/openbmc/u-boot/include/dm/ofnode.h
/openbmc/u-boot/include/dm/uclass.h
/openbmc/u-boot/include/dt-bindings/clk/mpc83xx-clk.h
/openbmc/u-boot/include/dt-bindings/memory/mpc83xx-sdram.h
/openbmc/u-boot/include/init.h
/openbmc/u-boot/include/linux/mtd/mtd.h
/openbmc/u-boot/include/linux/mtd/nand.h
/openbmc/u-boot/include/linux/mtd/spinand.h
/openbmc/u-boot/include/mpc83xx.h
/openbmc/u-boot/include/mvebu/comphy.h
/openbmc/u-boot/include/spi-mem.h
/openbmc/u-boot/include/spi.h
/openbmc/u-boot/include/sysreset.h
strto.c
/openbmc/u-boot/test/dm/Makefile
/openbmc/u-boot/test/dm/cmd_dm.c
/openbmc/u-boot/test/dm/cpu.c
/openbmc/u-boot/test/dm/ofnode.c
/openbmc/u-boot/test/dm/sysreset.c
/openbmc/u-boot/tools/binman/README
/openbmc/u-boot/tools/kwboot.c
9c2cb97e03-Aug-2018 Bin Meng <bmeng.cn@gmail.com>

lib: bitrev: Sync with Linux kernel v4.17

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


/openbmc/u-boot/Kconfig
/openbmc/u-boot/MAINTAINERS
/openbmc/u-boot/Makefile
/openbmc/u-boot/arch/arm/Kconfig
/openbmc/u-boot/arch/arm/Makefile
/openbmc/u-boot/arch/arm/cpu/arm926ejs/cache.c
/openbmc/u-boot/arch/arm/cpu/arm926ejs/mx25/generic.c
/openbmc/u-boot/arch/arm/cpu/arm926ejs/mx27/generic.c
/openbmc/u-boot/arch/arm/cpu/arm926ejs/mxs/mxs.c
/openbmc/u-boot/arch/arm/cpu/arm926ejs/spear/cpu.c
/openbmc/u-boot/arch/arm/dts/Makefile
/openbmc/u-boot/arch/arm/dts/at91-vinco.dts
/openbmc/u-boot/arch/arm/dts/at91sam9260.dtsi
/openbmc/u-boot/arch/arm/dts/at91sam9261.dtsi
/openbmc/u-boot/arch/arm/dts/at91sam9263.dtsi
/openbmc/u-boot/arch/arm/dts/at91sam9g45.dtsi
/openbmc/u-boot/arch/arm/dts/at91sam9n12.dtsi
/openbmc/u-boot/arch/arm/dts/at91sam9rl.dtsi
/openbmc/u-boot/arch/arm/dts/at91sam9x5.dtsi
/openbmc/u-boot/arch/arm/dts/da850-evm-u-boot.dtsi
/openbmc/u-boot/arch/arm/dts/da850-evm.dts
/openbmc/u-boot/arch/arm/dts/k3-am65-main.dtsi
/openbmc/u-boot/arch/arm/dts/k3-am65.dtsi
/openbmc/u-boot/arch/arm/dts/k3-am654-base-board-u-boot.dtsi
/openbmc/u-boot/arch/arm/dts/k3-am654-base-board.dts
/openbmc/u-boot/arch/arm/dts/k3-am654.dtsi
/openbmc/u-boot/arch/arm/dts/sama5d27_som1.dtsi
/openbmc/u-boot/arch/arm/dts/sama5d3.dtsi
/openbmc/u-boot/arch/arm/dts/sama5d3xmb_cmp.dtsi
/openbmc/u-boot/arch/arm/dts/uniphier-ld11-global.dts
/openbmc/u-boot/arch/arm/dts/uniphier-ld11.dtsi
/openbmc/u-boot/arch/arm/dts/uniphier-ld20-global.dts
/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-pinctrl.dtsi
/openbmc/u-boot/arch/arm/dts/uniphier-pro4-ref.dts
/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.dtsi
/openbmc/u-boot/arch/arm/dts/uniphier-sld8.dtsi
/openbmc/u-boot/arch/arm/dts/usb_a9263.dts
/openbmc/u-boot/arch/arm/include/asm/arch-spear/spr_misc.h
/openbmc/u-boot/arch/arm/include/asm/armv7m.h
/openbmc/u-boot/arch/arm/include/asm/gpio.h
/openbmc/u-boot/arch/arm/include/asm/spl.h
/openbmc/u-boot/arch/arm/lib/crt0.S
/openbmc/u-boot/arch/arm/lib/relocate.S
/openbmc/u-boot/arch/arm/lib/vectors.S
/openbmc/u-boot/arch/arm/lib/vectors_m.S
/openbmc/u-boot/arch/arm/mach-at91/arm926ejs/Makefile
/openbmc/u-boot/arch/arm/mach-bcmstb/Kconfig
/openbmc/u-boot/arch/arm/mach-k3/Kconfig
/openbmc/u-boot/arch/arm/mach-k3/Makefile
/openbmc/u-boot/arch/arm/mach-k3/am6_init.c
/openbmc/u-boot/arch/arm/mach-k3/arm64-mmu.c
/openbmc/u-boot/arch/arm/mach-k3/config.mk
/openbmc/u-boot/arch/arm/mach-k3/include/mach/am6_hardware.h
/openbmc/u-boot/arch/arm/mach-k3/include/mach/am6_spl.h
/openbmc/u-boot/arch/arm/mach-k3/include/mach/clock.h
/openbmc/u-boot/arch/arm/mach-k3/include/mach/hardware.h
/openbmc/u-boot/arch/arm/mach-k3/include/mach/spl.h
/openbmc/u-boot/arch/arm/mach-omap2/boot-common.c
/openbmc/u-boot/arch/arm/mach-socfpga/include/mach/sdram_s10.h
/openbmc/u-boot/arch/arm/mach-uniphier/clk/clk-ld11.c
/openbmc/u-boot/arch/arm/mach-uniphier/clk/clk-ld4.c
/openbmc/u-boot/arch/arm/mach-uniphier/clk/clk-pro4.c
/openbmc/u-boot/arch/arm/mach-uniphier/sc-regs.h
/openbmc/u-boot/arch/m68k/cpu/mcf5445x/cpu_init.c
/openbmc/u-boot/arch/m68k/cpu/mcf5445x/speed.c
/openbmc/u-boot/arch/m68k/include/asm/byteorder.h
/openbmc/u-boot/arch/m68k/include/asm/global_data.h
/openbmc/u-boot/arch/m68k/include/asm/immap.h
/openbmc/u-boot/arch/sandbox/config.mk
/openbmc/u-boot/arch/sh/include/asm/config.h
/openbmc/u-boot/arch/sh/include/asm/cpu_sh7724.h
/openbmc/u-boot/arch/sh/lib/time.c
/openbmc/u-boot/board/broadcom/bcmstb/MAINTAINERS
/openbmc/u-boot/board/davinci/da8xxevm/MAINTAINERS
/openbmc/u-boot/board/davinci/da8xxevm/da850evm.c
/openbmc/u-boot/board/davinci/da8xxevm/omapl138_lcdk.c
/openbmc/u-boot/board/logicpd/am3517evm/am3517evm.c
/openbmc/u-boot/board/logicpd/omap3som/omap3logic.c
/openbmc/u-boot/board/pandora/pandora.c
/openbmc/u-boot/board/renesas/ap325rxa/cpld-ap325rxa.c
/openbmc/u-boot/board/ti/am65x/Kconfig
/openbmc/u-boot/board/ti/am65x/MAINTAINERS
/openbmc/u-boot/board/ti/am65x/Makefile
/openbmc/u-boot/board/ti/am65x/README
/openbmc/u-boot/board/ti/am65x/evm.c
/openbmc/u-boot/cmd/fpga.c
/openbmc/u-boot/cmd/part.c
/openbmc/u-boot/common/spl/Kconfig
/openbmc/u-boot/configs/am3517_evm_defconfig
/openbmc/u-boot/configs/am65x_evm_a53_defconfig
/openbmc/u-boot/configs/bcm7260_defconfig
/openbmc/u-boot/configs/bcm7445_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/omap3_logic_defconfig
/openbmc/u-boot/configs/omap3_pandora_defconfig
/openbmc/u-boot/configs/omapl138_lcdk_defconfig
/openbmc/u-boot/configs/socfpga_stratix10_defconfig
/openbmc/u-boot/configs/uniphier_ld4_sld8_defconfig
/openbmc/u-boot/configs/uniphier_v7_defconfig
/openbmc/u-boot/doc/device-tree-bindings/clock/ti,sci-clk.txt
/openbmc/u-boot/doc/device-tree-bindings/firmware/ti,sci.txt
/openbmc/u-boot/doc/device-tree-bindings/mailbox/k3-secure-proxy.txt
/openbmc/u-boot/doc/device-tree-bindings/power/ti,sci-pm-domain.txt
/openbmc/u-boot/doc/device-tree-bindings/remoteproc/k3-rproc.txt
/openbmc/u-boot/doc/device-tree-bindings/remoteproc/k3-system-controller.txt
/openbmc/u-boot/doc/device-tree-bindings/reset/ti,sci-reset.txt
/openbmc/u-boot/doc/device-tree-bindings/sysreset/ti,sci-sysreset.txt
/openbmc/u-boot/drivers/Makefile
/openbmc/u-boot/drivers/clk/Kconfig
/openbmc/u-boot/drivers/clk/Makefile
/openbmc/u-boot/drivers/clk/clk-ti-sci.c
/openbmc/u-boot/drivers/clk/clk_meson.c
/openbmc/u-boot/drivers/ddr/altera/sdram_s10.c
/openbmc/u-boot/drivers/firmware/Kconfig
/openbmc/u-boot/drivers/firmware/Makefile
/openbmc/u-boot/drivers/firmware/firmware-uclass.c
/openbmc/u-boot/drivers/firmware/ti_sci.c
/openbmc/u-boot/drivers/firmware/ti_sci.h
/openbmc/u-boot/drivers/fpga/Kconfig
/openbmc/u-boot/drivers/gpio/da8xx_gpio.c
/openbmc/u-boot/drivers/gpio/dwapb_gpio.c
/openbmc/u-boot/drivers/gpio/omap_gpio.c
/openbmc/u-boot/drivers/gpio/stm32f7_gpio.c
/openbmc/u-boot/drivers/i2c/Makefile
/openbmc/u-boot/drivers/i2c/i2c-uclass.c
/openbmc/u-boot/drivers/i2c/omap24xx_i2c.c
/openbmc/u-boot/drivers/mailbox/Kconfig
/openbmc/u-boot/drivers/mailbox/Makefile
/openbmc/u-boot/drivers/mailbox/k3-sec-proxy.c
/openbmc/u-boot/drivers/mmc/Kconfig
/openbmc/u-boot/drivers/mmc/Makefile
/openbmc/u-boot/drivers/mmc/davinci_mmc.c
/openbmc/u-boot/drivers/mmc/fsl_esdhc.c
/openbmc/u-boot/drivers/mmc/k3_arsan_sdhci.c
/openbmc/u-boot/drivers/mmc/mmc.c
/openbmc/u-boot/drivers/mmc/omap_hsmmc.c
/openbmc/u-boot/drivers/mmc/uniphier-sd.c
/openbmc/u-boot/drivers/pinctrl/pinctrl-single.c
/openbmc/u-boot/drivers/power/domain/Kconfig
/openbmc/u-boot/drivers/power/domain/Makefile
/openbmc/u-boot/drivers/power/domain/meson-gx-pwrc-vpu.c
/openbmc/u-boot/drivers/power/domain/power-domain-uclass.c
/openbmc/u-boot/drivers/power/domain/ti-sci-power-domain.c
/openbmc/u-boot/drivers/power/regulator/pbias_regulator.c
/openbmc/u-boot/drivers/remoteproc/Kconfig
/openbmc/u-boot/drivers/remoteproc/Makefile
/openbmc/u-boot/drivers/remoteproc/k3_rproc.c
/openbmc/u-boot/drivers/remoteproc/k3_system_controller.c
/openbmc/u-boot/drivers/remoteproc/rproc-uclass.c
/openbmc/u-boot/drivers/reset/Kconfig
/openbmc/u-boot/drivers/reset/Makefile
/openbmc/u-boot/drivers/reset/reset-ti-sci.c
/openbmc/u-boot/drivers/reset/reset-uclass.c
/openbmc/u-boot/drivers/serial/Kconfig
/openbmc/u-boot/drivers/serial/Makefile
/openbmc/u-boot/drivers/serial/arm_dcc.c
/openbmc/u-boot/drivers/serial/ns16550.c
/openbmc/u-boot/drivers/serial/serial_omap.c
/openbmc/u-boot/drivers/sysreset/Kconfig
/openbmc/u-boot/drivers/sysreset/Makefile
/openbmc/u-boot/drivers/sysreset/sysreset-ti-sci.c
/openbmc/u-boot/drivers/timer/omap-timer.c
/openbmc/u-boot/drivers/usb/host/ehci-generic.c
/openbmc/u-boot/fs/ubifs/super.c
/openbmc/u-boot/include/clk.h
/openbmc/u-boot/include/configs/MigoR.h
/openbmc/u-boot/include/configs/alt.h
/openbmc/u-boot/include/configs/am3517_evm.h
/openbmc/u-boot/include/configs/am65x_evm.h
/openbmc/u-boot/include/configs/ap325rxa.h
/openbmc/u-boot/include/configs/ap_sh4a_4a.h
/openbmc/u-boot/include/configs/armadillo-800eva.h
/openbmc/u-boot/include/configs/bcm7260.h
/openbmc/u-boot/include/configs/bcm7445.h
/openbmc/u-boot/include/configs/bcmstb.h
/openbmc/u-boot/include/configs/blanche.h
/openbmc/u-boot/include/configs/da850evm.h
/openbmc/u-boot/include/configs/ecovec.h
/openbmc/u-boot/include/configs/espt.h
/openbmc/u-boot/include/configs/gose.h
/openbmc/u-boot/include/configs/koelsch.h
/openbmc/u-boot/include/configs/lager.h
/openbmc/u-boot/include/configs/mpr2.h
/openbmc/u-boot/include/configs/ms7720se.h
/openbmc/u-boot/include/configs/ms7722se.h
/openbmc/u-boot/include/configs/ms7750se.h
/openbmc/u-boot/include/configs/omap3_pandora.h
/openbmc/u-boot/include/configs/porter.h
/openbmc/u-boot/include/configs/r0p7734.h
/openbmc/u-boot/include/configs/r2dplus.h
/openbmc/u-boot/include/configs/r7780mp.h
/openbmc/u-boot/include/configs/rcar-gen2-common.h
/openbmc/u-boot/include/configs/rsk7203.h
/openbmc/u-boot/include/configs/rsk7264.h
/openbmc/u-boot/include/configs/rsk7269.h
/openbmc/u-boot/include/configs/sh7752evb.h
/openbmc/u-boot/include/configs/sh7753evb.h
/openbmc/u-boot/include/configs/sh7757lcr.h
/openbmc/u-boot/include/configs/sh7763rdp.h
/openbmc/u-boot/include/configs/sh7785lcr.h
/openbmc/u-boot/include/configs/shmin.h
/openbmc/u-boot/include/configs/silk.h
/openbmc/u-boot/include/configs/socfpga_stratix10_socdk.h
/openbmc/u-boot/include/configs/stout.h
/openbmc/u-boot/include/configs/ti_omap3_common.h
/openbmc/u-boot/include/configs/uniphier.h
/openbmc/u-boot/include/dt-bindings/pinctrl/k3-am65.h
/openbmc/u-boot/include/linux/bitrev.h
/openbmc/u-boot/include/linux/soc/ti/k3-sec-proxy.h
/openbmc/u-boot/include/linux/soc/ti/ti_sci_protocol.h
/openbmc/u-boot/include/mailbox.h
/openbmc/u-boot/include/mmc.h
/openbmc/u-boot/include/power-domain.h
/openbmc/u-boot/include/remoteproc.h
/openbmc/u-boot/include/reset-uclass.h
/openbmc/u-boot/include/reset.h
bitrev.c
/openbmc/u-boot/scripts/Makefile.spl
/openbmc/u-boot/scripts/config_whitelist.txt
/openbmc/u-boot/test/py/tests/test_fpga.py
/openbmc/u-boot/tools/k3_fit_atf.sh
/openbmc/u-boot/tools/mkimage.c
dee37fc906-Aug-2018 Masahiro Yamada <yamada.masahiro@socionext.com>

Remove <inttypes.h> includes and PRI* usages in printf() entirely

In int-ll64.h, we always use the following typedefs:

typedef unsigned int u32;
typedef unsigned long uintptr_t;

Remove <inttypes.h> includes and PRI* usages in printf() entirely

In int-ll64.h, we always use the following typedefs:

typedef unsigned int u32;
typedef unsigned long uintptr_t;
typedef unsigned long long u64;

This does not need to match to the compiler's <inttypes.h>.
Do not include it.

The use of PRI* makes the code super-ugly. You can simply use
"l" for printing uintptr_t, "ll" for u64, and no modifier for u32.

Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>

show more ...


/openbmc/u-boot/.travis.yml
/openbmc/u-boot/Makefile
/openbmc/u-boot/README
/openbmc/u-boot/arch/arc/include/asm/types.h
/openbmc/u-boot/arch/arm/Makefile
/openbmc/u-boot/arch/arm/include/asm/types.h
/openbmc/u-boot/arch/arm/mach-omap2/omap3/lowlevel_init.S
/openbmc/u-boot/arch/m68k/include/asm/types.h
/openbmc/u-boot/arch/microblaze/include/asm/types.h
/openbmc/u-boot/arch/mips/include/asm/types.h
/openbmc/u-boot/arch/nds32/include/asm/types.h
/openbmc/u-boot/arch/powerpc/include/asm/types.h
/openbmc/u-boot/arch/riscv/include/asm/types.h
/openbmc/u-boot/arch/sandbox/include/asm/types.h
/openbmc/u-boot/arch/sh/include/asm/types.h
/openbmc/u-boot/arch/x86/include/asm/types.h
/openbmc/u-boot/arch/x86/lib/relocate.c
/openbmc/u-boot/arch/xtensa/include/asm/types.h
/openbmc/u-boot/board/raspberrypi/rpi/rpi.c
/openbmc/u-boot/cmd/mem.c
/openbmc/u-boot/common/cli_readline.c
/openbmc/u-boot/common/console.c
/openbmc/u-boot/common/fdt_support.c
/openbmc/u-boot/common/usb_storage.c
/openbmc/u-boot/config.mk
/openbmc/u-boot/configs/stm32mp15_basic_defconfig
/openbmc/u-boot/disk/part_efi.c
/openbmc/u-boot/doc/README.omap3
/openbmc/u-boot/drivers/mtd/nand/denali.c
/openbmc/u-boot/drivers/pci/pci-uclass.c
/openbmc/u-boot/drivers/pci/pci_sandbox.c
/openbmc/u-boot/drivers/scsi/scsi.c
/openbmc/u-boot/drivers/serial/sandbox.c
/openbmc/u-boot/drivers/serial/serial-uclass.c
/openbmc/u-boot/drivers/serial/serial_stm32.c
/openbmc/u-boot/fs/ext4/ext4_common.c
/openbmc/u-boot/include/asm-generic/int-ll64.h
/openbmc/u-boot/include/asm-generic/types.h
/openbmc/u-boot/include/common.h
/openbmc/u-boot/include/compiler.h
/openbmc/u-boot/include/linux/types.h
/openbmc/u-boot/include/serial.h
display_options.c
efi_loader/efi_boottime.c
efi_loader/efi_device_path.c
efi_loader/efi_disk.c
efi_loader/efi_gop.c
efi_loader/efi_memory.c
efi_loader/efi_net.c
efi_loader/efi_smbios.c
fdtdec.c
/openbmc/u-boot/scripts/config_whitelist.txt
/openbmc/u-boot/test/dm/Makefile
/openbmc/u-boot/test/dm/serial.c
/openbmc/u-boot/test/stdint/int-types.c
/openbmc/u-boot/test/stdint/test-includes.sh
/openbmc/u-boot/tools/buildman/func_test.py
/openbmc/u-boot/tools/env/Makefile
/openbmc/u-boot/tools/version.h
f850371909-Sep-2018 Marek Vasut <marek.vasut@gmail.com>

fdt: fix get_next_memory_node()

The get_next_memory_node() always sets mem to -1 , which is incorrect,
because then every iteration of memory bank parsing will start from the
first memory bank inste

fdt: fix get_next_memory_node()

The get_next_memory_node() always sets mem to -1 , which is incorrect,
because then every iteration of memory bank parsing will start from the
first memory bank instead of the previous one.

On systems with 1 memory bank defined in DT and CONFIG_NR_DRAM_BANKS=4 ,
like ie. r8a77965-salvator-x , this will result in U-Boot incorrectly
reporting four identical memory banks with the same memory configuration.

Fix this by setting mem to startoffset value, which restores the behavior
before the fixed patch was applied.

Signed-off-by: Marek Vasut <marek.vasut+renesas@gmail.com>
Cc: Jens Wiklander <jens.wiklander@linaro.org>
Cc: Simon Glass <sjg@chromium.org>
Cc: Tom Rini <trini@konsulko.com>
Fixes: 452bc121027d ("fdt: fix fdtdec_setup_memory_banksize()")
Tested-by: Michal Simek <michal.simek@xilinx.com> [on ZynqMP}

show more ...

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

lib/slre: remove superfluous assignment

It makes no sense to assign a value to 'res' if the next use of the
variable is an assignment.

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


/openbmc/u-boot/Makefile
/openbmc/u-boot/arch/arc/dts/hsdk.dts
/openbmc/u-boot/arch/arm/dts/Makefile
/openbmc/u-boot/arch/arm/dts/imx6sx-sabreauto-u-boot.dtsi
/openbmc/u-boot/arch/arm/dts/imx6sx-sabreauto.dts
/openbmc/u-boot/arch/arm/dts/imx6sx-sdb-u-boot.dtsi
/openbmc/u-boot/arch/arm/dts/imx6sx.dtsi
/openbmc/u-boot/arch/arm/dts/imx6ul-14x14-evk-u-boot.dtsi
/openbmc/u-boot/arch/arm/dts/imx6ul-14x14-evk.dts
/openbmc/u-boot/arch/arm/dts/imx6ul-9x9-evk-u-boot.dtsi
/openbmc/u-boot/arch/arm/dts/imx6ul-9x9-evk.dts
/openbmc/u-boot/arch/arm/dts/imx6ul.dtsi
/openbmc/u-boot/arch/arm/dts/imx7d-sdb-qspi-u-boot.dtsi
/openbmc/u-boot/arch/arm/dts/imx7d-sdb-qspi.dts
/openbmc/u-boot/arch/arm/dts/imx7d-sdb.dts
/openbmc/u-boot/arch/arm/dts/imx7d.dtsi
/openbmc/u-boot/arch/arm/dts/imx7s.dtsi
/openbmc/u-boot/arch/arm/dts/logicpd-torpedo-37xx-devkit-u-boot.dtsi
/openbmc/u-boot/arch/arm/include/asm/arch-mx25/imx-regs.h
/openbmc/u-boot/arch/arm/mach-imx/mx7/Makefile
/openbmc/u-boot/arch/arm/mach-imx/mx7/psci-mx7.c
/openbmc/u-boot/arch/arm/mach-imx/mx7/psci-suspend.S
/openbmc/u-boot/arch/arm/mach-imx/mx7/soc.c
/openbmc/u-boot/board/amlogic/p212/p212.c
/openbmc/u-boot/board/freescale/mx6sxsabreauto/mx6sxsabreauto.c
/openbmc/u-boot/board/freescale/mx6sxsabresd/mx6sxsabresd.c
/openbmc/u-boot/board/freescale/mx6ul_14x14_evk/mx6ul_14x14_evk.c
/openbmc/u-boot/board/freescale/mx7dsabresd/MAINTAINERS
/openbmc/u-boot/board/freescale/mx7dsabresd/mx7dsabresd.c
/openbmc/u-boot/board/toradex/colibri_imx7/Kconfig
/openbmc/u-boot/board/toradex/colibri_imx7/MAINTAINERS
/openbmc/u-boot/board/toradex/colibri_imx7/colibri_imx7.c
/openbmc/u-boot/board/toradex/common/tdx-cfg-block.c
/openbmc/u-boot/common/spl/Kconfig
/openbmc/u-boot/configs/10m50_defconfig
/openbmc/u-boot/configs/3c120_defconfig
/openbmc/u-boot/configs/A10-OLinuXino-Lime_defconfig
/openbmc/u-boot/configs/A10s-OLinuXino-M_defconfig
/openbmc/u-boot/configs/A13-OLinuXinoM_defconfig
/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-OLinuXino-Lime_defconfig
/openbmc/u-boot/configs/A20-OLinuXino_MICRO-eMMC_defconfig
/openbmc/u-boot/configs/A20-OLinuXino_MICRO_defconfig
/openbmc/u-boot/configs/A20-Olimex-SOM-EVB_defconfig
/openbmc/u-boot/configs/A20-Olimex-SOM204-EVB-eMMC_defconfig
/openbmc/u-boot/configs/A20-Olimex-SOM204-EVB_defconfig
/openbmc/u-boot/configs/A33-OLinuXino_defconfig
/openbmc/u-boot/configs/Ainol_AW1_defconfig
/openbmc/u-boot/configs/Ampe_A76_defconfig
/openbmc/u-boot/configs/Auxtek-T003_defconfig
/openbmc/u-boot/configs/Auxtek-T004_defconfig
/openbmc/u-boot/configs/Bananapi_M2_Ultra_defconfig
/openbmc/u-boot/configs/Bananapi_defconfig
/openbmc/u-boot/configs/Bananapi_m2m_defconfig
/openbmc/u-boot/configs/Bananapro_defconfig
/openbmc/u-boot/configs/CHIP_defconfig
/openbmc/u-boot/configs/CHIP_pro_defconfig
/openbmc/u-boot/configs/CSQ_CS908_defconfig
/openbmc/u-boot/configs/Chuwi_V7_CW0825_defconfig
/openbmc/u-boot/configs/Colombus_defconfig
/openbmc/u-boot/configs/Cubieboard2_defconfig
/openbmc/u-boot/configs/Cubieboard4_defconfig
/openbmc/u-boot/configs/Cubieboard_defconfig
/openbmc/u-boot/configs/Cubietruck_defconfig
/openbmc/u-boot/configs/Cubietruck_plus_defconfig
/openbmc/u-boot/configs/Empire_electronix_d709_defconfig
/openbmc/u-boot/configs/Empire_electronix_m712_defconfig
/openbmc/u-boot/configs/Hummingbird_A31_defconfig
/openbmc/u-boot/configs/Hyundai_A7HD_defconfig
/openbmc/u-boot/configs/Itead_Ibox_A20_defconfig
/openbmc/u-boot/configs/Lamobo_R1_defconfig
/openbmc/u-boot/configs/LicheePi_Zero_defconfig
/openbmc/u-boot/configs/Linksprite_pcDuino3_Nano_defconfig
/openbmc/u-boot/configs/Linksprite_pcDuino3_defconfig
/openbmc/u-boot/configs/Linksprite_pcDuino_defconfig
/openbmc/u-boot/configs/MK808C_defconfig
/openbmc/u-boot/configs/MPC8349EMDS_defconfig
/openbmc/u-boot/configs/MPC8569MDS_ATM_defconfig
/openbmc/u-boot/configs/MPC8569MDS_defconfig
/openbmc/u-boot/configs/MSI_Primo73_defconfig
/openbmc/u-boot/configs/MSI_Primo81_defconfig
/openbmc/u-boot/configs/Marsboard_A10_defconfig
/openbmc/u-boot/configs/Mele_A1000G_quad_defconfig
/openbmc/u-boot/configs/Mele_A1000_defconfig
/openbmc/u-boot/configs/Mele_I7_defconfig
/openbmc/u-boot/configs/Mele_M3_defconfig
/openbmc/u-boot/configs/Mele_M5_defconfig
/openbmc/u-boot/configs/Mele_M9_defconfig
/openbmc/u-boot/configs/Merrii_A80_Optimus_defconfig
/openbmc/u-boot/configs/Mini-X_defconfig
/openbmc/u-boot/configs/Nintendo_NES_Classic_Edition_defconfig
/openbmc/u-boot/configs/Orangepi_defconfig
/openbmc/u-boot/configs/Orangepi_mini_defconfig
/openbmc/u-boot/configs/SBx81LIFKW_defconfig
/openbmc/u-boot/configs/SBx81LIFXCAT_defconfig
/openbmc/u-boot/configs/Sinlinx_SinA31s_defconfig
/openbmc/u-boot/configs/Sinlinx_SinA33_defconfig
/openbmc/u-boot/configs/Sinovoip_BPI_M2_Plus_defconfig
/openbmc/u-boot/configs/Sinovoip_BPI_M2_defconfig
/openbmc/u-boot/configs/Sinovoip_BPI_M3_defconfig
/openbmc/u-boot/configs/Sunchip_CX-A99_defconfig
/openbmc/u-boot/configs/UTOO_P66_defconfig
/openbmc/u-boot/configs/Wexler_TAB7200_defconfig
/openbmc/u-boot/configs/Wits_Pro_A20_DKT_defconfig
/openbmc/u-boot/configs/Wobo_i5_defconfig
/openbmc/u-boot/configs/Yones_Toptech_BD1078_defconfig
/openbmc/u-boot/configs/Yones_Toptech_BS1078_V2_defconfig
/openbmc/u-boot/configs/a64-olinuxino_defconfig
/openbmc/u-boot/configs/adp-ae3xx_defconfig
/openbmc/u-boot/configs/adp-ag101p_defconfig
/openbmc/u-boot/configs/alt_defconfig
/openbmc/u-boot/configs/am335x_boneblack_vboot_defconfig
/openbmc/u-boot/configs/am335x_evm_defconfig
/openbmc/u-boot/configs/am335x_hs_evm_defconfig
/openbmc/u-boot/configs/am335x_hs_evm_uart_defconfig
/openbmc/u-boot/configs/am335x_pdu001_defconfig
/openbmc/u-boot/configs/am3517_evm_defconfig
/openbmc/u-boot/configs/am43xx_evm_defconfig
/openbmc/u-boot/configs/am43xx_evm_qspiboot_defconfig
/openbmc/u-boot/configs/am43xx_evm_rtconly_defconfig
/openbmc/u-boot/configs/am43xx_evm_usbhost_boot_defconfig
/openbmc/u-boot/configs/am43xx_hs_evm_defconfig
/openbmc/u-boot/configs/am57xx_evm_defconfig
/openbmc/u-boot/configs/am57xx_hs_evm_defconfig
/openbmc/u-boot/configs/amarula_a64_relic_defconfig
/openbmc/u-boot/configs/ap121_defconfig
/openbmc/u-boot/configs/ap143_defconfig
/openbmc/u-boot/configs/ap325rxa_defconfig
/openbmc/u-boot/configs/ap_sh4a_4a_defconfig
/openbmc/u-boot/configs/apalis-tk1_defconfig
/openbmc/u-boot/configs/apalis_t30_defconfig
/openbmc/u-boot/configs/armadillo-800eva_defconfig
/openbmc/u-boot/configs/arndale_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/avnet_ultra96_rev1_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/ba10_tv_box_defconfig
/openbmc/u-boot/configs/bananapi_m1_plus_defconfig
/openbmc/u-boot/configs/bananapi_m2_berry_defconfig
/openbmc/u-boot/configs/bananapi_m64_defconfig
/openbmc/u-boot/configs/bayleybay_defconfig
/openbmc/u-boot/configs/bcm968380gerg_ram_defconfig
/openbmc/u-boot/configs/beaver_defconfig
/openbmc/u-boot/configs/bitmain_antminer_s9_defconfig
/openbmc/u-boot/configs/bk4r1_defconfig
/openbmc/u-boot/configs/blanche_defconfig
/openbmc/u-boot/configs/boston32r2_defconfig
/openbmc/u-boot/configs/boston32r2el_defconfig
/openbmc/u-boot/configs/boston32r6_defconfig
/openbmc/u-boot/configs/boston32r6el_defconfig
/openbmc/u-boot/configs/boston64r2_defconfig
/openbmc/u-boot/configs/boston64r2el_defconfig
/openbmc/u-boot/configs/boston64r6_defconfig
/openbmc/u-boot/configs/boston64r6el_defconfig
/openbmc/u-boot/configs/brppt1_mmc_defconfig
/openbmc/u-boot/configs/brppt1_nand_defconfig
/openbmc/u-boot/configs/brppt1_spi_defconfig
/openbmc/u-boot/configs/bubblegum_96_defconfig
/openbmc/u-boot/configs/cardhu_defconfig
/openbmc/u-boot/configs/cei-tk1-som_defconfig
/openbmc/u-boot/configs/cherryhill_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/chromebox_panther_defconfig
/openbmc/u-boot/configs/clearfog_defconfig
/openbmc/u-boot/configs/cm_fx6_defconfig
/openbmc/u-boot/configs/cm_t35_defconfig
/openbmc/u-boot/configs/colibri-imx6ull_defconfig
/openbmc/u-boot/configs/colibri_imx7_defconfig
/openbmc/u-boot/configs/colibri_t20_defconfig
/openbmc/u-boot/configs/colibri_t30_defconfig
/openbmc/u-boot/configs/colibri_vf_defconfig
/openbmc/u-boot/configs/colorfly_e708_q1_defconfig
/openbmc/u-boot/configs/comtrend_ar5315u_ram_defconfig
/openbmc/u-boot/configs/comtrend_ar5387un_ram_defconfig
/openbmc/u-boot/configs/comtrend_ct5361_ram_defconfig
/openbmc/u-boot/configs/comtrend_vr3032u_ram_defconfig
/openbmc/u-boot/configs/comtrend_wap5813n_ram_defconfig
/openbmc/u-boot/configs/conga-qeval20-qa3-e3845-internal-uart_defconfig
/openbmc/u-boot/configs/conga-qeval20-qa3-e3845_defconfig
/openbmc/u-boot/configs/controlcenterdc_defconfig
/openbmc/u-boot/configs/corvus_defconfig
/openbmc/u-boot/configs/cougarcanyon2_defconfig
/openbmc/u-boot/configs/crownbay_defconfig
/openbmc/u-boot/configs/d2net_v2_defconfig
/openbmc/u-boot/configs/da850_am18xxevm_defconfig
/openbmc/u-boot/configs/da850evm_defconfig
/openbmc/u-boot/configs/da850evm_direct_nor_defconfig
/openbmc/u-boot/configs/dalmore_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/dfi-bt700-q7x-151_defconfig
/openbmc/u-boot/configs/difrnce_dit4350_defconfig
/openbmc/u-boot/configs/display5_defconfig
/openbmc/u-boot/configs/dns325_defconfig
/openbmc/u-boot/configs/dockstar_defconfig
/openbmc/u-boot/configs/dra7xx_evm_defconfig
/openbmc/u-boot/configs/dra7xx_hs_evm_defconfig
/openbmc/u-boot/configs/draco_defconfig
/openbmc/u-boot/configs/dragonboard410c_defconfig
/openbmc/u-boot/configs/dragonboard820c_defconfig
/openbmc/u-boot/configs/dreamplug_defconfig
/openbmc/u-boot/configs/ds109_defconfig
/openbmc/u-boot/configs/ds414_defconfig
/openbmc/u-boot/configs/dserve_dsrv9703c_defconfig
/openbmc/u-boot/configs/duovero_defconfig
/openbmc/u-boot/configs/e2220-1170_defconfig
/openbmc/u-boot/configs/ecovec_defconfig
/openbmc/u-boot/configs/edison_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/emdk_defconfig
/openbmc/u-boot/configs/espresso7420_defconfig
/openbmc/u-boot/configs/espt_defconfig
/openbmc/u-boot/configs/etamin_defconfig
/openbmc/u-boot/configs/ethernut5_defconfig
/openbmc/u-boot/configs/evb-ast2500_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/ga10h_v1_1_defconfig
/openbmc/u-boot/configs/galileo_defconfig
/openbmc/u-boot/configs/geekbox_defconfig
/openbmc/u-boot/configs/goflexhome_defconfig
/openbmc/u-boot/configs/gose_defconfig
/openbmc/u-boot/configs/gt90h_v4_defconfig
/openbmc/u-boot/configs/gurnard_defconfig
/openbmc/u-boot/configs/guruplug_defconfig
/openbmc/u-boot/configs/h8_homlet_v2_defconfig
/openbmc/u-boot/configs/harmony_defconfig
/openbmc/u-boot/configs/helios4_defconfig
/openbmc/u-boot/configs/hikey_defconfig
/openbmc/u-boot/configs/hsdk_defconfig
/openbmc/u-boot/configs/huawei_hg556a_ram_defconfig
/openbmc/u-boot/configs/i12-tvbox_defconfig
/openbmc/u-boot/configs/iNet_3F_defconfig
/openbmc/u-boot/configs/iNet_3W_defconfig
/openbmc/u-boot/configs/iNet_86VS_defconfig
/openbmc/u-boot/configs/iNet_D978_rev2_defconfig
/openbmc/u-boot/configs/ib62x0_defconfig
/openbmc/u-boot/configs/icnova-a20-swac_defconfig
/openbmc/u-boot/configs/iconnect_defconfig
/openbmc/u-boot/configs/igep0032_defconfig
/openbmc/u-boot/configs/igep00x0_defconfig
/openbmc/u-boot/configs/imgtec_xilfpga_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/imx6q_logic_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/inet1_defconfig
/openbmc/u-boot/configs/inet86dz_defconfig
/openbmc/u-boot/configs/inet97fv2_defconfig
/openbmc/u-boot/configs/inet98v_rev2_defconfig
/openbmc/u-boot/configs/inet9f_rev03_defconfig
/openbmc/u-boot/configs/inet_q972_defconfig
/openbmc/u-boot/configs/inetspace_v2_defconfig
/openbmc/u-boot/configs/jesurun_q5_defconfig
/openbmc/u-boot/configs/jetson-tk1_defconfig
/openbmc/u-boot/configs/k2e_evm_defconfig
/openbmc/u-boot/configs/k2e_hs_evm_defconfig
/openbmc/u-boot/configs/k2g_evm_defconfig
/openbmc/u-boot/configs/k2g_hs_evm_defconfig
/openbmc/u-boot/configs/k2hk_evm_defconfig
/openbmc/u-boot/configs/k2hk_hs_evm_defconfig
/openbmc/u-boot/configs/k2l_evm_defconfig
/openbmc/u-boot/configs/k2l_hs_evm_defconfig
/openbmc/u-boot/configs/khadas-vim_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/koelsch_defconfig
/openbmc/u-boot/configs/kp_imx53_defconfig
/openbmc/u-boot/configs/kylin-rk3036_defconfig
/openbmc/u-boot/configs/kzm9g_defconfig
/openbmc/u-boot/configs/lager_defconfig
/openbmc/u-boot/configs/libretech-cc_defconfig
/openbmc/u-boot/configs/libretech_all_h3_cc_h2_plus_defconfig
/openbmc/u-boot/configs/libretech_all_h3_cc_h3_defconfig
/openbmc/u-boot/configs/libretech_all_h3_cc_h5_defconfig
/openbmc/u-boot/configs/lion-rk3368_defconfig
/openbmc/u-boot/configs/ls1012a2g5rdb_qspi_defconfig
/openbmc/u-boot/configs/ls1012afrdm_qspi_defconfig
/openbmc/u-boot/configs/ls1012afrwy_qspi_SECURE_BOOT_defconfig
/openbmc/u-boot/configs/ls1012afrwy_qspi_defconfig
/openbmc/u-boot/configs/ls1012aqds_qspi_defconfig
/openbmc/u-boot/configs/ls1012ardb_qspi_SECURE_BOOT_defconfig
/openbmc/u-boot/configs/ls1012ardb_qspi_defconfig
/openbmc/u-boot/configs/ls1021aiot_qspi_defconfig
/openbmc/u-boot/configs/ls1021aiot_sdcard_defconfig
/openbmc/u-boot/configs/ls1021aqds_ddr4_nor_defconfig
/openbmc/u-boot/configs/ls1021aqds_ddr4_nor_lpuart_defconfig
/openbmc/u-boot/configs/ls1021aqds_nand_defconfig
/openbmc/u-boot/configs/ls1021aqds_nor_SECURE_BOOT_defconfig
/openbmc/u-boot/configs/ls1021aqds_nor_defconfig
/openbmc/u-boot/configs/ls1021aqds_nor_lpuart_defconfig
/openbmc/u-boot/configs/ls1021aqds_qspi_defconfig
/openbmc/u-boot/configs/ls1021aqds_sdcard_ifc_defconfig
/openbmc/u-boot/configs/ls1021aqds_sdcard_qspi_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_SECURE_BOOT_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_SECURE_BOOT_defconfig
/openbmc/u-boot/configs/ls1043ardb_sdcard_defconfig
/openbmc/u-boot/configs/ls1046aqds_SECURE_BOOT_defconfig
/openbmc/u-boot/configs/ls1046aqds_defconfig
/openbmc/u-boot/configs/ls1046aqds_lpuart_defconfig
/openbmc/u-boot/configs/ls1046aqds_nand_defconfig
/openbmc/u-boot/configs/ls1046aqds_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_qspi_spl_defconfig
/openbmc/u-boot/configs/ls1046ardb_sdcard_SECURE_BOOT_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_SECURE_BOOT_defconfig
/openbmc/u-boot/configs/ls1088ardb_sdcard_qspi_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/ls2081ardb_defconfig
/openbmc/u-boot/configs/ls2088ardb_qspi_SECURE_BOOT_defconfig
/openbmc/u-boot/configs/ls2088ardb_qspi_defconfig
/openbmc/u-boot/configs/lschlv2_defconfig
/openbmc/u-boot/configs/lsxhl_defconfig
/openbmc/u-boot/configs/malta64_defconfig
/openbmc/u-boot/configs/malta64el_defconfig
/openbmc/u-boot/configs/malta_defconfig
/openbmc/u-boot/configs/maltael_defconfig
/openbmc/u-boot/configs/maxbcm_defconfig
/openbmc/u-boot/configs/medcom-wide_defconfig
/openbmc/u-boot/configs/meesc_dataflash_defconfig
/openbmc/u-boot/configs/meesc_defconfig
/openbmc/u-boot/configs/mgcoge3un_defconfig
/openbmc/u-boot/configs/microblaze-generic_defconfig
/openbmc/u-boot/configs/minnowmax_defconfig
/openbmc/u-boot/configs/miqi-rk3288_defconfig
/openbmc/u-boot/configs/mixtile_loftq_defconfig
/openbmc/u-boot/configs/mk802_a10s_defconfig
/openbmc/u-boot/configs/mk802_defconfig
/openbmc/u-boot/configs/mk802ii_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/mx53cx9020_defconfig
/openbmc/u-boot/configs/mx6slevk_defconfig
/openbmc/u-boot/configs/mx6slevk_spinor_defconfig
/openbmc/u-boot/configs/mx6slevk_spl_defconfig
/openbmc/u-boot/configs/mx6sllevk_defconfig
/openbmc/u-boot/configs/mx6sllevk_plugin_defconfig
/openbmc/u-boot/configs/mx6sxsabreauto_defconfig
/openbmc/u-boot/configs/mx6sxsabresd_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/mx6ull_14x14_evk_defconfig
/openbmc/u-boot/configs/mx6ull_14x14_evk_plugin_defconfig
/openbmc/u-boot/configs/mx7dsabresd_defconfig
/openbmc/u-boot/configs/mx7dsabresd_qspi_defconfig
/openbmc/u-boot/configs/mx7ulp_evk_defconfig
/openbmc/u-boot/configs/mx7ulp_evk_plugin_defconfig
/openbmc/u-boot/configs/nanopi-k2_defconfig
/openbmc/u-boot/configs/nanopi_a64_defconfig
/openbmc/u-boot/configs/nanopi_m1_defconfig
/openbmc/u-boot/configs/nanopi_m1_plus_defconfig
/openbmc/u-boot/configs/nanopi_neo2_defconfig
/openbmc/u-boot/configs/nanopi_neo_air_defconfig
/openbmc/u-boot/configs/nanopi_neo_defconfig
/openbmc/u-boot/configs/nanopi_neo_plus2_defconfig
/openbmc/u-boot/configs/nas220_defconfig
/openbmc/u-boot/configs/net2big_v2_defconfig
/openbmc/u-boot/configs/netgear_cg3100d_ram_defconfig
/openbmc/u-boot/configs/netgear_dgnd3700v2_ram_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/nyan-big_defconfig
/openbmc/u-boot/configs/odroid-c2_defconfig
/openbmc/u-boot/configs/odroid-xu3_defconfig
/openbmc/u-boot/configs/odroid_defconfig
/openbmc/u-boot/configs/omap3_beagle_defconfig
/openbmc/u-boot/configs/omap3_evm_defconfig
/openbmc/u-boot/configs/omap3_logic_defconfig
/openbmc/u-boot/configs/omap3_overo_defconfig
/openbmc/u-boot/configs/omap3_zoom1_defconfig
/openbmc/u-boot/configs/omapl138_lcdk_defconfig
/openbmc/u-boot/configs/openrd_base_defconfig
/openbmc/u-boot/configs/openrd_client_defconfig
/openbmc/u-boot/configs/openrd_ultimate_defconfig
/openbmc/u-boot/configs/opos6uldev_defconfig
/openbmc/u-boot/configs/orangepi_2_defconfig
/openbmc/u-boot/configs/orangepi_lite_defconfig
/openbmc/u-boot/configs/orangepi_one_defconfig
/openbmc/u-boot/configs/orangepi_one_plus_defconfig
/openbmc/u-boot/configs/orangepi_pc2_defconfig
/openbmc/u-boot/configs/orangepi_pc_defconfig
/openbmc/u-boot/configs/orangepi_pc_plus_defconfig
/openbmc/u-boot/configs/orangepi_plus2e_defconfig
/openbmc/u-boot/configs/orangepi_plus_defconfig
/openbmc/u-boot/configs/orangepi_prime_defconfig
/openbmc/u-boot/configs/orangepi_r1_defconfig
/openbmc/u-boot/configs/orangepi_win_defconfig
/openbmc/u-boot/configs/orangepi_zero_defconfig
/openbmc/u-boot/configs/orangepi_zero_plus2_defconfig
/openbmc/u-boot/configs/orangepi_zero_plus_defconfig
/openbmc/u-boot/configs/origen_defconfig
/openbmc/u-boot/configs/p212_defconfig
/openbmc/u-boot/configs/p2371-0000_defconfig
/openbmc/u-boot/configs/p2371-2180_defconfig
/openbmc/u-boot/configs/p2571_defconfig
/openbmc/u-boot/configs/p2771-0000-000_defconfig
/openbmc/u-boot/configs/p2771-0000-500_defconfig
/openbmc/u-boot/configs/parrot_r16_defconfig
/openbmc/u-boot/configs/paz00_defconfig
/openbmc/u-boot/configs/pcm052_defconfig
/openbmc/u-boot/configs/peach-pi_defconfig
/openbmc/u-boot/configs/peach-pit_defconfig
/openbmc/u-boot/configs/phycore-rk3288_defconfig
/openbmc/u-boot/configs/pic32mzdask_defconfig
/openbmc/u-boot/configs/pine64_plus_defconfig
/openbmc/u-boot/configs/pine_h64_defconfig
/openbmc/u-boot/configs/plutux_defconfig
/openbmc/u-boot/configs/pm9261_defconfig
/openbmc/u-boot/configs/pm9263_defconfig
/openbmc/u-boot/configs/pogo_e02_defconfig
/openbmc/u-boot/configs/polaroid_mid2407pxe03_defconfig
/openbmc/u-boot/configs/polaroid_mid2809pxe04_defconfig
/openbmc/u-boot/configs/poplar_defconfig
/openbmc/u-boot/configs/popmetal-rk3288_defconfig
/openbmc/u-boot/configs/porter_defconfig
/openbmc/u-boot/configs/pov_protab2_ips9_defconfig
/openbmc/u-boot/configs/puma-rk3399_defconfig
/openbmc/u-boot/configs/pxm2_defconfig
/openbmc/u-boot/configs/q8_a13_tablet_defconfig
/openbmc/u-boot/configs/q8_a23_tablet_800x480_defconfig
/openbmc/u-boot/configs/q8_a33_tablet_1024x600_defconfig
/openbmc/u-boot/configs/q8_a33_tablet_800x480_defconfig
/openbmc/u-boot/configs/qemu-ppce500_defconfig
/openbmc/u-boot/configs/qemu-x86_64_defconfig
/openbmc/u-boot/configs/qemu-x86_defconfig
/openbmc/u-boot/configs/r0p7734_defconfig
/openbmc/u-boot/configs/r2dplus_defconfig
/openbmc/u-boot/configs/r7-tv-dongle_defconfig
/openbmc/u-boot/configs/r8a7795_salvator-x_defconfig
/openbmc/u-boot/configs/r8a7795_ulcb_defconfig
/openbmc/u-boot/configs/r8a77965_salvator-x_defconfig
/openbmc/u-boot/configs/r8a7796_salvator-x_defconfig
/openbmc/u-boot/configs/r8a7796_ulcb_defconfig
/openbmc/u-boot/configs/r8a77970_eagle_defconfig
/openbmc/u-boot/configs/r8a77990_ebisu_defconfig
/openbmc/u-boot/configs/r8a77995_draak_defconfig
/openbmc/u-boot/configs/rastaban_defconfig
/openbmc/u-boot/configs/rock2_defconfig
/openbmc/u-boot/configs/rock_defconfig
/openbmc/u-boot/configs/rpi_0_w_defconfig
/openbmc/u-boot/configs/rpi_2_defconfig
/openbmc/u-boot/configs/rpi_3_32b_defconfig
/openbmc/u-boot/configs/rpi_3_defconfig
/openbmc/u-boot/configs/rpi_defconfig
/openbmc/u-boot/configs/rut_defconfig
/openbmc/u-boot/configs/s5p_goni_defconfig
/openbmc/u-boot/configs/s5pc210_universal_defconfig
/openbmc/u-boot/configs/sagem_f@st1704_ram_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/sbc8349_PCI_33_defconfig
/openbmc/u-boot/configs/sbc8349_PCI_66_defconfig
/openbmc/u-boot/configs/sbc8349_defconfig
/openbmc/u-boot/configs/sbc8641d_defconfig
/openbmc/u-boot/configs/seaboard_defconfig
/openbmc/u-boot/configs/sfr_nb4-ser_ram_defconfig
/openbmc/u-boot/configs/sh7752evb_defconfig
/openbmc/u-boot/configs/sh7753evb_defconfig
/openbmc/u-boot/configs/sh7757lcr_defconfig
/openbmc/u-boot/configs/sh7763rdp_defconfig
/openbmc/u-boot/configs/sheep-rk3368_defconfig
/openbmc/u-boot/configs/sheevaplug_defconfig
/openbmc/u-boot/configs/silk_defconfig
/openbmc/u-boot/configs/smartweb_defconfig
/openbmc/u-boot/configs/smdk5250_defconfig
/openbmc/u-boot/configs/smdk5420_defconfig
/openbmc/u-boot/configs/smdkc100_defconfig
/openbmc/u-boot/configs/smdkv310_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_sockit_defconfig
/openbmc/u-boot/configs/socfpga_socrates_defconfig
/openbmc/u-boot/configs/socfpga_sr1500_defconfig
/openbmc/u-boot/configs/socfpga_stratix10_defconfig
/openbmc/u-boot/configs/socfpga_vining_fpga_defconfig
/openbmc/u-boot/configs/som-db5800-som-6867_defconfig
/openbmc/u-boot/configs/sopine_baseboard_defconfig
/openbmc/u-boot/configs/spring_defconfig
/openbmc/u-boot/configs/stih410-b2260_defconfig
/openbmc/u-boot/configs/stm32f429-discovery_defconfig
/openbmc/u-boot/configs/stm32f429-evaluation_defconfig
/openbmc/u-boot/configs/stm32f469-discovery_defconfig
/openbmc/u-boot/configs/stm32f746-disco_defconfig
/openbmc/u-boot/configs/stm32h743-disco_defconfig
/openbmc/u-boot/configs/stm32h743-eval_defconfig
/openbmc/u-boot/configs/stm32mp15_basic_defconfig
/openbmc/u-boot/configs/stout_defconfig
/openbmc/u-boot/configs/stv0991_defconfig
/openbmc/u-boot/configs/sun8i_a23_evb_defconfig
/openbmc/u-boot/configs/sunxi_Gemei_G9_defconfig
/openbmc/u-boot/configs/syzygy_hub_defconfig
/openbmc/u-boot/configs/taurus_defconfig
/openbmc/u-boot/configs/tb100_defconfig
/openbmc/u-boot/configs/tbs_a711_defconfig
/openbmc/u-boot/configs/tec-ng_defconfig
/openbmc/u-boot/configs/tec_defconfig
/openbmc/u-boot/configs/theadorable-x86-conga-qa3-e3845-pcie-x4_defconfig
/openbmc/u-boot/configs/theadorable-x86-conga-qa3-e3845_defconfig
/openbmc/u-boot/configs/theadorable-x86-dfi-bt700_defconfig
/openbmc/u-boot/configs/theadorable_debug_defconfig
/openbmc/u-boot/configs/thuban_defconfig
/openbmc/u-boot/configs/thunderx_88xx_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/tplink_wdr4300_defconfig
/openbmc/u-boot/configs/trats2_defconfig
/openbmc/u-boot/configs/trats_defconfig
/openbmc/u-boot/configs/trimslice_defconfig
/openbmc/u-boot/configs/turris_mox_defconfig
/openbmc/u-boot/configs/turris_omnia_defconfig
/openbmc/u-boot/configs/uniphier_ld4_sld8_defconfig
/openbmc/u-boot/configs/uniphier_v7_defconfig
/openbmc/u-boot/configs/uniphier_v8_defconfig
/openbmc/u-boot/configs/usb_a9263_dataflash_defconfig
/openbmc/u-boot/configs/vct_platinum_defconfig
/openbmc/u-boot/configs/vct_platinum_onenand_defconfig
/openbmc/u-boot/configs/vct_premium_defconfig
/openbmc/u-boot/configs/vct_premium_onenand_defconfig
/openbmc/u-boot/configs/ve8313_defconfig
/openbmc/u-boot/configs/venice2_defconfig
/openbmc/u-boot/configs/ventana_defconfig
/openbmc/u-boot/configs/vexpress_aemv8a_juno_defconfig
/openbmc/u-boot/configs/vexpress_ca15_tc2_defconfig
/openbmc/u-boot/configs/vexpress_ca5x2_defconfig
/openbmc/u-boot/configs/vexpress_ca9x4_defconfig
/openbmc/u-boot/configs/vf610twr_defconfig
/openbmc/u-boot/configs/vf610twr_nand_defconfig
/openbmc/u-boot/configs/vinco_defconfig
/openbmc/u-boot/configs/vyasa-rk3288_defconfig
/openbmc/u-boot/configs/wb50n_defconfig
/openbmc/u-boot/configs/xilinx_zynqmp_mini_emmc0_defconfig
/openbmc/u-boot/configs/xilinx_zynqmp_mini_emmc1_defconfig
/openbmc/u-boot/configs/xilinx_zynqmp_mini_nand_defconfig
/openbmc/u-boot/configs/xilinx_zynqmp_mini_qspi_defconfig
/openbmc/u-boot/configs/xilinx_zynqmp_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/zynq_cc108_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_microzed_defconfig
/openbmc/u-boot/configs/zynq_minized_defconfig
/openbmc/u-boot/configs/zynq_picozed_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_zc770_xm012_defconfig
/openbmc/u-boot/configs/zynq_zc770_xm013_defconfig
/openbmc/u-boot/configs/zynq_zed_defconfig
/openbmc/u-boot/configs/zynq_zybo_defconfig
/openbmc/u-boot/configs/zynq_zybo_z7_defconfig
/openbmc/u-boot/drivers/watchdog/Makefile
/openbmc/u-boot/include/configs/cl-som-imx7.h
/openbmc/u-boot/include/configs/colibri_imx7.h
/openbmc/u-boot/include/configs/mx6sxsabresd.h
/openbmc/u-boot/include/configs/mx6ul_14x14_evk.h
/openbmc/u-boot/include/configs/mx7dsabresd.h
/openbmc/u-boot/include/configs/qemu-arm.h
slre.c
e3332e1a24-Aug-2018 Masahiro Yamada <yamada.masahiro@socionext.com>

Make kmalloc'ed memory really DMA-safe

In Linux, the memory returned by kmalloc() is DMA-capable.
However, it is not true in U-Boot.

At a glance, kmalloc() in U-Boot returns address aligned with
AR

Make kmalloc'ed memory really DMA-safe

In Linux, the memory returned by kmalloc() is DMA-capable.
However, it is not true in U-Boot.

At a glance, kmalloc() in U-Boot returns address aligned with
ARCH_DMA_MINALIGN. However, it never pads the allocated memory.
This half-way house is completely useless because calling kmalloc()
and malloc() in this order causes a cache sharing problem.

Change the implementation to call malloc_cache_aligned(), which
allocates really DMA-capable memory.

Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>

show more ...

cbe503fb23-Aug-2018 Bin Meng <bmeng.cn@gmail.com>

efi: stub: Pass EFI system table address to U-Boot payload

This updates the EFI stub codes to pass UEFI BIOS's system table
address to U-Boot payload so that U-Boot can utilize it.

Signed-off-by: B

efi: stub: Pass EFI system table address to U-Boot payload

This updates the EFI stub codes to pass UEFI BIOS's system table
address to U-Boot payload so that U-Boot can utilize it.

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

show more ...


/openbmc/u-boot/arch/arm/Kconfig
/openbmc/u-boot/arch/arm/dts/socfpga_arria10.dtsi
/openbmc/u-boot/arch/arm/dts/socfpga_arria10_socdk.dtsi
/openbmc/u-boot/arch/arm/mach-bcmstb/include/mach/timer.h
/openbmc/u-boot/arch/arm/mach-rockchip/rk3188-board-spl.c
/openbmc/u-boot/arch/arm/mach-rockchip/rk3288-board-spl.c
/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_arria10.c
/openbmc/u-boot/arch/arm/mach-socfpga/include/mach/clock_manager_arria10.h
/openbmc/u-boot/arch/arm/mach-socfpga/include/mach/misc.h
/openbmc/u-boot/arch/arm/mach-socfpga/mailbox_s10.c
/openbmc/u-boot/arch/arm/mach-socfpga/misc_arria10.c
/openbmc/u-boot/arch/arm/mach-socfpga/spl_a10.c
/openbmc/u-boot/arch/arm/mach-socfpga/spl_s10.c
/openbmc/u-boot/arch/sandbox/dts/test.dts
/openbmc/u-boot/arch/x86/cpu/efi/payload.c
/openbmc/u-boot/board/amlogic/nanopi-k2/nanopi-k2.c
/openbmc/u-boot/board/amlogic/odroid-c2/odroid-c2.c
/openbmc/u-boot/board/compulab/cm_t3517/cm_t3517.c
/openbmc/u-boot/cmd/Kconfig
/openbmc/u-boot/cmd/Makefile
/openbmc/u-boot/cmd/bind.c
/openbmc/u-boot/cmd/elf.c
/openbmc/u-boot/cmd/fastboot.c
/openbmc/u-boot/common/Kconfig
/openbmc/u-boot/common/avb_verify.c
/openbmc/u-boot/common/malloc_simple.c
/openbmc/u-boot/configs/am57xx_evm_defconfig
/openbmc/u-boot/configs/am57xx_hs_evm_defconfig
/openbmc/u-boot/configs/display5_factory_defconfig
/openbmc/u-boot/configs/sandbox_defconfig
/openbmc/u-boot/configs/socfpga_arria10_defconfig
/openbmc/u-boot/drivers/core/device-remove.c
/openbmc/u-boot/drivers/core/device.c
/openbmc/u-boot/drivers/core/dump.c
/openbmc/u-boot/drivers/core/uclass.c
/openbmc/u-boot/drivers/timer/Kconfig
/openbmc/u-boot/drivers/timer/Makefile
/openbmc/u-boot/drivers/timer/dw-apb-timer.c
/openbmc/u-boot/drivers/usb/gadget/gadget_chips.h
/openbmc/u-boot/drivers/usb/musb-new/musb_core.c
/openbmc/u-boot/drivers/usb/musb-new/musb_uboot.c
/openbmc/u-boot/drivers/usb/musb-new/omap2430.c
/openbmc/u-boot/drivers/usb/musb-new/pic32.c
/openbmc/u-boot/drivers/usb/musb-new/sunxi.c
/openbmc/u-boot/env/ubi.c
/openbmc/u-boot/include/configs/display5.h
/openbmc/u-boot/include/configs/socfpga_common.h
/openbmc/u-boot/include/dm/device-internal.h
/openbmc/u-boot/include/dm/device.h
/openbmc/u-boot/include/dm/uclass-internal.h
/openbmc/u-boot/include/dt-bindings/pinctrl/am33xx.h
/openbmc/u-boot/include/efi.h
/openbmc/u-boot/include/linux/usb/musb.h
efi/efi_stub.c
/openbmc/u-boot/net/eth-uclass.c
/openbmc/u-boot/test/dm/test-main.c
/openbmc/u-boot/test/py/tests/test_bind.py
ecc6f6be13-Aug-2018 Ievgen Maliarenko <ievgen.maliarenko@globallogic.com>

libavb: Handle wrong hashtree_error_mode in avb_append_options()

Exit with AVB_SLOT_VERIFY_RESULT_ERROR_INVALID_ARGUMENT
when hashtree_error_mode value passed to avb_append_options()
is unknown (not

libavb: Handle wrong hashtree_error_mode in avb_append_options()

Exit with AVB_SLOT_VERIFY_RESULT_ERROR_INVALID_ARGUMENT
when hashtree_error_mode value passed to avb_append_options()
is unknown (not from AvbHashtreeErrorMode enum).

Otherwise, default value is not handled in the
switch(hashtree_error_mode), which causes below compile warning:

lib/libavb/avb_cmdline.c: In function ‘avb_append_options’:
lib/libavb/avb_cmdline.c:354:13: warning: ‘dm_verity_mode’ may be used uninitialized in this function [-Wmaybe-uninitialized]
new_ret = avb_replace(
~~~~~~~~^~~~~~~~~~~~~~
slot_data->cmdline, "$(ANDROID_VERITY_MODE)", dm_verity_mode);
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
lib/libavb/avb_cmdline.c:363:8: warning: ‘verity_mode’ may be used uninitialized in this function [-Wmaybe-uninitialized]
if (!cmdline_append_option(
^~~~~~~~~~~~~~~~~~~~~~
slot_data, "androidboot.veritymode", verity_mode)) {

Signed-off-by: Ievgen Maliarenko <ievgen.maliarenko@globallogic.com>
Signed-off-by: Eugeniu Rosca <erosca@de.adit-jv.com>
Reviewed-by: Igor Opaniuk <igor.opaniuk@linaro.org>

show more ...


/openbmc/u-boot/Makefile
/openbmc/u-boot/arch/arm/cpu/armv8/fsl-layerscape/doc/README.falcon
/openbmc/u-boot/arch/arm/dts/axp81x.dtsi
/openbmc/u-boot/arch/arm/dts/sun8i-a83t-allwinner-h8homlet-v2.dts
/openbmc/u-boot/arch/arm/dts/sun8i-a83t-bananapi-m3.dts
/openbmc/u-boot/arch/arm/dts/sun8i-a83t-cubietruck-plus.dts
/openbmc/u-boot/arch/arm/dts/sun8i-a83t-tbs-a711.dts
/openbmc/u-boot/arch/arm/dts/sun8i-a83t.dtsi
/openbmc/u-boot/arch/arm/dts/sun8i-r40-bananapi-m2-ultra.dts
/openbmc/u-boot/arch/arm/dts/sun8i-r40.dtsi
/openbmc/u-boot/arch/arm/dts/sun8i-v40-bananapi-m2-berry.dts
/openbmc/u-boot/arch/arm/dts/tegra20-u-boot.dtsi
/openbmc/u-boot/arch/arm/include/asm/arch-sunxi/cpu_sun50i_h6.h
/openbmc/u-boot/arch/arm/mach-sunxi/Kconfig
/openbmc/u-boot/arch/arm/mach-tegra/ap.c
/openbmc/u-boot/arch/arm/mach-tegra/gpu.c
/openbmc/u-boot/arch/sandbox/config.mk
/openbmc/u-boot/arch/sandbox/cpu/u-boot.lds
/openbmc/u-boot/arch/x86/cpu/coreboot/Kconfig
/openbmc/u-boot/arch/x86/cpu/coreboot/coreboot.c
/openbmc/u-boot/arch/x86/dts/Makefile
/openbmc/u-boot/arch/x86/dts/bayleybay.dts
/openbmc/u-boot/arch/x86/dts/chromebook_link.dts
/openbmc/u-boot/arch/x86/dts/chromebook_samus.dts
/openbmc/u-boot/arch/x86/dts/chromebox_panther.dts
/openbmc/u-boot/arch/x86/dts/coreboot.dts
/openbmc/u-boot/arch/x86/dts/efi-x86_payload.dts
/openbmc/u-boot/arch/x86/dts/minnowmax.dts
/openbmc/u-boot/board/coreboot/coreboot/Kconfig
/openbmc/u-boot/board/coreboot/coreboot/Makefile
/openbmc/u-boot/board/coreboot/coreboot/coreboot.c
/openbmc/u-boot/board/coreboot/coreboot/start.S
/openbmc/u-boot/board/davinci/da8xxevm/README.da850
/openbmc/u-boot/board/sunxi/board.c
/openbmc/u-boot/cmd/Kconfig
/openbmc/u-boot/cmd/Makefile
/openbmc/u-boot/cmd/dtimg.c
/openbmc/u-boot/cmd/efi.c
/openbmc/u-boot/common/Makefile
/openbmc/u-boot/common/image-android-dt.c
/openbmc/u-boot/common/spl/spl.c
/openbmc/u-boot/configs/A20-OLinuXino_MICRO-eMMC_defconfig
/openbmc/u-boot/configs/Bananapi_M2_Ultra_defconfig
/openbmc/u-boot/configs/amarula_a64_relic_defconfig
/openbmc/u-boot/configs/bananapi_m2_berry_defconfig
/openbmc/u-boot/configs/coreboot_defconfig
/openbmc/u-boot/configs/da850evm_defconfig
/openbmc/u-boot/configs/sopine_baseboard_defconfig
/openbmc/u-boot/doc/README.x86
/openbmc/u-boot/doc/device-tree-bindings/regulator/fixed.txt
/openbmc/u-boot/doc/uImage.FIT/beaglebone_vboot.txt
/openbmc/u-boot/drivers/clk/Kconfig
/openbmc/u-boot/drivers/power/regulator/fixed.c
/openbmc/u-boot/drivers/timer/tsc_timer.c
/openbmc/u-boot/env/Kconfig
/openbmc/u-boot/fs/fat/fat.c
/openbmc/u-boot/include/configs/coreboot.h
/openbmc/u-boot/include/configs/display5.h
/openbmc/u-boot/include/configs/ls1088a_common.h
/openbmc/u-boot/include/configs/ls2080a_common.h
/openbmc/u-boot/include/configs/sunxi-common.h
/openbmc/u-boot/include/dt-bindings/clock/sun8i-a83t-ccu.h
/openbmc/u-boot/include/dt-bindings/reset/sun8i-a83t-ccu.h
/openbmc/u-boot/include/efi.h
/openbmc/u-boot/include/image-android-dt.h
libavb/avb_cmdline.c
9b89183b14-Jul-2018 Eugeniu Rosca <roscaeugeniu@gmail.com>

efi: Fix truncation of constant value

Starting with commit 867a6ac86dd8 ("efi: Add start-up library code"),
sparse constantly complains about truncated constant value in efi.h:

include/efi.h:176:35

efi: Fix truncation of constant value

Starting with commit 867a6ac86dd8 ("efi: Add start-up library code"),
sparse constantly complains about truncated constant value in efi.h:

include/efi.h:176:35: warning: cast truncates bits from constant value (8000000000000000 becomes 0)

This can get quite noisy, preventing real issues to be noticed:

$ make defconfig
*** Default configuration is based on 'sandbox_defconfig'
$ make C=2 -j12 2>&1 | grep truncates | wc -l
441

After the patch is applied:
$ make C=2 -j12 2>&1 | grep truncates | wc -l
0
$ sparse --version
v0.5.2

Following the suggestion of Heinrich Schuchardt, instead of only
fixing the root-cause, I replaced the whole enum of _SHIFT values
by ULL defines. This matches both the UEFI 2.7 spec and the Linux
kernel implementation.

Some ELF size comparison before and after the patch (gcc 7.3.0):

efi-x86_payload64_defconfig:
text data bss dec hex filename
407174 29432 278676 715282 aea12 u-boot.old
407152 29464 278676 715292 aea1c u-boot.new
-22 +32 0 +10

efi-x86_payload32_defconfig:
text data bss dec hex filename
447075 30308 280076 757459 b8ed3 u-boot.old
447053 30340 280076 757469 b8edd u-boot.new
-22 +32 0 +10

Fixes: 867a6ac86dd8 ("efi: Add start-up library code")
Suggested-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Signed-off-by: Eugeniu Rosca <erosca@de.adit-jv.com>
Reviewed-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Reviewed-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Signed-off-by: Alexander Graf <agraf@suse.de>

show more ...

9d12daff05-Jul-2018 Heinrich Schuchardt <xypron.glpk@gmx.de>

efi_loader: EFI_SIMPLE_TEXT_OUTPUT_PROTOCOL.Reset()

Implement the reset service of the EFI_SIMPLE_TEXT_OUTPUT_PROTOCOL.

This should resolve the error reported by the SCT in
Protocol/SimpleTextOut/B

efi_loader: EFI_SIMPLE_TEXT_OUTPUT_PROTOCOL.Reset()

Implement the reset service of the EFI_SIMPLE_TEXT_OUTPUT_PROTOCOL.

This should resolve the error reported by the SCT in
Protocol/SimpleTextOut/BlackBoxTest/SimpleTextOutBBTestFunction_uefi.c:639

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

show more ...

12345678910>>...57