Re: [U-Boot] [PATCH v2 06/21] pmic: Enable power_board_init() support at TRATS

2012-10-09 Thread Lukasz Majewski
Hi Stefano, > On 05/10/2012 10:16, Lukasz Majewski wrote: > > Enable support for power_board_init() method at TRATS board. > > > > Signed-off-by: Lukasz Majewski > > Signed-off-by: Kyungmin Park > > --- > > Changes for v2: > > - None > > --- > > board/samsung/trats/trats.c | 15 +++--

Re: [U-Boot] [PATCH v2] mxc: Fix SDHC multi-instance clock

2012-10-09 Thread Benoît Thébaudeau
Hi Stefano, On Monday, October 1, 2012 8:36:25 PM, Benoît Thébaudeau wrote: > On mxc, each SDHC instance has a dedicated clock, so gd->sdhc_clk is > not > suitable for the multi-instance use case (initialization made > directly with > fsl_esdhc_initialize()). > > This patch fixes this issue by ad

[U-Boot] go command is not working for smdkv310 board

2012-10-09 Thread VISWANADHULA BALAJI
Hi, I am using a u-boot-2010-12 version for the smdkv310 board. I used dnw tool for loading a u-boot on to the RAM with C0008000 as a load adress. *Go* command is not working and gets hang when i type the following command to run the u-boot code on to the u-boot prompt. go

Re: [U-Boot] [PATCH v2 05/21] pmic: Introduce power_board_init() method at ./lib/board.c file

2012-10-09 Thread Lukasz Majewski
Hi Stefano, > On 05/10/2012 10:16, Lukasz Majewski wrote: > > It is necessary to introduce a new system wide function- > > power_board_init() > > > > It turns out, that power initialization must be done as early as > > possible. In the case of PMIC framework redesign, which aims to > > support mu

Re: [U-Boot] [PATCH v5 09/16] arm: Add control over cachability of memory regions

2012-10-09 Thread R Sricharan
Hi, Add support for adjusting the cachability of an L1 section by updating the MMU. The mmu_set_region_dcache() function allows drivers to make these changes after the MMU is set up. It is implemented only for ARMv7 at present. This is needed for LCD support, where we want to make the LCD fram

Re: [U-Boot] [PATCH v2 02/21] pmic:i2c: Add I2C byte order to PMIC framework

2012-10-09 Thread Lukasz Majewski
Hi Stefano, > On 05/10/2012 10:16, Lukasz Majewski wrote: > > Since the pmic_reg_read is the u32 value, the order in which bytes > > are placed to form u32 value is important. > > > > This commit adds the reverse (which is default) and normal byte > > order. > > > > Signed-off-by: Lukasz Majewsk

Re: [U-Boot] [PATCH v2 0/3] Enable MMC support for at91sam9x5ek board.

2012-10-09 Thread Josh Wu
Hi, Andreas Any feedback of these patches? Best Regards, Josh Wu On 9/14/2012 4:22 PM, Josh Wu wrote: This patch series enable MCI0 solt in at91sam9x5ek board. Josh Wu (3): mmc: at91: add multi block read/write support. ARM: at91sam9x5: enable MCI0 support for 9x5ek board. mmc: at91:

Re: [U-Boot] [PATCH v2 08/21] pmic: Move pmic related code to ./drivers/power directory

2012-10-09 Thread Stefano Babic
On 05/10/2012 10:16, Lukasz Majewski wrote: > The PMIC framework has been moved to its more natural place > ./drivers/power from ./drivers/misc directory. > > Signed-off-by: Lukasz Majewski > Signed-off-by: Kyungmin Park > --- > Changes for v2: > - New patch for v2 > --- > drivers/misc/Makefile

Re: [U-Boot] [PATCH v2 06/21] pmic: Enable power_board_init() support at TRATS

2012-10-09 Thread Stefano Babic
On 05/10/2012 10:16, Lukasz Majewski wrote: > Enable support for power_board_init() method at TRATS board. > > Signed-off-by: Lukasz Majewski > Signed-off-by: Kyungmin Park > --- > Changes for v2: > - None > --- > board/samsung/trats/trats.c | 15 +++ > include/configs/trats.h

Re: [U-Boot] [PATCH v2 05/21] pmic: Introduce power_board_init() method at ./lib/board.c file

2012-10-09 Thread Stefano Babic
On 05/10/2012 10:16, Lukasz Majewski wrote: > It is necessary to introduce a new system wide function- power_board_init() > > It turns out, that power initialization must be done as early as possible. > In the case of PMIC framework redesign, which aims to support multiple > instances of PMIC devi

