[U-Boot] Please pull u-boot-i2c.git

2009-03-30 Thread Heiko Schocher
Hello Wolfgang, The following changes since commit 2344bb8de2354101a8264c2123303c9d8d2aed3c: Detlev Zundel (1): inka4x0: Use proper accessor macros for memory mapped registers. are available in the git repository at: git://git.denx.de/u-boot-i2c.git master Jens Scharsig (1): s

[U-Boot] Maillist issue of u-boot@lists.denx.de

2009-03-30 Thread Liu Dave-R63238
Hello all, I often miss some mails from u-boot@lists.denx.de in these days, For example, we didn't receive the 8569 support patch from lists, and didn't receive the mail from Kim http://lists.denx.de/pipermail/u-boot/2009-March/049890.html http://lists.denx.de/pipermail/u-boot/2009-March/049891.ht

Re: [U-Boot] [Patch V2.1] soft_i2c.c compiler/linker error

2009-03-30 Thread Heiko Schocher
Hello Jens, Jens Scharsig wrote: > This patch fix the compiler/linker errors > > common/cmd_i2c.c:1252: undefined reference to `i2c_get_bus_speed' > common/cmd_i2c.c:1256: undefined reference to `i2c_set_bus_speed' > > if board use CONFIG_I2C_CMD_TREE and CONFIG_I2C_MULTI_BUS is not > uesd/und

[U-Boot] [PATCH v2] mtd: SPI Flash: Support the Spansion Flash

2009-03-30 Thread Mingkai Hu
Add MTD SPI Flash support for S25FL008A, S25FL016A, S25FL032A, S25FL064A, S25FL128P. Signed-off-by: Mingkai Hu --- drivers/mtd/spi/Makefile |1 + drivers/mtd/spi/spansion.c | 356 2 files changed, 357 insertions(+), 0 deletions(-) create mode

[U-Boot] [PATCH] eSPI: add the eSPI register support

2009-03-30 Thread Mingkai Hu
Signed-off-by: Mingkai Hu --- include/asm-ppc/immap_85xx.h | 17 + 1 files changed, 17 insertions(+), 0 deletions(-) diff --git a/include/asm-ppc/immap_85xx.h b/include/asm-ppc/immap_85xx.h index 7b97fe0..e84599d 100644 --- a/include/asm-ppc/immap_85xx.h +++ b/include/asm-ppc/i

Re: [U-Boot] [Patch V2.1] soft_i2c.c compiler/linker error

2009-03-30 Thread Jens Scharsig
This patch fix the compiler/linker errors common/cmd_i2c.c:1252: undefined reference to `i2c_get_bus_speed' common/cmd_i2c.c:1256: undefined reference to `i2c_set_bus_speed' if board use CONFIG_I2C_CMD_TREE and CONFIG_I2C_MULTI_BUS is not uesd/undef (wrong define order) and removes additiona

Re: [U-Boot] [PATCH 2/3] mpc52xx phy: initialize only when needed

2009-03-30 Thread Ben Warren
On Mon, Mar 30, 2009 at 6:04 PM, Jon Smirl wrote: > On Wed, Mar 25, 2009 at 5:53 PM, Wolfgang Denk wrote: > > Dear Jon Smirl, > > > > In message <9e4733910903251212j4436f1afu817456c7f6e9c...@mail.gmail.com> > you wrote: > >> Is this patch ok for inclusion? > > Ping? Any answer on this one? > Sor

Re: [U-Boot] [PATCH] NetLoop initialization bug

2009-03-30 Thread Heiko Schocher
Hello Michael, Michael Zaidman wrote: > Please see my comments and updated patch below. > > On Mon, Mar 30, 2009 at 7:12 AM, Heiko Schocher wrote: >> Hello Michael, >> >> Michael Zaidman wrote: [...] >> The following 2 vars are just used, if CONFIG_CMD_CDP >> is used, can we do a "#if defined" a

Re: [U-Boot] [Patch V2] soft_i2c.c compiler/linker error

