All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] [PATCH 00/25] SPEAr: Update platform support for SPEAr3xx/6xx
@ 2012-03-07 12:03 Amit Virdi
  2012-03-07 12:03 ` [U-Boot] [PATCH 01/25] SPEAr: Fix ARM relocation support Amit Virdi
                   ` (25 more replies)
  0 siblings, 26 replies; 79+ messages in thread
From: Amit Virdi @ 2012-03-07 12:03 UTC (permalink / raw)
  To: u-boot

This patchset updates the SPEAr support in the u-boot. It contains various
bugfixes and enhancements.

The patches have certain dependencies on the drivers, so should be applied once
the driver patches are frozen. The various drivers on which these patches depend
are:
1. USB device controller:
   http://thread.gmane.org/gmane.comp.boot-loaders.u-boot/125220/focus=126598
2. USB OTG: Patch (USB:gadget:designware USB OTG implementation)
3. ST_SMI: http://lists.denx.de/pipermail/u-boot/2012-February/118672.html
4. FSMC_NAND: http://patchwork.ozlabs.org/patch/143167/
5. Designware ethernet controller:
   http://comments.gmane.org/gmane.comp.boot-loaders.u-boot/126029

In a subsequent patchset, more features shall be added along with cleanup of the
directory structure.

Amit Virdi (6):
  SPEAr: Fix ARM relocation support
  SPEAr: Eliminate dependency on Xloader table
  SPEAr: Initialize SNOR in early_board_init_f
  SPEAr: Use separate config flags for 3xx and 6xx board files
  cleanup/SPEAr: Remove unnecessary parenthesis
  cleanup/SPEAr: Define configuration flags more elegantly

Shiraz Hashim (4):
  SPEAr: Enable autoneg for ethernet
  SPEAr: Enable dcache for fast file transfer
  SPEAr: explicitly select clk src for UART
  SPEAr: Correct SoC ID offset in misc configuration space

Vipin KUMAR (10):
  SPEAr: Place ethaddr write and read within CONFIG_CMD_NET
  SPEAr: Configure network support for spear SoCs
  SPEAr: Add macb driver support for spear310 and spear320
  SPEAr: Add basic arch related support for SPEAr SoCs
  SPEAr: Add configuration options for spear3xx and spear6xx boards
  SPEAr: Remove unused flag (CONFIG_SYS_HZ_CLOCK)
  SPEAr: Change the default environment variables
  SPEAr: Enable usb device high speed support
  SPEAr: spear usbtty configuration does not use ethernet device
  SPEAr: Enable udc and usb-console support only for usbtty
    configuration

Vipin Kumar (5):
  SPEAr: Add interface information in initialization
  SPEAr: Enable CONFIG_SYS_FLASH_PROTECTION
  SPEAr: Correct the definition of CONFIG_SYS_MONITOR_BASE
  SPEAr: Enable CONFIG_SYS_FLASH_EMPTY_INFO macro
  SPEAr: Enable ONFI nand flash detection for spear3xx and 6xx and evb

 arch/arm/cpu/arm926ejs/spear/Makefile              |    3 +-
 arch/arm/cpu/arm926ejs/spear/cpu.c                 |   89 +++++++++++++++++
 .../arm/include/asm/arch-spear/clk.h               |   29 +-----
 arch/arm/include/asm/arch-spear/hardware.h         |    8 ++
 arch/arm/include/asm/arch-spear/spr_defs.h         |    7 --
 arch/arm/include/asm/arch-spear/spr_misc.h         |   11 ++-
 .../arm/include/asm/arch-spear/spr_xloader_table.h |   67 -------------
 board/spear/common/Makefile                        |    9 ++-
 board/spear/common/spr_misc.c                      |  102 +++++++-------------
 board/spear/spear300/config.mk                     |   13 +---
 board/spear/spear300/spear300.c                    |   15 +++
 board/spear/spear310/config.mk                     |   11 --
 board/spear/spear310/spear310.c                    |   32 ++++++
 board/spear/spear320/config.mk                     |   11 --
 board/spear/spear320/spear320.c                    |   30 ++++++
 board/spear/spear600/config.mk                     |   13 +---
 board/spear/spear600/spear600.c                    |   18 ++++
 boards.cfg                                         |   20 +++-
 doc/README.spear                                   |   39 ++++++--
 drivers/net/designware.c                           |   10 ++-
 drivers/net/designware.h                           |    1 +
 include/configs/spear-common.h                     |   94 +++++++++++++-----
 include/configs/{spear3xx.h => spear3xx_evb.h}     |   49 ++++++++--
 include/configs/{spear6xx.h => spear6xx_evb.h}     |   15 +++-
 include/netdev.h                                   |    2 +-
 25 files changed, 429 insertions(+), 269 deletions(-)
 create mode 100644 arch/arm/cpu/arm926ejs/spear/cpu.c
 copy include/configs/spear6xx.h => arch/arm/include/asm/arch-spear/clk.h (60%)
 delete mode 100644 arch/arm/include/asm/arch-spear/spr_xloader_table.h
 rename include/configs/{spear3xx.h => spear3xx_evb.h} (79%)
 rename include/configs/{spear6xx.h => spear6xx_evb.h} (84%)

