summaryrefslogtreecommitdiff
path: root/configs
Commit message (Collapse)AuthorAgeFilesLines
* ata: Migrate CONFIG_SATA_MV to KconfigTuomas Tynkkynen2017-12-122-0/+2
| | | | Signed-off-by: Tuomas Tynkkynen <tuomas.tynkkynen@iki.fi>
* ata: Migrate CONFIG_SATA_SIL3114 to KconfigTuomas Tynkkynen2017-12-123-0/+3
| | | | Signed-off-by: Tuomas Tynkkynen <tuomas.tynkkynen@iki.fi>
* Merge git://git.denx.de/u-boot-fsl-qoriqTom Rini2017-12-078-4/+105
|\
| * armv8: LS2080A_SECURE_BOOT: Enable CONFIG_FSL_LS_PPA.Udit Agarwal2017-12-062-4/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | Adds config CONFIG_FSL_LS_PPA and CONFIG_FSL_CAAM in LS2080AQDS and LS2080ARDB secure boot defconfig. Removes CONFIG_FIT, as with CONFIG_FSL_LS_PPA enabled, CONFIG_FIT is selected. Removes CONFIG_SPL_RSA as in NOR boot SPL boot is not done. Signed-off-by: Udit Agarwal <udit.agarwal@nxp.com> Reviewed-by: York Sun <york.sun@nxp.com>
| * armv8: LS1088A_QSPI: Add secure boot defconfigs for QSPI boot.Udit Agarwal2017-12-062-0/+95
| | | | | | | | | | | | | | | | | | Add the secure boot defconfigs for QSPI boot on LS1088ARDB and LS1088AQDS platforms. Signed-off-by: Udit Agarwal <udit.agarwal@nxp.com> Signed-off-by: Vinitha Pillai-B57223 <vinitha.pillai@nxp.com> Reviewed-by: York Sun <york.sun@nxp.com>
| * armv8: ls1088a: Unset USE_BOOTCOMMAND in defconfigAshish Kumar2017-12-064-0/+4
| | | | | | | | | | | | | | | | | | | | Unset USE_BOOTCOMMAND for all ls1088 defconfig files to fix redefinition error. USE_BOOTCOMMAND was introduced in commit b6251db8c3f ("Kconfig: Introduce USE_BOOTCOMMAND and migrate BOOTCOMMAND"). Signed-off-by: Ashish Kumar <Ashish.Kumar@nxp.com> Reviewed-by: York Sun <york.sun@nxp.com>
* | log: sandbox: Enable loggingSimon Glass2017-12-071-0/+3
| | | | | | | | | | | | | | Enable all logging features on sandbox so that the tests can be run. Signed-off-by: Simon Glass <sjg@chromium.org> Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
* | sandbox: Adjust pre-console address to avoid conflictSimon Glass2017-12-071-1/+1
|/ | | | | | | | | | We cannot use sandbox memory at 0 since other things use memory at that address. Move it up out of the way. Note that the pre-console buffer is currently disabled with sandbox, but this change will avoid confusion if it is manually enabled. Signed-off-by: Simon Glass <sjg@chromium.org>
* omap3: evm: Explicitly use DISTRO_DEFAULTS features at startupDerald D. Woods2017-12-041-1/+1
| | | | | | | | | | | | [primary] Check MMC 0:1 for /extlinux/extlinux.conf and boot [fallback 1] Check MMC 0:1 zImage and run mmcbootz [fallback 2] Check MMC 0:1 uImage and run mmcboot [fallback 3] Check NAND partitions and run nandboot If 'extlinux.conf' is not found on MMC 0, the previous boot behavior is followed. Signed-off-by: Derald D. Woods <woods.technical@gmail.com>
* ARM: arch-meson: build memory banks using reported memory from registersNeil Armstrong2017-12-044-0/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | As discussed at [1], the Amlogic Meson GX SoCs can embed a BL31 firmware and a secondary BL32 firmware. Since mid-2017, the reserved memory address of the BL31 firmware was moved and grown for security reasons. But mainline U-Boot and Linux has the old address and size fixed. These SoCs have a register interface to get the two firmware reserved memory start and sizes. This patch adds a dynamic reservation of the memory zones in the device tree bootmem reserved memory zone used by the kernel in early boot. To be complete, the memory zones are also added to the EFI reserved zones. Depends on patchset "Add support for Amlogic GXL Based SBCs" at [2]. [1] http://lists.infradead.org/pipermail/linux-amlogic/2017-October/004860.html [2] http://lists.infradead.org/pipermail/linux-amlogic/2017-November/005410.html Changes since v1: - switched the #if to if(IS_ENABLED()) to compile all code paths - renamed function to meson_board_add_reserved_memory() - added a mem.h header with comment - updated all boards ft_board_setup() Changes since RFC v2: - reduced preprocessor load - kept Odroid-C2 static memory mapping as exception Changes since RFC v1: - switch to fdt rsv mem table and efi reserve memory - replaced in_le32 by readl() Reviewed-by: Simon Glass <sjg@chromium.org> Signed-off-by: Neil Armstrong <narmstrong@baylibre.com> [trini: Fix warning on khadas-vim over missing <asm/arch/mem.h> Signed-off-by: Tom Rini <trini@konsulko.com>
* arm: Add Khadas VIM support based on Meson GXL familyNeil Armstrong2017-12-041-0/+35
| | | | | | | | | | | | | | This adds platform code for the Khadas VIM board based on a Meson GXL (S905X) SoC with the Meson GXL configuration. This initial submission supports UART, MMC/SDCard and Ethernet with the Internal RMII PHY. The meson-gxl-s905x-khadas-vim.dts is synchronised from the linux 4.13 stable tree as of 4.13.8. Reviewed-by: Simon Glass <sjg@chromium.org> Signed-off-by: Neil Armstrong <narmstrong@baylibre.com>
* arm: Add LibreTech CC support based on Meson GXL familyNeil Armstrong2017-12-041-0/+35
| | | | | | | | | | | | | | This adds platform code for the Libre Computer CC "Le Potato" board based on a Meson GXL (S905X) SoC with the Meson GXL configuration. This initial submission supports UART, MMC/SDCard and Ethernet with the Internal RMII PHY. The meson-gxl-s905x-libretech-cc.dts is synchronised from the linux 4.13 stable tree as of 4.13.8. Reviewed-by: Simon Glass <sjg@chromium.org> Signed-off-by: Neil Armstrong <narmstrong@baylibre.com>
* add support for Raspberry Pi Zero WDmitry Korunov2017-12-041-0/+28
| | | | Signed-off-by: Dmitry Korunov <dessel.k@gmail.com>
* rockchip: rk3128: add defconfig for evb-rk3128Kever Yang2017-11-301-0/+56
| | | | | | | | | Enable board config for evb-rk3128. Serial output and eMMC works in this version. Signed-off-by: Kever Yang <kever.yang@rock-chips.com> Acked-by: Philipp Tomsich <philipp.tomsich@theobroma-systems.com> Reviewed-by: Philipp Tomsich <philipp.tomsich@theobroma-systems.com>
* Merge branch 'rmobile-mx' of git://git.denx.de/u-boot-shTom Rini2017-11-304-2/+30
|\
| * ARM: rmobile: Rework the ULCB CPLD driverMarek Vasut2017-11-302-0/+2
| | | | | | | | | | | | | | | | Rework the ULCB CPLD driver and make it into a sysreset driver, since that is what the ULCB CPLD driver is mostly for. Signed-off-by: Marek Vasut <marek.vasut+renesas@gmail.com> Cc: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
| * ARM: rmobile: Migrate boards to RCar IIC driversMarek Vasut2017-11-304-0/+12
| | | | | | | | | | | | | | | | | | Stop using the old ad-hoc SH I2C driver and use the new RCar IIC driver instead. The SH I2C driver should be deprecated and removed eventually. Signed-off-by: Marek Vasut <marek.vasut+renesas@gmail.com> Cc: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
| * ARM: rmobile: Use PRR driver on all Gen3 boardsMarek Vasut2017-11-304-0/+8
| | | | | | | | | | | | | | | | | | Mark the PRR as u-boot,dm-pre-reloc in all Gen3 board DTs as it is needed very early and turn on the CONFIG_SYSCON to allow the PRR driver to bind as a syscon uclass. Signed-off-by: Marek Vasut <marek.vasut+renesas@gmail.com> Cc: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
| * ARM: rmobile: Enable xHCI on RCar Gen3 boardsMarek Vasut2017-11-304-0/+4
| | | | | | | | | | | | | | Enable the XHCI support on all boards. Signed-off-by: Marek Vasut <marek.vasut+renesas@gmail.com> Cc: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
| * ARM: rmobile: Remove CONFIG_CMD_SDRAM from Salvator-XMarek Vasut2017-11-302-2/+0
| | | | | | | | | | | | | | | | This command is useless on Salvator-X as it is reading DRAM info from SPD. We have no SPD on Salvator-X. Signed-off-by: Marek Vasut <marek.vasut+renesas@gmail.com> Cc: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
| * ARM: rmobile: Enable Micrel KSZ90x1 PHY driver on ULCBMarek Vasut2017-11-302-0/+4
| | | | | | | | | | | | | | | | Enable the Micrel KSZ90x1 driver on ULCB, since the board is populated with KSZ9031 and without this driver, the PHY cannot be operated. Signed-off-by: Marek Vasut <marek.vasut+renesas@gmail.com> Cc: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
* | Merge git://git.denx.de/u-boot-x86Tom Rini2017-11-301-0/+1
|\ \
| * | x86: conga-qeval20-qa3-e3845: Adjust VGA rom addressAnatolij Gustschin2017-11-301-0/+1
| |/ | | | | | | | | | | | | | | | | Adjust VGA rom address to 0xfffb0000 so that u-boot.rom image can be built again. Signed-off-by: Anatolij Gustschin <agust@denx.de> Reviewed-by: Stefan Roese <sr@denx.de> Acked-by: Bin Meng <bmeng.cn@gmail.com>
* | board: laird: add WB50N CPU moduleBen Whitten2017-11-291-0/+30
| | | | | | | | | | | | | | | | | | | | | | | | This board is based on the Atmel sama5d3 eval boards. Supporting the following features: - Boot from NAND Flash - Ethernet - FIT - SPL Signed-off-by: Ben Whitten <ben.whitten@lairdtech.com> Signed-off-by: Dan Kephart <dan.kephart@lairdtech.com>
* | board: laird: add WB45N CPU moduleBen Whitten2017-11-291-0/+27
| | | | | | | | | | | | | | | | | | | | | | | | This board is based on the Atmel 9x5 eval board. Supporting the following features: - Boot from NAND Flash - Ethernet - FIT - SPL Signed-off-by: Ben Whitten <ben.whitten@lairdtech.com> Signed-off-by: Dan Kephart <dan.kephart@lairdtech.com>
* | board: atmel: add sama5d2_ptc_ek boardLudovic Desroches2017-11-294-67/+120
| | | | | | | | | | | | | | | | Add the SAMA5D2 PTC EK board and remove the SAMA5D2 PTC ENGI board which was a prototype. Signed-off-by: Ludovic Desroches <ludovic.desroches@microchip.com> Signed-off-by: Wenyou Yang <wenyou.yang@microchip.com>
* | configs: stm32f746-disco: enable MISC/DM_RESET/STM32_RESET and STM32_RCCPatrice Chotard2017-11-291-0/+4
| | | | | | | | | | | | | | | | This allows to add rcc MFD support to stm32f746-disco board This rcc MFD driver manages clock and reset for STM32 SoCs family Signed-off-by: Patrice Chotard <patrice.chotard@st.com> Reviewed-by: Vikas Manocha <vikas.manocha@st.com>
* | nds32: board: Support ftsdc010 DM.Rick Chen2017-11-302-0/+6
| | | | | | | | | | | | AG101P/AE3XX enable ftsdc010 dm flow. Signed-off-by: Rick Chen <rick@andestech.com>
* | spi: nds_ae3xx: Rename nds_ae3xx_spi as atcspi200_spiRick Chen2017-11-301-1/+1
| | | | | | | | | | | | | | | | | | atcspi200 is Andestech spi ip which is embedded in AE3XX and AE250 platforms. So rename as atcspi200 will be more reasonable to be used in different platforms. Signed-off-by: Rick Chen <rick@andestech.com>
* | ae3xx: timer: Rename AE3XX to ATCPIT100Rick Chen2017-11-301-1/+1
|/ | | | | | | | | | ATCPIT100 is Andestech timer IP which is embeded in AE3XX and AE250 boards. So rename AE3XX to ATCPIT100 will be more make sence. Signed-off-by: rick <rick@andestech.com> Signed-off-by: Rick Chen <rickchen36@gmail.com> Reviewed-by: Simon Glass <sjg@chromium.org>
* Merge tag 'xilinx-for-v2018.01' of git://www.denx.de/git/u-boot-microblazeTom Rini2017-11-2925-2/+324
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Xilinx changes for v2018.1 Zynq: - Add support for Syzygy and cc108 boards - Add support for mini u-boot configurations (cse) - dts updates - config/defconfig updates in connection to Kconfig changes - Fix psu_init handling ZynqMP: - SPL fixes - Remove slcr.c - Fixing r5 startup sequence - Add support for external pmufw - Add support for new ZynqMP chips - dts updates - Add support for zcu102 rev1.0 board Drivers: - nand: Support external timing setting and board init - ahci: Fix wording - axi_emac: Wait for bit, non processor mode, readl/write conversion - zynq_gem: Fix SGMII/PCS support
| * arm: zynq: Enable debug uart on zc706Michal Simek2017-11-291-0/+5
| | | | | | | | | | | | Enable debug uart by default. Signed-off-by: Michal Simek <michal.simek@xilinx.com>
| * arm64: zynqmp: Add revision to identification stringMichal Simek2017-11-282-2/+2
| | | | | | | | | | | | It is good to see revision in boot log. Signed-off-by: Michal Simek <michal.simek@xilinx.com>
| * arm64: zynqmp: Add support for zcu102 1.0 revMichal Simek2017-11-281-0/+82
| | | | | | | | | | | | 1.0 rev is the latest rev. Describe information in eeprom. Signed-off-by: Michal Simek <michal.simek@xilinx.com>
| * arm64: zynqmp: Enable debug uart for zc1751 dc5Michal Simek2017-11-281-0/+5
| | | | | | | | | | | | Showing uart earlier. Signed-off-by: Michal Simek <michal.simek@xilinx.com>
| * arm: zynq: Add mini u-boot configuration for zynqMichal Simek2017-11-281-0/+62
| | | | | | | | | | | | | | | | | | | | | | | | | | Add configuration files/dtses for mini u-boot configurations which runs out of OCM. ram top is calculated from 0 that's why +#define CONFIG_SYS_SDRAM_BASE 0xfffc0000 +#define CONFIG_SYS_SDRAM_SIZE 0x40000 was hardcoded. Signed-off-by: Michal Simek <michal.simek@xilinx.com> Reviewed-by: Simon Glass <sjg@chromium.org>
| * arm: zynq: Move ZYNQ_SERIAL to KconfigMichal Simek2017-11-2823-0/+23
| | | | | | | | | | | | | | Move cadence/zynq serial driver via Kconfig Signed-off-by: Michal Simek <michal.simek@xilinx.com> Reviewed-by: Simon Glass <sjg@chromium.org>
| * arm: zynq: Enable FPGA/FPGA_XILINX via KconfigMichal Simek2017-11-2816-0/+16
| | | | | | | | | | | | Enabling fpga via Kconfig. Signed-off-by: Michal Simek <michal.simek@xilinx.com>
| * arm: zynq: Add board support for cc108Michal Simek2017-11-281-0/+54
| | | | | | | | | | | | | | | | cc108 board is wiring uart via PL which is good platform for SPL fpga support. Signed-off-by: Michal Simek <michal.simek@xilinx.com> Reviewed-by: Simon Glass <sjg@chromium.org>
| * arm: zynq: Enable qspi for zc770_xm013Michal Simek2017-11-281-0/+5
| | | | | | | | | | | | Enable qspi driver and flashes for this board. Signed-off-by: Michal Simek <michal.simek@xilinx.com>
| * arm: zynq: Enable MACRONIX flash for zc702/zc706/zc770 xm010Michal Simek2017-11-283-0/+3
| | | | | | | | | | | | Enable MACRONIX flash for boards with QSPI enabled. Signed-off-by: Michal Simek <michal.simek@xilinx.com>
| * arm: zynq: Enable debug console on zc770 xm010 by defaultMichal Simek2017-11-281-0/+4
| | | | | | | | | | | | Enable debug console. Signed-off-by: Michal Simek <michal.simek@xilinx.com>
| * arm: zynq: Enable bootz command for Xilinx platformsMichal Simek2017-11-287-0/+7
| | | | | | | | | | | | | | bootz command is valid way how to boot Linux kernel. Enable it by default. Signed-off-by: Michal Simek <michal.simek@xilinx.com>
| * arm: zynq: Add support for SYZYGY Hub boardTom McLeod2017-11-281-0/+56
| | | | | | | | | | | | | | | | | | | | | | Add the Zynq-based SYZYGY Hub board from Opal Kelly. The board contains a Xilinx Zynq xc7z012s SoC, 1GB DDR3 RAM, and supports booting from SD. Signed-off-by: Tom McLeod <tom.mcleod@opalkelly.com> Cc: Michal Simek <monstr@monstr.eu> CC: Albert Aribaud <albert.u.boot@aribaud.net> Signed-off-by: Michal Simek <michal.simek@xilinx.com>
* | ARM: uniphier: set CONFIG_LOGLEVEL to 6Masahiro Yamada2017-11-293-0/+3
| | | | | | | | | | | | Print out KERN_NOTICE or higher level log messages. Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
* | ARM: openrd: set CONFIG_LOGLEVEL to 2Masahiro Yamada2017-11-293-3/+3
|/ | | | | | | | | These boards are on the boundary of "u-boot-nodtb.bin exceeds file size limit" error. Reduce the log-level to save memory footprint. Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
* spl: TI: Do not default to SPL_FIT_IMAGE_TINY being enabledTom Rini2017-11-271-0/+2
| | | | | | | | This option prevents booting on am335x_evm at least along with most likely other platforms. Fixes: 337bbb629777 ("spl: fit: add SPL_FIT_IMAGE_TINY config to reduce code-size") Signed-off-by: Tom Rini <trini@konsulko.com>
* Merge git://www.denx.de/git/u-boot-imxTom Rini2017-11-2725-22/+69
|\ | | | | | | Signed-off-by: Tom Rini <trini@konsulko.com>
| * configs: icore-rqs: Enable falcon modeJagan Teki2017-11-271-0/+1
| | | | | | | | Signed-off-by: Jagan Teki <jagan@amarulasolutions.com>
| * i.MX6: engicam: Add imx6q/imx6ul boards for existing boardsJagan Teki2017-11-278-8/+8
| | | | | | | | | | | | | | | | Add new board names for existing board support imx6q - icore and icore_rqs boards imx6ul - geam6ul and isiot boards Signed-off-by: Jagan Teki <jagan@amarulasolutions.com>