[U-Boot] Merging multiple ARM start.S files, what about copyright lines?

2013-08-07 Thread Albert ARIBAUD
Hello all, I am continuing my effort to merge all arch/arm/cpu/**/start.S files into a single arch/arm/cpu/start.S one, keeping as little cpu-specific code as I can. However, there is a non-technical issue: there are many copyright lines in the files, plus in some case "inherited copyright" when

Re: [U-Boot] [PATCH] ppc4xx: Remove CANBT board

2013-08-07 Thread Wolfgang Denk
Dear Matthias Fuchs, In message <5201ec5b.9070...@esd.eu> you wrote: > This board and especially the CPU (PPC405CR) is EOL. > > Signed-off-by: Matthias Fuchs > --- > MAINTAINERS|1 - > board/esd/canbt/Makefile | 31 -- > board/esd/canbt/canbt.c| 164 - > boa

Re: [U-Boot] Merging multiple ARM start.S files, what about copyright lines?

2013-08-07 Thread Wolfgang Denk
Dear Albert, In message <20130807092318.1fd9bab5@lilith> you wrote: > > The quickest, and preferred by me, way would be to create the new file > with all copyright lines simply "merged", and rely on the git repo to > find out who contributed what. Yes, this makes sense. > I could also put one "

[U-Boot] question about selecting a stable U-Boot source code package

2013-08-07 Thread TigerLiu
Hi, experts: How to select a stable uboot source code for developing a commercial product? There are so many official release package, such as: u-boot-2012.04.tar.bz2 u-boot-2012.10.tar.bz2 u-boot-2013.04.tar.bz2 u-boot-2013.07.tar.bz2 ... So, how to identify which package is more stable

[U-Boot] [PATCH] edid: rename struct member to fix two EDID_* macros

2013-08-07 Thread Christian Gmeiner
Without this change EDID_DETAILED_TIMING_VSYNC_OFFSET and EDID_DETAILED_TIMING_VSYNC_PULSE_WIDTH macros can not be used (compile error). The fix is quite trivial: rename struct member to the expected name. Signed-off-by: Christian Gmeiner --- include/edid.h |2 +- 1 file changed, 1 insertion

[U-Boot] [PATCH 1/4] Sound: WM8994: Support I2S0 channel

2013-08-07 Thread Dani Krishna Mohan
This patch modifies the WM8994 codec to support I2S0 channel in codec slave mode Signed-off-by: Dani Krishna Mohan --- drivers/sound/sound.c|2 +- drivers/sound/wm8994.c | 95 +++--- drivers/sound/wm8994_registers.h | 77 +

[U-Boot] [PATCH 4/4] Sound: I2S: Replacing I2S1 with I2S0 channel.

2013-08-07 Thread Dani Krishna Mohan
This patch makes required changes to make use of I2S0 channel instead of I2S1 channel on exynos5250. Signed-off-by: Dani Krishna Mohan --- arch/arm/include/asm/arch-exynos/i2s-regs.h |6 ++ drivers/sound/samsung-i2s.c | 16 ++-- 2 files changed, 16 insertion

[U-Boot] [PATCH 3/4] ARM: Change from I2S1 to I2S0 for audio on SMDK5250

2013-08-07 Thread Dani Krishna Mohan
This patch makes the necessary changes for making use of I2S0 channel instead of I2S1 channel on smdk board. This changes are done to maintain the uniformity to use I2S0 channel. Signed-off-by: Dani Krishna Mohan --- arch/arm/cpu/armv7/exynos/clock.c | 13 + arch/arm/cpu/ar

[U-Boot] Getting U-Boot running on Toradex Colibri T20 on Iris board

2013-08-07 Thread Andrzej Telszewski
Hi, I'm trying to get the U-Boot running on the Iris board with the Toradex Colibri T20 module. I was able to flash the U-Boot and it starts but then immediately stops with the only message being: U-Boot 2013.07 (Aug 06 2013 - 17:47:43) TEGRA20 Board: Toradex Colibri T20 on Iris DRAM: The

[U-Boot] [PATCH 2/4] DTS: Addition of I2S0 channel and replacing I2S1

2013-08-07 Thread Dani Krishna Mohan
This patch enables default I2S0 channel and replaces I2S1. I2S platform parameter has been moved to a common file viz exynos5.dtsi. Signed-off-by: Dani Krishna Mohan --- arch/arm/dts/exynos5250.dtsi | 10 -- board/samsung/dts/exynos5250-smdk5250.dts |8 +--- board/

