[U-Boot] [PATCH][mpc83xx] Fix SICRL setting in SIMPC8313

2010-05-14 Thread Ron Madrid
This patch sets the SICRL_LBC bits in SICRL to change the function of the associated pins to GPIO functionality. Signed-off-by: Ron Madrid --- include/configs/SIMPC8313.h |3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/include/configs/SIMPC8313.h b/include/configs/SIMP

[U-Boot] [PATCH] nios2: fix div64 issue for gcc4

2010-05-14 Thread Thomas Chou
This patch fixes the run-time error on div64 when built with gcc4, which was reported by jhwu0625 on nios forum. It merges math support from libgcc of gcc4. This patch is copied from nios2-linux. It works with both gcc3 and gcc4. The old mult.c, divmod.c and math.h are removed. Signed-off-by: Tho

[U-Boot] [PATCH] nios2: fix r15 issue for gcc4

2010-05-14 Thread Thomas Chou
The "-ffixed-r15" option doesn't work well for gcc4. Since we don't use gp for small data with option "-G0", we can use gp as global data pointer. This allows compiler to use r15. It is necessary for gcc4 to work properly. Signed-off-by: Thomas Chou --- arch/nios2/config.mk |

[U-Boot] hardware flash protect kept during a reboot?

2010-05-14 Thread Timur Tabi
If I enable CONFIG_SYS_FLASH_PROTECTION and have a support flash chipset, are my protected sectors supposed to remain protected during a reboot? That is, if I protect some flash sector, and then reboot U-Boot, I know U-Boot will not show the sector as being protected, because the info->protect[] a

Re: [U-Boot] [PATCH v2][mpc83xx] Removal of checkboard from spl bootstrap build for SIMPC8313

2010-05-14 Thread Ron Madrid
--- On Fri, 5/14/10, Kim Phillips wrote: > From: Kim Phillips > Subject: Re: [U-Boot] [PATCH v2][mpc83xx] Removal of checkboard from spl > bootstrap build for SIMPC8313 > To: "Ron Madrid" > Cc: u-boot@lists.denx.de > Date: Friday, May 14, 2010, 11:26 AM > On Mon, 10 May 2010 15:23:20 -0700 > R

[U-Boot] flash_real_protect() and CFI_CMDSET_AMD_STANDARD

2010-05-14 Thread Timur Tabi
I'm trying to add support for AMD manufacturer ID to flash_real_protect(). The code currently does this: case CFI_CMDSET_AMD_EXTENDED: case CFI_CMDSET_AMD_STANDARD: /* U-Boot only checks the first byte */ if (info->manufacturer_id == (uchar)ATM_MANUF

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

2010-05-14 Thread Andy Fleming
On Thu, Apr 29, 2010 at 3:26 PM, Steve Sakoman wrote: > 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 > > Tested on Overo > > Signed-off-by: Steve Sakoman Applied, thanks! __

Re: [U-Boot] [PATCH v2][mpc83xx] Removal of checkboard from spl bootstrap build for SIMPC8313

2010-05-14 Thread Kim Phillips
On Mon, 10 May 2010 15:23:20 -0700 Ron Madrid wrote: > This patch removes the checkboard function from the build of the 4k bootstrap > section for the SIMPC8313 as it is not needed in the spl build. This will > allow > 100 bytes of extra room for other uses. > > Signed-off-by: Ron Madrid > ---

Re: [U-Boot] [PATCH 3/5] Davinci Multiblock MMC

2010-05-14 Thread Andy Fleming
On Wed, May 12, 2010 at 4:48 AM, Alagu Sankar wrote: > Multi-block Read/Write support for Davinci.  Uses the new CONFIG_MMC_MBLOCK > feature under Generic MMC framework. > > Signed-off-by: Alagu Sankar You'll have to modify this, as I've gone and eliminated the MBLOCK config option, so now you j

Re: [U-Boot] [PATCH 2/5] Davinci MMCSD Support

2010-05-14 Thread Andy Fleming
On Wed, May 12, 2010 at 4:47 AM, Alagu Sankar wrote: > Added support for MMC/SD cards for Davinci.  This feature is enabled by > CONFIG_DAVINCI_MMC and is dependant on CONFIG_MMC and CONFIG_GENERIC_MMC > options. This is tested on DM355 and DM365 EVMs with both the available mmc > controllers. > >

Re: [U-Boot] [PATCH 3/4] MMC Multi-block Support

2010-05-14 Thread Andy Fleming
On Wed, May 12, 2010 at 4:38 AM, Alagu Sankar wrote: > Added Multi-Block Read support for Generic MMC. Modified existing multi-block > write to limit the maximum number of blocks per transfer.  This feature is > enabled with CONFIG_MMC_MBLOCK option.  A new member is added in the mmc > structure f

Re: [U-Boot] [PATCH 2/4] MMC Card Capacity Bug Fix

2010-05-14 Thread Andy Fleming
On Wed, May 12, 2010 at 4:38 AM, Alagu Sankar wrote: > Fixed a bug in card capacity calculation for MMC high-capacity cards. > > Signed-off-by: Alagu Sankar Applied, thanks! ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/list

Re: [U-Boot] [PATCH 1/4] SD1.00 wide-bus fix

