Re: [U-Boot] [RFC] kbuild.h: workaround for llvm IAS

2014-06-26 Thread Masahiro Yamada
Hi Jeroen, On Tue, 24 Jun 2014 21:36:06 +0200 Jeroen Hofstee wrote: > >> KBuild (ab)uses the asm statement to write to a file and > >> llvm integrated as chokes about these invalid asm statements. > >> Workaround it by making it look like valid asm code. > >> > >> Signed-off-by: Jeroen Hofstee

Re: [U-Boot] [PATCH 1/3] i2c: tegra: use repeated start for reads

2014-06-26 Thread Stephen Warren
On 06/26/2014 02:01 PM, Joakim Tjernlund wrote: ... > Strange, I had a look at the driver and I have a hard time figuring out > how/when START/STOP > is generated. However I don't think the current driver's > wait_for_transfer_complete() waits for > the START/STOP. I guess it waits until all data

[U-Boot] [PATCH] board: ti: dra7xx: add mux data for UART3

2014-06-26 Thread Felipe Balbi
J6 EVM can be built with UART3 as console, but currently there's nothing muxing UART3 correctly. Likely this only works because, based on commit log, author was only testing with UART3 boot and - I assume - ROM code leave UART3 correctly muxed in that case. If we want to boot from MMC and still us

[U-Boot] [PATCH v3 4/4] usb/gadget: fastboot: minor cleanup

2014-06-26 Thread Steve Rae
- update static function - additional debugging statements Signed-off-by: Steve Rae --- Changes in v3: None Changes in v2: - new in v2 drivers/usb/gadget/f_fastboot.c | 10 +++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/drivers/usb/gadget/f_fastboot.c b/drivers/usb/ga

[U-Boot] [PATCH v3 0/4] Implement "fastboot flash" for eMMC

2014-06-26 Thread Steve Rae
This series implements the "fastboot flash" command for eMMC devices. It supports both raw and sparse images. NOTES: - the support for the "fastboot flash" command is enabled with CONFIG_FASTBOOT_FLASH - the support for eMMC is enabled with CONFIG_FASTBOOT_FLASH_MMC_DEV - (future) the support for

[U-Boot] [PATCH v3 2/4] usb/gadget: fastboot: add eMMC support for flash command

2014-06-26 Thread Steve Rae
- add support for 'fastboot flash' command for eMMC devices Signed-off-by: Steve Rae --- I suspect that the "sparse image" handling (ie. the "while (remaining_chunks)" loop) has been implemented elsewhere -- I need help finding the original code to determine any licensing issues Thanks, Ste

[U-Boot] [PATCH v3 3/4] usb/gadget: fastboot: add support for flash command

2014-06-26 Thread Steve Rae
- implement 'fastboot flash' for eMMC devices Signed-off-by: Steve Rae --- Changes in v3: None Changes in v2: - update README.android-fastboot file README | 10 ++ doc/README.android-fastboot | 5 +++-- drivers/usb/gadget/f_fastboot.c | 31

[U-Boot] [PATCH v3 1/4] usb/gadget: fastboot: add sparse image definitions

2014-06-26 Thread Steve Rae
- to prepare for the support of fastboot sparse images Signed-off-by: Steve Rae --- This file is ASIS from: https://raw.githubusercontent.com/AOSB/android_system_core/master/libsparse/sparse_format.h (commit 28fa5bc347390480fe190294c6c385b6a9f0d68b) except for the __UBOOT__ conditional inclu

Re: [U-Boot] [PATCH 1/3] i2c: tegra: use repeated start for reads

2014-06-26 Thread Joakim Tjernlund
Stephen Warren wrote on 2014/06/26 21:24:05: > On 06/26/2014 01:18 PM, Stephen Warren wrote: > > On 06/26/2014 01:11 PM, Joakim Tjernlund wrote: > >> Stephen Warren wrote on 2014/06/26 18:47:55: > >>> > >>> On 06/26/2014 02:11 AM, Joakim Tjernlund wrote: > > From: Stephen Warren > > To:

Re: [U-Boot] [PATCH 1/3] i2c: tegra: use repeated start for reads

