- Oct 29, 2018
-
-
Tom Rini authored
Signed-off-by:
Tom Rini <trini@konsulko.com>
-
git://git.denx.de/u-boot-sunxiTom Rini authored
-
Andre Przywara authored
At the moment we rely on the infamous get_ram_size() function to learn the actual DRAM size in U-Boot proper. This function has two issues: 1) It only works if the DRAM size is a power of two. We start to see boards which have 3GB of (usable) DRAM, so this does not fit anymore. 2) As U-Boot has no notion of reserved memory so far, it will happily ride through the DRAM, possibly stepping on secure-only memory. This could be a region of DRAM reserved for OP-TEE or some other secure payload, for instance. It will most likely crash in that case. As the SPL DRAM init routine has very accurate knowledge of the actual DRAM size, lets propagate this wisdom to U-Boot proper. We re-purpose a currently reserved word in our SPL header for that. The SPL itself stores the detected DRAM size there, and bumps the SPL header version number in that case. U-Boot proper checks for a valid SPL header and a high enough version number, then uses the DRAM size from there. If the SPL header field is not sufficient, we fall back to the old DRAM scanning routine. Part of the DRAM might be present and probed by SPL, but not accessible by the CPU. They're restricted in the main U-Boot binary, when accessing the DRAM size from SPL header. Signed-off-by:
Andre Przywara <andre.przywara@arm.com> Signed-off-by:
Icenowy Zheng <icenowy@aosc.io> Acked-by:
Maxime Ripard <maxime.ripard@bootlin.com> Reviewed-by:
Jagan Teki <jagan@openedev.com>
-
Icenowy Zheng authored
Allwinner 64-bit SoCs can use 4GiB DRAM chip, however their memory map has only allocated 3GiB for DRAM, so only 3GiB of the DRAM is accessible. Add a Kconfig option for the maximum accessible DRAM. For A80 it should be a much higher value (8GiB), but as I have no A80 device to test and originally U-Boot only supports 2GiB DRAM on A80, it currently still falls under the 2GiB situation. Signed-off-by:
Icenowy Zheng <icenowy@aosc.io> Reviewed-by:
Andre Przywara <andre.przywara@arm.com> Acked-by:
Maxime Ripard <maxime.ripard@bootlin.com> Reviewed-by:
Jagan Teki <jagan@openedev.com>
-
Icenowy Zheng authored
All Allwinner 64-bit SoCs now are known to be able to access 3GiB of external DRAM, however the size of DRAM part in the MMU translation table is still 2GiB. Change the size of DRAM part in MMU table to 3GiB. Signed-off-by:
Icenowy Zheng <icenowy@aosc.io> Reviewed-by:
Andre Przywara <andre.przywara@arm.com> Acked-by:
Maxime Ripard <maxime.ripard@bootlin.com> Reviewed-by:
Jagan Teki <jagan@openedev.com>
-
Andre Przywara authored
So far we have two users which want to look at the SPL header. We will get more in the future. Refactor the existing SPL header checks into a common function, to simplify reusing the code. Now that this is easy, add proper version checks to the DT name parsing. Signed-off-by:
Andre Przywara <andre.przywara@arm.com> Signed-off-by:
Icenowy Zheng <icenowy@aosc.io> Acked-by:
Maxime Ripard <maxime.ripard@bootlin.com> Acked-by:
Jagan Teki <jagan@openedev.com>
-
Andre Przywara authored
On Allwinner SoCs we use some free bytes at the beginning of the SPL image to store various information. We have a version byte to allow updates, but changing this always requires all tools to be updated as well. Introduce the concept of semantic versioning [1] to the SPL header: The major part of the version number only changes on incompatible updates, a minor number bump indicates backward compatibility. This patch just documents the major/minor split, adds some comments to the header file and uses the versioning information for the existing users. [1] https://semver.org Signed-off-by:
Andre Przywara <andre.przywara@arm.com> Signed-off-by:
Icenowy Zheng <icenowy@aosc.io> Acked-by:
Maxime Ripard <maxime.ripard@bootlin.com> Acked-by:
Jagan Teki <jagan@openedev.com>
-
Icenowy Zheng authored
The Pine A64 Plus/non-Plus model detection code is now built on all 64-bit ARM SoCs, even if the code cannot be triggered when H5/H6 is in use. Disable them when the board is Pine A64 by adding a Kconfig option that is only selected on Pine A64. On GCC 7.3.1 this makes the size of the function reduces 184 bytes, and saves a 104 byte strstr() function, then makes SPL on H6 succeed to build. Signed-off-by:
Icenowy Zheng <icenowy@aosc.io> Reviewed-by:
Andre Przywara <andre.przywara@arm.com> Acked-by:
Maxime Ripard <maxime.ripard@bootlin.com> Reviewed-by:
Jagan Teki <jagan@openedev.com>
-
- Oct 28, 2018
-
-
git://git.denx.de/u-boot-x86Tom Rini authored
-
Patrick Delaunay authored
Complete in the drivers directory the work started with commit 83d290c5 ("SPDX: Convert all of our single license tags to Linux Kernel style"). Reviewed-by:
Simon Glass <sjg@chromium.org> Signed-off-by:
Patrick Delaunay <patrick.delaunay@st.com>
-
Bin Meng authored
Since commit 80df194f ("x86: detect unsupported relocation types"), an error message is seen on QEMU x86 target during boot: do_elf_reloc_fixups32: unsupported relocation type 0x1 at fff841f0, offset = 0xfff00087 do_elf_reloc_fixups32: unsupported relocation type 0x2 at fff841f8, offset = 0xfff00091 Check offset 0xfff00087 and 0xfff00091 in the u-boot ELF image, fff00087 000df401 R_386_32 00000000 car_uninit fff00091 000df402 R_386_PC32 00000000 car_uninit we see R_386_32 and R_386_PC32 relocation type is generated for symbol car_uninit, which is declared as a weak symbol in start.S. However the actual weak symbol implementation ends up nowhere. As we can see below, it's *UND*. $ objdump -t u-boot | grep car_uninit 00000000 w *UND* 00000000 car_uninit With this fix, it is normal now. $ objdump -t u-boot | grep car_uninit fff00094 w F .text.start 00000001 car_uninit Reported-by:
Hannes Schmelzer <hannes@schmelzer.or.at> Signed-off-by:
Bin Meng <bmeng.cn@gmail.com> Tested-by:
Heinrich Schuchardt <xypron.glpk@gmx.de> Reviewed-by:
Heinrich Schuchardt <xypron.glpk@gmx.de> Tested-by:
Hannes Schmelzer <oe5hpm@oevsv.at>
-
Stefan Roese authored
The build breaks because its not fitting the U-Boot binary into the ROM image. So lets move VGA BIOS a bit to make room for the grown U-Boot binary. Signed-off-by:
Stefan Roese <sr@denx.de> Reviewed-by:
Bin Meng <bmeng.cn@gmail.com>
-
Stefan Roese authored
To enable the root device selection (kernel cmd-line) via PARTUUID, this patch enables CMD_PART on all missing theadorable-x86 boards and changes the default environment to generate the root=PARTUUID string automatically. This fixes problems that have been noticed on systems with multiple SATA/AHCI controller connected via PCIe, where the device name for the root device / partition (/dev/sdaX) was incorrect. Signed-off-by:
Stefan Roese <sr@denx.de> Reviewed-by:
Bin Meng <bmeng.cn@gmail.com>
-
Stefan Roese authored
This is needed for the PCIe hotplug to work correctly on some boards with the newer Linux kernel versions. Signed-off-by:
Stefan Roese <sr@denx.de> Cc: Bin Meng <bmeng.cn@gmail.com> Reviewed-by:
Bin Meng <bmeng.cn@gmail.com>
-
Stefan Roese authored
To allow bigger 64 bit prefetchable PCI regions in Linux, this patch changes the base address and range of the ACPI area passed to Linux. BayTrail can only physically access 36 bit of PCI address space. So just chaning the range without changing the base address won't work here, as 0xf.ffff.ffff is already the maximum address. With this patch, a maximum of 16 GiB of local DDR is supported. This should be enough for all BayTrail boards though. Signed-off-by:
Stefan Roese <sr@denx.de> Cc: Bin Meng <bmeng.cn@gmail.com> Cc: Simon Glass <sjg@chromium.org> Reviewed-by:
Bin Meng <bmeng.cn@gmail.com>
-
- Oct 26, 2018
-
-
Tom Rini authored
To help with size constraints, enable thumb2 when building. Signed-off-by:
Tom Rini <trini@konsulko.com>
-
- Oct 25, 2018
-
-
git://git.denx.de/u-boot-netTom Rini authored
-
git://git.denx.de/u-boot-imxTom Rini authored
Merged imx8 architecture, fix build for imx8 + warnings
-
Peng Fan authored
Fix below build warning. arch/arm/dts/fsl-imx8qxp-mek.dtb: Warning (avoid_unnecessary_addr_size): /regulators: unnecessary #address-cells/#size-cells without "ranges" or child "reg" property Signed-off-by:
Peng Fan <peng.fan@nxp.com>
-
Peng Fan authored
Introduce a new script to check whether file exists and use that check in Makefile to avoid break CI system. The script return 1 when the required files not exists, return 0 when files exists. The script will ignore check to u-boot-dtb.bin, because if there is something wrong to generate u-boot-dtb.bin, there must be some code error. Signed-off-by:
Peng Fan <peng.fan@nxp.com>
-
- Oct 24, 2018
-
-
Anatolij Gustschin authored
Add compatible property and enable the FEC ipg clock when probing on i.MX8X. Add specific function for reading FEC clock rate via clock driver when configuring MII speed register. Allow FEC_MXC selection for i.MX8. Signed-off-by:
Anatolij Gustschin <agust@denx.de> Cc: Joe Hershberger <joe.hershberger@ni.com> Acked-by:
Joe Hershberger <joe.hershberger@ni.com>
-
Baruch Siach authored
The default Linux PHY reset delay is 10ms. This is also the requirement for Marvell 88E151x PHYs, which are likely to be used with this Ethernet MAC. Cc: Stefan Chulski <stefanc@marvell.com> Signed-off-by:
Baruch Siach <baruch@tkos.co.il> Acked-by:
Joe Hershberger <joe.hershberger@ni.com> Reviewed-by:
Stefan Roese <sr@denx.de>
-
Baruch Siach authored
The dm_gpio_set_value() call sets the logical level of the GPIO signal. That is, it takes the GPIO_ACTIVE_{LOW,HIGH} property into account. The driver needs to assert the reset, and then deassert it. Not the other way around. Cc: Stefan Chulski <stefanc@marvell.com> Signed-off-by:
Baruch Siach <baruch@tkos.co.il> Acked-by:
Joe Hershberger <joe.hershberger@ni.com> Reviewed-by:
Stefan Roese <sr@denx.de>
-
Priyanka Jain authored
Signed-off-by:
Priyanka Jain <priyanka.jain@nxp.com> Acked-by:
Joe Hershberger <joe.hershberger@ni.com>
-
Martin Fuzzey authored
The DT property "phy-mode" already provides the transceiver type. Use it so that we do not have to also set CONFIG_FEC_XCV_TYPE Signed-off-by:
Martin Fuzzey <martin.fuzzey@flowbird.group> Acked-by:
Joe Hershberger <joe.hershberger@ni.com>
-
Martin Fuzzey authored
Configure the phy regulator if defined by the "phy-supply" DT phandle. Signed-off-by:
Martin Fuzzey <martin.fuzzey@flowbird.group> Acked-by:
Joe Hershberger <joe.hershberger@ni.com>
-
Martin Fuzzey authored
The DT binding says: - phy-reset-duration : Reset duration in milliseconds. Should present only if property "phy-reset-gpios" is available. Missing the property will have the duration be 1 millisecond. Numbers greater than 1000 are invalid and 1 millisecond will be used instead. However the current code: - clamps values greater than 1000ms to 1000ms rather than 1. - does not initialize the delay if the property does not exist (else clause mismatch) - returns an error if phy-reset-gpios is not defined Fix all this and simplify by using dev_read_u32_default() Signed-off-by:
Martin Fuzzey <martin.fuzzey@flowbird.group> Acked-by:
Joe Hershberger <joe.hershberger@ni.com>
-
Martin Fuzzey authored
The DT binding says that phy-reset-duration is in ms, but the driver currently uses udelay(). Switch to mdelay() to fix this. Signed-off-by:
Martin Fuzzey <martin.fuzzey@flowbird.group> Reviewed-by:
Michael Trimarchi <michael@amarulasolutions.com> Acked-by:
Joe Hershberger <joe.hershberger@ni.com>
-
Jeremy Gebben authored
If the phy reports a valid firmware version and doesn't indicate a fault, skip loading the firmware. This allows the same image to be used on boards that have firmware storage and those that do not. Signed-off-by:
Jeremy Gebben <jgebben@sweptlaser.com> Acked-by:
Joe Hershberger <joe.hershberger@ni.com>
-
Jeremy Gebben authored
Aquantia phys have firmware that can be loaded automatically from storage directly attached to the phy or via MDIO commands. Add support for loading firmware from either a file or a raw location on an MMC device. Signed-off-by:
Jeremy Gebben <jgebben@sweptlaser.com> Acked-by:
Joe Hershberger <joe.hershberger@ni.com>
-
Jeremy Gebben authored
The aquantia driver requires both CONFIG_PHY_GIGE and CONFIG_PHYLIB_10G. Signed-off-by:
Jeremy Gebben <jgebben@sweptlaser.com> Acked-by:
Joe Hershberger <joe.hershberger@ni.com>
-
Pankaj Bansal authored
In upcoming freescale board LX2160AQDS, the MDIO bus is muxed. i.e. same MDIO bus can be routed to eight different slots depending on mux register settings. To support this mdio mux behavior, we add each MDIO bus mux as a separate MDIO bus. Now, various phy devices can be attached to each of these slots(mux). The information about these devices is passed to OS via device tree. To do the fdt fixups related to MDIO bus, its necessary that MDIO bus list is accessed.Therefore, add a function to retrieve the list head. Signed-off-by:
Pankaj Bansal <pankaj.bansal@nxp.com> Acked-by:
Joe Hershberger <joe.hershberger@ni.com>
-
Hector Palacios authored
All mii operations require a valid PHY address except the 'device' command, which expects the PHY name rather than the address. Signed-off-by:
Hector Palacios <hector.palacios@digi.com> Acked-by:
Joe Hershberger <joe.hershberger@ni.com>
-
Priit Laes authored
sunxi_rgb2yuv_coef is readonly and never modified. Signed-off-by:
Priit Laes <plaes@plaes.org> Acked-by:
Anatolij Gustschin <agust@denx.de> Acked-by:
Maxime Ripard <maxime.ripard@bootlin.com> Reviewed-by:
Jagan Teki <jagan@openedev.com>
-
Priit Laes authored
Signed-off-by:
Priit Laes <plaes@plaes.org> Acked-by:
Maxime Ripard <maxime.ripard@bootlin.com> Reviewed-by:
Jagan Teki <jagan@openedev.com>
-
Priit Laes authored
Signed-off-by:
Priit Laes <plaes@plaes.org> Acked-by:
Maxime Ripard <maxime.ripard@bootlin.com> Reviewed-by:
Jagan Teki <jagan@openedev.com>
-
Vasily Khoruzhick authored
Choose best prescaler to improve PWM resolution. Without this change driver chooses first prescaler that gives us period value within range, but it could be not the best one. Signed-off-by:
Vasily Khoruzhick <anarsoul@gmail.com> Tested-by:
Vagrant Cascadian <vagrant@debian.org> Acked-by:
Maxime Ripard <maxime.ripard@bootlin.com> Reviewed-by:
Jagan Teki <jagan@openedev.com>
-
Vasily Khoruzhick authored
Looks like old prescaler was used when configuring PWM, fix it. Signed-off-by:
Vasily Khoruzhick <anarsoul@gmail.com> Acked-by:
Maxime Ripard <maxime.ripard@bootlin.com> Reviewed-by:
Jagan Teki <jagan@openedev.com>
-
Vasily Khoruzhick authored
Fix off-by-one that prevented PWM driver to use prescaler bypass. Without this change prescaler is always enabled. Signed-off-by:
Vasily Khoruzhick <anarsoul@gmail.com> Acked-by:
Maxime Ripard <maxime.ripard@bootlin.com> Reviewed-by:
Jagan Teki <jagan@openedev.com>
-
Fabio Estevam authored
Add an entry for the warp7_bl33_defconfig target. This fixes the following warnings: WARNING: no status info for 'warp7_bl33' WARNING: no maintainers for 'warp7_bl33' Reported-by:
Tom Rini <trini@konsulko.com> Signed-off-by:
Fabio Estevam <festevam@gmail.com>
-