[U-Boot] [PATCH v3 RESEND] at91: Update MEESC board support

2009-09-22 Thread Daniel Gorsulowski
This patch implements several updates: -disable CONFIG_ENV_OVERWRITE -add new hardware style variants and set the arch numbers appropriate (autodet.) -pass the serial# and hardware revision to the kernel -removed unused macros from include/configs/meesc.h Signed-off-by: Daniel Gorsulowski

Re: [U-Boot] [PATCH 00/13] ppc: Fix relocation

2009-09-22 Thread Joakim Tjernlund
This series attempts to fix relocation to RAM for ppc boards. I split the patches up pretty liberally, let me know if you'd like them organized differently. I tried to be thorough during the changes (especially #1), let me know if I missed anything, there's lots of linker scripts for ppc

[U-Boot] [PATCH] ppc/85xx: add ld script file for boot from NAND

2009-09-22 Thread Mingkai Hu
The first stage 4K image uses a seperate ld script file to generate 4K image. This patch moves it to the cpu/mpc85xx/* to make it avaliable for 85xx platform. Signed-off-by: Mingkai Hu mingkai...@freescale.com --- ChangeLog: - move from board specific directory to cpu/mpc85xx/*, make it

[U-Boot] [PATCH] ppc/85xx: add cpu init config file for boot from NAND

2009-09-22 Thread Mingkai Hu
When boot from NAND, the NAND flash must be connected to br/or0. Also init RAM(L2 SRAM or DDR SDRAM) for load the second image to it. Signed-off-by: Mingkai Hu mingkai...@freescale.com --- ChangeLog: - move the board specific config for br/or to board init file, i.e.

[U-Boot] [PATCH] immap_85xx: add porpllsr's plat ratio definition

2009-09-22 Thread Mingkai Hu
Signed-off-by: Mingkai Hu mingkai...@freescale.com --- include/asm-ppc/immap_85xx.h |2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/include/asm-ppc/immap_85xx.h b/include/asm-ppc/immap_85xx.h index e7d412d..39fdb8e 100644 --- a/include/asm-ppc/immap_85xx.h +++

[U-Boot] [PATCH] This modification will make the binay of smdk6400 nand spl in correct size

2009-09-22 Thread sun peng
When I'm playing with u-boot I found that the size of smdk6400 nand spl binary image can't pad to 4K. So I make some minor change to the config.mk file to achieve the correct padding size. Signed-off-by: Sunpeng sunnyca...@gmail.com --- nand_spl/board/samsung/smdk6400/config.mk |2 +- 1

[U-Boot] [PATCH] 85xx-fdt: Fixed l2-ctlr's compatible prop for QorIQ

2009-09-22 Thread Vivek Mahajan
This patch does the following:- * Fixes l2 cache controller's compatible string for QorIQ * Revamps its copyright Signed-off-by: Vivek Mahajan vivek.maha...@freescale.com --- cpu/mpc85xx/fdt.c | 13 ++--- 1 files changed, 10 insertions(+), 3 deletions(-) diff --git

[U-Boot] Adding new U-Boot Command.

2009-09-22 Thread Tuma
Hi, All! Help me please in writting new U-Boot commands. What should I do? I should write new file in /common, something like cmd_, am I right? So where can I read about cmd_-file structure and how should new commands be added? And how can I add my new file to U-Boot binary? -- Software

Re: [U-Boot] Warning Bad CRC

2009-09-22 Thread Detlev Zundel
Hi Rahanesh, [...] sflash.c is flash driver code . I showed you the print message of savenev to note that it is erasing 0xad03 - 0xad03. That means environment variables are placed in the mentioned sector(0xad03 - 0xad03). Actual address of environment variables

Re: [U-Boot] [PATCH 00/13] ppc: Fix relocation

2009-09-22 Thread Detlev Zundel
Hi, This series attempts to fix relocation to RAM for ppc boards. I split the patches up pretty liberally, let me know if you'd like them organized differently. I tried to be thorough during the changes (especially #1), let me know if I missed anything, there's lots of linker scripts for

Re: [U-Boot] Adding new U-Boot Command.

2009-09-22 Thread Detlev Zundel
Hi Tuma, Help me please in writting new U-Boot commands. What should I do? I should write new file in /common, something like cmd_, am I right? This really depends if you want to implement a command which is useful for all boards, then it should be below common/ or if it is special to

Re: [U-Boot] [U-boot] Marvell Pull Request

2009-09-22 Thread Prafulla Wadaskar
-Original Message- From: Tom [mailto:tom@windriver.com] Sent: Tuesday, September 22, 2009 12:46 AM To: Prafulla Wadaskar Cc: U-Boot Subject: Re: [U-Boot] [U-boot] Marvell Pull Request Prafulla Wadaskar wrote: Hi Wolfgang Please pull Shouldn't this rather get

Re: [U-Boot] MPC83xx and uec

2009-09-22 Thread Joakim Tjernlund
I can't find a way to get at uec_info_t/STD_UEC_INFO from my board_eth_init() in current u-boot. Am I missing something? Also drivers/qe/uec.h:int uec_initialize(bd_t *bis, uec_info_t *uec_info); include/netdev.h:int uec_initialize(int index); different prototypes for the same function.

[U-Boot] [PATCH] fsl_i2c: Do not generate STOP after read.

2009-09-22 Thread Joakim Tjernlund
__i2c_read always ends with a STOP condition thereby releasing the bus. It is cleaner to do the STOP magic in i2c_read(), like i2c_write() does. This may also help future multimaster systems which wants to hold on to the bus until all transactions are finished. Signed-off-by: Joakim Tjernlund

[U-Boot] [PATCH 1/4 v3] s5pc1xx: support Samsung s5pc1xx SoC

2009-09-22 Thread Minkyu Kang
This patch adds support for the Samsung s5pc100 and s5pc110 SoCs. The s5pc1xx SoC is an ARM Cortex A8 processor. Signed-off-by: Minkyu Kang mk7.k...@samsung.com Signed-off-by: HeungJun, Kim riverful@samsung.com --- Changes since v1: - make C struct instead of base+offset - use writel/readl

[U-Boot] [PATCH 3/4 v3] s5pc1xx: support serial driver

2009-09-22 Thread Minkyu Kang
This patch includes the serial driver for s5pc1xx Signed-off-by: Minkyu Kang mk7.k...@samsung.com --- Changes since v1: - use serial multi API - use writel/readl function - remove duplicate code Changes since v2: - use sizeof() instead of the constant common/serial.c | 18 +++

[U-Boot] [PATCH 4/4 v3] s5pc1xx: add support SMDKC100 board

2009-09-22 Thread Minkyu Kang
Adds new board SMDKC100 that uses s5pc100 SoC Signed-off-by: Minkyu Kang mk7.k...@samsung.com Signed-off-by: HeungJun, Kim riverful@samsung.com --- Changes since v1: - arrange env values for more readable - make C struct instead of base+offset - use MACH_TYPE_SMDKC100 directly - fix the

Re: [U-Boot] Subject: [PATCH v3] mx27ads: add support for iMX27ADS board from Freescale

2009-09-22 Thread Alan Carvalho de Assis
Hi Fred, Thank you for your fast reply, please see my comments below: On 9/21/09, Fred Fan fanyef...@gmail.com wrote: Dear Alan Carvalho de Assis, 2009/9/16 Alan Carvalho de Assis acas...@gmail.com + /* +* DDR on CSD0 +*/ + write32 0xD8001010, 0x0008 +