[U-Boot] [PATCH] ppc4xx: Remove support for PPC405CR CPUs

2013-08-07 Thread Matthias Fuchs
This patch removes support for the APM 405CR CPU. This CPU is EOL and no board uses this chip. Signed-off-by: Matthias Fuchs --- arch/powerpc/cpu/ppc4xx/4xx_uart.c| 10 ++-- arch/powerpc/cpu/ppc4xx/cpu.c | 18 +-- arch/powerpc/cpu/ppc4xx/cpu_init.c|2 +- arch/powerpc/

Re: [U-Boot] Merging multiple ARM start.S files, what about copyright lines?

2013-08-07 Thread Albert ARIBAUD
Hi Wolfgang, On Wed, 07 Aug 2013 09:33:18 +0200, Wolfgang Denk wrote: > Dear Albert, > > In message <20130807092318.1fd9bab5@lilith> you wrote: > > > > The quickest, and preferred by me, way would be to create the new file > > with all copyright lines simply "merged", and rely on the git repo

Re: [U-Boot] question about selecting a stable U-Boot source code package

2013-08-07 Thread Wolfgang Denk
Dear TigerLiu, In message you wrote: > > How to select a stable uboot source code for developing a commercial > product? Just use the latest offical release (unless there are specific reasons not to). > So, how to identify which package is more stable than another package?! U-Boot provides b

Re: [U-Boot] [PATCH V2] ppc4xx: Remove CANBT board

2013-08-07 Thread Wolfgang Denk
Dear Matthias Fuchs, In message <520211c2.2030...@esd.eu> you wrote: > This board and especially the CPU (PPC405CR) is EOL. > > Signed-off-by: Matthias Fuchs > --- > V2: add entry to doc/README.scrapyard ... > diff --git a/doc/README.scrapyard b/doc/README.scrapyard > index a0f1fa3..f5ee1ff 1006

[U-Boot] [PATCH] fdt_support.c: avoid unintended return from fdt_fixup_memory_banks()

2013-08-07 Thread miao.yan
From: Miao Yan fdt_fixup_memory_banks() will add and update /memory node in device tree blob. In the case that /memory node doesn't exist, after adding a new one, this function returns error. The correct behavior should be continuing to update its properties. Signed-off-by: Miao Yan --- Not su

Re: [U-Boot] [PATCH V3] ppc4xx: Remove CANBT board

2013-08-07 Thread Wolfgang Denk
Dear Matthias Fuchs, In message <52022de2.9090...@esd.eu> you wrote: > This board and especially the CPU (PPC405CR) is EOL. > > Signed-off-by: Matthias Fuchs > --- > V2: add entry to doc/README.scrapyard > V3: add missing commit IDs in README.scrapyard Thanks! Acked-by: Wolfgang Denk Best re

Re: [U-Boot] [PATCHv2 5/8] drivers: mtd: spi: Modify read/write command for sfl256s flash.

2013-08-07 Thread Jagan Teki
Hi, On Wed, Aug 7, 2013 at 11:27 AM, Sourav Poddar wrote: > Hi Jagan, > > On Wednesday 31 July 2013 12:23 PM, Sourav Poddar wrote: >> >> Hi Jagan, >> On Tuesday 23 July 2013 07:53 PM, Sourav Poddar wrote: >>> >>> + jagan, >>> >>> On Tuesday 23 July 2013 02:29 PM, Sourav Poddar wrote: Re

Re: [U-Boot] [PATCHv2 5/8] drivers: mtd: spi: Modify read/write command for sfl256s flash.

2013-08-07 Thread Sourav Poddar
Hi Jagan, On Wednesday 07 August 2013 05:21 PM, Jagan Teki wrote: Hi, On Wed, Aug 7, 2013 at 11:27 AM, Sourav Poddar wrote: Hi Jagan, On Wednesday 31 July 2013 12:23 PM, Sourav Poddar wrote: Hi Jagan, On Tuesday 23 July 2013 07:53 PM, Sourav Poddar wrote: + jagan, On Tuesday 23 July 2013 0

Re: [U-Boot] [PATCH] wandboard: add pxe support, set default boot command like highbank

