Re: [U-Boot-Users] [RFC][FSL DDR 0/8] Freescale DDR rewrit

2008-07-08 Thread David Saada
Does this RFC also include support for identifying and initializing more than one DDR module? I'm not sure I follow exactly what you are asking? Do you mean using different DDR modules on different chip selects of the same controller? or something else? - k Kumar - the current SPD DDR

Re: [U-Boot-Users] Custodianship updates

2008-07-08 Thread Peter Pearse
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: 08 July 2008 00:25 To: u-boot-users@lists.sourceforge.net Cc: Peter Pearse; Jean-Christophe PLAGNIOL-VILLARD; John Rigby; Grant Likely Subject: Custodianship updates Hello everybody, as many of you

Re: [U-Boot-Users] [PATCH] Add MVBC_P board

2008-07-08 Thread Andre Schwarz
Kim, thanks for the hints. Kim Phillips schrieb: On Fri, 04 Jul 2008 09:42:24 +0200 Andre Schwarz [EMAIL PROTECTED] wrote: Hello Andre, board/mvbc_p/fpga.c| 177 board/mvbc_p/fpga.h| 34 couldn't help but notice this file is

Re: [U-Boot-Users] [PATCH 07/10] [ARM] TQMA31: adjust voltage regulators in PMIC MC13738

2008-07-08 Thread Jens Gehrlein
Hi Magnus, Magnus Lilja schrieb: Hi, Jens Gehrlein wrote: +static int adjust_voltages (void) +{ +u32 reg; +u32 val; +static struct spi_slave *slave = NULL; + +slave = spi_setup_slave(1, 0, 100, +SPI_MODE_2 | SPI_CS_HIGH); +if (!slave) +

Re: [U-Boot-Users] [PATCH][RFC] pci: Add check PCI bridge class (Re: [PATCH][RFC] pci: Remove CONFIG_PCI_SKIP_HOST_BRIDGE and Add check PCI class of host bridge)

2008-07-08 Thread Stefan Roese
Hi Nobuhiro, On Tuesday 08 July 2008, Nobuhiro Iwamatsu wrote: c) CONFIG_PCI_CONFIG_HOST_BRIDGE is defined and the env variable pciconfighost is defined too If I understand you correctly, then you have some PCI devices at BDF == 0,0,0 that need to be configured (and not skipped).

[U-Boot-Users] [PATCH] pci: Move PCI device configuration check into a separate weak function

2008-07-08 Thread Stefan Roese
This patch moves the check, if a device should be skipped in PCI PNP configuration into the function pci_skip_dev(). This function is defined as weak so that it can be overwritten by a platform specific one if needed. The check if the device should get printed in the PCI summary upon bootup (when

Re: [U-Boot-Users] V2 status, (Was Re: V2: Error in recent check-in)

2008-07-08 Thread Robert Schwebel
On Tue, Jul 08, 2008 at 12:36:13AM -0700, Chris Zankel wrote: I really like the structure of V2 but my fear is that there's not enough man power behind it. It depends on how far people's interest will go in the future. It turned out to be relatively easy to port things over to a solid design

Re: [U-Boot-Users] [PATCH 04/10 v2] [ARM] TQMA31: add new board with i.MX31 processor

2008-07-08 Thread Heiko Schocher
Hello Jens, one comment to your patch: Jens Gehrlein wrote: Signed-off-by: Jens Gehrlein [EMAIL PROTECTED] --- Fixed two bugs: a) added NFS mount option rw to default environment b) added prefix $(obj) in front of .depend in Makefile. Thank you Magnus for catching that. [...] +

[U-Boot-Users] [PATCH] jedec_flash: Fix AM29DL800BB device ID

2008-07-08 Thread Stefan Roese
As pointed out by Jerry Hicks, this patch corrects the device ID of the Spansion AM29DL800BB NOR device. Verified against latest Spansion datasheet (rev C4 from Dezember 2006). Signed-off-by: Stefan Roese [EMAIL PROTECTED] --- drivers/mtd/jedec_flash.c |2 +- 1 files changed, 1

Re: [U-Boot-Users] PATCH: drivers/mtd/jedec_flash.c (typo)

2008-07-08 Thread Stefan Roese
On Monday 07 July 2008, Jerry Hicks wrote: We were using a custom driver written by Andy Lowe of Montavista. He had a #define local to our flash.c implementation when I noticed the discrepancy between his local definition and the one in the u-boot header. On our hardware it works with 0x22CB

Re: [U-Boot-Users] [PATCH 04/10 v2] [ARM] TQMA31: add new board with i.MX31 processor

