[U-Boot] Wandboard SPL boot failed

2015-06-24 Thread Roman Kravchuk
Hi u-boot@, I'm build last u-boot for Wandoard device. After prepare SD-card with SPL and u-boot.img my device Wandboard Quad rev.B1 not boot. In console only one line: U-Boot SPL 2015.07-rc2-00133-g325849f-dirty (Jun 23 2015 - 20:54:12) Can I'm help to fix this problem? - Roman

[U-Boot] [PATCH v3 00/54] dm: Introduce new driver model uclasses

2015-06-24 Thread Simon Glass
This series adds several new uclasses. Some of these have been discussed for a while. All are fairly simple and just provide enough functionality for existing use cases. The following are included in this series: - Clocks - setting and getting PLL and peripheral clocks - Pinctrl - adjusting pin

Re: [U-Boot] [PATCH 4/7] arm: Make new baltos board not break on savedefconfig

2015-06-24 Thread Yegor Yefremov
Hi Joe, On Wed, Jun 24, 2015 at 5:26 AM, Joe Hershberger joe.hershber...@gmail.com wrote: Hi Tom, On Tue, Jun 23, 2015 at 9:23 AM, Tom Rini tr...@konsulko.com wrote: On Mon, Jun 22, 2015 at 04:15:27PM -0500, Joe Hershberger wrote: This config defined a CONS_INDEX as a config but did not

Re: [U-Boot] [PATCH 4/7] arm: Make new baltos board not break on savedefconfig

2015-06-24 Thread Yegor Yefremov
On Wed, Jun 24, 2015 at 8:55 AM, Yegor Yefremov yegorsli...@googlemail.com wrote: Hi Joe, On Wed, Jun 24, 2015 at 5:26 AM, Joe Hershberger joe.hershber...@gmail.com wrote: Hi Tom, On Tue, Jun 23, 2015 at 9:23 AM, Tom Rini tr...@konsulko.com wrote: On Mon, Jun 22, 2015 at 04:15:27PM -0500,

Re: [U-Boot] Wandboard SPL boot failed

2015-06-24 Thread Peter Robinson
I'm build last u-boot for Wandoard device. After prepare SD-card with SPL and u-boot.img my device Wandboard Quad rev.B1 not boot. In console only one line: U-Boot SPL 2015.07-rc2-00133-g325849f-dirty (Jun 23 2015 - 20:54:12) It's worked fine for me on the same device just now I wrote

Re: [U-Boot] [PATCH 0/3] spi: cadence_qspi: sram depth from DT fix for FIFO width

2015-06-24 Thread Stefan Roese
Hi Vikas, On 23.06.2015 16:48, Vikas MANOCHA wrote: -Original Message- From: Stefan Roese [mailto:s...@denx.de] Sent: Friday, June 12, 2015 5:10 AM To: Vikas MANOCHA; u-boot@lists.denx.de; grmo...@opensource.altera.com; dingu...@opensource.altera.com Subject: Re: [PATCH 0/3] spi:

[U-Boot] [PATCH 3/3] imx: mx6 add i2c4 clock support for i.MX6SX

2015-06-24 Thread Peng Fan
Add I2C4 clock support for i.MX6SX. Since we use runtime check, but not macro, we need to remove `#ifdef ..` in crm_regs.h, or we will get compliation failure for other platforms. Making the macros only for i.MX6SX open to other i.MX6x maybe not a good choice, but we have runtime check.

[U-Boot] [PATCH 2/3] imx: cm_fx6 use enable_spi_clk

2015-06-24 Thread Peng Fan
Use enable_spi_clock, since enable_cspi_clock is removed. Signed-off-by: Peng Fan peng@freescale.com --- board/compulab/cm_fx6/spl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/board/compulab/cm_fx6/spl.c b/board/compulab/cm_fx6/spl.c index 5b4b76f..5ce33d0 100644 ---

[U-Boot] [PATCH 1/3] imx: mx6 remove duplicated enable_cspi_clock