2014-06-26 Thread Joakim Tjernlund
Stephen Warren wrote on 2014/06/26 21:18:50: > > On 06/26/2014 01:11 PM, Joakim Tjernlund wrote: > > Stephen Warren wrote on 2014/06/26 18:47:55: > >> > >> On 06/26/2014 02:11 AM, Joakim Tjernlund wrote: > From: Stephen Warren > To: u-boot@lists.denx.de, Heiko Schocher , > Cc:

Re: [U-Boot] [PATCH 1/3] i2c: tegra: use repeated start for reads

2014-06-26 Thread Stephen Warren
On 06/26/2014 01:18 PM, Stephen Warren wrote: > On 06/26/2014 01:11 PM, Joakim Tjernlund wrote: >> Stephen Warren wrote on 2014/06/26 18:47:55: >>> >>> On 06/26/2014 02:11 AM, Joakim Tjernlund wrote: > From: Stephen Warren > To: u-boot@lists.denx.de, Heiko Schocher , > Cc: Stephen Wa

Re: [U-Boot] [PATCH 1/3] i2c: tegra: use repeated start for reads

2014-06-26 Thread Stephen Warren
On 06/26/2014 01:11 PM, Joakim Tjernlund wrote: > Stephen Warren wrote on 2014/06/26 18:47:55: >> >> On 06/26/2014 02:11 AM, Joakim Tjernlund wrote: From: Stephen Warren To: u-boot@lists.denx.de, Heiko Schocher , Cc: Stephen Warren , Tom Warren > Date: 2014/06/25 19:05

Re: [U-Boot] [PATCH 1/3] i2c: tegra: use repeated start for reads

2014-06-26 Thread Joakim Tjernlund
Stephen Warren wrote on 2014/06/26 18:47:55: > > On 06/26/2014 02:11 AM, Joakim Tjernlund wrote: > >> From: Stephen Warren > >> To: u-boot@lists.denx.de, Heiko Schocher , > >> Cc: Stephen Warren , Tom Warren > >> Date: 2014/06/25 19:05 > >> Subject: [U-Boot] [PATCH 1/3] i2c: tegra: use repeat

[U-Boot] [PATCH v2 4/4] usb/gadget: fastboot: minor cleanup

2014-06-26 Thread Steve Rae
- update static function - additional debugging statements Signed-off-by: Steve Rae --- Changes in v2: - new in v2 drivers/usb/gadget/f_fastboot.c | 10 +++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/drivers/usb/gadget/f_fastboot.c b/drivers/usb/gadget/f_fastboot.c in

[U-Boot] [PATCH v2 2/4] usb/gadget: fastboot: add eMMC support for flash command

2014-06-26 Thread Steve Rae
- add support for 'fastboot flash' command for eMMC devices Signed-off-by: Steve Rae --- I suspect that the "sparse image" handling (ie. the "while (remaining_chunks)" loop) has been implemented elsewhere -- I need help finding the original code to determine any licensing issues Thanks, Ste

[U-Boot] [PATCH v2 3/4] usb/gadget: fastboot: add support for flash command

2014-06-26 Thread Steve Rae
- implement 'fastboot flash' for eMMC devices Signed-off-by: Steve Rae --- Changes in v2: - update README.android-fastboot file README | 10 ++ doc/README.android-fastboot | 5 +++-- drivers/usb/gadget/f_fastboot.c | 31 +++ 3 f

[U-Boot] [PATCH v2 1/4] usb/gadget: fastboot: add sparse image definitions

2014-06-26 Thread Steve Rae
- to prepare for the support of fastboot sparse images Signed-off-by: Steve Rae --- This file is ASIS from: https://raw.githubusercontent.com/AOSB/android_system_core/master/libsparse/sparse_format.h (commit 28fa5bc347390480fe190294c6c385b6a9f0d68b) except for the __UBOOT__ conditional inclu

[U-Boot] [PATCH v2 0/4] Implement "fastboot flash" for eMMC