2008-07-08 Thread Jean-Christophe PLAGNIOL-VILLARD
On 11:33 Tue 08 Jul , Jens Gehrlein wrote: Signed-off-by: Jens Gehrlein [EMAIL PROTECTED] --- Fixed two bugs: a) added NFS mount option rw to default environment b) added prefix $(obj) in front of .depend in Makefile. Thank you Magnus for catching that. MAINTAINERS

Re: [U-Boot-Users] [PATCH 05/10] [ARM] TQMA31: add support for I2C, I2C temperature sensor and I2C-EEPROM

2008-07-08 Thread Jean-Christophe PLAGNIOL-VILLARD
#if defined(CONFIG_DISPLAY_CPUINFO) int print_cpuinfo (void) { diff --git a/drivers/i2c/mxc_i2c.c b/drivers/i2c/mxc_i2c.c index 6f9306f..68d2720 100644 --- a/drivers/i2c/mxc_i2c.c +++ b/drivers/i2c/mxc_i2c.c @@ -209,4 +209,17 @@ int i2c_write(uchar chip, uint addr, int alen, uchar

Re: [U-Boot-Users] [PATCH 09/10] [ARM] TQMA31: add FPGA configuration flash

2008-07-08 Thread Jean-Christophe PLAGNIOL-VILLARD
/* * Bank start addresses. * 4 x 32 MiB is the maximum for user and U-Boot code. Please adapt the list * as well as CFG_MAX_FLASH_BANKS to your TQM. Also consider dual die chips * or single die chips, e.g. one dual die chip represents two banks. + * The fifth bank is a separate chip

Re: [U-Boot-Users] [PATCH 05/10] [ARM] TQMA31: add support for I2C, I2C temperature sensor and I2C-EEPROM

2008-07-08 Thread Jens Gehrlein
Jean-Christophe PLAGNIOL-VILLARD schrieb: #if defined(CONFIG_DISPLAY_CPUINFO) int print_cpuinfo (void) { diff --git a/drivers/i2c/mxc_i2c.c b/drivers/i2c/mxc_i2c.c index 6f9306f..68d2720 100644 --- a/drivers/i2c/mxc_i2c.c +++ b/drivers/i2c/mxc_i2c.c @@ -209,4 +209,17 @@ int

[U-Boot-Users] [PATCH 1/1] microblaze: Add FIS support for Microblaze CPU

2008-07-08 Thread monstr
From: Michal Simek [EMAIL PROTECTED] Signed-off-by: Michal Simek [EMAIL PROTECTED] --- lib_microblaze/bootm.c | 444 ++-- 1 files changed, 430 insertions(+), 14 deletions(-) diff --git a/lib_microblaze/bootm.c b/lib_microblaze/bootm.c index

Re: [U-Boot-Users] [RFC][FSL DDR 0/8] Freescale DDR rewrit

2008-07-08 Thread Kumar Gala
On Jul 8, 2008, at 2:32 AM, David Saada wrote: Does this RFC also include support for identifying and initializing more than one DDR module? I'm not sure I follow exactly what you are asking? Do you mean using different DDR modules on different chip selects of the same controller? or

[U-Boot-Users] [cfi-flash] Please pull git://www.denx.de/git/u-boot-cfi-flash.git

2008-07-08 Thread Stefan Roese
The following changes since commit c956717ab25c962ef49d49064dfc73f4edcba1fb: Wolfgang Denk (1): Merge branch 'master' of /home/wd/git/u-boot/custodians are available in the git repository at: git://www.denx.de/git/u-boot-cfi-flash.git master Stefan Roese (1): jedec_flash: Fix

Re: [U-Boot-Users] [RFC][FSL DDR 0/8] Freescale DDR rewrit

2008-07-08 Thread David Saada
Does this RFC also include support for identifying and initializing more than one DDR module? I'm not sure I follow exactly what you are asking? Do you mean using different DDR modules on different chip selects of the same controller? or something else? - k Kumar - the

Re: [U-Boot-Users] [PATCH] ARM: Add support for Lyrtech SFF-SDR board (ARM926EJS)

2008-07-08 Thread Hugo Villeneuve
[EMAIL PROTECTED] wrote: In message [EMAIL PROTECTED] you wrote: ARM: This patch adds support for the Lyrtech SFF-SDR board, based on the TI DaVinci architecture (ARM926EJS). Signed-off-by: Hugo Villeneuve [EMAIL PROTECTED] Signed-off-by: Philip Balister [EMAIL PROTECTED] ---

Re: [U-Boot-Users] [PATCH] mips: When booting Linux images, add'ethaddr' and 'eth1addr' to the environment

2008-07-08 Thread Shinya Kuribayashi
McMullan, Jason wrote: On Sun, 2008-07-06 at 14:59 +0900, Shinya Kuribayashi wrote: Jason McMullan wrote: Add 'ethaddr' and 'eth1addr' to the Linux kernel environment if they are set in the U-Boot environment. Looking closely into linux/arch/*, I found that mips is the only architecture

[U-Boot-Users] [GIT PULL] MIPS updates

2008-07-08 Thread Shinya Kuribayashi
Please pull MIPS update to pick up the following patch. The following changes since commit c956717ab25c962ef49d49064dfc73f4edcba1fb: Wolfgang Denk (1): Merge branch 'master' of /home/wd/git/u-boot/custodians are available in the git repository at: git://git.denx.de/u-boot-mips.git

Re: [U-Boot-Users] [PATCH] add 'license' command to u-boot commandline

2008-07-08 Thread Detlev Zundel
Hi, On Mon, Jul 07, 2008 at 04:53:14PM +0200, Wolfgang Denk wrote: I support this, but then we should *always* print this message, not only when it starts in an interactive mode (or some guys could try to get away by disabling interactive mode). Such a restriction is (fortunately)

[U-Boot-Users] [PATCH 01/10 v2] [ARM] MXC: insert bus busy check in i2c_probe

2008-07-08 Thread Jens Gehrlein
On fast CPUs the time between two chip queries can become too short to issue clear start and stop conditions. The bus seems to be blocked. This cannot be compensated by just waiting for completed byte transfer. The patch introduces polling of the bus busy bit in the I2C controller's status

[U-Boot-Users] [PATCH 09/10 v2] [ARM] TQMA31: add FPGA configuration flash

2008-07-08 Thread Jens Gehrlein
Signed-off-by: Jens Gehrlein [EMAIL PROTECTED] --- Fixed whitespace, tabs isssues. Thank you Jean-Christophe. board/tqc/tqma31/tqma31.c |6 ++ include/asm-arm/arch-mx31/mx31-regs.h |1 + include/configs/TQMA31.h |7 +-- 3 files changed, 12

Re: [U-Boot-Users] [PATCH 04/10 v2] [ARM] TQMA31: add new board with i.MX31 processor

2008-07-08 Thread Wolfgang Denk
In message [EMAIL PROTECTED] you wrote: +/* Timer tick */ +#define CFG_HZ 32768 CFG_HZ is a constant and has to be 1000. Best regards, Wolfgang Denk -- DENX Software Engineering GmbH, MD: Wolfgang Denk Detlev Zundel HRB 165235 Munich, Office:

