Re: [U-Boot] Pull request - net

2009-06-09 Thread Ben Warren
Wolfgang, Wolfgang Denk wrote: Dear Ben Warren, In message 4a2c9343.20...@gmail.com you wrote: The following changes since commit 3bc8556f9b24af60dba2b55a0abb1182dff45ecc: Wolfgang Denk (1): Merge branch 'master' of git://git.denx.de/u-boot-mmc are available in the git

Re: [U-Boot] [PATCH] mpc512x: Add esd gmbh mecp5123 board support

2009-06-09 Thread Stefan Roese
Hi Wolfgang, On Monday 08 June 2009 20:14:33 Wolfgang Denk wrote: Dear Stefan, In message 200906081937.02354...@denx.de you wrote: + out_be32(im-mddrc.lut_table4_alternate_upper, CONFIG_SYS_MDDRCGRP_LUT4_AU); + out_be32(im-mddrc.lut_table4_alternate_lower,

Re: [U-Boot] [PATCH] nand/mpc512x: Add MPC512x NAND support (NFC)

2009-06-09 Thread Stefan Roese
John, On Monday 08 June 2009 21:09:01 John Rigby wrote: Are you able to read the second half of the NAND? The NAND package on the ADS contains two chips with two separate chip selects. Without the chip select code you will likely only see 512M instead of 1G. No, I didn't test the whole

Re: [U-Boot] [PATCH] nand/mpc512x: Add MPC512x NAND support (NFC)

2009-06-09 Thread Stefan Roese
Hi Wolfgang, On Monday 08 June 2009 21:46:08 Wolfgang Denk wrote: Did you actually see the code? Did you see the board specific code added to the common NFC driver code? This is not really something I like to see in common drivers. And such code usually get's a NAK from you as well. No,

Re: [U-Boot] [PATCH] nand/mpc512x: Add MPC512x NAND support (NFC)

2009-06-09 Thread Wolfgang Denk
Dear Stefan Roese, In message 200906090931.35945...@denx.de you wrote: Did you actually see the code? Did you see the board specific code added to the common NFC driver code? This is not really something I like to see in common drivers. And such code usually get's a NAK from you as

[U-Boot] [PATCH] mcp512x: Add macros for SCFR LPC divisor access

2009-06-09 Thread Stefan Roese
Thos macros will be used by the esd mecp5123 board. Signed-off-by: Stefan Roese s...@denx.de --- include/asm-ppc/immap_512x.h |3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/include/asm-ppc/immap_512x.h b/include/asm-ppc/immap_512x.h index 4f4b284..cdbbfea 100644 ---

[U-Boot] [PATCH v2] mpc512x: Add esd gmbh mecp5123 board support

2009-06-09 Thread Stefan Roese
MECP5123 is a MPC5121E based module by esd gmbh. Signed-off-by: Stefan Roese s...@denx.de Cc: Reinhard Arlt reinhard.a...@esd-electronics.com --- v2: - Fix indentation problem - get_ram_size() used - More documentation added - Copyright updated - Too long lines changed - Removed

[U-Boot] [PATCH v2] nand/mpc512x: Add MPC512x NAND support (NFC)

2009-06-09 Thread Stefan Roese
This patch adds NAND Flash Controller driver for MPC5121 revision 2. All device features, except hardware ECC and power management, are supported. This NFC driver replaces the one orignally posted by John Rigby: [PATCH] Freescale NFC NAND driver It's a port of the Linux driver version posted by

Re: [U-Boot] MPC8313ERDB u-boot upgrade usb problem

2009-06-09 Thread Deepak Gopalakrishnan
hi I ran into this problem while trying to include files necessary to include ehci feature for usb. It would be of great help if some one cud point in a direction where i can get help... Im using MPC8313 board and u-boot.1.3.0 on it. Regards, Deepak Gopalakrishnan Kim Phillips

Re: [U-Boot] [PATCH 17/30] lan91c96/smc91111/smc911x: get mac address from environment

2009-06-09 Thread Wolfgang Denk
Dear Mike, In message 1234847451-3210-18-git-send-email-vap...@gentoo.org you wrote: The environment is the canonical storage location of the mac address, so we're killing off the global data location and moving everything to querying the env directly. Also, do not bother checking the

[U-Boot] [PATCH v2 2/3] digsy MTC: Add SPI support.

2009-06-09 Thread Grzegorz Bernacki
Signed-off-by: Grzegorz Bernacki g...@semihalf.com --- v2: - use accessor macros board/digsy_mtc/digsy_mtc.c | 14 ++ include/configs/digsy_mtc.h |7 +++ 2 files changed, 21 insertions(+), 0 deletions(-) diff --git a/board/digsy_mtc/digsy_mtc.c

[U-Boot] [PATCH v2 1/3] mpc52xx: Add SPI driver.

2009-06-09 Thread Grzegorz Bernacki
Signed-off-by: Grzegorz Bernacki g...@semihalf.com --- v2: - use accessor macros drivers/spi/Makefile |1 + drivers/spi/mpc52xx_spi.c | 109 + include/mpc5xxx.h | 18 +++ 3 files changed, 128 insertions(+), 0 deletions(-)

[U-Boot] [PATCH v2 3/3] digsy MTC: Add 'mtc' command.

2009-06-09 Thread Grzegorz Bernacki
New command allows to: o check FW version o set LED status o set digital output status o get digital input status Signed-off-by: Grzegorz Bernacki g...@semihalf.com --- v2: - implement sub-commands via U_BOOT_CMD_MKENT macro board/digsy_mtc/Makefile|2 +-

Re: [U-Boot] ext3 inode_size

2009-06-09 Thread Wolfgang Denk
Dear Weirich, Bernhard, In message ce92b8b581b4584fb8ca86b51ede8ac51640bae...@wupexchange.riedel.net you wrote: I use ext3 with journal from u-boot and it worked fine using ext2load, but since I updated my desktop to the ext2fs library version 1.41.4 ext2ls in u-boot displays an empty

[U-Boot] [PATCH] mpc512x: MPC5121ADS: Add NAND support

2009-06-09 Thread Stefan Roese
This patch adds NAND support to the MPC5121ADS board. Please note that the image size increased since NAND support didn't fit in the current image size (256k). Signed-off-by: Stefan Roese s...@denx.de Cc: Wolfgang Denk w...@denx.de --- board/freescale/mpc5121ads/mpc5121ads.c | 27

[U-Boot] [PATCH v3] nand/mpc512x: Add MPC512x NAND support (NFC)

2009-06-09 Thread Stefan Roese
This patch adds NAND Flash Controller driver for MPC5121 revision 2. All device features, except hardware ECC and power management, are supported. This NFC driver replaces the one orignally posted by John Rigby: [PATCH] Freescale NFC NAND driver It's a port of the Linux driver version posted by

[U-Boot] [PATCH] fix ext2 inode size and calculations

2009-06-09 Thread Weirich, Bernhard
Fixed two endianness problems with old patch from 2009-01-30. From: unsik Kim donar...@gmail.com Signed-off-by: Bernhard Weirich bernhard.weir...@riedel.net --- fs/ext2/ext2fs.c2009-06-09 18:03:20.0 +0200 +++ fs/ext2/ext2fs.c2009-06-09 18:04:26.0 +0200 @@ -110,7 +110,7

[U-Boot] [patch/rfc] rm9200 lowevel_init: don't touch reserved/readonly registers

2009-06-09 Thread David Brownell
For some reason the AT91rm9200 lowlevel init writes to a bunch of reserved or read-only addresses. All the boards seem to define the value-to-be-written values as zero ... but they shouldn't actually be writing *anything* there. If there's a real need to write these locations, like an erratum

Re: [U-Boot] [PATCH] fix ext2 inode size and calculations

2009-06-09 Thread Wolfgang Denk
Dear Weirich, Bernhard, In message ce92b8b581b4584fb8ca86b51ede8ac51640bae...@wupexchange.riedel.net you wrote: Fixed two endianness problems with old patch from 2009-01-30. Please include Signed-off-by: message from the previous patch which your work is based on. From: unsik Kim

[U-Boot] [PATCH v3 1/6] ARM1136: Introduce CONFIG_PRELOADER macro.

2009-06-09 Thread Magnus Lilja
Currently CONFIG_ONENAND_IPL is used in a number of #ifdef's in start.S. In preparation for adding support for NAND SPL the macro CONFIG_PRELOADER is introducted and replaces the CONFIG_ONENAND_IPL in start.S. Signed-off-by: Magnus Lilja lilja.mag...@gmail.com --- README

[U-Boot] [PATCH v3 0/6] MX31: NAND boot for PDK boards.

2009-06-09 Thread Magnus Lilja
Hi all, This is the latest set of patches that introduces NAND boot support for the i.MX31 CPU in general and the PDK board especially. The patches apply on u-boot next and u-boot-arm next. I've taken care of all comments received (at least I think so) and changes from the previous version

[U-Boot] [PATCH v3 5/6] MX31: Add basic support for Freescale i.MX31 PDK board.

2009-06-09 Thread Magnus Lilja
Add support for Freescale's i.MX31 PDK board (a.k.a. 3 stack board). This patch assumes that some other program performs the actual NAND boot. Signed-off-by: Magnus Lilja lilja.mag...@gmail.com --- MAINTAINERS |4 + MAKEALL |1 +

[U-Boot] [PATCH v3 6/6] MX31: Add NAND SPL boot support to i.MX31 PDK board.

2009-06-09 Thread Magnus Lilja
Signed-off-by: Magnus Lilja lilja.mag...@gmail.com --- MAKEALL |1 + Makefile| 14 +++- board/freescale/mx31pdk/config.mk |4 + board/freescale/mx31pdk/lowlevel_init.S | 114

[U-Boot] [PATCH v3 2/6] MX31: Add NAND SPL for i.MX31.

2009-06-09 Thread Magnus Lilja
This patch adds the NAND SPL framework needed to boot i.MX31 boards from NAND. It has been tested on a i.MX31 PDK board with large page NAND. Small page NANDs should work as well, but this has not been tested. Note: The i.MX31 NFC uses a non-standard layout for large page NANDs, whether this is

[U-Boot] [PATCH v3 4/6] i.MX31: Create a common device file.

2009-06-09 Thread Magnus Lilja
Signed-off-by: Magnus Lilja lilja.mag...@gmail.com --- cpu/arm1136/mx31/Makefile|1 + cpu/arm1136/mx31/devices.c | 56 ++ include/asm-arm/arch-mx31/mx31.h |3 ++ 3 files changed, 60 insertions(+), 0 deletions(-) create mode 100644

Re: [U-Boot] [PATCH v3 1/6] ARM1136: Introduce CONFIG_PRELOADER macro.

2009-06-09 Thread Wolfgang Denk
Dear Magnus, In message bef59ad70a27ef8496f88b85510f8d2c236e8cd9.1244572159.git.lilja.mag...@gmail.com you wrote: Currently CONFIG_ONENAND_IPL is used in a number of #ifdef's in start.S. In preparation for adding support for NAND SPL the macro CONFIG_PRELOADER is introducted and replaces the

Re: [U-Boot] at91: fix a USB problem for AT91SAM9261

2009-06-09 Thread Jean-Christophe PLAGNIOL-VILLARD
On 16:54 Fri 05 Jun , RONETIX - Ilko Iliev wrote: This patch corrects the missing PLLB initialization in usb_cpu_init() for AT91SAM9261. Because of the missing PLLB initialization, the USB support for all AT91SAM9261 based boards will work only if the PLLB is configured by a precedent

[U-Boot] [PATCH v3 3/6] ARM: Add macros.h to be used in assembler file.

2009-06-09 Thread Magnus Lilja
From: Jean-Christophe PLAGNIOL-VILLARD plagn...@jcrosoft.com Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD plagn...@jcrosoft.com --- include/asm-arm/macro.h | 57 +++ 1 files changed, 57 insertions(+), 0 deletions(-) create mode 100644

Re: [U-Boot] at91: fix a USB problem for AT91SAM9261

2009-06-09 Thread Remy Bohmer
Hello, 2009/6/9 Jean-Christophe PLAGNIOL-VILLARD plagn...@jcrosoft.com: On 16:54 Fri 05 Jun     , RONETIX - Ilko Iliev wrote: This patch corrects the missing PLLB initialization in usb_cpu_init() for AT91SAM9261. Because of the missing PLLB initialization, the USB support for all AT91SAM9261

Re: [U-Boot] [PATCH v3 1/6] ARM1136: Introduce CONFIG_PRELOADER macro.

2009-06-09 Thread Magnus Lilja
Dear Wolfgang, 2009/6/9 Wolfgang Denk w...@denx.de: Dear Magnus, In message bef59ad70a27ef8496f88b85510f8d2c236e8cd9.1244572159.git.lilja.mag...@gmail.com you wrote: Currently CONFIG_ONENAND_IPL is used in a number of #ifdef's in start.S. In preparation for adding support for NAND SPL

Re: [U-Boot] [PATCH] s3c64xx: support the soft reset at s3c6410

2009-06-09 Thread Jean-Christophe PLAGNIOL-VILLARD
On 12:42 Thu 02 Apr , Jean-Christophe PLAGNIOL-VILLARD wrote: On 19:36 Thu 02 Apr , Minkyu Kang wrote: This patch support the soft reset at s3c6410 Signed-off-by: Minkyu Kang mk7.k...@samsung.com --- cpu/arm1176/cpu.c |4 1 files changed, 4 insertions(+), 0

Re: [U-Boot] at91: fix a USB problem for AT91SAM9261

2009-06-09 Thread Jean-Christophe PLAGNIOL-VILLARD
On 21:17 Tue 09 Jun , Remy Bohmer wrote: Hello, 2009/6/9 Jean-Christophe PLAGNIOL-VILLARD plagn...@jcrosoft.com: On 16:54 Fri 05 Jun     , RONETIX - Ilko Iliev wrote: This patch corrects the missing PLLB initialization in usb_cpu_init() for AT91SAM9261. Because of the missing PLLB

[U-Boot] [PATCH v3 0/8] hwconfig and some its users

2009-06-09 Thread Anton Vorontsov
On Fri, May 01, 2009 at 12:31:54AM +0200, Wolfgang Denk wrote: Dear Anton, In message 20090429215000.ga1...@oksana.dev.rtsoft.ru you wrote: This patch implements simple hwconfig infrastructure: an interface for software knobs to control a hardware. Thanks a lot. 3. We support

[U-Boot] [PATCH 1/8] Add simple hwconfig infrastructure

2009-06-09 Thread Anton Vorontsov
This patch implements simple hwconfig infrastructure: an interface for software knobs to control a hardware. This is very simple implementation, i.e. it is implemented via `hwconfig' environment variable. Later we could write some hwconfig enable|disable|list commands, ncurses interface for Award

[U-Boot] [PATCH 3/8] mpc83xx: MPC837XERDB: Add support for FSL eSDHC

2009-06-09 Thread Anton Vorontsov
This patch adds support for eSDHC on MPC837XERDB boards. The WP switch doesn't seem to work on RDB boards though, the WP pin is always asserted (can see the pin state when it's in GPIO mode). FSL DR USB and FSL eSDHC are mutually exclusive because of pins multiplexing, so user should specify

[U-Boot] [PATCH 2/8] fsl_esdhc: Add device tree fixups

2009-06-09 Thread Anton Vorontsov
This patch implements fdt_fixup_esdhc() function that is used to fixup the device tree. The function adds status = disabled propery if esdhc pins muxed away, otherwise it fixups clock-frequency for esdhc nodes. Signed-off-by: Anton Vorontsov avoront...@ru.mvista.com --- drivers/mmc/fsl_esdhc.c

[U-Boot] [PATCH 4/8] mpc83xx: MPC837XEMDS: Fixup eSDHC nodes in device tree

2009-06-09 Thread Anton Vorontsov
fdt_fixup_esdhc() will either disable or enable eSDHC nodes, and also will fixup clock-frequency property. Plus, since DR USB and eSDHC are mutually exclusive, we should only configure the eSDHC if asked through hwconfig. Signed-off-by: Anton Vorontsov avoront...@ru.mvista.com ---

[U-Boot] [PATCH 5/8] fdt_support, usb: Move fdt_fixup_dr_usb routine to drivers/usb/otg

2009-06-09 Thread Anton Vorontsov
In subsequent patches we'll use FSL-specific functions in fdt_fixup_dr_usb(), so let's move the routine to a more appropriate place. So far fsl_dr_usb.c isn't actually an USB driver, but eventually it will turn into one, let's hope. ;-) Also rename CONFIG_HAS_FSL_DR_USB to CONFIG_USB_FSL_DR to

[U-Boot] [PATCH 7/8] mpc83xx: MPC8315ERDB: Use hwconfig for board type selection

2009-06-09 Thread Anton Vorontsov
This patch simply converts the board to the hwconfig infrastructure. Signed-off-by: Anton Vorontsov avoront...@ru.mvista.com --- board/freescale/mpc8315erdb/mpc8315erdb.c | 14 +- include/configs/MPC8315ERDB.h |1 + 2 files changed, 6 insertions(+), 9 deletions(-)

[U-Boot] [PATCH 6/8] fsl_dr_usb: Fixup disabled USB controllers nodes in device tree

2009-06-09 Thread Anton Vorontsov
We should add status = disabled property when USB controller can't be used (for example when USB pins muxed away to another device). Also convert whole fdt_fixup_dr_usb() to use more compact routines from fdt_support.h. Signed-off-by: Anton Vorontsov avoront...@ru.mvista.com ---

[U-Boot] [PATCH 8/8] mpc83xx: MPC837xEMDS: Use hwconfig instead of pci_external_arbiter variable

2009-06-09 Thread Anton Vorontsov
Since we have simple hwconfig interface now, we don't need pci_external_arbiter variable any longer. Signed-off-by: Anton Vorontsov avoront...@ru.mvista.com --- board/freescale/mpc837xemds/mpc837xemds.c |3 +-- 1 files changed, 1 insertions(+), 2 deletions(-) diff --git

Re: [U-Boot] at91: fix a USB problem for AT91SAM9261

2009-06-09 Thread Remy Bohmer
Hello All, 2009/6/9 Jean-Christophe PLAGNIOL-VILLARD plagn...@jcrosoft.com: On 16:54 Fri 05 Jun     , RONETIX - Ilko Iliev wrote: This patch corrects the missing PLLB initialization in usb_cpu_init() for AT91SAM9261. Because of the missing PLLB initialization, the USB support for all

[U-Boot] Pull request: u-boot-usb

2009-06-09 Thread Remy Bohmer
The following changes since commit 2c0234fa79122a5aa77c4e17c33eb2fe184b61a7: Daniel Mack (1): smc911x: write back the manually set MAC address are available in the git repository at: git://git.denx.de/u-boot-usb.git master RONETIX - Ilko Iliev (1): at91: fix a USB problem for

Re: [U-Boot] [PATCH v3 5/6] MX31: Add basic support for Freescale i.MX31 PDK board.

2009-06-09 Thread Wolfgang Denk
Dear Magnus Lilja, In message ed0be9732183579c15279ba61413d3f3dc7155f8.1244572159.git.lilja.mag...@gmail.com you wrote: Add support for Freescale's i.MX31 PDK board (a.k.a. 3 stack board). This patch assumes that some other program performs the actual NAND boot. Signed-off-by: Magnus

Re: [U-Boot] [PATCH v3 1/6] ARM1136: Introduce CONFIG_PRELOADER macro.

2009-06-09 Thread Magnus Lilja
Wolfgang, 2009/6/9 Wolfgang Denk w...@denx.de: Dear Magnus Lilja, In message 59b21cf20906091219y4eb0623ekfcaa9bb4f4822...@mail.gmail.com you wrote: =A0README =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 | =A0 = Unrelated note: I see an increasing number of mails where plain

[U-Boot] [PATCH 0/5] Some patches for MPC8569E-MDS

2009-06-09 Thread Anton Vorontsov
Hi Kumar, Here are few patches for MPC8569E-MDS, on top of these: http://lists.denx.de/pipermail/u-boot/2009-June/054011.html ([PATCH 1/8] Add simple hwconfig infrastructure) and http://lists.denx.de/pipermail/u-boot/2009-May/053031.html ([PATCH 00/15] patchset for QE UEC and MPC8569MDS)

[U-Boot] [PATCH 1/5] mpc85xx: Add multi-serial support for MPC8569E-MDS boards

2009-06-09 Thread Anton Vorontsov
There are two UARTs on MPC8569E-MDS boards, but UART1 can be muxed away to SD/MMC signals, so we'll need multi-serial support to support eSDHC on these boards (we'll redirect u-boot console to the second UART in case of enabled eSDHC). Signed-off-by: Anton Vorontsov avoront...@ru.mvista.com ---

[U-Boot] [PATCH 2/5] fdt_support: Add multi-serial support for stdout fixup

2009-06-09 Thread Anton Vorontsov
Currently fdt_fixup_stdout() is using hard-coded CONFIG_CONS_INDEX constant. With multi-serial support, the CONS_INDEX may no longer represent actual console, so we should try to extract port number from the current stdio device name instead of always hard-coding the constant value.

[U-Boot] [PATCH 3/5] mpc85xx: Add eSDHC support for MPC8569E-MDS boards

2009-06-09 Thread Anton Vorontsov
eSDHC is mutually exlusive with UART1 and I2C2. When eSDHC is used, we should switch u-boot console to UART2, and make the proper device-tree fixups. Signed-off-by: Anton Vorontsov avoront...@ru.mvista.com --- board/freescale/mpc8569mds/mpc8569mds.c | 85 +++

[U-Boot] [PATCH 4/5] mpc85xx: Add eLBC NAND support for MPC8569E-MDS boards

2009-06-09 Thread Anton Vorontsov
Simply add some defines, and adjust TLBe setup to include some space for eLBC NAND. Signed-off-by: Anton Vorontsov avoront...@ru.mvista.com --- board/freescale/mpc8569mds/tlb.c | 30 +++--- include/configs/MPC8569MDS.h | 23 +++ 2 files

[U-Boot] [PATCH 5/5] mpc85xx: Setup QE pinmux for SPI Flash on MPC8569E-MDS boards

2009-06-09 Thread Anton Vorontsov
SPI Flash (M25P40) is connected to the SPI1 bus, we need a few qe_iop entries to actually enable SPI1 on these boards. Signed-off-by: Anton Vorontsov avoront...@ru.mvista.com --- board/freescale/mpc8569mds/mpc8569mds.c |6 ++ 1 files changed, 6 insertions(+), 0 deletions(-) diff --git

Re: [U-Boot] [PATCH v3 1/6] ARM1136: Introduce CONFIG_PRELOADER macro.

2009-06-09 Thread Wolfgang Denk
Dear Magnus Lilja, In message 59b21cf20906091325x683f5a69r76155edabc687...@mail.gmail.com you wrote: =A0README =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 | =A0 = Unrelated note: I see an increasing number of mails where plain simple sequences of space characters get

Re: [U-Boot] Pull request - net

2009-06-09 Thread Wolfgang Denk
Dear Ben Warren, In message 4a2dfb85.8000...@gmail.com you wrote: The following changes since commit 2c0234fa79122a5aa77c4e17c33eb2fe184b61a7: Daniel Mack (1): smc911x: write back the manually set MAC address are available in the git repository at:

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

2009-06-09 Thread Wolfgang Denk
Dear Remy Bohmer, In message 3efb10970906091330u3b5cc791mfa061b5205f74...@mail.gmail.com you wrote: The following changes since commit 2c0234fa79122a5aa77c4e17c33eb2fe184b61a7: Daniel Mack (1): smc911x: write back the manually set MAC address are available in the git repository

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

2009-06-09 Thread Wolfgang Denk
Dear Andy, In message 1244091241-22766-1-git-send-email-aflem...@freescale.com you wrote: are available in the git repository at: git://www.denx.de/git/u-boot-mpc85xx.git master Dave Liu (3): 85xx: Fix the clock adjust of mpc8569mds board 85xx: Fix the wrong BCSR address of

Re: [U-Boot] [PATCH] TQM85xx: adapt for new flash types

2009-06-09 Thread Wolfgang Denk
Dear Andy, In message 1242339363-28686-1-git-send-email...@denx.de you wrote: Old TQM85xx boards had 'M' type Spansion Flashes from the S29GLxxxM series while new boards have 'N' type Flashes from the S29GLxxxN series, which have bigger sectors: 2 x 128 instead of 2 x 64 KB. We now change

Re: [U-Boot] [PATCH] TQM85xx: minor config file cleanup

2009-06-09 Thread Wolfgang Denk
Dear Andy, In message 1242339363-28686-2-git-send-email...@denx.de you wrote: Remove saveenv from update definition: the environment is outside the U-Boot image on TQM85xx and therefor not affected by updates. Also beautify code a bit (vertical alignment). Signed-off-by: Wolfgang Denk

Re: [U-Boot] [PATCH] ubifs: fix small error path mismatch

2009-06-09 Thread Wolfgang Denk
Dear Daniel Mack, In message 1244137452-8886-1-git-send-email-dan...@caiaq.de you wrote: In do_readpage(), don't free 'dn' if its allocation failed. Signed-off-by: Daniel Mack dan...@caiaq.de --- fs/ubifs/ubifs.c |6 ++ 1 files changed, 2 insertions(+), 4 deletions(-) Applied,

Re: [U-Boot] TSEC ethernet controller problems (crc errors/ corruption)

2009-06-09 Thread David Hawkins
Hi all, I modified the MPC8349E-MDS board and can create the same problem we were experiencing on our boards; CRC errors and data packets with received bytes repeated within the receive packets. So I am certain we have tracked the root cause of the problem we were having with our boards. The

Re: [U-Boot] [PATCH 1/1] SMC911x driver fixed for NFS boot

2009-06-09 Thread Wolfgang Denk
Dear Manikandan Pillai, In message 1239162275-13087-1-git-send-email-mani.pil...@ti.com you wrote: eth_halt() function in the smc911x drivers used to call the smc911x_reset() function. eth_halt() used to be called after tftp transfers. This used to put the ethernet chip in reset while the

[U-Boot] [PATCH] rmu board: fix error: 'CONFIG_ENV_SECT_SIZE' undeclared

2009-06-09 Thread Wolfgang Denk
Signed-off-by: Wolfgang Denk w...@denx.de --- include/configs/rmu.h |3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/include/configs/rmu.h b/include/configs/rmu.h index d88ae81..026826b 100644 --- a/include/configs/rmu.h +++ b/include/configs/rmu.h @@ -190,7 +190,8 @@

Re: [U-Boot] TSEC ethernet controller problems (crc errors/ corruption)

2009-06-09 Thread Liu Dave-R63238
Hi Dave, Good news, Good summary! I modified the MPC8349E-MDS board and can create the same problem we were experiencing on our boards; CRC errors and data packets with received bytes repeated within the receive packets. So I am certain we have tracked the root cause of the problem we

[U-Boot] ARM Pull Request

2009-06-09 Thread Jean-Christophe PLAGNIOL-VILLARD
Hi Wolfgang, Please pull The following changes since commit 580611cb0932143fc2d7a735cfa9ce1ef34d6002: Wolfgang Denk (1): Prepare 2009.06-rc3 are available in the git repository at: git://git.denx.de/u-boot-arm.git master Jean-Christophe PLAGNIOL-VILLARD (1): at91/cpu.c: add

Re: [U-Boot] TSEC ethernet controller problems (crc errors/ corruption)

2009-06-09 Thread David Hawkins
Hi Dave, Good news, Good summary! Thanks! This testing revealed some interesting observations; 1) The Marvell 88E PHY generates a 125MHz output clock that is used as the PowerPC EC_GTX_CLK125MHZ clock source on the MDS board. The MDS board has to use the PHY output as

Re: [U-Boot] [PATCH 17/30] lan91c96/smc91111/smc911x: get mac address from environment

2009-06-09 Thread Mike Frysinger
On Tuesday 09 June 2009 07:53:11 Wolfgang Denk wrote: Dear Mike, In message 1234847451-3210-18-git-send-email-vap...@gentoo.org you wrote: The environment is the canonical storage location of the mac address, so we're killing off the global data location and moving everything to querying

[U-Boot] Please pull ubi/next

2009-06-09 Thread Stefan Roese
Hi Wolfgang, please pull this change into next: ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

[U-Boot] Please pull ubi/next (2nd try)

2009-06-09 Thread Stefan Roese
Hi Wolfgang, please pull this change into next: The following changes since commit ac343095c65f7d86bcd7d6c488e364d795d68850: Wolfgang Denk (1): Merge branch 'next' of git://git.denx.de/u-boot-usb into next are available in the git repository at: git://www.denx.de/git/u-boot-ubi.git

[U-Boot] question on relocation of arm920t

2009-06-09 Thread J.Hwan.Kim
Hi, everyone I'm a novice in u-boot. I have a question about relocation of arm920t. As far as I know, the relocation code address is defined at config.mk in board directory. The code is copied to TEXT_BASE in start.S. When the u-boot is compiled and linked, it seems that the code address is set