15 Jul, 2015
2 commits
-
On DRA7, pcf chip present at address 0x21 on i2c1, is used to
switch between cpsw slave0 and slave1. Hence, enable pcf
driver for the same.Signed-off-by: Vignesh R
-
TI's pcf8575 is a 16-bit I2C based GPIO expander.The device features a
16-bit quasi-bidirectional I/O ports. Each quasi-bidirectional I/O can
be used as an input or output without the use of a data-direction
control signal. The I/Os should be high before being used as inputs.
This driver is based on pcf857x driver available in Linux 4.0 kernel.
It supports basic reading and writing of gpio pins.Signed-off-by: Vignesh R
10 Jul, 2015
8 commits
-
Since commit 09c3280754f8 (mtd, nand: Move common functions from
cmd_nand.c to common place), NAND commands would not work at all
on large devices.=> nand read 80000000 10000 10000
NAND read: Offset exceeds device limit
=> nand erase 100000 100000NAND erase: Offset exceeds device limit
The type of the "size" of "struct mtd_info" is uint64_t, while
mtd_arg_off_size() and mtd_arg_off() treat chipsize as int type.
The chipsize is wrapped around if the argument is given with 2GB
or larger.Acked-by: Heiko Schocher
Acked-by: Scott Wood
Signed-off-by: Masahiro Yamada -
This patch enabled the USB/EHCI support for the Marvell
DB-88F6820-GP eval board.Signed-off-by: Stefan Roese
Cc: Marek Vasut
Cc: Luka Perkov -
Configure and enable the SATA/SCSI (AHCI) support for the Marvell
DB-88F6820-GP eval board.Signed-off-by: Stefan Roese
Cc: Luka Perkov -
This patch adds support for the common AHCI controller on the Marvell
Armada 38x.Tested on the Marvell DB-88F6820-GP eval board.
Signed-off-by: Stefan Roese
Cc: Luka Perkov -
This patch adds MMC/SDIO support to the Marvell DB-88F6820-GP board
configuration. Including support for the common partitions and
filesystems.Signed-off-by: Stefan Roese
Cc: Pantelis Antoniou
Cc: Luka Perkov -
When compling under 64bit platforms, there are lots of warnings,
like:drivers/block/ahci.c:114:18: warning: cast to pointer from integer
of different size [-Wint-to-pointer-cast]
u8 *port_mmio = (u8 *)probe_ent->port[port].port_mmio;
^
drivers/block/ahci.c: In function ?.hci_host_init?.
drivers/block/ahci.c:218:49: warning: cast from pointer to integer
of different size [-Wpointer-to-int-cast]
probe_ent->port[i].port_mmio = ahci_port_base((u32) mmio, i);......
Reviewed-by: Simon Glass
Signed-off-by: Shaohui Xie
Signed-off-by: Tang Yuantian -
Baltos has USB0 connected to a USB hub and thus is host-only. USB1
is connected to microUSB connector and thus should use OTG mode.Signed-off-by: Yegor Yefremov
09 Jul, 2015
10 commits
-
Because it is possible for the MTD number to change, causing a
filesystem mount failure, we should use the volume name instead
of the MTD number and let Linux resolve the correct one.Signed-off-by: Mike Scherban
-
On STM32F429 gpio PC6/PC7 can be allocated for USART6, as
reported in the comment.
But current code in
drivers/serial/serial_stm32.c
uses a different gpio mapping (PG14/PG9) for USART6.Fix the comment to match current code in the driver.
Signed-off-by: Antonio Borneo
To: u-boot@lists.denx.de
To: Kamil Lulko
Cc: Tom Rini -
Signed-off-by: Antonio Borneo
To: u-boot@lists.denx.de
To: Kamil Lulko
Cc: Tom Rini -
Use one mtd partition for rootfs and configuration by
means of ubi volumes and get rid of configuration partition.
We can use partition layout for both 256MB and 512MB flash.Signed-off-by: Samuel Egli
Cc: Heiko Schocher
Cc: Roger Meier
Reviewed-by: Tom Rini
Acked-by: Heiko Schocher -
Specify proper U-Boot offset, enable prefetch mode,
increase bootm size and add FIT fallback, if board_name
is not present in kernel-fit.itb image.Signed-off-by: Yegor Yefremov
-
This action is need to make I2C communication with PMIC
stable for low temperature. Print current I2C speed in
SPL for visual control.Signed-off-by: Yegor Yefremov
-
Signed-off-by: Yegor Yefremov
Reviewed-by: Simon Glass -
Add CONFIG_SYS_GENERIC_BOARD to board's config header.
Boot-tested on am3517_evm board.
Signed-off-by: Yegor Yefremov
-
This also came from Linux - according to this thread it has a GPL v2
license like arch/arm/mach-omap2/mux.h:http://lists.denx.de/pipermail/u-boot/2015-June/217827.html
Signed-off-by: Simon Glass
Reported-by: Ingrid Viitanen
Reviewed-by: Tom Rini -
Instead of selecting REGEX when NET is enabled, make it the default, but
allow boards that are tiny to disable it and lose functionality on all
but the first Ethernet adapter.cm-bf548, bf538f-ezkit, and bf533-stamp need this. None appear to have
more than one Ethernet interface.Signed-off-by: Joe Hershberger
03 Jul, 2015
2 commits
-
Conflicts:
configs/tbs2910_defconfig
configs/tqma6q_mba6_mmc_defconfig
configs/tqma6q_mba6_spi_defconfig
configs/tqma6s_mba6_mmc_defconfig
configs/tqma6s_mba6_spi_defconfig
include/configs/mx6_common.hSigned-off-by: Tom Rini
-
Increase console IO buffer size to 1024 from the previous value of 256.
The previous value was too short for editing environment variables like
ubiboot from the console.Signed-off-by: Sanchayan Maity
02 Jul, 2015
1 commit
-
This commit moves:
- CONFIG_SPI_FLASH_BARfrom include/configs/*.h into configs/*_defconfigs
Signed-off-by: Jagan Teki
01 Jul, 2015
2 commits
-
Rename CONFIG_SF_DATAFLASH into CONFIG_SPI_FLASH_DATAFLASH
as it follows the naming convention same as remaining configs.Signed-off-by: Jagan Teki
-
- Adjust tab spaces
- Add commentsSigned-off-by: Jagan Teki
30 Jun, 2015
3 commits
-
Move common functions from cmd_nand.c (for calculating offset
and size from cmdline paramter) to common place, so they could
used from other commands which use mtd partitions.For onenand the arg_off_size() is left in common/cmd_onenand.c.
It should use now the common arg_off() function, but as I could
not test onenand I let it there ...Signed-off-by: Heiko Schocher
Acked-by: Scott Wood
Reviewed-by: Jagannadh Teki -
Enable Driver Model SPI for ls1021atwr board.
DSPI and QSPI only be enabled when boot from QSPI.
DSPI and QSPI are compatible under Driver Model SPI.Signed-off-by: Haikun Wang
Tested-by: Review Code-CDREVIEW
Tested-by: Haikun Wang
Reviewed-by: Prabhakar Kushwaha
Reviewed-by: Jagan Teki -
Enable Driver Model SPI for ls1021aqds board.
DSPI and QSPI is enabled only when boot from QSPI.
DSPI and QSPI are compatible under Driver Model SPI.Signed-off-by: Haikun Wang
Tested-by: Haikun Wang
Reviewed-by: Jagan Teki
29 Jun, 2015
1 commit
28 Jun, 2015
5 commits
-
By default on this platform, u-boot loads data into high memory
in the range of 0x7Fxxxxxx, which generates a data abort when the
kernel tries to read it. Config the u-boot environment to load
the device tree and initrd image into lower memory to make them
accessible to the kernel.Signed-off-by: Kevin Smith
Acked-by: Stefan Roese -
Signed-off-by: Kevin Smith
Acked-by: Stefan Roese -
This reverts commit f76eba38b3eda905ff3bdc18dd1240d3dcbc6e5a.
This patch did not have a full and proper copyright/S-o-b chain.
Signed-off-by: Ian Campbell
Conflicts:
include/configs/sun6i.h
include/configs/sun8i.h -
These options were merged into mx6_common and were seemingly missed
in mx6cuboxi so drop the duplicatesSigned-off-by: Peter Robinson
-
It's defind earlier in the file
Signed-off-by: Peter Robinson
27 Jun, 2015
1 commit
-
this is needed later to have Kconfig generated
stuff as define.Signed-off-by: Markus Niebel
26 Jun, 2015
2 commits
-
This sets the default commands Kconfig to match
include/config_cmd_default.h commands in the common/Kconfig and removes
them from include/configs.Signed-off-by: Joe Hershberger
[trini: rastaban, am43xx_evm_usbhost_boot, am43xx_evm_ethboot updates]
Signed-off-by: Tom Rini -
Some archs/boards specify their own default by pre-defining the config
which causes the Kconfig system to mix up the order of the configs in
the defconfigs... This will cause merge pain if allowed to proliferate.Remove the configs that behave this way from the archs.
A few configs still remain, but that is because they only exist as
defaults and do not have a proper Kconfig entry. Those appear to be:SPIFLASH
DISPLAY_BOARDINFOSigned-off-by: Joe Hershberger
[trini: rastaban, am43xx_evm_usbhost_boot, am43xx_evm_ethboot updates,
drop DM_USB from MSI_Primo81 as USB_MUSB_SUNXI isn't converted yet to DM]
Signed-off-by: Tom Rini
20 Jun, 2015
3 commits
-
Update new naming scheme.
Signed-off-by: Samuel Egli
Acked-by: Heiko Schocher
Reviewed-by: Tom Rini -
rastaban is a draco version with more flash, more RAM
and faster CPU. Number of partitions is the same but
rootfs partition is different.Signed-off-by: Samuel Egli
Acked-by: Heiko Schocher
Reviewed-by: Tom Rini