- Aug 29, 2023
-
-
Tom Rini authored
- A few platform-specific config/dts updates to fix issues, drop a temporary change in binman, update the MAINTAINERS file to remove Wolfgang Denk, fix a typo, fix a corner case with bootstd, update Azure to not timeout so easily, and fix a case where we would omit some files in SPL.
-
- Aug 28, 2023
-
-
Ricardo Salveti authored
This reverts commit c5b68ef8. CONFIG_OPTEE_TZDRAM_SIZE is used by imx6-based SoCs as well. Move the option back. Signed-off-by:
Ricardo Salveti <ricardo@foundries.io> Signed-off-by:
Oleksandr Suvorov <oleksandr.suvorov@foundries.io>
-
Simon Glass authored
The affected boards have been fixed, so drop this hack. This reverts commit 288ae53c. Signed-off-by:
Simon Glass <sjg@chromium.org> Acked-by:
Tim Harvey <tharvey@gateworks.com>
-
Simon Glass authored
Adding a phandle to a template node is not allowed, since when the node is instantiated multiple times, we end up with duplicate phandles. Drop this invalid constructs. Signed-off-by:
Simon Glass <sjg@chromium.org> Acked-by:
Tim Harvey <tharvey@gateworks.com>
-
Heinrich Schuchardt authored
Signed-off-by:
Heinrich Schuchardt <heinrich.schuchardt@canonical.com>
-
Oleksandr Suvorov authored
If one of SHA* algorithms is disabled in u-boot, its code is not included in SPL even if a given SHA* option is enabled in SPL. Fix this. Fixes: 603d15a5 ("spl: cypto: Bring back SPL_ versions of SHA") Signed-off-by:
Oleksandr Suvorov <oleksandr.suvorov@foundries.io> Reviewed-by:
Tom Rini <trini@konsulko.com>
-
Tom Rini authored
As per current Azure Pipelines documentation we qualify for 3600 minutes per job, if specified, as the timeout. The default unspecified timeout is 60 minutes. Rework things to specify 0 as the timeout (and so maximum allowed) so that we don't have failures due to running slightly past 60 minutes total. Link: https://learn.microsoft.com/en-us/azure/devops/pipelines/process/phases?view=azure-devops&tabs=yaml#timeouts Signed-off-by:
Tom Rini <trini@konsulko.com> Reviewed-by:
Simon Glass <sjg@chromium.org>
-
Daniel Golle authored
Similar to MT7981 and MT7986 also MT7988 can have a high number of reserved-memory regions used by the various hardware offloading subsystems. Raise CONFIG_LMB_MAX_REGIONS to 64 to avoid errors when trying to boot Linux with more then 6 reserved regions: ERROR: reserving fdt memory region failed (addr=4f700000 size=240000 flags=4) ERROR: reserving fdt memory region failed (addr=15194000 size=1000 flags=4) ERROR: reserving fdt memory region failed (addr=15294000 size=1000 flags=4) ERROR: reserving fdt memory region failed (addr=15394000 size=1000 flags=4) ERROR: Failed to allocate 0xb161 bytes below 0x80000000. device tree - allocation error Fixes: bc4adc97 ("board: mediatek: add MT7988 reference boards") Reported-by:
Lorenzo Bianconi <lorenzo@kernel.org> Signed-off-by:
Daniel Golle <daniel@makrotopia.org>
-
Andrew Davis authored
This should have already been enabled but was missed when converting the base platform defconfig, fix this here. Fixes: 3c5aa6ca ("configs: Enable CONFIG_BLK in am57xx_evm and am57xx_hs_evm") Signed-off-by:
Andrew Davis <afd@ti.com> Reviewed-by:
Tom Rini <trini@konsulko.com> Reviewed-by:
Simon Glass <sjg@chromium.org>
-
Simon Glass authored
The existing distro scripts check extlinux and scripts before EFI. Adjust the default ordering to do the same, to avoid breaking existing flows. Add some documentation, mentioning that this order will likely change in future. Signed-off-by:
Simon Glass <sjg@chromium.org> Reported-by:
Da Xue <da@libre.computer>
-
Frank Wunderlich authored
Ethernet on Bananapi-r3 is broken after commit bd70f3ce ("net: mediatek: add support for SGMII 1Gbps auto-negotiation mode") because changes from this commit were not applied to bpi-r3 devicetree too: commit aef54ea1 ("arm: dts: medaitek: convert gmac link mode to 2500base-x") Signed-off-by:
Frank Wunderlich <frank-w@public-files.de> Reviewed-by:
Weijie Gao <weijie.gao@mediatek.com>
-
Peter Robinson authored
The Kconfig references a readme file that's moved and converted to rst so update the reference. Signed-off-by:
Peter Robinson <pbrobinson@gmail.com> Reviewed-by:
Simon Glass <sjg@chromium.org>
-
- Aug 27, 2023
-
-
https://source.denx.de/u-boot/custodians/u-boot-efiTom Rini authored
Pull request efi-2023-10-rc4 Documentation: * describe TPL/VPL/SPL boot * Add support for sphinx-prompt and convert TI K3 to use it * board: sdm845: Explicitly add boot.img flashing command EFI: * remove handle from events when deleting it Others: * fix gpt sub-commands setenv and enumerate * add a parameter check in hash_calculate()
-
Ilias Apalodimas authored
When a notification event is registered for a protocol the handle of the protocol is added in our event notification list. When all the protocols of the handle are uninstalled we delete the handle but we do not remove it from the event notification list. Clean up the protocol removal functions and add a wrapper which - Removes the to-be deleted handle from any lists it participates - Remove the handle if no more protocols are present Signed-off-by:
Ilias Apalodimas <ilias.apalodimas@linaro.org> Reviewed-by:
Heinrich Schuchardt <heinrich.schuchardt@canonical.com>
-
Heinrich Schuchardt authored
This is a stub describing how TPL, VPL, and SPL load the next boot stages on a detail level for users. For sure we will need a few patches on top to catch the whole complexity. Signed-off-by:
Heinrich Schuchardt <heinrich.schuchardt@canonical.com> Reviewed-by:
Paul Barker <paul.barker.ct@bp.renesas.com>
-
Nishanth Menon authored
Sphinx-prompt provides a handy scheme to provide documentation that renders nicely and yet provides a scheme to copy paste for users without having to hand-edit the copied text as is the result of code-block [1] https://lore.kernel.org/all/87fs48rgto.fsf@baylibre.com/ Reported-by:
Simon Glass <sjg@chromium.org> Suggested-by:
Mattijs Korpershoek <mkorpershoek@baylibre.com> Signed-off-by:
Nishanth Menon <nm@ti.com> Signed-off-by:
Heinrich Schuchardt <heinrich.schuchardt@canonical.com>
-
Nishanth Menon authored
Sphinx-prompt[1] helps bring-in '.. prompt::' option that allows a better rendered documentation, yet be able to copy paste without picking up the prompt from rendered documentation. [1] https://lore.kernel.org/all/87fs48rgto.fsf@baylibre.com/ Suggested-by:
Mattijs Korpershoek <mkorpershoek@baylibre.com> Signed-off-by:
Nishanth Menon <nm@ti.com> Reviewed-by:
Heinrich Schuchardt <heinrich.schuchardt@canonical.com>
-
Sumit Garg authored
Signed-off-by:
Sumit Garg <sumit.garg@linaro.org> Use code-block. Fix length of two heading underlines. Signed-off-by:
Heinrich Schuchardt <heinrich.schuchardt@canonical.com>
-
Heinrich Schuchardt authored
In commands like 'ls mmc 0:f' the partition number is hexadecimal. In command 'gpt setenv' variable gpt_partition_entry needs to be set to a hexadecimal value to allow its use as a parameter in a subsequent command. Fixes: 57f8cf1b9aea ("cmd: fix gpt enumerate") Signed-off-by:
Heinrich Schuchardt <heinrich.schuchardt@canonical.com> Reviewed-by:
Simon Glass <sjg@chromium.org>
-
Heinrich Schuchardt authored
Do not assume that partitions are numbered continuously starting at 1. Only a single partition table type can exist on a block device. If we found a GPT partition table, we must not re-enumerate with the MBR partition driver which would find the protective partition. Fixes: 12fc1f3b ("cmd: gpt: add eMMC and GPT support") Signed-off-by:
Heinrich Schuchardt <heinrich.schuchardt@canonical.com> Reviewed-by:
Simon Glass <sjg@chromium.org>
-
Heinrich Schuchardt authored
Do not assume that partitions are continuously numbered starting at 1. Having a partition table with a single partition 63 is valid. Fixes: 12fc1f3b ("cmd: gpt: add eMMC and GPT support") Signed-off-by:
Heinrich Schuchardt <heinrich.schuchardt@canonical.com> Reviewed-by:
Simon Glass <sjg@chromium.org>
-
Heinrich Schuchardt authored
If hash_calculate is invoked with region_count = 0, it will try to hash INT_MAX regions. We should check this parameter. * Avoid a comparison with different signedness. * Check that region_count is at least 1. * Avoid a superfluous assignment. Fixes: b37b46f0 ("rsa: Use checksum algorithms from struct hash_algo") Signed-off-by:
Heinrich Schuchardt <heinrich.schuchardt@canonical.com> Reviewed-by:
Simon Glass <sjg@chromium.org>
-
- Aug 25, 2023
-
-
https://source.denx.de/u-boot/custodians/u-boot-usbTom Rini authored
- Two phy-imx8mq-usb fixes and one dwc3 fix
-
https://source.denx.de/u-boot/custodians/u-boot-stmTom Rini authored
Remove scmi-optee shmem for STM32MP15 and STM32MP13
-
Patrick Delaunay authored
CFG_STM32MP1_SCMI_SHM_SYSRAM will be disabled by default for STM32MP13x SoCs in next OP-TEE version and the OP-TEE SMCI server uses the OP-TEE native shared memory registered by clients. To be compatible by default with this configuration this patch removes the shared memory in the SCMI configuration and the associated reserved memory in SRAM. Signed-off-by:
Patrick Delaunay <patrick.delaunay@foss.st.com> Reviewed-by:
Patrice Chotard <patrice.chotard@foss.st.com>
-
Patrick Delaunay authored
Since OP-TEE commit 89ba3422ee80 ("plat-stm32mp1: scmi_server: default use OP-TEE shared memory"), integrated in OP-TEE 3.22.0-rc1 the default configuration for STM32MP15x SoCs changes, CFG_STM32MP1_SCMI_SHM_SYSRAM is disabled by default and the OP-TEE SMCI server uses ithe OP-TEE native shared memory registered by clients. To be compatible by default with this configuration and the next OP-TEE version, this patch removes the SHMEM in the SCMI configuration and the associated reserved memory in the last 4KByte page of SRAM, in the STM32MP15 device tree. Signed-off-by:
Patrick Delaunay <patrick.delaunay@foss.st.com> Reviewed-by:
Patrice Chotard <patrice.chotard@foss.st.com>
-
Tim Harvey authored
use CONFIG_IS_ENABLED for clock enable/disable and change printf's to dev_err. Additionlly remove the comment that does not make sense. Signed-off-by:
Tim Harvey <tharvey@gateworks.com> Reviewed-by:
Marek Vasut <marex@denx.de>
-
Tim Harvey authored
Add support for enabling and disabling vbus-supply regulator found on several imx8mp boards in the usb3_phy0 and usb3_phy1 nodes. Signed-off-by:
Tim Harvey <tharvey@gateworks.com> Reviewed-by:
Adam Ford <aford173@gmail.com> Reviewed-by:
Marek Vasut <marex@denx.de> Tested-by:
Marcel Ziswiler <marcel.ziswiler@toradex.com>
-
Venkatesh Yadav Abbarapu authored
As ulpi_reset gpio is now optional, we need to check it when doing the 'dwc3_generic_remove' function. Check if it is declared before accessing the ulpi_reset. Fixes: 237d1f60 ("usb: dwc3: Use the devm_gpiod_get_optional() API for reset gpio") Reported-by:
Thomas Nizan <tnizan@witekio.com> Signed-off-by:
Venkatesh Yadav Abbarapu <venkatesh.abbarapu@amd.com>
-
- Aug 23, 2023
-
-
https://source.denx.de/u-boot/custodians/u-boot-efiTom Rini authored
Pull request for doc-2023-10-rc4 Documentation: * Fix documentation for TI boards * Describe running on VirtualBox * List build dependencies for building documenation * Add references to U-Boot talks Other: * Fix error handling in the setexpr command (printf_str)
-
Paul Barker authored
The list of u-boot talks on elinux.org is quite long, so let's highlight the talks which are likely most relevant for newcomers. Signed-off-by:
Paul Barker <paul.barker.ct@bp.renesas.com> Reviewed-by:
Simon Glass <sjg@chromium.org>
-
Paul Barker authored
Highlight the packages which need to be installed in order to build the docs. Signed-off-by:
Paul Barker <paul.barker.ct@bp.renesas.com>
-
Thomas Mittelstaedt authored
The configuration for EFI is enhanced to start U-Boot at VirtualBox (x86_64) with all features like booting with help of boot scripts and extended linux. This documentation describes how to use U-Boot at VirtualBox to boot Linux systems with a some simple example. Signed-off-by:
Thomas Mittelstaedt <thomas.mittelstaedt@de.bosch.com>
-
Jonathan Humphreys authored
Fix minor path and config macro name updates to sync with latest OpenOCD and U-Boot configurations. Fixes: effe5085 ("doc: board: ti: k3: Add a guide to debugging with OpenOCD") Signed-off-by:
Jonathan Humphreys <j-humphreys@ti.com> Signed-off-by:
Nishanth Menon <nm@ti.com> Reviewed-by:
Heinrich Schuchardt <heinrich.schuchardt@canonical.com>
-
Nishanth Menon authored
Add elaboration text for the various firmware involved for system management. Signed-off-by:
Nishanth Menon <nm@ti.com>
-
Nishanth Menon authored
Fix up build step numbering. Fixes: c727b81d ("doc: board: ti: k3: Reuse build instructions") Signed-off-by:
Nishanth Menon <nm@ti.com> Reviewed-by:
Heinrich Schuchardt <heinrich.schuchardt@canonical.com>
-
Nishanth Menon authored
Fix up build step numbering. Fixes: c727b81d ("doc: board: ti: k3: Reuse build instructions") Signed-off-by:
Nishanth Menon <nm@ti.com> Reviewed-by:
Heinrich Schuchardt <heinrich.schuchardt@canonical.com>
-
Nishanth Menon authored
Fix up build step numbering. Fixes: c727b81d ("doc: board: ti: k3: Reuse build instructions") Signed-off-by:
Nishanth Menon <nm@ti.com> Reviewed-by:
Heinrich Schuchardt <heinrich.schuchardt@canonical.com>
-
Nishanth Menon authored
Fix up build step numbering. Fixes: c727b81d ("doc: board: ti: k3: Reuse build instructions") Signed-off-by:
Nishanth Menon <nm@ti.com> Revieed-by:
Heinrich Schuchardt <heinrich.schuchardt@canonical.com>
-
Nishanth Menon authored
Provide alternative text for image. Fixes: 3b83dff1 ("doc: board: ti: j721e: Convert the image format to svg") Reported-by:
Heinrich Schuchardt <heinrich.schuchardt@canonical.com> Signed-off-by:
Nishanth Menon <nm@ti.com>
-