[U-Boot] how to apply at91 patch for the current u-boot-2009-06?

2009-09-22 Thread sunr2007
Hi all, i want to know how to apply at91 patch for current versions of u-boot like 2009-06? i saw in linux4sam.org website that patched are available only for u-boot-1.3.4 ? but after that no patches for the current versions?can anyone help me plz how to update u-boot-2009-06 with the latest at91

[U-Boot] [PATCH 0/3] New MIIPHYBB implementation with multi-bus support

2009-09-22 Thread Luigi 'Comio' Mantellini
From: Luigi 'Comio' Mantellini luigi.mantell...@idf-hit.com This patch rewrites the miiphybb ( Bit-banged MII bus driver ) in order to support an arbitrary number of buses. This feature is useful when your board uses different mii buses for different phys and all (or a part) of these buses are

[U-Boot] [PATCH 1/3] Bit-banged MII driver with multi-bus support.

2009-09-22 Thread Luigi 'Comio' Mantellini
From: Luigi 'Comio' Mantellini luigi.mantell...@idf-hit.com Signed-off-by: Luigi 'Comio' Mantellini luigi.mantell...@idf-hit.com --- drivers/net/phy/miiphybb.c | 321 +++- include/miiphy.h | 22 +++ 2 files changed, 247 insertions(+), 96

[U-Boot] [PATCH 2/3] Add bb_miiphy_init call before any ethernet bring-up code.

2009-09-22 Thread Luigi 'Comio' Mantellini
From: Luigi 'Comio' Mantellini luigi.mantell...@idf-hit.com Signed-off-by: Luigi 'Comio' Mantellini luigi.mantell...@idf-hit.com --- lib_arm/board.c |3 +++ lib_avr32/board.c|3 +++ lib_blackfin/board.c |3 +++ lib_i386/board.c |3 +++ lib_m68k/board.c |3 +++

Re: [U-Boot] MPC83xx and uec

2009-09-22 Thread Joakim Tjernlund
Anton Vorontsov avoront...@ru.mvista.com wrote on 22/09/2009 15:51:17: From: Anton Vorontsov avoront...@ru.mvista.com To: Joakim Tjernlund joakim.tjernl...@transmode.se Cc: u-boot@lists.denx.de, kim.phill...@freescale.com Date: 22/09/2009 15:51 Subject: Re: [U-Boot] MPC83xx

Re: [U-Boot] [PATCH 3/4 v3] s5pc1xx: support serial driver

2009-09-22 Thread Tom
Minkyu Kang wrote: This patch includes the serial driver for s5pc1xx Signed-off-by: Minkyu Kang mk7.k...@samsung.com Nak. This looks like the zoom2 serial driver. In the case of zoom2, special handling is needed because the serial is supplied by a detachable debug board and a runtime check

Re: [U-Boot] [PATCH 00/13] ppc: Fix relocation

2009-09-22 Thread Peter Tyser
Hi Detlev, This series attempts to fix relocation to RAM for ppc boards. I split the patches up pretty liberally, let me know if you'd like them organized differently. I tried to be thorough during the changes (especially #1), let me know if I missed anything, there's lots of linker

[U-Boot] [PATCH/RFC] arm/microblaze/nios/nios2/sh: Remove relocation fixups

2009-09-22 Thread Peter Tyser
These architectures don't need relocation fixups, so reduce their codesize a bit by defining CONFIG_RELOC_FIXUP_WORKS. Also remove the reloc_off field from their global data structures as it is no longer needed. Note that the location of the standalone application jump table pointer in the

Re: [U-Boot] [PATCH 2/4 v3] s5pc1xx: support onenand driver

