Re: [U-Boot] Adding a new file transfer protocol to Uboot

2010-05-02 Thread maggi9999
Ben Warren-2 wrote: > > Hello Maggi, > > On Tue, Apr 27, 2010 at 6:27 AM, maggi wrote: > >> >> hi all, >> >> i'm very new to uboot.i would like to add new file transfer protocol like >> tftp. Server sends the file as chunks and uboot has to receive and >> reconstruct it.for that in u

Re: [U-Boot] [PATCH-V2 0/4] Add Support for AM3517EVM with EMIF4

2010-05-02 Thread Hiremath, Vaibhav
> -Original Message- > From: Hiremath, Vaibhav > Sent: Friday, April 23, 2010 8:26 PM > To: u-boot@lists.denx.de > Cc: Paulraj, Sandeep; tom@windriver.com; Hiremath, Vaibhav > Subject: [PATCH-V2 0/4] Add Support for AM3517EVM with EMIF4 > > From: Vaibhav Hiremath > > Changes from V1

[U-Boot] Pais Casino Join Today Be Rich!

2010-05-02 Thread Making Money
- AUTOMATYCZNY raport antySPAMowy -- Oprogramowanie do wykrywania spamu, dzia³aj±ce na serwerze: *** "mta.pl" ***, zidentyfikowa³o ten email jako prawdopodobny spam. Oryginalna wiadomo¶æ zosta³a do³±czonado tej, aby mo¿na by³o j± przejrzeæ, zweryfik

[U-Boot] Toggling pins using the BDI3000

2010-05-02 Thread Can Aydin
Hi All, I'm not sure if this is the place to ask this, please redirect if it isn't. I'm looking into using a BDI3000 with a P2020RDB evaluation kit we've already purchased from Denx, but there is some confusion over how the board hardware handles the power on boot configuration signals to the

[U-Boot] [PATCH 3/3 v6] mmc: add generic mmc spi driver

2010-05-02 Thread Thomas Chou
This patch supports mmc/sd card with spi interface. It is based on the generic mmc framework. It works with SDHC and supports write. The crc checksum on data packet is enabled with the def, #define CONFIG_MMC_SPI_CRC_ON There is a subcomamnd "mmc_spi" to setup spi bus and cs at run time. Signed-

[U-Boot] [PATCH 2/3] mmc: add find_mmc_device_quiet that doesnt print not found message

2010-05-02 Thread Thomas Chou
We need to query mmc devices in mmc_spi subcommand and don't want the "Device not found" message. Signed-off-by: Thomas Chou --- drivers/mmc/mmc.c | 14 +++--- include/mmc.h |1 + 2 files changed, 12 insertions(+), 3 deletions(-) diff --git a/drivers/mmc/mmc.c b/drivers/mmc/mm

[U-Boot] [PATCH 1/3] lib: add crc7 from Linux

2010-05-02 Thread Thomas Chou
Crc7 is used to compute mmc spi comamnd packet checksum. Signed-off-by: Thomas Chou --- include/linux/crc7.h | 14 +++ lib/Makefile |1 + lib/crc7.c | 62 ++ 3 files changed, 77 insertions(+), 0 deletions(-) creat

[U-Boot] [PATCH 0/3] mmc: add mmc_spi driver

2010-05-02 Thread Thomas Chou
This patch series adds a mmc_spi driver. Thomas Chou (3): lib: add crc7 from Linux mmc: add find_mmc_device_quiet that doesnt print not found message mmc: add generic mmc spi driver common/Makefile |1 + common/cmd_mmc_spi.c | 115 ++ drivers/mmc/Makefile |1 +

Re: [U-Boot] [PATCH v2 17/17] SPEAr : Supporting various configurations for spear3xx and spear6xx boards

2010-05-02 Thread Tom Rix
Vipin KUMAR wrote: > spear3xx and 6xx boards can be compiled in following configurations > 1. Environment placed in NAND > 2. console on usb device > 3. console on usb device with environment placed in NAND > Add the new configs to the README.spear Tom > Signed-off-by: Vipin Kumar > --- > Ma

Re: [U-Boot] [PATCH v2 16/17] SPEAr : spear1300 SoC support added

2010-05-02 Thread Tom Rix
Vipin KUMAR wrote: > SPEAr1300 SoC support contains basic spear1300 support along with the > usage of following drivers > - serial driver(UART) > - i2c driver > - smi driver > - nand driver(FSMC) > - usbd driver > > Signed-off-by: Vipin Kumar > --- > Makefile

Re: [U-Boot] [PATCH v2 15/17] SPEAr : Basic spear1300 architecture support added

2010-05-02 Thread Tom Rix
Expand the commit log to describe this new part. Include a URL reference to where it can be reviewed. Vipin KUMAR wrote: > Signed-off-by: Vipin Kumar > --- > arch/arm/cpu/arm_cortexa8/spear13xx/Makefile| 52 > arch/arm/cpu/arm_cortexa8/spear13xx/cache.S | 112 > arch/ar

