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

2014-06-24 Thread Ajay kumar
Simon, On Mon, Jun 23, 2014 at 5:45 PM, Simon Glass wrote: > Hi Ajay, > > On 20 June 2014 00:42, Ajay kumar wrote: >> Hi Simon, >> >> >> On Fri, Jun 20, 2014 at 8:59 AM, Simon Glass wrote: >>> On 17 June 2014 03:06, Ajay Kumar wrote: On Exynos5420 and newer versions, the FIMD sysmmus are

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

2014-06-24 Thread Marek Vasut
On Tuesday, June 24, 2014 at 06:48:27 AM, Heiko Schocher wrote: > Hello Tom, > > Am 23.06.2014 17:05, schrieb Tom Rini: > > On Sun, Jun 22, 2014 at 09:36:43AM +0200, Wolfgang Denk wrote: > >> Dear Heiko, > >> > >> In message<53a67ed9.2090...@denx.de> you wrote: > >>> And I have no chance to dete

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

2014-06-24 Thread Minkyu Kang
On 17/06/14 18:06, Ajay Kumar wrote: > 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 > --- > arch/arm/cpu/armv7/exynos/clock.c | 74 >

[U-Boot] [PATCH v5 0/5] mtd, ubi, ubifs: resync with Linux-3.14

2014-06-24 Thread Heiko Schocher
resync ubi subsystem with linux: commit 455c6fdbd219161bd09b1165f11699d6d73de11c Author: Linus Torvalds Date: Sun Mar 30 20:40:15 2014 -0700 Linux 3.14 A nice side effect of this, is we introduce UBI Fastmap support to U-Boot. To produce this patch I did two steps: - simple copy followin

[U-Boot] [PATCH v5 1/5] lib, rbtree: resync with Linux-3.14

2014-06-24 Thread Heiko Schocher
resync with linux: commit 455c6fdbd219161bd09b1165f11699d6d73de11c Author: Linus Torvalds Date: Sun Mar 30 20:40:15 2014 -0700 Linux 3.14 Needed for the MTD/UBI/UBIFS resync Just copied the files from Linux, changed the license file header, and add in the c-file: +#define __UBOOT__ #in

[U-Boot] [PATCH v5 3/5] linux include: add ERR_CAST

2014-06-24 Thread Heiko Schocher
add missing ERR_CAST to linux/err.h as it is needed for ubi/ubifs support Signed-off-by: Heiko Schocher --- - changes for v5: new include/linux/err.h | 17 + 1 file changed, 13 insertions(+), 4 deletions(-) diff --git a/include/linux/err.h b/include/linux/err.h index 96c0c72

[U-Boot] [PATCH v5 4/5] lib, linux: move linux specific defines to linux/compat.h

2014-06-24 Thread Heiko Schocher
- move linux specific defines from usb and video code into linux/compat.h - move common linux specific defines from include/ubi_uboot.h to linux/compat.h - add for new mtd/ubi/ubifs sync new needed linux specific defines to linux/compat.h Signed-off-by: Heiko Schocher Cc: Tom Rini Cc: Mare

[U-Boot] [PATCH v5 2/5] lib, list_sort: add list_sort from linux 3.14

2014-06-24 Thread Heiko Schocher
from linux 3.14: commit 455c6fdbd219161bd09b1165f11699d6d73de11c Author: Linus Torvalds Date: Sun Mar 30 20:40:15 2014 -0700 Linux 3.14 Needed for the MTD/UBI/UBIFS resync Just copied the files from Linux, and added in the c-file the "#define __UBOOT__" for adding U-Boot special code. In

