- May 08, 2018
-
-
Mario Six authored
Declaration of indirect PCI bridges is not compatible with DM: Both define PCI operations, but in different ways. Hence, don't use indirect bridges if DM is active. Signed-off-by:
Mario Six <mario.six@gdsys.cc> Reviewed-by:
Simon Glass <sjg@chromium.org>
-
Mario Six authored
Add a driver for RXAUI control on IHS FPGAs. Signed-off-by:
Mario Six <mario.six@gdsys.cc> Reviewed-by:
Simon Glass <sjg@chromium.org>
-
Mario Six authored
Add a driver for the ICS8N3QV01 Quad-Frequency Programmable VCXO. Signed-off-by:
Mario Six <mario.six@gdsys.cc>
-
Mario Six authored
Make the ihs_mdio driver DM-compatible, while retaining the old functionality for not-yet-converted boards. Signed-off-by:
Mario Six <mario.six@gdsys.cc>
-
Mario Six authored
To prepare for DM conversion, encapsulate all register accesses in function calls. Signed-off-by:
Mario Six <mario.six@gdsys.cc>
-
Ramon Fried authored
The clock node is used by the serial driver and it's needed before relocation. This patch ensures that the msm-serial driver can actually use the clock node. Signed-off-by:
Ramon Fried <ramon.fried@linaro.org>
-
Patrice Chotard authored
STiH410 has 2 PHYs wired on the DWC3 IP, USB2 and USB3 PHYs. As currently no U-boot driver is available for the USB3 PHY and to avoid issue during DWC3 drive probe, we use DWC3 IP with only USB2 PHY using stih410-b2260-u-boot.dtsi file. Fixes: 2fd4242c ("ubs: xhci-dwc3: Enable USB3 PHY when available") Signed-off-by:
Patrice Chotard <patrice.chotard@st.com>
-
Sam Protsenko authored
Eliminate code duplication: the same PARTS_DEFAULT was defined in am57xx_evm.h and in dra7xx_evm.h. Extract it to environment/boot.h and use in all OMAP5-based boards. Signed-off-by:
Sam Protsenko <semen.protsenko@linaro.org>
-
git://git.denx.de/u-boot-mmcTom Rini authored
-
Tom Rini authored
The overlay code is only useful when OF_LIBFDT is set, so mark it as depending on that first. Signed-off-by:
Tom Rini <trini@konsulko.com>
-
Neil Armstrong authored
This patch adds the driver for the Amlogic Meson Successive Approximation Register (SAR) A/D Converter based on the Linux IIO driver thanks to the great work of Martin Blumenstingl. The driver has been adapted to U-Boot and the ADC UClass. This patch depends on the regmap "regmap: add regmap_update_bits() helper" patch and has been tested using the newly introducted "adc" CLI command in the "cmd: add ADC cli commands" patch. Signed-off-by:
Neil Armstrong <narmstrong@baylibre.com>
-
Neil Armstrong authored
Add calls to regmap_read/modify_bits/write even if the proper memory read/write calls are not executed in sandbox. Signed-off-by:
Neil Armstrong <narmstrong@baylibre.com> Reviewed-by:
Simon Glass <sjg@chromium.org>
-
Neil Armstrong authored
Add the regmap_update_bits() to simply the read/modify/write of registers in a single command. The function is taken from Linux regmap implementation. Signed-off-by:
Neil Armstrong <narmstrong@baylibre.com> Reviewed-by:
Simon Glass <sjg@chromium.org>
-
Patrice Chotard authored
Add vrefbuf device tree node. This allows to get a voltage reference for ADCs. Signed-off-by:
Patrice Chotard <patrice.chotard@st.com>
-
Fabrice Gasnier authored
Enable vrefbuf on stm32mp15, to be used by ADC. Signed-off-by:
Fabrice Gasnier <fabrice.gasnier@st.com> Signed-off-by:
Patrice Chotard <patrice.chotard@st.com>
-
Fabrice Gasnier authored
Add VREF clock gating, that may be used by STM32 VREFBUF regulator. Signed-off-by:
Fabrice Gasnier <fabrice.gasnier@st.com> Signed-off-by:
Patrice Chotard <patrice.chotard@st.com>
-
Fabrice Gasnier authored
Add regulator driver for STM32 voltage reference buffer which can be used as voltage reference for ADCs, DACs and external components through dedicated VREF+ pin. Signed-off-by:
Fabrice Gasnier <fabrice.gasnier@st.com> Signed-off-by:
Patrice Chotard <patrice.chotard@st.com>
-
Patrice Chotard authored
Enable DM_REGULATOR_STPMU1 flag to activate regulator driver for STM32MP15 SoC and CMD_REGULATOR flag to be able to set/get regulator state int U-boot command line. Disable PMIC_CHILDREN as this flag is not needed in SPL for STM32MP1. Signed-off-by:
Patrice Chotard <patrice.chotard@st.com>
-
Patrice Chotard authored
Add regulator nodes needed by stpmu1 regulator driver Add vmmc-supply and vqmmc-supply regulator property for sdmmc1 and sdmmc2. Signed-off-by:
Christophe Kerello <christophe.kerello@st.com> Signed-off-by:
Patrice Chotard <patrice.chotard@st.com>
-
Patrice Chotard authored
Add regulator bindings to get access to regulator managed by drivers/power/regulator/stpmu1.c regulator driver. Signed-off-by:
Christophe Kerello <christophe.kerello@st.com> Signed-off-by:
Patrick Delaunay <patrick.delaunay@st.com> Signed-off-by:
Patrice Chotard <patrice.chotard@st.com>
-
Christophe Kerello authored
Enable support for the regulator functions of the STPMU1X PMIC. The driver implements get/set api for the various BUCKS and LDOs supported by the PMIC device. This driver is controlled by a device tree node which includes voltage limits. Signed-off-by:
Christophe Kerello <christophe.kerello@st.com> Signed-off-by:
Patrick Delaunay <patrick.delaunay@st.com> Signed-off-by:
Patrice Chotard <patrice.chotard@st.com>
-
Patrice Chotard authored
Add SoC power regulator entry for reg11, reg18 and usb33 regulator. Signed-off-by:
Patrice Chotard <patrice.chotard@st.com>
-
Patrick Delaunay authored
This driver binds and manages the following regulator of SoC's PWR block : - reg11 - reg18 - usb33 Signed-off-by:
Patrick Delaunay <patrick.delaunay@st.com> Signed-off-by:
Patrice Chotard <patrice.chotard@st.com>
-
Mario Six authored
Since kirkwook SPI was recently converted to DM, add compatible strings to the SPI flash devices to make them work with the new driver. Signed-off-by:
Mario Six <mario.six@gdsys.cc>
-
Praneeth Bajjuri authored
Boot android over emmc by default thru FIT image Signed-off-by:
Praneeth Bajjuri <praneeth@ti.com> Suggested-by:
Andrew F.Davis <afd@ti.com> Reviewed-by:
Tom Rini <trini@konsulko.com> Reviewed-by:
Sam Protsenko <semen.protsenko@linaro.org>
-
Praneeth Bajjuri authored
Enable the FDT library overlay support for all TI SOC family. Without this option, when Loading fdt from FIT image, the following warning is seen. "config with overlays but CONFIG_OF_LIBFDT_OVERLAY not set". Signed-off-by:
Praneeth Bajjuri <praneeth@ti.com> Suggested-by:
Andrew F.Davis <afd@ti.com> Reviewed-by:
Tom Rini <trini@konsulko.com> Reviewed-by:
Sam Protsenko <semen.protsenko@linaro.org>
-
Praneeth Bajjuri authored
'commit dda0bd674481 ("arm: dra762: Add support for device package identification")' introduces ABZ and ACD package identification. This patch is to extend usage of "fastboot getvar cpu" for DRA76x ABZ and ACD devices. Helps in fixing the boot warning. Warning: fastboot.cpu: unknown CPU rev: 123863298 on CPU : DRA762-GP ES1.0 ABZ package Model: TI AM5748 IDK Board: AM574x IDK REV 1.0A Signed-off-by:
Praneeth Bajjuri <praneeth@ti.com> Reviewed-by:
Tom Rini <trini@konsulko.com>
-
Ludovic Desroches authored
Remove SYS_USE_NANDFLASH, SYS_USE_MMC as they are deprecated and unused. The board configurations already use CONFIG_SD_BOOT and CONFIG_NAND_BOOT respectively. Signed-off-by:
Ludovic Desroches <ludovic.desroches@microchip.com> [eugen.hristev@microchip.com: rework on latest u-boot] Signed-off-by:
Eugen Hristev <eugen.hristev@microchip.com>
-
Eugen Hristev authored
According to the REVB schematic, fix the USB vbus power enable pin. Based on original work by Wenyou Yang Signed-off-by:
Eugen Hristev <eugen.hristev@microchip.com>
-
Eugen Hristev authored
We have a new demo layout of our sama5 boards for the NAND Flash memory. According to this new layout, adjust the mtdparts variable in bootargs to align with this, which is available at : http://www.at91.com/linux4sam/bin/view/Linux4SAM/Sama5d3XplainedMainPage#NAND_Flash_demo_Memory_map , Based on original work by Wenyou Yang Signed-off-by:
Eugen Hristev <eugen.hristev@microchip.com>
-
Eugen Hristev authored
To fix the issue of write the rootfs.ubi, adjust the smc timings configuration of the nand controller. Based on original work by Wenyou Yang Signed-off-by:
Eugen Hristev <eugen.hristev@microchip.com>
-
Ludovic Desroches authored
When a pin is muxed to a peripheral or as a GPIO, the only configuration that can be set is the pullup. It is too restrictive so this patch allows to give a full configuration. Signed-off-by:
Ludovic Desroches <ludovic.desroches@microchip.com>
-
Ludovic Desroches authored
The drive strength has to be set to medium for the NAND data lines. With a low drive, we can get some data corruption. Signed-off-by:
Ludovic Desroches <ludovic.desroches@microchip.com>
-
Ludovic Desroches authored
Macros for drive strength configuration were missing. Signed-off-by:
Ludovic Desroches <ludovic.desroches@microchip.com>
-
Ley Foon Tan authored
Add PCIe driver for Intel FPGA PCIe IP. This driver operates the PCIe IP in rootport mode only, the EP mode is not supported. The driver is tested with the Intel e1000e NIC driver. Signed-off-by:
Ley Foon Tan <ley.foon.tan@intel.com>
-
Michalis Pappas authored
This patch adds smc and hvc commands, that allow issuing Secure Monitor Calls and Hypervisor Calls conforming to the ARM SMC Calling Convention. Add Kconfig items to allow each command can be individually enabled. Signed-off-by:
Michalis Pappas <mpappas@fastmail.fm> Reviewed-by:
Simon Glass <sjg@chromium.org>
-
Neil Armstrong authored
The pinctrl bindings has changed for Amlogic Meson SoCs since Linux 4.13, update the pinctrl driver to take this in account. Signed-off-by:
Neil Armstrong <narmstrong@baylibre.com>
-
Neil Armstrong authored
Synchronize the Linux Device Tree for Amlogic Meson GX boards from Linux 4.16.0. Signed-off-by:
Neil Armstrong <narmstrong@baylibre.com>
-
Neil Armstrong authored
Taking into account the Amlogic Family name starts with GX, including the GXBB, GXL and GXM SoCs. Signed-off-by:
Neil Armstrong <narmstrong@baylibre.com>
-