2009-09-22 Thread Tom
Minkyu Kang wrote: This patch includes the onenand driver for s5pc100 Signed-off-by: Minkyu Kang mk7.k...@samsung.com Signed-off-by: Kyungmin Park kyungmin.p...@samsung.com --- Changes since v1: - move samsung_onenand.h to include/linux/mtd/ - make C struct instead of base+offset -

Re: [U-Boot] [PATCH 4/4 v3] s5pc1xx: add support SMDKC100 board

2009-09-22 Thread Tom
Minkyu Kang wrote: Adds new board SMDKC100 that uses s5pc100 SoC Signed-off-by: Minkyu Kang mk7.k...@samsung.com Signed-off-by: HeungJun, Kim riverful@samsung.com --- Changes since v1: - arrange env values for more readable - make C struct instead of base+offset - use

[U-Boot] [PATCH 0/3 v2] New MIIPHYBB implementation with multi-bus support

2009-09-22 Thread Luigi 'Comio' Mantellini
From: Luigi 'Comio' Mantellini luigi.mantell...@idf-hit.com This patch rewrites the miiphybb ( Bit-banged MII bus driver ) in order to support an arbitrary number of buses. This feature is useful when your board uses different mii buses for different phys and all (or a part) of these buses are

[U-Boot] [PATCH 1/3 v2] Bit-banged MII driver with multi-bus support.

2009-09-22 Thread Luigi 'Comio' Mantellini
From: Luigi 'Comio' Mantellini luigi.mantell...@idf-hit.com Signed-off-by: Luigi 'Comio' Mantellini luigi.mantell...@idf-hit.com --- drivers/net/phy/miiphybb.c | 322 +++- include/miiphy.h | 22 +++ 2 files changed, 248 insertions(+), 96

[U-Boot] [PATCH 3/3 v2] Update all board to support new bbmiiphy driver (with multibus support)

2009-09-22 Thread Luigi 'Comio' Mantellini
From: Luigi 'Comio' Mantellini luigi.mantell...@idf-hit.com Signed-off-by: Luigi 'Comio' Mantellini luigi.mantell...@idf-hit.com --- include/configs/ISPAN.h |3 +++ include/configs/MPC8260ADS.h |2 ++ include/configs/MPC8266ADS.h |3 +++ include/configs/MPC8560ADS.h |3 +++

[U-Boot] [PATCH 2/3 v2] Add bb_miiphy_init call before any ethernet bring-up code.

2009-09-22 Thread Luigi 'Comio' Mantellini
From: Luigi 'Comio' Mantellini luigi.mantell...@idf-hit.com Signed-off-by: Luigi 'Comio' Mantellini luigi.mantell...@idf-hit.com --- lib_arm/board.c |3 +++ lib_avr32/board.c|3 +++ lib_blackfin/board.c |3 +++ lib_i386/board.c |3 +++ lib_m68k/board.c |3 +++

Re: [U-Boot] [PATCH 4/4 v3] s5pc1xx: add support SMDKC100 board

2009-09-22 Thread Peter Tyser
On Tue, 2009-09-22 at 10:03 -0500, Tom wrote: Minkyu Kang wrote: Adds new board SMDKC100 that uses s5pc100 SoC Signed-off-by: Minkyu Kang mk7.k...@samsung.com Signed-off-by: HeungJun, Kim riverful@samsung.com --- Changes since v1: - arrange env values for more readable - make

Re: [U-Boot] Configuring BRGs and BRG input clock on an MPC875

2009-09-22 Thread Mikhail Zaturenskiy
Hello, I thought I'd ask here before I go and make a mess of my code: what's the easiest way to configure my board to have SMC1 use BRG1, SCC4 use BRG2, and make my BRG1 and BRG2 use CLK2 as an input clock? I looked over the code and it looked like most of this is hard-coded in the serial.c

Re: [U-Boot] [PATCH 4/4 v3] s5pc1xx: add support SMDKC100 board

2009-09-22 Thread Tom
Peter Tyser wrote: On Tue, 2009-09-22 at 10:03 -0500, Tom wrote: Minkyu Kang wrote: Adds new board SMDKC100 that uses s5pc100 SoC Signed-off-by: Minkyu Kang mk7.k...@samsung.com Signed-off-by: HeungJun, Kim riverful@samsung.com --- Changes since v1: - arrange env values for more

Re: [U-Boot] [PATCH] sbc85x0: tidy up Makefile to use new configuration script.

2009-09-22 Thread Kumar Gala
On Sep 21, 2009, at 2:19 PM, Paul Gortmaker wrote: Commit 804d83a5 allows us to move all the configuration variation tweaks out of the top level Makefile and down into the boards config header. This takes advantage of that for the sbc8540/sbc8560 boards. There were a couple of cheezy

Re: [U-Boot] [PATCH] mpc8610hpcd: Use common 86xx fdt fixup code

2009-09-22 Thread Kumar Gala
On Sep 21, 2009, at 9:09 PM, Peter Tyser wrote: Using the common 86xx fdt fixups removes some board-specific code and should make the mpc8610hpcd easier to maintain in the long run. Signed-off-by: Peter Tyser pty...@xes-inc.com --- board/freescale/mpc8610hpcd/mpc8610hpcd.c | 14

Re: [U-Boot] [PATCH] ppc/85xx: add ld script file for boot from NAND