[U-Boot] [PATCH] Makefile: drop arch/*/include/asm/proc from make mrproper pattern

2014-06-24 Thread Masahiro Yamada
Commit 7d89982b stopped creating symbolic link arch/${arch}/include/asm/proc. We do not need to delete it by "make mrproper" any more. Signed-off-by: Masahiro Yamada Cc: Vasili Galka --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index e429

[U-Boot] [PATCH v3 1/2] env_fat: use get_device_and_partition() during env save and load

2014-06-24 Thread Josh Wu
From: "Wu, Josh" Use get_device_and_partition() is better since: 1. It will call the device initialize function internally. So we can remove the mmc intialization code to save many lines. 2. It is used by fatls/fatload/fatwrite. So saveenv & load env should use it too. 3. It can parse the "D:P",

[U-Boot] [PATCH v3 2/2] README: document the CONFIG_ENV_IS_IN_FAT option

2014-06-24 Thread Josh Wu
In README file, add document for the missing configuration option: CONFIG_ENV_IS_IN_FAT. Signed-off-by: Josh Wu Reviewed-by: Stephen Warren --- v2 -> v3: add a brief commit message README | 31 +++ 1 file changed, 31 insertions(+) diff --git a/README b/README ind

Re: [U-Boot] [PATCH v2 2/2] README: document the CONFIG_ENV_IS_IN_FAT option

2014-06-24 Thread Josh Wu
Hi, Jon On 6/24/2014 3:08 AM, Jon Loeliger wrote: On Mon, Jun 23, 2014 at 1:41 PM, Stephen Warren wrote: On 06/22/2014 08:41 PM, Josh Wu wrote: Signed-off-by: Josh Wu A quick description might be nice. Otherwise, Josh, Any chance you want to patch the lack of CONFIG_ENV_IS_IN_SPI_FLASH do

Re: [U-Boot] [PATCH v2 2/2] README: document the CONFIG_ENV_IS_IN_FAT option

2014-06-24 Thread Josh Wu
Dear Stephen On 6/24/2014 2:41 AM, Stephen Warren wrote: On 06/22/2014 08:41 PM, Josh Wu wrote: Signed-off-by: Josh Wu A quick description might be nice. Otherwise, Reviewed-by: Stephen Warren Thanks. I will add a description message for the commit in v3. Best Regards, Josh Wu __

Re: [U-Boot] [RFC] Two sets of experimental Kconfig patches

2014-06-24 Thread Masahiro Yamada
Hi Tom, On Fri, 30 May 2014 13:24:08 -0400 Tom Rini wrote: > On Tue, May 27, 2014 at 04:32:50PM +0900, Masahiro Yamada wrote: > > > Hi. > > > > I've posted two sets of Kconfig RFC patches: "RFCv2a" and "RFCv2b" > > These are all certainly some thought experiments worth pursuing, so > thanks

Re: [U-Boot] [PATCH] patman: Only apply patches when we know the original HEAD

2014-06-24 Thread Masahiro Yamada
On Mon, 23 Jun 2014 06:11:28 -0600 Simon Glass wrote: > +Doug who may have some thoughts here. > > HI Masahiro, > > On 23 June 2014 00:28, Masahiro Yamada wrote: > > > Hi Simon, > > > > On Sun, 22 Jun 2014 22:54:43 -0600 > > Simon Glass wrote: > > > > > Hi, > > > > > > On Jun 22, 2014 10:23

Re: [U-Boot] [U-Boot, v8] nand/denali: Adding Denali NAND driver support

2014-06-24 Thread Masahiro Yamada
Hi Chin, Scott, On Thu, 19 Jun 2014 20:39:20 -0500 Scott Wood wrote: > I see that this driver exists in Linux... Is this patch related to a > particular Linux SHA1? If so, should it be described in git-log or the header part of denali.c ? > > +/* Reset the flash controller */ > > +static ui

[U-Boot] [PATCH] mtd: atmel-nand: use pmecc_readl(b)/pmecc_writel to access the pmecc register

2014-06-24 Thread Josh Wu
We defined the macro pmecc_readl(b)/pmecc_writel for pmecc register access. But in the driver we also use the readl(b)/writel. To keep consistent, this patch make all use pmecc_readl(b)/pmecc_writel. Signed-off-by: Josh Wu --- drivers/mtd/nand/atmel_nand.c | 21 +++-- drive

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

2014-06-24 Thread Ajay kumar
Hi Minkyu, On Tue, Jun 24, 2014 at 3:36 AM, Minkyu Kang wrote: > On 17/06/14 18:06, Ajay Kumar wrote: >> 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:

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