2013-08-07 Thread Tom Rini
On Tue, Aug 06, 2013 at 06:11:25PM -0500, Dennis Gilmore wrote: > On Tue, 6 Aug 2013 17:42:31 -0400 > Tom Rini wrote: > > > On Tue, Aug 06, 2013 at 11:22:22AM -0500, Dennis Gilmore wrote: > > > > [snip] > > > The only way I could see having us write a file to disk with the > > > environment work

Re: [U-Boot] [RESEND PATCH v5 1/1] socfpga: Adding configuration for development kit

2013-08-07 Thread Chin Liang See
On Tue, 2013-08-06 at 11:00 -0500, Dinh Nguyen wrote: > On Tue, 2013-08-06 at 09:08 -0500, Chin Liang See wrote: > > Separating the configuration file for Virtual > > Target and real hardware Cyclone V development kit > > > > Signed-off-by: Chin Liang See > > Reviewed-by: Pavel Machek > > Includ

Re: [U-Boot] [RESEND PATCH v6 1/2] socfpga: Adding System Manager driver

2013-08-07 Thread Chin Liang See
On Tue, 2013-08-06 at 11:03 -0500, Dinh Nguyen wrote: > On Tue, 2013-08-06 at 09:10 -0500, Chin Liang See wrote: > > Adding System Manager driver which will configure the > > pin mux for real hardware Cyclone V development kit > > (not Virtual Platform) > > > > Signed-off-by: Chin Liang See > > R

Re: [U-Boot] [RESEND PATCH v5 2/2] socfpga: Adding pin mux handoff files

2013-08-07 Thread Chin Liang See
On Tue, 2013-08-06 at 11:04 -0500, Dinh Nguyen wrote: > On Tue, 2013-08-06 at 09:10 -0500, Chin Liang See wrote: > > Adding the generated pin mux > > configuration by Preloader Generator tool > > > > Signed-off-by: Chin Liang See > > Reviewed-by: Pavel Machek > > Cc: Wolfgang Denk > > CC: Pavel

Re: [U-Boot] [PATCHv2 5/8] drivers: mtd: spi: Modify read/write command for sfl256s flash.

2013-08-07 Thread Jagan Teki
On Wed, Aug 7, 2013 at 5:34 PM, Sourav Poddar wrote: > Hi Jagan, > > On Wednesday 07 August 2013 05:21 PM, Jagan Teki wrote: >> >> Hi, >> >> On Wed, Aug 7, 2013 at 11:27 AM, Sourav Poddar >> wrote: >>> >>> Hi Jagan, >>> >>> On Wednesday 31 July 2013 12:23 PM, Sourav Poddar wrote: Hi Jaga

[U-Boot] [PATCH v6 2/2] socfpga: Adding pin mux handoff files

2013-08-07 Thread Chin Liang See
Adding the generated pin mux configuration by Preloader Generator tool Signed-off-by: Chin Liang See Reviewed-by: Pavel Machek Acked-by: Dinh Nguyen Cc: Wolfgang Denk CC: Pavel Machek Cc: Dinh Nguyen Cc: Tom Rini Cc: Albert Aribaud --- Changes for v6: - Re-shuffle the change list Changes f

[U-Boot] [PATCH v7 1/2] socfpga: Adding System Manager driver

2013-08-07 Thread Chin Liang See
Adding System Manager driver which will configure the pin mux for real hardware Cyclone V development kit (not Virtual Platform) Signed-off-by: Chin Liang See Reviewed-by: Pavel Machek Acked-by: Dinh Nguyen Cc: Wolfgang Denk CC: Pavel Machek Cc: Dinh Nguyen Cc: Tom Rini Cc: Albert Aribaud

[U-Boot] [PATCH v6 1/1] socfpga: Adding configuration for development kit

2013-08-07 Thread Chin Liang See
Separating the configuration file for Virtual Target and real hardware Cyclone V development kit Signed-off-by: Chin Liang See Reviewed-by: Pavel Machek Cc: Wolfgang Denk Cc: Pavel Machek Cc: Dinh Nguyen Cc: Tom Rini Cc: Albert Aribaud --- Changes for v6: - Re-shuffle the change list Change

Re: [U-Boot] [PATCHv2 5/8] drivers: mtd: spi: Modify read/write command for sfl256s flash.

