summaryrefslogtreecommitdiff
path: root/include
AgeCommit message (Collapse)Author
2013-12-16common/cmd_bootm: extend do_bootm_vxworks to support the new VxWorks boot ↵Miao Yan
interface. The next version VxWorks adopts device tree (for PowerPC and ARM) as its hardware description mechanism. For PowerPC, the boot interface conforms to the ePAPR standard, which is: void (*kernel_entry)(ulong fdt_addr, ulong r4 /* 0 */, ulong r5 /* 0 */, ulong r6 /* EPAPR_MAGIC */, ulong r7 /* IMA size */, ulong r8 /* 0 */, ulong r9 /* 0 */) For ARM, the boot interface is: void (*kernel_entry)(void *fdt_addr) Signed-off-by: Miao Yan <[email protected]> [trini: Fix build error when !CONFIG_OF_FDT is set, typo on PowerPC, missing extern ft_fixup_num_cores] Signed-off-by: Tom Rini <[email protected]>
2013-12-16blackfin: fix building error by enlarging the memory sizeSonic Zhang
Signed-off-by: Sonic Zhang <[email protected]>
2013-12-16blackfin: Disable commands to reduce l1 ram requirementSonic Zhang
Signed-off-by: Sonic Zhang <[email protected]>
2013-12-16blackfin: fix building error by adding macro CONFIG_SYS_I2CSonic Zhang
Signed-off-by: Sonic Zhang <[email protected]>
2013-12-16blackfin: fix build error by adding CONFIG_BFIN_SERIALSonic Zhang
Signed-off-by: Sonic Zhang <[email protected]>
2013-12-13common/config_defaults.h: make CONFIG_BOOTM_VXWORKS default configurationMiao Yan
Signed-off-by: Miao Yan <[email protected]>
2013-12-13kgdb: configs: remove obsolete CONFIG_KGDB_SER_INDEXVladimir Zapolskiy
The last users of CONFIG_KGDB_SER_INDEX were removed more than 3 years ago in commits 550650ddd0 and bf16500f79, either kgdb subsystem should care about this parameter or it should be gone completely. Signed-off-by: Vladimir Zapolskiy <[email protected]>
2013-12-12arm: omap: cm_t35: update config fileNikita Kiryanov
This patch makes the following updates to the cm_t35 config file: - Replace "ttyS" in default environment kernel bootargs with the new "ttyO" notation. - Remove "omapfb.debug=y" from default environment kernel bootargs. - Define a minimal power-on delay for USB hub ports so that slow-to-power-on USB sticks will have enough time to become responsive. - Add support for bootz command - ulpi_reset is not necessary and always fails with the following error message: "ULPI: ulpi_reset: failed writing reset bit" So, remove it. Cc: Tom Rini <[email protected]> Signed-off-by: Nikita Kiryanov <[email protected]> Acked-by: Igor Grinberg <[email protected]> Acked-by: Stefan Roese <[email protected]>
2013-12-12am3517_evm: activate Ethernet PHYYegor Yefremov
Pin 30 is connected to PHY's RESET# signal, so it must be put to high. Otherwise PHY won't be found via MDIO interface. Signed-off-by: Yegor Yefremov <[email protected]>
2013-12-12am335x, siemens boards: adapt default environment settingHeiko Schocher
commit 16297cfb2a20c9d89834cd9e31edac5184a777a1 Author: Mateusz Zalega <[email protected]> Date: Fri Oct 4 19:22:26 2013 +0200 usb: new board-specific USB init interface introduced a new parameter to the dfu command. Adapt the default environment for the siemens boards. Signed-off-by: Heiko Schocher <[email protected]> Cc: Tom Rini <[email protected]> Cc: Lukasz Majewski <[email protected]> Cc: Mateusz Zalega <[email protected]>
2013-12-12am335x_evm: Consolidate DFU environment parts into the DFU part of the fileTom Rini
To make managing the environment easier, add DFUARGS to CONFIG_EXTRA_ENV_SETTINGS. Then we set DFUARGS down in the DFU part of the file, and include (or not) the NAND part, based on if NAND is set. Signed-off-by: Tom Rini <[email protected]>
2013-12-12arm: omap3: Add SPL support to cm_t35Stefan Roese
Add SPL U-Boot support to replace x-loader on the Compulab cm_t35 board. Currently only the 256MiB SDRAM board versions are supported. Tested by booting via MMC and NAND. Signed-off-by: Stefan Roese <[email protected]> Cc: Tom Rini <[email protected]> Cc: Igor Grinberg <[email protected]> Cc: Nikita Kiryanov <[email protected]> Acked-by: Igor Grinberg <[email protected]>
2013-12-12arm: omap3: Remove bootargs mem_size handlingStefan Roese
The memory size is autodetected and is passed to the Linux kernel either via ATAGs or device-tree (dtb). So there is no need to pass it via the bootargs. Signed-off-by: Stefan Roese <[email protected]> Cc: Tapani Utriainen <[email protected]> Cc: Thorsten Eisbein <[email protected]> Cc: Tom Rini <[email protected]>
2013-12-12arm: omap3: Add SPL support to tao3530Stefan Roese
Add SPL support for the Technexion TAO3530 SOM to replace x-loader. Tested with the Thunder baseboard. Currently this is only tested with the TAO3530 SOM revision (Ax/Bx). Tested by booting via MMC and NAND. Signed-off-by: Stefan Roese <[email protected]> Cc: Tapani Utriainen <[email protected]> Cc: Thorsten Eisbein <[email protected]> Cc: Tom Rini <[email protected]>
2013-12-12arm, omap3: Add support for TechNexion modulesTapani Utriainen
Add support for TechNexion TAO3530 SoM This patch has been posted quite a long time ago. I ported it to the latest mainline U-Boot version. With some additional cleanup and enhancements. Signed-off-by: Tapani Utriainen <[email protected]> CC: Sandeep Paulraj <[email protected]> Signed-off-by: Stefan Roese <[email protected]> Cc: Thorsten Eisbein <[email protected]> Cc: Tom Rini <[email protected]>
2013-12-12ARM: OMAP4: Move TEXT_BASE down to non-HS limitLokesh Vutla
With the current scenario SPL size is being overlapped with the public stack and not allowing any OMAP4 device to boot. So the suggestion came up was to move the TEXT_BASE down to non-HS limit. Fixing the same and also moving the SRAM_SCRATCH_SPACE_ADDR up to the end of image downloadable area. Discussion on this can be seen here: https://www.mail-archive.com/[email protected]/msg127147.html Tested on OMAP4460 PANDA. Reported-by: Chao Xu <[email protected]> Signed-off-by: Lokesh Vutla <[email protected]>
2013-12-10Merge branch 'master' of git://git.denx.de/u-boot-armTom Rini
Conflicts: board/samsung/trats2/trats2.c include/configs/exynos5250-dt.h Signed-off-by: Tom Rini <[email protected]>
2013-12-10Merge branch 'u-boot/master' into 'u-boot-arm/master'Albert ARIBAUD
Conflicts: arch/arm/cpu/armv7/rmobile/Makefile doc/README.scrapyard Needed manual fix: arch/arm/cpu/armv7/omap-common/Makefile board/compulab/cm_t335/u-boot.lds
2013-12-10Merge branch 'spi' of git://git.denx.de/u-boot-x86Tom Rini
2013-12-10Merge branch 'master' of git://git.denx.de/u-boot-mmcTom Rini
2013-12-10Merge branch 'master' of git://git.denx.de/u-boot-i2cTom Rini
2013-12-10vexpress: use correct timer address on extended memory map systemsIan Campbell
Signed-off-by: Ian Campbell <[email protected]> Cc: [email protected]
2013-12-09sandbox: spi: Enable new spi/sf layersMike Frysinger
We want to test SPI flash code in the sandbox, so enable the new drivers and the 'sf test' command. This command is used to validate the sandbox SPI / SPI flash implementation, so enable it. Signed-off-by: Mike Frysinger <[email protected]> Signed-off-by: Simon Glass <[email protected]>
2013-12-09spi_flash: Add spi_flash_probe_fdt() to locate SPI by FDT nodeSimon Glass
This allows us to put the SPI flash chip inside the SPI interface node, with U-Boot finding the correct bus and chip select automatically. Signed-off-by: Simon Glass <[email protected]>
2013-12-09arm: at91: support for the Calao USB-A9263 board (based on AT91SAM9263)Mateusz Kulikowski
Add support for USB-A9263 board manufactured by Calao Systems (http://www.calao-systems.com/). Code is based on old U-Boot sources (2010.09) released by Calao. Signed-off-by: Mateusz Kulikowski <[email protected]> Signed-off-by: Andreas Bießmann <[email protected]>
2013-12-09arm, at91: add siemens corvus boardHeiko Schocher
enable support for the siemens AT91SAM9G20 based board corvus. Signed-off-by: Boris Schmidt <[email protected]> Reviewed-by: Heiko Schocher <[email protected]> Cc: Andreas Bießmann <[email protected]> Cc: Bo Shen <[email protected]> Signed-off-by: Andreas Bießmann <[email protected]>
2013-12-09arm, at91: add Siemens board taurus and axmHeiko Schocher
enable support for the siemens AT91SAM9G20 based boards taurus and axm. Signed-off-by: Roger Meier <[email protected]> Reviewed-by: Heiko Schocher <[email protected]> Cc: Andreas Bießmann <[email protected]> Cc: Bo Shen <[email protected]> Signed-off-by: Andreas Bießmann <[email protected]>
2013-12-09at91: switch coloured LED to gpio APIAndreas Bießmann
Signed-off-by: Andreas Bießmann <[email protected]>
2013-12-09at91: nand: switch atmel_nand to generic GPIO APIAndreas Bießmann
Signed-off-by: Andreas Bießmann <[email protected]> Acked-by: Jens Scharsig (BuS Elektronik)<[email protected]> Tested-by: Jens Scharsig (BuS Elektronik)<[email protected]> Acked-by: Scott Wood <[email protected]>
2013-12-08mmc: add Faraday FTSDC021 SDHCI controller supportKuo-Jung Su
Faraday FTSDC021 is a controller which is compliant with SDHCI v3.0, SDIO v2.0 and MMC v4.3. However this driver is only verified with SD memory cards. Signed-off-by: Kuo-Jung Su <[email protected]> Acked-by: Pantelis Antoniou <[email protected]> CC: Andy Fleming <[email protected]>
2013-12-08mmc: dw_mmc: remove the exynos specific code in dw-mmc.cJaehoon Chung
dw-mmc.c is the general driver file. So, remove the exynos specific code at dw-mmc.c. Instead, exynos specific cod can be move into exynos-dw_mmc.c. Signed-off-by: Jaehoon Chung <[email protected]> Acked-by: Alexey Brodkin <[email protected]> Acked-by: Pantelis Antoniou <[email protected]> Acked-by: Minkyu Kang <[email protected]>
2013-12-06Merge branch 'u-boot-samsung/master' into 'u-boot-arm/master'Albert ARIBAUD
2013-12-06Merge branch 'u-boot-ti/master' into 'u-boot-arm/master'Albert ARIBAUD
2013-12-06Merge branch 'master' of git://git.denx.de/u-boot-blackfinTom Rini
2013-12-06AM3517 EVM: Enable ethernetTom Rini
Signed-off-by: Tom Rini <[email protected]>
2013-12-06omap4_panda: Don't use ulpi_resetRoger Quadros
Fixes this error message when USB is started. "ULPI: ulpi_reset: failed writing reset bit" It is pointless to manually reset the ULPI as the USB Host Reset and PHY RESET line should take care of that. Reported-by: Tomi Valkeinen <[email protected]> Reviewed-by: Stefan Roese <[email protected]> Signed-off-by: Roger Quadros <[email protected]>
2013-12-06omap3_beagle: Don't use ulpi_resetRoger Quadros
Fixes this error message when USB is started. "ULPI: ulpi_reset: failed writing reset bit" It is pointless to manually reset the ULPI as the USB Host Reset and PHY RESET line should take care of that. Reported-by: Tomi Valkeinen <[email protected]> Reviewed-by: Stefan Roese <[email protected]> Signed-off-by: Roger Quadros <[email protected]>
2013-12-06arm: arndale: disable spi bootMinkyu Kang
arndale board is booted from mmc Signed-off-by: Minkyu Kang <[email protected]> Cc: Albert ARIBAUD <[email protected]> Cc: Inderpal Singh <[email protected]>
2013-12-06blackfin: soft-i2c: No need to define blackfin specific soft i2c operationsSonic Zhang
Use default GPIO operations. Signed-off-by: Sonic Zhang <[email protected]> Acked-by: Heiko Schocher <[email protected]>
2013-12-06blackfin: Add missing macro CONFIG_BFIN_SERIALSonic Zhang
Signed-off-by: Sonic Zhang <[email protected]>
2013-12-06blackfin: Use ADI_GPIO2 driver other than the default ADI_GPIO1Sonic Zhang
Signed-off-by: Sonic Zhang <[email protected]>
2013-12-05driver:i2c:s3c24x0: adapt driver to new i2cPiotr Wilczek
This patch adapts the s3c24x0 driver to the new i2c framework. Config file is modified for all the boards that use the driver. Signed-off-by: Piotr Wilczek <[email protected]> Signed-off-by: Kyungmin Park <[email protected]> CC: Minkyu Kang <[email protected]> CC: Heiko Schocher <[email protected]> CC: Inderpal Singh <[email protected]> CC: David Müller <[email protected]> CC: Chander Kashyap <[email protected]> CC: Lukasz Majewski <[email protected]> Tested-by: Naveen Krishna Chatradhi <[email protected]> Reviewed-by: Naveen Krishna Chatradhi <[email protected]>
2013-12-04powerpc/mpc8349: Use generic mpc85xx DDR driverYork Sun
MPC8349 has been using mpc85xx DDR driver through a symbolic link to mpc85xx_ddr_gen2.c. After consolidating the drivers to a single set under driver/ddr/fsl/, the link is replaced by referring driver directly. We now can simply enable the macro and use the driver. Other mpc83xx SoCs still use their own driver. Signed-off-by: York Sun <[email protected]>
2013-12-04powerpc/t2080qds: undef CONFIG_FSL_DDR_INTERACTIVEShengzhou Liu
Usually CONFIG_FSL_DDR_INTERACTIVE feature is used for debug. we would not enable this by default to save the limited space of u-boot. This avoid following compiling error: section .bootpg loaded at [00000000effff000,00000000effff577] overlap ssection .data loaded at [00000000efff31b8,00000000f00010c7] u-boot: section .bootpg lma 0xeffff000 adjusted to 0xf00010c8 Signed-off-by: Shengzhou Liu <[email protected]> Acked-by: York Sun <[email protected]>
2013-12-04powerpc/p1010rdb:modify the mtest start_addressZhao Qiang
In new board P1010RDB-PB, the interrupt vector table is at the start of memory. So if the start_address needs to be set a proper value. Signed-off-by: Zhao Qiang <[email protected]> Acked-by: York Sun <[email protected]>
2013-12-04arm: am335x: Add DT (FDT) support to Siemens boardsStefan Roese
Enable FDT support for all Siemens AM335x boards. To support newer Linux kernels with DT booting. Signed-off-by: Stefan Roese <[email protected]> Cc: Heiko Schocher <[email protected]> Cc: Roger Meier <[email protected]> Cc: Lukas Stockmann <[email protected]> Cc: Tom Rini <[email protected]> Acked-by: Heiko Schocher<[email protected]>
2013-12-04am335x_evm: Update nandboot to use partitions and DTTom Rini
Signed-off-by: Tom Rini <[email protected]>
2013-12-04ARM: dra7_evm: Add SATA supportRoger Quadros
The evm has a SATA port. Enable SATA configuration and inititialize the SATA controller. Signed-off-by: Roger Quadros <[email protected]>
2013-12-04ARM: omap5_uevm: Add SATA supportRoger Quadros
The uevm has a SATA port. Inititialize the SATA controller. Signed-off-by: Roger Quadros <[email protected]>
2013-12-04ARMV7: OMAP4: Add twl6032 supportOleg Kosheliev
Added chip type detection and twl6032 support in the battery control and charge functions. Based on Balaji T K <[email protected]> patches for TI u-boot. Signed-off-by: Oleg Kosheliev <[email protected]>