Re: [U-Boot] [U-Boot-Users] [PATCH][RFC] pci: Divided pci code of the powerpc

2008-08-08 Thread Nobuhiro Iwamatsu
Hi, all. Please pickup this RFC/patch. Best regards, Nobuhiro 2008/6/30 Nobuhiro Iwamatsu <[EMAIL PROTECTED]>: > Hi, all. > > Could comment about this patch. > > Best regards, > Nobuhiro > > Nobuhiro Iwamatsu wrote: >> A source code of pci is written mainly on powerpc. >> Macro uses a pci sour

[U-Boot] [PATCH][AT91] Custom AFEB9260 board support

2008-08-08 Thread Sergey Lapin
This patch provides support for AFEB9260 board, a product of OpenSource hardware and software. Some commertial projects are made with this design. A board is basically AT91SAM9260-EK with some modifications and different peripherals and different parts used. Main purpose of this project is to gain

[U-Boot] [PATCH] sh: Update sh7763rdp config

2008-08-08 Thread Nobuhiro Iwamatsu
Add sh_eth support to sh7763rdp. Signed-off-by: Nobuhiro Iwamatsu <[EMAIL PROTECTED]> --- include/configs/sh7763rdp.h |9 + 1 files changed, 9 insertions(+), 0 deletions(-) diff --git a/include/configs/sh7763rdp.h b/include/configs/sh7763rdp.h index 7713eaa..5a65663 100644 --- a/incl

[U-Boot] [PATCH] net: ne2000: Divided a function of NE2000 driver

2008-08-08 Thread Nobuhiro Iwamatsu
get_prom function was used __attriute__ , but it is not enable. ax88796.o does not do link besides ne2000.o. When ld is carried out, get_prom function of ax88796.c is ignored. This problem is a thing by specifications of ld. I checked and test this patch on SuperH and MIPS. Signed-off-by: Nobuhiro

Re: [U-Boot] [OT] lack of Reference field (was Re: WELCOME to the new mailing list)

2008-08-08 Thread Wolfgang Denk
Dear Shinya, in message <[EMAIL PROTECTED]> you wrote: > > I don't know what is the culprit, but Wolfgang's mails always lack of > Reference: field, thus they always break my thread view of Thunderbird. > I confirmed this behavior with [EMAIL PROTECTED], [EMAIL PROTECTED] and > [EMAIL PROTECTED]

Re: [U-Boot] [OT] lack of Reference field (was Re: WELCOME to the new mailing list)

2008-08-08 Thread Wolfgang Denk
Dear Shinya, in message <[EMAIL PROTECTED]> you wrote: > > I don't know what is the culprit, but Wolfgang's mails always lack of > Reference: field, thus they always break my thread view of Thunderbird. > I confirmed this behavior with [EMAIL PROTECTED], [EMAIL PROTECTED] and > [EMAIL PROTECTED]

[U-Boot] udelay(100000000) in drivers/net/3c589.c

2008-08-08 Thread Guennadi Liakhovetski
Hi, I do not quite follow these two code-fragments from drivers/net/3c589.c::el_reset(): /* must wait for at least 1ms */ udelay(1); ... /* wait for another 1ms */ udelay(1); The comments and the code don't seem to quite agree? Thanks Guennadi

Re: [U-Boot] [PATCH] [NAND] Add board_nand_init_tail to give board module a chance to init after NAND chip is scaned.

2008-08-08 Thread Wolfgang Denk
In message <[EMAIL PROTECTED]> you wrote: > > diff --git a/drivers/mtd/nand/nand.c b/drivers/mtd/nand/nand.c > index e44470e..f795d2e 100644 > --- a/drivers/mtd/nand/nand.c > +++ b/drivers/mtd/nand/nand.c > @@ -41,6 +41,10 @@ static const char default_nand_name[] = "nand"; > > extern int board_n

Re: [U-Boot] [PATCH][AT91] DataFlash: AT45DB021 fix and AT45DB081 support

