All of lore.kernel.org
 help / color / mirror / Atom feed
From: Stefan Roese <sr@denx.de>
To: u-boot@lists.denx.de
Subject: [U-Boot-Users] [ppc4xx] Please pull git://www.denx.de/git/u-boot-ppc4xx.git
Date: Sat, 15 Mar 2008 08:00:56 +0100	[thread overview]
Message-ID: <200803150800.56448.sr@denx.de> (raw)
In-Reply-To: <200803070923.05639.sr@denx.de>

The following changes since commit b8aa57b5d4d69e8f0810a5e632c0ce41c0f46ee0:
  Wolfgang Denk (1):
        tools/setlocalversion: use a git-describe-ish format

are available in the git repository at:

  git://www.denx.de/git/u-boot-ppc4xx.git master

Niklaus Giger (5):
      ppc4xx: HCU4/5. Use FLASH_CFI_LEGACY
      ppc4xx: HCU4/5. remove obsolete hcu_flash.c
      ppc4xx: Add 405GPr based MCU25 board. Global files
      ppc4xx: Add 405GPr based MCU25 board config file
      ppc4xx: Add 405GPr based MCU25 board specific files

Stefan Roese (16):
      ppc4xx: Fix comment in 405EX DDR2 init code
      rtc: Add M41T62 support
      ppc4xx: miiphy.c reworked
      ppc4xx: program_tlb now uses 64bit physical addess
      ppc4xx: interrupt.c reworked
      ppc4xx: Add basic support for AMCC 460EX/460GT (1/5)
      ppc4xx: Add basic support for AMCC 460EX/460GT (2/5)
      ppc4xx: Add basic support for AMCC 460EX/460GT (3/5)
      ppc4xx: Add basic support for AMCC 460EX/460GT (4/5)
      ppc4xx: Add basic support for AMCC 460EX/460GT (5/5)
      ppc4xx: Add AMCC Canyonlands support (460EX) (1/3)
      ppc4xx: Add AMCC Canyonlands support (460EX) (2/3)
      ppc4xx: Add AMCC Canyonlands support (460EX) (3/3)
      ppc4xx: Add Canyonlands NAND booting support
      usb: Add CFG_OHCI_USE_NPS to common USB-OHCI driver
      ppc4xx: Add USB OHCI support to AMCC Canyonlands 460EX eval board

 MAINTAINERS                                  |    2 +
 MAKEALL                                      |    3 +
 Makefile                                     |   15 +
 board/amcc/canyonlands/Makefile              |   52 +++
 board/amcc/canyonlands/bootstrap.c           |  170 ++++++++
 board/amcc/canyonlands/canyonlands.c         |  418 ++++++++++++++++++
 board/amcc/canyonlands/config.mk             |   49 +++
 board/amcc/canyonlands/init.S                |  122 ++++++
 board/amcc/canyonlands/u-boot-nand.lds       |  137 ++++++
 board/amcc/canyonlands/u-boot.lds            |  146 +++++++
 board/amcc/kilauea/init.S                    |    4 +-
 board/amcc/makalu/init.S                     |    4 +-
 board/netstal/common/hcu_flash.c             |  514 ----------------------
 board/netstal/hcu4/Makefile                  |    2 +-
 board/netstal/hcu4/hcu4.c                    |   16 +
 board/netstal/hcu5/Makefile                  |    2 +-
 board/netstal/hcu5/hcu5.c                    |   16 +
 board/netstal/hcu5/sdram.c                   |    2 -
 board/netstal/mcu25/Makefile                 |   51 +++
 board/netstal/mcu25/README.txt               |   60 +++
 board/netstal/mcu25/config.mk                |   29 ++
 board/netstal/mcu25/mcu25.c                  |  218 ++++++++++
 board/netstal/mcu25/u-boot.lds               |  141 ++++++
 cpu/ppc4xx/44x_spd_ddr2.c                    |   41 ++-
 cpu/ppc4xx/4xx_enet.c                        |  369 +++++++++++++---
 cpu/ppc4xx/4xx_pci.c                         |    9 +-
 cpu/ppc4xx/4xx_pcie.c                        |  203 +++++++++-
 cpu/ppc4xx/4xx_uart.c                        |   24 +-
 cpu/ppc4xx/cpu.c                             |   45 ++-
 cpu/ppc4xx/cpu_init.c                        |    1 +
 cpu/ppc4xx/interrupts.c                      |  589 ++++++-------------------
 cpu/ppc4xx/miiphy.c                          |  196 ++++-----
 cpu/ppc4xx/ndfc.c                            |    3 +-
 cpu/ppc4xx/speed.c                           |  125 ++++++-
 cpu/ppc4xx/start.S                           |   19 +-
 cpu/ppc4xx/tlb.c                             |   27 +-
 drivers/rtc/Makefile                         |    1 +
 drivers/rtc/m41t62.c                         |  135 ++++++
 drivers/usb/usb_ohci.c                       |    5 +-
 include/405_mal.h                            |    1 +
 include/4xx_i2c.h                            |    3 +-
 include/asm-ppc/4xx_pcie.h                   |   79 ++++-
 include/asm-ppc/gpio.h                       |    5 +-
 include/asm-ppc/mmu.h                        |   18 +-
 include/asm-ppc/ppc4xx-intvec.h              |   71 +++
 include/asm-ppc/processor.h                  |    4 +
 include/asm-ppc/u-boot.h                     |    6 +-
 include/common.h                             |    4 +-
 include/configs/canyonlands.h                |  567 ++++++++++++++++++++++++
 include/configs/hcu4.h                       |   18 +-
 include/configs/hcu5.h                       |   14 +-
 include/configs/mcu25.h                      |  362 ++++++++++++++++
 include/ppc405.h                             |   23 +-
 include/ppc440.h                             |  593 ++++++++++++++++++++++----
 include/ppc4xx_enet.h                        |   18 +-
 nand_spl/board/amcc/canyonlands/Makefile     |  105 +++++
 nand_spl/board/amcc/canyonlands/config.mk    |   49 +++
 nand_spl/board/amcc/canyonlands/ddr2_fixed.c |   96 +++++
 nand_spl/board/amcc/canyonlands/u-boot.lds   |   65 +++
 post/cpu/ppc4xx/cache.c                      |    2 -
 60 files changed, 4740 insertions(+), 1328 deletions(-)
 create mode 100644 board/amcc/canyonlands/Makefile
 create mode 100644 board/amcc/canyonlands/bootstrap.c
 create mode 100644 board/amcc/canyonlands/canyonlands.c
 create mode 100644 board/amcc/canyonlands/config.mk
 create mode 100644 board/amcc/canyonlands/init.S
 create mode 100644 board/amcc/canyonlands/u-boot-nand.lds
 create mode 100644 board/amcc/canyonlands/u-boot.lds
 delete mode 100644 board/netstal/common/hcu_flash.c
 create mode 100644 board/netstal/mcu25/Makefile
 create mode 100644 board/netstal/mcu25/README.txt
 create mode 100644 board/netstal/mcu25/config.mk
 create mode 100644 board/netstal/mcu25/mcu25.c
 create mode 100644 board/netstal/mcu25/u-boot.lds
 create mode 100644 drivers/rtc/m41t62.c
 create mode 100644 include/configs/canyonlands.h
 create mode 100644 include/configs/mcu25.h
 create mode 100644 nand_spl/board/amcc/canyonlands/Makefile
 create mode 100644 nand_spl/board/amcc/canyonlands/config.mk
 create mode 100644 nand_spl/board/amcc/canyonlands/ddr2_fixed.c
 create mode 100644 nand_spl/board/amcc/canyonlands/u-boot.lds

  parent reply	other threads:[~2008-03-15  7:00 UTC|newest]