Re: [U-Boot] [PATCH v2 14/17] SPEAr : USBD driver support added

2010-05-02 Thread Tom Rix
Vipin KUMAR wrote: > USBD is a Synopsys IP. The earlier driver implements itself as specific to > spear > SoCs. This patch implements this driver as a reusable driver for other > platforms > as well. Similar comments about 'IP' Similar comments about Synopsys vs DW Expand 'USBD' to be 'the usb d

Re: [U-Boot] [PATCH v2 13/17] SPEAr : smi driver moved completely into drivers/mtd

2010-05-02 Thread Tom Rix
Vipin KUMAR wrote: > The smi IP used by spear platform is a ST serial memory interface controller > The earlier driver adds the driver of this controller as if it is specific to > spear platform. > The driver files are now moved into drivers/mtd folder for reusability by > other > platforms > Si

Re: [U-Boot] [PATCH v2 12/17] SPEAr : i2c driver moved completely into drivers/i2c

2010-05-02 Thread Tom Rix
Vipin KUMAR wrote: > The i2c IP used by spear platform is a synopsys i2c controller 'IP' expand. What is the connection between 'synopsys' and 'designware' ? If the part is synopsys, that should be the string used instead of 'dw' or 'designware' > The earlier driver adds the driver of this cont

Re: [U-Boot] [PATCH v2 11/17] SPEAr : Configuring FSMC driver for NAND interface

2010-05-02 Thread Tom Rix
Vipin KUMAR wrote: > Since FSMC is a standard IP and it supports different memory interfaces the > FSMC grammar 'interfaces the' -> 'interfaces; the' > is supported independent of spear platform and spear is configured to use that > driver for interfacing with the NAND device Describe that beca

Re: [U-Boot] [PATCH v2 10/17] SPEAr : FSMC driver support added

2010-05-02 Thread Tom Rix
Vipin KUMAR wrote: > Flexible static memory controller is an IP which controls the access > to NAND chips along with many other memory device chips eg NOR, SRAM. > This is an ST peripheral. This patch adds the driver support for FSMC > controller interfacing with NAND memory. IP, ST ? Add meaning

Re: [U-Boot] [PATCH v2 09/17] SPEAr : macb driver support added for spear310 and spear320

2010-05-02 Thread Tom Rix
Vipin KUMAR wrote: Add more detail in the commit to the what this change is and why it is needed. > Signed-off-by: Vipin Kumar > --- > arch/arm/include/asm/arch-spear/clk.h | 27 +++ > arch/arm/include/asm/arch-spear/hardware.h |7 +++ > board/spear/spear3

Re: [U-Boot] [PATCH v2 08/17] SPEAr : Network support configured for spear SoCs

2010-05-02 Thread Tom Rix
Vipin KUMAR wrote: > Signed-off-by: Vipin Kumar > --- > arch/arm/include/asm/arch-spear/hardware.h |1 + > board/spear/spear300/spear300.c|6 ++ > board/spear/spear310/spear310.c|6 ++ > board/spear/spear320/spear320.c|6 ++ > board/

Re: [U-Boot] [PATCH v2 07/17] SPEAr : Network driver support added

2010-05-02 Thread Tom Rix
Vipin KUMAR wrote: > Designware network driver support added. > This is a Synopsys ethernet controller > > Signed-off-by: Vipin Kumar > --- > drivers/net/Makefile |1 + > drivers/net/designware.c | 537 > ++ > drivers/net/designware.h | 264

Re: [U-Boot] [PATCH v2 06/17] SPEAr : Basic arch related support added for SPEAr SoCs

2010-05-02 Thread Tom Rix
Vipin KUMAR wrote: > Adding CONFIG_DISPLAY_CPUINFO and CONFIG_ARCH_CPU_INIT support for SPEAr3xx > and > SPEAr6xx SoCs Add more complete description of these CONFIG_* variables in the commit log > > Signed-off-by: Vipin Kumar > --- > arch/arm/cpu/arm926ejs/spear/Makefile |3 +- > arc

Re: [U-Boot] [PATCH v2 05/17] SPEAr : Reducing the max RAM size to 128MB

2010-05-02 Thread Tom Rix
Vipin KUMAR wrote: > Signed-off-by: Vipin Kumar > --- > include/configs/spear-common.h |2 +- > 1 files changed, 1 insertions(+), 1 deletions(-) > > diff --git a/include/configs/spear-common.h b/include/configs/spear-common.h > index cc52e39..b526558 100644 > --- a/include/configs/spear-comm

Re: [U-Boot] [PATCH v2 04/17] SPEAr : Placing ethaddr write and read within CONFIG_CMD_NET

