Re: [U-Boot] How does u-boot know where to put its start code?

2011-04-20 Thread Rogan Dawes
On 2011/04/20 7:42 AM, Albert ARIBAUD wrote: > Le 20/04/2011 04:23, Hebbar, Gururaja a écrit : >> Hi, >> >> On Wed, Apr 20, 2011 at 02:43:23, Rogan Dawes wrote: >>> Hi folks, >>> >>> I'm trying to understand a bit more about how u-boot creates the >>> image, such that the CPU reset vector is pointi

Re: [U-Boot] Update and Cut down mach types

2011-04-20 Thread Detlev Zundel
Hi Michael, [...] > I did that and got the following reply (without quotes due to cut-and-paste) [...] > The normal URL which you fetch the file from (as contained within the > file) will give you the full listing rather than the cut-down version. > There really is no need for uboot to go picki

Re: [U-Boot] [PATCH v2 3/6] TFTP: rename "server" to "remote"

2011-04-20 Thread Detlev Zundel
Hi Luca, > Hi, > > just a few e-mails ago along this thread Albert Aribaud wrote: > >> My opinion is that you should make sure that at least the code you touch >> is checkpatch-clean, so yes, you should fix that; but there is no need >> to submit 'checkpatch-compliance' patches. Just fix the li

Re: [U-Boot] UEC phy not working on first try

2011-04-20 Thread Detlev Zundel
Hi Matthias, >> > I am using u-boot.2010.09 on a MPC8568-based board. >> > >> > When trying to boot over one of the UEC network interfaces, it is not >> > working instantly. The cable is connected from the beginning, but I >> > have to issue a manual 'boot' command, sometimes even multiple times >

Re: [U-Boot] How does u-boot know where to put its start code?

2011-04-20 Thread Albert ARIBAUD
Hi Rogan, Le 20/04/2011 09:46, Rogan Dawes a écrit : > On 2011/04/20 7:42 AM, Albert ARIBAUD wrote: >> Le 20/04/2011 04:23, Hebbar, Gururaja a écrit : >>> Hi, >>> >>> On Wed, Apr 20, 2011 at 02:43:23, Rogan Dawes wrote: Hi folks, I'm trying to understand a bit more about how u-boot

Re: [U-Boot] [PATCH v2 3/6] TFTP: rename "server" to "remote"

2011-04-20 Thread Detlev Zundel
Hi Luca, > Il 19/04/2011 16:18, Detlev Zundel ha scritto: >> Hi Luca, >> >>> With the upcoming TFTP server implementation, the remote node can be >>> either a client or a server, so avoid ambiguities. >>> >>> Signed-off-by: Luca Ceresoli >>> Cc: Wolfgang Denk >>> --- >>> Changes in v2: >>> - fix

Re: [U-Boot] Update and Cut down mach types

2011-04-20 Thread Albert ARIBAUD
Le 19/04/2011 15:45, Paulraj, Sandeep a écrit : > > >> >> Hello Sandeep, Wolfgang >> >> Am 19.04.2011 14:42, schrieb Paulraj, Sandeep: >>> Wolfgang, Albert, >>> >>> Russell King sent some updates to the linux kernel for mach-types. >>> >>> http://git.kernel.org/?p=linux/kernel/git/torvalds/linux- >

[U-Boot] TFTP - check for len == 0 before storing

2011-04-20 Thread David Andrey
Hello, I had a problem with an old TFTP Server which is sending a second "last" data block with "len == 0" at end. It's clearly not RFC conform, but I still made a additional check in u-boot/tftp to avoid a wrong "filesize" value. This wrong filesize value caused some trouble by NAND operations.

Re: [U-Boot] Update and Cut down mach types

2011-04-20 Thread Igor Grinberg
Hi Sandeep, Albert, Wolfgang, On 04/19/11 15:42, Paulraj, Sandeep wrote: > Wolfgang, Albert, > > Russell King sent some updates to the linux kernel for mach-types. > > http://git.kernel.org/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commitdiff;h=6f82f4db80189281a8ac42f2e72396accb719b57 > > He al

Re: [U-Boot] Please pull u-boot-ti/master

2011-04-20 Thread Albert ARIBAUD
Hi Sandeep, Le 19/04/2011 16:02, s-paul...@ti.com a écrit : > The following changes since commit 75cb6fbe7293fbde04662124bf8f4dbef0dbce44: >Albert Aribaud (1): > Merge remote-tracking branch 'u-boot-ti/master' > > are available in the git repository at: > >git://git.denx.de/u-boot

[U-Boot] Policy for checkpatch usage?

2011-04-20 Thread Detlev Zundel
Hi, currently our CodingStyle[1] has this to say about checkpatch.pl: Make sure to run the checkpatch.pl script from the Linux source tree to check your patches. Note that this should be done before posting on the mailing list! Now this is not very clear as to what should be done with rega

Re: [U-Boot] [PATCH V3 1/2] MX5: factor out boot cause funciton to common code