2015-06-24 Thread Peng Fan
enable_spi_clock does the same thing with enable_cspi_clock. Signed-off-by: Peng Fan peng@freescale.com --- arch/arm/cpu/armv7/mx6/clock.c | 19 --- 1 file changed, 19 deletions(-) diff --git a/arch/arm/cpu/armv7/mx6/clock.c b/arch/arm/cpu/armv7/mx6/clock.c index

Re: [U-Boot] [PATCH 0/3] spi: cadence_qspi: sram depth from DT fix for FIFO width

2015-06-24 Thread Vikas MANOCHA
Thanks Jagan, -Original Message- From: Jagan Teki [mailto:jt...@openedev.com] Sent: Wednesday, June 24, 2015 11:54 AM To: Vikas MANOCHA Cc: Stefan Roese; u-boot@lists.denx.de; grmo...@opensource.altera.com Subject: Re: [U-Boot] [PATCH 0/3] spi: cadence_qspi: sram depth from DT fix

[U-Boot] [PATCH] x86: Add binary blob checksums for Minnowboard MAX

2015-06-24 Thread Simon Glass
To try to reduce the pain of confusion of binary blobs, add MD5 checksums for the current versions. This may worsen the situation as new versions appear, but it should still be possible to obtain these versions, and thus get a working setup. Signed-off-by: Simon Glass s...@chromium.org ---

[U-Boot] minnowboard max .dtb file

2015-06-24 Thread Beaman, Thomas
Hi Bin, I see that you have created a .dts file for the minnowboard max in arch/x86/dts/minnow.dts What I cannot see is how to load and use this file. I cannot find any example of its use. In the RAMBOOT line zboot is used to load the kernel and ramdisk, but it does not take a parameter for

Re: [U-Boot] sd card not working.

2015-06-24 Thread Jaehoon Chung
Hi, Alexy. On 06/25/2015 02:06 AM, Alexy Gallardo Segura wrote: Hello everyone I am currently working with the ODROID-x2 platform and the U-boot that was using the u-boot by default, but support for the USB driver does not work well. Then I started to use the version available at:

[U-Boot] [PATCH] mmc:fsl_esdhc invalidate dcache before read

2015-06-24 Thread Peng Fan
DCIMVAC is upgraded to DCCIMVAC for the individual processor (Cortex-A7) that the DCIMVAC is executed on. We should follow the linux dma follow. Before DMA read, first invalidate dcache then after DMA read, invalidate dcache again. With the DMA direction DMA_FROM_DEVICE, the dcache need be

Re: [U-Boot] [PATCH 1/3] imx: mx6 remove duplicated enable_cspi_clock

2015-06-24 Thread Peng Fan
On Wed, Jun 24, 2015 at 12:53:40PM -0300, Fabio Estevam wrote: On Wed, Jun 24, 2015 at 7:44 AM, Peng Fan peng@freescale.com wrote: enable_spi_clock does the same thing with enable_cspi_clock. Signed-off-by: Peng Fan peng@freescale.com --- arch/arm/cpu/armv7/mx6/clock.c | 19

[U-Boot] [PATCH V2 1/2] imx: mx6 remove duplicated enable_cspi_clock

2015-06-24 Thread Peng Fan
enable_spi_clock does the same thing with enable_cspi_clock, so remove enable_cspi_clock. Remove enable_cspi_clock prototype in header file convert cm_fx6/spl.c to use enable_spi_clk Signed-off-by: Peng Fan peng@freescale.com --- arch/arm/cpu/armv7/mx6/clock.c| 19 ---

[U-Boot] [PATCH V2 2/2] imx: mx6 add i2c4 clock support for i.MX6SX

2015-06-24 Thread Peng Fan
Add I2C4 clock support for i.MX6SX. Since we use runtime check, but not macro, we need to remove `#ifdef ..` in crm_regs.h, or we will get compliation failure for other platforms. Making the macros only for i.MX6SX open to other i.MX6x maybe not a good choice, but we have runtime check.