-- 
1.7.2.2

^ permalink raw reply	[flat|nested] 79+ messages in thread

end of thread, other threads:[~2012-03-27  9:24 UTC | newest]

Thread overview: 79+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-03-07 12:03 [U-Boot] [PATCH 00/25] SPEAr: Update platform support for SPEAr3xx/6xx Amit Virdi
2012-03-07 12:03 ` [U-Boot] [PATCH 01/25] SPEAr: Fix ARM relocation support Amit Virdi
2012-03-07 13:11   ` Stefan Roese
2012-03-07 12:03 ` [U-Boot] [PATCH 02/25] SPEAr: Eliminate dependency on Xloader table Amit Virdi
2012-03-07 13:16   ` Stefan Roese
2012-03-07 12:03 ` [U-Boot] [PATCH 03/25] SPEAr: Place ethaddr write and read within CONFIG_CMD_NET Amit Virdi
2012-03-07 13:21   ` Stefan Roese
2012-03-07 13:29     ` Mike Frysinger
2012-03-26 11:23     ` Amit Virdi
2012-03-26 13:15       ` Wolfgang Denk
2012-03-07 12:03 ` [U-Boot] [PATCH 04/25] SPEAr: Configure network support for spear SoCs Amit Virdi
2012-03-07 13:29   ` Stefan Roese
2012-03-26 11:41     ` Amit Virdi
2012-03-26 11:51       ` Stefan Roese
2012-03-07 12:03 ` [U-Boot] [PATCH 05/25] SPEAr: Add macb driver support for spear310 and spear320 Amit Virdi
2012-03-07 12:03 ` [U-Boot] [PATCH 06/25] SPEAr: Add interface information in initialization Amit Virdi
2012-03-07 12:03 ` [U-Boot] [PATCH 07/25] SPEAr: Add basic arch related support for SPEAr SoCs Amit Virdi
2012-03-07 13:49   ` Stefan Roese
2012-03-12 12:30     ` Amit Virdi
2012-03-07 12:03 ` [U-Boot] [PATCH 08/25] SPEAr: Add configuration options for spear3xx and spear6xx boards Amit Virdi
2012-03-07 13:54   ` Stefan Roese
2012-03-26 12:10     ` Amit Virdi
2012-03-26 12:30       ` Stefan Roese
2012-03-27  5:59         ` Amit Virdi
2012-03-07 12:03 ` [U-Boot] [PATCH 09/25] SPEAr: Remove unused flag (CONFIG_SYS_HZ_CLOCK) Amit Virdi
2012-03-07 13:56   ` Stefan Roese
2012-03-07 12:03 ` [U-Boot] [PATCH 10/25] SPEAr: Change the default environment variables Amit Virdi
2012-03-07 14:03   ` Stefan Roese
2012-03-12 12:38     ` Amit Virdi
2012-03-07 12:04 ` [U-Boot] [PATCH 11/25] SPEAr: Initialize SNOR in early_board_init_f Amit Virdi
2012-03-07 14:06   ` Stefan Roese
2012-03-07 12:04 ` [U-Boot] [PATCH 12/25] SPEAr: Enable usb device high speed support Amit Virdi
2012-03-07 14:07   ` Stefan Roese
2012-03-12 12:39     ` Amit Virdi
2012-03-26 12:15       ` Amit Virdi
2012-03-07 12:04 ` [U-Boot] [PATCH 13/25] SPEAr: spear usbtty configuration does not use ethernet device Amit Virdi
2012-03-07 14:14   ` Stefan Roese
2012-03-12 13:12     ` Amit Virdi
2012-03-07 12:04 ` [U-Boot] [PATCH 14/25] SPEAr: Enable udc and usb-console support only for usbtty configuration Amit Virdi
2012-03-07 14:15   ` Stefan Roese
2012-03-07 12:04 ` [U-Boot] [PATCH 15/25] SPEAr: Enable autoneg for ethernet Amit Virdi
2012-03-07 14:18   ` Stefan Roese
2012-03-27  9:02     ` Amit Virdi
2012-03-27  9:20       ` Stefan Roese
2012-03-27  9:24         ` Amit Virdi
2012-03-07 12:04 ` [U-Boot] [PATCH 16/25] SPEAr: Enable dcache for fast file transfer Amit Virdi
2012-03-07 12:04 ` [U-Boot] [PATCH 17/25] SPEAr: Enable CONFIG_SYS_FLASH_PROTECTION Amit Virdi
2012-03-07 14:25   ` Stefan Roese
2012-03-27  6:39     ` Amit Virdi
2012-03-07 12:04 ` [U-Boot] [PATCH 18/25] SPEAr: Correct the definition of CONFIG_SYS_MONITOR_BASE Amit Virdi
2012-03-07 14:31   ` Stefan Roese
2012-03-27  6:38     ` Amit Virdi
2012-03-27  7:05       ` Stefan Roese
2012-03-27  7:42         ` Amit Virdi
2012-03-07 12:04 ` [U-Boot] [PATCH 19/25] SPEAr: Enable CONFIG_SYS_FLASH_EMPTY_INFO macro Amit Virdi
2012-03-07 14:32   ` Stefan Roese
2012-03-27  6:11     ` Amit Virdi
2012-03-07 12:04 ` [U-Boot] [PATCH 20/25] SPEAr: Enable ONFI nand flash detection for spear3xx and 6xx and evb Amit Virdi
2012-03-07 14:34   ` Stefan Roese
2012-03-27  6:09     ` Amit Virdi
2012-03-07 12:04 ` [U-Boot] [PATCH 21/25] SPEAr: explicitly select clk src for UART Amit Virdi
2012-03-07 14:36   ` Stefan Roese
2012-03-07 12:04 ` [U-Boot] [PATCH 22/25] SPEAr: Correct SoC ID offset in misc configuration space Amit Virdi
2012-03-07 14:36   ` Stefan Roese
2012-03-07 12:04 ` [U-Boot] [PATCH 23/25] SPEAr: Use separate config flags for 3xx and 6xx board files Amit Virdi
2012-03-07 14:38   ` Stefan Roese
2012-03-12 13:57     ` Amit Virdi
2012-03-12 14:17       ` Stefan Roese
2012-03-07 12:04 ` [U-Boot] [PATCH 24/25] cleanup/SPEAr: Remove unnecessary parenthesis Amit Virdi
2012-03-07 14:41   ` Stefan Roese
2012-03-07 14:46     ` Stefan Roese
2012-03-12 13:52       ` Amit Virdi
2012-03-07 12:04 ` [U-Boot] [PATCH 25/25] cleanup/SPEAr: Define configuration flags more elegantly Amit Virdi
2012-03-07 14:42   ` Stefan Roese
2012-03-07 13:15 ` [U-Boot] [PATCH 00/25] SPEAr: Update platform support for SPEAr3xx/6xx Stefan Roese
2012-03-07 13:56   ` Amit Virdi
2012-03-09  7:29   ` Vipin Kumar
2012-03-09  7:47     ` Stefan Roese
2012-03-09  8:47       ` Vipin Kumar

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.