2010-05-14 Thread Andy Fleming
On Wed, May 12, 2010 at 4:38 AM, Alagu Sankar wrote: > Fixed a bug wherein SD version 1.0 cards were not configured for 4-bit mode > > Signed-off-by: Alagu Sankar Applied, thanks! ___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailma

Re: [U-Boot] standalone hello_world example crashes on PowerPC

2010-05-14 Thread Wolfgang Denk
Dear Timur Tabi, In message <4bed4c83.10...@freescale.com> you wrote: > Wolfgang Denk wrote: > > Did you verify the entry point address as described in the FAQ? > > Thanks, that was the problem. The entry point moved: > > 0004 T hello_world > > I suggest that you update the U-Boot Manual (

Re: [U-Boot] standalone hello_world example crashes on PowerPC

2010-05-14 Thread Timur Tabi
Wolfgang Denk wrote: > Did you verify the entry point address as described in the FAQ? Thanks, that was the problem. The entry point moved: 0004 T hello_world I suggest that you update the U-Boot Manual (specifically http://www.denx.de/wiki/DULG/UBootStandalone) to tell people to always us

Re: [U-Boot] [PATCH 4/4] Environment in MMC

2010-05-14 Thread Alagu Sankar
Stefano Babic wrote: > Alagu Sankar wrote: > > >>> >>> >> When I searched for the Environment support in MMC, I came across >> Terry's earlier patches, but they were not cleanly getting applied to >> the current tree. >> > > I have tried to apply again last Terry's patch, I see on

Re: [U-Boot] [PATCH 4/4] Environment in MMC

2010-05-14 Thread Stefano Babic
Alagu Sankar wrote: >> > When I searched for the Environment support in MMC, I came across > Terry's earlier patches, but they were not cleanly getting applied to > the current tree. I have tried to apply again last Terry's patch, I see only a couple of coding-style problems, no errors at all:

Re: [U-Boot] [PATCH 4/4] Environment in MMC

2010-05-14 Thread Alagu Sankar
Stefano Babic wrote: > Sudhakar Rajashekhara wrote: > >> Hi Alagu, >> >> > Hi, > > >> On Wed, May 12, 2010 at 15:08:27, Alagu Sankar wrote: >> >>> This patch is to save environment data to mmc card. It uses interfaces >>> defined >>> in generic MMC framework. This is enabled with

Re: [U-Boot] [PATCH 4/4] Environment in MMC

2010-05-14 Thread Stefano Babic
Sudhakar Rajashekhara wrote: > Hi Alagu, > Hi, > On Wed, May 12, 2010 at 15:08:27, Alagu Sankar wrote: >> This patch is to save environment data to mmc card. It uses interfaces >> defined >> in generic MMC framework. This is enabled with CONFIG_ENV_IS_IN_MMC option. >> Based on the earlier patc

Re: [U-Boot] [PATCH 4/4] Environment in MMC

2010-05-14 Thread Wolfgang Denk
Dear "Sudhakar Rajashekhara", In message <014f01caf33f$17c731a0$475594...@raj@ti.com> you wrote: > > > --- /dev/null > > +++ b/common/env_mmc.c > > @@ -0,0 +1,168 @@ > > +/* > > + * (C) Copyright 2008-2009 Freescale Semiconductor, Inc. > > + * (C) Copyright 2000-2006 > > + * Wolfgang Denk, DENX S

[U-Boot] Your E-mail just won £850,000 British P ounds in our on-going Google Promo!

2010-05-14 Thread Mrs. Helene
-- YOUR DETAILS ARE: Ticket #: 00869575733664., E-mail ID Code :65332., Payment : Category A. Participants for this promo were randomly selected from worldwide range of web searchers who uses Google search engine(Googler) and other Google ancillary services. For payment, write to Mr. Grahams Ben

Re: [U-Boot] [PATCH v3 19/19] SPEAr : USB device controller bugfixes

2010-05-14 Thread Remy Bohmer
Hi, 2010/5/6 Vipin KUMAR : > 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 abov

Re: [U-Boot] [PATCH v3 14/19] SPEAr : USB Device Controller driver support added

2010-05-14 Thread Remy Bohmer
Hi, 2010/5/6 Vipin KUMAR : > 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 > --- >  driver

Re: [U-Boot] [PATCH 4/4] Environment in MMC

2010-05-14 Thread Sudhakar Rajashekhara
Hi Alagu, On Wed, May 12, 2010 at 15:08:27, Alagu Sankar wrote: > This patch is to save environment data to mmc card. It uses interfaces defined > in generic MMC framework. This is enabled with CONFIG_ENV_IS_IN_MMC option. > Based on the earlier patch from Terry Lv at Freescale > > Signed-off-by

Re: [U-Boot] [PATCH 2/4] MMC Card Capacity Bug Fix

2010-05-14 Thread Sudhakar Rajashekhara
Hi Alagu, On Wed, May 12, 2010 at 15:08:25, Alagu Sankar wrote: > Fixed a bug in card capacity calculation for MMC high-capacity cards. > > Signed-off-by: Alagu Sankar > --- > drivers/mmc/mmc.c |9 - > 1 files changed, 8 insertions(+), 1 deletions(-) > > diff --git a/drivers/mmc/mm