- Feb 06, 2023
-
-
These are only used in one place, so move them there. Signed-off-by:
Simon Glass <sjg@chromium.org>
-
Drop use of the distro scripts and use standard boot instead. Enable BOOTDEV_FULL just for convenience, although this does add quite a bit to the size. Signed-off-by:
Simon Glass <sjg@chromium.org>
-
We need to support a basic set of filesystems for booting to work in most cases. Add these in via a new option, letting the board disable them individually (for space reasons) if desired. This enables the filesystem commands as well as the actual functionality, even though bootstd is quite happy to use ext4 without the ext4 command. Further work would be needed to disintangle this and reduce code size. Add several other options as well, providing sensible defaults. We cannot enable this by default, since it expands the size of many boards quite a lot. Signed-off-by:
Simon Glass <sjg@chromium.org>
-
am335x_evm_defconfig is used for BeagleBone Black, popular single board computer with wide extension support. Enable CONFIG_CMD_EXTENSION by default since extension detection is already implemented for am335x. Also run make savedefconfig for am335x_evm_defconfig Signed-off-by:
Matwey V. Kornilov <matwey.kornilov@gmail.com>
-
allow only to boot signed fitimages (and signed u-boot scripts). Signed-off-by:
Heiko Schocher <hs@denx.de>
-
enable protected Environment on socrates board. Signed-off-by:
Heiko Schocher <hs@denx.de>
-
add autoboot delay string for socrates board. use sha256 for abort autoboot, use "ao" to abort. Signed-off-by:
Heiko Schocher <hs@denx.de>
-
add support for i2c eeprom on address 0x51. Signed-off-by:
Heiko Schocher <hs@denx.de>
-
add boot retry feature and reboot after 120 seconds. Signed-off-by:
Heiko Schocher <hs@denx.de>
-
drop second flash bank, as not used anymore. Signed-off-by:
Heiko Schocher <hs@denx.de>
-
setup MTD partitioning through mtdparts variable and set it to: mtdparts=fe0000000.nor:13312k(system1),13312k(system2),5120k(data),128k(env),128k(env-red),768k(u-boot) and pass this to linux per kernel commandline. Signed-off-by:
Heiko Schocher <hs@denx.de>
-
convert socrates board to use MPC85XX_HAVE_RESET_VECTOR and disable CONFIG_OF_BOARD and use common u-boot.dtsi for creating u-boot-dtb.bin. Signed-off-by:
Heiko Schocher <hs@denx.de>
-
current mainline does not work on socrates board. To get it back up working, there are some updates needed in socrates_defconfig. Signed-off-by:
Heiko Schocher <hs@denx.de> Fixes: 94633c36 ("net: Make DM_ETH be selected by NETDEVICE") Fixes: 2f8a6db5 ("Finish conversion of CONFIG_SYS_CLK_FREQ to Kconfig")
-
Tom Rini authored
The LMB code allows for picking a hard limit on the number of regions it can know of, or to dynamically allocate these regions. The reason for this choice is to allow for the compiler to perform a size optimization in the common case. This optimization however, is very small, ranging from 196 bytes to 15 bytes saved, or in some cases, being larger. Now that we also have more regions covered by LMB (in order to protect various parts of our self at run time), the default of 8 is also much easier to hit and leads to non-obvious error messages (which imply that an area is protected, not that we're out of areas to add to the list). Switch to the dynamic use as the default. Signed-off-by:
Tom Rini <trini@konsulko.com>
-
- Feb 03, 2023
-
-
Convert to DM_SERIAL and drop the iomux board file level init as it's handled as part of the DM serial layer instead. Signed-off-by:
Peter Robinson <pbrobinson@gmail.com> Reviewed-by:
Fabio Estevam <festevam@denx.de>
-
This moves over the PMIC power init to DM and the associated i2c and regulator bits. Signed-off-by:
Peter Robinson <pbrobinson@gmail.com> Reviewed-by:
Fabio Estevam <festevam@denx.de>
-
Convert the board from legacy serial code to DM SERIAL. Signed-off-by:
Marek Vasut <marex@denx.de>
-
- Feb 02, 2023
-
-
Add MV88E61XX DSA support: - update dt to provide internal MDIO bus and port handles. U-Boot requires a more restrictive subset of the dt bindings required by Linux for the sake of simplifying code - update defconfig to remove old driver and enable new one - replace mv88e61xx_hw_reset weak override with board_phy_config support for register configuration that is outside the scope of the DSA driver Signed-off-by:
Tim Harvey <tharvey@gateworks.com> Reviewed-by:
Fabio Estevam <festevam@denx.de> Reviewed-by:
Vladimir Oltean <vladimir.oltean@nxp.com>
-
Hai Pham authored
Enable I2C support on D3 Draak. Reviewed-by:
Marek Vasut <marek.vasut+renesas@mailbox.org> Signed-off-by:
Hai Pham <hai.pham.ud@renesas.com> Signed-off-by:
Marek Vasut <marek.vasut+renesas@mailbox.org>
-
Marek Vasut authored
Synchronize R-Car device trees with Linux 6.1.7, commit 21e996306a6afaae88295858de0ffb8955173a15 . The following script has been used for the synchronization: $ for i in $(cd arch/arm/dts/ ; ls -1 r8a* | grep -v 'u-boot.dts' ; sed -n '/#include/ s@.*"\(.*\)"@\1@p' $(ls -1 r8a* | grep -v 'u-boot.dts')) ; do if [ -e /linux-2.6/arch/arm64/boot/dts/renesas/$i ] ; then cp /linux-2.6/arch/arm64/boot/dts/renesas/$i arch/arm/dts/ ; elif [ -e /linux-2.6/arch/arm/boot/dts/$i ] ; then cp /linux-2.6/arch/arm/boot/dts/$i arch/arm/dts/ else echo "NOT FOUND: $i" fi done $ git add $( ( cd arch/arm/dts/ ; ls -1 r8a* | grep -v 'u-boot.dts' ; sed -n '/#include/ s@.*"\(.*\)"@\1@p' $(ls -1 r8a* | grep -v 'u-boot.dts')) | tr " " "\n" | sed 's@^@arch/arm/dts/@g' ) Move the include/dt-bindings/{clk,clock}/versaclock.h header used by the renesas boards to match Linux 6.1.y as well. Keep arch/arm/dts/r8a774c0-u-boot.dtsi sdhi3 node as it is now used by the arch/arm/dts/r8a774c0-cat874.dts board. Pick s@spi-flash@flash@ change in arch/arm/dts/r8a779a0-falcon-u-boot.dts from "ARM: dts: Synchronize R-Car V3U DTs with Linux 5.18.3" . Adjust R8A77990 Ebisu CONFIG_SYS_MMC_ENV_DEV from 2 to 0 to reflect the card enumeration in ebisu.dtsi /aliases DT node . Adjust R8A7795 and R8A7796 ULCB CONFIG_SYS_MMC_ENV_DEV from 1 to 0 to reflect the card enumeration in ulcb.dtsi /aliases DT node . Signed-off-by:
Marek Vasut <marek.vasut+renesas@mailbox.org> Signed-off-by: Tam Nguyen <tam.nguyen.xa@renesas.com> # r8a779a0-falcon-u-boot.dts Signed-off-by: Hai Pham <hai.pham.ud@renesas.com> # r8a779a0-falcon-u-boot.dts
-
- Jan 31, 2023
-
-
Add the needed DT overrides and configs to enable UART in SPL. Cc: Fabio Estevam <festevam@gmail.com> Signed-off-by:
Michael Trimarchi <michael@amarulasolutions.com> Tested-by:
Suniel Mahesh <sunil@amarulasolutions.com> Reviewed-by:
Fabio Estevam <festevam@denx.de>
-
The imx8mn-beacon SOM has a QSPI part on it connected to the FlexSPI controller. Add a defconfig option which supports booting from the QSPI NOR flash instead of sd/mmc. Signed-off-by:
Adam Ford <aford173@gmail.com>
-
Convert to DM_I2C Signed-off-by:
Peng Fan <peng.fan@nxp.com>
-
Convert to DM_I2C Signed-off-by:
Peng Fan <peng.fan@nxp.com>
-
The introduction of CONFIG_FSL_QSPI_AHB_FULL_MAP as default in: def88bce ("spi: fsl_qspi: Support to use full AHB space on i.MX") broke the SPI NAND read access on the Kontron SL i.MX6UL/ULL boards. Reading data from the flash returns garbage instead of the actual content. Fix this for now by disabling the introduced option. In the long run this should be fixed globally. Fixes: def88bce ("spi: fsl_qspi: Support to use full AHB space on i.MX") Signed-off-by:
Frieder Schrempf <frieder.schrempf@kontron.de> Reviewed-by:
Fabio Estevam <festevam@denx.de>
-
Select DM_SERIAL Signed-off-by:
Peng Fan <peng.fan@nxp.com>
-
Select DM_SERIAL Signed-off-by:
Peng Fan <peng.fan@nxp.com>
-
Select DM_SERIAL Signed-off-by:
Peng Fan <peng.fan@nxp.com>
-
Select DM_SERIAL Signed-off-by:
Peng Fan <peng.fan@nxp.com>
-
Select DM_SERIAL Signed-off-by:
Peng Fan <peng.fan@nxp.com>
-
Select DM_SERIAL Signed-off-by:
Peng Fan <peng.fan@nxp.com>
-
Select DM_SERIAL Signed-off-by:
Peng Fan <peng.fan@nxp.com>
-
Select DM_SERIAL Signed-off-by:
Peng Fan <peng.fan@nxp.com>
-
The conversion to DM_I2C is mandatory, so convert to it and also to DM_PMIC. Signed-off-by:
Fabio Estevam <festevam@denx.de>
-
The conversion to CONFIG_DM_SERIAL is mandatory, so select this option. Signed-off-by:
Fabio Estevam <festevam@denx.de>
-
These SoMs may ship with SMSC LAN8740Ai PHYs, enable the SMSC PHY driver. Signed-off-by:
Marek Vasut <marex@denx.de>
-
These SoMs never ship with Atheros PHYs, disable the Atheros PHY driver. Signed-off-by:
Marek Vasut <marex@denx.de>
-
- Jan 30, 2023
-
-
Select the CONFIG_CMD_EXT4 option so that files can be loaded from an ext4 partition. Signed-off-by:
Fabio Estevam <festevam@denx.de>
-
Add the board support for the i.MX8MM Cloos PHG board. This board uses a imx8mm-tqma8mqml SoM from TQ-Group. imx8mm-phg.dts and imx8mm-tqma8mqml.dtsi are taken directly from Linux 6.2-rc3. Signed-off-by:
Fabio Estevam <festevam@denx.de> Reviewed-by:
Tom Rini <trini@konsulko.com>
-
The i.MX 8M Mini SoC does incorporate an additional M-Core. To be able to load it with a firmware, enable bootaux command as other Toradex modules also have it enabled to be consistent. Signed-off-by:
Philippe Schenker <philippe.schenker@toradex.com>
-