2014-06-24 Thread Minkyu Kang
On 24/06/14 20:28, Ajay kumar wrote: > Hi Minkyu, > > On Tue, Jun 24, 2014 at 3:36 AM, Minkyu Kang wrote: >> On 17/06/14 18:06, Ajay Kumar wrote: >>> 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 MU

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

2014-06-24 Thread Ajay kumar
On Tue, Jun 24, 2014 at 7:36 AM, Minkyu Kang wrote: > On 24/06/14 20:28, Ajay kumar wrote: >> Hi Minkyu, >> >> On Tue, Jun 24, 2014 at 3:36 AM, Minkyu Kang wrote: >>> On 17/06/14 18:06, Ajay Kumar wrote: Add get_lcd_clk and set_lcd_clk callbacks for Exynos5420 needed by exynos video dri

Re: [U-Boot] [PATCH 3/4] mx6: clock: Do not enable sata and ipu clocks

2014-06-24 Thread Stefano Babic
Hi Fabio, On 20/06/2014 20:56, Fabio Estevam wrote: > Actually the problems here are build time issues: > > 1) MXC_CCM_CCGR5_SATA_MASK field does not exist for mx6sx (it is a > reserved field) > > 2) MXC_CCM_CCGR3_IPU1_IPU_MASK does not exist for mx6sx (it is a reserved > field) > > So that's

Re: [U-Boot] [PATCH 2/4] mx6sx: Add pin definitions

2014-06-24 Thread Stefano Babic
Hi Fabio, On 20/06/2014 20:58, Fabio Estevam wrote: > Hi Stefano, > > On Tue, Jun 17, 2014 at 3:59 PM, Eric Nelson > wrote: > >>> Previously, we had IOMUX_PAD, I know. Is there any special reason we >>> cannot use MX6_PAD_DECL even for this new SOC ? I will not want to go >>> back ignoring a lo

Re: [U-Boot] [PATCH v3] mx6: add support of multi-processor command

2014-06-24 Thread Stefano Babic
Hi Gabriel, On 22/06/2014 18:56, Gabriel Huau wrote: > This allows u-boot to load different OS or Bare Metal application on the > different cores of the i.MX6DQ. > For example: we can run Android on cpu0 and a RT OS like QNX/FreeRTOS on cpu1. > > Signed-off-by: Gabriel Huau > --- > Changes for v

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

2014-06-24 Thread Masahiro Yamada
Hi Jeroen, On Thu, 12 Jun 2014 23:40:54 +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 I think Linu

Re: [U-Boot] [PATCH] mx6: gpio: read data register if direction is out

2014-06-24 Thread Stefano Babic
Hi Klaus, On 23/06/2014 08:35, Klaus Goger wrote: > On i.MX6 GPIOx_PSR does not reflect the current output value if the > direction is set to output. Instead we should read GPIOx_DR. > This conflicts with commit : commit 5dafa4543c399d329c7b01df1afa98437861cac0 Author: Benoît Thébaudeau Date:

Re: [U-Boot] [PATCH] mx6: gpio: read data register if direction is out

2014-06-24 Thread Fabio Estevam
On Tue, Jun 24, 2014 at 10:07 AM, Stefano Babic wrote: > What you are describing looks an issue in your pinmux configuration > because you do not set the SION bit, as requested to read back the value > of the GPIO from the Pad Register. Yes, correct. Klaus, please check this commit: commit 777

[U-Boot] [U-boot] [Patch v3 1/3] mtd: nand: davinci: allow to change ecclayout by ecclayout command

2014-06-24 Thread Ivan Khoronzhuk
From: WingMan Kwok This patch adds opportunity to change ecclayout of current nand device during runtime. So we can change the current nand device ecclayout using the "nand ecclayout set" command before writing the data to nand flash. Signed-off-by: Hao Zhang Signed-off-by: WingMan Kwok Signed

[U-Boot] [U-boot] [Patch v3 2/3] common: cmd_nand: add nand ecclayout command

