[U-Boot] [RFC PATCH 1/7] reboard: define CONFIG_SYS_LEGACY_BOARD everywhere

2011-11-21 Thread Simon Glass
We are introducing a new unified board setup and we want this to be the default. So we need to opt all architectures out first. Signed-off-by: Simon Glass --- README|5 + arch/arm/config.mk|3 +++ arch/avr32/config.mk |3 +++ arch/blackfin/config.

[U-Boot] [RFC PATCH 2/7] reboard: Add generic link symbols

2011-11-21 Thread Simon Glass
Create a separate header file for link symbols defined by the link scripts. It is helpful to have these all in one place and try to make them common across architectures. Signed-off-by: Simon Glass --- include/asm-generic/link_symbols.h | 38 1 files change

[U-Boot] [RFC PATCH 5/7] reboard: arm: Add processor function library

2011-11-21 Thread Simon Glass
Add a library to hold ARM assembler code which is generic across all ARM CPUs. Signed-off-by: Simon Glass --- arch/arm/lib/Makefile |1 + arch/arm/lib/proc.S | 35 +++ 2 files changed, 36 insertions(+), 0 deletions(-) create mode 100644 arch/arm/lib/proc.

[U-Boot] [RFC PATCH 7/7] reboard: arm: Remove unused code in start.S

2011-11-21 Thread Simon Glass
Now that we are using the generic relocation framework, we don't need this code. Once it is removed, we can change reloc.c's relocate_code() function back to its correct name. Note: Here we lose the ARM1176's enable_mmu code. This seems to duplicate code already in U-Boot now. Can anyone comment o

Re: [U-Boot] Tegra Patches

2011-11-21 Thread Simon Glass
Hi Stephen, On Mon, Nov 21, 2011 at 3:30 PM, Stephen Warren wrote: > On 11/21/2011 04:07 PM, Simon Glass wrote: >> Hi, >> >> For reference, here is (I believe) the current list of Tegra patches >> required become submitting new patches. I note a few conflicts > > s/required become/required in you

Re: [U-Boot] Tegra Patches

2011-11-21 Thread Stephen Warren
On 11/21/2011 05:05 PM, Simon Glass wrote: > On Mon, Nov 21, 2011 at 3:30 PM, Stephen Warren wrote: ... >> Is there a status update for the creation of a Tegra git that we could >> fetch and branch from ? > > Well I could put up a tree, but it's a bit dangerous - the real place > is patchwork. I

Re: [U-Boot] Tegra Patches

2011-11-21 Thread Simon Glass
Hi Stephen, On Mon, Nov 21, 2011 at 4:12 PM, Stephen Warren wrote: > On 11/21/2011 05:05 PM, Simon Glass wrote: >> On Mon, Nov 21, 2011 at 3:30 PM, Stephen Warren wrote: > ... >>> Is there a status update for the creation of a Tegra git that we could >>> fetch and branch from ? >> >> Well I coul

Re: [U-Boot] [PATCH 1/2] Add a "tidy" build option

2011-11-21 Thread Simon Glass
Hi Andy, On Mon, Nov 21, 2011 at 3:40 PM, Andy Fleming wrote: > It is sometimes desireable to clean up the byproducts of the build > process without removing the executable results. "make clean" is > close, but leaves the build directory with a large number of > *.depend* files. This new build op

[U-Boot] About the volatile data type in include/net.h

2011-11-21 Thread Macpaul Lin
HI all, I have found there are some variables declared as volatile in include/net.h. Some of them are used as in send and receive functions. Since some of them seems won't be update by hardware, like sending functions. Should we check and clean them up? For example, the send function in eth_devic

Re: [U-Boot] [PATCH 1/9] ARM: a320evb: re-add MACH_TYPE_FARADAY

2011-11-21 Thread Po-Yu Chuang
Dear Anatolij, On Tue, Nov 22, 2011 at 2:46 AM, Anatolij Gustschin wrote: > Dear Po-Yu Chuang, > > On Sat, 19 Nov 2011 12:59:08 +0100 > Anatolij Gustschin wrote: > >> MACH_TYPE_FARADAY was removed from mach-types.h. >> Add it to the board config file. > > Could you please look at this patch and

Re: [U-Boot] [PATCH 1/9] ARM: a320evb: re-add MACH_TYPE_FARADAY

2011-11-21 Thread Po-Yu Chuang
Dear Anatolij, On Tue, Nov 22, 2011 at 11:18 AM, Po-Yu Chuang wrote: > Dear Anatolij, > > On Tue, Nov 22, 2011 at 2:46 AM, Anatolij Gustschin wrote: >> Dear Po-Yu Chuang, >> >> On Sat, 19 Nov 2011 12:59:08 +0100 >> Anatolij Gustschin wrote: >> >>> MACH_TYPE_FARADAY was removed from mach-types.h

Re: [U-Boot] [PATCH 3/9] openrisc: Add cpu files

2011-11-21 Thread Stefan Kristiansson
On Mon, Nov 21, 2011 at 11:50:17PM +0100, Marek Vasut wrote: > > + return (mfspr(SPR_ICCFGR) & SPR_ICCFGR_CBS) ? 32 : 16; > > What's mfspr ... if it's some register, then maybe mfspr_read() ? > It's an instruction, "move from special register", so I don't think the _read would be appropriate i

Re: [U-Boot] [PATCH 4/9] openrisc: Add library functions

2011-11-21 Thread Stefan Kristiansson
On Mon, Nov 21, 2011 at 11:52:59PM +0100, Marek Vasut wrote: > > create mode 100644 arch/openrisc/lib/timer.c > > Timer support isn't a library function but a CPU function, so move it to 3/9. > I never quite worked out where the timer functions belongs, some have them in interupts.c and some in

Re: [U-Boot] [PATCH 5/9] openrisc: Add board info printout to cmd_bdinfo

