All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] [RFC] Board support patches for the eXMeritus HWW-1U-1A devices
@ 2010-08-30 18:24 Kyle Moffett
  2010-08-30 18:24 ` [U-Boot] [RFC][PATCH 1/3] DDR2: Support new JEDEC DDR2 SPD 1.3 spec Kyle Moffett
                   ` (2 more replies)
  0 siblings, 3 replies; 19+ messages in thread
From: Kyle Moffett @ 2010-08-30 18:24 UTC (permalink / raw)
  To: u-boot

Hello all!

I posted this patch series a few weeks back on the u-boot mailing list and
never got any responses, so I'm resubmitting it again with a couple more
folks on the CC list.

This is my first U-Boot submission, so my apologies if there are any coding
style or conventions issues.  Please let me know and I'll get them fixed up
quickly.  

In addition, these patches were initially based on v2010.03 and I realize
that upstream may have diverged a bit since then.  Please let me know what
GIT tree I should rebase these patches on for future submissions.

The eXMeritus HWW-1U-1A unit is a DO-160-certified 13lb 1U chassis with 3
independent TEMPEST zones.  Two independent P2020 computers may be found
inside each zone.  Complete hardware support is included.

There are a couple preliminary patches to common code, but basically
everything else is limited to our own board-support code.

A GIT tree containing these patches may be found here:
  git://opensource.exmeritus.com/hww-1u-1a/u-boot.git master
  http://opensource.exmeritus.com/git/hww-1u-1a/u-boot.git/master

I look forward to your comments and criticisms.

Cheers,
Kyle Moffett

--
Overall diffstat below:
 MAKEALL                               |    2 +
 Makefile                              |    4 +
 board/exmeritus/hww-1u-1a/Makefile    |   54 +++
 board/exmeritus/hww-1u-1a/config.mk   |   31 ++
 board/exmeritus/hww-1u-1a/ddr.c       |  136 +++++++
 board/exmeritus/hww-1u-1a/gpios.h     |  131 ++++++
 board/exmeritus/hww-1u-1a/hww-1u-1a.c |  697 +++++++++++++++++++++++++++++++++
 board/exmeritus/hww-1u-1a/law.c       |   40 ++
 board/exmeritus/hww-1u-1a/tlb.c       |   93 +++++
 common/ddr_spd.c                      |    4 +-
 cpu/mpc85xx/cpu.c                     |    7 +-
 cpu/mpc8xxx/ddr/ddr2_dimm_params.c    |   30 +-
 drivers/net/e1000.c                   |    7 +
 include/configs/HWW_1U_1A.h           |  478 ++++++++++++++++++++++
 14 files changed, 1702 insertions(+), 12 deletions(-)

^ permalink raw reply	[flat|nested] 19+ messages in thread
* [U-Boot] [RFC] Board support patches for the eXMeritus HWW-1U-1A devices
@ 2010-08-13 16:27 Kyle Moffett
  2010-08-13 16:28 ` [U-Boot] [RFC][PATCH 3/3] Add board support " Kyle Moffett
  0 siblings, 1 reply; 19+ messages in thread
From: Kyle Moffett @ 2010-08-13 16:27 UTC (permalink / raw)
  To: u-boot

Hello all!

This is my first U-Boot submission, so my apologies if there are any coding
style or conventions issues.  Please let me know and I'll get them fixed up
shortly.

In addition, these patches were based on v2010.03 and I realize that the
upstream may have diverged a bit since then.  Please let me know what
GIT version I should rebase these patches on for future submissions.

The eXMeritus HWW-1U-1A unit is a DO-160-certified 13lb 1U chassis
with 3 independent TEMPEST zones.  Two independent P2020 computers may
be found inside each zone.  Complete hardware support is included.

There are a couple preliminary patches to common code, but basically
everything else is limited to our own board-support code.

I look forward to your comments and criticisms!

Cheers,
Kyle Moffett

--
Overall diffstat below:
 MAKEALL                               |    2 +
 Makefile                              |    4 +
 board/exmeritus/hww-1u-1a/Makefile    |   54 +++
 board/exmeritus/hww-1u-1a/config.mk   |   31 ++
 board/exmeritus/hww-1u-1a/ddr.c       |  136 +++++++
 board/exmeritus/hww-1u-1a/gpios.h     |  131 ++++++
 board/exmeritus/hww-1u-1a/hww-1u-1a.c |  697 +++++++++++++++++++++++++++++++++
 board/exmeritus/hww-1u-1a/law.c       |   40 ++
 board/exmeritus/hww-1u-1a/tlb.c       |   93 +++++
 common/ddr_spd.c                      |    4 +-
 cpu/mpc85xx/cpu.c                     |    7 +-
 cpu/mpc8xxx/ddr/ddr2_dimm_params.c    |   30 +-
 drivers/net/e1000.c                   |    7 +
 include/configs/HWW_1U_1A.h           |  478 ++++++++++++++++++++++
 14 files changed, 1702 insertions(+), 12 deletions(-)

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

end of thread, other threads:[~2010-09-13  4:28 UTC | newest]

Thread overview: 19+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-08-30 18:24 [U-Boot] [RFC] Board support patches for the eXMeritus HWW-1U-1A devices Kyle Moffett
2010-08-30 18:24 ` [U-Boot] [RFC][PATCH 1/3] DDR2: Support new JEDEC DDR2 SPD 1.3 spec Kyle Moffett
2010-09-03  3:06   ` Peter Tyser
2010-09-03  5:10     ` Kyle Moffett
2010-08-30 18:24 ` [U-Boot] [RFC][PATCH 2/3] e1000: Intel 82571EB: Don't wait for MNG cycle on unmanaged chips Kyle Moffett
2010-09-13  4:18   ` Ben Warren
2010-09-13  4:24     ` Kyle Moffett
2010-09-13  4:28       ` Ben Warren
2010-08-30 18:24 ` [U-Boot] [RFC][PATCH 3/3] Add board support for the eXMeritus HWW-1U-1A devices Kyle Moffett
2010-09-03  4:00   ` Peter Tyser
2010-09-03  5:50     ` Kyle Moffett
2010-09-07 22:09       ` Peter Tyser
2010-09-07 22:50         ` [U-Boot] [RFC][PATCH 3/3] Add board support for the eXMeritusHWW-1U-1A devices Moffett, Kyle D
2010-09-08  3:43           ` Peter Tyser
2010-09-07 21:21     ` [U-Boot] [RFC][PATCH 3/3] Add board support for the eXMeritus HWW-1U-1A devices Moffett, Kyle D
2010-09-07 21:40       ` Peter Tyser
2010-09-07 21:59         ` Wolfgang Denk
2010-09-07 22:21         ` [U-Boot] [RFC][PATCH 3/3] Add board support for the eXMeritusHWW-1U-1A devices Moffett, Kyle D
  -- strict thread matches above, loose matches on Subject: below --
2010-08-13 16:27 [U-Boot] [RFC] Board support patches for the eXMeritus HWW-1U-1A devices Kyle Moffett
2010-08-13 16:28 ` [U-Boot] [RFC][PATCH 3/3] Add board support " Kyle Moffett

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.