[U-Boot] [PATCH 3/4] board/p1010rdb: add pin mux and sdhc support in any boot

2013-09-12 Thread Shengzhou Liu
Since pins multiplexing, SDHC shares signals with IFC, with this patch: To enable SDHC in case of NOR/NAND/SPI boot a) For temporary use case in runtime without reboot system run 'mux sdhc' in u-boot to validate SDHC with invalidating IFC. b) For long-term use case set 'esdhc' in

[U-Boot] [PATCH 1/4] powerpc/p1010rdb: remove unused cpld_show

2013-09-12 Thread Shengzhou Liu
Function cpld_show() was for debug and not called, so clean it. Signed-off-by: Shengzhou Liu --- board/freescale/p1010rdb/p1010rdb.c | 35 --- 1 file changed, 35 deletions(-) diff --git a/board/freescale/p1010rdb/p1010rdb.c b/board/freescale/p1010rdb/p1010rdb.c

[U-Boot] [PATCH 2/4] powerpc/eeprom: update MAX_NUM_PORTS to adapt non-256-bytes EEPROM

2013-09-12 Thread Shengzhou Liu
Some boards use System EEPROM with 128-bytes instead of 256-bytes. Since we regard 256-bytes EEPROM as standard EEPROM with default value for MAX_NUM_PORTS. For those non-256-bytes EEPROM, we can redefine MAX_NUM_PORTS in board-specific file to override the default MAX_NUM_PORTS. This patch doesn'

[U-Boot] [PATCH 4/4] powerpc/p1010rdb: add p1010rdb-pb support with updating p1010rdb-pa

2013-09-12 Thread Shengzhou Liu
- Rename old P1010RDB board as P1010RDB-PA. - Add support for new P1010RDB-PB board. - Some optimization. For more details, see board/freescale/p1010rdb/README. Signed-off-by: Shengzhou Liu --- board/freescale/p1010rdb/p1010rdb.c | 176 ++-- boards.cfg

Re: [U-Boot] i.MX6DL/S regression in mx6dl_pins.h

2013-09-12 Thread Pierre AUBERT
Hello Eric, Le 12/09/2013 23:56, Eric Nelson a écrit : Hi all, It seems to be all about displays and mux/pad registers for me these days. I just tracked down an issue related to commit 87d720e0c that causes improper display on our RGB displays. In particular, the pad settings for these two r

[U-Boot] [PATCH v2 1/2] net: fec_mxc: Add support for mx6 solo-lite

2013-09-12 Thread Fabio Estevam
From: Fabio Estevam Similarly as mx25 and mx53, mx6solo-lite needs to setup the MII gasket for RMII mode. Add support for mx6solo-lite. Signed-off-by: Fabio Estevam --- Based on FSL BSP, which uses U-boot 2013.04. Changes since v1: - None drivers/net/fec_mxc.c | 2 +- drivers/net/fec_mxc.h

[U-Boot] [PATCH] boards.cfg: Fix the comment for invoking tools/reformat.py from vim

2013-09-12 Thread Axel Lin
Add the missing bang (!) to execute external command, otherwise it does not work. Signed-off-by: Axel Lin --- boards.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/boards.cfg b/boards.cfg index dbd8479..9fc77fb 100644 --- a/boards.cfg +++ b/boards.cfg @@ -38,7 +38,7 @@

[U-Boot] [PATCH v2 2/2] mx6slevk: Add Ethernet support

2013-09-12 Thread Fabio Estevam
From: Fabio Estevam mx6slevk has a SMSC8720 connected in RMII mode. Add support for it. Signed-off-by: Fabio Estevam --- Based on FSL BSP, which uses U-boot 2013.04. Changes since v1: - Replace access via register + offset style with proper structure - Fix checkpatch error arch/arm/cpu/armv

[U-Boot] [PATCH v8 1/5] core support of arm64

2013-09-12 Thread fenghua
From: David Feng Signed-off-by: David Feng --- arch/arm/config.mk |4 + arch/arm/cpu/armv8/Makefile | 38 + arch/arm/cpu/armv8/cache.S | 130 + arch/arm/cpu/armv8/cache_v8.c | 228 +