2014-06-24 Thread Ivan Khoronzhuk
From: WingMan Kwok This commit adds a nand ecclayout command that allows the ecclayout of the current nand device to be changed during run time. This feature is useful when using u-boot to write something to nand flash that will be read by other applications, such as ROM bootloader, that expects

[U-Boot] [U-boot] [Patch v3 3/3] k2hk: change default nand ecc layout

2014-06-24 Thread Ivan Khoronzhuk
For keystyone k2hk board the default nand layout is different from davinci. So swich ecc layout at init in board file. Signed-off-by: Ivan Khoronzhuk --- board/ti/k2hk_evm/board.c | 11 +++ 1 file changed, 11 insertions(+) diff --git a/board/ti/k2hk_evm/board.c b/board/ti/k2hk_evm/board

[U-Boot] [U-boot] [Patch v3 0/3] keystone: nand: add additional nand ecclayout

2014-06-24 Thread Ivan Khoronzhuk
For keystyone k2hk board the default nand layout is different from davinci. So swich ecc layout at init in board file. To do this the series adds a nand ecclayout command to davinci nand that allows the ecclayout of the current nand device to be changed during run time. This feature is useful when

Re: [U-Boot] [Patch v2 1/1] driver/ddr: Fix DDR4 driver for ARM

2014-06-24 Thread Jon Loeliger
On Mon, Jun 23, 2014 at 5:36 PM, York Sun wrote: > Previously the driver was only tested on Power SoCs. Different barrier > instructions are needed for ARM SoCs. > > Signed-off-by: York Sun > --- > Change log > v2: use mb() and isb() instead of #ifdef Excellent. Thanks! jdl __

Re: [U-Boot] [PATCH v2 2/2] README: document the CONFIG_ENV_IS_IN_FAT option

2014-06-24 Thread Jon Loeliger
On Tue, Jun 24, 2014 at 4:47 AM, Josh Wu wrote: >> Josh, >> >> Any chance you want to patch the lack of CONFIG_ENV_IS_IN_SPI_FLASH >> documentation while you are in the area? :-) > > I think it's no problem ;-) > I will do a patch for SPI_FLASH. > > Best Regards, > Josh Wu Awesome! Thanks, jdl

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

2014-06-24 Thread Vivek Gautam
Hi Marek, It's been very long since we had discussion for introducing the wrapper layer to enable using multiple usb controller types. Its been unfortunate that i had been busy with other tasks, and couldn't look into this. Now that i got sometime, i have prepared a simple RFC patch which right no

[U-Boot] [PATCH 1/2] usb: Rename usb_submit_int_msg() API to usb_int_msg()

2014-06-24 Thread Vivek Gautam
Until yet usb_**_msg() APIs don't contain the string 'submit'. Rename it to make things uniform. This is also helping while adding a host translational layer wherein we are using usb_submit_**_msg string to name APIs. Signed-off-by: Vivek Gautam --- common/usb.c |4 ++-- common/usb_k

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

2014-06-24 Thread Marek Vasut
On Tuesday, June 24, 2014 at 04:10:20 PM, Vivek Gautam wrote: > Hi Marek, > > It's been very long since we had discussion for introducing the wrapper > layer to enable using multiple usb controller types. > Its been unfortunate that i had been busy with other tasks, and couldn't > look into this.

[U-Boot] [PATCH 2/2] RFC: usb: host: Introduce host translational layer

2014-06-24 Thread Vivek Gautam
Introduce a wrapper layer to translate submit_**_msg() APIs as well as usb_lowlevel_**() APIs so as to enable using mutiple controller types viz. OHCI/EHCI/XHCI. This is still WIP, with support for APIs translation for EHCI and XHCI only. Signed-off-by: Vivek Gautam --- common/usb.c

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

2014-06-24 Thread Tom Rini
On Tue, Jun 24, 2014 at 08:58:46AM +0200, Marek Vasut wrote: > On Tuesday, June 24, 2014 at 06:48:27 AM, Heiko Schocher wrote: > > Hello Tom, > > > > Am 23.06.2014 17:05, schrieb Tom Rini: > > > On Sun, Jun 22, 2014 at 09:36:43AM +0200, Wolfgang Denk wrote: > > >> Dear Heiko, > > >> > > >> In mes