2009-09-22 Thread Kumar Gala
On Sep 21, 2009, at 11:53 PM, Mingkai Hu wrote: The first stage 4K image uses a seperate ld script file to generate 4K image. This patch moves it to the cpu/mpc85xx/* to make it avaliable for 85xx platform. Signed-off-by: Mingkai Hu mingkai...@freescale.com --- ChangeLog: - move from

Re: [U-Boot] [PATCH] immap_85xx: add porpllsr's plat ratio definition

2009-09-22 Thread Kumar Gala
On Sep 21, 2009, at 11:53 PM, Mingkai Hu wrote: Signed-off-by: Mingkai Hu mingkai...@freescale.com --- include/asm-ppc/immap_85xx.h |2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) applied to 85xx - k ___ U-Boot mailing list

Re: [U-Boot] [PATCH] ppc/85xx: add cpu init config file for boot from NAND

2009-09-22 Thread Kumar Gala
On Sep 21, 2009, at 11:53 PM, Mingkai Hu wrote: When boot from NAND, the NAND flash must be connected to br/or0. Also init RAM(L2 SRAM or DDR SDRAM) for load the second image to it. Signed-off-by: Mingkai Hu mingkai...@freescale.com --- ChangeLog: - move the board specific config for

Re: [U-Boot] MPC83xx and uec

2009-09-22 Thread Ben Warren
Anton Vorontsov wrote: On Tue, Sep 22, 2009 at 04:03:16PM +0200, Joakim Tjernlund wrote: [...] Also drivers/qe/uec.h:int uec_initialize(bd_t *bis, uec_info_t *uec_info); include/netdev.h:int uec_initialize(int index); different prototypes for the same function. BTW, I am

Re: [U-Boot] [PATCH 4/4 v3] s5pc1xx: add support SMDKC100 board

2009-09-22 Thread Peter Tyser
Please include a brief readme doc/README.s5pc1xx similar to README.omap Hi Tom, Others may disagree, but I'm personally opposed to creating Slugfest over documentation! Nothing gets me more worked up than a documentation discussion:) I can see you point. If you have the board you

Re: [U-Boot] [PATCH 0/3 v2] New MIIPHYBB implementation with multi-bus support

2009-09-22 Thread Ben Warren
Hi Luigi, I like what you're doing here. Thanks for working towards making the BB driver more universal. Luigi 'Comio' Mantellini wrote: From: Luigi 'Comio' Mantellini luigi.mantell...@idf-hit.com This patch rewrites the miiphybb ( Bit-banged MII bus driver ) in order to support an

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

2009-09-22 Thread Kumar Gala
The following changes since commit 3b6a9267f0de7b85d387fa4123d0b58379363447: Wolfgang Denk (1): board/flagadm/flash.c: fix compile warning are available in the git repository at: git://git.denx.de/u-boot-mpc85xx.git master Kumar Gala (15): ppc/85xx: Fix LCRR_CLKDIV defines

Re: [U-Boot] [PATCH] Add support for Eukrea CPU9260/CPU9G20 SBC

2009-09-22 Thread Wolfgang Denk
Dear Eric Benard, In message 1252167339-21415-1-git-send-email-e...@eukrea.com you wrote: these boards are built around Atmel's AT91SAM9260/9G20 and have up to 64MB of NOR flash, up to 128MB of SDRAM, up to 2GB of NAND and include a 10/100 Ethernet PHY in RMII mode. Signed-off-by: Eric

Re: [U-Boot] I am maintainer of Freescale i.MX

2009-09-22 Thread Wolfgang Denk
Dear Fred, In message 2f495dc80909170830j7acdd1b0j4e4d27e60af06...@mail.gmail.com you wrote: I am u-boot maintainer of Freescale i.MX team. I have two mail accounts: Thanks for volunteering to become the custodian for the i.MX support in U-Boot. Please send me your SSH private

Re: [U-Boot] Subject: [PATCH v3] mx27ads: add support for iMX27ADS board from Freescale

2009-09-22 Thread Wolfgang Denk
Dear Alan Carvalho de Assis, In message 37367b3a0909151429h317066ax2efa504d83dbf...@mail.gmail.com you wrote: This patch adds support to iMX27ADS development board. This board has 128MB RAM, 32MB NOR Flash and 128MB NAND Flash. Currently only booting from NOR is supported. Signed-off-by:

Re: [U-Boot] [PATCH MAKEALL coldfire] : Fix start.S:Error: Conversionof PC relative displacement to absolute

2009-09-22 Thread Liew Tsi Chung-R5AAHP
Philippe, The error that you encountered only happen when using linux cross compiler; however, if choosing uclinux cross compiler this will not be an issue. Anyway, is an acked for me so that both compiler can be used without causing the problem. Best Regards, TsiChung -Original

Re: [U-Boot] [PATCH v2] document network driver framework

2009-09-22 Thread Wolfgang Denk
Dear Mike Frysinger, In message 1252521682-5067-1-git-send-email-vap...@gentoo.org you wrote: Signed-off-by: Mike Frysinger vap...@gentoo.org --- v2 - drop CONFIG naming section - fix MII documentation doc/README.drivers.eth | 177

Re: [U-Boot] [PATCH v2] ppc/85xx: PIO Support for FSL eSDHC Controller Driver

2009-09-22 Thread Wolfgang Denk
Dear Dipen Dudhat, In message 1252589856-4970-1-git-send-email-dipen.dud...@freescale.com you wrote: On some Freescale SoC Internal DMA of eSDHC controller has bug. So PIO Mode has introduced to do data transfer using CPU. In PIO mode data transfer performance will be degraded by a large

Re: [U-Boot] [PATCH v3] at91: Update MEESC board support

2009-09-22 Thread Wolfgang Denk
Dear Daniel Gorsulowski, In message 12525916852655-git-send-email-daniel.gorsulow...@esd.eu you wrote: This patch implements several updates: -disable CONFIG_ENV_OVERWRITE -add new hardware style variants and set the arch numbers appropriate (autodet.) LIne too long. -pass the serial# and

Re: [U-Boot] MPC83xx and uec

2009-09-22 Thread Joakim Tjernlund
Ben Warren biggerbadder...@gmail.com wrote on 22/09/2009 18:55:22: Anton Vorontsov wrote: On Tue, Sep 22, 2009 at 04:03:16PM +0200, Joakim Tjernlund wrote: [...] Also drivers/qe/uec.h:int uec_initialize(bd_t *bis, uec_info_t *uec_info); include/netdev.h:int uec_initialize(int

Re: [U-Boot] [PATCH v1 2/3] Add support for save environment variable to MMC/SD card

2009-09-22 Thread Wolfgang Denk
Dear Mingkai Hu, In message 1252640445-7890-3-git-send-email-mingkai...@freescale.com you wrote: Whether booting from MMC/SD card or not, the environment variables can be saved on it, this patch add the operation support. Signed-off-by: Mingkai Hu mingkai...@freescale.com ... ---

Re: [U-Boot] [PATCH v1 1/3] Make mmc init come before env_relocate

2009-09-22 Thread Wolfgang Denk
Dear Mingkai Hu, In message 1252640445-7890-2-git-send-email-mingkai...@freescale.com you wrote: If the environment variables are saved on the MMC/SD card, env_relocat can't relocate env from MMC/SD card without mmc init. Signed-off-by: Mingkai Hu mingkai...@freescale.com I'm biased. I

Re: [U-Boot] [PATCH v1 3/3] mpc8536: Get the address of env on the SDCard

2009-09-22 Thread Wolfgang Denk
Dear Mingkai Hu, In message 1252640445-7890-4-git-send-email-mingkai...@freescale.com you wrote: Both the save env and load env operation will call this function to get the address of env on the SDCard, so the user can control where to put the env freely. Also enable the functionlity of

Re: [U-Boot] [PATCH][Net] Convert SMC91111 Ethernet driver to CONFIG_NET_MULTI API

2009-09-22 Thread Wolfgang Denk
Dear Mike Frysinger, In message 200909110606.42732.vap...@gentoo.org you wrote: --===0077506097== Content-Type: multipart/signed; boundary=nextPart2279044.usXPOpWbKs; protocol=application/pgp-signature; micalg=pgp-sha1 Content-Transfer-Encoding: 7bit

Re: [U-Boot] [PATCH v3 3/5] NAND boot: MPC8536DS support

2009-09-22 Thread Wolfgang Denk
Dear Mingkai Hu, In message 1252649951-28543-2-git-send-email-mingkai...@freescale.com you wrote: MPC8536E can support booting from NAND flash which uses the image u-boot-nand.bin. This image contains two parts: a 4K NAND loader and a main U-Boot image. The former is appended to the latter

Re: [U-Boot] [PATCH] Support for Calao USB A9263 board based on AT91SAM9263 CPU

2009-09-22 Thread Wolfgang Denk
Dear Thomas Petazzoni, In message 1252668335-17986-1-git-send-email-thomas.petazz...@free-electrons.com you wrote: The Calao USB A9263 board is a board manufactured and sold by Calao Systems http://www.calao-systems.com. Its components are very similar to the AT91SAM9263EK board, so its

Re: [U-Boot] [PATCH] TI: OMAP3: Overo Tobi ethernet support

2009-09-22 Thread Wolfgang Denk
Dear Olof Johansson, In message 20090911204750.ga22...@lixom.net you wrote: Add setup for ethernet on Tobi, allowing kernel/ramdisk to be loaded over tftp. Based on the omap3 evm code. I added a new highlevel define for Tobi to avoid having it dependent on CMD_NET (which would seem backward

Re: [U-Boot] [PATCH-ARM 4/4] Clean-up of s3c24x0 nand driver

2009-09-22 Thread Wolfgang Denk
Dear Scott Wood, In message 20090911222349.ga26...@b07421-ec1.am.freescale.net you wrote: On Mon, Sep 07, 2009 at 12:15:22AM +0100, kevin.morf...@fearnside-systems.co.uk wrote: This patch re-formats the arm920t s3c24x0 nand driver in preparation for changes to add support for the Embest

Re: [U-Boot] [PATCH] TI: OMAP3: Overo Tobi ethernet support

2009-09-22 Thread Wolfgang Denk
Dear Paulraj, Sandeep, In message 0554bef07d437848af01b9c9b5f0bc5d92708...@dlee01.ent.ti.com you wrote: Olof Johansson wrote: Add setup for ethernet on Tobi, allowing kernel/ramdisk to be loaded over tftp. Based on the omap3 evm code. I added a new highlevel define for Tobi to

Re: [U-Boot] [PATCH] TI: OMAP3: Overo Tobi ethernet support

2009-09-22 Thread Wolfgang Denk
Dear Olof Johansson, In message cae3d950-824b-47dd-a9e3-d090ac081...@lixom.net you wrote: Random question on u-boot development process: I see you didn't add your signed-off on the commit. People don't do that when they check in patches to the u-boot trees? No, we don't do this if we

Re: [U-Boot] [PATCH] TI: OMAP3: Overo Tobi ethernet support

2009-09-22 Thread Wolfgang Denk
Dear Ben Warren, In message f8328f7c0909131022t700abe65p5083bdc3c4630...@mail.gmail.com you wrote: I always use 'git am -s', which adds the SOB. My understanding is that maintainers should do this as an indication of approval and help in traceability. Please feel free to do that, but I

Re: [U-Boot] [PATCH] TI: OMAP3: Overo Tobi ethernet support

2009-09-22 Thread Wolfgang Denk
Dear Paulraj, Sandeep, In message 0554bef07d437848af01b9c9b5f0bc5d91e07...@dlee01.ent.ti.com you wrote: I always use 'git am -s', which adds the SOB. My understanding is that maintainers should do this as an indication of approval and help in traceability. OK Thanks. Shall do so

Re: [U-Boot] [PATCH] imx51:Add support basic boot code of freescale imx51 bbg board

2009-09-22 Thread Magnus Lilja
Hi 2009/9/22 Fred Fan fanyef...@gmail.com: Hi Magnus Liljia:     Thanks for your comments. Best Regards Fred 2009/9/22, Magnus Lilja lilja.mag...@gmail.com: Hi I've scanned the patch briefly and have some comments below. gareat...@gmail.com wrote: diff --git a/MAKEALL

Re: [U-Boot] [PATCH] TI: DaVinci: DM355 Leopard board support

2009-09-22 Thread Wolfgang Denk
Dear s-paul...@ti.com, In message 1252783335-13371-1-git-send-email-s-paul...@ti.com you wrote: From: Sandeep Paulraj s-paul...@ti.com This patch adds support for the leopard board which is based on the DM355 SOC. Signed-off-by: Sandeep Paulraj s-paul...@ti.com --- Makefile

Re: [U-Boot] [PATCH] imx51:Add support basic boot code of freescale imx51 bbg board

2009-09-22 Thread Magnus Lilja
Hmm, for some reason Reply in gmail cut part of the qouted message so here's the rest of the followup. Fred Fan skrev: Hi Magnus Liljia: Thanks for your comments. Best Regards Fred 2009/9/22, Magnus Lilja lilja.mag...@gmail.com: Hi I've scanned the patch briefly and have

Re: [U-Boot] [PATCH] TI: DaVinci: DM355 Leopard board support

2009-09-22 Thread Wolfgang Denk
Dear Paulraj, Sandeep, In message 0554bef07d437848af01b9c9b5f0bc5d929e5...@dlee01.ent.ti.com you wrote: From: Sandeep Paulraj s-paul...@ti.com This patch adds support for the leopard board which is based on the DM355 SOC. Signed-off-by: Sandeep Paulraj s-paul...@ti.com ---

Re: [U-Boot] [PATCH] TI: DaVinci: Adding GIO addresses to header file

2009-09-22 Thread Wolfgang Denk
Dear s-paul...@ti.com, In message 1252783655-13545-1-git-send-email-s-paul...@ti.com you wrote: From: Sandeep Paulraj s-paul...@ti.com This patch adds GIO definitions to the hardware.h header file Signed-off-by: Sandeep Paulraj s-paul...@ti.com NAK. Please do not add such address lists.

Re: [U-Boot] [PATCH] TI: DaVinci: Adding GIO addresses to header file

2009-09-22 Thread Wolfgang Denk
Dear Paulraj, Sandeep, In message 0554bef07d437848af01b9c9b5f0bc5d92854...@dlee01.ent.ti.com you wrote: From: Sandeep Paulraj s-paul...@ti.com This patch adds GIO definitions to the hardware.h header file Signed-off-by: Sandeep Paulraj s-paul...@ti.com ---

Re: [U-Boot] [PATCH] OMAP3 Overo: Fix ethernet related warnings

2009-09-22 Thread Wolfgang Denk
Dear Paulraj, Sandeep, In message 0554bef07d437848af01b9c9b5f0bc5d927da...@dlee01.ent.ti.com you wrote: Fix warning 'setup_net_chip' declared 'static' but never defined with CONFIG_OMAP3_OVERO_TOBI disabled and implicit declaration of function 'smc911x_initialize'

Re: [U-Boot] [PATCH] TI: OMAP3: Overo Tobi ethernet support

2009-09-22 Thread Olof Johansson
On Sep 22, 2009, at 2:48 PM, Wolfgang Denk wrote: Dear Olof Johansson, In message cae3d950-824b-47dd-a9e3-d090ac081...@lixom.net you wrote: Random question on u-boot development process: I see you didn't add your signed-off on the commit. People don't do that when they check in patches

Re: [U-Boot] [help] is there anything wrong with my previously sent A320 patches?

2009-09-22 Thread Wolfgang Denk
Dear Po-Yu Chuang, In message ec1aee9f0909132112n295d46b3v920e4e349286b...@mail.gmail.com you wrote: I sent the following patches two weeks ago and got no reply. Maybe you did not receive the mails? I wonder if there was something wrong with my mail server or if I messed up something.

Re: [U-Boot] [PATCH v2] ppc/85xx: PIO Support for FSL eSDHC Controller Driver

2009-09-22 Thread Wolfgang Denk
Dear Dipen Dudhat, In message 1252904203-9129-1-git-send-email-dipen.dud...@freescale.com you wrote: On some Freescale SoC Internal DMA of eSDHC controller has bug. So PIO Mode has introduced to do data transfer using CPU. In PIO mode data transfer performance will be degraded by a large

Re: [U-Boot] [PATCH] TI: OMAP3: Overo Tobi ethernet support

2009-09-22 Thread Olof Johansson
On Tue, Sep 22, 2009 at 09:41:42PM +0200, Wolfgang Denk wrote: Please use git format-patch / git send-email to create and submit patches. For example, it is always nice to see a file statistics in the patch. k. + MUX_VAL(CP(GPMC_CLK), (IDIS | PTU | EN | M0)) /*GPMC_CLK*/\ +