Re: [U-Boot-Users] [PATCH] ARM: Add support for Lyrtech SFF-SDR board (ARM926EJS)

2008-07-08 Thread Wolfgang Denk
In message [EMAIL PROTECTED] you wrote: Wolfgang and/or Jean-Christophe, I can see that you have applied V2 of my patch, but the latest patch that I sent with all the errors and the style issues fixed was V8. I will re-send I dodn't find this in my list, then. Sorry. the patch V8 in a few

Re: [U-Boot-Users] [PATCH] ARM: Add support for Lyrtech SFF-SDR board (ARM926EJS)

2008-07-08 Thread Hugo Villeneuve
[EMAIL PROTECTED] wrote: In message [EMAIL PROTECTED] you wrote: Wolfgang and/or Jean-Christophe, I can see that you have applied V2 of my patch, but the latest patch that I sent with all the errors and the style issues fixed was V8. I will re-send I dodn't find this in my list, then.

[U-Boot-Users] [PATCH] ARM: Fix for wrong patch version applied for Lyrtech SFF-SDR board (ARM926EJS)

2008-07-08 Thread Hugo Villeneuve
ARM: Fix for incorrect version of patch applied when adding support for the Lyrtech SFF-SDR board. Signed-off-by: Hugo Villeneuve [EMAIL PROTECTED] Signed-off-by: Philip Balister, OpenSDR [EMAIL PROTECTED] --- CREDITS |5 + board/davinci/sffsdr/Makefile|2

Re: [U-Boot-Users] [PATCH 04/10 v2] [ARM] TQMA31: add new board with i.MX31 processor

2008-07-08 Thread Jean-Christophe PLAGNIOL-VILLARD
Thank you very much for catching all these silly mistakes. A last question: When I want to reply all, your e-mail address doesn't appear in the to-field. I have to add the address manually. Is this intended? wierd, in the mail i'm not in the CC but in the FROM Best Regards, J.