Re: [U-Boot] [PATCH] mx6: gpio: read data register if direction is out

2014-06-24 Thread Klaus Goger
On Jun 24, 2014, at 3:13 PM, Fabio Estevam wrote: > On Tue, Jun 24, 2014 at 10:07 AM, Stefano Babic wrote: > >> What you are describing looks an issue in your pinmux configuration >> because you do not set the SION bit, as requested to read back the value >> of the GPIO from the Pad Register. >

Re: [U-Boot] [PATCH v2 2/2] usb: phy: omap_usb_phy: implement usb_phy_power() for AM437x

2014-06-24 Thread Michael Trimarchi
Hi Add USB custodian Il 24/giu/2014 00:18 "Felipe Balbi" ha scritto: > > Newer AM437x silicon requires us to explicitly power up > the USB2 PHY. By implementing usb_phy_power() we can > achieve that. > > Signed-off-by: Felipe Balbi > --- > > Changes since v1: > - add macros for USB1_CTR

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

2014-06-24 Thread Tom Rini
On Tue, Jun 24, 2014 at 06:48:27AM +0200, Heiko Schocher wrote: > Hello Tom, > > Am 23.06.2014 17:05, schrieb Tom Rini: > >On Sun, Jun 22, 2014 at 09:36:43AM +0200, Wolfgang Denk wrote: > >>Dear Heiko, > >> > >>In message<53a67ed9.2090...@denx.de> you wrote: > >>> > >>>And I have no chance to det

Re: [U-Boot] [PATCH 3/4] mx6: clock: Do not enable sata and ipu clocks

2014-06-24 Thread Fabio Estevam
Hi Stefano, On Tue, Jun 24, 2014 at 9:37 AM, Stefano Babic wrote: > Hi Fabio, > > On 20/06/2014 20:56, Fabio Estevam wrote: >> Actually the problems here are build time issues: >> >> 1) MXC_CCM_CCGR5_SATA_MASK field does not exist for mx6sx (it is a >> reserved field) >> >> 2) MXC_CCM_CCGR3_IPU1_

Re: [U-Boot] [U-Boot, v2] boards.cfg: move many unmaintained boards to Orphan

2014-06-24 Thread Tom Rini
On Tue, Jun 24, 2014 at 01:13:06AM -0400, Sinan Akman wrote: > > Hi Masahiro > > Masahiro Yamada wrote: > >Hi Sinan, > > > > > [...] > +Orphan powerpc mpc83xx- freescale > >>mpc837xerdb MPC837XERDB > >> > >> I have this board and I would very much like

Re: [U-Boot] Please pull u-boot-dm.git branch master