2014-06-26 Thread Steve Rae
This series implements the "fastboot flash" command for eMMC devices. It supports both raw and sparse images. NOTES: - the support for the "fastboot flash" command is enabled with CONFIG_FASTBOOT_FLASH - the support for eMMC is enabled with CONFIG_FASTBOOT_FLASH_MMC_DEV - (future) the support for

[U-Boot] [PATCH] common: main.c: make show_boot_progress __weak

2014-06-26 Thread Jeroen Hofstee
This not only looks a bit better it also prevents a warning with W=1 (no previous prototype). Signed-off-by: Jeroen Hofstee --- common/main.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/common/main.c b/common/main.c index 32618f1..2979fbe 100644 --- a/common/main.c +++

[U-Boot] [PATCH] driver/ddr: Fix DDR register timing_cfg_8

2014-06-26 Thread York Sun
The field wrtord_bg should add 2 clocks if on the fly chop is enabled, according to DDR controller manual for DDR4. Signed-off-by: York Sun --- drivers/ddr/fsl/ctrl_regs.c |3 +++ 1 file changed, 3 insertions(+) diff --git a/drivers/ddr/fsl/ctrl_regs.c b/drivers/ddr/fsl/ctrl_regs.c index dc

[U-Boot] [PATCH] lib:lmb: use __weak

2014-06-26 Thread Jeroen Hofstee
This not only looks a bit better it also prevents a warning with W=1 (no previous prototype). Signed-off-by: Jeroen Hofstee --- lib/lmb.c | 6 ++ 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/lib/lmb.c b/lib/lmb.c index 081e418..49a3c9e 100644 --- a/lib/lmb.c +++ b/lib/lmb.c

[U-Boot] [PATCH] common:splash: use __weak

2014-06-26 Thread Jeroen Hofstee
This not only looks a bit better it also prevents a warning with W=1 (no previous prototype). cc: ag...@denx.de Signed-off-by: Jeroen Hofstee --- common/splash.c | 6 +- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/common/splash.c b/common/splash.c index 18885f1..144fb10 1006

Re: [U-Boot] [RFC PATCH 0/3] Implement "fastboot flash" for eMMC

2014-06-26 Thread Steve Rae
On 14-06-26 06:20 AM, Rob Herring wrote: On Wed, Jun 25, 2014 at 7:16 PM, Steve Rae wrote: Rob, On 14-06-25 06:59 AM, Rob Herring wrote: On Mon, Jun 23, 2014 at 1:37 PM, Steve Rae wrote: Rob & Sebastian I would appreciate your comments on this issue; I suspect that you had some ideas

Re: [U-Boot] [PATCH 1/3] i2c: tegra: use repeated start for reads

2014-06-26 Thread Stephen Warren
On 06/26/2014 02:11 AM, Joakim Tjernlund wrote: >> From: Stephen Warren >> To: u-boot@lists.denx.de, Heiko Schocher , >> Cc: Stephen Warren , Tom Warren >> Date: 2014/06/25 19:05 >> Subject: [U-Boot] [PATCH 1/3] i2c: tegra: use repeated start for reads >> Sent by: u-boot-boun...@lists.denx.de >>

[U-Boot] Why spi flash probe runs twice ?