Re: [U-Boot] [PATCH] TI: DaVinci DM365: Enabling net support on DM365

2009-09-22 Thread Wolfgang Denk
Dear s-paul...@ti.com, In message 1252955798-31840-1-git-send-email-s-paul...@ti.com you wrote: From: Sandeep Paulraj s-paul...@ti.com This patch enables EMAC on the DM365 EVM. Signed-off-by: Sandeep Paulraj s-paul...@ti.com --- board/davinci/dm365evm/dm365evm.c | 38

Re: [U-Boot] [PATCH] TI: DaVinci DM365: Enabling net support on DM365

2009-09-22 Thread Wolfgang Denk
Dear Paulraj, Sandeep, In message 0554bef07d437848af01b9c9b5f0bc5d929e5...@dlee01.ent.ti.com you wrote: From: Sandeep Paulraj s-paul...@ti.com This patch enables EMAC on the DM365 EVM. Signed-off-by: Sandeep Paulraj s-paul...@ti.com --- board/davinci/dm365evm/dm365evm.c |

Re: [U-Boot] [PATCH v2] board/linkstation/ide.c: Fix compile warning

2009-09-22 Thread Wolfgang Denk
Dear Guennadi Liakhovetski, In message pine.lnx.4.64.0909162240120.19...@axis700.grange you wrote: I have the hardware, yes, and I even have something, that should be a Jtag cable for it... But I don't have near 100% certainty, that if I brick it I will be able in reasonable time to