2013-08-07 Thread Sourav Poddar
On Wednesday 07 August 2013 08:35 PM, Jagan Teki wrote: On Wed, Aug 7, 2013 at 5:34 PM, Sourav Poddar wrote: Hi Jagan, On Wednesday 07 August 2013 05:21 PM, Jagan Teki wrote: Hi, On Wed, Aug 7, 2013 at 11:27 AM, Sourav Poddar wrote: Hi Jagan, On Wednesday 31 July 2013 12:23 PM, Sourav Pod

Re: [U-Boot] [RESEND PATCH v5 1/1] socfpga: Creating driver for Reset Manager

2013-08-07 Thread Chin Liang See
On Tue, 2013-08-06 at 11:01 -0500, Dinh Nguyen wrote: > On Tue, 2013-08-06 at 09:09 -0500, Chin Liang See wrote: > > Consolidating reset code into reset_manager.c. > > Also separating reset configuration for virtual target > > and real hardware Cyclone V development kit > > > > Signed-off-by: Chin

[U-Boot] [PATCH v6 1/1] socfpga: Creating driver for Reset Manager

2013-08-07 Thread Chin Liang See
Consolidating reset code into reset_manager.c. Also separating reset configuration for virtual target and real hardware Cyclone V development kit Signed-off-by: Chin Liang See Reviewed-by: Pavel Machek Cc: Wolfgang Denk Cc: Pavel Machek Cc: Dinh Nguyen Cc: Tom Rini Cc: Albert Aribaud --- Ch

[U-Boot] [PATCH 2/2] OMAP3: igep00x0: allow booting with a FDT from MMC

2013-08-07 Thread Javier Martinez Canillas
IGEP boards now have Device Tree support in the mainline kernel. To boot an IGEP board using a DT, a uEnv.txt plain text file could be used to define a custom uenvcmd that will be run by the default boot command. It is more convenient to change the default boot command to allow loading a FDT if it

[U-Boot] [PATCH 1/2] ARM: igep00x0.h: Enable the use of CMD_EXT4, CMD_FS_GENERIC and zImage.

2013-08-07 Thread Javier Martinez Canillas
From: Enric Balletbo i Serra Able to load the kernel from some form of ext[234] or FAT. Also, with v3.9 and later of the Linux Kernel, uImage isn't builtable anymore by default, so we should switch to use the bootz command. Signed-off-by: Enric Balletbo i Serra --- include/configs/igep00x0.h |

Re: [U-Boot] [PATCH 1/5] ARM: IGEP0033: Remove undef of CONFIG_CMD_MEMTEST

2013-08-07 Thread Javier Martinez Canillas
On Thu, Jul 25, 2013 at 9:27 AM, Enric Balletbo i Serra wrote: > From: Enric Balletbo i Serra > > After commit: > > 79cd2f814b1c75efd47161ac27f4cbebf768240f config_cmd_default.h: Remove > CONFIG_CMD_MEMTEST > > It's not necessary to undef the CONFIG_CMD_MEMTEST, so we can remove it from > conf

Re: [U-Boot] [RFC 00/10] New board-specific USB initialization interface

2013-08-07 Thread Mateusz Zalega
On 08/06/13 13:40, Wolfgang Denk wrote: > Dear Mateusz Zalega, > > In message <1375786242-11734-1-git-send-email-m.zal...@samsung.com> you wrote: >> Current implementation of do_dfu() and do_usb_mass_storage() requires >> board-specific board_usb_init() which performs USB hardware initialization.

Re: [U-Boot] [PATCH 2/5] ARM: IGEP0033: Add support for Flattened Device Tree.

2013-08-07 Thread Javier Martinez Canillas
On Thu, Jul 25, 2013 at 9:27 AM, Enric Balletbo i Serra wrote: > Now, the default kernel to boot the IGEP COM AQUILA is device tree based. As > old kernel is deprecated we should adapt the boot commands to use DTB files. > > Also, with v3.9 and later of the Linux Kernel, uImage isn't builtable any

[U-Boot] [PATCH 0/2] OMAP3: igep00x0: allow DeviceTree booting

2013-08-07 Thread Javier Martinez Canillas
Now that Device Tree support for IGEP boards has been included in the mainline Linux kernel, it's better if the default boot command has proper support for booting with DT. This patch-set his composed of the following patches: Enric Balletbo i Serra (1): ARM: igep00x0.h: Enable the use of C

Re: [U-Boot] [PATCH 3/5] ARM: IGEP0033: Remove CYGNUS name from header.