[U-Boot] [PATCH v8 5/5] remove compiling warnings

2013-09-12 Thread fenghua
From: David Feng Signed-off-by: David Feng --- common/cmd_pxe.c |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/common/cmd_pxe.c b/common/cmd_pxe.c index a2fb50a..df58522 100644 --- a/common/cmd_pxe.c +++ b/common/cmd_pxe.c @@ -57,7 +57,7 @@ static int format_mac_pxe(

[U-Boot] [PATCH v8 3/5] generic board patch of manual reloc and zero gd_t

2013-09-12 Thread fenghua
From: David Feng Signed-off-by: David Feng --- common/board_f.c | 19 +++ common/board_r.c | 18 ++ 2 files changed, 29 insertions(+), 8 deletions(-) diff --git a/common/board_f.c b/common/board_f.c index 0ada1af..f6ca610 100644 --- a/common/board_f.c +++ b/

[U-Boot] [PATCH v8 2/5] board support of vexpress_aemv8a

2013-09-12 Thread fenghua
From: David Feng Signed-off-by: David Feng --- MAINTAINERS |4 + board/armltd/dts/vexpress64.dts | 439 ++ board/armltd/vexpress64/Makefile | 27 +++ board/armltd/vexpress64/vexpress64.c | 70 ++ boards.cfg

[U-Boot] [PATCH v8 4/5] 64bit initrd start address support

2013-09-12 Thread fenghua
From: David Feng Signed-off-by: David Feng --- common/fdt_support.c | 66 ++ 1 file changed, 34 insertions(+), 32 deletions(-) diff --git a/common/fdt_support.c b/common/fdt_support.c index b034c98..9bc5821 100644 --- a/common/fdt_support.c +++

[U-Boot] [PATCH v8 0/5] arm64 patch

2013-09-12 Thread fenghua
From: David Feng The porting has been merged with arm architecture. Most architecture codes are placed in arch/arm/cpu/armv8 directory. Generic board is also supported after a few bugs are fixed. u-boot could be running at EL1 or EL2. Changes for v7: - Integrate SMC9 patch of sharma bhupes

Re: [U-Boot] [PATCH 1/2] net: fec_mxc: Add support for mx6 solo-lite

2013-09-12 Thread Otavio Salvador
On Thu, Sep 12, 2013 at 7:41 PM, Fabio Estevam wrote: > From: Fabio Estevam > > Similarly as mx25 and mx53, mx6solo-lite needs to setup the MII gasket for > RMII > mode. > > Add support for mx6solo-lite. > > Signed-off-by: Fabio Estevam > --- Seems safe enough to go into 2013.10, doesn't it? :

[U-Boot] [PATCH] PCIe:change the method to get the address of a requested capability in configuration space.

2013-09-12 Thread Zhao Qiang
Previously, the address of a requested capability is define like that "#define PCI_DCR0x78" But, the addresses of capabilities is different with regard to PCIe revs. So this method is not flexible. Now a function to get the address of a requested capability is added and used. It ca

Re: [U-Boot] [PATCH v3 1/3] arm:samsung:serial Extract common UART code

2013-09-12 Thread Chander Kashyap
On 29 August 2013 02:31, Lukasz Majewski wrote: > Hi Minkyu > >> Dear Lukasz, >> >> On 13/08/13 06:15, Lukasz Majewski wrote: >> > This commit brings removal of duplicated code for UART IP block >> > embedded at Samsung SoCs. >> > New include/asm/samsung-common directory has been created to store

Re: [U-Boot] [PATCH v3] at91: add support for CDU9G25 board

2013-09-12 Thread Wolfgang Denk
Dear Jiri Prchal, In message <1378991839-16732-1-git-send-email-jiri.prc...@aksignal.cz> you wrote: ... > +err_spi_setup_slave: > + if (!is_valid_ether_addr(sernum)) { > + debug("Using random MAC address\n"); > + eth_random_enetaddr(sernum); > + } Pleas change thi

[U-Boot] [PATCH] mx35pdk: Remove CONFIG_SYS_CACHELINE_SIZE

2013-09-12 Thread Fabio Estevam
From: Fabio Estevam In arch/arm/cpu/arm1136/cpu.c we have: #ifndef CONFIG_SYS_CACHELINE_SIZE #define CONFIG_SYS_CACHELINE_SIZE 32 #endif ,so there is no need to define 'CONFIG_SYS_CACHELINE_SIZE' with the default size in the board config file. Signed-off-by: Fabio Estevam --- include/c

[U-Boot] Pull request: u-boot-mpc85xx

2013-09-12 Thread York Sun
Tom, The following changes since commit 985a71d15b8bd9cfbeae1ac1b08a5319abfd246c: Merge branch 'master' of git://www.denx.de/git/u-boot-ppc4xx (2013-09-09 09:59:30 -0400) are available in the git repository at: git://git.denx.de/u-boot-mpc85xx.git master for you to fetch changes up to 954

[U-Boot] [PATCH 2/2] mx6qsabreauto: Return error if cpu_eth_init() fails

2013-09-12 Thread Fabio Estevam
From: Fabio Estevam Currently board_eth_init() always return 0, but we should propagate the error when cpu_eth_init() fails. Signed-off-by: Fabio Estevam --- board/freescale/mx6qsabreauto/mx6qsabreauto.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/board/freescale/mx6qs

[U-Boot] [PATCH 1/2] mx6sabresd: Return error if cpu_eth_init() fails

2013-09-12 Thread Fabio Estevam
From: Fabio Estevam Currently board_eth_init() always return 0, but we should propagate the error when cpu_eth_init() fails. Signed-off-by: Fabio Estevam --- board/freescale/mx6sabresd/mx6sabresd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/board/freescale/mx6sabresd/

Re: [U-Boot] [PATCH v2 1/2] mx6sabresd: Avoid hang when HDMI cable is not connected

2013-09-12 Thread Eric Nelson
Thanks Stefano, On 09/12/2013 02:47 AM, Stefano Babic wrote: Hi Fabio, CC to Eric and Troy. On 11/09/2013 23:14, Fabio Estevam wrote: diff --git a/board/freescale/mx6sabresd/mx6sabresd.c b/board/freescale/mx6sabresd/mx6sabresd.c index c832bd9..0f91fe2 100644 --- a/board/freescale/mx6sabresd

Re: [U-Boot] [PATCH] net: fec: Avoid MX28 bus sync issue

2013-09-12 Thread Marek Vasut
Dear Robert Hodaszi, > On 2013-09-12 16:31, Marek Vasut wrote: > > Dear Robert Hodaszi, > > > > Please do not top-post. > > > > Memalign should do here with proper rounding. Can you prepare another > > patch please? > > > > Best regards, > > Marek Vasut > > Ok. I will try to do that tomorrow.

Re: [U-Boot] i.MX6DL/S regression in mx6dl_pins.h

2013-09-12 Thread Fabio Estevam
Hi Eric, On Thu, Sep 12, 2013 at 6:56 PM, Eric Nelson wrote: > Hi all, > > It seems to be all about displays and mux/pad registers for > me these days. > > I just tracked down an issue related to commit 87d720e0c that > causes improper display on our RGB displays. > > In particular, the pad setti

Re: [U-Boot] [PATCH] net: fec: Avoid MX28 bus sync issue

2013-09-12 Thread Fabio Estevam
On Thu, Sep 12, 2013 at 3:17 PM, Wolfgang Denk wrote: > Dear Marek Vasut, > > In message <201309121605.04824.ma...@denx.de> you wrote: >> >> Looking at the code one more time, it'd make most sense to simply allocate >> the >> buffer NOT on stack, but with some memalign-kind-of call to avoid this

Re: [U-Boot] [PATCH v2] Merge and reformat boards.cfg and MAINTAINERS

2013-09-12 Thread Tom Rini
On Wed, Sep 11, 2013 at 03:52:51PM +0200, Albert ARIBAUD wrote: > Put all informations about targets, including state (active or > orphan) and maintainers, in boards.cfg; remove MAINTAINERS; > adjust the build system accordingly. > > Signed-off-by: Albert ARIBAUD > --- > V2: > - updated wi

Re: [U-Boot] Possible GPL violation

2013-09-12 Thread Gerard Kam
Wolfgang Denk denx.de> writes: > > Dear Mateusz, > > In message <5123E16B.1060907 gmail.com> you wrote: > > > > Is there anyone that can support me with enforcing GPL compliance on > > company that ships product with binary u-boot? Or did that in the past? > > We can try. > > > They're "ma

Re: [U-Boot] Pull request: u-boot-arm/master

2013-09-12 Thread Tom Rini
On Thu, Sep 12, 2013 at 03:18:51PM +0200, Albert ARIBAUD wrote: > Hello Tom, > > The following changes since commit > 68e1747f9c0506159e8ecc9a4feb58e9c65a7b39: > > socfpga: Creating driver for Reset Manager (2013-09-06 12:09:06 +0200) > > are available in the git repository at: > > git://g

Re: [U-Boot] Pull request: u-boot-arm/master

2013-09-12 Thread Albert ARIBAUD
Hi Tom, On Thu, 12 Sep 2013 11:11:16 -0400, Tom Rini wrote: > On Thu, Sep 12, 2013 at 03:18:51PM +0200, Albert ARIBAUD wrote: > > > Hello Tom, > > > > The following changes since commit > > 68e1747f9c0506159e8ecc9a4feb58e9c65a7b39: > > > > socfpga: Creating driver for Reset Manager (2013-09

[U-Boot] i.MX6DL/S regression in mx6dl_pins.h

2013-09-12 Thread Eric Nelson
Hi all, It seems to be all about displays and mux/pad registers for me these days. I just tracked down an issue related to commit 87d720e0c that causes improper display on our RGB displays. In particular, the pad settings for these two registers lost their drive-strength value: MX6_PAD

[U-Boot] [PATCH 2/2] mx6slevk: Add Ethernet support

2013-09-12 Thread Fabio Estevam
From: Fabio Estevam mx6slevk has a SMSC8720 connected in RMII mode. Add support for it. Signed-off-by: Fabio Estevam --- Based on FSL BSP, which uses U-boot 2013.04. arch/arm/cpu/armv7/mx6/clock.c | 30 + arch/arm/include/asm/arch-mx6/clock.h | 1 + arch/arm/inc

[U-Boot] [PATCH 1/2] net: fec_mxc: Add support for mx6 solo-lite

2013-09-12 Thread Fabio Estevam
From: Fabio Estevam Similarly as mx25 and mx53, mx6solo-lite needs to setup the MII gasket for RMII mode. Add support for mx6solo-lite. Signed-off-by: Fabio Estevam --- Based on FSL BSP, which uses U-boot 2013.04. drivers/net/fec_mxc.c | 2 +- drivers/net/fec_mxc.h | 4 ++-- 2 files changed,

Re: [U-Boot] [PATCH] net: fec: Avoid MX28 bus sync issue

2013-09-12 Thread Wolfgang Denk
Dear Hector Palacios, In message <523195ca.3010...@digi.com> you wrote: > > Here is a patch: > > From: Robert Hodaszi > Date: Fri, 6 Sep 2013 09:50:52 +0200 > Subject: [PATCH] net: fec: fix invalid temporary RX buffer alignment because > of GCC bug > > Older GCC versions don't handle well al

Re: [U-Boot] [PATCH] net: fec: Avoid MX28 bus sync issue

2013-09-12 Thread Wolfgang Denk
Dear Fabio Estevam, In message you wrote: > > > It makes perfect sense to allocate variable with function scope only > > on the stack. That's what the stack has been invented for. > > This buffer in the fec driver will be used in DMA transfer, so maybe > that's the reason we should use malloc

Re: [U-Boot] [PATCH] net: fec: Avoid MX28 bus sync issue

2013-09-12 Thread Robert Hodaszi
I just brought up two samples, that it was a long-term problem. Now it is fixed. But if somebody is trying to compile the U-Boot with an older toolchain, it could cause problems. I had problems with 4.4.6. Yes, 2k is a lot, and I would not put it on the stack. That was just a quick fix. It wou

Re: [U-Boot] [PATCH] net: fec: Avoid MX28 bus sync issue

2013-09-12 Thread Wolfgang Denk
Dear Robert Hodaszi, In message <5231a0c0.8070...@digi.com> you wrote: > > Sorry, hopefully that will be a plain-text. > > There are a lot of bug announcement, just make a search: > gcc.gnu.org/bugzilla/show_bug.cgi?id=33721 > gcc.gnu.org/bugzilla/show_bug.cgi?id=16660 Hm... what exactly are th

Re: [U-Boot] CONFIG_BAUDRATE doesn't match

2013-09-12 Thread txcotrader
Stephan, The processor is a 460SX (shares the same data sheet as 460GT). In my /include/configs/.h file I include "amcc-common.h" which has what you suggested: /* * UART */ #define CONFIG_SYS_NS16550 #define CONFIG_SYS_NS16550_SERIAL #define CONFIG_SYS_NS16550_REG_SIZE 1 #define CONFIG_SYS_NS1

Re: [U-Boot] Executing U-Boot from Another Boot Loader

2013-09-12 Thread Wolfgang Denk
Dear Roy Caspi, In message you wrote: > > I have a VxWorks Boot Loader running on my P3041 and from there I'm willing > to execute a U-Boot image that was previously burnt in my flash. > The U-Boot image - u-boot-p3041ds-2011.09-r5.bin - is 512KB and is burnt at > the address of 0xF802,,

Re: [U-Boot] powerpc SPL framework: Avoiding relocate_code

2013-09-12 Thread Scott Wood
On Mon, 2013-09-09 at 16:43 +0530, Prabhakar Kushwaha wrote: > Hi, > > SPL framework is used to support multi-stage booting. Where first > level boot loader is created via SPL having relocate_code() function. > I am working on a Freescale's SoC which has less internal SRAM. > I don't want to u

Re: [U-Boot] [PATCH] net: fec: Avoid MX28 bus sync issue

2013-09-12 Thread Wolfgang Denk
Dear Marek Vasut, In message <201309121605.04824.ma...@denx.de> you wrote: > > Looking at the code one more time, it'd make most sense to simply allocate > the > buffer NOT on stack, but with some memalign-kind-of call to avoid this abuse > of > stack. You see, the max packet size is around 2

Re: [U-Boot] [PATCH] am335x_evm: Re-work eMMC environment

2013-09-12 Thread Tom Rini
On Thu, Sep 12, 2013 at 08:46:50AM -0400, Tom Rini wrote: > board/ti/am335x/README talks about eMMC env on the main partition, with > redundancy, rather than in one of the boot partitions. Switch to using > the main partition + redundant copy. > > Signed-off-by: Tom Rini I'm going to re-tract

Re: [U-Boot] [PATCH v3 1/3] arm:samsung:serial Extract common UART code

2013-09-12 Thread Lukasz Majewski
Hi Minkyu, > Hi Minkyu > > > Dear Lukasz, > > > > On 13/08/13 06:15, Lukasz Majewski wrote: > > > This commit brings removal of duplicated code for UART IP block > > > embedded at Samsung SoCs. > > > New include/asm/samsung-common directory has been created to store > > > common code for existin

Re: [U-Boot] [PATCH] net: fec: Avoid MX28 bus sync issue

2013-09-12 Thread Fabio Estevam
On Thu, Sep 12, 2013 at 3:53 PM, Wolfgang Denk wrote: > Dear Fabio Estevam, > > In message > you > wrote: >> >> > It makes perfect sense to allocate variable with function scope only >> > on the stack. That's what the stack has been invented for. >> >> This buffer in the fec driver will be use

Re: [U-Boot] [PATCH v4 1/5] mtd: nand: omap: enable BCH ECC scheme using ELM for generic platform

2013-09-12 Thread Scott Wood
On Tue, 2013-09-03 at 11:26 +0530, Pekon Gupta wrote: > diff --git a/doc/README.nand b/doc/README.nand > index 913e9b5..f72f618 100644 > --- a/doc/README.nand > +++ b/doc/README.nand > @@ -169,6 +169,19 @@ Configuration Options: >Please convert your driver even if you don't need the extra >

Re: [U-Boot] [PATCH v2 2/2] mx6sabresd: Reset counter to prevent error message

2013-09-12 Thread Eric Nelson
Hi Stefano, On 09/12/2013 03:17 AM, Stefano Babic wrote: Hi Fabio, On 11/09/2013 23:14, Fabio Estevam wrote: From: Fabio Estevam If a HDMI cable is not connected, the following message is seen on boot: CPU: Freescale i.MX6Q rev1.1 at 792 MHz Reset cause: POR Board: MX6-SabreSD DRAM: 1 Gi

Re: [U-Boot] [PATCH v7 1/5] core support of arm64

2013-09-12 Thread Tom Rini
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 09/11/2013 10:10 PM, FengHua wrote: > hi, > The following codes are originated from linux kernel. I am not sure > whether license issues exist. > I list the original codes at the bottom. Please check it and give me some > advice. > If lice

Re: [U-Boot] [PATCH] net: fec: Avoid MX28 bus sync issue

2013-09-12 Thread Robert Hodaszi
On 2013-09-12 16:31, Marek Vasut wrote: Dear Robert Hodaszi, Please do not top-post. Memalign should do here with proper rounding. Can you prepare another patch please? Best regards, Marek Vasut Ok. I will try to do that tomorrow. Best regards, Robert Hodaszi _

Re: [U-Boot] [PATCH] net: fec: Avoid MX28 bus sync issue

2013-09-12 Thread Marek Vasut
Dear Robert Hodaszi, > I just brought up two samples, that it was a long-term problem. Now it > is fixed. But if somebody is trying to compile the U-Boot with an older > toolchain, it could cause problems. I had problems with 4.4.6. > > Yes, 2k is a lot, and I would not put it on the stack. That

Re: [U-Boot] [PATCH] net: fec: Avoid MX28 bus sync issue

2013-09-12 Thread Marek Vasut
Dear Robert Hodaszi, > Hi, > > Sorry, hopefully that will be a plain-text. > > There are a lot of bug announcement, just make a search: > http://gcc.gnu.org/bugzilla/show_bug.cgi?id=33721 This was apparently fixed three years ago. > http://gcc.gnu.org/bugzilla/show_bug.cgi?id=16660 And this o

Re: [U-Boot] [PATCH v7 1/5] core support of arm64

2013-09-12 Thread Tom Rini
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 09/11/2013 09:39 AM, FengHua wrote: > hi Rob, Thank you for your checking of this patch. > >> -原始邮件- 发件人: "Rob Herring" 发送时间: >> 2013年9月11日 星期三 收件人: feng...@phytium.com.cn 抄送: >> u-boot@lists.denx.de, tr...@ti.com 主题: Re: [U-Boot] [PATCH v

[U-Boot] [PATCH] mmc: fsl_esdhc: Check the result from malloc()

2013-09-12 Thread Fabio Estevam
malloc can fail, so we should better check its return value before using it. Signed-off-by: Fabio Estevam --- drivers/mmc/fsl_esdhc.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/drivers/mmc/fsl_esdhc.c b/drivers/mmc/fsl_esdhc.c index f87e647..a7170b4 100644 --- a/drivers/mmc/fsl_esdhc.

[U-Boot] Pull request: u-boot-arm/master

2013-09-12 Thread Albert ARIBAUD
Hello Tom, The following changes since commit 68e1747f9c0506159e8ecc9a4feb58e9c65a7b39: socfpga: Creating driver for Reset Manager (2013-09-06 12:09:06 +0200) are available in the git repository at: git://git.denx.de/u-boot-arm master for you to fetch changes up to 5480ac32171ab0e38c48c9f5

[U-Boot] [PATCH v3] at91: add support for CDU9G25 board

2013-09-12 Thread Jiri Prchal
This patch adds support for our companies board CDU9G25 with Atmel AT91SAM9G25, 128MB DDR2, 256MB NAND. Signed-off-by: Jiri Prchal --- v2 Fixed static IP and MAC addr cofiguration by random MAC and DHCP. Added entry to MAINTAINERS. Fixed line lenght, trailing spaces and other cosmetics. v3 Remove

[U-Boot] [PATCH] am335x_evm: Re-work eMMC environment

2013-09-12 Thread Tom Rini
board/ti/am335x/README talks about eMMC env on the main partition, with redundancy, rather than in one of the boot partitions. Switch to using the main partition + redundant copy. Signed-off-by: Tom Rini --- include/configs/am335x_evm.h |7 --- 1 file changed, 4 insertions(+), 3 deletio

[U-Boot] [PATCH 0/2]powerpc/usb:Intergrate multiple USB controller support

2013-09-12 Thread Ramneek Mehresh
Make multiple USB controllers work inside u-boot by doing the following: - Defining max. no of USB controllers for each soc - Defining proper base address for each controller so that initialization code can work for each of them Ramneek Mehresh (2): powerpc/usb:Define C

Re: [U-Boot] [PATCH] net: fec: Avoid MX28 bus sync issue

2013-09-12 Thread Robert Hodaszi
Hi, Sorry, hopefully that will be a plain-text. There are a lot of bug announcement, just make a search: http://gcc.gnu.org/bugzilla/show_bug.cgi?id=33721 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=16660 Also, I printed out the buffer addresses, and that temporary RX buffer was not aligned. S

Re: [U-Boot] [PATCH] net: fec: Avoid MX28 bus sync issue

2013-09-12 Thread Robert Hodaszi
Hi, Sorry, hopefully that will be a plain-text. There are a lot of bug announcement, just make a search: gcc.gnu.org/bugzilla/show_bug.cgi?id=33721 gcc.gnu.org/bugzilla/show_bug.cgi?id=16660 Also, I printed out the buffer addresses, and that temporary RX buffer was not aligned. So the transmit

[U-Boot] [PATCH 1/2] powerpc/usb:Define CONFIG_USB_MAX_CONTROLLER_COUNT for all 85xx socs

2013-09-12 Thread Ramneek Mehresh
CONFIG_USB_MAX_CONTROLLER_COUNT macro recently defined for initializing all USB controllers on a given platform. This macro is defined for all 85xx socs Signed-off-by: Ramneek Mehresh --- arch/powerpc/cpu/mpc8xxx/fdt.c| 6 -- arch/powerpc/include/asm/config_mpc85xx.h | 24 ++

[U-Boot] [PATCH 2/2] powerpc/usb:Differentiate USB controller base address

2013-09-12 Thread Ramneek Mehresh
Introduce different macros for storing addresses of multiple USB controllers. This is required for successful initialization and usage of multiple USB controllers inside u-boot Signed-off-by: Ramneek Mehresh --- arch/powerpc/cpu/mpc83xx/cpu_init.c | 2 +- arch/powerpc/include/asm/immap_512x.h

Re: [U-Boot] [PATCH] net: fec: Avoid MX28 bus sync issue

2013-09-12 Thread Marek Vasut
Dear Robert Hodaszi, > > >http-equiv="Content-Type"> > > > Hi, > > There are a lot of bug announcement, just make a search: > >href="http://gcc.gnu.org/bugzilla/show_bug.cgi?id=33721";>http://gcc.gnu.or > g/bugzilla/show_bug.cgi?id=33721 conte

Re: [U-Boot] [PATCH] net: fec: Avoid MX28 bus sync issue

2013-09-12 Thread Marek Vasut
Dear Hector Palacios, > Hello, > > Going back to this old thread I have some news regarding the problem with > TFTP transmissions blocking (timed out) after 10 seconds on the FEC of the > MX28. See below: > > On 07/17/2013 05:55 PM, Hector Palacios wrote: > > Dear Marek, > > > > On 07/16/2013 0

[U-Boot] Problem with -pie flag.

2013-09-12 Thread VISWANADHULA BALAJI
Hi, I have a global variable problem with u-boot when i enabled with '-pie' flag during linking time. In the interrupt handler i set the global variable to 1 initially is set to 0 but i am not able to see the updated global variable after return from interrupt handler. But it is happen when i dis

Re: [U-Boot] [PATCH 4/4 v2] dfu: Extract common DFU code to handle "dfu_alt_info" environment variable

2013-09-12 Thread Marek Vasut
Dear Lukasz Majewski, > New dfu_init_env_entities() function has been extracted from cmd_dfu.c and > stored at dfu core. > > This is a dfu centric code, so it shall be processed in the core. > > Change-Id: I756c5de922fa31399d8804eaadc004ee98844ec2 > Signed-off-by: Lukasz Majewski > Tested-by: H

Re: [U-Boot] [PATCH] ARM: IGEP0033: Update timing to run DDR at 400MHz.

2013-09-12 Thread Javier Martinez Canillas
On Tue, Sep 10, 2013 at 11:12 AM, Enric Balletbo i Serra wrote: > From: Enric Balletbo i Serra > > We can run the DDR at 400MHz, so update the timings for that purpose. > > Signed-off-by: Enric Balletbo i Serra > --- > arch/arm/include/asm/arch-am33xx/ddr_defs.h | 24 >

Re: [U-Boot] [PATCH] net: fec: Avoid MX28 bus sync issue

2013-09-12 Thread Hector Palacios
Hello, Going back to this old thread I have some news regarding the problem with TFTP transmissions blocking (timed out) after 10 seconds on the FEC of the MX28. See below: On 07/17/2013 05:55 PM, Hector Palacios wrote: Dear Marek, On 07/16/2013 06:44 AM, Marek Vasut wrote: Dear Fabio Estev

Re: [U-Boot] [PATCH v2 2/2] mx6sabresd: Reset counter to prevent error message

2013-09-12 Thread Stefano Babic
Hi Fabio, On 11/09/2013 23:14, Fabio Estevam wrote: > From: Fabio Estevam > > If a HDMI cable is not connected, the following message is seen on boot: > > CPU: Freescale i.MX6Q rev1.1 at 792 MHz > > Reset cause: POR

Re: [U-Boot] [PATCH v2 1/2] mx6sabresd: Avoid hang when HDMI cable is not connected

2013-09-12 Thread Stefano Babic
Hi Fabio, CC to Eric and Troy. On 11/09/2013 23:14, Fabio Estevam wrote: > diff --git a/board/freescale/mx6sabresd/mx6sabresd.c > b/board/freescale/mx6sabresd/mx6sabresd.c > index c832bd9..0f91fe2 100644 > --- a/board/freescale/mx6sabresd/mx6sabresd.c > +++ b/board/freescale/mx6sabresd/mx6sabre

Re: [U-Boot] U-Boot mini-summit at ELCE 2013 in Edinburgh - call for participation!

2013-09-12 Thread Detlev Zundel
Dear Jagan, > On Thu, Mar 21, 2013 at 10:21 PM, Detlev Zundel wrote: >> Hi fellow U-Boot developers, >> >> people meeting us at our booth at the Embedded World trade show in >> Nürnberg this year may already have heard rumours about it but now it is >> official - there will be an U-Boot mini-summ

[U-Boot] Executing U-Boot from Another Boot Loader

2013-09-12 Thread Roy Caspi
Hi, I have a VxWorks Boot Loader running on my P3041 and from there I'm willing to execute a U-Boot image that was previously burnt in my flash. The U-Boot image - u-boot-p3041ds-2011.09-r5.bin - is 512KB and is burnt at the address of 0xF802,, ending at 0xF809, (no env. parameters were