Re: [U-Boot] [PATCH] imx51:Add support basic boot code of freescale imx51 bbg board

2009-09-22 Thread Fred Fan
HI Magnus Lilja: Best Regards Fred 2009/9/23, Magnus Lilja lilja.mag...@gmail.com: Hi 2009/9/22 Fred Fan fanyef...@gmail.com: Hi Magnus Liljia: Thanks for your comments. Best Regards Fred 2009/9/22, Magnus Lilja lilja.mag...@gmail.com: Hi I've scanned the

Re: [U-Boot] [PATCH] imx51:Add support basic boot code of freescale imx51 bbg board

2009-09-22 Thread Fred Fan
HI Magnus Lilja: Best Regards Fred 2009/9/23, Magnus Lilja lilja.mag...@gmail.com: Hmm, for some reason Reply in gmail cut part of the qouted message so here's the rest of the followup. Fred Fan skrev: Hi Magnus Liljia: Thanks for your comments. Best Regards Fred

Re: [U-Boot] [PATCHv5 2/2] mucmc52, uc101: delete a...@3a00 node, if no CF card is detected

2009-09-22 Thread Wolfgang Denk
Dear Heiko Schocher, In message 4aaf1fe4.9050...@denx.de you wrote: U-Boot can detect if an IDE device is present or not. If not, and this new config option is activated, U-Boot removes the ATA node from the DTS before booting Linux, so the Linux IDE driver does not probe the device and