2014-06-24 Thread Tom Rini
On Mon, Jun 23, 2014 at 03:34:43PM -0600, Simon Glass wrote: > [this didn't appear in patchwork I think, so trying again] > > Hi Tom, > > Here are two that were left behind. > > > The following changes since commit 39b6d07fd7e692736cdb05a000b1c84ab43de4fb: > > Merge branch 'master' of git://

Re: [U-Boot] Please pull u-boot-x86.git branch sandbox

2014-06-24 Thread Tom Rini
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 06/23/2014 05:43 PM, Simon Glass wrote: > Hi Tom, > > Here are some sandbox bug fixes and one for x86. > > > The following changes since commit 038380597bc9b97378da2e18355cd7346d17b002: > > mpc8313: add CONFIG_SYS_GENERIC_BOARD to ids8313 boar

Re: [U-Boot] [PULL] u-boot-atmel/master -> u-boot-arm/master

2014-06-24 Thread Albert ARIBAUD
Hi Andreas, On Sat, 14 Jun 2014 18:19:26 +0200, Andreas Bießmann wrote: > Dear Albert Aribaud, > > please pull these changes from u-boot-atmel/master into > u-boot-arm/master. > > This request contains one avr32 related patch which is required to get the > macb change compile clean. Therefore

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

2014-06-24 Thread Scott Wood
On Sun, 2014-06-22 at 08:59 +0200, Heiko Schocher wrote: > Ok, did a "git diff v3.7.1..v3.14 ..." for drivers/mtd/nand and > drivers/mtd/mtd*.{c,h} and applied it with "git am -3 ..." after > fetching the Linux tree into my U-boot repository ... this > command worked now nice ... but there are subt

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

2014-06-24 Thread Jeroen Hofstee
Hi Masahiro, On 24-06-14 14:53, Masahiro Yamada wrote: On Thu, 12 Jun 2014 23:40:54 +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-o

Re: [U-Boot] [U-Boot, v8] nand/denali: Adding Denali NAND driver support

2014-06-24 Thread Scott Wood
On Tue, 2014-06-24 at 19:24 +0900, Masahiro Yamada wrote: > Hi Chin, Scott, > > > On Thu, 19 Jun 2014 20:39:20 -0500 > Scott Wood wrote: > > > I see that this driver exists in Linux... Is this patch related to a > > particular Linux SHA1? > > If so, should it be described in git-log or the he

Re: [U-Boot] [PATCH] patman: Only apply patches when we know the original HEAD

2014-06-24 Thread Doug Anderson
Hi, On Tue, Jun 24, 2014 at 3:24 AM, Masahiro Yamada wrote: > OK. It seems better to check. > > I added some patches which include whitespace errors > and ran Patman. > > It looks like nothing changes with/without -a option. > > > $ tools/patman/patman -a -c 3 > 1 warnings for 0002-arm-commit-2.p

[U-Boot] [PATCH v5 1/4] mx6: Add support for the mx6solox variant

2014-06-24 Thread Fabio Estevam
From: Fabio Estevam mx6solox is the newest member of the mx6 family. Some of the new features on this variants are: - Cortex M4 microcontroller (besides the CortexA9) - Dual Gigabit Ethernet Add the initial support for it. Signed-off-by: Fabio Estevam --- Changes since v4: - Go back to ifdef

[U-Boot] [PATCH v5 4/4] mx6sx: Add initial support for mx6sxsabresd board

2014-06-24 Thread Fabio Estevam
From: Fabio Estevam Signed-off-by: Fabio Estevam --- Changes since v4: - None Changes since v3: - None Changes since v2: - Adjust CONFIG_LOADADDR Changes since v1: - Previous commit log belonged to 1/4 patch, so moved it to the correct patch board/freescale/mx6sxsabresd/Makefile | 6 +

[U-Boot] [PATCH v5 3/4] mx6: clock: Do not enable sata and ipu clocks

2014-06-24 Thread Fabio Estevam
From: Fabio Estevam mx6sx does not have sata nor ipu blocks, so do not handle such clocks. Signed-off-by: Fabio Estevam --- Changes since v4: - None Changes since v3: - None Changes since v2: - None Changes since v1: - None arch/arm/cpu/armv7/mx6/clock.c | 8 1 file changed, 8 insert

Re: [U-Boot] [U-boot] [Patch v2 3/3] k2hk: change default nand ecc layout

2014-06-24 Thread Scott Wood
On Mon, 2014-06-23 at 18:26 +0300, Ivan Khoronzhuk wrote: > On 06/21/2014 02:40 AM, Scott Wood wrote: > > On Sat, 2014-06-21 at 02:28 +0300, Ivan Khoronzhuk wrote: > >> For keystyone k2hk board the default nand layout is different > >> from davinci. So swich ecc layout at init in board file. > >> >

Re: [U-Boot] [U-boot] [Patch v3 3/3] k2hk: change default nand ecc layout

2014-06-24 Thread Scott Wood
On Tue, 2014-06-24 at 16:49 +0300, Ivan Khoronzhuk wrote: > For keystyone k2hk board the default nand layout is different > from davinci. So swich ecc layout at init in board file. > > Signed-off-by: Ivan Khoronzhuk > --- > board/ti/k2hk_evm/board.c | 11 +++ > 1 file changed, 11 inserti

Re: [U-Boot] [PATCH] patman: Only apply patches when we know the original HEAD

2014-06-24 Thread Simon Glass
Hi, On 24 June 2014 14:40, Doug Anderson wrote: > > Hi, > > On Tue, Jun 24, 2014 at 3:24 AM, Masahiro Yamada > wrote: > > OK. It seems better to check. > > > > I added some patches which include whitespace errors > > and ran Patman. > > > > It looks like nothing changes with/without -a option. >

Re: [U-Boot] [PATCH v3] mx6: add support of multi-processor command

2014-06-24 Thread gabriel huau
Hi Stefano, On 06/24/2014 05:50 AM, Stefano Babic wrote: Hi Gabriel, On 22/06/2014 18:56, Gabriel Huau wrote: This allows u-boot to load different OS or Bare Metal application on the different cores of the i.MX6DQ. For example: we can run Android on cpu0 and a RT OS like QNX/FreeRTOS on cpu1.

[U-Boot] [PATCH v4] mx6: add support of multi-processor command

2014-06-24 Thread Gabriel Huau
This allows u-boot to load different OS or Bare Metal application on the different cores of the i.MX6DQ. For example: we can run Android on cpu0 and a RT OS like QNX/FreeRTOS on cpu1. Signed-off-by: Gabriel Huau --- Changes for v2: - Add a commit log message to explain the purpose of this

[U-Boot] [PATCH] powerpc/mpc85xx: Check return value of find_tlb_idx

2014-06-24 Thread York Sun
find_tlb_idx() is called in board_early_init_r() on multiple boards. The return value is not checked before being used to disable a TLB. In normal case the return value wouldn't be -1. In case of a mis- configuration during porting to a new board, checking the return value may be helpful to reveal

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

2014-06-24 Thread Heiko Schocher
Hello Tom, Am 24.06.2014 16:39, schrieb Tom Rini: On Tue, Jun 24, 2014 at 06:48:27AM +0200, Heiko Schocher wrote: Hello Tom, Am 23.06.2014 17:05, schrieb Tom Rini: On Sun, Jun 22, 2014 at 09:36:43AM +0200, Wolfgang Denk wrote: Dear Heiko, In message<53a67ed9.2090...@denx.de> you wrote: [

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

2014-06-24 Thread Heiko Schocher
Hello Scott, Am 24.06.2014 21:19, schrieb Scott Wood: On Sun, 2014-06-22 at 08:59 +0200, Heiko Schocher wrote: Ok, did a "git diff v3.7.1..v3.14 ..." for drivers/mtd/nand and drivers/mtd/mtd*.{c,h} and applied it with "git am -3 ..." after fetching the Linux tree into my U-boot repository ... t

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

2014-06-24 Thread Vivek Gautam
Hi Marek, On Tue, Jun 24, 2014 at 7:56 PM, Marek Vasut wrote: > On Tuesday, June 24, 2014 at 04:10:20 PM, Vivek Gautam wrote: >> Hi Marek, >> >> It's been very long since we had discussion for introducing the wrapper >> layer to enable using multiple usb controller types. >> Its been unfortunate

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

2014-06-24 Thread Marek Vasut
On Wednesday, June 25, 2014 at 07:11:42 AM, Vivek Gautam wrote: > Hi Marek, > > On Tue, Jun 24, 2014 at 7:56 PM, Marek Vasut wrote: > > On Tuesday, June 24, 2014 at 04:10:20 PM, Vivek Gautam wrote: > >> Hi Marek, > >> > >> It's been very long since we had discussion for introducing the wrapper >

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

2014-06-24 Thread Simon Glass
Hi, On Jun 25, 2014 12:08 AM, "Marek Vasut" wrote: > > On Wednesday, June 25, 2014 at 07:11:42 AM, Vivek Gautam wrote: > > Hi Marek, > > > > On Tue, Jun 24, 2014 at 7:56 PM, Marek Vasut wrote: > > > On Tuesday, June 24, 2014 at 04:10:20 PM, Vivek Gautam wrote: > > >> Hi Marek, > > >> > > >> It's