2011-11-21 Thread Stefan Kristiansson
On Mon, Nov 21, 2011 at 11:53:32PM +0100, Marek Vasut wrote: > > +int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) > > +{ > > + bd_t *bd = gd->bd; > > + > > + print_num("mem start", (ulong)bd->bi_memstart); > > + print_lnum("mem size", (u64)bd->bi_mem

Re: [U-Boot] [PATCH 9/9] openrisc: Add MAINTAINERS entry

2011-11-21 Thread Stefan Kristiansson
On Mon, Nov 21, 2011 at 11:54:51PM +0100, Marek Vasut wrote: > > Keep up the good work! > I'll do my best ;) Thanks for taking the time to review our code. Stefan ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boo

Re: [U-Boot] [PATCH 3/9] openrisc: Add cpu files

2011-11-21 Thread Marek Vasut
> On Mon, Nov 21, 2011 at 11:50:17PM +0100, Marek Vasut wrote: > > > + return (mfspr(SPR_ICCFGR) & SPR_ICCFGR_CBS) ? 32 : 16; > > > > What's mfspr ... if it's some register, then maybe mfspr_read() ? > > It's an instruction, "move from special register", > so I don't think the _read would be appr

Re: [U-Boot] [PATCH 4/9] openrisc: Add library functions

2011-11-21 Thread Marek Vasut
> On Mon, Nov 21, 2011 at 11:52:59PM +0100, Marek Vasut wrote: > > > create mode 100644 arch/openrisc/lib/timer.c > > > > Timer support isn't a library function but a CPU function, so move it to > > 3/9. > > I never quite worked out where the timer functions belongs, > some have them in interupt

Re: [U-Boot] [PATCH 5/9] openrisc: Add board info printout to cmd_bdinfo

2011-11-21 Thread Marek Vasut
> On Mon, Nov 21, 2011 at 11:53:32PM +0100, Marek Vasut wrote: > > > +int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const > > > argv[]) +{ > > > + bd_t *bd = gd->bd; > > > + > > > + print_num("mem start", (ulong)bd->bi_memstart); > > > + print_lnum("mem size", (u64)bd

Re: [U-Boot] [PATCH 2/2 v2] Allow for parallel builds and saved output

2011-11-21 Thread Simon Glass
Hi Andy, This is great, thank you for doing it. I just have a few fairly trivial comments. On Mon, Nov 21, 2011 at 3:40 PM, Andy Fleming wrote: > The MAKEALL script cleverly runs make with the appropriate options > to use all of the cores on the system, but your average U-Boot build > can't ma

Re: [U-Boot] M5282EVB undefined reference to `environment'

2011-11-21 Thread Marek Vasut
> Hi, > > I'm trying to build U-Boot for the above mentioned board. Basically, > I've done the following on a Ubuntu 10.04: > > wget > https://sourcery.mentor.com/public/gnu_toolchain/m68k-elf/freescale-coldfir > e-4.4-215-m68k-elf-i686-pc-linux-gnu.tar.bz2 > > sudo tar xvfj > freescale-coldfir

[U-Boot] [PATCH v4 3/3] sandbox: Fix warnings in hashtable.c

2011-11-21 Thread Simon Glass
This fixes a few printf() strings for size_t which are missing the 'z' modifier. Signed-off-by: Simon Glass Acked-by: Mike Frysinger --- Changes in v2: - Fix another warning in the same file Changes in v4: - Rebase to master lib/hashtable.c | 10 +- 1 files changed, 5 insertions(+),

Re: [U-Boot] [GIT PULL] Pull request: u-boot-staging

2011-11-21 Thread Simon Glass
Hi Stefano, On Mon, Nov 21, 2011 at 1:10 PM, Wolfgang Denk wrote: > Dear Stefano Babic, > > In message <4ec61e4c.8040...@denx.de> you wrote: >> >> let's see if the suggested approach work or there is need for an adjustment. >> >> I have applied some general and network patches to u-boot-staging.

Re: [U-Boot] PPC4xx: usbdev.c used at all?

2011-11-21 Thread Stefan Roese
Hi Marri, On Monday 21 November 2011 23:31:45 Wolfgang Denk wrote: > > This code is used when usb device is used as boot medium for Linux. > > Which exact usage mode would that be, i. e. which hardware setup would > you use in coimbination with which exact commands? Yes, please explain in more d

Re: [U-Boot] M5282EVB undefined reference to `environment'

2011-11-21 Thread James Steward
On 22/11/11 15:51, Marek Vasut wrote: Hi, I'm trying to build U-Boot for the above mentioned board. Basically, I've done the following on a Ubuntu 10.04: wget https://sourcery.mentor.com/public/gnu_toolchain/m68k-elf/freescale-coldfir e-4.4-215-m68k-elf-i686-pc-linux-gnu.tar.bz2 sudo tar xvfj

Re: [U-Boot] [PATCH 4/9] openrisc: Add library functions

2011-11-21 Thread Stefan Kristiansson
On Tue, Nov 22, 2011 at 05:48:53AM +0100, Marek Vasut wrote: > > > > + asm("l.nop 0x1"); /* Kill any simulation */ > > > > > > Simulation? Oh, it's an FPGA based CPU or what? > > > > Well, yes, FPGAs are probably the most common case, but also ASIC > > implementations exists. > > The extra

Re: [U-Boot] support for the coldfire M5234BCC

2011-11-21 Thread Christian Riesch
On Monday, November 21, 2011, Richard Cochran wrote: > I am running the very latest mainstream Linux kernel on the Freescale > M5234BCC. The kernel boots file (if I hack the root device in > drivers/mtd/maps/uclinux.c). > > However, I am getting really tired of the dBUG thing. It only can > fetch

Re: [U-Boot] [u-boot][PATCH] uboot/flexcan: fixup flexcan clock-frequency

2011-11-21 Thread Jia Hongtao-B38951
Hi Kumar, We want more comments on this patch to speed up the pushing-to-source progress. Thanks. -Original Message- From: Jia Hongtao-B38951 Sent: Tuesday, November 15, 2011 3:04 PM To: u-boot@lists.denx.de Cc: Li Yang-R58472; Jia Hongtao-B38951 Subject: [u-boot][PATCH] uboot/flexcan: fi

Re: [U-Boot] [RFC PATCH v2 07/12] arm: printf() is not available in some SPL configurations

2011-11-21 Thread Christian Riesch
Hello Tom, On Mon, Nov 21, 2011 at 6:52 PM, Tom Rini wrote: > On Mon, Nov 21, 2011 at 9:33 AM, Christian Riesch > wrote: >> This patch avoids build breakage for SPLs that do not support printf. >> >> Signed-off-by: Christian Riesch >> Cc: Wolfgang Denk >> Cc: Tom Rini >> --- >>  arch/arm/lib/

Re: [U-Boot] [PATCH 3/9] openrisc: Add cpu files

2011-11-21 Thread Stefan Kristiansson
On Tue, Nov 22, 2011 at 05:46:41AM +0100, Marek Vasut wrote: > > On Mon, Nov 21, 2011 at 11:50:17PM +0100, Marek Vasut wrote: > > > > + printf("CPU: OpenRISC-%x00 (rev %d) @ %d MHz\n", > > > > + ver, rev, (CONFIG_SYS_CLK_FREQ / 100)); > > > > > > The CPU won't tell you it

Re: [U-Boot] [GIT PULL] Pull request: u-boot-staging

2011-11-21 Thread Stefano Babic
On 22/11/2011 06:06, Simon Glass wrote: > Hi Stefano, > Hi Simon, >> CONFLICT (content): Merge conflict in lib/hashtable.c > > For this conflict I am sending a V4 patch to the list. Thanks - I remove in the meantime the two patches that does not apply anymore (the other one is from Andreas), a

Re: [U-Boot] [RFC PATCH v2 03/12] arm, da850: Move the definitions of pinmux configurations to the arch tree

2011-11-21 Thread Christian Riesch
Hello Mike, Thank you for your comments. On Mon, Nov 21, 2011 at 8:03 PM, Mike Frysinger wrote: > On Monday 21 November 2011 11:33:38 Christian Riesch wrote: >> --- /dev/null >> +++ b/arch/arm/include/asm/arch-davinci/da850_pinmux.h >> >> +const struct pinmux_config spi1_pins[] = { >> +     { pin

Re: [U-Boot] [RFC PATCH v2 12/12] arm, davinci: Add support for generating AIS images to the Makefile

2011-11-21 Thread Christian Riesch
Hello Mike, Thank you for your comments. On Mon, Nov 21, 2011 at 8:09 PM, Mike Frysinger wrote: > On Monday 21 November 2011 11:33:47 Christian Riesch wrote: >> --- a/Makefile >> +++ b/Makefile >> >> +$(obj)u-boot.ais:       $(obj)spl/u-boot-spl.bin $(obj)u-boot.bin >> +             $(obj)tools/m

Re: [U-Boot] [PATCH 3/3] ppc4xx: fix PMC440 painit command

2011-11-21 Thread Stefan Roese
Hi Matthias, On Thursday 13 October 2011 15:12:24 matthias.fu...@esd.eu wrote: > From: Matthias Fuchs > > This patch fixes the PMC440 BSP command painit. The implementation was > broken since the step to the new environment handling. After applying this patch to the latest U-Boot version I get

Re: [U-Boot] [RFC PATCH v2 08/12] sf: Add spi_boot() to allow booting from SPI flash in an SPL

2011-11-21 Thread Christian Riesch
Hello Mike, Thank you for your comments. On Mon, Nov 21, 2011 at 8:07 PM, Mike Frysinger wrote: > On Monday 21 November 2011 11:33:43 Christian Riesch wrote: >> --- a/drivers/mtd/spi/Makefile >> +++ b/drivers/mtd/spi/Makefile >> >> +ifdef CONFIG_SPL_BUILD >> +ifdef CONFIG_SPL_SPI_LOAD >> +COBJS-y

Re: [U-Boot] [PATCH] apbh_dma: return error value on timeout

2011-11-21 Thread Stefano Babic
On 18/11/2011 12:17, Wolfram Sang wrote: > When a timeout occurs, the return value is prepared but never returned. > Fix that. > > Signed-off-by: Uwe Kleine-König > Signed-off-by: Wolfram Sang > Cc: Marek Vasut > --- > drivers/dma/apbh_dma.c |2 +- > 1 files changed, 1 insertions(+), 1 del

[U-Boot] [PATCH] tegra2: mmc: Enable card-detect for all interfaces.

2011-11-21 Thread Thierry Reding
This commit drops the interface check for card-detection and leaves it up to the board whether or not a card-detect GPIO is connected. Also, the version field of struct mmc is only valid after the slot has been probed successfully, so depending on that information sort of defeats the purpose of car

[U-Boot] A PART TIME JOB WITH CHINA STEEL COMPANY AVAILABLE WITH AN ATTRACTIVE SALARY

2011-11-21 Thread China Steel Corporation (CSC)
-- Hello: This is to inform you that our company China Steel Corporation (CSC) are in urgent need for a financial coordinator in your region and this is a part time job and it pays very well. If you are interested kindly get back to us on : chinasteelcorporationf...@w.cn with the details bel

[U-Boot] [PATCH 2/4] arm, omap3: Add support for TechNexion modules

2011-11-21 Thread Tapani Utriainen
Add support for TechNexion TAM3517 SoM Signed-off-by: Tapani Utriainen CC: Sandeep Paulraj --- arch/arm/include/asm/mach-types.h |1 board/technexion/tam3517/Makefile | 49 board/technexion/tam3517/tam3517.c | 150 board/technexion/tam3517/tam3517.h | 388 +

[U-Boot] [PATCH 0/4] arm, omap3: Add support for TechNexion modules

2011-11-21 Thread Tapani Utriainen
All, these patches add support for TechNexion TAM3517, TAO3530 and TDM3730 SoMs. regards, //Tapani ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

[U-Boot] [PATCH 1/4] arm, omap3: Add support for TechNexion modules

2011-11-21 Thread Tapani Utriainen
Move duplicate Sitara MUX definitions to arch-omap3/mux.h Signed-off-by: Tapani Utriainen CC: Sandeep Paulraj --- arch/arm/include/asm/arch-omap3/mux.h | 51 ++ board/logicpd/am3517evm/am3517evm.h | 40 -- board/ti/am3517crane/am351

[U-Boot] [PATCH 3/4] arm, omap3: Add support for TechNexion modules

2011-11-21 Thread Tapani Utriainen
Add support for TechNexion TAO3530 SoM Signed-off-by: Tapani Utriainen CC: Sandeep Paulraj --- arch/arm/include/asm/mach-types.h |1 board/technexion/tao3530/Makefile | 43 board/technexion/tao3530/tao3530.c | 207 board/technexion/tao3530/tao3530.h | 382 +

[U-Boot] [PATCH 4/4] arm, omap3: Add support for TechNexion modules

2011-11-21 Thread Tapani Utriainen
Add support for TechNexion TDM3730 SoM Signed-off-by: Tapani Utriainen CC: Sandeep Paulraj --- board/technexion/tdm3730/Makefile | 49 board/technexion/tdm3730/tdm3730.c | 173 board/technexion/tdm3730/tdm3730.h | 383 + boards.cfg

Re: [U-Boot] [PATCH 1/4] arm, omap3: Add support for TechNexion modules

2011-11-21 Thread Wolfgang Denk
Dear Tapani Utriainen, In message <2021164002.2e3a6212@myhost> you wrote: > > Move duplicate Sitara MUX definitions to arch-omap3/mux.h Thanks. > Signed-off-by: Tapani Utriainen > CC: Sandeep Paulraj > --- > arch/arm/include/asm/arch-omap3/mux.h | 51 >

Re: [U-Boot] [PATCH 1/4] arm, omap3: Add support for TechNexion modules

2011-11-21 Thread Wolfgang Denk
Dear Tapani Utriainen, In message <2021164002.2e3a6212@myhost> you wrote: > > Move duplicate Sitara MUX definitions to arch-omap3/mux.h Also, please chose a better Subject. This modification may be a preparation for your other patches, but it is actually in no way related to TechNexion mod

Re: [U-Boot] [PATCH 1/4] arm, omap3: Add support for TechNexion modules

2011-11-21 Thread Stefano Babic
On 21/11/2011 09:40, Tapani Utriainen wrote: > > Move duplicate Sitara MUX definitions to arch-omap3/mux.h > > Signed-off-by: Tapani Utriainen > CC: Sandeep Paulraj > --- > arch/arm/include/asm/arch-omap3/mux.h | 51 > ++ > board/logicpd/am3517evm/am3517evm.h

Re: [U-Boot] [PATCH 2/4] arm, omap3: Add support for TechNexion modules

2011-11-21 Thread Igor Grinberg
Hi Tapani, I think, most of the comments below apply to all the patches in the series. Seems, like subject should be: arm: omap3: On 11/21/11 10:44, Tapani Utriainen wrote: > > Add support for TechNexion TAM3517 SoM This is a very short commit message. > > Signed-off-by: Tapani Utriaine

Re: [U-Boot] [PATCH 1/4] arm, omap3: Add support for TechNexion modules

2011-11-21 Thread Igor Grinberg
Hi Wolfgang, Tapani, On 11/21/11 11:07, Wolfgang Denk wrote: > Dear Tapani Utriainen, > > In message <2021164002.2e3a6212@myhost> you wrote: >> >> Move duplicate Sitara MUX definitions to arch-omap3/mux.h > > Thanks. This has been already done by Ilya and waits for someone to merge, check h

Re: [U-Boot] [PATCH 2/4] arm, omap3: Add support for TechNexion modules

2011-11-21 Thread Wolfgang Denk
Dear Tapani Utriainen, In message <2021164401.5b816ce0@myhost> you wrote: > > Add support for TechNexion TAM3517 SoM > > Signed-off-by: Tapani Utriainen > CC: Sandeep Paulraj > --- > arch/arm/include/asm/mach-types.h |1 > board/technexion/tam3517/Makefile | 49 > board/tech

Re: [U-Boot] [PATCH 3/4] arm, omap3: Add support for TechNexion modules

2011-11-21 Thread Wolfgang Denk
Dear Tapani Utriainen, In message <2021164800.23d1025f@myhost> you wrote: > > Add support for TechNexion TAO3530 SoM Same comments as for previous module. Also again: please chose a beter Subject: line. ... > + /* Set memory size environment variable, depending on revision */ > + s

Re: [U-Boot] [PATCH 4/4] arm, omap3: Add support for TechNexion modules

2011-11-21 Thread Wolfgang Denk
Dear Tapani Utriainen, In message <2021165205.4624b13b@myhost> you wrote: > > Add support for TechNexion TDM3730 SoM Please use a better Subject: and add a bit more of information to the commit message itself. > Signed-off-by: Tapani Utriainen > CC: Sandeep Paulraj > --- > board/technexi

Re: [U-Boot] [PATCH 2/4] arm, omap3: Add support for TechNexion modules

2011-11-21 Thread Stefano Babic
On 21/11/2011 09:44, Tapani Utriainen wrote: > > Add support for TechNexion TAM3517 SoM > > Signed-off-by: Tapani Utriainen > CC: Sandeep Paulraj Hi Tapani, > --- > arch/arm/include/asm/mach-types.h |1 > board/technexion/tam3517/Makefile | 49 > board/technexion/tam3517/tam351

Re: [U-Boot] Micron JS28F128J3F75 Uboot setenv problem

2011-11-21 Thread Jörg Spranger
Hi, Am 18.11.2011 19:10, schrieb Holger Brunck: Hi, On 18/11/11 14:57, Spranger, Jörg wrote: we have a small AT91RM9200 based board, running Linux on it and it worked fine. Now we face 2 major changes: 1. The strataflash JS28F128j3d75 shifted to JS28F128j3f75 2. The uboot is upda

Re: [U-Boot] [PATCH 3/4] arm, omap3: Add support for TechNexion modules

2011-11-21 Thread Stefano Babic
On 21/11/2011 09:48, Tapani Utriainen wrote: > > Add support for TechNexion TAO3530 SoM > > Signed-off-by: Tapani Utriainen > CC: Sandeep Paulraj > --- Hi Tapani, > arch/arm/include/asm/mach-types.h |1 > board/technexion/tao3530/Makefile | 43 > board/technexion/tao3530/tao353

Re: [U-Boot] [PATCH] net: Armada100: Fix compilation warnings

2011-11-21 Thread Prafulla Wadaskar
> -Original Message- > From: Anatolij Gustschin [mailto:ag...@denx.de] > Sent: Sunday, November 20, 2011 3:39 AM > To: Prafulla Wadaskar > Cc: Ajay Bhargav; u-boot@lists.denx.de > Subject: Re: [U-Boot] [PATCH] net: Armada100: Fix compilation > warnings > > Hi Praffula, > > On Mon, 31 Oc

Re: [U-Boot] [PATCH v2 2/3] ARM: add support for LaCie 2Big Network v2

2011-11-21 Thread Prafulla Wadaskar
> -Original Message- > From: Simon Guinot [mailto:si...@sequanux.org] > Sent: Wednesday, November 09, 2011 10:32 PM > To: Prafulla Wadaskar > Cc: u-boot@lists.denx.de; Albert ARIBAUD; Simon Guinot > Subject: [PATCH v2 2/3] ARM: add support for LaCie 2Big Network > v2 > > From: Simon Guin

Re: [U-Boot] [PATCH] Efika: Configure additional regulators for HDMI output

2011-11-21 Thread Stefano Babic
On 21/11/2011 07:16, Marek Vasut wrote: >> 2011/11/20 Marek Vasut >> HDMI output doesn't work with current u-boot-imx tree (no LCD output >>> >>> after >>> 'setenv stdout lcd'), but works with current u-boot-marex/efikasb tree. >>> >>> Ok, so are you debugging it or not ? >> >> No,

Re: [U-Boot] [PATCH v2 1/3] mvsata: fix ide_preinit for missing disks

2011-11-21 Thread Prafulla Wadaskar
> -Original Message- > From: Simon Guinot [mailto:si...@sequanux.org] > Sent: Wednesday, November 09, 2011 10:32 PM > To: Prafulla Wadaskar > Cc: u-boot@lists.denx.de; Albert ARIBAUD; Simon Guinot > Subject: [PATCH v2 1/3] mvsata: fix ide_preinit for missing > disks > > From: Simon Guino

Re: [U-Boot] [PATCH v2] netspace_v2: Read Ethernet MAC address from EEPROM

2011-11-21 Thread Prafulla Wadaskar
> -Original Message- > From: Simon Guinot [mailto:si...@sequanux.org] > Sent: Wednesday, November 16, 2011 4:02 PM > To: Prafulla Wadaskar > Cc: u-boot@lists.denx.de > Subject: Re: [U-Boot] [PATCH v2] netspace_v2: Read Ethernet MAC > address from EEPROM > > Hi Prafulla, > > On Tue, Nov

Re: [U-Boot] [PATCH v2 3/3] ARM: remove duplicated code for LaCie boards

2011-11-21 Thread Prafulla Wadaskar
> -Original Message- > From: Simon Guinot [mailto:si...@sequanux.org] > Sent: Wednesday, November 09, 2011 10:32 PM > To: Prafulla Wadaskar > Cc: u-boot@lists.denx.de; Albert ARIBAUD; Simon Guinot > Subject: [PATCH v2 3/3] ARM: remove duplicated code for LaCie > boards > > From: Simon Gu

Re: [U-Boot] [PATCH v2 2/2] smsc95xx: Debug message cleanup

2011-11-21 Thread Wolfgang Grandegger
Hi Simon, On 11/16/2011 12:22 AM, Simon Glass wrote: > On Tue, Nov 15, 2011 at 1:19 AM, Wolfgang Grandegger wrote: >> Cc: Simon Glass >> Cc: Mike Frysinger >> Signed-off-by: Wolfgang Grandegger >> --- >> drivers/usb/eth/smsc95xx.c | 10 +++--- >> 1 files changed, 3 insertions(+), 7 dele

[U-Boot] Pull request for u-boot-marvell.git

2011-11-21 Thread Prafulla Wadaskar
Dear Albert Kindly pull The following changes since commit d3089594c2483ae8cc8932f25812a4dcf19712af: Sanjeev Premi (1): omap3evm: Add support for EFI partitions are available in the git repository at: u-boot-marvell.git master branch. Ajay Bhargav (1): net: Armada100: Fix comp

Re: [U-Boot] [PATCH] Efika: Configure additional regulators for HDMI output

2011-11-21 Thread Marek Vasut
> On 21/11/2011 07:16, Marek Vasut wrote: > >> 2011/11/20 Marek Vasut > >> > HDMI output doesn't work with current u-boot-imx tree (no LCD output > >>> > >>> after > >>> > 'setenv stdout lcd'), > but works with current u-boot-marex/efikasb tree. > >>> > >>> Ok, so are you debug

Re: [U-Boot] [PATCH] mx5: Correct a warning in clock.c

2011-11-21 Thread Stefano Babic
On 20/11/2011 06:43, Simon Glass wrote: > OK, I have no problem with it, but this problem may not show up for > people using vanilla MAKEALL, hence Stefano's email. Right - I was asking myself why I could not see the warning, now it is clear to me. Acked-by: Stefano Babic Tested on mx51evk. Te

Re: [U-Boot] [PATCH v2 2/2] smsc95xx: Debug message cleanup

2011-11-21 Thread Stefano Babic
On 21/11/2011 11:49, Wolfgang Grandegger wrote: > Hi Simon, > > On 11/16/2011 12:22 AM, Simon Glass wrote: >> On Tue, Nov 15, 2011 at 1:19 AM, Wolfgang Grandegger wrote: >>> Cc: Simon Glass >>> Cc: Mike Frysinger >>> Signed-off-by: Wolfgang Grandegger >>> --- >>> drivers/usb/eth/smsc95xx.c |

Re: [U-Boot] [PATCH] Efika: Configure additional regulators for HDMI output

2011-11-21 Thread Stefano Babic
On 21/11/2011 12:03, Marek Vasut wrote: >> >> Ok - then I'll drop the patch from u-boot-imx, because it is not working >> (or it is not enough) > > No, you don't understand. This patch is important, leave it there! Ok, the patch does not hurt at all > > The code which registers the ipuv3 i

[U-Boot] GREETING IN CHRIST JESUS DEAR KINDLY VIEW THE ATTACHED FILE AND GO THROUGH IT VERY URGENTLY

2011-11-21 Thread From Mrs. GraceManda
___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [PATCH] arm, post: add missing post_time_ms for arm

2011-11-21 Thread Holger Brunck
Hi Heiko, On 09/15/2011 07:34 AM, Heiko Schocher wrote: > Signed-off-by: Heiko Schocher > Cc: Albert ARIBAUD > --- > post/post.c |2 +- > 1 files changed, 1 insertions(+), 1 deletions(-) > > diff --git a/post/post.c b/post/post.c > index 6c59f91..0bfca75 100644 > --- a/post/post.c > +++ b/

Re: [U-Boot] [PATCH V2 1/6] i.mx: introduce the armv7/imx-common folder

2011-11-21 Thread Stefano Babic
On 18/11/2011 08:11, Jason Liu wrote: > In order to support the coming MX6 platform and to reducde > the duplicated code, we had better move some common files > or functions to the imx-common folder for sharing. > > This patch does the following: > - move speed.c file from armv7/mx5/speed.c to arm

[U-Boot] [PATCH 1/2] efikamx: Configure the pins as GPIOs prior to using gpio_get_value.

2011-11-21 Thread Fabio Estevam
Configure the pins as GPIOs prior to using gpio_get_value Cc: Marek Vasut Signed-off-by: Fabio Estevam --- board/efikamx/efikamx.c | 13 + 1 files changed, 9 insertions(+), 4 deletions(-) diff --git a/board/efikamx/efikamx.c b/board/efikamx/efikamx.c index 3d2cc1a..b911891 100644

[U-Boot] [PATCH 2/2] vision2: Configure the pins as GPIOs prior to using gpio_get_value.

2011-11-21 Thread Fabio Estevam
Configure the pin as GPIO prior to using gpio_get_value Signed-off-by: Fabio Estevam --- board/ttcontrol/vision2/vision2.c |5 - 1 files changed, 4 insertions(+), 1 deletions(-) diff --git a/board/ttcontrol/vision2/vision2.c b/board/ttcontrol/vision2/vision2.c index f556d30..e0fa39d 10

[U-Boot] [PATCH 1/2] image: add support for Android's boot image format

2011-11-21 Thread Sebastian Andrzej Siewior
This patch adds support for the Android boot-image format. The header file is from the Android project and got slightly alterted so the struct + its defines are not generic but have something like a namespace. The header file is from bootloader/legacy/include/boot/bootimg.h. The header parsing has

[U-Boot] [PATCH 2/2] usb/gadget: add the fastboot gadget

2011-11-21 Thread Sebastian Andrzej Siewior
This patch contains an implementation of the fastboot protocol on the device side and a little of documentation. The gadget expects the new-style gadget framework. The gadget implements the getvar, reboot, download and reboot commands. What is missing is the flash handling i.e. writting the image t

[U-Boot] Fastboot gadget, v2. repost

2011-11-21 Thread Sebastian Andrzej Siewior
This is a repost of 19.10.2011. This series contains a small version of the fastboot gadget. I removed the flash/mmc/write to media part and re-add once I'm through with this basic thing :) This "basic" gadget supports the retrieval of variables (like serial number), reboot functionality, download

Re: [U-Boot] [PATCH] arm, post: add missing post_time_ms for arm

2011-11-21 Thread Heiko Schocher
Hello Holger, added Prafulla Wadaskar to cc ... Holger Brunck wrote: > Hi Heiko, > > On 09/15/2011 07:34 AM, Heiko Schocher wrote: >> Signed-off-by: Heiko Schocher >> Cc: Albert ARIBAUD >> --- >> post/post.c |2 +- >> 1 files changed, 1 insertions(+), 1 deletions(-) >> >> diff --git a/po

[U-Boot] OpenNand Support?

2011-11-21 Thread Mahavir Prasad
Hello All, We are using MT29F32G08CBABAWP on our board. I would like to know whether the OpenNand interface is already supported in U-Boot? Also, could you please let me know where I can find more information to write OpenNand Interface driver for U-Boot? Thanks and Regards, Mahavir

Re: [U-Boot] [PATCH v4 10/14] OMAP3 SPL: Add identify_nand_chip function

2011-11-21 Thread Tom Rini
On Mon, Nov 21, 2011 at 12:04 AM, Igor Grinberg wrote: > On 11/20/11 16:26, Tom Rini wrote: >> On Sun, Nov 20, 2011 at 12:36 AM, Igor Grinberg >> wrote: >>> Hi Tom, >>> >>> On 11/19/11 00:48, Tom Rini wrote: A number of boards are populated with a PoP chip for both DDR and NAND memory.

Re: [U-Boot] [PATCH 1/2] efikamx: Configure the pins as GPIOs prior to using gpio_get_value.

2011-11-21 Thread Marek Vasut
> Configure the pins as GPIOs prior to using gpio_get_value > > Cc: Marek Vasut > Signed-off-by: Fabio Estevam > --- > board/efikamx/efikamx.c | 13 + > 1 files changed, 9 insertions(+), 4 deletions(-) > > diff --git a/board/efikamx/efikamx.c b/board/efikamx/efikamx.c > index 3d2

Re: [U-Boot] [PATCH] arm, post: add missing post_time_ms for arm

2011-11-21 Thread Holger Brunck
Hi Heiko, On 11/21/2011 03:09 PM, Heiko Schocher wrote: > Holger Brunck wrote: >> On 09/15/2011 07:34 AM, Heiko Schocher wrote: >>> Signed-off-by: Heiko Schocher >>> Cc: Albert ARIBAUD >>> --- >>> post/post.c |2 +- >>> 1 files changed, 1 insertions(+), 1 deletions(-) >>> >>> diff --git a/p

Re: [U-Boot] [PATCH v4 10/14] OMAP3 SPL: Add identify_nand_chip function

2011-11-21 Thread Igor Grinberg
On 11/21/11 16:12, Tom Rini wrote: > On Mon, Nov 21, 2011 at 12:04 AM, Igor Grinberg > wrote: >> On 11/20/11 16:26, Tom Rini wrote: >>> On Sun, Nov 20, 2011 at 12:36 AM, Igor Grinberg >>> wrote: Hi Tom, On 11/19/11 00:48, Tom Rini wrote: > A number of boards are populated wit

Re: [U-Boot] [PATCH V2 2/6] i.mx: add the initial support for freescale i.MX6Q processor

2011-11-21 Thread Stefano Babic
On 18/11/2011 08:11, Jason Liu wrote: > i.MX6Q is freescale quad core processors with ARM cortex_a9 complex. > This patch is to add the initial support for this processor. > > Signed-off-by: Jason Liu > Cc:Stefano Babic > --- > v2:put aips init to c code as Marek suggest >remove the parenthe

Re: [U-Boot] [PATCH 2/2] usb/gadget: add the fastboot gadget

2011-11-21 Thread Stefan Schmidt
Hello. On Mon, 2011-11-21 at 15:09, Sebastian Andrzej Siewior wrote: > This patch contains an implementation of the fastboot protocol on the > device side and a little of documentation. > The gadget expects the new-style gadget framework. Which what hardware do you test this? So far I have only s

Re: [U-Boot] [PATCH V2 4/6] i.mx: serial_mxc: add the i.mx6q support

2011-11-21 Thread Stefano Babic
On 18/11/2011 08:11, Jason Liu wrote: > Signed-off-by: Jason Liu > Cc: Stefano Babic > --- > v2: Cc Stefano > --- > drivers/serial/serial_mxc.c | 10 +++--- > 1 files changed, 7 insertions(+), 3 deletions(-) > > diff --git a/drivers/serial/serial_mxc.c b/drivers/serial/serial_mxc.c > inde

Re: [U-Boot] [PATCH v4 10/14] OMAP3 SPL: Add identify_nand_chip function

2011-11-21 Thread Tom Rini
On 11/21/2011 07:41 AM, Igor Grinberg wrote: > On 11/21/11 16:12, Tom Rini wrote: >> On Mon, Nov 21, 2011 at 12:04 AM, Igor Grinberg >> wrote: >>> On 11/20/11 16:26, Tom Rini wrote: On Sun, Nov 20, 2011 at 12:36 AM, Igor Grinberg wrote: > Hi Tom, > > On 11/19/11 00:48, Tom

[U-Boot] [PATCH] vision2: Fix checkpatch warning

2011-11-21 Thread Fabio Estevam
Fix the following checkpatch warning: WARNING: braces {} are not necessary for single statement blocks Signed-off-by: Fabio Estevam --- board/ttcontrol/vision2/vision2.c |3 +-- 1 files changed, 1 insertions(+), 2 deletions(-) diff --git a/board/ttcontrol/vision2/vision2.c b/board/ttcontr

Re: [U-Boot] Pull request for u-boot-marvell.git

2011-11-21 Thread Albert ARIBAUD
Hi Prafulla, Le 21/11/2011 11:39, Prafulla Wadaskar a écrit : Dear Albert Kindly pull The following changes since commit d3089594c2483ae8cc8932f25812a4dcf19712af: Sanjeev Premi (1): omap3evm: Add support for EFI partitions are available in the git repository at: u-boot-marvell.

[U-Boot] [RFC PATCH v2 09/12] arm, davinci: Add SPL support for DA850 SoCs

2011-11-21 Thread Christian Riesch
This code adds an SPL for booting from SPI flash on DA850 SoCs. Signed-off-by: Christian Riesch Cc: Heiko Schocher Cc: Sandeep Paulraj --- arch/arm/cpu/arm926ejs/davinci/Makefile |3 +- arch/arm/cpu/arm926ejs/davinci/spl.c| 34 ++- 2 files changed, 35 inse

[U-Boot] [RFC PATCH v2 02/12] arm, hawkboard: Remove obsolete struct pinmux_config i2c_pins

2011-11-21 Thread Christian Riesch
The configuration in struct pinmux_config i2c_pins does not configure the pins for i2c but for uart. Since this function is already configured by struct pinmux_config uart2_pins the i2c_pins struct is obsolete. Signed-off-by: Christian Riesch Cc: Heiko Schocher Cc: Syed Mohammed Khasim Cc: Sugh

[U-Boot] [RFC PATCH v2 08/12] sf: Add spi_boot() to allow booting from SPI flash in an SPL

2011-11-21 Thread Christian Riesch
Signed-off-by: Christian Riesch Cc: Heiko Schocher --- doc/README.SPL |1 + drivers/mtd/spi/Makefile |6 drivers/mtd/spi/spi_spl_load.c | 60 include/spi_flash.h|2 + lib/Makefile |

[U-Boot] [RFC PATCH v2 00/12] *** SUBJECT HERE ***

2011-11-21 Thread Christian Riesch
*** BLURB HERE *** Christian Riesch (12): arm, davinci: Move pinmux functions from board to arch tree arm, hawkboard: Remove obsolete struct pinmux_config i2c_pins arm, da850: Move the definitions of pinmux configurations to the arch tree arm, da830: Move the definitions of pinmux conf

[U-Boot] [RFC PATCH v2 05/12] arm, davinci: Remove duplication of pinmux configuration code

2011-11-21 Thread Christian Riesch
This patch replaces the pinmux configuration code in arch/arm/cpu/arm926ejs/davinci/da850_lowlevel.c by the code from arch/arm/cpu/arm926ejs/davinci/pinmux.c. Signed-off-by: Christian Riesch Cc: Sandeep Paulraj Cc: Sudhakar Rajashekhara Cc: Heiko Schocher --- arch/arm/cpu/arm926ejs/davinci/da

[U-Boot] [RFC PATCH v2 11/12] mkimage: Fix variable length header support

2011-11-21 Thread Christian Riesch
Support for variable length images like AIS image was introduced in commit f0662105b674a3874227316abf8536bebc9b5995. A parameter "-s" was also introduced to prohibit copying of the image file automatically in the main program. However, this parameter was implemented incorrectly and the image file w

[U-Boot] [RFC PATCH v2 10/12] arm, da850evm: Add an SPL for SPI boot

2011-11-21 Thread Christian Riesch
Signed-off-by: Christian Riesch Cc: Heiko Schocher Cc: Sandeep Paulraj Cc: Sudhakar Rajashekhara --- board/davinci/da8xxevm/u-boot-spl.lds | 73 + include/configs/da850evm.h| 53 +++- 2 files changed, 125 insertions(+), 1 dele

[U-Boot] [RFC PATCH v2 03/12] arm, da850: Move the definitions of pinmux configurations to the arch tree

2011-11-21 Thread Christian Riesch
The boards in board/davinci/da8xxevm/ define pinmux_config[] vectors that contain pinmux configurations for emac, uarts, memory controllers... This patch moves common configurations to a header file in the arch tree for the da850evm and the hawkboard. Signed-off-by: Christian Riesch Cc: Sandeep P

[U-Boot] [RFC PATCH v2 07/12] arm: printf() is not available in some SPL configurations

2011-11-21 Thread Christian Riesch
This patch avoids build breakage for SPLs that do not support printf. Signed-off-by: Christian Riesch Cc: Wolfgang Denk Cc: Tom Rini --- arch/arm/lib/eabi_compat.c |3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/arch/arm/lib/eabi_compat.c b/arch/arm/lib/eabi_compat.c

[U-Boot] [RFC PATCH v2 06/12] arm, davinci: Fix clear bss loop for zero length bss

2011-11-21 Thread Christian Riesch
This patch fixes the clear bss loop for bss sections that have zero length, i.e., where __bss_start == __bss_end__. Signed-off-by: Christian Riesch Cc: Albert Aribaud Cc: Heiko Schocher --- arch/arm/cpu/arm926ejs/start.S |8 +--- 1 files changed, 5 insertions(+), 3 deletions(-) diff -

[U-Boot] [RFC PATCH v2 04/12] arm, da830: Move the definitions of pinmux configurations to the arch tree

2011-11-21 Thread Christian Riesch
The boards in board/davinci/da8xxevm/ define pinmux_config[] vectors that contain pinmux configurations for emac, uarts, memory controllers... This patch moves the pinmux configurations to a header file in the arch tree for the da830evm. Signed-off-by: Christian Riesch Cc: Sandeep Paulraj Cc: He

[U-Boot] [RFC PATCH v2 01/12] arm, davinci: Move pinmux functions from board to arch tree

2011-11-21 Thread Christian Riesch
Signed-off-by: Christian Riesch Cc: Sandeep Paulraj Cc: Heiko Schocher Cc: Sudhakar Rajashekhara Cc: Syed Mohammed Khasim Cc: Sughosh Ganu Cc: Nick Thompson Cc: Stefano Babic --- arch/arm/cpu/arm926ejs/davinci/Makefile|2 +- .../arm/cpu/arm926ejs/davinci/pinmux.c

[U-Boot] [RFC PATCH v2 12/12] arm, davinci: Add support for generating AIS images to the Makefile

2011-11-21 Thread Christian Riesch
Signed-off-by: Christian Riesch Cc: Stefano Babic Cc: Heiko Schocher --- .gitignore |1 + Makefile | 10 ++ board/davinci/da8xxevm/config.mk |5 + 3 files changed, 16 insertions(+), 0 deletions(-) create mode 100644 board/davi

Re: [U-Boot] [PATCH 2/9] ARM: cerf250: re-add MACH_TYPE_PXA_CERF

2011-11-21 Thread Albert ARIBAUD
Hi Marek, I see delivery failure to the address, this board is dead. Time for a good-bye patch? Yes, let us drop the board. If someone wants to resurrect it, they can step forward any time. Amicalement, -- Albert. ___ U-Boot mailing list U-Boot@li

Re: [U-Boot] [PATCH 0/9] Fix build issues for some ARM boards

2011-11-21 Thread Albert ARIBAUD
Hi Anatolij, Le 19/11/2011 12:59, Anatolij Gustschin a écrit : Build breakage still pollutes the MAKEALL log. Fix build problems for some ARM based boards. The patches can be pulled from git://git.denx.de/u-boot-video.git arm-fixes I also fixed davinci_schmoogie and davinci_sonata, but there

  1   2   >