2008-08-08 Thread Wolfgang Denk
In message <[EMAIL PROTECTED]> you wrote: > On Fri, Aug 08, 2008 at 10:19:24AM +0400, Sergey Lapin wrote: > > Fix for page size of AT45DB021. Also adding bigger AT45DB081 > > which comes with some newer boards. > > > > Signed-off-by: Sergey Lapin <[EMAIL PROTECTED]> > > --- > > drivers/mtd/datafl

Re: [U-Boot] [PATCH] [NAND] Add board_nand_init_tail to give board module a chance to init after NAND chip is scaned.

2008-08-08 Thread Haavard Skinnemoen
"Hong Xu" <[EMAIL PROTECTED]> wrote: > +int __board_nand_init_tail(struct nand_chip *nand) { return 0; } > +int inline board_nand_init_tail (struct nand_chip *) __attribute__ > + ((weak, alias("__board_nand_init_tail"))); A globally visible inline weak alias. How does that work? Haavard _

Re: [U-Boot] bootm state -- stateful vs stateless

2008-08-08 Thread Kumar Gala
On Aug 7, 2008, at 9:37 PM, Jerry Van Baren wrote: > Kumar Gala wrote: >> One of the things that wasn't clear to me is if we are ok with >> maintaining state between 'bootm' subcommand inside u-boot or if we >> really require passing all state via arguments and env. >> While I know it would b

[U-Boot] granularity of bootm subcommands

2008-08-08 Thread Kumar Gala
So I proposed a set of subcommands that looked like: bootm start bootm prep bootm load_os bootm load_fdt bootm load_initrd bootm jump bootm restore is this the right granularity or should we go finer? "prep" could be: bootm disable_interrupts bootm usb_stop bootm

[U-Boot] mips qemu target

2008-08-08 Thread Kumar Gala
I know there is a mips qemnu target for u-boot. Does anyone have instructions on using it and is the target capable of booting linux? Also what toolchain are you using -- eldk 4.1 ? - k ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.d

Re: [U-Boot] mips qemu target

2008-08-08 Thread Jean-Christophe PLAGNIOL-VILLARD
On 08:46 Fri 08 Aug , Kumar Gala wrote: > I know there is a mips qemnu target for u-boot. Does anyone have > instructions on using it and is the target capable of booting linux? Take a look in the REAME.qemu_mips, but use an uptodate qemu. I use the mipsel-unknown-linux-gnu 4.2.1 toolchain

[U-Boot] mkimage for fit in 1.3.4?

2008-08-08 Thread Kumar Gala
does mkimage in the current 1.3.4-rc2 tree work for FIT w/o any patches? If not can we fix that since dtc 1.2.0 is out? - k ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

Re: [U-Boot] granularity of bootm subcommands

2008-08-08 Thread Jerry Van Baren
Kumar Gala wrote: > So I proposed a set of subcommands that looked like: > >bootm start >bootm prep >bootm load_os >bootm load_fdt >bootm load_initrd >bootm jump >bootm restore > > is this the right granularity or should we go finer? > > "prep" could be: > >boot

[U-Boot] USB pull request

2008-08-08 Thread Markus Klotzbücher
Dear Wolfgang, Please pull! The following changes since commit 0f2b5d8ec0969a5b0992f5031bf3c61117a41d59: Markus Klotzbuecher (1): Merge branch 'master' of git://www.denx.de/git/u-boot are available in the git repository at: git://git.denx.de/u-boot-usb.git master Hunter, Jon (1):

[U-Boot] [PATCH 1/3] CFI: allow for dynamically determined flash sizes and addresses

2008-08-08 Thread Wolfgang Denk
The CFI driver allowed only for static initializers in the CFG_FLASH_BANKS_LIST definition, i. e. it did not allow to map several flash banks contiguously if the bank sizes were not known in advance, which kind of violates U-Boot's design philosophy. (will be used for example by the TQM8xxL boards

[U-Boot] [PATCH 2/3] TQM8xxL: fix support for second flash bank

