Re: [U-Boot] [PATCH 1/1] USB: EHCI: Initialize multiple USB controllers at once

2012-06-26 Thread Wolfgang Denk
Dear Jim Lin, sending the very same message eight (8!) times doesnot make it a bit more convincing - on contrary. In message <4b9c9637d5087840a465bdcb251780e9e2d6eda...@hkmail02.nvidia.com> you wrote: > > > U-Boot is not multi-tasking, so you can always access only a single > > USB device at a t

Re: [U-Boot] [PATCH] arm: rmobile: Add supoprt for KMC KZM-A9-GT board

2012-06-26 Thread Wolfgang Denk
Dear Nobuhiro Iwamatsu, In message you wrote: > ... > >> --- /dev/null > >> +++ b/board/kmc/kzm/lowlevel_init.S ... > >> + and_write32 LIFEC_SEC_SRC, 0xFFE7 > >> + > >> + and_write32 SRCR3, 0x7FFF > >> + and_write32 SMSTPCR2,0xFFFB > >> + and_write32

Re: [U-Boot] where is rootfs??

2012-06-26 Thread Dawid Partyka - Safe-lock.net
Hello thanks for respond. This method not woking good :( Do you have enything sugestion to modify rootfs files?? I find with vmlinux package gzip. In the gzip write files with rootfs. I don't now what I must do to rebuilit this vmlinux :/ Please help ___

Re: [U-Boot] [PATCH] Davinci: Utility for MMC boot

2012-06-26 Thread Lad, Prabhakar
Hi Wolfgang, On Wed, Jun 27, 2012 at 03:12:07, Wolfgang Denk wrote: > Dear Prabhakar Lad, > > In message <1340708826-26707-1-git-send-email-prabhakar@ti.com> you wrote: > > From: Alagu Sankar > > > > This is a Linux command line tool specific to TI's Davinci platforms, for > > flashing UBL

Re: [U-Boot] [PATCH v2 0/19] tegra: Add display driver and LCD support for Seaboard

2012-06-26 Thread Simon Glass
Hi Tom, On Mon, Jun 25, 2012 at 2:03 PM, Tom Warren wrote: > Simon, > > > -Original Message- > > From: Stephen Warren [mailto:swar...@wwwdotorg.org] > > Sent: Wednesday, June 13, 2012 3:58 PM > > To: Simon Glass > > Cc: U-Boot Mailing List; Tom Warren > > Subject: Re: [PATCH v2 0/19] teg

Re: [U-Boot] [RFC][PATCH] net: nfs: extend NFS_TIMEOUT

2012-06-26 Thread Tetsuyuki Kobayashi
Hi Joe, Thank you for responding. (2012/06/27 0:30), Joe Hershberger wrote: On Tue, Jun 26, 2012 at 3:52 AM, Wolfgang Denk wrote: Dear Tetsuyuki Kobayashi, In message<4fe9711a.2090...@kmckk.co.jp> you wrote: Are you sure the problems are not in the board specific code? OK. I will try th

[U-Boot] [PATCH 4/4] net: sh_eth: add support for SH7757's GETHER

2012-06-26 Thread Shimoda, Yoshihiro
SH7757 has 2 ETHERs and 2 GETHERs. This patch supports the SH7757's GETHER. If CONFIG_SH_ETHER_USE_GETHER is defined using SH7757, the driver handles the GETHER. Signed-off-by: Yoshihiro Shimoda --- drivers/net/sh_eth.h |9 + 1 files changed, 9 insertions(+), 0 deletions(-) diff --g

[U-Boot] [PATCH 3/4] net: sh_eth: modify the definitions of regsiter

2012-06-26 Thread Shimoda, Yoshihiro
The previous code had many similar definitions in each CPU. This patch borrows from the sh_eth driver of Linux kernel. Signed-off-by: Yoshihiro Shimoda --- drivers/net/sh_eth.c | 108 - drivers/net/sh_eth.h | 331 +++--- 2 files chan

[U-Boot] [PATCH 2/4] net: sh_eth: add SH_ETH_TYPE_ condition

2012-06-26 Thread Shimoda, Yoshihiro
At the moment, the driver supports the following CPUs: - GETHER (Gigabit Ethernet) : SH7763, SH7734 - ETHER (Fast Ethernet): SH7724, SH7757 And the driver had the following "#if": #if defined(CONFIG_CPU_SH7763) || defined(CONFIG_CPU_SH7734) #if !defined(CONFIG_CPU_SH7757) && !defined(CON

[U-Boot] [PATCH 1/4] net: sh_eth: clean up for the SH7757's code

2012-06-26 Thread Shimoda, Yoshihiro
The SH7757's ETHER can work using the SH7724's setting. So, the patch modifies it. Signed-off-by: Yoshihiro Shimoda --- drivers/net/sh_eth.c |9 + drivers/net/sh_eth.h | 14 ++ 2 files changed, 3 insertions(+), 20 deletions(-) diff --git a/drivers/net/sh_eth.c b/driver

Re: [U-Boot] [PATCH 2/2] rbpi: Add BCM2835 GPIO driver for raspberry pi

2012-06-26 Thread Stephen Warren
On 06/24/2012 11:22 AM, Vikram Narayanan wrote: > > Add the driver to the rpi_b's default config It looks like there's a blank line before the patch description there. Aside from that and the nit below, Acked-by: Stephen Warren > diff --git a/include/configs/rpi_b.h b/include/configs/rpi_b.h

Re: [U-Boot] [PATCH 1/2] bcm: Add GPIO driver for BCM2835 SoC

2012-06-26 Thread Stephen Warren
On 06/24/2012 11:21 AM, Vikram Narayanan wrote: First off, it's great to see some patches for the chip. Thanks. Sorry for being so nit-picky below; it's a tendency of mine... It'd be nice to include a patch description here, so that something shows up besides just the patch subject. > diff --git

Re: [U-Boot] [PATCH] arm: rmobile: Add supoprt for KMC KZM-A9-GT board

2012-06-26 Thread Nobuhiro Iwamatsu
Hi, Albert. Thank you for your review. 2012/6/26 Albert ARIBAUD : > Hi Nobuhiro, > > On Thu, 21 Jun 2012 15:23:39 +0900, > Nobuhiro Iwamatsu wrote : > >> The KZM-A9-GT board has Renesas R-Mobile SH73A0, 512MB DDR2-SDRAM, >> USB, Ethernet, and more. >> >> This patch supports the following functio

[U-Boot] [PATCH 1/3] microblaze: remove wrong define CONFIG_SYS_FLASH_PROTECTION

2012-06-26 Thread Stephan Linz
CONFIG_SYS_FLASH_PROTECTION will defined twice. The second one is outside the flash configuration context and we can remove it safely. Signed-off-by: Stephan Linz --- include/configs/microblaze-generic.h |2 -- 1 files changed, 0 insertions(+), 2 deletions(-) diff --git a/include/configs/mi

[U-Boot] [PATCH 2/3] microblaze: avoid compile error on systems without cfi flash

2012-06-26 Thread Stephan Linz
Use XILINX_FLASH_START to set/unset FLASH and RAMENV. Error was: board.c: In function 'board_init': board.c:134: error: 'XILINX_FLASH_START' undeclared (first use in this function) board.c:134: error: (Each undeclared identifier is reported only once board.c:134: error: for each function it appear

[U-Boot] [PATCH 3/3] microblaze: Enable ubi support

2012-06-26 Thread Stephan Linz
Increase malloc area for UBI to >= 512k -- foreseeing of UBIFS set to 768k. To save memory in flash (CONFIG_SYS_MONITOR_LEN) the UBIFS is disabled by default. Signed-off-by: Stephan Linz --- include/configs/microblaze-generic.h | 20 ++-- 1 files changed, 18 insertions(+), 2 de

Re: [U-Boot] [PATCH] Davinci: Utility for MMC boot

2012-06-26 Thread Wolfgang Denk
Dear Prabhakar Lad, In message <1340708826-26707-1-git-send-email-prabhakar@ti.com> you wrote: > From: Alagu Sankar > > This is a Linux command line tool specific to TI's Davinci platforms, for > flashing UBL (User Boot Loader), u-boot and u-boot Environment in the MMC/SD > card. This MMC/SD

Re: [U-Boot] [PATCH 1/1] USB: EHCI: Initialize multiple USB controllers at once

2012-06-26 Thread Wolfgang Denk
Dear Jim Lin, In message <4b9c9637d5087840a465bdcb251780e9e2d6eda...@hkmail02.nvidia.com> you wrote: > Add support for command line "usb reset" or "usb start" to initialize > , "usb stop" to stop multiple USB controllers at once. > Other commands like "usb tree" also support multiple controllers.

Re: [U-Boot] [PATCH] arm: rmobile: kzm9g: Adjust hardware setting in lowlevel_init.S

2012-06-26 Thread Albert ARIBAUD
Hi Tetsuyuki, On Tue, 26 Jun 2012 11:30:16 +0900, Tetsuyuki Kobayashi wrote: > This patch depends on > Nobuhiro Iwamatsu's arm: rmobile: Add supoprt for KMC KZM-A9-GT board > Tetsuyuki Kobayashi's arm: rmobile: kzm9g: Modify sdram area Seems like a series to me -- you should post it as such,

Re: [U-Boot] [PATCH] arm: enable unaligned access on ARMv7

2012-06-26 Thread Rob Herring
On 06/22/2012 04:15 AM, Albert ARIBAUD wrote: > Hi Lucas, > > On Tue, 05 Jun 2012 21:06:20 +0200, Lucas Stach wrote: >> Hi Stephen, >> >> Am Dienstag, den 05.06.2012, 12:42 -0600 schrieb Stephen Warren: >>> On 06/05/2012 11:47 AM, Lucas Stach wrote: Recent toolchains default to using the har

Re: [U-Boot] [PATCH 6/9] CACHE: nand read/write: Test if start address is aligned

2012-06-26 Thread Marek Vasut
Dear Scott Wood, > On 06/25/2012 08:33 PM, Marek Vasut wrote: > > Dear Scott Wood, > > > >> On 06/25/2012 06:37 PM, Marek Vasut wrote: > >>> Dear Scott Wood, > >>> > On 06/24/2012 07:17 PM, Marek Vasut wrote: > > but that involves a lot of copying and therefore degrades performance > >>

Re: [U-Boot] [PATCH 6/9] CACHE: nand read/write: Test if start address is aligned

2012-06-26 Thread Scott Wood
On 06/25/2012 08:16 PM, Marek Vasut wrote: > Dear Scott Wood, >> Note that in the case of "nand read.oob", depending on NAND page size >> and platform, there's a good chance that you're imposing an alignment >> restriction that is larger than the data being transferred even if the >> user asks to r

Re: [U-Boot] [PATCH 6/9] CACHE: nand read/write: Test if start address is aligned

2012-06-26 Thread Scott Wood
On 06/25/2012 08:33 PM, Marek Vasut wrote: > Dear Scott Wood, > >> On 06/25/2012 06:37 PM, Marek Vasut wrote: >>> Dear Scott Wood, >>> On 06/24/2012 07:17 PM, Marek Vasut wrote: > but that involves a lot of copying and therefore degrades performance > rapidly. Therefore disallow this

[U-Boot] [PATCH 2/2] Kirkwood: Add support for Ka-Ro TK71

2012-06-26 Thread Marek Vasut
Signed-off-by: Marek Vasut Cc: Prafulla Wadaskar Cc: Wolfgang Denk --- board/karo/tk71/Makefile | 45 +++ board/karo/tk71/kwbimage.cfg | 174 ++ board/karo/tk71/tk71.c | 174 ++ boards.cfg

[U-Boot] [PATCH 1/2] KW: Move the memory register definitions into kirkwood.h

2012-06-26 Thread Marek Vasut
Also add the CPUCS register definition. Signed-off-by: Marek Vasut Cc: Prafulla Wadaskar Cc: Wolfgang Denk --- arch/arm/cpu/arm926ejs/kirkwood/dram.c|2 -- arch/arm/include/asm/arch-kirkwood/kirkwood.h |9 + 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a

Re: [U-Boot] [RFC][PATCH] net: nfs: extend NFS_TIMEOUT

2012-06-26 Thread Joe Hershberger
Hi Scott, On Tue, Jun 26, 2012 at 1:34 PM, Scott Wood wrote: > On 06/26/2012 10:30 AM, Joe Hershberger wrote: >> Hi Tetsuyuki, >> >> On Tue, Jun 26, 2012 at 3:52 AM, Wolfgang Denk wrote: >>> Dear Tetsuyuki Kobayashi, >>> >>> In message <4fe9711a.2090...@kmckk.co.jp> you wrote: >> Are yo

Re: [U-Boot] [RFC][PATCH] net: nfs: extend NFS_TIMEOUT

2012-06-26 Thread Scott Wood
On 06/26/2012 10:30 AM, Joe Hershberger wrote: > Hi Tetsuyuki, > > On Tue, Jun 26, 2012 at 3:52 AM, Wolfgang Denk wrote: >> Dear Tetsuyuki Kobayashi, >> >> In message <4fe9711a.2090...@kmckk.co.jp> you wrote: >>> > Are you sure the problems are not in the board specific code? OK. I will

Re: [U-Boot] [PATCH] net/sh-ether: Fix build by removing ECSIPR_BRCRXIP and other

2012-06-26 Thread Joe Hershberger
On Tue, Jun 26, 2012 at 1:03 PM, Joe Hershberger wrote: > Hi Nobuhiro Iwamatsu, > > On Mon, Jun 25, 2012 at 11:18 PM, Nobuhiro Iwamatsu > wrote: >> Hi, >> >> Joe, could you pick-up ths patch to your network repository? >> This is bug fix to 201207. > > Yes. Applied, thanks. -Joe ___

Re: [U-Boot] [PATCH] net/sh-ether: Fix build by removing ECSIPR_BRCRXIP and other

2012-06-26 Thread Joe Hershberger
Hi Nobuhiro Iwamatsu, On Mon, Jun 25, 2012 at 11:18 PM, Nobuhiro Iwamatsu wrote: > Hi, > > Joe, could you pick-up ths patch to your network repository? > This is bug fix to 201207. Yes. -Joe ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.de

Re: [U-Boot] [PATCH 1/2] microblaze: avoid compile error on systems without cfi flash

2012-06-26 Thread Stephan Linz
Am Dienstag, den 26.06.2012, 10:56 +0200 schrieb Michal Simek: > 2012/6/25 Stephan Linz : > > Am Montag, den 25.06.2012, 06:55 +0200 schrieb Michal Simek: > >> On 06/21/2012 09:42 PM, Stephan Linz wrote: > >> > Use XILINX_FLASH_START to set/unset FLASH and RAMENV. > >> > > >> > Error was: > >> > b

Re: [U-Boot] [PATCH 2/2] microblaze: Enable ubi support

2012-06-26 Thread Stephan Linz
Am Dienstag, den 26.06.2012, 10:52 +0200 schrieb Michal Simek: > 2012/6/25 Stephan Linz : > > Am Montag, den 25.06.2012, 09:22 +0200 schrieb Wolfgang Denk: > >> Dear Michal Simek, > >> > >> In message <4fe7f154.80...@monstr.eu> you wrote: > >> > On 06/21/2012 09:42 PM, Stephan Linz wrote: > >> > >

Re: [U-Boot] [PATCH] arm: bugfix: Move vector table before jumping relocated code

2012-06-26 Thread Stephen Warren
On 06/25/2012 07:03 PM, Tetsuyuki Kobayashi wrote: > Hello, > > (06/26/2012 12:10 AM), Stephen Warren wrote: >> On 06/25/2012 06:40 AM, Tetsuyuki Kobayashi wrote: >>> Interrupts and exceptions doesn't work in relocated code. >>> It badly use IRQ_STACK_START_IN in rom area as interrupt stack. >>> I

[U-Boot] [PATCH v3 09/14] arm/km: add support for external switch configuration

2012-06-26 Thread Valentin Longchamp
This patch add support for the configuration of an external switch from the 88E6xxx series from Marvell trough an MDIO link using indirect adressing. This can be used if we do not want to use an EEPROM for the configuration. This driver is not generic and was not tested on a lot of switches, that'

Re: [U-Boot] [RFC][PATCH] net: nfs: extend NFS_TIMEOUT

2012-06-26 Thread Joe Hershberger
Hi Tetsuyuki, On Tue, Jun 26, 2012 at 3:52 AM, Wolfgang Denk wrote: > Dear Tetsuyuki Kobayashi, > > In message <4fe9711a.2090...@kmckk.co.jp> you wrote: >> >> >> Are you sure the problems are not in the board specific code? >> > OK. I will try the same thing on an in-tree board (maybe, panda boar

Re: [U-Boot] [PATCH 3/3] Kirkwood: Add support for Ka-Ro TK71

2012-06-26 Thread Prafulla Wadaskar
> -Original Message- > From: Marek Vasut [mailto:ma...@denx.de] > Sent: 26 June 2012 18:15 > To: Prafulla Wadaskar > Cc: u-boot@lists.denx.de; Wolfgang Denk > Subject: Re: [PATCH 3/3] Kirkwood: Add support for Ka-Ro TK71 > > Dear Prafulla Wadaskar, > > > > -Original Message- > >

Re: [U-Boot] [PATCH 2/3] KW: Add kw_adjust_dram() weak function

2012-06-26 Thread Prafulla Wadaskar
> -Original Message- > From: Marek Vasut [mailto:ma...@denx.de] > Sent: 26 June 2012 18:18 > To: Prafulla Wadaskar > Cc: u-boot@lists.denx.de; Wolfgang Denk > Subject: Re: [PATCH 2/3] KW: Add kw_adjust_dram() weak function > > Dear Prafulla Wadaskar, > > > > -Original Message- >

Re: [U-Boot] [PATCH 2/3] KW: Add kw_adjust_dram() weak function

2012-06-26 Thread Marek Vasut
Dear Prafulla Wadaskar, > > -Original Message- > > From: Marek Vasut [mailto:ma...@denx.de] > > Sent: 26 June 2012 17:45 > > To: u-boot@lists.denx.de > > Cc: Marek Vasut; Prafulla Wadaskar; Wolfgang Denk > > Subject: [PATCH 2/3] KW: Add kw_adjust_dram() weak function > > > > This function

Re: [U-Boot] [PATCH 3/3] Kirkwood: Add support for Ka-Ro TK71

2012-06-26 Thread Marek Vasut
Dear Prafulla Wadaskar, > > -Original Message- > > From: Marek Vasut [mailto:ma...@denx.de] > > Sent: 26 June 2012 17:45 > > To: u-boot@lists.denx.de > > Cc: Marek Vasut; Prafulla Wadaskar; Wolfgang Denk > > Subject: [PATCH 3/3] Kirkwood: Add support for Ka-Ro TK71 > > > > Signed-off-by:

Re: [U-Boot] [PATCH 3/3] Kirkwood: Add support for Ka-Ro TK71

2012-06-26 Thread Prafulla Wadaskar
> -Original Message- > From: Marek Vasut [mailto:ma...@denx.de] > Sent: 26 June 2012 17:45 > To: u-boot@lists.denx.de > Cc: Marek Vasut; Prafulla Wadaskar; Wolfgang Denk > Subject: [PATCH 3/3] Kirkwood: Add support for Ka-Ro TK71 > > Signed-off-by: Marek Vasut > Cc: Prafulla Wadaskar >

Re: [U-Boot] [PATCH 2/3] KW: Add kw_adjust_dram() weak function

2012-06-26 Thread Prafulla Wadaskar
> -Original Message- > From: Marek Vasut [mailto:ma...@denx.de] > Sent: 26 June 2012 17:45 > To: u-boot@lists.denx.de > Cc: Marek Vasut; Prafulla Wadaskar; Wolfgang Denk > Subject: [PATCH 2/3] KW: Add kw_adjust_dram() weak function > > This function shall allow a board to adjust DRAM par

Re: [U-Boot] [Patch v2 1/2] Atmel : usb : add EHCI driver for Atmel SoC

2012-06-26 Thread Marek Vasut
Dear Bo Shen, > Some Atmel SoC support USB EHCI, add the EHCI driver to support it. > > To enable the USB EHCI, add the following configuration options into > board relative configuration file and remove USB OHCI options. > > #define CONFIG_USB_EHCI > #define CONFIG_USB_EHCI_ATMEL >

[U-Boot] [PATCH 3/3] Kirkwood: Add support for Ka-Ro TK71

2012-06-26 Thread Marek Vasut
Signed-off-by: Marek Vasut Cc: Prafulla Wadaskar Cc: Wolfgang Denk --- board/karo/tk71/Makefile | 45 +++ board/karo/tk71/kwbimage.cfg | 174 + board/karo/tk71/tk71.c | 178 ++ boards.cfg

[U-Boot] [PATCH 2/3] KW: Add kw_adjust_dram() weak function

2012-06-26 Thread Marek Vasut
This function shall allow a board to adjust DRAM parameters in case there are multiple versions of the board with different DRAM sizes. Signed-off-by: Marek Vasut Cc: Prafulla Wadaskar Cc: Wolfgang Denk --- arch/arm/cpu/arm926ejs/kirkwood/dram.c | 11 +++ 1 file changed, 11 insertion

[U-Boot] [PATCH 1/3] KW: Move the memory register definitions into kirkwood.h

2012-06-26 Thread Marek Vasut
Signed-off-by: Marek Vasut Cc: Prafulla Wadaskar Cc: Wolfgang Denk --- arch/arm/cpu/arm926ejs/kirkwood/dram.c|2 -- arch/arm/include/asm/arch-kirkwood/kirkwood.h |4 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/arch/arm/cpu/arm926ejs/kirkwood/dram.c b/arc

[U-Boot] [PATCH] Davinci: Utility for MMC boot

2012-06-26 Thread Prabhakar Lad
From: Alagu Sankar This is a Linux command line tool specific to TI's Davinci platforms, for flashing UBL (User Boot Loader), u-boot and u-boot Environment in the MMC/SD card. This MMC/SD card can be used for booting Davinci platforms that supports MMC/SD boot option. This patch was submitted by

[U-Boot] [PATCH V2 7/7] am335x_evm: enable networking in SPL

2012-06-26 Thread Ilya Yanok
This patch adds support for networking in SPL on TI AM335x based boards. CC: Tom Rini Signed-off-by: Ilya Yanok --- board/ti/am335x/evm.c| 12 include/configs/am335x_evm.h |5 - 2 files changed, 16 insertions(+), 1 deletion(-) diff --git a/board/ti/am335x/evm.c b

[U-Boot] [PATCH V2 1/7] cpsw: add driver for cpsw ethernet device

2012-06-26 Thread Ilya Yanok
From: Cyril Chemparathy CPSW is an on-chip ethernet switch that is found on various SoCs from Texas Instruments. This patch adds a simple driver (based on the Linux driver) for this hardware module. This patch also adds support to clean and flush dcache during packet send and receive. Changes

[U-Boot] [PATCH V2 5/7] am335x_evm: CPSW support

2012-06-26 Thread Ilya Yanok
From: Chandan Nath This patch adds board-specific initialization for CPSW on TI AM335X based boards. Tested on BeagleBone. CC: Tom Rini Signed-off-by: Ilya Yanok --- Changes from V1: - rebased to u-boot-ti/next board/ti/am335x/evm.c| 91 ++

[U-Boot] [PATCH V2 6/7] OMAP: networking support for SPL

2012-06-26 Thread Ilya Yanok
This patch adds support for networking in SPL. Some devices are capable of loading SPL via network so it makes sense to load the main U-Boot binary via network too. This patch tries to use existing network code as much as possible. Unfortunately, it depends on environment which in turn depends on o

[U-Boot] [PATCH V2 4/7] am335x_evm: read the on-board EEPROM

2012-06-26 Thread Ilya Yanok
Read the on-board EEPROM during startup to detect the version of the board we are running on (as for now only BeagleBone vs EVM detection is supported). CC: Tom Rini Signed-off-by: Ilya Yanok --- Changes from V1: - rebased to u-boot-ti/next board/ti/am335x/evm.c | 72 +++

[U-Boot] [PATCH V2 3/7] am33xx: pin mux defintions for CPSW switch

2012-06-26 Thread Ilya Yanok
From: Chandan Nath This patch adds pin mux settings for CPSW switch found on TI AM335X based boards (MII and RGMII modes). CC: Tom Rini Signed-off-by: Ilya Yanok --- Changes from V1: - rebased to u-boot-ti/next arch/arm/include/asm/arch-am33xx/common_def.h |2 ++ board/ti/am335x/mux.c

[U-Boot] [PATCH V2 2/7] am33xx: CPSW init and definitions

2012-06-26 Thread Ilya Yanok
From: Chandan Nath This patch adds platform-specific initialization for CPSW switch on TI AM33XX SoCs. CC: Tom Rini Signed-off-by: Ilya Yanok --- Changes from V1: - rebased to u-boot-ti/next arch/arm/cpu/armv7/am33xx/clock.c |8 +++- arch/arm/include/asm/arch-am33xx/cpu.h

[U-Boot] [PATCH V2 0/7] CPSW switch plus SPL net support

2012-06-26 Thread Ilya Yanok
These patches add CPSW switch driver and enable support for it on TI AM335x based boards. This version is rebased on top of u-boot-ti/next. Also now CPSW driver uses internal controller memory for DMA descriptors so coherent allocator is no longer a requirement for this series. The second part of

[U-Boot] [PATCH 5/6] mtd/spi: add sst25l driver

2012-06-26 Thread Mikhail Kshevetskiy
current SST driver does not support well this types of flash, so use linux-3.3 code as a base. Signed-off-by: Mikhail Kshevetskiy --- drivers/mtd/spi/Makefile |3 +- drivers/mtd/spi/spi_flash.c |3 + drivers/mtd/spi/spi_flash_internal.h |1 + drivers/mtd/spi/sst2

[U-Boot] [PATCH 6/6] MMC: u-boot-spl may be compiled without partition support

2012-06-26 Thread Mikhail Kshevetskiy
Signed-off-by: Mikhail Kshevetskiy --- drivers/mmc/mmc.c |2 ++ 1 file changed, 2 insertions(+) diff --git a/drivers/mmc/mmc.c b/drivers/mmc/mmc.c index aebe578..69df64a 100644 --- a/drivers/mmc/mmc.c +++ b/drivers/mmc/mmc.c @@ -1253,7 +1253,9 @@ int mmc_startup(struct mmc *mmc)

[U-Boot] [PATCH 2/6] arm/davinci/da850: add uart0 pinmux

2012-06-26 Thread Mikhail Kshevetskiy
Signed-off-by: Mikhail Kshevetskiy --- arch/arm/cpu/arm926ejs/davinci/da850_pinmux.c |5 + arch/arm/include/asm/arch-davinci/hardware.h|1 + arch/arm/include/asm/arch-davinci/pinmux_defs.h |1 + 3 files changed, 7 insertions(+) diff --git a/arch/arm/cpu/arm926ejs/davinci/da

[U-Boot] [PATCH 4/6] mtd/spi/spi_flash: support CMD_READ_ID=0x90 case

2012-06-26 Thread Mikhail Kshevetskiy
current code does not support spi flashes that have 0x90 read_id command, so fix this Signed-off-by: Mikhail Kshevetskiy --- drivers/mtd/spi/spi_flash.c | 66 +++--- drivers/mtd/spi/spi_flash_internal.h |1 + 2 files changed, 47 insertions(+), 20 deleti

[U-Boot] [PATCH 3/6] serial/ns16550: ns16550 has a different register layout on SOC_DA8XX

2012-06-26 Thread Mikhail Kshevetskiy
also fix NS16550_init() as we need 16x divider Signed-off-by: Mikhail Kshevetskiy --- drivers/serial/ns16550.c |2 +- include/ns16550.h|9 + 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/drivers/serial/ns16550.c b/drivers/serial/ns16550.c index 0c23955..f

[U-Boot] [PATCH 1/6] arm/davinci: fix DDR2/mDDR memory controller initialization for Omap L138

2012-06-26 Thread Mikhail Kshevetskiy
follow section 15.2.13.1 (Initializing Following Device Power Up or Reset) of OMAP-L138 DSP+ARM Processor Technical Reference Manual Signed-off-by: Mikhail Kshevetskiy --- arch/arm/cpu/arm926ejs/davinci/da850_lowlevel.c | 26 +-- arch/arm/include/asm/arch-davinci/hardware.h

Re: [U-Boot] [PATCH 1/8] arm/davinci: fix DDR2/mDDR memory controller initialization for Omap L138

2012-06-26 Thread Mikhail Kshevetskiy
On Thu, 21 Jun 2012 09:37:09 +0200 Christian Riesch wrote: > Hi Mikhail, > > On Tue, Jun 12, 2012 at 11:15 PM, Mikhail Kshevetskiy > wrote: > > follow section 15.2.13.1 (Initializing Following Device Power Up or Reset) > > of > > OMAP-L138 DSP+ARM Processor Technical Reference Manual > > Than

[U-Boot] [PATCH 1/1] USB: EHCI: Initialize multiple USB controllers at once

2012-06-26 Thread Jim Lin
Add support for command line "usb reset" or "usb start" to initialize , "usb stop" to stop multiple USB controllers at once. Other commands like "usb tree" also support multiple controllers. New added definitions to be defined in header file are: CONFIG_USB_INIT_MULTI CONFIG_USB_MAX_CONTROLLER_COU

[U-Boot] [PATCH v3 1/3] AM335x : Add USB support for AM335x in u-boot

2012-06-26 Thread Harman Sohanpal
From: Gene Zarkhin Adds USB support in uboot for AM335x. By default the USB 1 module is enabled. The support for USB 0 can be enabled by changing the USB base address and the phy control register address in the header file am335x.h. USB 1 has a full size connector so acts in host mode and USB 0 h

[U-Boot] [PATCH v3 3/3] musb_udc : Fix compile warning.

2012-06-26 Thread Harman Sohanpal
Fix the compile warning : implicit declaration of musb_platform_init when CONFIG_MUSB_UDC is defined. The extern musb_platform_init was declared in musb_hcd.h but no such extern function was declared for musb_udc. So a common function has been declared in musb_core.h which can be used for both host

[U-Boot] [PATCH v3 2/3] AM335x : Configs to add USB host support.

2012-06-26 Thread Harman Sohanpal
Adds required configs in config file for am335x_evm to add support for usb host mode. To enable USB device mode, add CONFIG_MUSB_UDC in place of CONFIG_MUSB_HCD. Tested using usbtty for device mode and mass storage for host mode. Signed-off-by: Harman Sohanpal --- Changes for v2: - #defin

[U-Boot] [PATCH v3 0/3] AM335x: Add USB support in u-boot.

2012-06-26 Thread Harman Sohanpal
These patches add USB support in u-boot for AM335x. I have tested this code on AM335x evm and beaglebone in the host mode using mass storage class. For device mode, I have tested this on beaglebone using usbtty. CONFIG_MUSB_HCD has been enabled by default to make USB work in host mode. Gene Zar

Re: [U-Boot] [PATCH v2 2/3] AM335x : Configs to add USB host support.

2012-06-26 Thread Sohanpal, Harman
> -Original Message- > From: Tom Rini [mailto:tom.r...@gmail.com] On Behalf Of Rini, Tom > Sent: Friday, June 22, 2012 9:25 PM > To: Sohanpal, Harman > Cc: u-boot@lists.denx.de; s...@denx.de > Subject: Re: [U-Boot] [PATCH v2 2/3] AM335x : Configs to add USB host > support. > > On Fri, Ju

Re: [U-Boot] [PATCH v2 1/3] AM335x : Add USB support for AM335x in u-boot

2012-06-26 Thread Sohanpal, Harman
> -Original Message- > From: Tom Rini [mailto:tom.r...@gmail.com] On Behalf Of Rini, Tom > Sent: Friday, June 22, 2012 9:34 PM > To: Sohanpal, Harman > Cc: u-boot@lists.denx.de; s...@denx.de; Gene Zarkhin > Subject: Re: [U-Boot] [PATCH v2 1/3] AM335x : Add USB support for AM335x > in u-bo

Re: [U-Boot] [PATCH 1/2] microblaze: avoid compile error on systems without cfi flash

2012-06-26 Thread Michal Simek
2012/6/25 Stephan Linz : > Am Montag, den 25.06.2012, 06:55 +0200 schrieb Michal Simek: >> On 06/21/2012 09:42 PM, Stephan Linz wrote: >> > Use XILINX_FLASH_START to set/unset FLASH and RAMENV. >> > >> > Error was: >> > board.c: In function 'board_init': >> > board.c:134: error: 'XILINX_FLASH_START

Re: [U-Boot] [RFC][PATCH] net: nfs: extend NFS_TIMEOUT

2012-06-26 Thread Wolfgang Denk
Dear Tetsuyuki Kobayashi, In message <4fe9711a.2090...@kmckk.co.jp> you wrote: > > >> Are you sure the problems are not in the board specific code? > > OK. I will try the same thing on an in-tree board (maybe, panda board) to > > check if this is board specific or not. > > I did on a panda boar

Re: [U-Boot] [PATCH 2/2] microblaze: Enable ubi support

2012-06-26 Thread Michal Simek
2012/6/25 Stephan Linz : > Am Montag, den 25.06.2012, 09:22 +0200 schrieb Wolfgang Denk: >> Dear Michal Simek, >> >> In message <4fe7f154.80...@monstr.eu> you wrote: >> > On 06/21/2012 09:42 PM, Stephan Linz wrote: >> > > To save memory the UBIFS is disabled by default. >> > > >> > > The original p

Re: [U-Boot] [RFC][PATCH] net: nfs: extend NFS_TIMEOUT

2012-06-26 Thread Tetsuyuki Kobayashi
Hello, (2012/06/26 9:50), Tetsuyuki Kobayashi wrote: > (06/26/2012 06:34 AM), Wolfgang Denk wrote: > >> In message<4fe85b13.5080...@kmckk.co.jp> you wrote: >>> I tried nfs command on KZM-A9-GT board and it fails every time with "ERROR: >>> Cannot umount". >> >> KZM-A9-GT board? This is an out

Re: [U-Boot] [PATCH 9/9 V2] SMDK5250: Enable UART and MMC for Exynos5250 Rev 1.0

2012-06-26 Thread Minkyu Kang
On 20 June 2012 20:11, Rajeshwari Shinde wrote: > This patch sets UART3 and MMC channle 0 for Exynos5250 Rev 1.0 Please fix typo channle -> channel. > > Signed-off-by: Rajeshwari Shinde > --- > Chnages in V2: >        - None >  board/samsung/smdk5250/smdk5250.c |    6 +++--- >  include/configs/

Re: [U-Boot] [PATCH 7/9 V2] EXYNOS5: CLOCK: Modify MPLL clock out for Exynos5250 Rev 1.0

2012-06-26 Thread Minkyu Kang
Dear Rajeshwari Shinde, On 20 June 2012 20:11, Rajeshwari Shinde wrote: > MPLL clock-out of Exynos5250 Rev 1.0 is always at 1.6GHz. > Adjust the divisor value to get 800MHz as needed by devices > like UART etc > > Signed-off-by: Hatim Ali > Signed-off-by: Rajeshwari Shinde > --- > Chnages in V2