2010-05-02 Thread Tom Rix
Vipin KUMAR wrote: > ethaddr can be optionally read from i2c memory. So, chip_config command > supports > reading/writing hw mac id into i2c memory. Placing this code within > CONFIG_CMD_NET as this would only be needed when network interface is > configured > > Signed-off-by: Vipin Kumar > ---

Re: [U-Boot] [PATCH v2 02/17] change_bit routine defined

2010-05-02 Thread Tom Rix
Vipin KUMAR wrote: > change_bit routine is left implementation dependent until now. > This routine is now defined for arm platforms in asm-arm/bitops.h > Add a reason on why this change is needed. Something like 'mtd/nand/.. needs this to be defined.. and the new nand driver needs it.. ' Tom

Re: [U-Boot] [PATCH v2 03/17] SPEAr : SMI erase and write timeouts increased

2010-05-02 Thread Tom Rix
Vipin KUMAR wrote: > SMI driver fails because of low timeout values. Increasing the erase and write > timeouts to 3 seconds > > Signed-off-by: Vipin Kumar > --- > arch/arm/include/asm/arch-spear/spr_smi.h |6 +++--- > drivers/mtd/spr_smi.c |8 > 2 files chang

Re: [U-Boot] [PATCH v2 01/17] u-boot.img file not created when srctree and objtree are different

2010-05-02 Thread Tom Rix
Vipin KUMAR wrote: > Adding ($obj) before tools/mkimage for u-boot.img file creation > This is fine. Change follows similar targets in the Makefile Ack-ed Tom > Signed-off-by: Vipin Kumar > --- > Makefile |2 +- > 1 files changed, 1 insertions(+), 1 deletions(-) > > diff --git a/Makefile

Re: [U-Boot] [PATCH v5 2/3] ARM1176: TI: TNETV107X soc initial support

2010-05-02 Thread Cyril Chemparathy
Hi Tom, Thanks for the excellent review. [...] >> +static struct async_emif_config default_async_emif_config[NUM_CS] = { >> + { /* CS0 */ >> + .mode = ASYNC_EMIF_MODE_NAND, >> + .select_strobe = ASYNC_EMIF_CS0_SELECT_STROBE, >> +

Re: [U-Boot] [OT] - Solved : Memory Mapped CF Card (IDE) and Linux

2010-05-02 Thread Graeme Russ
Hi, I found how to access my Direct-Mapped CF Card (thanks to Alan Cox) and I think the solution to this particular case may be of some help to others here... Linux 2.6 provides a primitive 'PATA Platform' driver (primitive in that it is a very low-level driver, not primitive in its code maturity

[U-Boot] Irish 2010 Grant Winner

2010-05-02 Thread info
This is to inform you that you have been selected for a cash prize of £1,000,000 (British Pounds) held on the 25th of April. CLAIM FORM Names:_ Tele:_ Age:_ Address:___ occupation:___ country:___ next of kin: Email:redeemprize2...@live.co.uk Agent Name: Mr.Mar

[U-Boot] From Eurocredit

2010-05-02 Thread Euroclear Credit
Beneficiary Ac# 9789568425 Euro clear credit received a Dtc Screen Credit of $167,500 enrouted to your Bank from a Fortis Bank. The transmission department of Euro clear Credit need a final clarification from you on the transaction details with transworld stores where the Dtc Screen credit was

Re: [U-Boot] RFC: U-Boot OneNAND IPL TEXT_BASE

2010-05-02 Thread Marek Vasut
Dne Ne 2. května 2010 13:07:13 Kyungmin Park napsal(a): > On Sun, May 2, 2010 at 3:39 PM, Marek Vasut wrote: > > Dne Ne 2. května 2010 05:54:41 Kyungmin Park napsal(a): > >> Hi, > >> > >> Which CPU do you use? In most ARM cpu, CPU load the IPL into its > >> internal SRAM, and runs at here. > > >

Re: [U-Boot] RFC: U-Boot OneNAND IPL TEXT_BASE

2010-05-02 Thread Kyungmin Park
On Sun, May 2, 2010 at 3:39 PM, Marek Vasut wrote: > Dne Ne 2. května 2010 05:54:41 Kyungmin Park napsal(a): >> Hi, >> >> Which CPU do you use? In most ARM cpu, CPU load the IPL into its >> internal SRAM, and runs at here. > PXA270 ... the BootRAM is mapped to 0x0 and the code runs from there. >>

[U-Boot] [PATCH v3] POST cleanup v3 (incremental)

2010-05-02 Thread Michael Zaidman
Incremental patch. Should be applied above its v2: http://lists.denx.de/pipermail/u-boot/2010-April/070729.html (Sorry for inconvenience. I will use --in-reply-to option next time) In the patch: - Fix for hcu4 board; - post.h - preprocessor conditional inclusions optimization. Signed-off-by: Mich