Re: [U-Boot] Updating YAFFS2 RootFS

2010-06-28 Thread David Andrey
Dear Wolfgang, Seems that a little much infos about background will be a good thing :-) The idea is to provide an update / restore mechanism from U-boot. he NAND is formatted as follow: * U-Boot Partition * Images Partition (YAFFS2) (Kernel, RootFS as tgz, FPGA / DSP Firmwares). * Linux RootFS

Re: [U-Boot] u-boot-2010.06-rc3 to AT91rm9200dk

2010-06-28 Thread Andreas Bießmann
Dear Rajeesh.R, Am 28.06.2010 06:51, schrieb Rajeesh.R: Hi, I have compiled Uboot version u-boot-2010.06-rc3 and I got bin file . I tried it to download bin file to at91rm9200dk board it stops after some time witth error . How did you try to load the file to your device? I think this

[U-Boot] At91rm9200dk ...Uboot ...How to download this uboot directly to flash

2010-06-28 Thread Rajeesh.R
Hi, I have tried to down load uboot bin via xmodem I am using serial flash AT45DB642D . My aim is to boot from this flash . regards Rajeesh Dear Rajeesh.R, Am 28.06.2010 06:51, schrieb Rajeesh.R: Hi, I have compiled Uboot version u-boot-2010.06-rc3 and I got bin file . I tried

Re: [U-Boot] Updating YAFFS2 RootFS

2010-06-28 Thread Wolfgang Denk
Dear David Andrey, Please do not top post / full qoute. Read http://www.netmeister.org/news/learn2quote.html In message 1ot8ed-000558...@wolf.netmodule.com you wrote: he NAND is formatted as follow: * U-Boot Partition * Images Partition (YAFFS2) (Kernel, RootFS as tgz, FPGA / DSP

Re: [U-Boot] question about add new board to MAKEALL

2010-06-28 Thread Wolfgang Denk
Dear =?UTF-8?B?IlhpYW5nZnUgTGl1KOWImOWQkeWvjCki?=, In message 4c280be4.8030...@openmobilefree.net you wrote: I am try to add new board to MAKEALL here[1] is the patch. but MAKEALL doesn't compile the new board qi_lb60. MAKEALL is just a wrapper script that runs make xxx_config and make all

[U-Boot] [PATCH] fix bug in get_ram_size()

2010-06-28 Thread ratbert . chuang
From: Po-Yu Chuang ratb...@faraday-tech.com memory content of base address was not restored Signed-off-by: Po-Yu Chuang ratb...@faraday-tech.com --- common/memsize.c |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/common/memsize.c b/common/memsize.c index

Re: [U-Boot] At91rm9200dk ...Uboot ...How to download this uboot directly to flash

2010-06-28 Thread Andreas Bießmann
Dear Rajeesh.R, Am 28.06.2010 09:20, schrieb Rajeesh.R: Hi, I have tried to down load uboot bin via xmodem You will need a bootstrap loader for this ... U-Boot will not fit in SRAM! I am using serial flash AT45DB642D . My aim is to boot from this flash . Ouch ok, I could have seen

Re: [U-Boot] [PATCH V2] Allow PHY addresses on kirkwood egiga to be non continuous.

2010-06-28 Thread Tor Krill
On Thu, 2010-06-24 at 14:26 +0200, Prafulla Wadaskar wrote: -Original Message- From: Tor Krill [mailto:t...@excito.com] Sent: Thursday, June 24, 2010 5:05 PM To: Prafulla Wadaskar Cc: u-boot@lists.denx.de Subject: RE: [PATCH V2] Allow PHY addresses on kirkwood egiga to be

Re: [U-Boot] [PATCH V2] Allow PHY addresses on kirkwood egiga to be non continuous.

2010-06-28 Thread Tor Krill
On Thu, 2010-06-24 at 18:37 +0200, Mike Frysinger wrote: On Thursday, June 24, 2010 05:31:47 Tor Krill wrote: void reset_phy(void) { char *name = egiga0; + u8 port_addr[] = CONFIG_PHY_ADDRS; if (miiphy_set_current_dev(name)) return; /* reset the phy

Re: [U-Boot] u-boot-2010.06-rc3 to AT91rm9200dk

2010-06-28 Thread Wolfgang Denk
Dear Rajeesh.R, In message 1277700718.2648.6.ca...@localhost.localdomain you wrote: I have compiled Uboot version u-boot-2010.06-rc3 and I got bin file . I tried it to download bin file to at91rm9200dk board it stops after some time witth error . I think this is due to insufficient of

Re: [U-Boot] [PATCH V2] Allow PHY addresses on kirkwood egiga to be non continuous.

2010-06-28 Thread Wolfgang Denk
Dear Tor Krill, In message 1277716302.2221.37.ca...@tor-desktop you wrote: 2. For the boards using single port will also need to configure PHY address for other port, which is meaningless, unnecessary and confusing. Sure you had to put something there to be on the safe side. But is that

[U-Boot] [PATCH V2 0/3] Add support for MB86R0x SoCs

2010-06-28 Thread Matthias Weisser
This patchset adds support for MB86R0x SoC familiy from Fujitsu, its built in lcd controller and a first board using the MB86R01. Changes since V2 - Rebased to current u-boot next branch Changes since V1 - Used C structs for addressing instead of base + offset - Moved offsets for

[U-Boot] [PATCH V2 1/3] arm: Add support for MB86R0x SoCs

2010-06-28 Thread Matthias Weisser
This patch adds support for MB86R0x SoCs from Fujitsu Signed-off-by: Matthias Weisser weiss...@arcor.de --- arch/arm/cpu/arm926ejs/mb86r0x/Makefile | 47 ++ arch/arm/cpu/arm926ejs/mb86r0x/reset.c | 40 ++ arch/arm/cpu/arm926ejs/mb86r0x/timer.c | 139 ++

[U-Boot] [PATCH V2 2/3] video: add support for display controller in MB86R0x SoCs

2010-06-28 Thread Matthias Weisser
This patch adds support for the display controller in the MB86R0x SoCs. Signed-off-by: Matthias Weisser weiss...@arcor.de --- drivers/video/Makefile |1 + drivers/video/mb86r0xgdc.c | 186 2 files changed, 187 insertions(+), 0 deletions(-)

[U-Boot] [PATCH V2 3/3] arm: Add support for jadecpu board based on MB86R01 SoC

2010-06-28 Thread Matthias Weisser
This patch adds support for the jadecpu board using the MB86R01 'Jade' SoC from Fujitsu. Signed-off-by: Matthias Weisser weiss...@arcor.de --- MAINTAINERS |4 + MAKEALL |1 + board/syteco/jadecpu/Makefile| 55 +++

Re: [U-Boot] Updating YAFFS2 RootFS

2010-06-28 Thread David Andrey
Dear Wolfgang, he NAND is formatted as follow: * U-Boot Partition * Images Partition (YAFFS2) (Kernel, RootFS as tgz, FPGA / DSP Firmwares). * Linux RootFS (YAFFS2) To update Linux, the way we imagine is this one: 1. write a new kernel and rootFS in the Images partition (get the files

[U-Boot] Thanks

2010-06-28 Thread Rajeesh.R
Thanks... With Thanks Rajeesh.R ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

[U-Boot] [PATCH 1/2] mpc8308: support for Freescale MPC8308 cpu

2010-06-28 Thread Ilya Yanok
This patch adds basic support for Freescale MPC8308 CPU. Serial ports, NOR flash and integrated Ethernet controllers are supported. PCI Express is also supported. eSDHC, NAND and USB may work but aren't tested (using ULPI PHY requires additional patch). Signed-off-by: Ilya Yanok ya...@emcraft.com

[U-Boot] [PATCH 2/2] MPC8308ERDB: minimal support for devboard from Freescale

2010-06-28 Thread Ilya Yanok
This patch provides support for MPC8308ERDB development board from Freescale with a minimal set of features: Dual UART is supported NOR flash is supported Both TSEC Ethernet controllers are supported PCI Express initialization is supported The following features are enabled in configuration

Re: [U-Boot] Updating YAFFS2 RootFS

2010-06-28 Thread Wolfgang Denk
Dear David Andrey, In message 1otddq-0001ly...@wolf.netmodule.com you wrote: If you have a network connection an can download the images through TFTP, then why do you need the Images Partition at all? You coulinstall the downloaded images directly. For restore purposes. As mentioned: you

[U-Boot] I'm new to U-boot, need help on U-boot porting on SMDK6410

2010-06-28 Thread sbasu
Hi, I'm Sudipta from India. I'm new to U-boot. I'm looking forward to port U-boot onto a Samsung SMDK6410 board having ARM 11 based SOC S3C6410. Can anyone help me on this. I'll be grateful to you. Warm regards, Sudipta, India ___ U-Boot mailing list

Re: [U-Boot] handling of bad blocks in nand

2010-06-28 Thread Arno Steffen
2010/6/25 Scott Wood scottw...@freescale.com: On 06/25/2010 05:18 AM, Arno Steffen wrote: 2010/6/24 Scott Woodscottw...@freescale.com: On 06/24/2010 01:28 AM, Arno Steffen wrote: does it mean in other words - I don't have to care for the bad block, can write on the bad block address as it

Re: [U-Boot] [PATCH] net: Add option to disable fibre on M88E1111 PHY for PPC4xx

2010-06-28 Thread Stefan Roese
Hi Ben, On Monday 21 June 2010 07:56:17 Ben Warren wrote: By defining CONFIG_M88E_DISABLE_FIBRE boards can configure the M88E PYH to disable fibre. This is needed for an upcoming PPC460GT based board, which has fibre/copper auto-selection enabled by default. This doesn't seem to

Re: [U-Boot] U-boot for PPC405GP based custom Board

2010-06-28 Thread ravi . rao
Hi, Looks like the syntax for .lds file has changed. It does not like any defines. I was trying to get the new syntax in .lds files to include file or define a constan but could not get a definitive answere. Any help is appreciated. By the way I have my own file for the custom board. Since

[U-Boot] MXC: Performance issue/glitch with reading/writing files from SD card

2010-06-28 Thread alfred steele
Hi, Looks like there is a huge performance issue with the sdhc hardware/software driver on the mx31 Earlier on i had adapated the freescale mx sdhc driver and ported it to the mx31 platform for U-boot v1.0. I have modified the driver to put the host as well as the card in 4 bit mode in the

Re: [U-Boot] [PATCH] EHCI: zero out QH transfer overlay in ehci_submit_async()

2010-06-28 Thread Sergei Shtylyov
Hello. Remy Bohmer wrote: 2010/6/25 Sergei Shtylyov sshtyl...@ru.mvista.com: ehci_submit_async() doesn't really zero out the QH transfer overlay (as the EHCI specification suggests) which leads to the controller seeing the 'token' field as the previous call has left it, i.e.: - if a

Re: [U-Boot] [PATCH V2] Allow PHY addresses on kirkwood egiga to be non continuous.

2010-06-28 Thread Prafulla Wadaskar
-Original Message- From: Wolfgang Denk [mailto:w...@denx.de] Sent: Monday, June 28, 2010 5:32 PM To: Tor Krill Cc: Prafulla Wadaskar; u-boot@lists.denx.de Subject: Re: [U-Boot] [PATCH V2] Allow PHY addresses on kirkwood egiga to be non continuous. Dear Tor Krill, In

Re: [U-Boot] U-boot for PPC405GP based custom Board

2010-06-28 Thread ravi . rao
Sending the same message without confidentiality crap... ravi rao/RFL/SLI 06/28/2010 09:48 AM To Wolfgang Denk w...@denx.de cc u-boot@lists.denx.de Subject Re: [U-Boot] U-boot for PPC405GP based custom Board Hi, Looks like the syntax for .lds file has changed. It does not like any

[U-Boot] [PATCH v2] EHCI: zero out QH transfer overlay in ehci_submit_async()

2010-06-28 Thread Sergei Shtylyov
ehci_submit_async() doesn't really zero out the QH transfer overlay (as the EHCI specification suggests) which leads to the controller seeing the token field as the previous call has left it, i.e.: - if a timeout occured on the previous call (Active bit left as 1), controller incorrectly tries

Re: [U-Boot] U-boot for PPC405GP based custom Board

2010-06-28 Thread Wolfgang Denk
Dear ravi@rflelect.com, despite prevoius hints to stick to the Netiquetee you continue to violate several rules at once: - you top post - you full quote - you add nonsense CONFIDENTIALITY NOTE crap footers - you send HTML Please stop doing this. If you ignore the rules, you run the risk of

Re: [U-Boot] [PATCH] sa1100 change get_timer(base) to return time since base

2010-06-28 Thread Jochen Friedrich
Hi Andrew, I see the cfi_flash code now has reset_timer calls sprinkled through it that should make the base offset functionality in the timer mostly a nop (assuming it's implemented). Maybe the OP has old cfi_flash code? You're right. reset_timer() was added in commit

[U-Boot] Custom MPC8572

2010-06-28 Thread Staale.Aakermann
Hi, I'm currently working on bringing life to our custom mpc8572 board. Its equipped with; - 2 GB ram - 64 MB NOR - 1 GB Nand - TSEC1 connected to single phy with fiber optic transceiver ( use MDIO channel 1 ) - TSEC2,3 4 connected to a marvell 81145 quad phy ( use MDIO channel 3 ) - 2

[U-Boot] [PATCH v5 07/18] SPEAr : Network support configured for spear SoCs

2010-06-28 Thread Vipin KUMAR
From: Vipin KUMAR vipin.ku...@st.com Signed-off-by: Vipin Kumar vipin.ku...@st.com --- arch/arm/include/asm/arch-spear/hardware.h |1 + board/spear/spear300/spear300.c| 11 +++ board/spear/spear310/spear310.c| 11 +++

[U-Boot] [PATCH v5 06/18] SPEAr : Network driver support added

2010-06-28 Thread Vipin KUMAR
From: Vipin KUMAR vipin.ku...@st.com Designware network driver support added. This is a Synopsys ethernet controller Signed-off-by: Vipin Kumar vipin.ku...@st.com --- doc/README.designware_eth | 25 ++ drivers/net/Makefile |1 + drivers/net/designware.c | 531

[U-Boot] [PATCH v5 12/18] SPEAr : smi driver moved completely into drivers/mtd

2010-06-28 Thread Vipin KUMAR
From: Vipin KUMAR vipin.ku...@st.com SMI is the serial memory interface controller provided by ST. The earlier driver was specific to spear platform. The driver files are renamed to st_smi.c and st_smi.h and moved into drivers/mtd folder for reusability by other platforms using smi controller

[U-Boot] [PATCH v5 05/18] SPEAr : Basic arch related support added for SPEAr SoCs

2010-06-28 Thread Vipin KUMAR
From: Vipin KUMAR vipin.ku...@st.com Adding CONFIG_DISPLAY_CPUINFO and CONFIG_ARCH_CPU_INIT support for SPEAr3xx and SPEAr6xx SoCs CONFIG_DISPLAY_CPUINFO includes the built CPU related information Earlier, architecture specific init code was mixed with board initialization code in

[U-Boot] [PATCH v5 00/18] Network support for spear platforms and SPEAr1300

2010-06-28 Thread Vipin KUMAR
Dear Wolfgang, Tom, The following set of patches is the fifth iteration of patches for the following changes - Network device driver for synopsys designware peripheral - SPEAr1300 SoC support - A few other misc changes and bugfixes These also include the feedbacks given by Tom and Ben These set

[U-Boot] [PATCH v5 11/18] SPEAr : i2c driver moved completely into drivers/i2c

2010-06-28 Thread Vipin KUMAR
From: Vipin KUMAR vipin.ku...@st.com The earlier i2c driver was specific to spear platforms. This patch implements the i2c controller as a generic driver which can be used by multiple platforms The driver files are now renamed to designware_i2c.c and designware_i2c.h and these are moved into

[U-Boot] [PATCH v5 02/18] SPEAr : SMI erase and write timeouts increased

2010-06-28 Thread Vipin KUMAR
From: Vipin KUMAR vipin.ku...@st.com SMI driver fails because of low timeout values. Increasing the write mode timeout and transfer timeouts to 15 ms Signed-off-by: Vipin Kumar vipin.ku...@st.com --- arch/arm/include/asm/arch-spear/spr_smi.h |4 +- drivers/mtd/spr_smi.c

[U-Boot] [PATCH v5 09/18] SPEAr : FSMC driver support added

2010-06-28 Thread Vipin KUMAR
From: Vipin KUMAR vipin.ku...@st.com Flexible static memory controller is a peripheral provided by ST, which controls the access to NAND chips along with many other memory device chips eg NOR, SRAM. This patch adds the driver support for FSMC controller interfacing with NAND memory.

[U-Boot] [PATCH v5 01/18] change_bit routine defined

2010-06-28 Thread Vipin KUMAR
From: Vipin KUMAR vipin.ku...@st.com change_bit routine is left implementation dependent until now. This routine is now defined for arm platforms in asm-arm/bitops.h The Flexible Static memory controller driver, placed in mtd/nand/fsmc_nand.c needs this routine. FSMC is a memory controller

[U-Boot] [PATCH v5 08/18] SPEAr : macb driver support added for spear310 and spear320

2010-06-28 Thread Vipin KUMAR
From: Vipin KUMAR vipin.ku...@st.com SPEAr310 and SPEAr320 SoCs have an extra ethernet controller. The driver for this device is already supported by u-boot, so configuring board configuration file and defining base addresses etc to make use of the common driver Signed-off-by: Vipin Kumar

[U-Boot] [PATCH v5 04/18] SPEAr : Reducing the max RAM size to 128MB

2010-06-28 Thread Vipin KUMAR
From: Vipin KUMAR vipin.ku...@st.com Signed-off-by: Vipin Kumar vipin.ku...@st.com --- 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 ---

[U-Boot] [PATCH v5 13/18] SPEAr : USB Device Controller driver support added

2010-06-28 Thread Vipin KUMAR
From: Vipin KUMAR vipin.ku...@st.com The earlier usb device controller driver was specific to spear platforms. This patch implements the usb device controller driver as a generic controller which can be reused by other platforms using this peripheral. Signed-off-by: Vipin Kumar

[U-Boot] [PATCH v5 15/18] SPEAr : Basic spear1300 architecture support added

2010-06-28 Thread Vipin KUMAR
From: Vipin KUMAR vipin.ku...@st.com SPEAr1300 is an ARMCortexA9 dual core based SoC which supports multiple peripherals such as 1. Ethernet Controller 2. USB Device Controller 3. USB Host Controllers 4. MTD interfaces for NAND and NOR(serial and parallel) flash devices etc For more

[U-Boot] [PATCH v5 10/18] SPEAr : Configuring FSMC driver for NAND interface

2010-06-28 Thread Vipin KUMAR
From: Vipin KUMAR vipin.ku...@st.com Since FSMC is a standard IP and it supports different memory interfaces, it is supported independent of spear platform and spear is configured to use that driver for interfacing with the NAND device Spear platform uses generic FSMC driver and spear specific

[U-Boot] [PATCH v5 16/18] SPEAr : spear1300 SoC support added

2010-06-28 Thread Vipin KUMAR
From: Vipin KUMAR vipin.ku...@st.com 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 vipin.ku...@st.com --- MAINTAINERS

[U-Boot] [PATCH v5 18/18] SPEAr : USB device controller bugfixes

2010-06-28 Thread Vipin KUMAR
From: Vipin KUMAR vipin.ku...@st.com This patch fixes a few bugs in USB device controller driver. The fixes are as follows 1. Adding error condition checks eg. NULL return 2. Endpoint other than endpoint 0 (control endpoint) are initialized only if usb state machine reaches STATE_ADDRESSED or

[U-Boot] [PATCH v5 17/18] SPEAr : Removing extraneous code

2010-06-28 Thread Vipin KUMAR
From: Vipin KUMAR vipin.ku...@st.com This sub-patch removes extraneous code from the spear platform code Signed-off-by: Vipin Kumar vipin.ku...@st.com --- include/configs/spear-common.h |1 - 1 files changed, 0 insertions(+), 1 deletions(-) diff --git a/include/configs/spear-common.h

[U-Boot] [PATCH v5 03/18] SPEAr : Placing ethaddr write and read within CONFIG_CMD_NET

2010-06-28 Thread Vipin KUMAR
From: Vipin KUMAR vipin.ku...@st.com 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

[U-Boot] [PATCH v5 14/18] SPEAr : Supporting various configurations for spear3xx and spear6xx boards

2010-06-28 Thread Vipin KUMAR
From: Vipin KUMAR vipin.ku...@st.com 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 Also, renaming the include/configs/spearxxx.h files to spear3xx_evb.h,

Re: [U-Boot] I'm new to U-boot, need help on U-boot porting on SMDK6410

2010-06-28 Thread Minkyu Kang
Dear Sudipta, On 28 June 2010 21:11, sb...@mail.vavni.com wrote: Hi, I'm Sudipta from India. I'm new to U-boot. I'm looking forward to port U-boot onto a Samsung SMDK6410 board having ARM 11 based SOC S3C6410. Can anyone help me on this. I'll be grateful to you. SMDK6410 is almost same