Re: [U-Boot] [U-Boot, 4/8] ahci: support LBA48 data reads for 2+TB drives

2015-06-24 Thread Bin Meng
Hi Andre, On Sat, Jun 13, 2015 at 10:10 AM, Tom Rini tr...@konsulko.com wrote: On Fri, Jun 05, 2015 at 12:58:45AM +0100, Andre Przywara wrote: From: Mark Langsdorf mark.langsd...@gmail.com Enable full 48-bit LBA48 data reads by passing the upper word of the LBA block pointer in bytes 9 and

Re: [U-Boot] [PATCH v3 31/54] mmc: Support bypass mode with the get_mmc_clk() method

2015-06-24 Thread Jaehoon Chung
Hi, Simon. On 06/24/2015 06:38 AM, Simon Glass wrote: Some SoCs want to adjust the input clock to the DWMMC block as a way of controlling the MMC bus clock. Update the get_mmc_clk() method to support this. I didn't see your other patches. But i don't know this patch's purpose. I think that

Re: [U-Boot] [PATCH v3 32/54] mmc: Calculate dwmmc FIFO threshold size if not provided

2015-06-24 Thread Jaehoon Chung
Hi, Simon. On 06/24/2015 06:38 AM, Simon Glass wrote: We can calculate this. Add code to do this if it is not provided. Did you consider the kernel side? Best Regards, Jaehoon Chung Signed-off-by: Simon Glass s...@chromium.org --- Changes in v3: None Changes in v2: None

[U-Boot] [v2 4/6] stv0991: configure clock pad muxing for qspi

2015-06-24 Thread Vikas Manocha
stv0991 has cadence qspi controller for flash interfacing, this patch configures the device pads clock for the controller. Signed-off-by: Vikas Manocha vikas.mano...@st.com --- Changed in v2: - removed checkpatch.pl error. arch/arm/cpu/armv7/stv0991/clock.c |4 +++-

Re: [U-Boot] minnowboard max .dtb file

2015-06-24 Thread Bin Meng
Hi Tom, On Wed, Jun 24, 2015 at 11:50 PM, Beaman, Thomas thomas.bea...@xerox.com wrote: Hi Bin, You are correct I was confused about the usage of the dtb file in U-Boot. I know it is probably outside the scope of U-Boot, but do you have any pointers to info on linux x86 kernel usage of a

Re: [U-Boot] [PATCH 0/3] stv0991: spi env configs related board changes

2015-06-24 Thread Vikas MANOCHA
Thanks Jagan, -Original Message- From: Jagan Teki [mailto:jt...@openedev.com] Sent: Wednesday, June 24, 2015 12:00 PM To: Vikas MANOCHA Cc: u-boot@lists.denx.de; tr...@konsulko.com Subject: Re: [U-Boot] [PATCH 0/3] stv0991: spi env configs related board changes Please test

[U-Boot] [v2 5/6] stv0991: enable cadence qspi controller spi flash

2015-06-24 Thread Vikas Manocha
This patch does all the board configurations required to use the qspi controller attached spi flash memory. Signed-off-by: Vikas Manocha vikas.mano...@st.com --- Changed in v2: None include/configs/stv0991.h | 18 ++ 1 file changed, 18 insertions(+) diff --git

[U-Boot] [v2 3/6] stv0991: remove define CONFIG_OF_SEPARATE from board file

2015-06-24 Thread Vikas Manocha
CONFIG_OF_SEPARATE is default define with CONFIG_OF_CONTROL, removing this define from the board file to avoid multiple definition warning. Signed-off-by: Vikas Manocha vikas.mano...@st.com --- Changed in v2: None include/configs/stv0991.h |1 - 1 file changed, 1 deletion(-) diff --git

[U-Boot] [v2 6/6] stv0991: configure device tree for cadence qspi flash