Re: [U-Boot] [PATCH v2 02/21] pmic:i2c: Add I2C byte order to PMIC framework

2012-10-09 Thread Stefano Babic
On 05/10/2012 10:16, Lukasz Majewski wrote: > Since the pmic_reg_read is the u32 value, the order in which bytes > are placed to form u32 value is important. > > This commit adds the reverse (which is default) and normal byte order. > > Signed-off-by: Lukasz Majewski > Signed-off-by: Kyungmin Pa

[U-Boot] [PATCH v3] add nand spl boot for qi_lb60 board

2012-10-09 Thread xiangfu
From: Xiangfu Liu * After create u-boot-spl.bin. it needs those 4 commands create final image for jz4740 cpu. dd if=spl/u-boot-spl.bin of=u-boot-nand.bin conv=sync bs=8192 count=1 dd if=spl/u-boot-spl.bin of=u-boot-nand.bin conv=sync,notrunc oflag=append bs=8192 count=1 tr '\0' '\

[U-Boot] [PATCH v4 7/7] Makefile: Add target for combined spl/u-boot.bin & u-boot.img

2012-10-09 Thread Stefan Roese
This new make target "u-boot-img.bin" consists of the U-Boot SPL image with the real, full-blown U-Boot image directly attached to it. The full-blown U-Boot image has the mkimage header included, with its load-address and entry-point. This will be used by the upcoming a3m071 MPC5200 board port. S

[U-Boot] [PATCH v4 6/7] Makefile: Add possibility to set entry-point for u-boot.img

2012-10-09 Thread Stefan Roese
This patch enabled boards using the SPL framework to set an entry point in the U-Boot mkimage image "u-boot.img". Until now the entry point in the header has been set to 0. By setting CONFIG_SYS_UBOOT_START in the board header, boards can override this default location. This will be used by the up

[U-Boot] [PATCH v4 5/7] mpc5200: Add a3m071 board support

2012-10-09 Thread Stefan Roese
This patch adds support for the a3m071 board based on the MPC5200. Signed-off-by: Stefan Roese --- Changes in v4: - Add remark to call "fdt chosen" to board/a3m071/README - Configure PCS2 as CODEC2 (SPI) Changes in v2: - Rebased on Tom's SPL framework patches v4 - a3m071 build: Concat SPL binary

[U-Boot] [PATCH v4 4/7] mpc5200: Add SPL support

2012-10-09 Thread Stefan Roese
This patch adds SPL booting support (NOR flash) for the MPC5200 platforms. Signed-off-by: Stefan Roese --- Changes in v3: - Don't use special MPC5xxx memcpy in SPL - Move linker symbols to header spl.h (checkpatch) Changes in v2: - Rebased on Tom's SPL framework patches v4 arch/powerpc/cpu/mpc

[U-Boot] [PATCH v4 2/7] SPL: Port SPL framework to powerpc

2012-10-09 Thread Stefan Roese
This patch enables the SPL framework to be used on powerpc platforms and not only ARM. Signed-off-by: Stefan Roese --- Changes in v4: - Build spl.o only for SPL image Changes in v2: - Rebased on Tom's SPL framework patches v4 - Add option to skip copying of the mkimage header arch/powerpc/lib/

[U-Boot] [PATCH v4 3/7] env: Enable getenv_f() for SPL_BUILD

2012-10-09 Thread Stefan Roese
With this patch, getenv_f() can be included easily into the SPL binary. With this, SPL boards can now use getenv_f() to read environment variables (e.g. to detect if the OS or U-Boot shall be executed). In the approach this is done for env stored in NOR flash, as this will be used by an upcoming M

[U-Boot] [PATCH v4 0/7] SPL: Port SPL framework to powerpc

2012-10-09 Thread Stefan Roese
This patchset ports the SPL framework to powerpc. Its based on the SPL generalization lately done by Tom Rini. The patches is based on the current "next" branch. Additionally, a new MPC5200 board port is included, the a3m071 board port. This board port uses this SPL framework mainly to speed up b

[U-Boot] [PATCH v4 1/7] powerpc: Extract EPAPR_MAGIC constants into processor.h

2012-10-09 Thread Stefan Roese
By extracting these defines into a header, they can be re-used by other C sources as well. This will be done by the SPL framework OS boot support. Signed-off-by: Stefan Roese --- arch/powerpc/include/asm/processor.h | 6 ++ arch/powerpc/lib/bootm.c | 6 -- 2 files changed, 6

<    1   2