2014-06-26 Thread Heshsham Abdul Basit
Hi, This is a section of the log from u-boot running on Avnet Microzed board: [Thu Jun 26 17:40:53.656 2014] [Thu Jun 26 17:40:53.656 2014] [Thu Jun 26 17:40:53.656 2014] U-Boot 2013.07 (Jun 26 2014 - 17:34:41) [Thu Jun 26 17:40:53.656 2014] [Thu Jun 26 17:40:53.656 2014] 1 GiB [Thu Jun 26

[U-Boot] [PATCH v3 11/11] odroid: add odroid_config

2014-06-26 Thread Przemyslaw Marczak
This config is valid for two devices: - Odroid X2, - Odroid U3. Signed-off-by: Przemyslaw Marczak Cc: Minkyu Kang Cc: Tom Rini --- Changes v2: - odroid config: add CONFIG_DFU_ALT_BOOTLOADER - odroid config: change name of CONFIG_DFU_BOOT_ALT_* to CONFIG_DFU_ALT_BOOT_* Changes v3: - odroid.h:

[U-Boot] [PATCH v3 07/11] samsung: board: enable support of multiple board types

2014-06-26 Thread Przemyslaw Marczak
This change adds declaration of functions: - set_board_type() - called at checkboard() - get_board_type() - called at checkboard() - get_board_name() For supporting multiple board types in a one config - it is welcome to display the current board model. This is what get_board_type() should return.

[U-Boot] [PATCH v3 03/11] board:samsung: check the boot device and init the right mmc driver.

2014-06-26 Thread Przemyslaw Marczak
It is possible to boot device using a micro SD or eMMC slots. In this situation, boot device should be registered as a block device 0 in the MMC framework, because CONFIG_SYS_MMC_ENV_DEV is usually set to "0" in the most config cases. Signed-off-by: Przemyslaw Marczak --- Changes V3: - separate t

[U-Boot] [PATCH v3 06/11] arm:reset: call the reset_misc() before the cpu reset

2014-06-26 Thread Przemyslaw Marczak
On an Odroid U3 board, the SOC is unable to reset the eMMC card in the DWMMC mode by the cpu software reset. Manual reset of the card by switching proper gpio pin - fixes this issue. Such solution needs to add a call to pre reset function. This is done by the reset_misc() function, which is called

[U-Boot] [PATCH v3 10/11] odroid: add odroid U3/X2 device tree description

2014-06-26 Thread Przemyslaw Marczak
This is a standard description for Odroid boards. Signed-off-by: Przemyslaw Marczak Cc: Minkyu Kang Cc: Tom Rini --- arch/arm/dts/Makefile | 3 +- arch/arm/dts/exynos4412-odroid.dts | 70 ++ 2 files changed, 72 insertions(+), 1 deletion(-) cre

[U-Boot] [PATCH v3 09/11] odroid: add board file for Odroid X2/U3 based on Samsung Exynos4412

2014-06-26 Thread Przemyslaw Marczak
This board file supports standard features of Odroid X2 and U3 boards: - Exynos4412 core clock set to 1000MHz and MPLL peripherial clock set to 800MHz, - MAX77686 power regulator, - USB PHY, - enable XCL205 - power for board peripherials - check board type: U3 or X2. - enable Odroid U3 FAN cooler

[U-Boot] [PATCH v3 04/11] samsung: misc: add function for setting $dfu_alt_info

2014-06-26 Thread Przemyslaw Marczak
This change introduces new common function: - set_dfu_alt_info() - put dfu system and bootloader setting into $dfu_alt_info. functions declaration: - char *get_dfu_alt_system(void) - char *get_dfu_alt_boot(void) - void set_dfu_alt_info(void) and new config: - CONFIG_SET_DFU_A

[U-Boot] [PATCH v3 00/11] Add support to Odroid U3/X2

2014-06-26 Thread Przemyslaw Marczak
This patch set introduces: - boot device check - automatic init order of mmc proper driver - automatic setting of dfu entities which depends on boot device - pre reset function for board own implementation - setting board info environment for multi board support - Odroid U3/X2 support Przemyslaw M

[U-Boot] [PATCH v3 01/11] exynos: pinmux: fix the gpio names for exynos4x12 mmc

2014-06-26 Thread Przemyslaw Marczak
This change fixes the bad gpio configuration for the exynos dwmmc. Signed-off-by: Przemyslaw Marczak Cc: Beomho Seo Cc: Minkyu Kang Cc: Jaehoon Chung --- arch/arm/cpu/armv7/exynos/pinmux.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/arch/arm/cpu/armv7/exynos/pinmux

[U-Boot] [PATCH v3 08/11] samsung: misc: use board specific functions to set env board info

2014-06-26 Thread Przemyslaw Marczak
This change adds setup of environmental board info using get_board_name() and get_board_type() functions for config CONFIG_BOARD_TYPES. This is useful in case of running many boards with just one config. Signed-off-by: Przemyslaw Marczak Cc: Piotr Wilczek Cc: Minkyu Kang --- Changes v2: - set

[U-Boot] [PATCH v3 05/11] samsung:board: misc_init_r: call set_dfu_alt_info()

2014-06-26 Thread Przemyslaw Marczak
This change enable automatic setting of dfu alt info on every boot. This is useful in case of booting one u-boot binary from multiple media. Signed-off-by: Przemyslaw Marczak --- board/samsung/common/board.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/board/samsung/common/board.c b/bo

[U-Boot] [PATCH v3 02/11] board:samsung: add function boot_device() for checking boot medium

2014-06-26 Thread Przemyslaw Marczak
It is possible to boot from a few media devices, especially using a micro SD or eMMC slots. In this situation depends on a boot device - some setup can be changeg. This change adds function: boot_device() - which returns an OM[1:5] bits value This allows checking if boot device is SD(0x2). Signe

Re: [U-Boot] [RFC PATCH 0/3] Implement "fastboot flash" for eMMC

2014-06-26 Thread Rob Herring
On Wed, Jun 25, 2014 at 7:16 PM, Steve Rae wrote: > Rob, > > > On 14-06-25 06:59 AM, Rob Herring wrote: >> >> On Mon, Jun 23, 2014 at 1:37 PM, Steve Rae wrote: >>> >>> Rob & Sebastian >>> >>> I would appreciate your comments on this issue; I suspect that you had >>> some >>> ideas regarding the i

Re: [U-Boot] [TEST_ONLY V2 10/10] Pit WIP

2014-06-26 Thread Ajay kumar
On Thu, Jun 26, 2014 at 4:19 PM, Wolfgang Denk wrote: > Dear Ajay kumar, > > In message > you > wrote: >> >> > In message <1403769668-2026-11-git-send-email-ajaykumar...@samsung.com> >> > you wrote: >> >> WIP patch to enable cros-ec on peach_pit. >> This Entire patch is a TEST_ONLY since it is

Re: [U-Boot] [TEST_ONLY V2 10/10] Pit WIP

2014-06-26 Thread Wolfgang Denk
Dear Ajay kumar, In message you wrote: > > > In message <1403769668-2026-11-git-send-email-ajaykumar...@samsung.com> you > > wrote: > >> WIP patch to enable cros-ec on peach_pit. > This Entire patch is a TEST_ONLY since it is still WIP(Work In Progress). > That would mean somebody else is alre

Re: [U-Boot] [PATCH RFC 0/2] usb: host: Add a wrapper layer for mutiple host support

2014-06-26 Thread Marek Vasut
On Thursday, June 26, 2014 at 06:46:11 AM, Vivek Gautam wrote: > Hi Simon, Marek, > > > On Thu, Jun 26, 2014 at 10:04 AM, Vivek Gautam > wrote: > > sorry for spamming, the earlier message got sent by mistake. > > > On Thu, Jun 26, 2014 at 8:00 AM, Simon Glass wrote: > >> Hi Marek, > >> > >>

Re: [U-Boot] [TEST_ONLY V2 10/10] Pit WIP

2014-06-26 Thread Ajay kumar
Hi Denk, On Thu, Jun 26, 2014 at 2:16 PM, Wolfgang Denk wrote: > Dear Ajay Kumar, > > In message <1403769668-2026-11-git-send-email-ajaykumar...@samsung.com> you > wrote: >> WIP patch to enable cros-ec on peach_pit. This Entire patch is a TEST_ONLY since it is still WIP(Work In Progress). That

[U-Boot] [PATCH 6/6] ARM: m53evk: Update default environment

2014-06-26 Thread Marek Vasut
From: Lothar Rubusch Signed-off-by: Marek Vasut Signed-off-by: Lothar Rubusch Signed-off-by: Wolfgang Denk --- include/configs/m53evk.h | 87 +++- 1 file changed, 86 insertions(+), 1 deletion(-) diff --git a/include/configs/m53evk.h b/include/confi

[U-Boot] [PATCH 5/6] ARM: m53evk: Adjust mtdparts settings

2014-06-26 Thread Marek Vasut
Adjust the mtdparts settings to allow for alternative boot images and for using UBI. Signed-off-by: Marek Vasut Signed-off-by: Wolfgang Denk Cc: Stefano Babic --- include/configs/m53evk.h | 17 - 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/include/configs/m53e

[U-Boot] [PATCH 4/6] ARM: m53evk: add needed commands and options

2014-06-26 Thread Marek Vasut
- "env ask", "env grep" and "setexpr" are needed for commissioning - add support for ext4 file systems - adjust default environment to use ext4 commands - add write support for (V)FAT and EXT4 - add bitmap and splashscreen support - print timestamp information for images Signed-off-by: Marek Vasut

[U-Boot] [PATCH 3/6] ARM: m28evk: Update default environment

2014-06-26 Thread Marek Vasut
From: Lothar Rubusch Signed-off-by: Marek Vasut Signed-off-by: Lothar Rubusch --- include/configs/m28evk.h | 87 ++-- 1 file changed, 84 insertions(+), 3 deletions(-) diff --git a/include/configs/m28evk.h b/include/configs/m28evk.h index 89f9785..fc

[U-Boot] [PATCH 2/6] ARM: m28evk: Adjust mtdparts

2014-06-26 Thread Marek Vasut
Adjust the mtdparts to also consider factory-programmed config block. Signed-off-by: Marek Vasut --- include/configs/m28evk.h | 17 - 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/include/configs/m28evk.h b/include/configs/m28evk.h index c3bdd4b..89f9785 100644 --

[U-Boot] [PATCH 1/6] ARM: m28evk: add needed commands and options

2014-06-26 Thread Marek Vasut
- "env ask", "env grep" and "setexpr" are needed for commissioning - add support for ext4 file systems - adjust default environment to use ext4 commands - add write support for (V)FAT and EXT4 - add bitmap and splashscreen support - print timestamp information for images Signed-off-by: Marek Vasut

Re: [U-Boot] [PATCH V2 05/10] video: Add driver for Parade PS8625 dP to LVDS bridge

2014-06-26 Thread Wolfgang Denk
Dear Ajay Kumar, In message <1403769668-2026-6-git-send-email-ajaykumar...@samsung.com> you wrote: ... > + * Use of this source code is governed by a BSD-style license that can be > + * found in the LICENSE file. NAK. We need precise licnese terms; just mentioning some "LICENSE file" without ev

Re: [U-Boot] [TEST_ONLY V2 10/10] Pit WIP

2014-06-26 Thread Wolfgang Denk
Dear Ajay Kumar, In message <1403769668-2026-11-git-send-email-ajaykumar...@samsung.com> you wrote: > WIP patch to enable cros-ec on peach_pit. Do you think anybody would be able to figure out what this is supposed to mean? I can't... > @@ -0,0 +1,212 @@ > +/* > + * Copyright (c) 2013 The Chro

[U-Boot] [PULL] : Please pull u-boot-imx

2014-06-26 Thread Stefano Babic
Hi Albert, please pull from u-boot-imx, thanks ! The following changes since commit 49692c5f517d8e44ed9db0de778728fe7d2a300c: net/designware: Make DMA burst length configurable and reduce by default (2014-05-25 17:23:58 +0200) are available in the git repository at: git://www.denx.de/git/u

Re: [U-Boot] [PATCH] mx25pdk: Remove CONFIG_SYS_GENERIC_BOARD

2014-06-26 Thread Stefano Babic
Hi Fabio, On 25/06/2014 19:45, Fabio Estevam wrote: > From: Fabio Estevam > > With CONFIG_SYS_GENERIC_BOARD the board hangs after issuing a 'save' command. > > Remove CONFIG_SYS_GENERIC_BOARD until this issue can be fixed properly. > > Signed-off-by: Fabio Estevam > --- > Stefano, > > I will

Re: [U-Boot] [PATCH 1/3] i2c: tegra: use repeated start for reads

2014-06-26 Thread Joakim Tjernlund
> From: Stephen Warren > To: u-boot@lists.denx.de, Heiko Schocher , > Cc: Stephen Warren , Tom Warren > Date: 2014/06/25 19:05 > Subject: [U-Boot] [PATCH 1/3] i2c: tegra: use repeated start for reads > Sent by: u-boot-boun...@lists.denx.de > > From: Stephen Warren > > I2C read transactions ar

[U-Boot] [TEST_ONLY V2 10/10] Pit WIP

2014-06-26 Thread Ajay Kumar
WIP patch to enable cros-ec on peach_pit. Signed-off-by: Simon Glass --- drivers/misc/cros_ec_spi.c| 4 +- drivers/power/pmic/Makefile | 3 +- drivers/power/pmic/pmic_tps65090_ec.c | 212 ++ drivers/spi/exynos_spi.c | 9 +-

[U-Boot] [PATCH V2 07/10] exynos5420: add callbacks needed for exynos_fb driver

2014-06-26 Thread Ajay Kumar
Add initialization code for peach_pit panel, parade bridge chip, and backlight. Signed-off-by: Ajay Kumar Acked-by: Simon Glass Tested-by: Simon Glass --- arch/arm/include/asm/arch-exynos/system.h | 3 + board/samsung/smdk5420/smdk5420.c | 129 +++--- 2 files

[U-Boot] [PATCH V2 04/10] video: exynos_fimd: Add framework to disable FIMD sysmmu

2014-06-26 Thread Ajay Kumar
On Exynos5420 and newer versions, the FIMD sysmmus are in "on state" by default. We have to disable them in order to make FIMD DMA work. This patch adds the required framework to exynos_fimd driver, and disables FIMD sysmmu on Exynos5420. Signed-off-by: Ajay Kumar --- arch/arm/dts/exynos54xx.dts

[U-Boot] [PATCH V2 03/10] arm: exynos: Add get_lcd_clk and set_lcd_clk callbacks for Exynos5420

2014-06-26 Thread Ajay Kumar
Add get_lcd_clk and set_lcd_clk callbacks for Exynos5420 needed by exynos video driver. Also, configure ACLK_400_DISP1 as the parent for MUX_ACLK_400_DISP1_SUB_SEL. Signed-off-by: Ajay Kumar Acked-by: Simon Glass Tested-by: Simon Glass --- arch/arm/cpu/armv7/exynos/clock.c | 83 +++

[U-Boot] [PATCH V2 09/10] CONFIGS: peach-pit: Enable display for peach_pit board

2014-06-26 Thread Ajay Kumar
Enable drivers for FIMD, DP and parade bridge chip. Signed-off-by: Ajay Kumar --- include/configs/peach-pit.h | 10 ++ 1 file changed, 10 insertions(+) diff --git a/include/configs/peach-pit.h b/include/configs/peach-pit.h index 76b8d7a..88c093f 100644 --- a/include/configs/peach-pit.h

[U-Boot] [PATCH V2 02/10] arm: exynos: Add RPLL for Exynos5420

2014-06-26 Thread Ajay Kumar
RPLL is needed to drive the LCD panel on Exynos5420 based boards. Signed-off-by: Ajay Kumar Acked-by: Simon Glass Tested-by: Simon Glass --- arch/arm/cpu/armv7/exynos/clock_init.h | 3 +++ arch/arm/cpu/armv7/exynos/clock_init_exynos5.c | 13 + 2 files changed, 16 insertion

[U-Boot] [PATCH V2 05/10] video: Add driver for Parade PS8625 dP to LVDS bridge

2014-06-26 Thread Ajay Kumar
From: Vadim Bendebury The initialization table comes from the "Illustration of I2C command for initialing PS8625" document supplied by Parade. Signed-off-by: Vadim Bendebury Signed-off-by: Ajay Kumar Acked-by: Simon Glass Tested-by: Simon Glass --- drivers/video/Makefile | 1 + drivers/vi

[U-Boot] [PATCH V2 08/10] ARM: exynos: peach_pit: Add DT nodes for fimd and parade bridge chip

2014-06-26 Thread Ajay Kumar
This patch adds DT properties for fimd and the parade bridge chip present on peach_pit. The panel supports 1366x768 resolution. Signed-off-by: Ajay Kumar Acked-by: Simon Glass Tested-by: Simon Glass --- arch/arm/dts/exynos5420-peach-pit.dts | 30 ++ 1 file changed,

[U-Boot] [PATCH V2 01/10] exynos_fb: Remove usage of static defines

2014-06-26 Thread Ajay Kumar
Previously, we used to statically assign values for vl_col, vl_row and vl_bpix using #defines like LCD_XRES, LCD_YRES and LCD_COLOR16. Introducing the function exynos_lcd_early_init() would take care of this assignment on the fly by parsing FIMD DT properties, thereby allowing us to remove LCD_XRE

[U-Boot] [TEST_ONLY V2 06/10] ARM: exynos: Add missing declaration for gpio_direction_input

2014-06-26 Thread Ajay Kumar
This patch adds missing declaration for gpio_direction_input function, thereby helps in resolving compilation warnings. Signed-off-by: Ajay Kumar --- arch/arm/include/asm/arch-exynos/gpio.h | 1 + 1 file changed, 1 insertion(+) diff --git a/arch/arm/include/asm/arch-exynos/gpio.h b/arch/arm/in

[U-Boot] [PATCH V2 00/10] peach_pit: Add support for FIMD, DP and parade chip

2014-06-26 Thread Ajay Kumar
Patchset V1: https://www.mail-archive.com/u-boot@lists.denx.de/msg140596.html Patch 6 is TEST_ONLY since Simon will be sending it as a part of device model changes. Patch 10 is TEST_ONLY and it adds support for cros-ec on peach_pit. Simon will be sending a proper patchset for the same. Changes f

Re: [U-Boot] [PATCH] Add Epson RX8581 RTC support

2014-06-26 Thread Thumshirn, Johannes Tobias
> Von: Tom Rini [mailto:tom.r...@gmail.com] Im Auftrag von Tom Rini > Gesendet: Mittwoch, 25. Juni 2014 15:07 > An: Thumshirn, Johannes Tobias > Cc: u-boot@lists.denx.de; Schnürer, Thomas > Betreff: Re: [U-Boot] [PATCH] Add Epson RX8581 RTC support > > * PGP Signed by an unknown key > > On Wed, J

Re: [U-Boot] [PATCH v4 0/3] mtd, ubi, ubifs: resync with Linux-3.14

2014-06-26 Thread Wolfgang Denk
Dear Scott, In message <1403637570.26908.38.ca...@snotra.buserror.net> you wrote: > > I still disagree with #ifndef __UBOOT__ as it will hurt more than it > helps with future merges. I agree that #ifdef's should be avoided, but then here they also serve a documentation purpose as they clearly mar

[U-Boot] [PATCH] powerpc/ifc: fix invalid CSn FTIM2.TCH setting

2014-06-26 Thread shh.xie
From: Shaohui Xie On some platforms, CSn FTIM2.TCH is set to zero which is invalid, an invalid hold time makes DUT timing variances, whether it works or not on luck. Signed-off-by: Shaohui Xie --- based on 'next' of git://git.denx.de/u-boot-mpc85xx.git. include/configs/B4860QDS.h | 2 +- in

Re: [U-Boot] [PATCH v3 00/10] sunxi: Bug fixes, sun4i and sun5i support and network improvements

2014-06-26 Thread Ian Campbell
(re-adding Hans whose CC I seem to have dropped somehow, sorry) On Wed, 2014-06-25 at 20:57 +0100, Ian Campbell wrote: > Hi Albert, > > Any comments on these sunxi series from Hans and myself? I wonder if Hans and I should be applying for a u-boot-sunxi.git custodian tree[0]? Ian. [0] http://w

Re: [U-Boot] [PATCH v2 0/2] OMAP/GPMC: speed up NAND read access

2014-06-26 Thread Daniel Mack
Hi, On 06/26/2014 08:08 AM, Gupta, Pekon wrote: >> From: Daniel Mack [mailto:zon...@gmail.com] >> >> Resending this since I got no replies on the first version. >> I also fixed up the commit log of #1. >> > I plan to test this, but there is still a long pending list of patches which > for me to te