- Oct 29, 2016
-
-
Stephen Warren authored
ARMv7 Tegra boards aren't currently covered by any other travis-ci jobs. Add a new job to build them. Signed-off-by:
Stephen Warren <swarren@nvidia.com> Reviewed-by:
Tom Rini <trini@konsulko.com> Reviewed-by:
Heiko Schocher <hs@denx.de>
-
Stephen Warren authored
Use buildman to compile any U-Boot binary tested by test/py. This re-uses all the work done elsewhere to make buildman work within Travis-CI, in particular related to toolchain downloading and buildman config file creation. Signed-off-by:
Stephen Warren <swarren@nvidia.com> Reviewed-by:
Heiko Schocher <hs@denx.de>
-
Stephen Warren authored
Invoking exit prevents any subsequent build commands from running, and future patches will add extra commands. Signed-off-by:
Stephen Warren <swarren@nvidia.com> Reviewed-by:
Heiko Schocher <hs@denx.de>
-
Stephen Warren authored
This places build results into a board-specific directory rather than a buildman-thread-specific directory. This is required so that we can access the directory from test.py, and there's no risk of a particular build's results being over-written by another build performed by the same thread. In theory, this can lead to slower builds when building many different boards in a single buildman thread, since it removes the possibility of incremental builds between boards. In practice however I didn't notice longer build times when when enabling this option; if anything build times decreased although I suspect that's simply due to general variations in build performance across different machines within the Travis CI infra-structure. Signed-off-by:
Stephen Warren <swarren@nvidia.com> Reviewed-by:
Heiko Schocher <hs@denx.de>
-
Stephen Warren authored
Any time an x86 toolchain is used, we need to edit ~/.buildman to reference it. Move the editing logic into a central place so that it doesn't have to be duplicated everywhere that uses the x86 toolchain; future patches will add additional cases where it's used. It would be nice if we could unconditionally write all of ~/.buildman at once. Unfortunately, buildman fails if any toolchain mentioned in a toolchain-prefix entry doesn't exist, even if it doesn't need to use it for the current build. The sandbox/x86 build definition currently does nothing more than edit ~/.buildman; no builds are run. Fix this by not defining a custom script for this build, and hence preventing that stanza from replacing the default script. Signed-off-by:
Stephen Warren <swarren@nvidia.com> Reviewed-by:
Heiko Schocher <hs@denx.de>
-
Stephen Warren authored
The phrase "if [ $? -ne 0 ]; then exit $?; fi" doesn't work correctly; by the time the "exit" statement runs, $? has already been over-written by the result of the [ command. Fix this by explicitly storing $? and then using that stored value in both the test and the error-case exit statement. This change also converts from textual comparison to integer comparison, since the exit code is an integer and there's no need to convert it to a string for comparison. Signed-off-by:
Stephen Warren <swarren@nvidia.com> Reviewed-by:
Heiko Schocher <hs@denx.de>
-
Stephen Warren authored
Travis CI seems to be confused when there's a colon in an echo command, and this is currently worked around using a variable that contains the text we want to echo. Use = syntax instead so that we can remove the work-around; it's rather confusing until you find out what it's for. Signed-off-by:
Stephen Warren <swarren@nvidia.com> Reviewed-by:
Heiko Schocher <hs@denx.de>
-
Stephen Warren authored
There were two sub-jobs to build arm1136. Remove the duplicate. Signed-off-by:
Stephen Warren <swarren@nvidia.com> Reviewed-by:
Tom Rini <trini@konsulko.com>
-
Stephen Warren authored
Travis CI names sub-jobs after the first environment variable that is set for a script. This doesn't produce meaningful results for any of the non- buildman jobs. Add a dummy variable to give the jobs meaningful names. Signed-off-by:
Stephen Warren <swarren@nvidia.com> Reviewed-by:
Tom Rini <trini@konsulko.com>
-
- Oct 28, 2016
-
-
git://git.denx.de/u-boot-atmelTom Rini authored
-
Wenyou Yang authored
Add driver model support while retaining the existing legacy code. This allows the driver to support boards that have converted to driver model as well as those that have not. Signed-off-by:
Wenyou Yang <wenyou.yang@atmel.com> Reviewed-by:
Simon Glass <sjg@chromium.org> Acked-by:
Stephen Warren <swarren@nvidia.com>
-
Wenyou Yang authored
Enable an early debug UART to debug problems when an ICE or other debug mechanism is not available. Signed-off-by:
Wenyou Yang <wenyou.yang@atmel.com> Reviewed-by:
Simon Glass <sjg@chromium.org> Reviewed-by:
Andreas Bießmann <andreas.devel@googlemail.com>
-
Wenyou Yang authored
If 'ethaddr' is not set, we will get the ethernet address from AT24MAC, and set it to 'ethaddr' variable. Signed-off-by:
Wenyou Yang <wenyou.yang@atmel.com> Signed-off-by:
Songjun Wu <songjun.wu@microchip.com> Reviewed-by:
Andreas Bießmann <biessmann@corscience.de>
-
Wenyou Yang authored
Since the introduction of pinctrl and clk driver, and the dts file, remove unneeded the pin configurations and the clock enabling code. Signed-off-by:
Wenyou Yang <wenyou.yang@atmel.com> Reviewed-by:
Simon Glass <sjg@chromium.org> Reviewed-by:
Andreas Bießmann <andreas.devel@googlemail.com>
-
Wenyou Yang authored
Move the config options from the include/configs/sama5d2_xplained.h to configs/sama5d2_xplained_*_defconfig. Signed-off-by:
Wenyou Yang <wenyou.yang@atmel.com> Reviewed-by:
Andreas Bießmann <andreas.devel@googlemail.com>
-
Wenyou Yang authored
Add support to enable an early debug UART for debugging. Signed-off-by:
Wenyou Yang <wenyou.yang@atmel.com> Reviewed-by:
Simon Glass <sjg@chromium.org> Reviewed-by:
Andreas Bießmann <andreas@biessmann.org>
-
Wenyou Yang authored
Add ATMEL_USART option to support to enable the Atmel usart driver from Kconfig. Signed-off-by:
Wenyou Yang <wenyou.yang@atmel.com> Reviewed-by:
Andreas Bießmann <andreas@biessmann.org>
-
Wenyou Yang authored
Due to the peripheral and generated clock driver improvement, remove the unnecessary clock calling. Signed-off-by:
Wenyou Yang <wenyou.yang@atmel.com> Reviewed-by:
Jaehoon Chung <jh80.chung@samsung.com>
-
Wenyou Yang authored
Due to the peripheral clock driver improvement, remove the unnecessary clock calling. Signed-off-by:
Wenyou Yang <wenyou.yang@atmel.com> Reviewed-by:
Andreas Bießmann <andreas@biessmann.org>
-
Wenyou Yang authored
Change the error return value -ENODEV from to -EINVAL for more reasonable. Signed-off-by:
Wenyou Yang <wenyou.yang@atmel.com> Reviewed-by:
Heiko Schocher <hs@denx.de>
-
Wenyou Yang authored
Due to the peripheral clock driver improvement, remove the unnecessary clock calling. Signed-off-by:
Wenyou Yang <wenyou.yang@atmel.com> Reviewed-by:
Heiko Schocher <hs@denx.de>
-
Wenyou Yang authored
Due to the peripheral clock driver improvement, remove the unnecessary clock calling. Signed-off-by:
Wenyou Yang <wenyou.yang@atmel.com> Acked-by:
Stephen Warren <swarren@nvidia.com>
-
Wenyou Yang authored
For the peripheral clock, provide the clock ops for the clock provider, such as spi0_clk. The .of_xlate is to get the clk->id, the .enable is to enable the spi0 peripheral clock, the .get_rate is to get the clock frequency. The driver for periph32ck node is responsible for recursively binding its children as clk devices, not provide the clock ops. So do the generated clock and system clock. Signed-off-by:
Wenyou Yang <wenyou.yang@atmel.com> Acked-by:
Stephen Warren <swarren@nvidia.com>
-
Wenyou Yang authored
In order to make clk->dev available in ops->of_xlate() to get the clock ID from the 'reg' property of the clock node, assign the clk->dev before calling ops->of_xlate(). Signed-off-by:
Wenyou Yang <wenyou.yang@atmel.com> Acked-by:
Stephen Warren <swarren@nvidia.com> Acked-by:
Simon Glass <sjg@chromium.org>
-
Wenyou Yang authored
Fix the warning from dtc like, ---8<---- Warning (unit_address_vs_reg): Node /ahb/apb/pmc@f0014000/periph64ck/sdmmc0_hclk has a reg or ranges property, but no unit name --->8---- Signed-off-by:
Wenyou Yang <wenyou.yang@atmel.com> Acked-by:
Stephen Warren <swarren@nvidia.com>
-
Wenyou Yang authored
The at91-pmc and at91-sckc aren't the clock providers, change their class ID from UCLASS_CLK to UCLASS_SIMPLE_BUS, they also don't need to bind the child nodes explicitly, the .post_bind callback of simple_bus uclass will do it for them. Signed-off-by:
Wenyou Yang <wenyou.yang@atmel.com> Acked-by:
Stephen Warren <swarren@nvidia.com> Reviewed-by:
Simon Glass <sjg@chromium.org>
-
Robert P. J. Day authored
Signed-off-by:
Robert P. J. Day <rpjday@crashcourse.ca> Reviewed-by:
Andreas Bießmann <andreas@biessmann.org>
-
Heiko Schocher authored
add at least icache support for at91 based boards. This speeds up NOR flash access on an at91sam9g15 based board from 15.2 seconds reading 8 MiB from a SPI NOR flash to 5.7 seconds. Signed-off-by:
Heiko Schocher <hs@denx.de> Reviewed-by:
Simon Glass <sjg@chromium.org> Reviewed-by:
Andreas Bießmann <andreas@biessmann.org>
-
Heiko Schocher authored
on at91sam9x5 PRES offset is 4 in the PMC master clock register. Signed-off-by:
Heiko Schocher <hs@denx.de> Acked-by:
Wenyou Yang <wenyou.yang@atmel.com> Acked-by:
Andreas Bießmann <andreas@biessmann.org>
-
Heiko Schocher authored
add missing MPDDRC_MD defines Signed-off-by:
Heiko Schocher <hs@denx.de> Acked-by:
Wenyou Yang <wenyou.yang@atmel.com> Reviewed-by:
Andreas Bießmann <andreas@biessmann.org>
-
git://www.denx.de/git/u-boot-imxTom Rini authored
Signed-off-by:
Tom Rini <trini@konsulko.com> Conflicts: common/Kconfig configs/dms-ba16_defconfig
-
http://git.denx.de/u-boot-mmcTom Rini authored
-
Bin Meng authored
Introduce CONFIG_PCI_PNP in Kconfig and move over boards' defconfig to use that. Signed-off-by:
Bin Meng <bmeng.cn@gmail.com> Reviewed-by:
Tom Rini <trini@konsulko.com> [trini: Re-generate configs and include/configs/ changes] Signed-off-by:
Tom Rini <trini@konsulko.com>
-
Jaehoon Chung authored
To prevent the wrong value check the SD version. Signed-off-by:
Jaehoon Chung <jh80.chung@samsung.com>
-
Jaehoon Chung authored
If vmmc didn't supply, we didn't know which card didn't supply vmmc. And changed from "put" to "debug". Signed-off-by:
Jaehoon Chung <jh80.chung@samsung.com> Reviewed-by:
Peng Fan <peng.fan@nxp.com>
-
Sylvain Lesne authored
Now that CONFIG_BLK and CONFIG_MMC_OPS are enabled by default with CONFIG_DM_MMC, the DWMMC driver on the socfpga platform fails at runtime. This adds the missing fields in the driver declaration. Signed-off-by:
Sylvain Lesne <lesne@alse-fr.com> Acked-by:
Marek Vasut <marex@denx.de> Reviewed-by:
Simon Glass <sjg@chromium.org>
-
Masahiro Yamada authored
Drop unneeded variables and assignments. Signed-off-by:
Masahiro Yamada <yamada.masahiro@socionext.com>
-
Jaehoon Chung authored
This pathc is fixed the below thing. If misaligned the cache range, Just flush to CACHLINE_SIZE. "CACHE: Misaligned operation at range [7ae55b00, 7ae55b08]" Signed-off-by:
Jaehoon Chung <jh80.chung@samsung.com>
-
Peng Fan authored
In device tree, there is vmmc-supply property for SD/MMC. Introduce mmc_power_init function to handle vmmc-supply. mmc_power_init will first invoke board_mmc_power_init to avoid break boards which already implement board_mmc_power_init. If DM_MMC and DM_REGULATOR is defined, the regulator will be enabled to power up the device. Signed-off-by:
Peng Fan <peng.fan@nxp.com> Cc: Jaehoon Chung <jh80.chung@samsung.com>
-
Tom Rini authored
Add 'PCI' as a menu option and migrate all existing users. Signed-off-by:
Tom Rini <trini@konsulko.com> Acked-by:
Stephen Warren <swarren@nvidia.com>
-