2013-08-07 Thread Javier Martinez Canillas
On Thu, Jul 25, 2013 at 9:27 AM, Enric Balletbo i Serra wrote: > From: Enric Balletbo i Serra > > We will not use CYGNUS names for any IGEP COM based on AM335x processor, > so, to avoid confusion, remove from headers. > > Signed-off-by: Enric Balletbo i Serra > --- > board/isee/igep0033/board.c

Re: [U-Boot] [PATCH 4/5] ARM: IGEP0033: Add support to boot from NAND.

2013-08-07 Thread Javier Martinez Canillas
On Thu, Jul 25, 2013 at 9:27 AM, Enric Balletbo i Serra wrote: > From: Enric Balletbo i Serra > > Add to the default environment the possibily to boot from NAND using > a ubi rootfs. Also the partition scheme is set as follows: > > Start Size > SPL : 0x

Re: [U-Boot] u-boot.2013.07 build fails: serial_puts() undefined.

2013-08-07 Thread Randy Graham
Hi Fabio, Thanks for your reply, but common.h is already included. Specifically, I am looking at inserting a few debug() or serial_puts() calls to arch/arm/cpu/arm926ejs/mxs/spl_mem_init.c, and this is where I see the build error. -Randy On Tue, Aug 6, 2013 at 9:43 PM, Fabio Estevam wrote: >

Re: [U-Boot] [PATCH 5/5] ARM: IGEP0033: Remove duplicate / unused #defines.

2013-08-07 Thread Javier Martinez Canillas
Hi Enric, On Thu, Jul 25, 2013 at 9:27 AM, Enric Balletbo i Serra wrote: > From: Enric Balletbo i Serra > > As config was originally based on am335x_evm.h we have also some > duplicate / unnused #defines. > > Commit 15191c91 removed these #defines on various AM335x boards but not > for IGEP COM

Re: [U-Boot] [PATCH] RFC: tegra: Avoid using I2C prior to relocation

2013-08-07 Thread Stephen Warren
On 08/06/2013 11:52 PM, Simon Glass wrote: > Tegra recently moved to the new I2C framework, which sets up I2C prior to > relocation, and prior to calling i2c_init_board(). This causes a crash on > Tegra boards. > > note: > > There are many ways to fix this. I believe this is one. It disables i2c_

Re: [U-Boot] [PATCH 6/6] am335x_evm: am33xx_spl_board_init function and scale core frequency

2013-08-07 Thread Tom Rini
On Mon, Jul 29, 2013 at 05:57:22PM +0200, Enric Balletbo Serra wrote: > Hi Tom, > > 2013/7/23 Dan Murphy : > > On 07/19/2013 02:00 PM, Tom Rini wrote: > >> Add a am33xx_spl_board_init (and enable the PMICs) that we may see, > >> depending on the board we are running on. In all cases, we see if we

Re: [U-Boot] [RFC 01/10] New board-specific USB initialization interface

2013-08-07 Thread Stephen Warren
On 08/06/2013 04:50 AM, Mateusz Zalega wrote: > This commit unifies board-specific USB initialization implementations > under one symbol (usb_board_init), declaration of which is available in > usb.h. > diff --git a/drivers/usb/host/ehci-tegra.c b/drivers/usb/host/ehci-tegra.c > -int board_usb_in

Re: [U-Boot] [RFC 02/10] nvidia, tegra: new USB hardware init interface