2008-08-08 Thread Wolfgang Denk
When switching the TQM8xxL modules to use the CFI flash driver, support for the second flash bank was broken because the CFI driver did not support dynamically sized banks. This gets fixed now. Signed-off-by: Wolfgang Denk <[EMAIL PROTECTED]> --- include/configs/TQM823L.h |2 +- include/confi

[U-Boot] [PATCH 3/3] TQM823L: re-enable logo support; update LCD_INFO text

2008-08-08 Thread Wolfgang Denk
Signed-off-by: Wolfgang Denk <[EMAIL PROTECTED]> --- common/lcd.c |2 +- include/configs/TQM823L.h |2 ++ 2 files changed, 3 insertions(+), 1 deletions(-) diff --git a/common/lcd.c b/common/lcd.c index e3347ec..8d770f3 100644 --- a/common/lcd.c +++ b/common/lcd.c @@ -793,7 +7

Re: [U-Boot] GT-64120 PCI init

2008-08-08 Thread Richard Danter
2008/8/7 Richard Danter <[EMAIL PROTECTED]>: > I have an old MIPS board with a GT-64120 that I would like to port > U-Boot to. I have so far got it to boot from flash, init SDRAM and a > serial console and give me a prompt so I can run some commands. I am > also able to write flash for saving env v

Re: [U-Boot] [PATCH] [NAND] Add board_nand_init_tail to give board module a chance to init after NAND chip is scaned.

2008-08-08 Thread Scott Wood
On Fri, Aug 08, 2008 at 10:06:03AM +0800, Hong Xu wrote: > Sometimes, board module needs to know some information about the NAND > chip e.g. page size to continue it's initialization. This short patch > give board module a chance to continue its initialization after the > NAND chip is scaned. [snip

Re: [U-Boot] granularity of bootm subcommands

2008-08-08 Thread Kumar Gala
>> bootm usb_stop > > This is "usb stop" So this case is easy since its a compile time choice. >> bootm disable_caches > > This is "icache off && dcache off" I assume you are suggesting new toplevel cache commands. >> "load_os" stays as is. > > Decompresses to a destination address? I didn

[U-Boot] Subject line tag differences "U-Boot-Users vs. U-Boot" between the two U-Boot mailing list servers

2008-08-08 Thread Ken.Fuchs
Subject line tags in the transition to the new mailing list server: [EMAIL PROTECTED] generates [U-Boot-Users]. u-boot@lists.denx.de generates a [U-Boot]. Wolfgang Denk wrote: > Hello everybody, > > after the automatic notice you should have received telling you that > you have been subscribed

Re: [U-Boot] USB pull request

2008-08-08 Thread Jean-Christophe PLAGNIOL-VILLARD
On 16:46 Fri 08 Aug , Markus Klotzbücher wrote: > Dear Wolfgang, > > Please pull! > > The following changes since commit 0f2b5d8ec0969a5b0992f5031bf3c61117a41d59: > Markus Klotzbuecher (1): > Merge branch 'master' of git://www.denx.de/git/u-boot > > are available in the git reposit

Re: [U-Boot] [OT] lack of Reference field (was Re: WELCOME to the new mailing list)