2015-06-24 Thread Vikas Manocha
This patch add the device tree entry for qspi controller spi flash memory. Signed-off-by: Vikas Manocha vikas.mano...@st.com --- Changed in v2: None arch/arm/dts/stv0991.dts | 34 ++ 1 file changed, 34 insertions(+) diff --git a/arch/arm/dts/stv0991.dts

[U-Boot] [v2 2/6] stv0991: move OF_CONTROL config to defconfig

2015-06-24 Thread Vikas Manocha
Signed-off-by: Vikas Manocha vikas.mano...@st.com --- Changed in v2: None configs/stv0991_defconfig |1 + include/configs/stv0991.h |1 - 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/configs/stv0991_defconfig b/configs/stv0991_defconfig index f8ec5db..1d47178 100644 ---

[U-Boot] [v2 1/6] stv0991: enable saving enrironment in spi flash

2015-06-24 Thread Vikas Manocha
Signed-off-by: Vikas Manocha vikas.mano...@st.com --- Changed in v2: None include/configs/stv0991.h |5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/include/configs/stv0991.h b/include/configs/stv0991.h index d8f51d8..fe5b2fe 100644 --- a/include/configs/stv0991.h +++

[U-Boot] [v2 0/6] stv0991: enable cadence qspi controller spi flash

2015-06-24 Thread Vikas Manocha
This patchset enables cadence qspi controller for stv0991 soc, saves environment in spi flash moves CONFIG_OF in the defconfig file. In fact it clubs two patchsets submitted earlier: - [PATCH 0/3] stv0991: enable cadence qspi controller spi flash - [PATCH 0/3] stv0991: spi env configs related

[U-Boot] [v2 3/3] spi: cadence_qspi: support FIFO width other than 4 bytes

2015-06-24 Thread Vikas Manocha
This patch makes the code compatible with FIFO depths other than 4 bytes. It also simplify read/write FIFO loops. Signed-off-by: Vikas Manocha vikas.mano...@st.com Tested-by: Stefan Roese s...@denx.de --- Changes in v2: Fixed the checkpatch.pl error drivers/spi/cadence_qspi_apb.c | 46

[U-Boot] [v2 1/3] spi: cadence_qspi: move the sram partition in init

2015-06-24 Thread Vikas Manocha
There is no need to re-configure sram partition for every read/write for better full use of sram for read or write. This patch divides the half sram for read half for write once at initialization. Signed-off-by: Vikas Manocha vikas.mano...@st.com Tested-by: Stefan Roese s...@denx.de --- Changes

[U-Boot] [v2 2/3] spi: cadence_qspi: get sram size from device tree

2015-06-24 Thread Vikas Manocha
sram size could be different on different socs, e.g. on stv0991 it is 256 while on altera platform it is 128. It is better to receive it from device tree. Signed-off-by: Vikas Manocha vikas.mano...@st.com Tested-by: Stefan Roese s...@denx.de --- Changes in v2: None arch/arm/dts/socfpga.dtsi

[U-Boot] [v2 0/3] spi: cadence_qspi: sram depth from DT fix for FIFO width

2015-06-24 Thread Vikas Manocha
This patchset adds support to get controller sram size from device tree fix to support different FIFO widths. Changes in v2: - fix the checkpatch error from patch 3/3 Vikas Manocha (3): spi: cadence_qspi: move the sram partition in init spi: cadence_qspi: get sram size from device tree

Re: [U-Boot] Pull request: u-boot-spi/master

2015-06-24 Thread Tom Rini
On Tue, Jun 23, 2015 at 08:47:25PM +0530, Jagan Teki wrote: Hi Tom, Please pull this request, few importent feature list on spi-flash front like data flash and spi flash MTD supports. thanks! Jagan. The following changes since commit c6265f7f3410b5e5763181cdd123a3f6fcd9fd58:

[U-Boot] Default rootfs type for OMAP4 is still ext3?

2015-06-24 Thread Adam Lee
Hi everyone, is there a particular reason why OMAP4 has not migrated to ext4 from ext3? Specifically, the uenv variable 'rootfstype is still set to ext3, rather than ext4 [1]. Thanks, Adam [1]