Re: [U-Boot] [PATCH 2/2 v2] Blackfin: tweak embedded env config option

2009-09-22 Thread Wolfgang Denk
Dear Mike Frysinger, In message 200909151736.52720.vap...@gentoo.org you wrote: ... $(obj)u-boot.ldr:$(obj)u-boot - $(obj)tools/envcrc --binary $(obj)env-ldr.o + $(CREATE_LDR_ENV) $(LDR) -T $(CONFIG_BFIN_CPU) -c $@ $ $(LDR_FLAGS) This is all

Re: [U-Boot] [PATCH v2] env: only build env_embedded and envcrc when needed

2009-09-22 Thread Wolfgang Denk
Dear Mike Frysinger, In message 200909151739.11704.vap...@gentoo.org you wrote: i saw it as custom embedding of the environment. the only thing it does is enable the envcrc binary. i thought of using CONFIG_ENVCRC, but it seemed a little too short. CONFIG_ENABLE_ENVCRC ?

Re: [U-Boot] [PATCH] mpc512x. Micron nand flash needs a reset before a read command is issued.

2009-09-22 Thread Wolfgang Denk
Dear Paul Gibson, In message 26b052040909151705r35cdb874gbbe5a184d20e4...@mail.gmail.com you wrote: Micron nand flash needs a reset before a read command is issued. The current mpc5121_nfc driver ignores the reset command. --- drivers/mtd/nand/mpc5121_nfc.c |1 + 1 files changed, 1

Re: [U-Boot] [PATCH] smc91111_eeprom: get working with net multi conversion

2009-09-22 Thread Wolfgang Denk
Dear Mike Frysinger, In message 1253068647-29134-1-git-send-email-vap...@gentoo.org you wrote: This should be squashed into the pending: Convert SMC9 Ethernet driver to CONFIG_NET_MULTI API The changes to the eeprom were incomplete, and the new version needs slightly different

Re: [U-Boot] [PATCH v2] board/linkstation/ide.c: Fix compile warning

2009-09-22 Thread Guennadi Liakhovetski
On Tue, 22 Sep 2009, Wolfgang Denk wrote: Dear Guennadi Liakhovetski, In message pine.lnx.4.64.0909162240120.19...@axis700.grange you wrote: I have the hardware, yes, and I even have something, that should be a Jtag cable for it... But I don't have near 100% certainty, that if I brick

Re: [U-Boot] [PATCH] mpc512x. Micron nand flash needs a reset before a read command is issued

2009-09-22 Thread Wolfgang Denk
Dear Paul Gibson, In message 26b052040909152126q55945d47yad3bcf90334ac...@mail.gmail.com you wrote: Micron nand flash needs a reset before a read command is issued. The current mpc5121_nfc driver ignores the reset command. Signed-off-by: Paul Gibson paul.gibson2...@gmail.com ---

Re: [U-Boot] [PATCH] SPARC standalone app fix

