public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
From: Kim Phillips <kim.phillips@freescale.com>
To: u-boot@lists.denx.de
Subject: [U-Boot-Users] Please pull u-boot-mpc83xx.git
Date: Thu, 20 Dec 2007 17:56:58 -0600	[thread overview]
Message-ID: <20071220175658.850eac66.kim.phillips@freescale.com> (raw)

Wolfgang D., please pull mainly mpc837x support and libfdt code updates
for mpc83xx (this pull request depends on the mpc85xx pull request):

The following changes since commit 41be969f4957115ed7b1fe8b890bfaee99d7a7a2:
  Wolfgang Denk (1):
        Release v1.3.1

are available in the git repository at:

  git://www.denx.de/git/u-boot-mpc83xx.git

Anton Vorontsov (1):
      MPC8360E-MDS: configure and enable second UART

Dave Liu (6):
      mpc83xx: Add the support of MPC837x SoC
      mpc83xx: Add the support of MPC8315E SoC
      mpc83xx: Add the support of MPC837xEMDS board
      mpc83xx: Add the MPC837xEMDS board readme
      mpc83xx: add MAINTAINER and MAKEALL entries for the mpc837xemds
      mpc83xx: update the CREDITS and MAINTAINERS

Joakim Tjernlund (1):
      Add support CONFIG_UEC_ETH3 in MPC83xx

Kim Phillips (8):
      mpc83xx: mpc8360 rev.2.1 erratum 2: replace rgmii-id with rgmii-rxid
      mpc83xx: fix CFG_ENV_ADDR and CFG_ENV_SECT_SIZE definitions for 837x
      mpc83xx: fix remaining fdt_find_node_by_path references
      mpc83xx: supress compiler warning
      mpc83xx: Remove CONFIG options related to OF that we dont use (on 837x)
      mpc83xx: convert to using do_fixup_*()
      mpc83xx: remove FLAT_TREE code
      mpc83xx: rm remaining FLAT_TREE code

Kumar Gala (1):
      Remove CONFIG options related to OF that we dont use

Paul Gortmaker (3):
      sbc8349: Remove board specific ECC code
      sbc8349: migrate board to libfdt
      sbc8349: enable libfdt by default on WRS SBC8349 board.

Timur Tabi (1):
      83xx: fix CFG_ENV_ADDR and CFG_ENV_SECT_SIZE definitions

 CREDITS                                   |    5 +
 MAINTAINERS                               |    2 +
 MAKEALL                                   |    1 +
 Makefile                                  |   10 +
 board/freescale/mpc8313erdb/mpc8313erdb.c |   14 +-
 board/freescale/mpc8323erdb/mpc8323erdb.c |   10 -
 board/freescale/mpc832xemds/mpc832xemds.c |   14 +-
 board/freescale/mpc832xemds/pci.c         |   46 +--
 board/freescale/mpc8349emds/mpc8349emds.c |   14 +-
 board/freescale/mpc8349emds/pci.c         |   76 ++---
 board/freescale/mpc8349itx/mpc8349itx.c   |   14 +-
 board/freescale/mpc8349itx/pci.c          |   76 ++---
 board/freescale/mpc8360emds/mpc8360emds.c |   61 +++-
 board/freescale/mpc8360emds/pci.c         |   46 +--
 board/freescale/mpc837xemds/Makefile      |   50 +++
 board/freescale/mpc837xemds/config.mk     |   28 ++
 board/freescale/mpc837xemds/mpc837xemds.c |  132 +++++++
 board/freescale/mpc837xemds/pci.c         |   65 +++
 board/sbc8349/pci.c                       |   52 ++-
 board/sbc8349/sbc8349.c                   |  347 +----------------
 cpu/mpc83xx/Makefile                      |    2 +-
 cpu/mpc83xx/cpu.c                         |  362 ++----------------
 cpu/mpc83xx/cpu_init.c                    |    6 +-
 cpu/mpc83xx/fdt.c                         |   72 ++++
 cpu/mpc83xx/pci.c                         |   83 ++---
 cpu/mpc83xx/spd_sdram.c                   |    7 +-
 cpu/mpc83xx/speed.c                       |  201 ++++++++--
 doc/README.mpc837xemds                    |  104 +++++
 drivers/net/tsec.c                        |   10 +
 drivers/qe/uec.c                          |   23 ++
 include/asm-ppc/global_data.h             |   15 +-
 include/asm-ppc/immap_83xx.h              |  145 +++++++-
 include/configs/MPC8313ERDB.h             |    9 +-
 include/configs/MPC8323ERDB.h             |   12 +-
 include/configs/MPC832XEMDS.h             |   12 +-
 include/configs/MPC8349EMDS.h             |    8 +-
 include/configs/MPC8349ITX.h              |   11 +-
 include/configs/MPC8360EMDS.h             |   15 +-
 include/configs/MPC837XEMDS.h             |  600 +++++++++++++++++++++++++++++
 include/configs/sbc8349.h                 |   10 +-
 include/mpc83xx.h                         |  261 ++++++++++++--
 net/eth.c                                 |    3 +
 42 files changed, 1953 insertions(+), 1081 deletions(-)
 create mode 100644 board/freescale/mpc837xemds/Makefile
 create mode 100644 board/freescale/mpc837xemds/config.mk
 create mode 100644 board/freescale/mpc837xemds/mpc837xemds.c
 create mode 100644 board/freescale/mpc837xemds/pci.c
 create mode 100644 cpu/mpc83xx/fdt.c
 create mode 100644 doc/README.mpc837xemds
 create mode 100644 include/configs/MPC837XEMDS.h