2011-04-20 Thread Stefano Babic
On 04/18/2011 11:19 AM, Detlev Zundel wrote: > Hi Stefano, > >> On 04/15/2011 02:47 PM, Fabio Estevam wrote: +char *get_reset_cause(void) +{ +u32 cause; +struct src *src_regs = (struct src *)SRC_BASE_ADDR; + +cause = readl(&src_regs->srsr); >>> >>> Yo

Re: [U-Boot] Policy for checkpatch usage?

2011-04-20 Thread Graeme Russ
On Wednesday, April 20, 2011, Detlev Zundel wrote: > Hi, > > > As a base for discussion, what about this: > >  Use common sense in interpreting the results of checkpatch. Warnings >  that clearly only make sense in the Linux kernel can be ignored.  Also >  warnings produced for _context lines_

Re: [U-Boot] How does u-boot know where to put its start code?

2011-04-20 Thread Rogan Dawes
On 2011/04/20 10:29 AM, Albert ARIBAUD wrote: > Hi Rogan, > > Le 20/04/2011 09:46, Rogan Dawes a écrit : >> On 2011/04/20 7:42 AM, Albert ARIBAUD wrote: >>> Le 20/04/2011 04:23, Hebbar, Gururaja a écrit : Hi, On Wed, Apr 20, 2011 at 02:43:23, Rogan Dawes wrote: > Hi folks, >

[U-Boot] [PATCH 1/1] mx5: drop boot cause code from board support code

2011-04-20 Thread Jason Liu
The boot cause code has been factor out to soc common code,we need drop the part from the board support code Signed-off-by: Jason Liu --- board/efikamx/efikamx.c | 30 ++ board/freescale/mx51evk/mx51evk.c | 26 ++ board/freescale/

[U-Boot] [PATCH V5 1/2] MX5: factor out boot cause funciton to common code

2011-04-20 Thread Jason Liu
factor out boot cause funciton to common code to avoid the duplicate code in each board support package Signed-off-by: Jason Liu --- change since v4: - make common code soc specific changes since v3: - add full boot reset cause --- arch/arm/cpu/armv7/mx5/soc.c | 28

[U-Boot] [PATCH V5 2/2] MX53: support for freescale MX53LOCO board

2011-04-20 Thread Jason Liu
This patch add initial support for freescale MX53LOCO board. Network(FEC),SD/MMC, UART have been supported by this patch. Signed-off-by: Jason Liu --- changes since v4: - remove the boot reset cause from board support changes since v3: - include other two small patch into this commit, mx53loco: s

Re: [U-Boot] [PATCH v2 3/6] TFTP: rename "server" to "remote"

2011-04-20 Thread Luca Ceresoli
Detlev Zundel wrote: > Hi Luca, > >> Il 19/04/2011 16:18, Detlev Zundel ha scritto: >>> Hi Luca, >>> With the upcoming TFTP server implementation, the remote node can be either a client or a server, so avoid ambiguities. Signed-off-by: Luca Ceresoli Cc: Wolfgang Denk -

Re: [U-Boot] [PATCH V3 1/2] MX5: factor out boot cause funciton to common code

2011-04-20 Thread Jason Liu
Hi, Stefano, 2011/4/20 Stefano Babic : > On 04/18/2011 11:19 AM, Detlev Zundel wrote: >> Hi Stefano, >> >>> On 04/15/2011 02:47 PM, Fabio Estevam wrote: > +char *get_reset_cause(void) > +{ > +    u32 cause; > +    struct src *src_regs = (struct src > *)SRC_BASE_ADDR; > + >>

[U-Boot] [PATCH v5 0/2] Add DIG297 board and OMAP3 fixes

2011-04-20 Thread Luca Ceresoli
Hi all, this patch series cleans up some OMAP3 stuff and adds DIG297 board support. New in v5: - rebased against u-boot-ti master (007965dbe4dae12); - updated to support the new am3517 crane board; - removed two patches that have already been pushed to u-boot-ti master. Luca Luca Ceresoli (2

[U-Boot] [PATCH v5 1/2] ARMV7: OMAP3: Cleanup extern variables in mem.c

2011-04-20 Thread Luca Ceresoli
Removed boot_flash_* extern variables. boot_flash_type was totally unused. The other ones were actually constants, so they have been replaced with #defines in the board config files. Signed-off-by: Luca Ceresoli Cc: Wolfgang Denk Cc: Albert Aribaud Cc: Sandeep Paulraj --- Changes in v4: - thi

[U-Boot] [PATCH v5 2/2] ARMV7: OMAP3: Add support for Comelit DIG297 board

2011-04-20 Thread Luca Ceresoli
Board support for the DIG297 board manufactured by Comelit Group SpA. It is a custom board based on the BeagleBoard by Texas Instruments. The board support is based on the BeagleBoard implementation. Signed-off-by: Luca Ceresoli Cc: Wolfgang Denk Cc: Albert Aribaud Cc

Re: [U-Boot] [PATCH] PowerPC: Move -fPIC flag to common place

2011-04-20 Thread Joakim Tjernlund
Wolfgang Denk wrote on 2011/04/20 00:41:01: > > Dear Joakim Tjernlund, > > In message > you > wrote: > > > > > Yes, but you yorself pointed out that commit 337f5f5 missed a large > > > number of boards, leaving the tree in a inconsistent state. Should we > > > not revert that one as well? > > >

Re: [U-Boot] Policy for checkpatch usage?

2011-04-20 Thread Graeme Russ
On Wednesday, April 20, 2011, Graeme Russ wrote: > On Wednesday, April 20, 2011, Detlev Zundel wrote: >> Hi, >> > >> >> As a base for discussion, what about this: >> >>   Use common sense in interpreting the results of checkpatch. Warnings >>   that clearly only make sense in the Linux kernel can

Re: [U-Boot] UEC phy not working on first try

2011-04-20 Thread DUNDA Matthias
Hi Detlef, > >> > I am using u-boot.2010.09 on a MPC8568-based board. > Ah! I didn't realize that you are in the excellent position to have > one > good and one bad commit. Simply use git bisect to find the problematic > commit and show that to us. so far I traced it down to the adjust_link ca

[U-Boot] [PATCH] QorIQ corenet_ds.h: Wrong PCIe 3 virtual address

2011-04-20 Thread Trübenbach , Ralf
This patch fixes a wrong address define in corenet_ds.h (used by P4080DS.h, P3041DS.h, P5020DS.h). Since board/Freescale/corenet_ds/tlb.c does not use the CONFIG_SYS_PCIE3_MEM_VIRT define (uses CONFIG_SYS_PCIE1_MEM_VIRT with a fix offset instead) this has no effect to the functionality. But it

Re: [U-Boot] UEC phy not working on first try

2011-04-20 Thread Detlev Zundel
Hi Matthias, >> >> > I am using u-boot.2010.09 on a MPC8568-based board. > >> Ah! I didn't realize that you are in the excellent position to have >> one >> good and one bad commit. Simply use git bisect to find the problematic >> commit and show that to us. > > so far I traced it down to the adj

[U-Boot] checkpatch - theory and practice [was: [PATCH v2 3/6] TFTP: rename "server" to "remote"]

2011-04-20 Thread Detlev Zundel
Hi Luca, >>> It's needed for checkpatch compliance. >> I'm trying to understand the problems involved, but looking at this >> again, it is not clear to me what you say here. When I run your version >> 1 of the patches (where you only do the rename) through checkpatch, I >> get: >> >>WARNING:

Re: [U-Boot] Policy for checkpatch usage?

2011-04-20 Thread Detlev Zundel
Hi Graeme, > On Wednesday, April 20, 2011, Detlev Zundel wrote: >> Hi, >> > >> >> As a base for discussion, what about this: >> >>  Use common sense in interpreting the results of checkpatch. Warnings >>  that clearly only make sense in the Linux kernel can be ignored.  Also >>  warnings produ

Re: [U-Boot] Policy for checkpatch usage?

2011-04-20 Thread Detlev Zundel
Hi Graeme, > On Wednesday, April 20, 2011, Graeme Russ wrote: >> On Wednesday, April 20, 2011, Detlev Zundel wrote: >>> Hi, >>> >> >>> >>> As a base for discussion, what about this: >>> >>>   Use common sense in interpreting the results of checkpatch. Warnings >>>   that clearly only make sense

Re: [U-Boot] UEC phy not working on first try

2011-04-20 Thread Charles Krinke
Hmmm. I'm not seeing a delayed link behaviour at all and I am using the latest u-boot-2011.03 on an 8323ERDB which has two UEC's. On Apr 19, 2011 11:07 PM, "DUNDA Matthias" wrote: >> > I am using u-boot.2010.09 on a MPC8568-based board. >> > >> > When trying to boot over one of the UEC network int

Re: [U-Boot] TFTP - check for len == 0 before storing

2011-04-20 Thread Detlev Zundel
Hi David, > I had a problem with an old TFTP Server which is sending a second "last" > data block with "len == 0" at end. It's clearly not RFC conform, but I > still made a additional check in u-boot/tftp to avoid a wrong "filesize" > value. This wrong filesize value caused some trouble by NAND op

[U-Boot] DreamPlug bootloader replacement

2011-04-20 Thread Jason
All, I'm attempting to replace u-boot on the new dreamplug. This is different from the guruplug and sheevaplug in that the bootloader is stored in a 1MB (!) flash connected via SPI. I was able to dump the factory u-boot to a file, and it's header looks strikingly similar to the u-boot.kwb image

Re: [U-Boot] [PATCH] QorIQ corenet_ds.h: Wrong PCIe 3 virtual address

2011-04-20 Thread Kumar Gala
On Apr 20, 2011, at 8:04 AM, Trübenbach, Ralf wrote: > This patch fixes a wrong address define in corenet_ds.h (used by > P4080DS.h, P3041DS.h, P5020DS.h). > > Since board/Freescale/corenet_ds/tlb.c does not use the > CONFIG_SYS_PCIE3_MEM_VIRT define (uses CONFIG_SYS_PCIE1_MEM_VIRT with a > f

Re: [U-Boot] [PATCH v5 0/2] Add DIG297 board and OMAP3 fixes

2011-04-20 Thread Paulraj, Sandeep
> > Hi all, > > this patch series cleans up some OMAP3 stuff and adds DIG297 board support. > > New in v5: > - rebased against u-boot-ti master (007965dbe4dae12); > - updated to support the new am3517 crane board; > - removed two patches that have already been pushed to u-boot-ti master. >

[U-Boot] Please pull u-boot-ti/master

2011-04-20 Thread s-paulraj
The following changes since commit 104d04ed57d5de5d11fcd5b2242dadd325e9ce8f: Albert Aribaud (1): Merge remote-tracking branch 'u-boot-ti/master' are available in the git repository at: git://git.denx.de/u-boot-ti.git master Luca Ceresoli (2): ARMV7: OMAP3: Cleanup extern variab

[U-Boot] Mainlining android fastboot support to upstream u-boot

2011-04-20 Thread John Rigby
On Tue, Apr 19, 2011 at 12:33 PM, Wolfgang Denk wrote: > Dear Jim Huang, > > In message you wrote: >> >> My idea is that we require abstract 'bootloader' component in Android >> device/linaro/common, and (patched) 'u-boot' would be the provider of >> 'bootloader' component in >> device/linaro/Lin

Re: [U-Boot] Policy for checkpatch usage?

2011-04-20 Thread Scott Wood
On Wed, 20 Apr 2011 20:15:40 +1000 Graeme Russ wrote: > On Wednesday, April 20, 2011, Detlev Zundel wrote: > > Hi, > > > > > > > As a base for discussion, what about this: > > > >  Use common sense in interpreting the results of checkpatch. Warnings > >  that clearly only make sense in the Li

Re: [U-Boot] Update and Cut down mach types

2011-04-20 Thread Michael Schwingen
On 04/20/2011 10:58 AM, Igor Grinberg wrote: > Hi Sandeep, Albert, Wolfgang, > > On 04/19/11 15:42, Paulraj, Sandeep wrote: >> Wolfgang, Albert, >> >> Russell King sent some updates to the linux kernel for mach-types. >> >> http://git.kernel.org/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commitdi

Re: [U-Boot] Update and Cut down mach types

2011-04-20 Thread Albert ARIBAUD
Le 20/04/2011 19:15, Michael Schwingen a écrit : > Why don't we pull the original master mach-types file, and generate the > required .h file(s) during make using the same (or a similar) script > Linux uses? Hmm, because it would mean maintaining the same script as Linux uses. With the current s

Re: [U-Boot] (no subject)

2011-04-20 Thread jeffhemstreet
http://www.industrialresourcesmanagement.com/cool01.11.php?ID=686 ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] [RFC PATCH] arm: provide a CONFIG flag for disabling relocation

2011-04-20 Thread Simon Glass
On Fri, Mar 25, 2011 at 11:35 AM, Albert ARIBAUD wrote: > Le 25/03/2011 17:12, Aneesh V a écrit : > >> Another problem I have with relocation is that it makes debugging with >> JTAG debugers more difficult. The addresses of symbols in the ELF >> target are no longer valid. Of course, you can load

Re: [U-Boot] Please pull u-boot-ti/master

2011-04-20 Thread Albert ARIBAUD
Hi Sandeep, Le 20/04/2011 17:16, s-paul...@ti.com a écrit : > The following changes since commit 104d04ed57d5de5d11fcd5b2242dadd325e9ce8f: >Albert Aribaud (1): > Merge remote-tracking branch 'u-boot-ti/master' > > are available in the git repository at: > >git://git.denx.de/u-boot

[U-Boot] Please pull u-boot-mmc.git phylib

2011-04-20 Thread Andy Fleming
I've put all of the phylib patches in this tree. Please pull them from here. The following changes since commit 73e5476e1edf1b860dbd9b5fc21ef32ac1b551ba: Fabio Estevam (1): MAINTAINERS: fix email address case are available in the git repository at: git://www.denx.de/git/u-boot-mmc.g

Re: [U-Boot] [PATCH] Fix the issue of _end symbol not being found while building

2011-04-20 Thread Albert ARIBAUD
Hi Sughosh, Le 10/04/2011 22:16, Sughosh Ganu a écrit : > Fix the nand_spl build for the hawkboard > > Signed-off-by: Sughosh Ganu > --- > nand_spl/board/davinci/da8xxevm/u-boot.lds |2 ++ > 1 files changed, 2 insertions(+), 0 deletions(-) > > diff --git a/nand_spl/board/davinci/da8xxevm/u-

Re: [U-Boot] [PATCH] Strip dead code on omap3 devices

2011-04-20 Thread Charles Manning
On Wednesday 20 April 2011 15:51:56 Charles Manning wrote: > Garbage collect code that isn't used. > > Saves a good few kbytes. Sorry folks. THis patch is broken. I'll submit another. Charles ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.d

Re: [U-Boot] Fix for overlapping sections?

2011-04-20 Thread Charles Manning
On Tuesday 19 April 2011 11:20:47 Ciummo, Larry (DS-1) wrote: > Designation: Non-SSA/Finmeccanica > > A while back there was a fix for the overlapping section link problem > (see below) involving changing some sort of global. Does anyone have a > pointer to the change. I'm using a fairly old uboo

Re: [U-Boot] [PATCH v5] MX31: Introduce get_reset_cause()

2011-04-20 Thread Albert ARIBAUD
Le 19/04/2011 17:17, Detlev Zundel a écrit : > Hi Fabio, > >> Signed-off-by: Fabio Estevam >> --- >> Changes since v4: >> - Make get_reset_cause CPU specific code and no need to >> add any board specific call. >> >> arch/arm/cpu/arm1136/mx31/generic.c | 29 - >> 1 f

Re: [U-Boot] [PATCH V2 0/3] Fix hang when loading U-Boot from SPI or NAND

2011-04-20 Thread Albert ARIBAUD
Hi Tom, Le 15/04/2011 00:09, Tom Warren a écrit : > This series of patches fixes a hang seen when loading U-Boot from SPI > or NAND on Seaboard and Harmony due to a missing PLLX init. It also > corrects a UARTD bit error in clk_rst.h, and adds rudimentary GPIO > support so that the UART on Seaboar

Re: [U-Boot] Update and Cut down mach types

2011-04-20 Thread Michael Schwingen
On 04/20/2011 07:49 PM, Albert ARIBAUD wrote: > Le 20/04/2011 19:15, Michael Schwingen a écrit : > >> Why don't we pull the original master mach-types file, and generate the >> required .h file(s) during make using the same (or a similar) script >> Linux uses? > Hmm, because it would mean maintaini

Re: [U-Boot] Fix for overlapping sections?

2011-04-20 Thread Albert ARIBAUD
Le 20/04/2011 21:03, Charles Manning a écrit : > On Tuesday 19 April 2011 11:20:47 Ciummo, Larry (DS-1) wrote: >> Designation: Non-SSA/Finmeccanica >> >> A while back there was a fix for the overlapping section link problem >> (see below) involving changing some sort of global. Does anyone have a

Re: [U-Boot] [PATCH] PowerPC: Move -fPIC flag to common place

2011-04-20 Thread Wolfgang Denk
Dear Joakim Tjernlund, In message you wrote: > > OK, I managed to script the change, patch last in mail. Thanks. > However CROSS_COMPILE=powerpc-softfloat-linux-gnu- ./MAKEALL TQM862L TQM855L > TQM860L > does not build for me, same problem as you got. > Even if I manually back out the 2 pat

Re: [U-Boot] [PATCH] da850evm: fix NAND WSTROBE and TA timings

2011-04-20 Thread Paulraj, Sandeep
> The current NAND timings, introduced in commit > a3f88293ddd13facd734769c1664d35ab4ed681f da850evm: setup the NAND flash > timings , incorrectly set WSTROBE and TA to 0. A more recent inspection of > the > values set by the Linux kernel indicates that these should be set to 1. > > Set the WSTR

Re: [U-Boot] DreamPlug bootloader replacement

2011-04-20 Thread Jason
On Wed, Apr 20, 2011 at 12:57:10PM -0700, Drassal, Allan wrote: > I have posted instructions in the following place, please take a look. > I have been able to do a full dump and reload of the DreamPlug. > I would be more than happy to entertain any questions. > > http://www.newit.co.uk/forum/index

Re: [U-Boot] Please pull u-boot-mmc.git

2011-04-20 Thread Wolfgang Denk
Dear Andy Fleming, In message <1302741144-8656-1-git-send-email-aflem...@freescale.com> you wrote: > I apologize for the long delay. Hopefully now that we're beginning to push > out all of this p4080 stuff, I'll be able to stay on top of what's happening > outside of Freescale. > > The following

Re: [U-Boot] [i2c] Pull request

2011-04-20 Thread Wolfgang Denk
Dear Heiko Schocher, In message <4da696e7.5090...@denx.de> you wrote: > Hello Wolfgang, > > please pull from: > > The following changes since commit 73e5476e1edf1b860dbd9b5fc21ef32ac1b551ba: > > MAINTAINERS: fix email address case (2011-04-13 22:40:51 +0200) > > are available in the git repo

Re: [U-Boot] Pull request: nand flash

2011-04-20 Thread Wolfgang Denk
Dear Scott Wood, In message <20110415212850.ga25...@schlenkerla.am.freescale.net> you wrote: > The following changes since commit 73e5476e1edf1b860dbd9b5fc21ef32ac1b551ba: > > MAINTAINERS: fix email address case (2011-04-13 22:40:51 +0200) > > are available in the git repository at: > git://

Re: [U-Boot] Pull request: u-boot-fdt

2011-04-20 Thread Wolfgang Denk
Dear Gerald Van Baren, In message <4dab91e9.3040...@cideas.com> you wrote: > Dear Wolfgang, > > Sorry for the late pull request, due to other priorities (not the least > being filling out tax forms :-/) I was unable to get this out sooner. > > I only have a one-liner bugfix by Kyle Moffett in t

Re: [U-Boot] Pull request u-boot-blackfin.git (misc branch)

2011-04-20 Thread Wolfgang Denk
Dear Mike Frysinger, In message <1302724928-24360-1-git-send-email-vap...@gentoo.org> you wrote: > Wolfgang: I put together this branch of my random little patches over > the tree. These are the latest versions, and haven't garned any new > feedback (if any at all). Just in case pulling a branch

Re: [U-Boot] Please pull u-boot-mmc.git phylib

2011-04-20 Thread Wolfgang Denk
Dear Andy Fleming, In message <1303325302-10258-1-git-send-email-aflem...@freescale.com> you wrote: > I've put all of the phylib patches in this tree. Please pull > them from here. Thanks a lot. > The following changes since commit 73e5476e1edf1b860dbd9b5fc21ef32ac1b551ba: > Fabio Estevam (1)

Re: [U-Boot] Pull request: u-boot-fdt

2011-04-20 Thread Jerry Van baren
On 4/20/2011 4:54 PM, Wolfgang Denk wrote: > Dear Gerald Van Baren, [snip] >> I only have a one-liner bugfix by Kyle Moffett in the pull. Grant's >> changes "[PATCH 0/6] ARM device tree support improvements" look good in >> principle, but I had a compilation error using the PPC target we need to

Re: [U-Boot] [PATCH] Add 'led' command

2011-04-20 Thread Wolfgang Denk
Dear Jason Kridner, In message <1299013329-29931-1-git-send-email-jkrid...@beagleboard.org> you wrote: > This patch allows any board implementing the coloured LED API > to control the LEDs from the console. > > led [green | yellow | red | all ] [ on | off ] > > or > > led [ 1 | 2 | 3 | all ]

Re: [U-Boot] [PATCH] BeagleBoard: Added LED driver

2011-04-20 Thread Wolfgang Denk
Dear Jason Kridner, In message <1299013343-29963-1-git-send-email-jkrid...@beagleboard.org> you wrote: > Added LED driver using status_led. USR0 is set to monitor the boot > status. USR1 is set to be the green LED. > > Included adding configuration and command to the default configuration. >

Re: [U-Boot] [PATCH 0/5] Add target EDOSK2674

2011-04-20 Thread Wolfgang Denk
Dear Yoshinori Sato, In message <87zkpe9dj9.wl%ys...@users.sourceforge.jp> you wrote: > Hi lists, > > This patches added new target EDOSK2674. > Please comments. > Thanks. As a general note, it would be a good idea to include some comments about hwat sort this CPU is, why it is implemented here

Re: [U-Boot] [PATCH] tools/env: fix redundant env flag comparison

2011-04-20 Thread Wolfgang Denk
Dear Jon Povey, In message <1299820256-29757-1-git-send-email-jon.po...@racelogic.co.uk> you wrote: > This fixes two bugs with comparison of redundant environment flags on > read. > > flag0 and flag1 in fw_env_open() were declared signed instead of > unsigned char breaking BOOLEAN mode "== 0xFF"

Re: [U-Boot] DreamPlug bootloader replacement

2011-04-20 Thread Drassal, Allan
I have posted instructions in the following place, please take a look. I have been able to do a full dump and reload of the DreamPlug. I would be more than happy to entertain any questions. http://www.newit.co.uk/forum/index.php/topic,1977.0.html I have also built a current version of openocd (0.

Re: [U-Boot] [PATCH V8 1/6] pxa: move i2c driver to the common place

2011-04-20 Thread Wolfgang Denk
Dear Lei Wen, In message <1301990460-31029-2-git-send-email-lei...@marvell.com> you wrote: > For better sharing with other platform other than pxa's, > it is more convenient to put the driver to the common place. > > Signed-off-by: Lei Wen > --- > Changelog: > v2: rename previous pxa_i2c to mvi2

Re: [U-Boot] [PATCH V2] Ethernut 5 board support

2011-04-20 Thread Wolfgang Denk
Dear Harald Kipp, In message <4d7defb5.7010...@egnite.de> you wrote: > Add support for the Ethernut 5 open hardware design, based > on Atmel's AT91SAM9XE512 SoC. > > Signed-off-by: Harald Kipp > --- > > V2: > - Fix several coding style issues. > - Remove Ethernet MAC address from default envi

[U-Boot] [PATCH] BeagleBoard: add xM rev C to ID table

2011-04-20 Thread Jason Kridner
Signed-off-by: Jason Kridner --- board/ti/beagle/beagle.c | 10 ++ board/ti/beagle/beagle.h |1 + 2 files changed, 11 insertions(+), 0 deletions(-) diff --git a/board/ti/beagle/beagle.c b/board/ti/beagle/beagle.c index 4e194a2..52a7f93 100644 --- a/board/ti/beagle/beagle.c +++ b/bo

[U-Boot] [PATCH] BeagleBoard: fix LED 0/1 in driver

2011-04-20 Thread Jason Kridner
Fixed USR0/USR1 to be LED 0/1 respectively Signed-off-by: Jason Kridner --- board/ti/beagle/led.c |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/board/ti/beagle/led.c b/board/ti/beagle/led.c index df26552..fe80e19 100644 --- a/board/ti/beagle/led.c +++ b/board/ti/bea

[U-Boot] [PATCH] Corrected LED name match finding

2011-04-20 Thread Jason Kridner
This avoids some extraneous Usage printouts. Signed-off-by: Jason Kridner --- common/cmd_led.c |5 +++-- 1 files changed, 3 insertions(+), 2 deletions(-) diff --git a/common/cmd_led.c b/common/cmd_led.c index f1e8a62..988157b 100644 --- a/common/cmd_led.c +++ b/common/cmd_led.c @@ -83,7 +83

[U-Boot] [PATCH] led: correct off/on locations in structure

2011-04-20 Thread Jason Kridner
Although the initialization should probably be done with names, the existing implementation has these structures filled in the opposite order. Signed-off-by: Jason Kridner --- common/cmd_led.c |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/common/cmd_led.c b/common/c

[U-Boot] [PATCH] BeagleBoard: config: Remove omapfb.debug=y from Beagle and Overo env settings

2011-04-20 Thread Jason Kridner
From: Steve Sakoman The kernel DSS2 code is mature now, and keeping this setting hurts performance Signed-off-by: Steve Sakoman (cherry picked from commit 0588da9057fddb5f6a6a04aedd7e0a79eb39e9e5) Signed-off-by: Jason Kridner --- This patch is only rebased and is just being represented for inc

[U-Boot] [PATCH] BeagleBoard: config: reduce BOOTDELAY to 3

2011-04-20 Thread Jason Kridner
Signed-off-by: Jason Kridner --- include/configs/omap3_beagle.h |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/include/configs/omap3_beagle.h b/include/configs/omap3_beagle.h index 8af2f7a..06c1ce3 100644 --- a/include/configs/omap3_beagle.h +++ b/include/configs/omap3_

[U-Boot] [PATCH] BeagleBoard: config: increase command-line functionality

2011-04-20 Thread Jason Kridner
Signed-off-by: Jason Kridner --- include/configs/omap3_beagle.h |5 +++-- 1 files changed, 3 insertions(+), 2 deletions(-) diff --git a/include/configs/omap3_beagle.h b/include/configs/omap3_beagle.h index 17d4356..49bfaa4 100644 --- a/include/configs/omap3_beagle.h +++ b/include/configs/oma

[U-Boot] [PATCH] BeagleBoard: config: add optargs/buddy/camera

2011-04-20 Thread Jason Kridner
Signed-off-by: Jason Kridner --- include/configs/omap3_beagle.h |9 + 1 files changed, 9 insertions(+), 0 deletions(-) diff --git a/include/configs/omap3_beagle.h b/include/configs/omap3_beagle.h index e2f7dd0..71e41f8 100644 --- a/include/configs/omap3_beagle.h +++ b/include/configs

[U-Boot] [PATCH] BeagleBoard: config: use the USERBUTTON command

2011-04-20 Thread Jason Kridner
Signed-off-by: Jason Kridner --- include/configs/omap3_beagle.h |7 ++- 1 files changed, 6 insertions(+), 1 deletions(-) diff --git a/include/configs/omap3_beagle.h b/include/configs/omap3_beagle.h index c29baf5..a946b0e 100644 --- a/include/configs/omap3_beagle.h +++ b/include/configs/o

[U-Boot] [PATCH] video: DSS makefile update

2011-04-20 Thread Jason Kridner
Adding the OMAP3 DSS video driver to the Makefile. The patch applied to u-boot-ti didn't include this for some reason. Signed-off-by: Jason Kridner --- drivers/video/Makefile |2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/drivers/video/Makefile b/drivers/video/Makefil

[U-Boot] [PATCH v3] OMAP3: Add DSS driver for OMAP3

2011-04-20 Thread Jason Kridner
From: Syed Mohammed Khasim Supports dynamic panel configuration Supports dynamic tv standard selection Adds support for DSS register access through generic APIs Incorporated DSS register access using structures. Previous discussions are here http://www.mail-archive.com/u-boot@lists.denx.de/msg2

[U-Boot] [PATCH v3] USB: Remove __attribute__ ((packed)) for struct ehci_hccr and ehci_hcor

2011-04-20 Thread Jason Kridner
Remove __attribute__ ((packed)) to prevent byte access to soc registers in some gcc versions. Having patches to enable ehci for the BeagleBoard lying around for several month, this one was the show-stopper. Credits have to go to Laine Walker-Avina for finding the problem. Signed-off-by: Jason K

[U-Boot] [PATCH] TWL4030/BeagleBoard: Added hub power enable

2011-04-20 Thread Jason Kridner
This is an attempt to get the EHCI port working on the BeagleBoard-xM, but it is not working for me. It hangs when I do 'usb start'. Signed-off-by: Jason Kridner --- board/ti/beagle/beagle.c | 15 +++ drivers/misc/twl4030_led.c |6 +- include/twl4030.h |1 +

[U-Boot] [PATCH] led: loop through all leds

2011-04-20 Thread Jason Kridner
'led all on|off' requires this patch. Signed-off-by: Jason Kridner --- common/cmd_led.c |1 - 1 files changed, 0 insertions(+), 1 deletions(-) diff --git a/common/cmd_led.c b/common/cmd_led.c index 90cf043..ab85dc6 100644 --- a/common/cmd_led.c +++ b/common/cmd_led.c @@ -108,7 +108,6 @@ int

[U-Boot] [PATCH] BeagleBoard: fixed typo in typecast

2011-04-20 Thread Jason Kridner
Without this patch, you should get a warning. Signed-off-by: Jason Kridner --- board/ti/beagle/beagle.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/board/ti/beagle/beagle.c b/board/ti/beagle/beagle.c index 52a7f93..c0cab9e 100644 --- a/board/ti/beagle/beagle.c +++ b

[U-Boot] [PATCH] BeagleBoard: config: make mtest run

2011-04-20 Thread Jason Kridner
Signed-off-by: Jason Kridner --- include/configs/omap3_beagle.h |9 + 1 files changed, 5 insertions(+), 4 deletions(-) diff --git a/include/configs/omap3_beagle.h b/include/configs/omap3_beagle.h index ade6225..17d4356 100644 --- a/include/configs/omap3_beagle.h +++ b/include/configs

[U-Boot] [PATCH v2] BeagleBoard: Added userbutton command

2011-04-20 Thread Jason Kridner
Based on commit f1099c7c43caf5bac3bf6a65aa266fade4747072 Author: Greg Turner Date: Tue May 25 09:19:06 2010 -0500 New u-boot command for status of USER button on BeagleBoard-xM Modified bootcmd to check the staus at boot time and set filename of the boot script.

[U-Boot] [PATCH] BeagleBoard: Pin mux initialization glitch fix

2011-04-20 Thread Jason Kridner
From: Bob Feretich The below patch reverses the order of two segments in the board file. Output pins need to have their values initialized, before they are exposed to the logic outside the chip. Signed-off-by: Bob Feretich Cc: Wolfgang Denk Signed-off-by: Jason Kridner --- This patch isn't up

[U-Boot] [PATCH] BeagleBoard: Configure DVI/S-video

2011-04-20 Thread Jason Kridner
Based on patches from Syed Mohammed Khasim (kha...@ti.com). Configures the output of the BeagleBoard DVI to be orange. Configures the output of the BeagleBoard S-Video to be a colorbar. --- Updates for this version * Rebased on u-boot-ti. Signed-off-by: Jason Kridner --- board/ti/beagle/beagle.

[U-Boot] [PATCH] BeagleBoard: config: change default resolution to VGA

2011-04-20 Thread Jason Kridner
Signed-off-by: Jason Kridner --- include/configs/omap3_beagle.h |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/include/configs/omap3_beagle.h b/include/configs/omap3_beagle.h index 06c1ce3..9ee1664 100644 --- a/include/configs/omap3_beagle.h +++ b/include/configs/omap3_

[U-Boot] [PATCH] led: remove trailing whitespace

2011-04-20 Thread Jason Kridner
Required to meet style requirements. Signed-off-by: Jason Kridner --- common/cmd_led.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/common/cmd_led.c b/common/cmd_led.c index ad0fd0f..90cf043 100644 --- a/common/cmd_led.c +++ b/common/cmd_led.c @@ -96,7 +96,7 @@ int d

[U-Boot] [PATCH] led: added cmd_led to Makefile

2011-04-20 Thread Jason Kridner
Addition of cmd_led into the Makefile wasn't included in the patch applied to u-boot-ti. Signed-off-by: Jason Kridner --- common/Makefile |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/common/Makefile b/common/Makefile index 4555716..1aaa5fa 100644 --- a/common/Makefile

[U-Boot] [PATCH] BeagleBoard: config: don't suck in blank line

2011-04-20 Thread Jason Kridner
To prevent a blank line from being critical. Signed-off-by: Jason Kridner --- include/configs/omap3_beagle.h |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/include/configs/omap3_beagle.h b/include/configs/omap3_beagle.h index 9ee1664..ade6225 100644 --- a/include/confi

[U-Boot] [PATCH] BeagleBoard updates rebased on u-boot-ti and debugged

2011-04-20 Thread Jason Kridner
This brings in some fixes and some patches currently maintained out-of-tree for the BeagleBoard. It seems for some things, some old code got applied, so I've given updates here. I've broken up the patches into small bits to be accepted/rejected on the hopes of trying to get as much in as possi

[U-Boot] [PATCH] led: fixup help/usage

2011-04-20 Thread Jason Kridner
Placed a description inside the right field without usage information and eliminated redundant usage information. Signed-off-by: Jason Kridner --- common/cmd_led.c |6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/common/cmd_led.c b/common/cmd_led.c index ab85dc6..848

[U-Boot] [PATCH] BeagleBoard: config: Switch default console from ttyS2 to ttyO2

2011-04-20 Thread Jason Kridner
From: Alexander Holler Linux kernels >= 2.6.36 are using ttyOn instead ttySn for the serials on OMAPs. Signed-off-by: Alexander Holler Signed-off-by: Jason Kridner --- This patch isn't updated, it is just represented for inclusion on top of u-boot-ti. --- include/configs/omap3_beagle.h |2

[U-Boot] [PATCH] BeagleBoard: config: add ramboot

2011-04-20 Thread Jason Kridner
Signed-off-by: Jason Kridner --- include/configs/omap3_beagle.h | 19 ++- 1 files changed, 18 insertions(+), 1 deletions(-) diff --git a/include/configs/omap3_beagle.h b/include/configs/omap3_beagle.h index 71e41f8..c29baf5 100644 --- a/include/configs/omap3_beagle.h +++ b/incl

[U-Boot] [PATCH] BeagleBoard: config: load kernel via MMC ext2

2011-04-20 Thread Jason Kridner
Signed-off-by: Jason Kridner --- include/configs/omap3_beagle.h |3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/include/configs/omap3_beagle.h b/include/configs/omap3_beagle.h index 49bfaa4..e2f7dd0 100644 --- a/include/configs/omap3_beagle.h +++ b/include/configs/omap3

[U-Boot] [PATCH] BeagleBoard: config: enable DSS

2011-04-20 Thread Jason Kridner
Signed-off-by: Jason Kridner --- include/configs/omap3_beagle.h |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/include/configs/omap3_beagle.h b/include/configs/omap3_beagle.h index a946b0e..6ece0fa 100644 --- a/include/configs/omap3_beagle.h +++ b/include/configs/omap3_b

Re: [U-Boot] Policy for checkpatch usage?

2011-04-20 Thread Graeme Russ
On Thu, Apr 21, 2011 at 2:51 AM, Scott Wood wrote: > On Wed, 20 Apr 2011 20:15:40 +1000 > Graeme Russ wrote: > >> On Wednesday, April 20, 2011, Detlev Zundel wrote: >> > Hi, >> > >> >> > >> > As a base for discussion, what about this: >> > >> >   Use common sense in interpreting the results of c

Re: [U-Boot] [PATCH V8 1/6] pxa: move i2c driver to the common place

2011-04-20 Thread Lei Wen
Hi Wolfgang, On Thu, Apr 21, 2011 at 6:32 AM, Wolfgang Denk wrote: > Dear Lei Wen, > > In message <1301990460-31029-2-git-send-email-lei...@marvell.com> you wrote: >> For better sharing with other platform other than pxa's, >> it is more convenient to put the driver to the common place. >> >> Sig

Re: [U-Boot] [PATCH V8 1/6] pxa: move i2c driver to the common place

2011-04-20 Thread Macpaul Lin
Hi Lei Wen, 2011/4/21 Lei Wen : > Hi Wolfgang, > > On Thu, Apr 21, 2011 at 6:32 AM, Wolfgang Denk wrote: >> Dear Lei Wen, >> >>>  arch/arm/cpu/pxa/i2c.c    |  469 >>> - >>>  drivers/i2c/Makefile      |    1 + >>>  drivers/i2c/mv_i2c.c      |  452 >>>

  1   2   >