2009-09-22 Thread Wolfgang Denk
Dear Daniel Hellstrom, In message 4ab35893.4000...@gaisler.com you wrote: Thank you for your work. I have updated the sparc repository with your patch. And, yes, you are probably the first one to use the standalone app feature :) Um... Please put this patch on hold. We need Sergey's

Re: [U-Boot] [PATCH] smc91111_eeprom: get working with net multi conversion

2009-09-22 Thread Ben Warren
Wolfgang Denk wrote: Dear Mike Frysinger, In message 1253068647-29134-1-git-send-email-vap...@gentoo.org you wrote: This should be squashed into the pending: Convert SMC9 Ethernet driver to CONFIG_NET_MULTI API The changes to the eeprom were incomplete, and the new version

Re: [U-Boot] [PATCH 1/3] fsl_i2c: Wait for STOP condition to propagate

2009-09-22 Thread Wolfgang Denk
Dear Joakim Tjernlund, In message 1253178437-32398-1-git-send-email-joakim.tjernl...@transmode.se you wrote: After issuing a STOP one must wait until the STOP has completed on the bus before doing something new to the controller. Also add an extra read of SR as the manual mentions doing

Re: [U-Boot] [PATCH v2] Remove deprecated 'autoscr' command/variables

2009-09-22 Thread Wolfgang Denk
Dear Peter Tyser, In message 1253155091-6576-1-git-send-email-pty...@xes-inc.com you wrote: The more standard 'source' command provides identical functionality to the autoscr command. Environment variable names/values on the MVBC_P, MVBML7, kmeter1, mgcoge, and km8xx boards are updated to

Re: [U-Boot] [PATCH 1/2] ppc: Clean up calling of misc_init_r() during init

2009-09-22 Thread Wolfgang Denk
Dear Peter Tyser, In message 1253156588-8686-1-git-send-email-pty...@xes-inc.com you wrote: Remove board-specific #ifdefs for calling misc_init_r() during initializtion Signed-off-by: Peter Tyser pty...@xes-inc.com --- include/configs/CCM.h|1 + include/configs/CPCI405.h

Re: [U-Boot] [PATCH 2/2] ppc: Clean up calling of phy_reset() during init

2009-09-22 Thread Wolfgang Denk
Dear Peter Tyser, In message 1253156588-8686-2-git-send-email-pty...@xes-inc.com you wrote: Remove board-specific #ifdefs for calling phy_reset() during initializtion Signed-off-by: Peter Tyser pty...@xes-inc.com --- include/configs/CCM.h|1 + include/configs/ELPT860.h|

Re: [U-Boot] [PATCH v3 1/3] NAND boot: MPC8536DS support

2009-09-22 Thread Wolfgang Denk
Dear Mingkai Hu, In message 1253244935-1555-1-git-send-email-mingkai...@freescale.com you wrote: MPC8536E can support booting from NAND flash which uses the image u-boot-nand.bin. This image contains two parts: a 4K NAND loader and a main U-Boot image. The former is appended to the latter to

Re: [U-Boot] [PATCH] TI: OMAP3: Overo Tobi ethernet support

2009-09-22 Thread Olof Johansson
On Sep 22, 2009, at 2:50 PM, Wolfgang Denk wrote: Dear Ben Warren, In message f8328f7c0909131022t700abe65p5083bdc3c4630...@mail.gmail.com you wrote: I always use 'git am -s', which adds the SOB. My understanding is that maintainers should do this as an indication of approval and

Re: [U-Boot] [PATCH] smc91111_eeprom: get working with net multi conversion

2009-09-22 Thread Mike Frysinger
On Tuesday 22 September 2009 16:49:06 Ben Warren wrote: Wolfgang Denk wrote: Mike Frysinger wrote: This should be squashed into the pending: Convert SMC9 Ethernet driver to CONFIG_NET_MULTI API The changes to the eeprom were incomplete, and the new version needs slightly

Re: [U-Boot] [PATCH] mtd: SPI Flash: Winbond W25X16/WX2532/WX2564 support

2009-09-22 Thread Mike Frysinger
On Thursday 02 April 2009 06:54:59 Mike Frysinger wrote: On Thursday 11 December 2008 16:16:29 Mike Frysinger wrote: On Wednesday 09 July 2008 18:37:06 Wolfgang Denk wrote: In message Jason McMullan wrote: Add support for the Winbond W25X16/32/64 series of SPI Flash devices.

Re: [U-Boot] [PATCH] TI: OMAP3: Overo Tobi ethernet support

2009-09-22 Thread Wolfgang Denk
Dear Olof Johansson, In message c6505381-97ac-4e05-9cca-6089f6996...@gmail.com you wrote: Please feel free to do that, but I consider this just adding line-noise, unless you _really_ express special approval. Which sense would it make if I added a s-o-b to each and every commit I'm

Re: [U-Boot] [PATCH] TI: OMAP3: Overo Tobi ethernet support

2009-09-22 Thread Wolfgang Denk
Dear Olof Johansson, In message 3c828e04-9cb1-4ccf-ad61-904f8956f...@gmail.com you wrote: Linus does not S-o-b all patches that go into the Linux kernel, or does he? He does. No, he does not. For example, see

Re: [U-Boot] [PATCH] TI: OMAP3: Overo Tobi ethernet support

2009-09-22 Thread Olof Johansson
On Sep 22, 2009, at 4:28 PM, Wolfgang Denk wrote: Dear Olof Johansson, In message c6505381-97ac-4e05-9cca-6089f6996...@gmail.com you wrote: Please feel free to do that, but I consider this just adding line-noise, unless you _really_ express special approval. Which sense would it make if

  1   2   >