2009-03-30 Thread Heiko Schocher
Hello Jens, Jens Scharsig wrote: > This patch fix the compiler/linker errors > > common/cmd_i2c.c:1252: undefined reference to `i2c_get_bus_speed' > common/cmd_i2c.c:1256: undefined reference to `i2c_set_bus_speed' > > if board use CONFIG_I2C_CMD_TREE and CONFIG_I2C_MULTI_BUS is not uesd/undef

Re: [U-Boot] [PATCH 2/7] mtd: SPI Flash: Support the Spansion Flash

2009-03-30 Thread Hu Mingkai-B21284
> -Original Message- > From: Mike Frysinger [mailto:vap...@gentoo.org] > Sent: Tuesday, March 31, 2009 9:12 AM > To: u-boot@lists.denx.de > Cc: Hu Mingkai-B21284; Fleming Andy-AFLEMING > Subject: Re: [U-Boot] [PATCH 2/7] mtd: SPI Flash: Support the > Spansion Flash > > On Sunday 15 Ma

Re: [U-Boot] [PATCH 1/2] Fix OneNAND ipl to read CONFIG_SYS_MONITOR_LEN

2009-03-30 Thread Amit Kumar Sharma
Hi Rubini, AS suggested by scott , Please share your views regarding CONFIG_SYS_MONITOR_LEN because image size getting bigger then 1 block we have to use this macro for uboot image size. - Original Message - From: "Scott Wood" To: "apgmoorthy" Cc: ; Sent: Tuesday, March 31, 2009 4:0

Re: [U-Boot] U-boot NAND boot on IMX31 3stack(ARM)

2009-03-30 Thread alfred steele
Hi Scott: Thanks! >> I am also wondering if there is a include file which builds up a table >> of working NAND devices and thier attributes which tells the U-boot on >> the parameters about a particular NAND device on the board like >> Block_size , page_size, device size, pages per block, device

Re: [U-Boot] [PATCH 2/7] mtd: SPI Flash: Support the Spansion Flash

