[U-Boot] SPI - cs validity

2011-04-05 Thread Ran Shalit
Hello, I am trying to understand the logic behind the implementation of SPI interface, and came across a validity routine (for different baords it is about the same): for Atmel and Davinci for example: int spi_cs_is_valid(unsigned int bus, unsigned int cs) { return bus == 0 && cs == 0; } Altho

Re: [U-Boot] [PATCH] powerpc/qoriq: Update USB mode device tree fixup

2011-04-05 Thread Wolfgang Denk
Dear Ramneek Mehresh, In message <1300789256-14487-1-git-send-email-ramneek.mehr...@freescale.com> you wrote: > Modify support for USB mode fixup: > - Add support for fetching USB mode and phy type > via hwconfig > - Add common support for USB mode and phy type > devic

Re: [U-Boot] [PATCH] powerpc/qoriq: Update USB mode device tree fixup

2011-04-05 Thread Kumar Gala
On Mar 22, 2011, at 5:20 AM, Ramneek Mehresh wrote: > Modify support for USB mode fixup: > - Add support for fetching USB mode and phy type > via hwconfig > - Add common support for USB mode and phy type > device tree fix-up for all USB controllers > mentioned

Re: [U-Boot] [RFC] mpc83xx: add config options to spd_sdram

2011-04-05 Thread York Sun
On Tue, 2011-04-05 at 16:52 -0500, Kim Phillips wrote: > On Tue, 5 Apr 2011 11:49:49 +0200 > Andre Schwarz wrote: > > Cc'ing York Sun, who knows a little more about this stuff than I do. > > > I have made some mods to spd_sdram.c for various reason: > > > > 1. > > use SPD setup also for soldere

[U-Boot] [PATCH v2 5/6] phylib: Add a bunch of PHY drivers from tsec