Re: [U-Boot] [PATCH v2] Initial support for ACPI Tables for qemu-x86 target.

2015-06-24 Thread Bin Meng
Hi Saket, On Thu, Jun 25, 2015 at 3:38 AM, Saket Sinha saket.sinh...@gmail.com wrote: Hi Simon, Please find my comments inline - [snip] +static unsigned long acpi_fill_mcfg(unsigned long current) +{ + pci_dev_t qemu_dev; + struct pci_device_id qemu_id[] = { { 0x8086, 0x29c0

[U-Boot] [u-boot][PATCH] ARM: DRA7-evm: prevent DCAN1 _wait_target_disable failure in kernel

2015-06-24 Thread Roger Quadros
If board is booted with transitions happening on DCAN1 pins then the following warning is seen in the kernel at boot when the hwmod layer initializes. omap_hwmod: dcan1: _wait_target_disable failed This is because DCAN1 module's SWAKEUP mechanism is broken and it fails to correctly turn OFF if

Re: [U-Boot] [PATCH] x86: Add binary blob checksums for Minnowboard MAX

2015-06-24 Thread Bin Meng
Hi Simon, On Wed, Jun 24, 2015 at 10:46 PM, Simon Glass s...@chromium.org wrote: To try to reduce the pain of confusion of binary blobs, add MD5 checksums for the current versions. This may worsen the situation as new versions appear, but it should still be possible to obtain these versions,

Re: [U-Boot] minnowboard max .dtb file

2015-06-24 Thread Bin Meng
Hi Tom, On Wed, Jun 24, 2015 at 11:19 PM, Beaman, Thomas thomas.bea...@xerox.com wrote: Hi Bin, Thanks you for the quick response, my responses are embedded below On Wed, Jun 24, 2015 at 10:38 PM, Beaman, Thomas thomas.bea...@xerox.com wrote: Hi Bin, I see that you have created a .dts

Re: [U-Boot] minnowboard max .dtb file

2015-06-24 Thread Beaman, Thomas
Hi Bin, Thanks you for the quick response, my responses are embedded below On Wed, Jun 24, 2015 at 10:38 PM, Beaman, Thomas thomas.bea...@xerox.com wrote: Hi Bin, I see that you have created a .dts file for the minnowboard max in arch/x86/dts/minnow.dts What I cannot see is how to load

Re: [U-Boot] Pull request: u-boot-spi/master

2015-06-24 Thread Heiko Schocher denx
Hello Tom, Am 25.06.2015 um 01:31 schrieb Tom Rini: On Tue, Jun 23, 2015 at 08:47:25PM +0530, Jagan Teki wrote: Hi Tom, Please pull this request, few importent feature list on spi-flash front like data flash and spi flash MTD supports. thanks! Jagan. The following changes since commit

[U-Boot] [PATCH 4/7] imx6: define CONFIG_IMX6_THERMAL as a default option

2015-06-24 Thread Peter Robinson
Update boards that already include it, add DM options for those that don't yet. Signed-off-by: Peter Robinson pbrobin...@gmail.com --- configs/aristainetos2_defconfig | 2 ++ configs/aristainetos_defconfig | 2 ++ configs/cgtqmx6qeval_defconfig | 2 ++ configs/cm_fx6_defconfig

[U-Boot] [PATCH 1/7] Drop duplicate CONFIG_SYS_NO_FLASH from mx6_common

2015-06-24 Thread Peter Robinson
It's defind earlier in the file Signed-off-by: Peter Robinson pbrobin...@gmail.com --- include/configs/mx6_common.h | 1 - 1 file changed, 1 deletion(-) diff --git a/include/configs/mx6_common.h b/include/configs/mx6_common.h index 50370e1..b37477a 100644 --- a/include/configs/mx6_common.h +++

[U-Boot] [PATCH 2/7] mx6cuboxi: drop options that are duplicated in mx6_common

2015-06-24 Thread Peter Robinson
These options were merged into mx6_common and were seemingly missed in mx6cuboxi so drop the duplicates Signed-off-by: Peter Robinson pbrobin...@gmail.com --- include/configs/mx6cuboxi.h | 8 1 file changed, 8 deletions(-) diff --git a/include/configs/mx6cuboxi.h

[U-Boot] Minor i.MX6 updates

2015-06-24 Thread Peter Robinson
The first two patches are a resend and basic cleanups of duplicate includes The second two patches consolidate the fuse and thermal options. They're both options that are standard SoC features so should be there by default for all devices. ___ U-Boot

[U-Boot] [PATCH 3/7] imx6: standardise OCOTP and fuse config to mx6_common

2015-06-24 Thread Peter Robinson
According to README.mxc_ocotp the OCOTP is a stanard i.MX6 SoC feature so centralise the config in mx6_common.h so functionality is standard across all boards Signed-off-by: Peter Robinson pbrobin...@gmail.com --- include/configs/aristainetos-common.h | 3 --- include/configs/embestmx6boards.h

Re: [U-Boot] Minor i.MX6 updates

2015-06-24 Thread Peter Robinson
On Wed, Jun 24, 2015 at 5:09 PM, Peter Robinson pbrobin...@gmail.com wrote: The first two patches are a resend and basic cleanups of duplicate includes The second two patches consolidate the fuse and thermal options. They're both options that are standard SoC features so should be there by

Re: [U-Boot] [PATCH v3 00/25] dm: Introduce Rockchip RK3288 support

2015-06-24 Thread Kevin Hilman
Simon Glass s...@chromium.org writes: The Rockchip RK3288 is based on a quad-core Cortex-A17 CPU and has a good set of peripherals. Various full-featured U-Boot ports are available and this is an attempt to bring those features into mainline. With this series the Firefly RK3288 can boot to a

Re: [U-Boot] Pull request: u-boot-spi/master

2015-06-24 Thread Jagan Teki
On 25 June 2015 at 05:01, Tom Rini tr...@konsulko.com wrote: On Tue, Jun 23, 2015 at 08:47:25PM +0530, Jagan Teki wrote: Hi Tom, Please pull this request, few importent feature list on spi-flash front like data flash and spi flash MTD supports. thanks! Jagan. The following changes since

Re: [U-Boot] minnowboard max .dtb file

2015-06-24 Thread Bin Meng
+Simon Hi Tom, On Wed, Jun 24, 2015 at 10:38 PM, Beaman, Thomas thomas.bea...@xerox.com wrote: Hi Bin, I see that you have created a .dts file for the minnowboard max in arch/x86/dts/minnow.dts What I cannot see is how to load and use this file. I cannot find any example of its use. You

Re: [U-Boot] [PATCH 07/11] x86: pci: Tidy up the generic x86 PCI driver

2015-06-24 Thread Simon Glass
Hi Bin, On 23 June 2015 at 21:59, Bin Meng bmeng...@gmail.com wrote: Hi Simon, On Wed, Jun 24, 2015 at 11:54 AM, Simon Glass s...@chromium.org wrote: Hi Bin, On 23 June 2015 at 21:46, Bin Meng bmeng...@gmail.com wrote: Hi Simon, On Wed, Jun 24, 2015 at 11:18 AM, Simon Glass

Re: [U-Boot] [PATCH 1/3] imx: mx6 remove duplicated enable_cspi_clock

2015-06-24 Thread Fabio Estevam
On Wed, Jun 24, 2015 at 7:44 AM, Peng Fan peng@freescale.com wrote: enable_spi_clock does the same thing with enable_cspi_clock. Signed-off-by: Peng Fan peng@freescale.com --- arch/arm/cpu/armv7/mx6/clock.c | 19 --- 1 file changed, 19 deletions(-) diff --git

Re: [U-Boot] minnowboard max .dtb file

2015-06-24 Thread Beaman, Thomas
Hi Bin, You are correct I was confused about the usage of the dtb file in U-Boot. I know it is probably outside the scope of U-Boot, but do you have any pointers to info on linux x86 kernel usage of a FDT (dtb) file for configuration source Please check kernel documentation

Re: [U-Boot] [PATCH 0/3] spi: cadence_qspi: sram depth from DT fix for FIFO width

2015-06-24 Thread Vikas MANOCHA
Thanks Stefan, Adding Jagan to apply the patchset. Rgds, Vikas -Original Message- From: Stefan Roese [mailto:s...@denx.de] Sent: Wednesday, June 24, 2015 3:09 AM To: Vikas MANOCHA Cc: u-boot@lists.denx.de; grmo...@opensource.altera.com; dingu...@opensource.altera.com Subject: Re:

Re: [U-Boot] [PATCH v3 00/25] dm: Introduce Rockchip RK3288 support

2015-06-24 Thread Simon Glass
Hi, On 24 June 2015 at 11:39, Heiko Stübner he...@sntech.de wrote: Am Mittwoch, 24. Juni 2015, 09:54:07 schrieb Kevin Hilman: Simon Glass s...@chromium.org writes: The Rockchip RK3288 is based on a quad-core Cortex-A17 CPU and has a good set of peripherals. Various full-featured U-Boot

Re: [U-Boot] [u-boot][PATCH] ARM: DRA7-evm: prevent DCAN1 _wait_target_disable failure in kernel

2015-06-24 Thread Nishanth Menon
On 06/24/2015 09:00 AM, Roger Quadros wrote: If board is booted with transitions happening on DCAN1 pins then the following warning is seen in the kernel at boot when the hwmod layer initializes. omap_hwmod: dcan1: _wait_target_disable failed This is because DCAN1 module's SWAKEUP

Re: [U-Boot] [PATCH v3 00/25] dm: Introduce Rockchip RK3288 support

2015-06-24 Thread Heiko Stübner
Am Mittwoch, 24. Juni 2015, 09:54:07 schrieb Kevin Hilman: Simon Glass s...@chromium.org writes: The Rockchip RK3288 is based on a quad-core Cortex-A17 CPU and has a good set of peripherals. Various full-featured U-Boot ports are available and this is an attempt to bring those features into

[U-Boot] sd card not working.

2015-06-24 Thread Alexy Gallardo Segura
Hello everyone I am currently working with the ODROID-x2 platform and the U-boot that was using the u-boot by default, but support for the USB driver does not work well. Then I started to use the version available at: https://github.com/LeMaker/u-boot The USB works well. Probe the network

Re: [U-Boot] [PATCH v2] Initial support for ACPI Tables for qemu-x86 target.

2015-06-24 Thread Saket Sinha
Hi Simon, Please find my comments inline - diff --git a/arch/x86/cpu/qemu/acpi_table.c b/arch/x86/cpu/qemu/acpi_table.c new file mode 100755 index 000..cefd5f4 --- /dev/null +++ b/arch/x86/cpu/qemu/acpi_table.c We should split the routines below in this file into two parts: common

Re: [U-Boot] [PATCH 0/3] spi: cadence_qspi: sram depth from DT fix for FIFO width

2015-06-24 Thread Jagan Teki
On 24 June 2015 at 23:43, Vikas MANOCHA vikas.mano...@st.com wrote: Thanks Stefan, Adding Jagan to apply the patchset. I saw checkpatch.pl errors/warnings with 1 and 3 patches, please check it those and resend. Anyway I will apply these on master-next for next releases, is that fine?

Re: [U-Boot] [PATCH 0/3] stv0991: spi env configs related board changes

2015-06-24 Thread Jagan Teki
Please test these - will pull these on my master-next On 17 June 2015 at 03:04, Vikas MANOCHA vikas.mano...@st.com wrote: Thanks Jagan. -Original Message- From: Jagan Teki [mailto:jt...@openedev.com] Sent: Tuesday, June 16, 2015 3:50 AM To: Vikas MANOCHA Cc: u-boot@lists.denx.de;