public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot] [PATCH 00/14] XPedite1K updates
@ 2009-07-18  0:01 Peter Tyser
  2009-07-18  0:01 ` [U-Boot] [PATCH 01/14] xpedite1k: Use standard CFI flash driver Peter Tyser
                   ` (14 more replies)
  0 siblings, 15 replies; 16+ messages in thread
From: Peter Tyser @ 2009-07-18  0:01 UTC (permalink / raw)
  To: u-boot

The XPedite1000 is a 440gx-based PMC made by X-ES.  Support was added
for XPedite100 to U-Boot > 5 years ago by Travis Sawyer
(travis.sawyer at sandburst.com) independent of X-ES.  Sandburst was
bought out by Broadcom some time ago.  I attempted to contact
Travis at both his old Sandburst and Broadcom email addresses
but neither account still exist.

We never sold any XPedite1000's to Sandburst, so I'm not quite sure
how Travis initially got his hands on one (ebay?).  In any case,
now that other X-ES products are supported by U-Boot I thought
it would make sense to sync up the XPedite1000 with other X-ES
boards.  In my opinion, these changes add some functionality and
are generally an improvement.  No one is currently using U-Boot
on the XPedite1000 that I'm aware of so I hope the changes don't
affect others in a negative way.

In any case, I was hoping to take over maintainership for the board,
but was never able to get the OK from Travis.  I hope this is OK...

Peter Tyser (14):
  xpedite1k: Use standard CFI flash driver
  xpedite1k: Remove CONFIG_SYS_DRAM_TEST support
  xpedite1k: Remove support for fixed SDRAM configuration
  xpedite1k: Remove support for reading MACs from EEPROM
  xpedite1k: Cleanup coding style
  xpedite1k: Add support for optional flashes
  xpedite1k: Add support for additional GPIO pins
  xpedite1k: Store environment in flash
  xpedite1k: Disable unused ethernet port 1
  xpedite1k: Sync up commands and environment with other X-ES boards
  xpedite1k: Sync organization of board config with other X-ES boards
  xpedite1k: Sync up board config options with other X-ES boards
  xpedite1k: Sync checkboard() with other X-ES boards
  xpedite1k: Move to X-ES vendor directory

 MAINTAINERS                                        |    2 +-
 MAKEALL                                            |    2 +-
 Makefile                                           |    4 +-
 board/{xpedite1k => xes/xpedite1000}/Makefile      |    2 +-
 board/{xpedite1k => xes/xpedite1000}/config.mk     |    0
 board/{xpedite1k => xes/xpedite1000}/init.S        |   67 +--
 board/{xpedite1k => xes/xpedite1000}/u-boot.lds    |    5 +-
 .../xpedite1000}/u-boot.lds.debug                  |    2 +-
 board/xes/xpedite1000/xpedite1000.c                |  244 ++++++++
 board/xpedite1k/flash.c                            |  607 --------------------
 board/xpedite1k/xpedite1k.c                        |  393 -------------
 include/configs/XPEDITE1000.h                      |  356 ++++++++++++
 include/configs/XPEDITE1K.h                        |  274 ---------
 13 files changed, 639 insertions(+), 1319 deletions(-)
 rename board/{xpedite1k => xes/xpedite1000}/Makefile (98%)
 rename board/{xpedite1k => xes/xpedite1000}/config.mk (100%)
 rename board/{xpedite1k => xes/xpedite1000}/init.S (61%)
 rename board/{xpedite1k => xes/xpedite1000}/u-boot.lds (97%)
 rename board/{xpedite1k => xes/xpedite1000}/u-boot.lds.debug (98%)
 create mode 100644 board/xes/xpedite1000/xpedite1000.c
 delete mode 100644 board/xpedite1k/flash.c
 delete mode 100644 board/xpedite1k/xpedite1k.c
 create mode 100644 include/configs/XPEDITE1000.h
 delete mode 100644 include/configs/XPEDITE1K.h

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

end of thread, other threads:[~2009-07-20  9:04 UTC | newest]

Thread overview: 16+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-07-18  0:01 [U-Boot] [PATCH 00/14] XPedite1K updates Peter Tyser
2009-07-18  0:01 ` [U-Boot] [PATCH 01/14] xpedite1k: Use standard CFI flash driver Peter Tyser
2009-07-18  0:01 ` [U-Boot] [PATCH 02/14] xpedite1k: Remove CONFIG_SYS_DRAM_TEST support Peter Tyser
2009-07-18  0:01 ` [U-Boot] [PATCH 03/14] xpedite1k: Remove support for fixed SDRAM configuration Peter Tyser
2009-07-18  0:01 ` [U-Boot] [PATCH 04/14] xpedite1k: Remove support for reading MACs from EEPROM Peter Tyser
2009-07-18  0:01 ` [U-Boot] [PATCH 05/14] xpedite1k: Cleanup coding style Peter Tyser
2009-07-18  0:01 ` [U-Boot] [PATCH 06/14] xpedite1k: Add support for optional flashes Peter Tyser
2009-07-18  0:01 ` [U-Boot] [PATCH 07/14] xpedite1k: Add support for additional GPIO pins Peter Tyser
2009-07-18  0:01 ` [U-Boot] [PATCH 08/14] xpedite1k: Store environment in flash Peter Tyser
2009-07-18  0:01 ` [U-Boot] [PATCH 09/14] xpedite1k: Disable unused ethernet port 1 Peter Tyser
2009-07-18  0:01 ` [U-Boot] [PATCH 10/14] xpedite1k: Sync up commands and environment with other X-ES boards Peter Tyser
2009-07-18  0:01 ` [U-Boot] [PATCH 11/14] xpedite1k: Sync organization of board config " Peter Tyser
2009-07-18  0:01 ` [U-Boot] [PATCH 12/14] xpedite1k: Sync up board config options " Peter Tyser
2009-07-18  0:01 ` [U-Boot] [PATCH 13/14] xpedite1k: Sync checkboard() " Peter Tyser
2009-07-18  0:01 ` [U-Boot] [PATCH 14/14] xpedite1k: Move to X-ES vendor directory Peter Tyser
2009-07-20  9:04 ` [U-Boot] [PATCH 00/14] XPedite1K updates Stefan Roese

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox