[U-Boot] [PATCH V2 6/6] edminiv2: add ethernet support

2010-07-08 Thread Albert Aribaud
Signed-off-by: Albert Aribaud --- board/LaCie/edminiv2/edminiv2.c | 36 ++ board/LaCie/edminiv2/edminiv2.h | 41 +++ include/configs/edminiv2.h | 22 +++- 3 files changed, 93 insertions(+), 6 deletions

[U-Boot] [PATCH V2 5/6] mv_egiga: add support for orion5x egiga controller

2010-07-08 Thread Albert Aribaud
Signed-off-by: Albert Aribaud --- arch/arm/cpu/arm926ejs/orion5x/cpu.c|8 arch/arm/include/asm/arch-orion5x/orion5x.h |5 + drivers/net/mv_egiga.c |2 ++ 3 files changed, 15 insertions(+), 0 deletions(-) diff --git a/arch/arm/cpu/arm926ejs/o

[U-Boot] [PATCH V2 2/6] mv_egiga: support SoCs other than kirkwood

2010-07-08 Thread Albert Aribaud
Signed-off-by: Albert Aribaud --- arch/arm/cpu/arm926ejs/kirkwood/cpu.c |4 +- arch/arm/include/asm/arch-kirkwood/kirkwood.h |5 + drivers/net/Makefile |2 +- drivers/net/mv_egiga.c| 322 +- drivers/net/mv_egig

[U-Boot] [PATCH V2 4/6] mv_egiga: only randomize MAC on kirkwood

2010-07-08 Thread Albert Aribaud
Signed-off-by: Albert Aribaud --- drivers/net/mv_egiga.c | 10 +- 1 files changed, 9 insertions(+), 1 deletions(-) diff --git a/drivers/net/mv_egiga.c b/drivers/net/mv_egiga.c index 96e6a5a..9db24ba 100644 --- a/drivers/net/mv_egiga.c +++ b/drivers/net/mv_egiga.c @@ -698,13 +698,21 @@

[U-Boot] [PATCH V2 3/6] mv_egiga: bugfix: DMA issue fixed using volatile

2010-07-08 Thread Albert Aribaud
Signed-off-by: Albert Aribaud --- drivers/net/mv_egiga.c |2 +- drivers/net/mv_egiga.h | 206 2 files changed, 104 insertions(+), 104 deletions(-) diff --git a/drivers/net/mv_egiga.c b/drivers/net/mv_egiga.c index 0da4c4b..96e6a5a 100644 ---

[U-Boot] [PATCH V2 1/6] net: rename: kirkwood_egiga as mv_egiga

2010-07-08 Thread Albert Aribaud
This is the first of two changes aimed at separating the Marvell egiga driver from the kirkwood SoC in order to use it from other SoCs which implement it. Signed-off-by: Albert Aribaud --- drivers/net/Makefile |2 +- drivers/net/{kirkwood_egiga.c => mv_egiga.c} |2

[U-Boot] [PATCH V2 0/6] Marvell egiga multiple SoC support

2010-07-08 Thread Albert Aribaud
NOTE This patchset depends on the previously posted and Acked-by patch "kirkwood_egiga: updates: fix DRAM mapping and typo", originally part of V1 and available on the mailing list archives at . PATCHSET HISTORY V1: First submissio

[U-Boot] [PATCH 0/4 v2] AM35X: Add musb support

2010-07-08 Thread Ajay Kumar Gupta
Remy, These patches add support for musb in AM35x. Changes from v1: - Moved SCM definitions to am35x specific file am35x_def.h Patches have been created against uboot-ti/master tree (as on 9th July) but they also apply cleanly to both denx/master and uboot-usb/master as there is no interd

[U-Boot] [PATCH 1/4 v2] AM35x: Adding SCM general register definitions

2010-07-08 Thread Ajay Kumar Gupta
Adding general register structure of system control module (SCM) of AM35x. This would be required to access devconf2 and ip_sw_reset register in musb module. Signed-off-by: Ajay Kumar Gupta --- arch/arm/include/asm/arch-omap3/am35x_def.h | 52 +++ 1 files changed, 52 in