[U-Boot-Users] [PATCH v2] Add MVBC_P board

2008-07-08 Thread Andre Schwarz
The MVBC_P is a MPC5200B based camera system with Intel Gigabit ethernet controller (using e1000) and custom Altera Cyclone-II FPGA on PCI. Please see doc/README.mvbc_p for details. Signed-off-by: Andre Schwarz [EMAIL PROTECTED] --- Grant, I've modified the patch to meet the requested changes

Re: [U-Boot-Users] [PATCH v2] Add MVBC_P board

2008-07-08 Thread Grant Likely
On Tue, Jul 8, 2008 at 10:16 AM, Andre Schwarz [EMAIL PROTECTED] wrote: The MVBC_P is a MPC5200B based camera system with Intel Gigabit ethernet controller (using e1000) and custom Altera Cyclone-II FPGA on PCI. Please see doc/README.mvbc_p for details. Signed-off-by: Andre Schwarz [EMAIL

[U-Boot-Users] [PATCH 1/2] fdt_support: fdt_fixup_dr_usb: add support for phy_type fixups

2008-07-08 Thread Anton Vorontsov
Currently U-Boot can only fixup the usb dr_mode, but some boards (namely MPC8315E-RDB) can use two PHY types: ULPI (stand-alone OTG port) or UTMI (connected to the four-ports hub, usb host only). This patch implements support for passing Dual-Role USB controller's device tree property phy_type

Re: [U-Boot-Users] No ethernet link on Lubbock board.

2008-07-08 Thread Jerry Van Baren
Victor wrote: This is a problem I've been fighting to for a long time. I'm sure it would be something stupid I haven't noticed, but I don't know what else to try. My Linux OS is working flawlessly with a correct eth0 device, so at least I know it's not (or should not) a hardware problem.

Re: [U-Boot-Users] [PATCH] Round the serial port clock divisor value returned by calc_divisor()

2008-07-08 Thread Jerry Van Baren
Hugo Villeneuve wrote: Round the serial port clock divisor value returned by calc_divisor(). Signed-off-by: Hugo Villeneuve [EMAIL PROTECTED] --- Rounding is important, especially when using high baud rates values like 115200bps. When using the non-rounded value, some boards will work

Re: [U-Boot-Users] No ethernet link on Lubbock board.

2008-07-08 Thread Victor
2008/7/8 Jerry Van Baren [EMAIL PROTECTED]: Victor wrote: This is a problem I've been fighting to for a long time. I'm sure it would be something stupid I haven't noticed, but I don't know what else to try. My Linux OS is working flawlessly with a correct eth0 device, so at least I know it's

Re: [U-Boot-Users] [PATCH 0/2] Coldfire Ethernet initialization changes

2008-07-08 Thread Liew Tsi Chung
Ben, I'm pushing these patches to a 'testing' branch on the net repo. Please clone it as follows: $ git clone git://git.denx.de/u-boot-net.git $ cd u-boot-net $ git checkout testing There is no testing branch in u-boot-net, so I applied the two patches you sent on top of current u-boot-net tree

Re: [U-Boot-Users] PHY lib

2008-07-08 Thread Ben Warren
Hi Michal, Michal Simek wrote: Hi Ben, Hi Michal, Michal Simek wrote: Hi Ben and others, do you have any plan to start with PHY libs? I saw to tsec driver - there are some phy description. I would like to use phy description for one eth driver which I do. I'm

Re: [U-Boot-Users] [PATCH 04/10 v2] [ARM] TQMA31: add new board with i.MX31 processor

2008-07-08 Thread Guennadi Liakhovetski
On Wed, 9 Jul 2008, Wolfgang Denk wrote: In message [EMAIL PROTECTED] you wrote: +# Copyright (C) 2008, Guennadi Liakhovetski [EMAIL PROTECTED] +# Copyright (C) 2008, Jens Gehrlein [EMAIL PROTECTED] Thanks for the credit, but, although IANAL, I think, one does not _have_ to

Re: [U-Boot-Users] [PATCH, resend] Support dynamic/patched NAND ENV offset

2008-07-08 Thread Harald Welte
On Tue, Jul 08, 2008 at 11:12:31PM +0200, Wolfgang Denk wrote: In message [EMAIL PROTECTED] you wrote: I also have another patchset for what I call 'dynpart' support, i.e. the dynamic calculation of a unit-specific partition table that ensures the net size of partitions are as per