[U-Boot-Users] 85xx: PULL request

Please pull my repository into -testing. I have merged my original 85xx repo with -testing, so there are a handful (or more) patches that tagged along from the mainline tree.
The following changes since commit 5dc210dec5bace98a50b6ba905347890091a9bb0: Ed Swarthout (1): Add simple agent/end-point configuration in PCI AutoConfig for PCI_CLASS_PROCESSOR_POWERPC.
are found in the git repository at:
git://www.denx.de/git/u-boot-mpc85xx.git
Andy Fleming (8): Fix Marvell 88e1145 PHY init code Add support for CPM device tree configuration to 8560 ADS tsec: Fix PHY code to match first driver Polished the 85xx ADS config files From: eran liberty eran.liberty@gmail.com Remove erroneous errata code from Marvel 88E1111S driver Merge branch 'testing' into working Add Marvell 1149 PHY support to the TSEC
Ed Swarthout (1): 8544ds: Fix Makefile after moving pixis to board/freescale.
Heiko Schocher (2): [PCS440EP] upgrade the PCS440EP board: [PCS440EP] get rid of CONFIG_PPC4xx_USE_SPD_DDR_INIT_HANG
Niklaus Giger (1): resubmit: ppc4xx: Remove sequoia/sequioa.h. Cleanup ppc440.h for PPC440EPX
Sergei Poselenov (1): Merged POST framework with the current TOT.
Stefan Roese (1): ppc4xx: Update lwmon5 board
Wolfgang Denk (4): Code cleanup and default config update for STC GP3 SSA board. Merge with /home/wd/git/u-boot/custodian/u-boot-ppc4xx Merge with /home/hs/Atronic/u-boot Coding style cleanup; update CHANGELOG.
CHANGELOG | 61 ++++ Makefile | 11 +- README | 85 ++++-- board/amcc/sequoia/sequoia.c | 9 +- board/amcc/sequoia/sequoia.h | 67 ---- board/esd/cpci405/cpci405.c | 48 ++-- board/freescale/mpc8544ds/Makefile | 6 +- board/hermes/hermes.c | 1 + board/logodl/logodl.c | 1 + board/lwmon5/lwmon5.c | 17 +- board/lwmon5/sdram.c | 64 ++++ board/mpc8560ads/mpc8560ads.c | 26 ++ board/pcs440ep/config.mk | 3 + board/pcs440ep/flash.c | 4 + board/pcs440ep/init.S | 41 ++- board/pcs440ep/pcs440ep.c | 495 ++++++++++++++++++++++++++++- board/pcs440ep/u-boot.lds | 1 + board/sc520_cdp/sc520_cdp.c | 1 + board/sc520_spunk/sc520_spunk.c | 1 + board/stxssa/stxssa.c | 274 ++++++++-------- common/cmd_doc.c | 19 +- common/cmd_ide.c | 60 +++- common/cmd_nand.c | 38 ++- common/cmd_net.c | 26 ++- common/cmd_reiser.c | 6 +- common/env_common.c | 2 +- cpu/ppc4xx/44x_spd_ddr.c | 28 ++- cpu/ppc4xx/44x_spd_ddr2.c | 74 +++-- cpu/ppc4xx/start.S | 8 + disk/part.c | 3 +- drivers/tsec.c | 49 +++- fs/fat/fat.c | 34 ++- include/asm-ppc/immap_85xx.h | 4 +- include/configs/MPC8540ADS.h | 4 +- include/configs/MPC8560ADS.h | 32 ++- include/configs/lwmon5.h | 16 +- include/configs/pcs440ep.h | 76 +++++- include/configs/sequoia.h | 4 + include/configs/stxssa.h | 126 ++++---- include/ppc440.h | 8 +- include/sha1.h | 115 +++++++ include/status_led.h | 7 + lib_generic/Makefile | 2 +- lib_generic/sha1.c | 413 ++++++++++++++++++++++++ lib_ppc/board.c | 5 +- net/eth.c | 10 + post/cpu/mpc8xx/Makefile | 2 +- post/{drivers => cpu/mpc8xx}/cache.c | 0 post/cpu/ppc4xx/Makefile | 3 +- post/cpu/ppc4xx/cache.c | 114 +++++++ post/cpu/ppc4xx/cache_4xx.S | 448 ++++++++++++++++++++++++++ post/cpu/ppc4xx/ether.c | 395 +++++++++++++++++++++++ post/cpu/ppc4xx/fpu.c | 8 +- post/cpu/ppc4xx/spr.c | 52 ++-- post/cpu/ppc4xx/uart.c | 3 +- post/cpu/ppc4xx/watchdog.c | 9 +- post/drivers/Makefile | 2 +- post/lib_ppc/Makefile | 1 + post/lib_ppc/fpu/20001122-1.c | 62 ++++ post/lib_ppc/fpu/20010114-2.c | 66 ++++ post/lib_ppc/fpu/20010226-1.c | 54 ++++ post/lib_ppc/fpu/980619-1.c | 60 ++++ post/lib_ppc/fpu/Makefile | 32 ++ post/lib_ppc/fpu/acc1.c | 57 ++++ post/lib_ppc/fpu/compare-fp-1.c | 225 +++++++++++++ post/lib_ppc/fpu/fpu.c | 92 ++++++ post/lib_ppc/fpu/mul-subnormal-single-1.c | 103 ++++++ tools/Makefile | 23 +- tools/ubsha1.c | 118 +++++++ 69 files changed, 3795 insertions(+), 519 deletions(-) delete mode 100644 board/amcc/sequoia/sequoia.h create mode 100644 include/sha1.h create mode 100644 lib_generic/sha1.c rename post/{drivers => cpu/mpc8xx}/cache.c (100%) create mode 100644 post/cpu/ppc4xx/cache.c create mode 100644 post/cpu/ppc4xx/cache_4xx.S create mode 100644 post/cpu/ppc4xx/ether.c create mode 100644 post/lib_ppc/fpu/20001122-1.c create mode 100644 post/lib_ppc/fpu/20010114-2.c create mode 100644 post/lib_ppc/fpu/20010226-1.c create mode 100644 post/lib_ppc/fpu/980619-1.c create mode 100644 post/lib_ppc/fpu/Makefile create mode 100644 post/lib_ppc/fpu/acc1.c create mode 100644 post/lib_ppc/fpu/compare-fp-1.c create mode 100644 post/lib_ppc/fpu/fpu.c create mode 100644 post/lib_ppc/fpu/mul-subnormal-single-1.c create mode 100644 tools/ubsha1.c

In message Pine.LNX.4.61.0708030438340.10643@ld0175-tx32.am.freescale.net you wrote:
Please pull my repository into -testing. I have merged my original 85xx repo with -testing, so there are a handful (or more) patches that tagged along from the mainline tree.
Done.
Best regards,
Wolfgang Denk

From: Wolfgang Denk
From: Fleming Andy-afleming
Please pull my repository into -testing. I have merged my original 85xx repo with -testing, so there are a handful (or more) patches
that
tagged along from the mainline tree.
Done.
Andy, when do you expect to push the remaining 85xx patches sitting in http://opensource.freescale.com/git?p=u-boot-testing.git ?
Thanks, -Ed
participants (3)
-
Andy Fleming
-
Swarthout Edward L-SWARTHOU
-
Wolfgang Denk