p.s. I was unable to get the UEC and PHY latency fixes
to a satisfactory state without re-reverting the relocation for 83xx
commit (assuming that was what was causing Joakim's and Russell's
problem).  Now I'm going on vacation (random email access).  btw, they
should probably go through Ben Warren (net custodian) anyway.

Kim

             reply	other threads:[~2007-12-20 23:56 UTC|newest]

Thread overview: 37+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2007-12-20 23:56 Kim Phillips [this message]
2007-12-21  0:15 ` [U-Boot-Users] Please pull u-boot-mpc83xx.git Joakim Tjernlund
2008-01-08 10:26   ` Joakim Tjernlund
2008-01-08 16:21   ` Kim Phillips
2008-01-08 16:53     ` Joakim Tjernlund
2007-12-26 23:44 ` Wolfgang Denk
  -- strict thread matches above, loose matches on Subject: below --
2008-07-03 21:14 Kim Phillips
2008-07-06 22:33 ` Wolfgang Denk
2008-05-08 22:13 Kim Phillips
2008-05-09 22:34 ` Wolfgang Denk
2008-04-25 14:45 Kim Phillips
2008-04-25 22:07 ` Wolfgang Denk
2008-03-28 23:49 Kim Phillips
2008-03-29  0:04 ` Kim Phillips
2008-04-07 22:01   ` Wolfgang Denk
2008-03-26  0:24 Kim Phillips
2008-03-26  1:03 ` Wolfgang Denk
2008-01-17 20:13 Kim Phillips
2008-01-18  2:11 ` Dave Liu
2008-01-23 12:02   ` Wolfgang Denk
2008-01-23 12:22     ` Liu Dave
2008-01-23 12:00 ` Wolfgang Denk
2008-01-16 18:39 Kim Phillips
2008-01-16 18:44 ` Joakim Tjernlund
2008-01-16 18:48   ` Kim Phillips
2008-01-16 20:16     ` Ben Warren
2008-01-17  9:19       ` Joakim Tjernlund
2008-01-17  9:22         ` Liu Dave
2008-01-17 14:36           ` Ben Warren
2008-01-17 14:35         ` Ben Warren
2008-01-16 21:06 ` Wolfgang Denk
2008-01-11  4:04 Kim Phillips
2008-01-11 23:12 ` Wolfgang Denk
2008-01-08 16:21 Kim Phillips
2008-01-09 10:27 ` Wolfgang Denk
2007-08-10  5:46 Kim Phillips
2007-08-10  8:38 ` Wolfgang Denk

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20071220175658.850eac66.kim.phillips@freescale.com \
    --to=kim.phillips@freescale.com \
    --cc=u-boot@lists.denx.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox