Re: [U-Boot] Booting with kernel and root fs in JFFS2 flash?

2010-06-30 Thread Alexander Stein
Hello Adam, Am Donnerstag, 1. Juli 2010, 04:37:31 schrieb Adam Moskowitz: > To make better use of the 32MB of flash on the board, we're considering > putting the kernel, the root filesystem, and some state data in a JFFS2 > partition on the flash. I thought sure I read somewhere in the docs that >

Re: [U-Boot] [PATCH v3] NAND: environment offset in OOB (CONFIG_ENV_OFFSET_OOB)

2010-06-30 Thread Ben Gardiner
On Wed, Jun 30, 2010 at 11:37 PM, Vipin KUMAR wrote: > Hello Ben, > > This is a nice idea. I see that the logic needs 8bytes at offset 0 in block 0 > oob area. This means that it would also overwrite the offset 5 (which is the > bad block marker in case of small page devices) and offset 0 (bad blo

Re: [U-Boot] [PATCH v3] NAND: environment offset in OOB (CONFIG_ENV_OFFSET_OOB)

2010-06-30 Thread Ben Gardiner
On Wed, Jun 30, 2010 at 5:41 PM, Wolfgang Denk wrote: > Dear Ben Gardiner, > > In message <1277933528-8335-1-git-send-email-bengardi...@nanometrics.ca> you > wrote: >> This is a re-submission of the patch by Harald Welte >> with minor modifications for rebase and changes >> as suggested by Scott

[U-Boot] Pull request u-boot-blackfin.git (sf branch)

2010-06-30 Thread Mike Frysinger
The following changes since commit 39ddd10b046fb791f47281ffb2100be01909ad72: Merge branch 'master' of ssh://gemini/home/wd/git/u-boot/master (2010-06-30 10:10:32 +0200) are available in the git repository at: git://www.denx.de/git/u-boot-blackfin.git sf Mike Frysinger (1): sf: move u

[U-Boot] [PATCH 3/3] sf: move useful messages from debug to printf

2010-06-30 Thread Mike Frysinger
At the moment, the default SPI flash subsystem is quite terse. Errors and successes both result in a generic message. So move the useful errors and useful successes to printf output by default. While we're here, also convert the messages to use print_size(). Signed-off-by: Mike Frysinger ---

[U-Boot] [PATCH 1/3] add redundant environment for env_sf.c

2010-06-30 Thread Mike Frysinger
From: Wolfgang Wegner This patch adds redundant environment for environment in SPI flash. I took env_flash.c as an example and slightly modified it. Apart from adapting things to SF, I also slightly changed the decision logic to use area 2 as a default in case the flags are wrong because not havi

[U-Boot] [PATCH 2/3] spi_flash: support old STMicro parts with RES

2010-06-30 Thread Mike Frysinger
From: Thomas Chou Some old STMicro parts do not support JEDEC ID (0x9f). This patch uses RES (0xab) to get Electronic ID and translates it to JEDEC ID. Signed-off-by: Thomas Chou Acked-by: Mike Frysinger --- drivers/mtd/spi/spi_flash.c |1 + drivers/mtd/spi/stmicro.c | 21

[U-Boot] [PATCH 0/3] spi flash updates for v2010.09

2010-06-30 Thread Mike Frysinger
These have been posted in the past and shouldn't be any pending issues. Mike Frysinger (1): sf: move useful messages from debug to printf Thomas Chou (1): spi_flash: support old STMicro parts with RES Wolfgang Wegner (1): add redundant environment for env_sf.c common/env_sf.c

Re: [U-Boot] [PATCH V6 04/10] mpc85xx: tlb.c cleanups

2010-06-30 Thread Kumar Gala
On Jun 17, 2010, at 11:37 AM, Becky Bruce wrote: > Extract the operation to read a tlb into a function - we will need > this later to print out the tlbs, and there's no point in duplicating > the code. Create a TSIZE_TO_BYTES macro to deal with the conversion > from the MAS field to an actual si

Re: [U-Boot] [PATCH V6 05/10] mpc85xx: Add print_tlbcam() function

2010-06-30 Thread Kumar Gala
On Jun 17, 2010, at 11:37 AM, Becky Bruce wrote: > This dumps out the contents of TLB1 on 85xx-based systems. > > Signed-off-by: Becky Bruce > --- > arch/powerpc/cpu/mpc85xx/tlb.c | 20 > arch/powerpc/include/asm/mmu.h |1 + > 2 files changed, 21 insertions(+), 0 deleti

Re: [U-Boot] [PATCH V6 03/10] 83xx/85xx/86xx: LBC register cleanup

2010-06-30 Thread Kumar Gala
On Jun 17, 2010, at 11:37 AM, Becky Bruce wrote: > Currently, 83xx, 86xx, and 85xx have a lot of duplicated code > dedicated to defining and manipulating the LBC registers. Merge > this into a single spot. > > To do this, we have to decide on a common name for the data structure > that holds th

Re: [U-Boot] [PATCH v3] NAND: environment offset in OOB (CONFIG_ENV_OFFSET_OOB)

2010-06-30 Thread Vipin KUMAR
On 7/1/2010 3:02 AM, Ben Gardiner wrote: > This is a re-submission of the patch by Harald Welte > with minor modifications for rebase and changes > as suggested by Scott Wood [1] [2]. > > This patch enables the environment partition to have a run-time dynamic > location (offset) in the NAND fla

Re: [U-Boot] [PATCH] cmd_ide: Convert to [read,write][b,w]

2010-06-30 Thread Marek Vasut
Dne Čt 1. července 2010 02:44:01 Albert ARIBAUD napsal(a): > Le 01/07/2010 02:09, Marek Vasut a écrit : > common/cmd_ide.c | 22 +- > 1 files changed, 13 insertions(+), 9 deletions(-) > >>> > >>> I don't see the big advantage of this patch yet. > >> > >> It won'

Re: [U-Boot] [PATCH V6 09/10] powerpc 83xx/85xx: Merge lbc upmconfig code

2010-06-30 Thread Kumar Gala
On Jun 17, 2010, at 11:37 AM, Becky Bruce wrote: > Each platform had its own version of the upmconfig, despite the > init process being identical. Now that we have a spot for common > lbc code, create a common upmconfig() there. > > Signed-off-by: Becky Bruce > Acked-by: Kim Phillips > --- >

Re: [U-Boot] [PATCH V6 08/10] mpc85xx: Add reginfo command

2010-06-30 Thread Kumar Gala
On Jun 17, 2010, at 11:37 AM, Becky Bruce wrote: > The new command dumps the TLBCAM, the LAWs, and the BR/OR regs. > Add CONFIG_CMD_REGINFO to the config for all MPC85xx parts. > > Signed-off-by: Becky Bruce > --- > arch/powerpc/cpu/mpc85xx/cpu.c | 13 + > common/cmd_reginfo.c

Re: [U-Boot] [PATCH V6 07/10] fsl_law.c: Add print_laws() for FSL_CORENET platforms.

2010-06-30 Thread Kumar Gala
On Jun 17, 2010, at 11:37 AM, Becky Bruce wrote: > Add printing of LAWBARH/LAWBARL for FSL_CORENET platforms. > > Signed-off-by: Becky Bruce > --- > drivers/misc/fsl_law.c |6 ++ > 1 files changed, 6 insertions(+), 0 deletions(-) applied to 85xx - k ___

Re: [U-Boot] [PATCH V6 06/10] drivers/misc/fsl_law.c: Rearrange code to avoid duplication

2010-06-30 Thread Kumar Gala
On Jun 17, 2010, at 11:37 AM, Becky Bruce wrote: > The current code redefines functions based on FSL_CORENET_ vs not - > create macros/inlines instead that hide the differences. > > Signed-off-by: Becky Bruce > --- > arch/powerpc/include/asm/fsl_law.h |1 + > drivers/misc/fsl_law.c

Re: [U-Boot] [PATCH V6 01/10] powerpc: Update configs to properly set FSL_ELBC

2010-06-30 Thread Kumar Gala
On Jun 17, 2010, at 11:37 AM, Becky Bruce wrote: > Some parts that have an Enhanced Local Bus Controller weren't > setting CONFIG_FSL_ELBC. Fix this so we can use this define > properly going forward (currently it's only used if PHYS_64BIT is > set, which meant not all platforms needed to have i

[U-Boot] Booting with kernel and root fs in JFFS2 flash?

2010-06-30 Thread Adam Moskowitz
Right now I have my board (a custom PPC-based system) booting from a kernel and a root filesystem, both in raw flash partitions, both created with mkimage; The root is loaded as a ramdisk (kinda like an initrd); we don't actually run with the root in flash. To make better use of the 32MB of flash

Re: [U-Boot] [PATCH] cmd_ide: Convert to [read,write][b,w]

2010-06-30 Thread Albert ARIBAUD
Le 01/07/2010 02:09, Marek Vasut a écrit : common/cmd_ide.c | 22 +- 1 files changed, 13 insertions(+), 9 deletions(-) >>> >>> I don't see the big advantage of this patch yet. >> >> It won't compile at least on ARM. Same case as with the dm9000 ethernet >> adapte

[U-Boot] [PATCH 4/4] edminiv2: inttroduce CONFIG_SKIP_LOWLEVEL_INIT

2010-06-30 Thread Albert Aribaud
Signed-off-by: Albert Aribaud --- include/configs/edminiv2.h |6 ++ 1 files changed, 6 insertions(+), 0 deletions(-) diff --git a/include/configs/edminiv2.h b/include/configs/edminiv2.h index 5c328c8..923cca9 100644 --- a/include/configs/edminiv2.h +++ b/include/configs/edminiv2.h @@ -1

[U-Boot] [PATCH 3/4] orion5x: fix typo in comment

2010-06-30 Thread Albert Aribaud
Signed-off-by: Albert Aribaud --- arch/arm/include/asm/arch-orion5x/orion5x.h |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/arch/arm/include/asm/arch-orion5x/orion5x.h b/arch/arm/include/asm/arch-orion5x/orion5x.h index 11de968..2009ac5 100644 --- a/arch/arm/include/

[U-Boot] [PATCH 2/4] orion5x: edminiv2: add CMD_IDE support

2010-06-30 Thread Albert Aribaud
Signed-off-by: Albert Aribaud --- arch/arm/include/asm/arch-orion5x/orion5x.h | 20 ++ board/LaCie/edminiv2/config.mk |6 - board/LaCie/edminiv2/edminiv2.c | 26 include/configs/edminiv2.h | 29 +

[U-Boot] [PATCH 1/4] ide: add configuration CONFIG_IDE_SWAP_IO

2010-06-30 Thread Albert Aribaud
Signed-off-by: Albert Aribaud --- arch/powerpc/include/asm/config.h |3 +++ common/cmd_ide.c | 22 +- doc/README.PXA_CF |8 include/configs/ap325rxa.h|1 + include/configs/ms7720se.h|1 + include/conf

Re: [U-Boot] [PATCH] orion5x: edminiv2: add libata support

2010-06-30 Thread Albert ARIBAUD
This patch is superseded by a new patch set. Amicalement, -- Albert. ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

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

2010-06-30 Thread Kim Phillips
On Mon, 28 Jun 2010 16:45:29 +0400 Ilya Yanok wrote: > This patch provides support for MPC8308ERDB development board from so, according to this document: http://cache.freescale.com/files/32bit/doc/user_guide/MPC8308RDBUG.pdf the board name is just 'mpc8308rdb', not 'mpc8308erdb'. AFAICT, ther

Re: [U-Boot] [PATCH] cmd_ide: Convert to [read,write][b,w]

2010-06-30 Thread Marek Vasut
Dne Čt 24. června 2010 02:36:00 Marek Vasut napsal(a): > Dne St 23. června 2010 22:51:28 Wolfgang Denk napsal(a): > > Dear Marek Vasut, > > > > In message <1277320683-2057-1-git-send-email-marek.va...@gmail.com> you wrote: > > > Signed-off-by: Marek Vasut > > > --- > > > > > > common/cmd_ide.c

Re: [U-Boot] [PATCH 4/6 v3] exports.c: fix warning: 'dummy' defined but not used

2010-06-30 Thread Mike Frysinger
On Wednesday, June 30, 2010 18:44:46 Wolfgang Denk wrote: > +static void dummy(void) __attribute__((unused)); > static void dummy(void) > { > } put the attribute before the "static" and you shouldnt need the duplicate prototype -mike signature.asc Description: This is a digitally signed mess

Re: [U-Boot] [PATCH] Drop support for GTH board

2010-06-30 Thread Thomas Lange
Dear Wolfgang, On 2010-06-29 22:06, Wolfgang Denk wrote: > The board maintainer states: > > The GTH board is obsolete and has not been manufactured for > several years. > To my knowledge, no recent U-Boot build has been tested on that > card. > > So drop support for this board.

Re: [U-Boot] [PATCH] orion5x: edminiv2: add libata support

2010-06-30 Thread Wolfgang Denk
Dear Albert ARIBAUD, In message <4c2bc6cb.1070...@free.fr> you wrote: > > > Incorrect multiline comment style. > > Will this be ok? Yes. > >> -#if defined(__PPC__) || defined(CONFIG_PXA_PCMCIA) || defined(CONFIG_SH) > >> +#if defined(__PPC__) || defined(CONFIG_PXA_PCMCIA) || defined(CONFIG_SH)

[U-Boot] [PATCH 4/6 v3] exports.c: fix warning: 'dummy' defined but not used

2010-06-30 Thread Wolfgang Denk
Also get rid of the #ifdef's while doing this. Suggested-by: Mike Frysinger Signed-off-by: Wolfgang Denk --- v2: fix compile problem for some boards. v3: get rid of #ifdef mess and use attribute instead as suggested by Mike Frysinger common/exports.c |1 + 1 files changed,

Re: [U-Boot] [PATCH] orion5x: edminiv2: add libata support

2010-06-30 Thread Albert ARIBAUD
Hi Wolfgang, Le 30/06/2010 23:39, Wolfgang Denk a écrit : > Dear Albert Aribaud, > > In message<1277933418-682-1-git-send-email-albert.arib...@free.fr> you wrote: >> >> Signed-off-by: Albert Aribaud >> --- >> This patch: >> - adds support in libata for the orion5x MVSATAHC controller; >> - enable

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

2010-06-30 Thread Wolfgang Denk
Dear Remy Bohmer, In message you wrote: > The following changes since commit 39ddd10b046fb791f47281ffb2100be01909ad72: > Wolfgang Denk (1): > Merge branch 'master' of ssh://gemini/home/wd/git/u-boot/master > > are available in the git repository at: > > git://git.denx.de/u-boot-usb

Re: [U-Boot] [PATCH] orion5x: edminiv2: add libata support

2010-06-30 Thread Albert ARIBAUD
Le 30/06/2010 23:30, Albert Aribaud a écrit : > This patch: > - adds support in libata for the orion5x MVSATAHC controller; > - enables orion5x MVSTAHC port 1 on the edmini board; > - adds IDE and EXT2 commands to the edminiv2 command set. Note: commands "ide", "esxt2ls" and "ext2load" have been

Re: [U-Boot] [PATCH v3] NAND: environment offset in OOB (CONFIG_ENV_OFFSET_OOB)

2010-06-30 Thread Wolfgang Denk
Dear Ben Gardiner, In message <1277933528-8335-1-git-send-email-bengardi...@nanometrics.ca> you wrote: > This is a re-submission of the patch by Harald Welte > with minor modifications for rebase and changes > as suggested by Scott Wood [1] [2]. > > This patch enables the environment partition

Re: [U-Boot] [PATCH] orion5x: edminiv2: add libata support

2010-06-30 Thread Wolfgang Denk
Dear Albert Aribaud, In message <1277933418-682-1-git-send-email-albert.arib...@free.fr> you wrote: > > Signed-off-by: Albert Aribaud > --- > This patch: > - adds support in libata for the orion5x MVSATAHC controller; > - enables orion5x MVSTAHC port 1 on the edmini board; > - adds IDE and EXT2

[U-Boot] [PATCH v3] NAND: environment offset in OOB (CONFIG_ENV_OFFSET_OOB)

2010-06-30 Thread Ben Gardiner
This is a re-submission of the patch by Harald Welte with minor modifications for rebase and changes as suggested by Scott Wood [1] [2]. This patch enables the environment partition to have a run-time dynamic location (offset) in the NAND flash. The reason for this is simply that all NAND fla

[U-Boot] [PATCH] orion5x: edminiv2: add libata support

2010-06-30 Thread Albert Aribaud
Signed-off-by: Albert Aribaud --- This patch: - adds support in libata for the orion5x MVSATAHC controller; - enables orion5x MVSTAHC port 1 on the edmini board; - adds IDE and EXT2 commands to the edminiv2 command set. arch/arm/include/asm/arch-orion5x/orion5x.h | 20 ++- board/L

[U-Boot] MX31PDK not booting with U-boot v2010.06

2010-06-30 Thread Magnus Lilja
Hi all, Has anyone tried the latest release on the i.MX31 PDK board? I downloaded it on my board, using U-boot v2010.03-rc1 to download and update U-boot, and after a reset it doesn't start. Since I don't have a debugger right now I don't know more than that. I'll get my hands on one and re-fl

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

2010-06-30 Thread Remy Bohmer
The following changes since commit 39ddd10b046fb791f47281ffb2100be01909ad72: Wolfgang Denk (1): Merge branch 'master' of ssh://gemini/home/wd/git/u-boot/master are available in the git repository at: git://git.denx.de/u-boot-usb.git master Ajay Kumar Gupta (4): musb: Use name b

Re: [U-Boot] [PATCH] drivers/usb/host/ohci-hcd: rename readl/writel to ohci_readl/ohci_writel

2010-06-30 Thread Remy Bohmer
Hi, 2010/6/30 Becky Bruce : > This avoids a build warning that you see if anyone in the > header chain has included io.h (which is coming shortly).  The previous > code redefined readl/writel; this patch renames it to be specific to > ohci.  The defines are also moved from ohci-hcd.c to ohci.h. >

Re: [U-Boot] [PATCH v4 0/6] Add support for TI OMAP4 SDP and Panda

2010-06-30 Thread Paulraj, Sandeep
> > This is version 4, which takes into account all feedback to date, and has > been rebased on the next branch. > > The folowing series adds support for two boards based upon the TI > OMAP4430. The OMAP4430 is a Cortex-A9 based SOC from TI. > > The first patch in this series renames the cpu

Re: [U-Boot] [PATCH v4 4/6] ARMV7: Restructure OMAP i2c driver to allow code sharing between OMAP3 and OMAP4

2010-06-30 Thread Paulraj, Sandeep
> Subject: [U-Boot] [PATCH v4 4/6] ARMV7: Restructure OMAP i2c driver to > allow code sharing between OMAP3 and OMAP4 > > This patch modifies the omap24xx driver so that it will also work with > OMAP4. > > Signed-off-by: Steve Sakoman > --- IIRC you already had an ACK for this change from Hei

Re: [U-Boot] [PATCH v4 3/6] ARMV7: Restructure OMAP mmc driver to allow code sharing between OMAP3 and OMAP4

2010-06-30 Thread Paulraj, Sandeep
> Subject: [U-Boot] [PATCH v4 3/6] ARMV7: Restructure OMAP mmc driver to > allow code sharing between OMAP3 and OMAP4 > > The architecture independent header is moved to drivers/mmc, and the > architecture > dependent headers reside in asm/arch-omap3 and asm/arch-omap4 > > Signed-off-by: Steve

Re: [U-Boot] AT91: Apply for the owner of AT91 custodian tree

2010-06-30 Thread Wolfgang Denk
Dear Hong, In message <0f5f73e36031fd46ad3f2e6948f0c0a0205...@frimb01.corp.atmel.com> you wrote: > > We noticed that the AT91 custodian tree has been left orphaned for a > period of time. We're going to take care of AT91 custodian tree and > continue bug fixing, patch review, and new board suppo

[U-Boot] [PATCH] drivers/usb/host/ohci-hcd: rename readl/writel to ohci_readl/ohci_writel

2010-06-30 Thread Becky Bruce
This avoids a build warning that you see if anyone in the header chain has included io.h (which is coming shortly). The previous code redefined readl/writel; this patch renames it to be specific to ohci. The defines are also moved from ohci-hcd.c to ohci.h. Signed-off-by: Becky Bruce --- Remy,

[U-Boot] [PATCH v6] POST cleanup.

2010-06-30 Thread Michael Zaidman
- Revives POST for blackfin arch; - Removes redundant code: arch/blackfin/lib/post.c board/ssv/common/post.c arch/powerpc/cpu/ppc4xx/commproc.c arch/powerpc/cpu/mpc512x/common.c - fixes up the post_word_{load|store} usage; Signed-off-by: Michael Zaidman Acked-by: Detlev Zundel

Re: [U-Boot] [PATCH] [v3] powerpc: add support for the Freescale P1022DS reference board

2010-06-30 Thread Kumar Gala
On Jun 30, 2010, at 9:02 AM, Kumar Gala wrote: > > On Jun 30, 2010, at 8:55 AM, Timur Tabi wrote: > >> Kumar, please don't forget this patch. >> >> On Mon, Jun 14, 2010 at 3:28 PM, Timur Tabi wrote: >>> Add basic suport for the Freescale P1022DS reference board. >>> >>> Specifics: >>> >>> 1

Re: [U-Boot] [PATCH] [v3] powerpc: add support for the Freescale P1022DS reference board

2010-06-30 Thread Timur Tabi
On Wed, Jun 30, 2010 at 9:02 AM, Kumar Gala wrote: > > On Jun 30, 2010, at 8:55 AM, Timur Tabi wrote: > >> Kumar, please don't forget this patch. It applies against Wolfgang's 'next' branch. Have you updated your branch to pull in the new Makefile code? -- Timur Tabi Linux kernel developer at

Re: [U-Boot] [PATCH] [v3] powerpc: add support for the Freescale P1022DS reference board

2010-06-30 Thread Kumar Gala
On Jun 30, 2010, at 8:55 AM, Timur Tabi wrote: > Kumar, please don't forget this patch. > > On Mon, Jun 14, 2010 at 3:28 PM, Timur Tabi wrote: >> Add basic suport for the Freescale P1022DS reference board. >> >> Specifics: >> >> 1) 36-bit only >> 2) Booting from NOR flash only >> 3) Environme

Re: [U-Boot] [PATCH] [v3] powerpc: add support for the Freescale P1022DS reference board

2010-06-30 Thread Timur Tabi
Kumar, please don't forget this patch. On Mon, Jun 14, 2010 at 3:28 PM, Timur Tabi wrote: > Add basic suport for the Freescale P1022DS reference board. > > Specifics: > > 1) 36-bit only > 2) Booting from NOR flash only > 3) Environment stored in NOR flash only > 4) No SPI support > 5) No DIU supp

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

2010-06-30 Thread Armando VISCONTI
Tom, Wolfgang, THis time everything should be ok. Thks for your attention, Arm Vipin KUMAR wrote: > 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

Re: [U-Boot] [PATCH v2 RESEND] OMAP: mmc: add support for second and third mmc channels

2010-06-30 Thread Paulraj, Sandeep
> > This patch adds support for the second and third mmc channels on OMAP3 > processors > > Boards wishing to use this feature should define CONFIG_SYS_MMC_SET_DEV > in the board config > > Tested on Overo > > Signed-off-by: Steve Sakoman > Tested-by: Philip Balister Thanks There were ch

Re: [U-Boot] [PATCH] 85xx/p1_p2_rdb: enable hwconfig

2010-06-30 Thread Kumar Gala
On Jun 23, 2010, at 9:08 AM, Poonam Aggrwal wrote: > Signed-off-by: Vivek Mahajan > --- > include/configs/P1_P2_RDB.h |2 ++ > 1 files changed, 2 insertions(+), 0 deletions(-) applied to 85xx - k ___ U-Boot mailing list U-Boot@lists.denx.de http:/

Re: [U-Boot] [PATCH] eSPI and Intel E1000 support for P1/P2 RDB

2010-06-30 Thread Kumar Gala
On Jun 23, 2010, at 8:56 AM, Poonam Aggrwal wrote: > This patch enables the eSPI configuration to use > the Spansion Flash on P1 and P2 RDB Platforms > > This also enables the Intel Pro/1000 PT Gb Ethernet > PCI-E Network Adapter configuration support > > Signed-off-by: Poonam Aggrwal > --- >

Re: [U-Boot] [PATCH v3] Move ICS CLK chip frequenty calculation code into a common board library

2010-06-30 Thread Kumar Gala
On May 24, 2010, at 3:09 PM, Kumar Gala wrote: > We have several boards that use the same ICS307 CLK chip to drive the > System clock and DDR clock. Move the code into a common location so we > share it. > > Convert the P2020DS board as the first to use the new common ICS307 > code. > > Signed

[U-Boot] [PATCH] ppc/85xx: Convert MPC8536DS to using board common ICS307 code

2010-06-30 Thread Kumar Gala
Signed-off-by: Kumar Gala --- board/freescale/common/Makefile |1 + board/freescale/mpc8536ds/mpc8536ds.c | 148 - include/configs/MPC8536DS.h | 14 +-- 3 files changed, 6 insertions(+), 157 deletions(-) diff --git a/board/freescale/common/M

[U-Boot] [PATCH] ppc/85xx: Convert MPC8572DS to using board common ICS307 code

2010-06-30 Thread Kumar Gala
Signed-off-by: Kumar Gala --- board/freescale/common/Makefile |1 + board/freescale/mpc8572ds/mpc8572ds.c | 145 + include/configs/MPC8572DS.h | 14 +-- 3 files changed, 7 insertions(+), 153 deletions(-) diff --git a/board/freescale/common/M

Re: [U-Boot] [PATCH v2] ppc/85xx: Add a structure defn for PIXIS registers

2010-06-30 Thread Kumar Gala
On May 24, 2010, at 1:48 PM, Kumar Gala wrote: > The various boards that have PIXIS FPGAs have slightly different > register definitions, however there is some common functionality (like > reset, ICS307 clk control, etc) that can be shared. > > The struct definition exists for MPC8536DS, MPC8544

[U-Boot] [PATCH] powerpc/85xx: Add support for link stack & STAC on e5500

2010-06-30 Thread Kumar Gala
The e5500 has a link register stack and segment target address cache. Its safe to enable these bits on older e500 cores as the bits are implemented in the register. Signed-off-by: Kumar Gala --- arch/powerpc/include/asm/processor.h |4 +++- 1 files changed, 3 insertions(+), 1 deletions(-) d

[U-Boot] [PATCH] powerpc/85xx: Add recognition of e5500 core

2010-06-30 Thread Kumar Gala
Signed-off-by: Kumar Gala --- arch/powerpc/cpu/mpc85xx/cpu.c | 20 ++-- 1 files changed, 10 insertions(+), 10 deletions(-) diff --git a/arch/powerpc/cpu/mpc85xx/cpu.c b/arch/powerpc/cpu/mpc85xx/cpu.c index fddeb2f..25fb25c 100644 --- a/arch/powerpc/cpu/mpc85xx/cpu.c +++ b/arch/

Re: [U-Boot] [PATCH 2/2] powerpc/85xx: Report workaround of errata SATA-A001

2010-06-30 Thread Kumar Gala
On Jun 9, 2010, at 11:18 PM, Kumar Gala wrote: > Signed-off-by: Kumar Gala > --- > arch/powerpc/cpu/mpc85xx/cmd_errata.c | 14 ++ > 1 files changed, 14 insertions(+), 0 deletions(-) applied to 85xx - k ___ U-Boot mailing list U-Boot@list

Re: [U-Boot] [PATCH 1/2] powerpc/85xx: Add command to report errata workarounds

2010-06-30 Thread Kumar Gala
On Jun 9, 2010, at 11:18 PM, Kumar Gala wrote: > Add 'errata' command to report what errata we workaround > > Signed-off-by: Kumar Gala > --- > arch/powerpc/cpu/mpc85xx/Makefile |1 + > arch/powerpc/cpu/mpc85xx/cmd_errata.c | 35 + > 2 files changed, 36 i

Re: [U-Boot] [PATCH v2] powerpc/8xxx: Add is_core_disabled to remove disabled cores from dtb

2010-06-30 Thread Kumar Gala
On Jun 9, 2010, at 11:17 PM, Kumar Gala wrote: > If we explicitly disabled a core remove it from the dtb we pass on to > the kernel. > > Signed-off-by: Kumar Gala > --- > * Fix issues reported by Timur > > arch/powerpc/cpu/mpc85xx/mp.c | 23 +++ > arch/powerpc/cpu/mpc86xx

Re: [U-Boot] [PATCH] mpc8xxx: Remove cpu-handles for cpus we delete

2010-06-30 Thread Kumar Gala
On Jun 9, 2010, at 1:17 PM, Kumar Gala wrote: > We may have cpu-handles pointing to the cpu nodes we delete. If so we > should delete the handles as well. > > Signed-off-by: Kumar Gala > --- > arch/powerpc/cpu/mpc8xxx/fdt.c | 36 ++-- > 1 files changed, 30 inse

Re: [U-Boot] [PATCH] powerpc/8xxx: Add base support for the SEC4

2010-06-30 Thread Kumar Gala
On Jun 9, 2010, at 11:46 PM, Kumar Gala wrote: > From: Kim Phillips > > Signed-off-by: Kim Phillips > Signed-off-by: Kumar Gala > --- > arch/powerpc/cpu/mpc8xxx/fdt.c|6 + > arch/powerpc/include/asm/config.h |4 ++- > arch/powerpc/include/asm/immap_85xx.h | 38

Re: [U-Boot] [PATCH] powerpc/8xxx: Distinguish between incompatible SEC h/w types

2010-06-30 Thread Kumar Gala
On Jun 9, 2010, at 11:46 PM, Kumar Gala wrote: > From: Kim Phillips > > CONFIG_SYS_FSL_SEC_COMPAT is set to 2 for the SEC 2.x and SEC 3.x. > Parts with newer SEC h/w versions will increment the number to > accomodate incompatible code changes. > > Signed-off-by: Kim Phillips > Signed-off-by:

Re: [U-Boot] [PATCH] fdt: move fsl specific code from common fdt area to mpc8xxx/fdt.c

2010-06-30 Thread Kumar Gala
On Apr 27, 2010, at 12:23 PM, Kim Phillips wrote: > > Signed-off-by: Kim Phillips > --- > unnecessarily introducing mpc83xx-specific conditions in the mpc8xxx > Makefile due to current development logistics is ugly IMHO, but it > sounds like this is what the people want anyway. > > Makefile

Re: [U-Boot] [PATCH V6 02/10] drivers/usb/host/ohci-hcd: undef readl/writel before redefining

2010-06-30 Thread Kumar Gala
On Jun 25, 2010, at 2:52 PM, Remy Bohmer wrote: > Hi Becky, > > 2010/6/17 Becky Bruce : >> This avoids a build warning that you see if anyone in the >> header chain has included io.h (which is coming shortly). I >> also move this to the "ohci.h" header file in the same dir, >> which is cleaner.

[U-Boot] Mettre à niveau votre compte immédiat ement

2010-06-30 Thread WEBMAIL MASTER ONLINE
Ceci est pour vous informer que vous avez dépassé votre quota de courriel limite de 425 Mo et vous avez besoin pour augmenter votre limite de quota de courriel parce que dans moins de 48 heures de votre e-mail sera désactiver. Augmentation votre limite de quota de courriel et de continuer à util

Re: [U-Boot] [PATCH] Fix typo inside atmel_mci driver

2010-06-30 Thread Claudio Mignanti
2010/6/22 Claudio Mignanti : > The function get_mci_clk_rate is used inside atmel_mci driver >  but never defined. Fix this typo. > No comment on this topic. ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot

[U-Boot] [STATUS] U-Boot v2010.06 released - Merge Window OPEN

2010-06-30 Thread Wolfgang Denk
Hello all, U-Boot v2010.06 has been released and is available from the git repository and the FTP server. The "next" branch has been pulled into mainline ("master" branch) and has been removed afterward. The Merge Window for the next release (v2010.09) is open until Sat Jul 17, 2010, 23:59:59 CE

Re: [U-Boot] IRQ in realmode and sleep()

2010-06-30 Thread Wolfgang Denk
Dear Reinhard Arlt, In message <4c2aec16.9080...@t-online.de> you wrote: > > The question is: Is it O.K., that the irq routines run in real mode, > with all your I/O locations are cacheable, for example. I expect to see problems when you enable data cache for I/O; there are many drivers in U-Bo

[U-Boot] [PATCH v3] ppc4xx: Add T3COPR board support (PPC460GT based)

2010-06-30 Thread Stefan Roese
This patch adds support for the T3CORP board, based on the AppliedMicro (APM) PPC460GT. Signed-off-by: Stefan Roese --- v3: - Changed AMCC to APM - Removed unnecessary code for 128MiB flash - Changed spelling: FLASH -> flash v2: - Fixed spelling: fibre -> fiber - Rebased on next, no

Re: [U-Boot] IRQ in realmode and sleep()

2010-06-30 Thread Reinhard Arlt
Hello, Scott Wood wrote: > On Tue, Jun 29, 2010 at 10:03:53AM +0200, Reinhard Arlt wrote: >> Hello, >> >> the data cache is disabled on the CPCI750 board for the SDRAM by the >> DBAT entry for the SDRAM, but the data cache is enabled for most >> 74xx_7xx boards in >> >> cpu/74xx_7xx/start.S togeth