Thread overview: 154+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2007-04-23 12:32 [U-Boot-Users] [MPC82xx] Fixes for MPC8272 Wolfgang Denk
2007-04-23 13:16 ` [U-Boot-Users] [PPC4xx] Please pull git://www.denx.de/git/u-boot-nand-flash.git Stefan Roese
2007-04-23 13:41   ` [U-Boot-Users] Please pull git://www.denx.de/git/u-boot-testing.git Stefan Roese
2007-05-05 15:31   ` [U-Boot-Users] [PPC4xx] Please pull git://www.denx.de/git/u-boot-nand-flash.git Wolfgang Denk
2007-05-18  9:21   ` [U-Boot-Users] [PPC4xx] Please pull git://www.denx.de/git/u-boot-ppc4xx.git Stefan Roese
2007-05-24  9:12     ` Stefan Roese
2007-06-01 14:27       ` Stefan Roese
2007-06-06  9:50         ` Stefan Roese
2007-06-19 15:49           ` Stefan Roese
2007-06-20 16:15             ` Wolfgang Denk
2007-06-22  1:09             ` Kim Phillips
2007-06-22  5:41               ` Stefan Roese
2007-06-22 14:18                 ` Stefan Roese
2007-06-22 15:34                   ` Kim Phillips
2007-06-22 15:05             ` Stefan Roese
2007-06-22 15:32               ` [U-Boot-Users] [PATCH] ppc7xx: Update CPCI750 board Stefan Roese
2007-08-16  9:18                 ` Wolfgang Denk
2007-08-02  6:47             ` [U-Boot-Users] [PPC4xx] Please pull git://www.denx.de/git/u-boot-ppc4xx.git Stefan Roese
2007-08-14 14:39               ` Stefan Roese
2007-08-14 18:38                 ` Wolfgang Denk
2007-08-16  6:58                 ` [U-Boot-Users] [NAND] Please pull git://www.denx.de/git/u-boot-nand-flash.git Stefan Roese
2007-08-16  9:52                   ` Wolfgang Denk
2007-08-16 17:53                 ` [U-Boot-Users] [PPC4xx] Please pull git://www.denx.de/git/u-boot-ppc4xx.git Stefan Roese
2007-08-18 12:44                   ` [U-Boot-Users] [ColdFire] Please pull git://www.denx.de/git/u-boot-coldfire.git Stefan Roese
2007-08-18 19:57                     ` Wolfgang Denk
2007-08-18 19:37                   ` [U-Boot-Users] [PPC4xx] Please pull git://www.denx.de/git/u-boot-ppc4xx.git Wolfgang Denk
2007-08-28 13:12                   ` Stefan Roese
2007-08-28 22:54                     ` Wolfgang Denk
2007-09-02 12:05                     ` Stefan Roese
2007-09-06 22:07                       ` Wolfgang Denk
2007-09-17  6:50                       ` [U-Boot-Users] [NAND] Please pull git://www.denx.de/git/u-boot-nand-flash.git Stefan Roese
2007-10-13 19:43                         ` Wolfgang Denk
2007-09-27 11:59                       ` [U-Boot-Users] [PPC4xx] Please pull git://www.denx.de/git/u-boot-ppc4xx.git Stefan Roese
2007-10-02  9:47                         ` Stefan Roese
2007-10-02 17:57                           ` Wolfgang Denk
2007-10-15  9:57                 ` Stefan Roese
2007-10-15 10:56                   ` Wolfgang Denk
2007-10-18  5:59                   ` Stefan Roese
2007-10-18 20:03                     ` Wolfgang Denk
2007-12-17 14:56                 ` [U-Boot-Users] [cfi-flash] Please pull git://www.denx.de/git/u-boot-cfi-flash.git Stefan Roese
2007-12-26 23:09                   ` Wolfgang Denk
2007-12-31  6:36                   ` Stefan Roese
2007-12-31  7:13                     ` [U-Boot-Users] [ppc4xx] Please pull git://www.denx.de/git/u-boot-ppc4xx.git Stefan Roese
2007-12-31 13:59                       ` gvb.uboot
2008-01-02 11:41                       ` Wolfgang Denk
2008-01-04 11:08                       ` Stefan Roese
2008-01-05  9:21                         ` Stefan Roese
2008-01-08 12:42                           ` Wolfgang Denk
2008-01-09 10:01                           ` Stefan Roese
2008-01-09 10:24                             ` Wolfgang Denk
2008-01-09 18:38                             ` Larry Johnson
2008-01-09 18:59                               ` Stefan Roese
2008-01-09 19:05                               ` Jerry Van Baren
2008-02-14 10:55                             ` Stefan Roese
2008-02-14 23:23                               ` Wolfgang Denk
2008-02-16  6:11                               ` Stefan Roese
2008-02-16 22:59                                 ` Wolfgang Denk
2008-02-21 16:19                                 ` [U-Boot-Users] [cfi-flash] Please pull git://www.denx.de/git/u-boot-cfi-flash.git Stefan Roese
2008-02-22 12:02                                   ` Wolfgang Denk
2008-02-25 15:52                                 ` [U-Boot-Users] [ppc4xx] Please pull git://www.denx.de/git/u-boot-ppc4xx.git Stefan Roese
2008-03-02 20:30                                   ` Wolfgang Denk
2008-03-07  8:23                                   ` Stefan Roese
2008-03-08  9:52                                     ` Wolfgang Denk
2008-03-15  7:00                                     ` Stefan Roese [this message]
2008-03-15 23:42                                       ` Wolfgang Denk
2008-03-19 12:46                                       ` [U-Boot-Users] [cfi-flash] Please pull git://www.denx.de/git/u-boot-cfi-flash.git Stefan Roese
2008-03-22 23:53                                         ` Wolfgang Denk
2008-03-27 10:30                                       ` [U-Boot-Users] [ppc4xx] Please pull git://www.denx.de/git/u-boot-ppc4xx.git Stefan Roese
2008-03-29  5:21                                         ` [U-Boot-Users] [cfi-flash] Please pull git://www.denx.de/git/u-boot-cfi-flash.git Stefan Roese
2008-03-29  5:54                                           ` Stefan Roese
2008-04-07 21:56                                             ` Wolfgang Denk
2008-03-31 10:28                                         ` [U-Boot-Users] [ppc4xx] Please pull git://www.denx.de/git/u-boot-ppc4xx.git Stefan Roese
2008-04-07 21:54                                           ` Wolfgang Denk
2008-04-09 10:58                                           ` Stefan Roese
2008-04-11 14:49                                             ` Stefan Roese
2008-04-12  7:02                                               ` [U-Boot-Users] [cfi-flash] Please pull git://www.denx.de/git/u-boot-cfi-flash.git Stefan Roese
2008-04-13 17:18                                                 ` Wolfgang Denk
2008-04-25 13:55                                                 ` Stefan Roese
2008-04-25 22:07                                                   ` Wolfgang Denk
2008-04-13 17:17                                               ` [U-Boot-Users] [ppc4xx] Please pull git://www.denx.de/git/u-boot-ppc4xx.git Wolfgang Denk
2008-04-18 15:02                                               ` Stefan Roese
2008-04-22 13:51                                                 ` Stefan Roese
2008-04-22 15:28                                                   ` Wolfgang Denk
2008-04-25 11:40                                                   ` Stefan Roese
2008-04-25 22:06                                                     ` Wolfgang Denk
2008-04-13 17:17                                             ` Wolfgang Denk
2008-01-11 15:14                       ` Stefan Roese
2008-01-11 23:16                         ` Wolfgang Denk
2008-01-17 15:07                           ` Stefan Roese
2008-01-23 13:20                             ` Wolfgang Denk
2008-01-13 14:11                         ` [U-Boot-Users] [cfi-flash] Please pull git://www.denx.de/git/u-boot-cfi-flash.git Stefan Roese
2008-01-13 15:53                           ` Wolfgang Denk
2008-01-16 13:33                           ` [U-Boot-Users] [nand-flash] Please pull git://www.denx.de/git/u-boot-nand-flash.git Stefan Roese
2008-01-16 14:05                             ` Wolfgang Denk
2008-04-18 14:30                             ` Stefan Roese
2008-01-14  9:11                         ` [U-Boot-Users] [ppc4xx] Please pull git://www.denx.de/git/u-boot-ppc4xx.git Stefan Roese
2008-01-14  9:53                           ` Wolfgang Denk
2008-01-02 11:40                     ` [U-Boot-Users] [cfi-flash] Please pull git://www.denx.de/git/u-boot-cfi-flash.git Wolfgang Denk
  -- strict thread matches above, loose matches on Subject: below --
2008-07-18 14:04 [U-Boot-Users] [ppc4xx] Please pull git://www.denx.de/git/u-boot-ppc4xx.git Stefan Roese
2008-07-20 20:56 ` Wolfgang Denk
2008-07-11 13:10 Stefan Roese
2008-07-13 12:43 ` Wolfgang Denk
2008-07-10  8:17 Stefan Roese
2008-07-10  8:51 ` Wolfgang Denk
2008-06-30 13:28 Stefan Roese
2008-06-30 14:01 ` Detlev Zundel
2008-06-28 12:12 Stefan Roese
2008-06-12 13:52 Stefan Roese
2008-06-19 20:58 ` Wolfgang Denk
2008-06-09  7:20 Stefan Roese
2008-06-11 20:14 ` Wolfgang Denk
2008-06-03 18:41 Stefan Roese
2008-05-21 15:42 Stefan Roese
2008-06-04 22:05 ` Wolfgang Denk
2008-05-19  5:30 Stefan Roese
2008-05-19  7:45 ` Wolfgang Denk
2008-05-16 19:09 Stefan Roese
2008-05-18 20:27 ` Wolfgang Denk
2008-05-14 11:45 Stefan Roese
2008-05-14 12:09 ` Wolfgang Denk
2008-05-10  8:40 Stefan Roese
2008-05-11 23:03 ` Wolfgang Denk
2008-05-08 14:39 Stefan Roese
2008-05-09 22:23 ` Wolfgang Denk
2008-04-30 14:14 Stefan Roese
2008-05-03 18:47 ` Wolfgang Denk
2008-04-29 17:14 Stefan Roese
2008-04-29 18:07 ` Wolfgang Denk
2007-11-13  7:23 [U-Boot-Users] [PPC4xx] " Stefan Roese
2007-11-17  0:36 ` Wolfgang Denk
2007-04-25 15:07 [U-Boot-Users] What's new in u-boot-testing Stefan Roese
2007-04-29 12:04 ` Stefan Roese
2007-04-29 14:43   ` [U-Boot-Users] [PPC4xx] Please pull git://www.denx.de/git/u-boot-ppc4xx.git Stefan Roese
2007-05-05 16:23     ` Wolfgang Denk
2007-03-24 15:03 Stefan Roese
2007-03-21 14:03 Stefan Roese
2007-03-21 22:28 ` Wolfgang Denk
2007-03-22  6:19   ` Stefan Roese
2007-03-22 15:57     ` Timur Tabi
2007-03-22 16:11       ` Stefan Roese
2007-03-16 20:18 Stefan Roese
2007-03-16 21:29 ` Wolfgang Denk
2007-03-08 22:03 Stefan Roese
2007-03-08 22:11 ` Wolfgang Denk
2007-03-08  9:35 Stefan Roese
2007-03-08 10:46 ` Wolfgang Denk
2007-03-08 14:50 ` Sam Song
2007-03-08 15:00   ` Stefan Roese
2007-03-08 15:27     ` Sam Song
2007-03-08 16:55     ` Wolfgang Denk
2007-03-07 20:17 Stefan Roese
2007-03-07 21:00 ` Wolfgang Denk
2007-03-31 11:52 ` Stefan Roese
2007-04-04  0:19   ` Wolfgang Denk
2007-04-18 10:19     ` Stefan Roese
2007-04-18 14:20       ` 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=200803150800.56448.sr@denx.de \
    --to=sr@denx.de \
    --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 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.