2009-03-30 Thread Mike Frysinger
On Sunday 15 March 2009 22:52:18 Mingkai Hu wrote: > +int spansion_erase(struct spi_flash *flash, u32 offset, size_t len) > +{ > +... > + ret = spansion_wait_ready(flash, 2 * CONFIG_SYS_HZ); there is a common define you should use instead: SPI_FLASH_PAGE_ERASE_TIMEOUT -mike signature

Re: [U-Boot] core ticks/timer code

2009-03-30 Thread Mike Frysinger
so if we were to document things, it should read like this: - CONFIG_SYS_HZ is required to be 1000 - get_ticks() / get_tbclk() should be deprecated -- use get_timer() instead - get_timer(X) returns the number of milliseconds since the last call to reset_timer(), minus X (which is in millisecond

Re: [U-Boot] [PATCH 2/3] mpc52xx phy: initialize only when needed

2009-03-30 Thread Jon Smirl
On Wed, Mar 25, 2009 at 5:53 PM, Wolfgang Denk wrote: > Dear Jon Smirl, > > In message <9e4733910903251212j4436f1afu817456c7f6e9c...@mail.gmail.com> you > wrote: >> Is this patch ok for inclusion? Ping? Any answer on this one? >> >> On Sat, Mar 21, 2009 at 9:38 AM, Jon wrote: >> > From: Sascha

[U-Boot] [PATCH V2] mpc5200: reduce delays in i2c

2009-03-30 Thread Jon Smirl
Make the i2c delays smaller. The measured delay is 55us at 100Khz. Set the delay to 15us which should work for 400Khz. 100Khz will loop four times and get a 60us delay. Previous total delay was 100,000us new total delay is 150,000us before timeout. Signed-off-by: Jon Smirl --- cpu/mpc5xxx/i2c.c

[U-Boot] pending patches website

2009-03-30 Thread Mike Frysinger
not so long ago there was some custom thingy that was running on the u-boot website that'd automatically grab patches from the mailing list and try to file them away so they wouldnt get lost. but i cant seem to find it any more. is it gone ? -mike signature.asc Description: This is a digital

Re: [U-Boot] [PATCH] rtc: remove broken rtc_read and rtc_write declarations

2009-03-30 Thread Detlev Zundel
Hi Kim, > commit 04e11cf3 "rtc: add support for 4543 RTC (manufactured by e.g. > EPSON)" introduces the following build error on boards configuring e.g, > the ds1374 rtc: > > Configuring for MPC837XEMDS board... > ds1374.c:103: error: static declaration of 'rtc_read' follows non-static > declarat

[U-Boot] [PATCH] mpc83xx: Set guarded bit on BAT that covers the end of the address space

2009-03-30 Thread Kim Phillips
continuation of commit a5d7049a4 to remaining mpc83xx boards that suffer from the same problem. Signed-off-by: Kim Phillips CC: Scott Wood --- include/configs/MPC8349EMDS.h |3 ++- include/configs/MPC8349ITX.h |3 ++- include/configs/MVBLM7.h |3 ++- include/configs/SIMPC8313.

Re: [U-Boot] [PATCH] 8313erdb: Set guarded bit on BAT that covers the end of the address space.

2009-03-30 Thread Kim Phillips
On Tue, 17 Mar 2009 12:09:31 -0500 Scott Wood wrote: > This board currently sets DBAT6 to cover all of the final 256MiB of > address space; however, not all of this space is covered by a device. In > particular, flash sits at 0xfe00-0xfe7f, and nothing is mapped > at the far end of the a

Re: [U-Boot] [PATCH 1/2] Fix OneNAND ipl to read CONFIG_SYS_MONITOR_LEN

2009-03-30 Thread Scott Wood
apgmoorthy wrote: > Currently OneNAND initial program loader (ipl) reads only block 0 ie 128KB. > However, u-boot image for apollon board is 195KB making the board > unbootable with OneNAND. > > Fix ipl to read CONFIG_SYS_MONITOR_LEN. > CONFIG_SYS_MONITOR_LEN macro holds the U-Boot image size. >

Re: [U-Boot] Enabling ARM DCache (and MMU setup) in U-Boot

2009-03-30 Thread Jean-Christophe PLAGNIOL-VILLARD
On 21:56 Mon 30 Mar , Drasko DRASKOVIC wrote: > Hi all, > I would like to eneble DCache in U-Boot, because peripheral register R/W and > SDRAM R/W is extremely slow on my platform, so booting Linux image takes > unexceptable long time. But apparently for ARM, MMU setup is needed first. > Now, I

Re: [U-Boot] ARM Pull Request

2009-03-30 Thread Jean-Christophe PLAGNIOL-VILLARD
On 21:49 Mon 30 Mar , Wolfgang Denk wrote: > Dear Dirk Behme, > > In message <49d11e7d.5030...@googlemail.com> you wrote: > > > > >> http://lists.denx.de/pipermail/u-boot/2009-March/049762.html > > >> > > >> Please remove it from the pull request until everybody agreed > > > this duplicated c

[U-Boot] Enabling ARM DCache (and MMU setup) in U-Boot

2009-03-30 Thread Drasko DRASKOVIC
Hi all, I would like to eneble DCache in U-Boot, because peripheral register R/W and SDRAM R/W is extremely slow on my platform, so booting Linux image takes unexceptable long time. But apparently for ARM, MMU setup is needed first. Now, I did not find example on any presented ARM platforms include

Re: [U-Boot] ARM Pull Request

2009-03-30 Thread Wolfgang Denk
Dear Dirk Behme, In message <49d11e7d.5030...@googlemail.com> you wrote: > > >> http://lists.denx.de/pipermail/u-boot/2009-March/049762.html > >> > >> Please remove it from the pull request until everybody agreed > > this duplicated code > > It would be nice if you could give the exact file in

Re: [U-Boot] Out-of-tree build for imx31_phycore_eet fails

2009-03-30 Thread Wolfgang Denk
Dear Guennadi, In message you wrote: > > > /bin/sh: line 1: /work/wd/tmp-arm/include/config.h: No such file or > > directory > > make: *** [imx31_phycore_eet_config] Error 1 > > ok, that's just a missing > > + @mkdir -p $(obj)include > > right? will submit. Thanks. > > Please fix. > >

Re: [U-Boot] ARM Pull Request

2009-03-30 Thread Dirk Behme
Dear Jean-Christophe, Jean-Christophe PLAGNIOL-VILLARD wrote: > On 15:33 Mon 30 Mar , Dirk Behme wrote: >> Jean-Christophe PLAGNIOL-VILLARD wrote: >>> Hi Wolfgang, >>> >>> Please pull >>> The following changes since commit 88685b5f62274167ad2ba8a58e108d89ff71955b: >>> Wolfgang Denk (1): >>>

[U-Boot] [PATCH v2] OMAP3: Update Overo pin mux for new expansion board

2009-03-30 Thread Dirk Behme
A new Overo expansion board uses GPIO 14, 21, 22 and 23 for LED's and switches. This patch changes the pinmux configuration for those pins. They were previously set up for unused MMC3_DAT4-7. Signed-off-by: Steve Sakoman Signed-off-by: Dirk Behme --- Changes in v2: - Add Dirk's Signed-off-by -

Re: [U-Boot] Out-of-tree build for imx31_phycore_eet fails

2009-03-30 Thread Guennadi Liakhovetski
Hi Wolfgang, On Sun, 29 Mar 2009, Wolfgang Denk wrote: > Dear Guennadi, > > out-of-tree building for the imx31_phycore_eet target fails: > > -> make O=/work/wd/tmp-arm imx31_phycore_eet_config > /bin/sh: line 1: /work/wd/tmp-arm/include/config.h: No such file or directory > make: *** [imx31_phy

[U-Boot] [PATCH] rtc: remove broken rtc_read and rtc_write declarations

2009-03-30 Thread Kim Phillips
commit 04e11cf3 "rtc: add support for 4543 RTC (manufactured by e.g. EPSON)" introduces the following build error on boards configuring e.g, the ds1374 rtc: Configuring for MPC837XEMDS board... ds1374.c:103: error: static declaration of 'rtc_read' follows non-static declaration /home/r1aaha/git/u

[U-Boot] Please pull u-boot-mpc85xx.git

2009-03-30 Thread Kumar Gala
The following changes since commit 2344bb8de2354101a8264c2123303c9d8d2aed3c: Detlev Zundel (1): inka4x0: Use proper accessor macros for memory mapped registers. are available in the git repository at: git://www.denx.de/git/u-boot-mpc85xx.git master Dave Liu (2): fsl-ddr: Fix tw

Re: [U-Boot] U-boot NAND boot on IMX31 3stack(ARM)

2009-03-30 Thread Magnus Lilja
Hi 2009/3/30 alfred steele : > Hi Magnus, > > Thanks! > Do you remember, off the head, what kind of hardware differences > between MX31 and Phycore.  I am kind of trying to identify the > differences between the two in order to be able to map the patch to > the differences. > Was the nand_spl dire

Re: [U-Boot] Out-of-tree build of API code fails

2009-03-30 Thread Rafal Jaworowski
Dear Wolfgang, On 2009-03-29, at 00:03, Wolfgang Denk wrote: > Dear Rafal, > > it seems the api_examples/ code fails when building out of tree: ... > Could you please have a look? Thanks in advance. Sure, I'll take a look. kind regards, Rafal ___

Re: [U-Boot] [PATCH] OMAP3: Update Overo pin mux for new expansion board

2009-03-30 Thread Wolfgang Denk
Dear Jean-Christophe PLAGNIOL-VILLARD, In message <20090330150504.gd21...@game.jcrosoft.org> you wrote: > > >>> A new Overo expansion board uses GPIO 14, 21, 22 and 23 for LED's and > >>> switches. This patch changes the pinmux configuration for those pins. > >>> They were previously set up for un

[U-Boot] [PATCH] Add imls utility command

2009-03-30 Thread Marco
This patch adds, under tools folder, a new command called imls. Its goal is the same of UBoot imls but it can be used as Linux shell command. It reads from raw mtd partition and prints the list of the stored images. I'd like to receive comments about the usefulness of this command. Signed-off-by:

Re: [U-Boot] U-boot NAND boot on IMX31 3stack(ARM)

2009-03-30 Thread Scott Wood
On Mon, Mar 30, 2009 at 11:48:57AM -0500, alfred steele wrote: > Was the nand_spl directory created for imx31(PDK) NAND specific > changes. No. It has a "board" subdirectory where board-specific code goes, plus some board-independent drivers. > I am also wondering if there is a include file whic

Re: [U-Boot] [PATCH v4] board support patch for phyCORE-MPC5200B-tiny

2009-03-30 Thread Markus Rathgeb
On Mon, Mar 30, 2009 at 7:01 PM, Jon Smirl wrote: > On Mon, Mar 30, 2009 at 12:13 PM, Anatolij Gustschin wrote: >> Jon Smirl wrote: >>> On Sun, Mar 29, 2009 at 10:08 AM, Markus Rathgeb >>> wrote: Hi! Have you read the BIOSEMU stuff in the mailing list? Can you adjust the PCI

Re: [U-Boot] [PATCH v4] board support patch for phyCORE-MPC5200B-tiny

2009-03-30 Thread Jon Smirl
On Mon, Mar 30, 2009 at 12:13 PM, Anatolij Gustschin wrote: > Jon Smirl wrote: >> On Sun, Mar 29, 2009 at 10:08 AM, Markus Rathgeb >> wrote: >>> Hi! >>> >>> Have you read the BIOSEMU stuff in the mailing list? >>> Can you adjust the PCI section and perhaps you can include the video >>> example (s

[U-Boot] [PATCH 3/3] arm: unify reset command

2009-03-30 Thread Jean-Christophe PLAGNIOL-VILLARD
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD --- cpu/arm1136/cpu.c|8 cpu/arm1176/cpu.c|8 cpu/arm720t/cpu.c|8 cpu/arm920t/cpu.c|8 cpu/arm925t/cpu.c|8 -

[U-Boot] [PATCH 1/3] arm: update co-processor 15 access

2009-03-30 Thread Jean-Christophe PLAGNIOL-VILLARD
import system.h from linux Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD --- cpu/arm1136/cpu.c| 50 --- cpu/arm1176/cpu.c| 58 ++- cpu/arm720t/cpu.c| 58 ++- cpu/arm920t/cpu.c|

[U-Boot] [PATCH 2/3] arm: clean cache management

2009-03-30 Thread Jean-Christophe PLAGNIOL-VILLARD
unify arm cache management except for non standard cache as ARM7TDMI Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD --- board/armltd/integratorap/split_by_variant.sh | 16 +++- cpu/arm1136/cpu.c | 46 +++- cpu/arm1176/cpu.c |

Re: [U-Boot] ARM Pull Request

2009-03-30 Thread Jean-Christophe PLAGNIOL-VILLARD
Hi Wolfgang, The OMAP3 patch has been dropped Please Pull The following changes since commit 88685b5f62274167ad2ba8a58e108d89ff71955b: Wolfgang Denk (1): VCMA9: fix compile errors are available in the git repository at: git://git.denx.de/u-boot-arm.git master Jean-Christophe PLAGNI

Re: [U-Boot] [PATCH v4] board support patch for phyCORE-MPC5200B-tiny

2009-03-30 Thread Jon Smirl
On Mon, Mar 30, 2009 at 12:13 PM, Anatolij Gustschin wrote: > Jon Smirl wrote: >> On Sun, Mar 29, 2009 at 10:08 AM, Markus Rathgeb >> wrote: >>> Hi! >>> >>> Have you read the BIOSEMU stuff in the mailing list? >>> Can you adjust the PCI section and perhaps you can include the video >>> example (s

[U-Boot] ARM Pull Request

2009-03-30 Thread Jean-Christophe PLAGNIOL-VILLARD
Hi Wolfgang, The OMAP3 patch has been dropped Please Pull ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

[U-Boot] AT91 Pull Request

2009-03-30 Thread Jean-Christophe PLAGNIOL-VILLARD
Hi Wolfgang, the I2C drivers has been dropped Please pull The following changes since commit 88685b5f62274167ad2ba8a58e108d89ff71955b: Wolfgang Denk (1): VCMA9: fix compile errors are available in the git repository at: git://git.denx.de/u-boot-at91.git master Jean-Christophe PLAG

Re: [U-Boot] U-boot NAND boot on IMX31 3stack(ARM)

2009-03-30 Thread alfred steele
Hi Magnus, Thanks! Do you remember, off the head, what kind of hardware differences between MX31 and Phycore. I am kind of trying to identify the differences between the two in order to be able to map the patch to the differences. Was the nand_spl directory created for imx31(PDK) NAND specific ch

Re: [U-Boot] [PATCH v4] board support patch for phyCORE-MPC5200B-tiny

2009-03-30 Thread Anatolij Gustschin
Jon Smirl wrote: > On Sun, Mar 29, 2009 at 10:08 AM, Markus Rathgeb > wrote: >> Hi! >> >> Have you read the BIOSEMU stuff in the mailing list? >> Can you adjust the PCI section and perhaps you can include the video >> example (set undef video). > > I have v1 of the pcm030 hardware and the baseboa

Re: [U-Boot] [PATCH] OMAP3: Update Overo pin mux for new expansion board

2009-03-30 Thread Jean-Christophe PLAGNIOL-VILLARD
On 15:29 Mon 30 Mar , Dirk Behme wrote: > Jean-Christophe PLAGNIOL-VILLARD wrote: >> On 20:00 Mon 16 Mar , Dirk Behme wrote: >>> A new Overo expansion board uses GPIO 14, 21, 22 and 23 for LED's and >>> switches. This patch changes the pinmux configuration for those pins. >>> They were prev

Re: [U-Boot] ARM Pull Request

2009-03-30 Thread Jean-Christophe PLAGNIOL-VILLARD
On 15:33 Mon 30 Mar , Dirk Behme wrote: > Jean-Christophe PLAGNIOL-VILLARD wrote: >> Hi Wolfgang, >> >> Please pull >> The following changes since commit 88685b5f62274167ad2ba8a58e108d89ff71955b: >> Wolfgang Denk (1): >> VCMA9: fix compile errors >> >> are available in the git reposit

Re: [U-Boot] What to do for a working BIOSEMU and ATI_RADEON_FB environment?

2009-03-30 Thread Anatolij Gustschin
Markus Rathgeb wrote: > -#define CONFIG_SYS_MONITOR_LEN (192 << 10) /* Reserve 192 kB for Monitor */ > -#define CONFIG_SYS_MALLOC_LEN (128 << 10) /* Reserve 128 kB for malloc() */ > +#define CONFIG_SYS_MONITOR_LEN (1024 << 10) /* Reserve 1024 kB for Monitor > */ > +#define CONFIG_SYS_MALLOC_

Re: [U-Boot] [PATCH 13/19] omap3: remove duplicate interrupts code

2009-03-30 Thread Dirk Behme
Dear Jean-Christophe, Jean-Christophe PLAGNIOL-VILLARD wrote: > Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD > --- > cpu/arm_cortexa8/omap3/interrupts.c | 128 > --- > 1 files changed, 0 insertions(+), 128 deletions(-) It seems to me that this patch is a re-

Re: [U-Boot] ARM Pull Request

2009-03-30 Thread Dirk Behme
Jean-Christophe PLAGNIOL-VILLARD wrote: > Hi Wolfgang, > > Please pull > The following changes since commit 88685b5f62274167ad2ba8a58e108d89ff71955b: > Wolfgang Denk (1): > VCMA9: fix compile errors > > are available in the git repository at: > > git://git.denx.de/u-boot-arm.git mast

Re: [U-Boot] [PATCH] OMAP3: Update Overo pin mux for new expansion board

2009-03-30 Thread Dirk Behme
Jean-Christophe PLAGNIOL-VILLARD wrote: > On 20:00 Mon 16 Mar , Dirk Behme wrote: >> A new Overo expansion board uses GPIO 14, 21, 22 and 23 for LED's and >> switches. This patch changes the pinmux configuration for those pins. >> They were previously set up for unused MMC3_DAT4-7. >> >> Signed

Re: [U-Boot] [PATCH] Add "source" command; prepare removal of "autoscr" command

2009-03-30 Thread Peter Tyser
The changes look good to me. 2 comments below: > +/* > + * Keep for now for backward compatibility; > + * remove later when support for "autoscr" goes away. > + */ > +U_BOOT_CMD( > + autoscr, 2, 0, do_source, > + "run script from memory", > + "[addr] - run script starting at addr" >

Re: [U-Boot] [PATCH] NetLoop initialization bug

2009-03-30 Thread Michael Zaidman
Hello Heiko, Please see my comments and updated patch below. On Mon, Mar 30, 2009 at 7:12 AM, Heiko Schocher wrote: > Hello Michael, > > Michael Zaidman wrote: >> Hi Heiko, >> >> The patch "netloop: speed up NetLoop" you delivered >> into the u-boot-2009.03 introduced bug I have described >> bel

Re: [U-Boot] [PATCH 12/13] at91: add hardware i2c drivers

2009-03-30 Thread Jean-Christophe PLAGNIOL-VILLARD
On 12:43 Mon 30 Mar , Wolfgang Denk wrote: > Dear Jean-Christophe PLAGNIOL-VILLARD, > > In message <20090330085011.ga21...@game.jcrosoft.org> you wrote: > > > > > Hmm.. maybe this should be fixed in Linux too. > > IMHO no because the double tab was use to align but field of the register > > I

Re: [U-Boot] [PATCH 12/13] at91: add hardware i2c drivers

2009-03-30 Thread Wolfgang Denk
Dear Jean-Christophe PLAGNIOL-VILLARD, In message <20090330085011.ga21...@game.jcrosoft.org> you wrote: > > > Hmm.. maybe this should be fixed in Linux too. > IMHO no because the double tab was use to align but field of the register It doesn't matter what it's being used for when it causes too lo

Re: [U-Boot] [PATCH 12/13] at91: add hardware i2c drivers

2009-03-30 Thread Jean-Christophe PLAGNIOL-VILLARD
> >>> +#ifndef AT91_TWI_H > >>> +#define AT91_TWI_H > >>> + > >>> +#define AT91_TWI_CR 0x00/* Control Register */ > >>> +#define AT91_TWI_START (1 << 0) /* Send a Start > >>> Condition */ > >>> +#define AT91_TWI_STOP (1 << 1)

Re: [U-Boot] [PATCH] Canyonlands SATA harddisk driver

2009-03-30 Thread Kazuaki Ichinohe
Hello Denk, After confirming operation, I'll send sata_dwc.c with cmd_sata.c again. Regards, Kazuaki Ichinohe Wolfgang Denk wrote: > Dear Kazuaki Ichinohe, > > In message <49cb5f77.1060...@fsi.co.jp> you wrote: > ... >> >Why do you add this 460EX SATA support to cmd_scsi.c? Wouldn't cmd_sata.c

Re: [U-Boot] [PATCH 12/13] at91: add hardware i2c drivers

2009-03-30 Thread Heiko Schocher
Hello Jean-Christophe, Jean-Christophe PLAGNIOL-VILLARD wrote: > On 07:53 Mon 30 Mar , Heiko Schocher wrote: >> Hello Jean, >> >> Jean-Christophe PLAGNIOL-VILLARD wrote: >>> Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD >>> --- >>> cpu/arm926ejs/at91/Makefile|6

Re: [U-Boot] [PATCH v3 5/5] inka4x0: Use proper accessor macros for memory mapped registers.

2009-03-30 Thread Wolfgang Denk
Dear Detlev Zundel, In message <1238365896-20271-6-git-send-email-...@denx.de> you wrote: > Signed-off-by: Detlev Zundel > --- > board/inka4x0/inka4x0.c | 139 > +-- > 1 files changed, 75 insertions(+), 64 deletions(-) Applied, thanks. Best regards

Re: [U-Boot] [PATCH v3 3/5] inka4x0: Add hardware diagnosis functions for inka4x0

2009-03-30 Thread Wolfgang Denk
Dear Detlev Zundel, In message <1238365896-20271-4-git-send-email-...@denx.de> you wrote: > This patch adds advanced diagnosis functions for the inka4x0 board. > > Signed-off-by: Andreas Pfefferle > Signed-off-by: Detlev Zundel > --- > board/inka4x0/Makefile|4 +- > board/inka4x0/inka4

Re: [U-Boot] [PATCH v3 1/5] drivers/twserial: Add protocol driver for "three wire serial" interface.

2009-03-30 Thread Wolfgang Denk
Dear Detlev Zundel, In message <1238365896-20271-2-git-send-email-...@denx.de> you wrote: > This pretty unintelligent interface is used on some RTC chips. > > Signed-off-by: Detlev Zundel > --- > Makefile|3 +- > drivers/twserial/Makefile | 46 ++ > d

Re: [U-Boot] [PATCH v3 4/5] inka4x0: Add hardware diagnosis and RTC in configuration.

2009-03-30 Thread Wolfgang Denk
Dear Detlev Zundel, In message <1238365896-20271-5-git-send-email-...@denx.de> you wrote: > This patch adds the board specific communication routines needed by > the external 4543 RTC. > > Signed-off-by: Detlev Zundel > Signed-off-by: Andreas Pfefferle > --- > board/inka4x0/inka4x0.c | 20

Re: [U-Boot] [PATCH v3 2/5] rtc: add support for 4543 RTC (manufactured by e.g. EPSON)

2009-03-30 Thread Wolfgang Denk
Dear Detlev Zundel, In message <1238365896-20271-3-git-send-email-...@denx.de> you wrote: > Signed-off-by: Detlev Zundel > Signed-off-by: Andreas Pfefferle > --- > drivers/rtc/Makefile |1 + > drivers/rtc/rtc4543.c | 118 > + > include/rtc.

Re: [U-Boot] [PATCH 12/13] at91: add hardware i2c drivers

2009-03-30 Thread Jean-Christophe PLAGNIOL-VILLARD
On 07:53 Mon 30 Mar , Heiko Schocher wrote: > Hello Jean, > > Jean-Christophe PLAGNIOL-VILLARD wrote: > > Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD > > --- > > cpu/arm926ejs/at91/Makefile|6 + > > .../arm926ejs/at91/at91cap9_i2c.c | 31 ++-

Re: [U-Boot] [PATCH] NetLoop initialization bug

2009-03-30 Thread Wolfgang Denk
Dear Heiko, In message <49d054ba.1060...@denx.de> you wrote: > > The following 2 vars are just used, if CONFIG_CMD_CDP > is used, can we do a "#if defined" around it? > > + NetOurNativeVLAN = getenv_VLAN("nvlan"); > > + NetOurVLAN = getenv_VLAN("vlan"); We probably could, but we then

Re: [U-Boot] [Patch] soft_i2c.c compiler/linker error

2009-03-30 Thread Jens Scharsig
Heiko Schocher schrieb: > Hello Jean-Christophe > > Jean-Christophe PLAGNIOL-VILLARD wrote: >> On 11:31 Fri 27 Mar , Jens Scharsig wrote: >> >>> This patch fix the compiler/linker errors >>> >>> common/cmd_i2c.c:1252: undefined reference to `i2c_get_bus_speed' >>> common/cmd_i2c.c:1256: und

Re: [U-Boot] [Patch V2] soft_i2c.c compiler/linker error

2009-03-30 Thread Jens Scharsig
This patch fix the compiler/linker errors common/cmd_i2c.c:1252: undefined reference to `i2c_get_bus_speed' common/cmd_i2c.c:1256: undefined reference to `i2c_set_bus_speed' if board use CONFIG_I2C_CMD_TREE and CONFIG_I2C_MULTI_BUS is not uesd/undef (wrong define order) and removes additiona