2013-08-07 Thread Stephen Warren
On 08/06/2013 04:50 AM, Mateusz Zalega wrote: > This commit postpones initialization of USB hardware until > usb_board_init() is called by a command implementation > (ie. do_dfu()) or a driver. > diff --git a/arch/arm/include/asm/arch-tegra/usb.h > b/arch/arm/include/asm/arch-tegra/usb.h > /* S

Re: [U-Boot] [PATCH 0/4] sf: macronix: Add support for bank addr access

2013-08-07 Thread Jagan Teki
Hi, On Mon, Jul 29, 2013 at 11:38 PM, Jagannadha Sutradharudu Teki wrote: > This patch set adds bank addr access support for macronix flash's > so-that the macronix flashes which has > 16Mbyte sizes can be > accessible in 3-byte addressing mode. > > REQUEST FOR MACRONIX FLASH VENDORS/USERS: PLEAS

Re: [U-Boot] [PATCH 6/6] am335x_evm: am33xx_spl_board_init function and scale core frequency

2013-08-07 Thread Tom Rini
On Mon, Jul 29, 2013 at 05:57:22PM +0200, Enric Balletbo Serra wrote: > Hi Tom, [snip] > As example, I just pushed[1] in my personal git an implementation of > am33xx_spl_board_init for IGEP COM AQUILA AM335x based on your > patches. As you can see this function is very similar to the function > im

Re: [U-Boot] [RFC 00/10] New board-specific USB initialization interface

2013-08-07 Thread Mateusz Zalega
> On 08/06/13 13:40, Wolfgang Denk wrote: >> Dear Mateusz Zalega, >> >> In message <1375786242-11734-1-git-send-email-m.zal...@samsung.com> you >> wrote: >>> Current implementation of do_dfu() and do_usb_mass_storage() requires >>> board-specific board_usb_init() which performs USB hardware initia

Re: [U-Boot] [RFC 00/10] New board-specific USB initialization interface

2013-08-07 Thread Wolfgang Denk
Dear Mateusz Zalega, In message <52026e5a.4040...@samsung.com> you wrote: > > > I appreciate your efforts, but this whole area clearly falls into the > > domain of the device model rework. Is your suggested implementation > > in any way synchronized with what has been discussed about this topic >

Re: [U-Boot] [RFC 01/10] New board-specific USB initialization interface

2013-08-07 Thread Mateusz Zalega
On 08/07/13 18:23, Stephen Warren wrote: >> This commit unifies board-specific USB initialization implementations >> under one symbol (usb_board_init), declaration of which is available in >> usb.h. > >> diff --git a/drivers/usb/host/ehci-tegra.c b/drivers/usb/host/ehci-tegra.c > >> -int board_us

[U-Boot] [PATCH v2 00/10] sf: Add support for extended/quad read and write commands

2013-08-07 Thread Jagannadha Sutradharudu Teki
This is v2 series for past read/write instruction support. this series also includes zynq qspi driver patch set for knowing usage of these extended/quad read and write commnads. http://comments.gmane.org/gmane.comp.boot-loaders.u-boot/150148 http://permalink.gmane.org/gmane.comp.boot-loaders.u-boo

[U-Boot] [PATCH v2 01/10] sf: Remove spi_flash_do_alloc references

2013-08-07 Thread Jagannadha Sutradharudu Teki
Added a support for common probe, hence removed removed spi_flash_do_alloc reference. Signed-off-by: Jagannadha Sutradharudu Teki --- Changes for v2: - none include/spi_flash.h | 38 -- 1 file changed, 38 deletions(-) diff --git a/include/spi_flash.h

[U-Boot] [PATCH v2 04/10] sf: ops: Add configuration register writing support

2013-08-07 Thread Jagannadha Sutradharudu Teki
This patch provides support to program a flash config register. Configuration register contains the control bits used to configure the different configurations and security features of a device. User need to set these bits through spi_flash_cmd_write_config() based on their usage. Signed-off-by:

[U-Boot] [PATCH v2 07/10] zynq: Enable CONFIG_ZYNQ_QSPI

2013-08-07 Thread Jagannadha Sutradharudu Teki
From: Jagannadha Sutradharudu Teki Tested qspi on zynq board with stmicro, spansion and winbond flashes by enabling CONFIG_ZYNQ_QSPI. Signed-off-by: Jagannadha Sutradharudu Teki --- Changes for v2: - none include/configs/zynq.h | 10 ++ 1 file changed, 10 insertions(+) diff -

[U-Boot] [PATCH v2 08/10] zynq: Define CONFIG_SPI_FLASH_BAR

2013-08-07 Thread Jagannadha Sutradharudu Teki
From: Jagannadha Sutradharudu Teki Enabled bank/extn' addr register support for accessing > 16Mbyte flash devices. Signed-off-by: Jagannadha Sutradharudu Teki --- Changes for v2: - none include/configs/zynq.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/configs/zynq.h b

[U-Boot] [PATCH v2 02/10] sf: Add extended read commands support

2013-08-07 Thread Jagannadha Sutradharudu Teki
Current sf uses FAST_READ command, this patch adds support to use the different/extended read command. This implementation will determine the fastest command by taking the supported commands from the flash and the controller, controller is always been a priority. Signed-off-by: Jagannadha Sutradh

[U-Boot] [PATCH v2 09/10] spi: zynq_qspi: Add quad read/write commands support

2013-08-07 Thread Jagannadha Sutradharudu Teki
QPP - Quad Page Program DIOR - Dual IO high perf read Signed-off-by: Jagannadha Sutradharudu Teki --- Changes for v2: - none drivers/spi/zynq_qspi.c | 4 1 file changed, 4 insertions(+) diff --git a/drivers/spi/zynq_qspi.c b/drivers/spi/zynq_qspi.c index df090d7..02a1a80 100644 --

[U-Boot] [PATCH v2 10/10] spi: zynq_qspi: Enable READ_CMD_FULL and WRITE_CMD_FULL

2013-08-07 Thread Jagannadha Sutradharudu Teki
Zynq controller supports all basic, extended read and quad read/write commands, so enable them in the driver so-that the sf will look for the fastest cmd w.r.t flash supported one. Signed-off-by: Jagannadha Sutradharudu Teki --- Changes for v2: - none drivers/spi/zynq_qspi.c | 3 +++ 1

[U-Boot] [PATCH v2 06/10] spi: Add zynq qspi controller driver

2013-08-07 Thread Jagannadha Sutradharudu Teki
From: Jagannadha Sutradharudu Teki Zynq qspi controller driver supports single bus with singe chipselect. Zynq qspi can be operated in below connection modes - single qspi - dual qspi, with dual stacked - dual qspi, with dual parallel Signed-off-by: Jagannadha Sutradharudu Teki --- Changes for

[U-Boot] [PATCH v2 03/10] sf: Add quad read/write commands support

2013-08-07 Thread Jagannadha Sutradharudu Teki
Current sf uses PAGE_PROGRAM command for write and FAST_READ, SLOW_READ, DUAL_READ and DUAL_IO_READ commands for read this patch adds support to use the quad read/write commands. - QUAD_PAGE_PROGRAM - QUAD_OUTPUT_FAST Signed-off-by: Jagannadha Sutradharudu Teki --- Changes for v2: - none

[U-Boot] [PATCH v2 05/10] sf: Set quad enable bit support

2013-08-07 Thread Jagannadha Sutradharudu Teki
This patch provides support to set the quad enable bit on flash. quad enable bit needs to set before performing any quad IO operations on respective SPI flashes. Signed-off-by: Jagannadha Sutradharudu Teki --- Changes for v2: - none drivers/mtd/spi/spi_flash_internal.h | 5 + driv

Re: [U-Boot] [PATCH] RFC: tegra: Avoid using I2C prior to relocation

2013-08-07 Thread Simon Glass
Hi Stephen, On Wed, Aug 7, 2013 at 10:20 AM, Stephen Warren wrote: > On 08/06/2013 11:52 PM, Simon Glass wrote: > > Tegra recently moved to the new I2C framework, which sets up I2C prior to > > relocation, and prior to calling i2c_init_board(). This causes a crash on > > Tegra boards. > > > > not

Re: [U-Boot] [PATCH] wandboard: add pxe support, set default boot command like highbank

2013-08-07 Thread Dennis Gilmore
On Wed, 7 Aug 2013 09:19:21 -0400 Tom Rini wrote: > On Tue, Aug 06, 2013 at 06:11:25PM -0500, Dennis Gilmore wrote: > > On Tue, 6 Aug 2013 17:42:31 -0400 > > Tom Rini wrote: > > > > > On Tue, Aug 06, 2013 at 11:22:22AM -0500, Dennis Gilmore wrote: > > > > > > [snip] > > > > The only way I coul

[U-Boot] Purpose of Data partition in Partition Layout

2013-08-07 Thread Rajdeep Vaghasia
Hi all, My current default partition layout is as follow: 1) u-boot, 2) environment variables 3) kernel, 4) filesystem I have seen in some implementations, that there is one partition of "data" after the filesystem's partition as follow: 1) u-boot, 2) environment variables 3) kernel, 4) filesyste

[U-Boot] [PATCH] edid: rename struct member to fix two EDID_* macros

2013-08-07 Thread Christian Gmeiner
Without this change EDID_DETAILED_TIMING_VSYNC_OFFSET and EDID_DETAILED_TIMING_VSYNC_PULSE_WIDTH macros can not be used (compile error). The fix is quite trivial: rename struct member to the expected name. Signed-off-by: Christian Gmeiner --- include/edid.h |2 +- 1 file changed, 1 insertion