[U-Boot] [PATCH 2/4 v2] musb: MSC host support for AM35x

2010-07-08 Thread Ajay Kumar Gupta
Tested MSC Host on AM3517EVM. Signed-off-by: Ajay Kumar Gupta --- drivers/usb/musb/Makefile |1 + drivers/usb/musb/am35x.c| 118 +++ drivers/usb/musb/am35x.h| 94 ++ drivers/usb/musb/musb_udc.c |2 + inc

[U-Boot] [PATCH 4/4] AM3517EVM: musb: add usb config

2010-07-08 Thread Ajay Kumar Gupta
Enabling USB HOST in defconfig. Signed-off-by: Ajay Kumar Gupta --- include/configs/am3517_evm.h | 38 ++ 1 files changed, 38 insertions(+), 0 deletions(-) diff --git a/include/configs/am3517_evm.h b/include/configs/am3517_evm.h index 10af21b..a9045d8 10064

[U-Boot] [PATCH 3/4 v2] musb: am35x: Workaround for fifo read issue

2010-07-08 Thread Ajay Kumar Gupta
AM35x supports only 32bit read operations so we need to have workaround for 8bit and 16bit read operations. Signed-off-by: Ajay Kumar Gupta --- drivers/usb/musb/am35x.c | 32 drivers/usb/musb/musb_core.c |6 ++ 2 files changed, 38 insertions(+), 0 d

[U-Boot] [PATCH 4/4] powerpc/85xx & 86xx: Rework ft_fsl_pci_setup to not require aliases

2010-07-08 Thread Kumar Gala
Previously we used an alias the pci node to determine which node to fixup or delete. Now we use the new fdt_node_offset_by_compat_reg to find the node to update. Additionally, we replace the code in each board with a single macro call that makes assumes uniform naming and reduces duplication in t

[U-Boot] [PATCH 3/4] powerpc/86xx: Rename PCI1/2 to PCIE1/2 on MPC8641HPCN & SBC8641

2010-07-08 Thread Kumar Gala
The MPC8641 boards actually only have PCIE not PCI. Rename so we are uniform with regards to names so we can replace this code with templated code. Signed-off-by: Kumar Gala --- board/freescale/mpc8641hpcn/law.c | 18 +++--- board/freescale/mpc8641hpcn/mpc8641hpcn.c | 58 ++-

[U-Boot] [PATCH 2/4] powerpc/86xx: Move PCI/PCIe address defines into common immap_86xx.h

2010-07-08 Thread Kumar Gala
Remove dupliacted setting of PCI/PCIe address and offsets in board config.h. Renamed CONFIG_SYS_PCI1/2_ADDR to CONFIG_SYS_PCI1/2ADDR on MPC8641 boards since its really PCIE controllers and not PCI. Signed-off-by: Kumar Gala --- arch/powerpc/include/asm/immap_86xx.h | 17 +

[U-Boot] [PATCH 1/4] powerpc/85xx: Move PCI/PCIe address defines into common immap_85xx.h

2010-07-08 Thread Kumar Gala
Remove dupliacted setting of PCI/PCIe address and offsets in board config.h. Signed-off-by: Kumar Gala --- arch/powerpc/include/asm/immap_85xx.h | 20 include/configs/ATUM8548.h|3 --- include/configs/MPC8536DS.h |5 - include/configs/MPC8

[U-Boot] [PATCH] powerpc/85xx: Move p1022ds slot code into board file

2010-07-08 Thread Kumar Gala
The code to map SERDES configs to slot names is board specific and not chip specific. Thus it should live in board/freescale/p1022ds/ and not in arch/powerpc/cpu/. Signed-off-by: Kumar Gala --- arch/powerpc/cpu/mpc85xx/p1022_serdes.c | 68 -- arch/powerpc/include/a

Re: [U-Boot] SAMSUNG: serial: remove compiler warnings

2010-07-08 Thread Minkyu Kang
On 6 July 2010 21:02, Minkyu Kang wrote: > remove below warnings > serial_s5p.c: In function 'serial_getc_dev': > serial_s5p.c:136: warning: dereferencing type-punned pointer will break > strict-aliasing rules > serial_s5p.c: In function 'serial_putc_dev': > serial_s5p.c:152: warning: dereferenci

Re: [U-Boot] [PATCH] Fix condition where bootm_size not set and wrong memory size reported

2010-07-08 Thread Kumar Gala
On Jul 8, 2010, at 10:11 AM, Matthew McClintock wrote: > If the user sets bootm_low and does not set bootm_size, u-boot will > report the memory node in the flat device tree incorrectly. Instead > of reporting the remaining size of memory, it will report the total > available memory which is inco

Re: [U-Boot] fdt_resize() bug caused "WARNING: could not set linux, initrd-start FDT_ERR_NOSPACE."

2010-07-08 Thread Timur Tabi
On Wed, Jun 23, 2010 at 1:20 PM, Wang, Feng wrote: > My fix is in fdt_resize(), leave at least 4 fdt_reserve_entry for > initrd. So instead of 2*sizeof(struct fdt_reserve_entry) for > actual_totalsize, use 5*sizeof(struc fdt_reserve_entry). You could also use the -R parameter when building the de

[U-Boot] [PATCH V3 4/4] edminiv2: add cmd_ide support

2010-07-08 Thread Albert Aribaud
This patch uses mv_sata_ide and cmd_ide to enable the use of the integrated SATAHC controller port 1. Signed-off-by: Albert Aribaud --- board/LaCie/edminiv2/edminiv2.c |5 include/configs/edminiv2.h | 47 +- 2 files changed, 50 insertions(+), 2

[U-Boot] [PATCH V3 3/4] orion5x: add support for cmd_ide.c

2010-07-08 Thread Albert Aribaud
This patch allows cmd_ide.c to use the Marvell SATAHC controller integrated in the Orion5x SoC, thus enabling access to SATA disks for Orion5x-based boards such as the ED Mini V2. Signed-off-by: Albert Aribaud --- arch/arm/include/asm/arch-orion5x/orion5x.h | 11 +++ common/cmd_ide.c

[U-Boot] [PATCH V3 2/4] drivers/block: add mv_sata_ide driver

2010-07-08 Thread Albert Aribaud
This driver only provides initialization code; actual driving is done by cmd_ide.c using the ATA compatibility mode of the Marvell SATAHC controller. Signed-off-by: Albert Aribaud --- drivers/block/Makefile |1 + drivers/block/mv_sata_ide.c | 61 +++

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

2010-07-08 Thread Albert Aribaud
Signed-off-by: Albert Aribaud --- This patch set introduces CONFIG_IDE_SWAP_IO as suggested by Wolfgang Denk, adds orion5x support to cmd_ide.c and adds IDE support to edminiv2. Patchset history: V1: Initial 4-patch set -- not cleanly submitted (does not appear on gmane for instance) and co

Re: [U-Boot] davinci: lowlevel_init for davinci boards

2010-07-08 Thread Paulraj, Sandeep
> I am quite unsure about the role of the RBL, too. I have assumed that > the setup to access the AEMIF interface is provided only by setting the > AECFG pins and the role of RBL is to copy the UBL into IRAM and start it. > > However, the RBL could initialize the processor in some way I do not >

[U-Boot] Business, Consumer and Healthcare Email lists

2010-07-08 Thread Marcel annals
Only until Friday Jul 9 you can get any list below for just $99: *Physicians (34 specialties) * 788k records, 17k emails, 200k fax numbers *Chiropractors * 108,421 total records * 3,414 emails * 6,553 fax numbers *Alternative Medicine * 1,141,602 total records with 36,320 emails and 38.935 fax nu

[U-Boot] [PATCH] Fix condition where bootm_size not set and wrong memory size reported