2008-08-08 Thread Shinya Kuribayashi
Wolfgang Denk wrote: > in message <[EMAIL PROTECTED]> you wrote: >> I don't know what is the culprit, but Wolfgang's mails always lack of >> Reference: field, thus they always break my thread view of Thunderbird. >> I confirmed this behavior with [EMAIL PROTECTED], [EMAIL PROTECTED] and >> [EMAIL

Re: [U-Boot] USB pull request

2008-08-08 Thread Markus Klotzbücher
Jean-Christophe PLAGNIOL-VILLARD <[EMAIL PROTECTED]> writes: > On 16:46 Fri 08 Aug , Markus Klotzbücher wrote: >> Dear Wolfgang, >> >> Please pull! >> >> The following changes since commit 0f2b5d8ec0969a5b0992f5031bf3c61117a41d59: >> Markus Klotzbuecher (1): >> Merge branch 'master

[U-Boot] [PATCH 1/2] video: fix bug in logo_plot

2008-08-08 Thread Anatolij Gustschin
If logo_plot() should ever be called with x starting position other than zero and for pixel depths greater than 8bpp, logo colors distortion will be observed. This patch fixes the issue. Signed-off-by: Anatolij Gustschin <[EMAIL PROTECTED]> --- drivers/video/cfb_console.c |4 +++- 1 files cha

[U-Boot] [PATCH 2/2] video: fix bug in cfb_console code

2008-08-08 Thread Anatolij Gustschin
FILL_15BIT_555RGB macro extension for pixel swapping by commit bed53753dd1d7e6bcbea4339be0fb7760214cc35 introduced a bug in cfb_console: Bitmaps with odd-numbered width won't be rendered correctly and even U-Boot crashes are observed on some platforms while repeated rendering of such bitmaps with

[U-Boot] Pull request: u-boot-sh (for 1.3.4)

2008-08-08 Thread Nobuhiro Iwamatsu
Dear Wolfgang, The following changes since commit 81091f58f0c58ecd26c5b05de2ae20ca6cdb521c: Jean-Christophe PLAGNIOL-VILLARD (1): drivers/serial: Move conditional compilation to Makefile for CONFIG_* macros are available in the git repository at: git://git.denx.de/u-boot-sh.git mast

Re: [U-Boot] mkimage for fit in 1.3.4?

2008-08-08 Thread ksi
On Fri, 8 Aug 2008, Kumar Gala wrote: > does mkimage in the current 1.3.4-rc2 tree work for FIT w/o any > patches? If not can we fix that since dtc 1.2.0 is out? It doesn't. I was going to ask but you beat me :) It would be very nice to have it fixed before 1.3.5. === Cut === TFTP side : -

Re: [U-Boot] Subject line tag differences "U-Boot-Users vs. U-Boot" between the two U-Boot mailing list servers

2008-08-08 Thread Scott Wood
On Fri, Aug 08, 2008 at 10:20:50AM -0500, [EMAIL PROTECTED] wrote: > Messages with just [U-Boot-Users] in the subject line implies it > was handled by [EMAIL PROTECTED] If this is > the case, let the SF server handle the thread to completion! > This is an implication of the sentence "Please post

Re: [U-Boot] granularity of bootm subcommands

2008-08-08 Thread Jerry Van Baren
Kumar Gala wrote: >>> bootm usb_stop >> >> This is "usb stop" > > So this case is easy since its a compile time choice. > >>> bootm disable_caches >> >> This is "icache off && dcache off" > > I assume you are suggesting new toplevel cache commands. No, existing: cmd_cache.c >>> "load_os" s

[U-Boot] U-Boot and UBI

2008-08-08 Thread Josh Boyer
Hi All, As has been stated before by various people, IBM has added some form of UBI support to an older version of U-Boot. While we would love to be able to forward port this to the latest version of U-Boot, we have simply not found the time and don't see that being the case in the near future.

Re: [U-Boot] [PATCH][AT91] DataFlash: AT45DB021 fix and AT45DB081 support

2008-08-08 Thread Jean-Christophe PLAGNIOL-VILLARD
On 10:30 Fri 08 Aug , Sergey Lapin wrote: > On Fri, Aug 08, 2008 at 10:19:24AM +0400, Sergey Lapin wrote: > > Fix for page size of AT45DB021. Also adding bigger AT45DB081 > > which comes with some newer boards. > > > > Signed-off-by: Sergey Lapin <[EMAIL PROTECTED]> > > --- > > drivers/mtd/da

[U-Boot] [PATCH][AT91] DataFlash: AT45DB021 fix and AT45DB081 support

2008-08-08 Thread Sergey Lapin
From: Sergey Lapin <[EMAIL PROTECTED]> Fix for page size of AT45DB021. Also adding bigger AT45DB081 which comes with some newer boards. Signed-off-by: Sergey Lapin <[EMAIL PROTECTED]> --- drivers/mtd/dataflash.c | 15 ++- include/dataflash.h |2 +- 2 files changed, 15 inser

[U-Boot] [PATCH][AT91][Re-submit] DataFlash: AT45DB021 fix and AT45DB081 support

2008-08-08 Thread Sergey Lapin
Fix for page size of AT45DB021. Also adding bigger AT45DB081 which comes with some newer boards. Signed-off-by: Sergey Lapin <[EMAIL PROTECTED]> --- drivers/mtd/dataflash.c | 15 ++- include/dataflash.h |2 +- 2 files changed, 15 insertions(+), 2 deletions(-) diff --git a/d

Re: [U-Boot] granularity of bootm subcommands

2008-08-08 Thread Scott Wood
On Fri, Aug 08, 2008 at 08:37:47AM -0500, Kumar Gala wrote: > Finally I'd like to change the subcommands to be prefixed with '_' to > make parsing easier: >bootm _start >bootm _prep >bootm _load_os >... Ick. How about using a different name than "bootm"? -Scott ___

Re: [U-Boot] Subject line tag differences "U-Boot-Users vs. U-Boot" between the two U-Boot mailing list servers

2008-08-08 Thread Wolfgang Denk
Dear [EMAIL PROTECTED], In message <[EMAIL PROTECTED]> you wrote: > Subject line tags in the transition to the new mailing list server: > > [EMAIL PROTECTED] generates [U-Boot-Users]. > u-boot@lists.denx.de generates a [U-Boot]. That's intentional, as the new list's name is "u-boot" (and n

Re: [U-Boot] [OT] lack of Reference field (was Re: WELCOME to the new mailing list)

2008-08-08 Thread Wolfgang Denk
Dear Shinya Kuribayashi, In message <[EMAIL PROTECTED]> you wrote: > > Great, it works. This will help me/us to track the list easier. You are welcome. The problem was that I never updated my replcomps file since initial installation many, many years ago (long before the invention of threading

Re: [U-Boot] [PATCH][AT91] DataFlash: AT45DB021 fix and AT45DB081 support

2008-08-08 Thread Jean-Christophe PLAGNIOL-VILLARD
On 01:37 Sat 09 Aug , Sergey Lapin wrote: > From: Sergey Lapin <[EMAIL PROTECTED]> > > Fix for page size of AT45DB021. Also adding bigger AT45DB081 > which comes with some newer boards. > > Signed-off-by: Sergey Lapin <[EMAIL PROTECTED]> > --- > drivers/mtd/dataflash.c | 15 ++-

[U-Boot] AT91 pull request

2008-08-08 Thread Jean-Christophe PLAGNIOL-VILLARD
Hi, Wolfgang please pull The following changes since commit 81091f58f0c58ecd26c5b05de2ae20ca6cdb521c: Jean-Christophe PLAGNIOL-VILLARD (1): drivers/serial: Move conditional compilation to Makefile for CONFIG_* macros are available in the git repository at: git://git.denx.de/u-boot-at

Re: [U-Boot] U-Boot and UBI

2008-08-08 Thread Wolfgang Denk
Dear Josh, in message <[EMAIL PROTECTED]> you wrote: > > As has been stated before by various people, IBM has added some form of > UBI support to an older version of U-Boot. While we would love to be > able to forward port this to the latest version of U-Boot, we have > simply not found the time

Re: [U-Boot] granularity of bootm subcommands

2008-08-08 Thread Wolfgang Denk
Dear Jerry Van Baren, In message <[EMAIL PROTECTED]> you wrote: > > Wolfgang advocated supporting the old parser. Personally, I'm OK with > requiring hush in order to enable the New Improved bootm behavior and > leaving users of the old parser with the old bootm (a, more > #ifdefs). I'm n

Re: [U-Boot] granularity of bootm subcommands

2008-08-08 Thread Jerry Van Baren
Scott Wood wrote: > On Fri, Aug 08, 2008 at 08:37:47AM -0500, Kumar Gala wrote: >> Finally I'd like to change the subcommands to be prefixed with '_' to >> make parsing easier: >>bootm _start >>bootm _prep >>bootm _load_os >>... > > Ick. How about using a different name than "b