2011-04-05 Thread Andy Fleming
The tsec driver had a bunch of PHY drivers already written. This converts them all into PHY Lib drivers, and serves as the first set of PHY drivers for PHY Lib. While doing that, cleaned up a number of magic numbers (though not all of them, as PHY vendors like to keep their numbers as magical as p

[U-Boot] [PATCH v2 2/6] tsec: arrange the code to avoid useless function declaration

2011-04-05 Thread Andy Fleming
From: Mingkai Hu This is merely a rearrangement. No changes to the code, except to remove now-useless declarations. Signed-off-by: Mingkai Hu Acked-by: Andy Fleming Signed-off-by: Kumar Gala --- Added clarification to the commit message drivers/net/tsec.c | 861 +--

[U-Boot] [PATCH v2 0/6] Universal PHY Infrastructure

2011-04-05 Thread Andy Fleming
Or PHY Lib for U-Boot. This sequence of patches adds infrastructure for universally-available PHY drivers (and MDIO drivers). It piggy-backs on the existing miiphy code, for backwards compatibility, but it also creates a new set of APIs. This was necessary partly to provide cleaner interfaces for

[U-Boot] [PATCH v2 1/6] tsec: use IO accessors for IO accesses

2011-04-05 Thread Andy Fleming
From: Mingkai Hu Signed-off-by: Mingkai Hu Acked-by: Andy Fleming Signed-off-by: Kumar Gala --- Fixed the commit message's spelling drivers/net/tsec.c | 242 +++- include/tsec.h |8 +- 2 files changed, 130 insertions(+), 120 deletions(

[U-Boot] [PATCH v2 3/6] Remove instances of phy_read/write

2011-04-05 Thread Andy Fleming
There were a few files which were already using phy_read and phy_write for their PHY function names. It's only a few places, and the name seems most appropriate for the high-level abstraction, so let's rename the other versions to something more specific. Also, uec_phy.c had a marvell_init functi

Re: [U-Boot] [RFC] mpc83xx: add config options to spd_sdram

2011-04-05 Thread Kim Phillips
On Tue, 5 Apr 2011 11:49:49 +0200 Andre Schwarz wrote: Cc'ing York Sun, who knows a little more about this stuff than I do. > I have made some mods to spd_sdram.c for various reason: > > 1. > use SPD setup also for soldered RAM. > This allows DDR mounting options without U-Boot change because S

[U-Boot] [PATCH] arm: Tegra2: Fix out of tree builds

2011-04-05 Thread Anton Staaf
Create the board/nvidia/common directory in the out of tree build directory. Without this patch building out of tree results in a failure to create the board.o file in the build directory tree. Signed-off-by: Anton Staaf Cc: Tom Warren Cc: Albert ARIBAUD --- An alternative solution would be t

Re: [U-Boot] Where can i get this patch ??

2011-04-05 Thread Wolfgang Denk
Dear ravi@rflelect.com, In message you wrote: > >Can any of you please let me know where can I get this patch. > [U-Boot] [PATCH] Marvell 88E Switch/PHY init support Why did you not try the mailing ist archives? Say, for example, http://thread.gmane.org/gmane.comp.boot-loaders.u-b

[U-Boot] [PATCH] Add flexbus support for Freescale Coldfire 5235

2011-04-05 Thread Jate Sujjavanich
Add flexbus support for Freescale Coldfire 5235 Signed-off-by Jate Sujjavanich --- u-boot-denx/arch/m68k/include/asm/coldfire/flexbus.h2011-03-02 11:02:14.0 -0500 +++ u-boot/include/asm-m68k/coldfire/flexbus.h 2011-03-25 11:42:46.0 -0400 @@ -94,6 +94,12 @@ #endif #def

[U-Boot] Where can i get this patch ??

2011-04-05 Thread ravi . rao
Hi All, Can any of you please let me know where can I get this patch. [U-Boot] [PATCH] Marvell 88E Switch/PHY init support Also why is this not yet part of main release ?? Thanks, Ravi___ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.d

[U-Boot] [PATCH v1 1/2] powerpc/85xx: rename NAND prefixes to CONFIG_SYS

2011-04-05 Thread Matthew McClintock
renaming 85xx define CONFIG_NAND_OR_PRELIM to CONFIG_SYS_NAND_OR_PRELIM and CONFIG_NAND_BR_PRELIM to CONFIG_SYS_NAND_BR_PRELIM to use the more appropriate CONFIG_SYS prefix as well as be consistent with 83xx Signed-off-by: Matthew McClintock cc: Scott Wood cc: Kumar Gala --- arch/powerpc/cpu/m

[U-Boot] [PATCH v1 2/2] nand/spl: Assuming a static nand page size to reduce code size

2011-04-05 Thread Matthew McClintock
Change variables to const to reduce code size, these values are hardcoded via defines anyways so we might as well assume they are constants Signed-off-by: Matthew McClintock cc: Scott Wood --- With this change we can reduce the size of the nand_spl by 148 bytes with my particular board/compiler

Re: [U-Boot] [PATCH] nand/spl: Assuming a static nand page size to reduce code size

2011-04-05 Thread Scott Wood
On Tue, 5 Apr 2011 14:00:23 -0500 McClintock Matthew-B29882 wrote: > On Tue, Apr 5, 2011 at 1:48 PM, Scott Wood wrote: > > When building for MPC8315ERDB_NAND, I get: > > > > nand_boot_fsl_elbc.c: In function 'nand_load': > > nand_boot_fsl_elbc.c:54:20: error: 'CONFIG_NAND_OR_PRELIM' undeclared

Re: [U-Boot] [PATCH] nand/spl: Assuming a static nand page size to reduce code size

2011-04-05 Thread McClintock Matthew-B29882
On Tue, Apr 5, 2011 at 1:48 PM, Scott Wood wrote: > When building for MPC8315ERDB_NAND, I get: > > nand_boot_fsl_elbc.c: In function 'nand_load': > nand_boot_fsl_elbc.c:54:20: error: 'CONFIG_NAND_OR_PRELIM' undeclared (first > use in this function) > nand_boot_fsl_elbc.c:54:20: note: each undecla

Re: [U-Boot] [PATCH] nand/spl: Assuming a static nand page size to reduce code size

2011-04-05 Thread Scott Wood
On Tue, Apr 05, 2011 at 10:30:45AM -0500, Matthew McClintock wrote: > Change variables to const to reduce code size, these values are > hardcoded via defines anyways so we might as well assume they > are constants > > Signed-off-by: Matthew McClintock > cc: Scott Wood > --- > With this change we

Re: [U-Boot] [PATCH] powerpc/85xx: Add P1021 specific QE and UEC support

2011-04-05 Thread Kumar Gala
On Mar 6, 2011, at 10:17 PM, Kumar Gala wrote: > From: Haiying Wang > > P1021 has some QE pins which need to be set in pmuxcr register before > using QE functions. In this patch, pin QE0 and QE3 are set for UCC1 and > UCC5 in Eth mode. QE9 and QE12 are set for MII management. QE12 needs to > b

Re: [U-Boot] [PATCH] powerpc/85xx: Add some defines & registers in immap_85xx.h

2011-04-05 Thread Kumar Gala
On Mar 6, 2011, at 10:17 PM, Kumar Gala wrote: > From: Zhao Chenhui > > * Added SDHCDCR register to GUR struct > * Added SDHCDCR_CD_INV define related to SDHCDCR > * Added Pin Muxing define related to TDM on P102x > > Signed-off-by: Zhao Chenhui > Signed-off-by: Kumar Gala > --- > arch/power

Re: [U-Boot] [PATCH] powerpc/85xx: don't init SDRAM when CONFIG_SYS_RAMBOOT

2011-04-05 Thread Kumar Gala
On Mar 6, 2011, at 10:17 PM, Kumar Gala wrote: > From: Zhao Chenhui > > Signed-off-by: Zhao Chenhui > Acked-by: Li Yang > Signed-off-by: Kumar Gala > --- > arch/powerpc/cpu/mpc85xx/cpu.c | 11 +++ > arch/powerpc/include/asm/fsl_ddr_sdram.h |1 + > 2 files changed, 12 in

Re: [U-Boot] [PATCH] nand_spl: Fix large page nand_command()

2011-04-05 Thread Scott Wood
On Tue, Apr 05, 2011 at 10:41:00AM -0400, Alex wrote: > From: Alex Waterman > Date: Tue, 5 Apr 2011 10:32:38 -0400 > Subject: [PATCH] nand_spl: Fix large page nand_command() > > The large page nand_command() function addresses all chips by byte offset; > when using a 16 bit chip the NAND_CMD_READ

Re: [U-Boot] CONFIG_SILENT_CONSOLE not working with NAND env

2011-04-05 Thread Scott Wood
On Tue, 5 Apr 2011 17:07:13 +0100 Nick Thompson wrote: > On 05/04/11 16:52, Mike Frysinger wrote: > > On Tue, Apr 5, 2011 at 10:07 AM, Nick Thompson wrote: > >> common/console.c has this function: > >> > >> /* Called before relocation - use serial functions */ > >> int console_init_f(void) > >> {

Re: [U-Boot] [PATCH v3 4/4] ARMV7: OMAP3: Add support for Comelit DIG297 board

2011-04-05 Thread Albert ARIBAUD
Hi Luca, Le 29/03/2011 18:28, Luca Ceresoli a écrit : > diff --git a/MAKEALL b/MAKEALL > index a732e6a..3e28e64 100755 > --- a/MAKEALL > +++ b/MAKEALL > @@ -425,6 +425,7 @@ LIST_ARMV7=" \ > igep0030\ > mx51evk \ > omap3_beagle

[U-Boot] [PATCH v5] common: add a grepenv command

2011-04-05 Thread Kim Phillips
u-boot environments, esp. when boards are shared across multiple users, can get pretty large and time consuming to visually parse. The grepenv command this patch adds can be used in lieu of printenv to facilitate searching. grepenv works like printenv but limits its output only to environment stri

[U-Boot] [PATCH v2] lib/hashtable: fix env var autocompletion

2011-04-05 Thread Kim Phillips
commit c81c1222427f268d29ba999c82e2477c428e7bab "Fix hash table deletion to prevent lost entries" broke environment variable autocompletion by accidentally inverting the condition for 'used' in hmatch_r(). 'used' is 0 if the hash table entry is not used, or -1 if deleted. This patch makes hmatch_r

Re: [U-Boot] [GIT PULL] Pull request: u-boot-imx

2011-04-05 Thread Albert ARIBAUD
Hi Stefano, Le 05/04/2011 15:29, Stefano Babic a écrit : > Hi Albert, > > The following changes since commit 67a490d60d70f2b01d55976440ba30154af96965: > >atmel_nand: don't require CONFIG_SYS_NAND_ENABLE_PIN (2011-04-01 > 14:49:08 -0500) > > are available in the git repository at: >git://ww

Re: [U-Boot] CONFIG_SILENT_CONSOLE not working with NAND env

2011-04-05 Thread Nick Thompson
On 05/04/11 16:52, Mike Frysinger wrote: > On Tue, Apr 5, 2011 at 10:07 AM, Nick Thompson wrote: >> common/console.c has this function: >> >> /* Called before relocation - use serial functions */ >> int console_init_f(void) >> { >>gd->have_console = 1; >> >> #ifdef CONFIG_SILENT_CONSOLE >>

Re: [U-Boot] CONFIG_SILENT_CONSOLE not working with NAND env

2011-04-05 Thread Mike Frysinger
On Tue, Apr 5, 2011 at 10:07 AM, Nick Thompson wrote: > common/console.c has this function: > > /* Called before relocation - use serial functions */ > int console_init_f(void) > { >        gd->have_console = 1; > > #ifdef CONFIG_SILENT_CONSOLE >        if (getenv("silent") != NULL) >              

Re: [U-Boot] [PATCH v4] common: add a grepenv command

2011-04-05 Thread Mike Frysinger
On Tue, Apr 5, 2011 at 11:00 AM, Peter Tyser wrote: >> +#ifdef CONFIG_CMD_GREPENV >> +static int do_env_grep (cmd_tbl_t *cmdtp, int flag, int argc, char * const >> argv[]) >> +{ >> +     ENTRY *match; >> +     int matched[env_htab.size]; >> +     int rcode = 1, idx; >> + >> +     if (argc < 2) { >

[U-Boot] [PATCH] nand/spl: Assuming a static nand page size to reduce code size

2011-04-05 Thread Matthew McClintock
Change variables to const to reduce code size, these values are hardcoded via defines anyways so we might as well assume they are constants Signed-off-by: Matthew McClintock cc: Scott Wood --- With this change we can reduce the size of the nand_spl by 148 bytes with my particular board/compiler

Re: [U-Boot] [PATCH v4] common: add a grepenv command

2011-04-05 Thread Peter Tyser
Hi Kim, > +#ifdef CONFIG_CMD_GREPENV > +static int do_env_grep (cmd_tbl_t *cmdtp, int flag, int argc, char * const > argv[]) > +{ > + ENTRY *match; > + int matched[env_htab.size]; > + int rcode = 1, idx; > + > + if (argc < 2) { > + cmd_usage(cmdtp); > + ret

[U-Boot] [PATCH] nand_spl: Fix large page nand_command()

2011-04-05 Thread Alex
From: Alex Waterman Date: Tue, 5 Apr 2011 10:32:38 -0400 Subject: [PATCH] nand_spl: Fix large page nand_command() The large page nand_command() function addresses all chips by byte offset; when using a 16 bit chip the NAND_CMD_READOOB emulation would then address the OOB as though it were a byte

Re: [U-Boot] Please pull u-boot-mpc85xx.git

2011-04-05 Thread Jerry Van Baren
On 04/04/2011 03:42 PM, Wolfgang Denk wrote: > Dear Kumar Gala, > > In message<16cf6cad-477c-4e04-93e0-1dadcf05c...@kernel.crashing.org> you > wrote: [snip] > Timur: does this fix any real problem? > >>> powerpc/85xx: introduce 'fdt verify' command >> >> I'm wondering if its better to just set

Re: [U-Boot] Uboot - USB to Ethernet patch

2011-04-05 Thread rick
Hi Scott, In order to use the USB-Ethernet in u-boot, what do we need to set ethact to? I would be great if you could show an example. Of all the device below, which ones have actually been tested and known to work? { 0x05ac, 0x1402 }, /* Apple USB Ethernet Adapter */ {

[U-Boot] CONFIG_SILENT_CONSOLE not working with NAND env

2011-04-05 Thread Nick Thompson
common/console.c has this function: /* Called before relocation - use serial functions */ int console_init_f(void) { gd->have_console = 1; #ifdef CONFIG_SILENT_CONSOLE if (getenv("silent") != NULL) gd->flags |= GD_FLG_SILENT; #endif return 0; } I have def

Re: [U-Boot] arm imx35 timer failure

2011-04-05 Thread Stefano Babic
On 03/29/2011 04:24 PM, Laurent Joye wrote: > Hello, > I'm developing a product based on the imx35 cpu with NOR and NAND flash. > The SBC I use is the pcm-043 from Phytec. > I use the FEC to communicate over the ethernet. Hi Laurent, > It seems that the return value of the "get_timer_masked" func

Re: [U-Boot] [PATCH 2/6] Default to bootm_size() when CONFIG_SYS_BOOTMAPSZ is not defined

2011-04-05 Thread Jerry Van Baren
Hi Grant, On 03/28/2011 03:58 PM, Grant Likely wrote: > From: Grant Likely > > This patch adds a function getenv_bootm_mapsize() for obtaining the > size of the early mapped region accessible by the kernel during early > boot. It defaults to CONFIG_SYS_BOOTMAPSZ, or if not defined, > defaults to

Re: [U-Boot] [PATCHv2] fdt_support: Fix buffer overflow in fdt_fixup_memory_banks

2011-04-05 Thread Jerry Van Baren
On 02/23/2011 11:18 AM, Kyle Moffett wrote: > When fdt_fixup_memory_banks is called with 2-cell address and size > fields in the device-tree (IE: 64-bit address and size), then it will > overflow its on-stack "tmp" buffer. > > This fixes the buffer size and adds a comment explaining how many bytes

[U-Boot] [GIT PULL] Pull request: u-boot-imx

2011-04-05 Thread Stefano Babic
Hi Albert, The following changes since commit 67a490d60d70f2b01d55976440ba30154af96965: atmel_nand: don't require CONFIG_SYS_NAND_ENABLE_PIN (2011-04-01 14:49:08 -0500) are available in the git repository at: git://www.denx.de/git/u-boot-imx.git master Fabio Estevam (1): mx25: Make th

Re: [U-Boot] [PATCH 1/6] Stop passing around bootmem_base value.

2011-04-05 Thread Jerry Van Baren
Hi Grant, On 03/28/2011 03:58 PM, Grant Likely wrote: > From: Grant Likely > > For the calls to boot_relocate_fdt(), boot_get_cmdline(), and > boot_get_kbd(), the value of bootmem_base is always obtained by > calling getenv_bootm_low(). Since the value always comes from the > same source, the cal

[U-Boot] Ein Job mit Nebenbeschaftigung fur alle!

2011-04-05 Thread lillyland
Sie sind auf der Suche nach der Moglichkeit von zu Hause aus arbeiten zu konnen? Sie mochten am PC Ihr Geld verdienen? Online Burotatigkeit im eigenen Home Office! Hierbei handelt es sich um einen selbststandigen Job, den Sie von zu Hause online am PC oder jedem anderen Ort mit Internetzugang

Re: [U-Boot] [PATCH] [v4] powerpc: clean up DIU macro definitions for Freescale reference boards

2011-04-05 Thread Tabi Timur-B04825
Wolfgang Denk wrote: > Software cursor support should be split off into a separate patch. > And CONFIG_VIDEO_SW_CURSOR needs to be documented. That feature is already in U-Boot. All I'm doing is adding a #define CONFIG_VIDEO_SW_CURSOR to the header file. I thought it was already documented som

Re: [U-Boot] [PATCH] [v4] powerpc: clean up DIU macro definitions for Freescale reference boards

2011-04-05 Thread Wolfgang Denk
Dear Timur Tabi, In message <1297811359-28389-1-git-send-email-ti...@freescale.com> you wrote: > Clean up the macro defintions used to enable DIU (video) support on the > MPC8610HPCD and the MPC5121ADS so that they look more like the P1022DS, > which is newer. Add software cursor support to all t

Re: [U-Boot] [PATCH] [v4] powerpc: clean up DIU macro definitions for Freescale reference boards

2011-04-05 Thread Wolfgang Denk
Dear Kumar Gala, In message you wrote: > > >> Please ACK based on previous comments. > > > > Why me? > > I was only looking for ACK because of your feedback on the patch. I > like to assume any case that has significant feedback its reasonable for > the main feedback giver to ack at some poin

Re: [U-Boot] Please pull u-boot-mpc85xx.git

2011-04-05 Thread Wolfgang Denk
Dear Kumar Gala, In message you wrote: > The following changes since commit 19b54a701811220221fc4d5089a2bb18892018ca: > > Prepare v2011.03 (2011-03-31 23:45:36 +0200) > > are available in the git repository at: > git://git.denx.de/u-boot-mpc85xx.git master Pulling fails with a merge conf

Re: [U-Boot] [GIT PULL] MIPS patches

2011-04-05 Thread Wolfgang Denk
Dear Shinya Kuribayashi, In message <4d9722bb.2090...@pobox.com> you wrote: > Hi, > > Please pull the MIPS updates, thanks in advance. > > --- 8< --- > The following changes since commit 67a490d60d70f2b01d55976440ba30154af96965: > > atmel_nand: don't require CONFIG_SYS_NAND_ENABLE_PIN (2011-0

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

2011-04-05 Thread Wolfgang Denk
Dear Remy Bohmer, In message you wrote: > The following changes since commit 67a490d60d70f2b01d55976440ba30154af96965= > : > > atmel_nand: don't require CONFIG_SYS_NAND_ENABLE_PIN (2011-04-01 > 14:49:08 -0500) > > are available in the git repository at: > git://git.denx.de/u-boot-usb.git ma

[U-Boot] [RFC] mpc83xx: add config options to spd_sdram

2011-04-05 Thread Andre Schwarz
Kim, I have made some mods to spd_sdram.c for various reason: 1. use SPD setup also for soldered RAM. This allows DDR mounting options without U-Boot change because SPD data is written during in-circuit/boundary-scan testing. 2. read SPD data also from extended adressing EEPROMS used for e.g. HR

[U-Boot] [PATCH 7/9] OMAP3: CM-T35: remove redundand i2c initialization

2011-04-05 Thread Igor Grinberg
Signed-off-by: Igor Grinberg --- board/cm_t35/cm_t35.c |6 +- 1 files changed, 1 insertions(+), 5 deletions(-) diff --git a/board/cm_t35/cm_t35.c b/board/cm_t35/cm_t35.c index 23efacc..bf54061 100644 --- a/board/cm_t35/cm_t35.c +++ b/board/cm_t35/cm_t35.c @@ -90,14 +90,10 @@ int board_i

[U-Boot] [PATCH 8/9] OMAP3: CM-T35: enable the green LED

2011-04-05 Thread Igor Grinberg
Signed-off-by: Igor Grinberg --- board/cm_t35/Makefile|2 +- board/cm_t35/cm_t35.c|7 ++- board/cm_t35/leds.c | 45 + include/configs/cm_t35.h | 15 +++ 4 files changed, 67 insertions(+), 2 deletions(-) create

[U-Boot] [PATCH 2/9] OMAP3: CM-T35: update config

2011-04-05 Thread Igor Grinberg
Signed-off-by: Igor Grinberg --- include/configs/cm_t35.h |5 - 1 files changed, 4 insertions(+), 1 deletions(-) diff --git a/include/configs/cm_t35.h b/include/configs/cm_t35.h index 510c6d4..ec6a1a3 100644 --- a/include/configs/cm_t35.h +++ b/include/configs/cm_t35.h @@ -244,10 +244,1

[U-Boot] [PATCH 3/9] OMAP3: CM-T35: update board files header information

2011-04-05 Thread Igor Grinberg
Signed-off-by: Igor Grinberg --- board/cm_t35/cm_t35.c|8 include/configs/cm_t35.h |6 +++--- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/board/cm_t35/cm_t35.c b/board/cm_t35/cm_t35.c index 2eb9dac..5c8d569 100644 --- a/board/cm_t35/cm_t35.c +++ b/board/cm

[U-Boot] [PATCH 1/9] OMAP3: CM-T35: Move DECLARE_GLOBAL_DATA_PTR to file scope

2011-04-05 Thread Igor Grinberg
Signed-off-by: Igor Grinberg --- board/cm_t35/cm_t35.c |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/board/cm_t35/cm_t35.c b/board/cm_t35/cm_t35.c index 459df0b..2eb9dac 100644 --- a/board/cm_t35/cm_t35.c +++ b/board/cm_t35/cm_t35.c @@ -41,6 +41,8 @@ #include #in

[U-Boot] [PATCH 4/9] OMAP3: CM-T35: update MAINTAINERS file

2011-04-05 Thread Igor Grinberg
Signed-off-by: Igor Grinberg Acked-by: Mike Rapoport --- MAINTAINERS |8 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/MAINTAINERS b/MAINTAINERS index 4756f14..bcd0fc9 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -646,6 +646,10 @@ Marius Gr impa7

[U-Boot] [PATCH 6/9] OMAP3: CM-T35: fix mmc

2011-04-05 Thread Igor Grinberg
Use CONFIG_OMAP3_MMC in cm-t35 configuration file. Signed-off-by: Igor Grinberg --- board/cm_t35/cm_t35.c|7 --- include/configs/cm_t35.h |3 +-- 2 files changed, 1 insertions(+), 9 deletions(-) diff --git a/board/cm_t35/cm_t35.c b/board/cm_t35/cm_t35.c index 3b6f7ef..23efacc 10

[U-Boot] [PATCH 5/9] OMAP3: CM-T35: add MMC1 pinmux

2011-04-05 Thread Igor Grinberg
Signed-off-by: Igor Grinberg --- board/cm_t35/cm_t35.c | 12 1 files changed, 12 insertions(+), 0 deletions(-) diff --git a/board/cm_t35/cm_t35.c b/board/cm_t35/cm_t35.c index 5c8d569..3b6f7ef 100644 --- a/board/cm_t35/cm_t35.c +++ b/board/cm_t35/cm_t35.c @@ -258,6 +258,18 @@ voi

[U-Boot] [PATCH 0/9] Update support for CM-T35

2011-04-05 Thread Igor Grinberg
This patch serie s based on the latest U-Boot release (v2011.03) and updates support for Compulab CM-T35 board: 1) Some clean up 2) MMC/SD Card fix 3) Add Green Status LED 4) Add support for CM-T3730 which is basically the same board, but has TI's DM3730 SoC and therefore some changes are requir

[U-Boot] [PATCH 9/9] OMAP3: CM-T35: Add support for CM-T3730

2011-04-05 Thread Igor Grinberg
CM-T3730 is exactly the same board as CM-T35, but it has TI DM3730 SoC onboard and therefore some changes have to take place Signed-off-by: Igor Grinberg --- board/cm_t35/cm_t35.c| 78 ++--- include/configs/cm_t35.h | 12 +++--- 2 files changed, 65

[U-Boot] [PATCH V8 6/6] I2C: add i2c support for Armada100 platform

2011-04-05 Thread Lei Wen
Add i2c support to aspenite board with Armada100 soc. Signed-off-by: Lei Wen --- Changelog: V2: NO CHANGE V3: clean code style issue V4: V5: NO CHANGE V6: Move the CONFIG_CMD_I2C define place V7: Make global change from PXA to MV move i2c setting to V8: NO CHANGE arch/arm/cpu/arm926ejs/ar

[U-Boot] [PATCH V8 5/6] I2C: mv_i2c: add multi bus support

2011-04-05 Thread Lei Wen
Add the ability to support multiple i2c bus for mv_i2c Signed-off-by: Lei Wen --- Changelog: V2: NO CHANGE V3: clean code style issue V4: V5: V6: NO CHANGE V7: Make global change from PXA to MV V8: NO CHANGE drivers/i2c/mv_i2c.c | 36 +++- 1 files changed,

[U-Boot] [PATCH V8 3/6] mv_i2c: use structure to replace the direclty define

2011-04-05 Thread Lei Wen
Add i2c_clk_enable in the cpu specific code, since previous platform it, while new platform don't need. In the pantheon and armada100 platform, this function is defined as NULL one. Signed-off-by: Lei Wen --- Changelog: V2: NO CHANGE V3: clean code sytle issue V4: V5: V6: NO CHANGE V7: Fix com

[U-Boot] [PATCH V8 4/6] I2C: add i2c support for Pantheon platform

2011-04-05 Thread Lei Wen
Add i2c support to dkb board with pantheon soc. Signed-off-by: Lei Wen --- Changelog: V2: NO CHANGE V3: clean code sytle issue Add i2c clock enable code include in I2C configure define block V4: make i2c definition included in the ifdef V5: NO CHANGE V6: Move the CONFIG_CMD_I2C define place

[U-Boot] [PATCH V8 2/6] mv_i2c: fix timeout value to be consistent with comments

2011-04-05 Thread Lei Wen
The original 1 value would be 100ms, which is not the comments said. Signed-off-by: Lei Wen --- V2: V3: V4: V5: V6: V7: NO CHANGE V8: seperate timeout fix patch out drivers/i2c/mv_i2c.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/drivers/i2c/mv_i2c.c b/drivers

[U-Boot] [PATCH V8 1/6] pxa: move i2c driver to the common place

2011-04-05 Thread Lei Wen
For better sharing with other platform other than pxa's, it is more convenient to put the driver to the common place. Signed-off-by: Lei Wen --- Changelog: v2: rename previous pxa_i2c to mvi2c. V3: change previous name from pxa_i2c to mv_i2c clean code style issue exist in original code V4:

[U-Boot] [PATCH V8 0/6] add i2c support to pantheon and aramada100

2011-04-05 Thread Lei Wen
V2: rename the previous pxa_i2c to mvi2c, since this driver would be shared by many other Marvell platforms. V3: Clean the code sytle issue V4: add and* and or* to make set bit operation generic Also make i2c definition included in the ifdef V5: Fix code style issue of the first patch V6: Sepe

Re: [U-Boot] [PATCH v3 0/4] Add DIG297 board and OMAP3 fixes

2011-04-05 Thread Luca Ceresoli
Dear custodians, Luca Ceresoli wrote: > Hi all, > here's a resubmit of the DIG297 board support with minor OMAP3 fixes. Sorry for the newbie question, but I didn't find the answer in the docs. Now that the Merge Window is open, do I have to rebase these patches on top of v2011.03 and resubmit th

Re: [U-Boot] Please pull u-boot-mpc85xx.git

2011-04-05 Thread Fabian Cenedese
At 09:14 04.04.2011 -0500, you wrote: >The following changes since commit 19b54a701811220221fc4d5089a2bb18892018ca: > > Prepare v2011.03 (2011-03-31 23:45:36 +0200) > >are available in the git repository at: > git://git.denx.de/u-boot-mpc85xx.git master May I also ask about this patch? Removed