2010-07-08 Thread Matthew McClintock
If the user sets bootm_low and does not set bootm_size, u-boot will report the memory node in the flat device tree incorrectly. Instead of reporting the remaining size of memory, it will report the total available memory which is incorrect. Specifically this fixes the situation when booting a relo

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

2010-07-08 Thread Kumar Gala
On 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 support > > Signed-off-by: Timur Tabi > ---

[U-Boot] Please pull u-boot-mpc85xx

2010-07-08 Thread Kumar Gala
The following changes since commit 54841ab50c20d6fa6c9cc3eb826989da3a22d934: Wolfgang Denk (1): Make sure that argv[] argument pointers are not modified. are available in the git repository at: git://git.denx.de/u-boot-mpc85xx master Becky Bruce (8): powerpc: Update configs to

Re: [U-Boot] [PATCH][updated][85xx/p1_p2_rdb] PCIe E1000 card support added.

2010-07-08 Thread Kumar Gala
On Jul 1, 2010, at 3:54 AM, Poonam Aggrwal wrote: > Enables the Intel Pro/1000 PT Gb Ethernet PCI-E Network Adapter configuration > support for P1/P2 RDB. > > Signed-off-by: Poonam Aggrwal > --- > include/configs/P1_P2_RDB.h |1 + > 1 files changed, 1 insertions(+), 0 deletions(-) applied

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

2010-07-08 Thread Kumar Gala
On Jun 30, 2010, at 4:48 AM, Kumar Gala wrote: > 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 |

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

2010-07-08 Thread Kumar Gala
On Jun 30, 2010, at 4:48 AM, Kumar Gala wrote: > Signed-off-by: Kumar Gala > --- > arch/powerpc/cpu/mpc85xx/cpu.c | 20 ++-- > 1 files changed, 10 insertions(+), 10 deletions(-) applied to 85xx - k ___ U-Boot mailing list U-Boot@list

Re: [U-Boot] davinci: lowlevel_init for davinci boards

2010-07-08 Thread Stefano Babic
Paulraj, Sandeep wrote: >> Hi, >> Hi, > > Yes the lowlevel_init.S is meant only for DM6446. > > Later TI decided to do all the low level init in the UBL for both > NAND and NOR boot modes. Thus the lowlevel_init.S actually became > redundant w.r.t to our most recent releases, but for legacy rea

Re: [U-Boot] [PATCH] Fix condition where bootm_size not set and wrong memory size reported

2010-07-08 Thread Sergei Shtylyov
Hello. Matthew McClintock wrote: > If the user sets bootm_low and does not set bootm_size, u-boot will > report the memory node in the flat device tree incorrectly. Instead > of reporting the remaining size of memory, it will report the total > available memory which is incorrect. > Specifically

[U-Boot] [PATCH 2/3] at91: Update meesc board to new SoC access

2010-07-08 Thread Daniel Gorsulowski
* convert meesc board to use c stucture SoC access * change gpio access to at91_gpio syntax * moved CONFIG_SYS_HZ below board and cpu defines (purely cosmetic) Signed-off-by: Daniel Gorsulowski --- board/esd/meesc/meesc.c | 118 --- include/configs/me

[U-Boot] [PATCH 3/3] at91: Enabeling USB host on meesc board

2010-07-08 Thread Daniel Gorsulowski
There was an redesign, so USB is available now. Note: This patch depends on 'at91: Update meesc board to new SoC access' patch! Signed-off-by: Daniel Gorsulowski --- board/esd/meesc/meesc.c |6 +- include/configs/meesc.h | 13 - 2 files changed, 17 insertions(+),

[U-Boot] [PATCH 1/3] at91: Defined main clock frequency on esd at91 boards

2010-07-08 Thread Daniel Gorsulowski
Autodetection is undesired now Signed-off-by: Daniel Gorsulowski --- include/configs/meesc.h |9 + include/configs/otc570.h |1 + 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/include/configs/meesc.h b/include/configs/meesc.h index e085f4a..d3cc582 100644 --- a/