mbox

[U-Boot] (no subject)

Message ID Pine.LNX.4.64.1101172245100.2066@localhost.localdomain
State Superseded
Headers show

Pull-request

git://git.denx.de/u-boot-mpc85xx master

Message

Kumar Gala Jan. 18, 2011, 4:45 a.m. UTC
The following changes since commit e1ccf97c5d7651664d37c0c5aa243874b8851b2d:

  Merge branch 'master' of git://git.denx.de/u-boot-mpc85xx (2011-01-17 20:31:46 +0100)

are available in the git repository at:

  git://git.denx.de/u-boot-mpc85xx master

Haiying Wang (1):
      8xxx/ddr: add support to only compute the ddr sdram size

Kumar Gala (4):
      powerpc/85xx: Move RESET_VECTOR_ADDRESS into config.h
      powerpc/p3041: Add various p3041 specific information
      powerpc/p5020: Add various p5020 specific information
      powerpc/p2040: Add various p2040 specific information

Poonam Aggrwal (2):
      powerpc/85xx: Add Support for Freescale P1010 Processor
      powerpc/85xx: Add Support for Freescale P1014 Processor

Prabhakar (1):
      Fix wrong CONFIG_SYS_MPC85xx_SERDES1_ADDR

 arch/powerpc/cpu/mpc85xx/Makefile        |    6 +
 arch/powerpc/cpu/mpc85xx/p2040_serdes.c  |   66 +++++++++++++
 arch/powerpc/cpu/mpc85xx/p3041_ids.c     |  105 +++++++++++++++++++++
 arch/powerpc/cpu/mpc85xx/p3041_serdes.c  |  151 ++++++++++++++++++++++++++++++
 arch/powerpc/cpu/mpc85xx/p5020_ids.c     |  105 +++++++++++++++++++++
 arch/powerpc/cpu/mpc85xx/p5020_serdes.c  |  151 ++++++++++++++++++++++++++++++
 arch/powerpc/cpu/mpc85xx/u-boot.lds      |    8 +-
 arch/powerpc/cpu/mpc8xxx/cpu.c           |    6 +
 arch/powerpc/cpu/mpc8xxx/ddr/ctrl_regs.c |   10 ++-
 arch/powerpc/cpu/mpc8xxx/ddr/ddr.h       |    8 +-
 arch/powerpc/cpu/mpc8xxx/ddr/main.c      |   31 +++++-
 arch/powerpc/include/asm/config.h        |   10 ++-
 arch/powerpc/include/asm/immap_85xx.h    |    2 +-
 arch/powerpc/include/asm/processor.h     |    6 +
 board/freescale/corenet_ds/config.mk     |   27 ------
 board/freescale/mpc8536ds/config.mk      |   14 +---
 board/freescale/mpc8572ds/config.mk      |    2 -
 board/freescale/p1022ds/config.mk        |   10 --
 board/freescale/p1_p2_rdb/config.mk      |   12 ---
 board/freescale/p2020ds/config.mk        |   26 -----
 drivers/misc/fsl_law.c                   |    7 +-
 include/configs/MPC8536DS.h              |    6 +
 include/configs/MPC8572DS.h              |    4 +
 include/configs/P1022DS.h                |    4 +
 include/configs/P1_P2_RDB.h              |    6 +
 include/configs/P2020DS.h                |    4 +
 include/configs/corenet_ds.h             |    4 +
 27 files changed, 683 insertions(+), 108 deletions(-)
 create mode 100644 arch/powerpc/cpu/mpc85xx/p2040_serdes.c
 create mode 100644 arch/powerpc/cpu/mpc85xx/p3041_ids.c
 create mode 100644 arch/powerpc/cpu/mpc85xx/p3041_serdes.c
 create mode 100644 arch/powerpc/cpu/mpc85xx/p5020_ids.c
 create mode 100644 arch/powerpc/cpu/mpc85xx/p5020_serdes.c
 delete mode 100644 board/freescale/corenet_ds/config.mk
 delete mode 100644 board/freescale/p1022ds/config.mk
 delete mode 100644 board/freescale/p2020ds/config.mk

Comments

Kumar Gala Jan. 18, 2011, 9:39 a.m. UTC | #1
(forgot the subject ;)

- k

On Jan 17, 2011, at 10:45 PM, Kumar Gala wrote:

> The following changes since commit e1ccf97c5d7651664d37c0c5aa243874b8851b2d:
> 
>  Merge branch 'master' of git://git.denx.de/u-boot-mpc85xx (2011-01-17 20:31:46 +0100)
> 
> are available in the git repository at:
> 
>  git://git.denx.de/u-boot-mpc85xx master
> 
> Haiying Wang (1):
>      8xxx/ddr: add support to only compute the ddr sdram size
> 
> Kumar Gala (4):
>      powerpc/85xx: Move RESET_VECTOR_ADDRESS into config.h
>      powerpc/p3041: Add various p3041 specific information
>      powerpc/p5020: Add various p5020 specific information
>      powerpc/p2040: Add various p2040 specific information
> 
> Poonam Aggrwal (2):
>      powerpc/85xx: Add Support for Freescale P1010 Processor
>      powerpc/85xx: Add Support for Freescale P1014 Processor
> 
> Prabhakar (1):
>      Fix wrong CONFIG_SYS_MPC85xx_SERDES1_ADDR
> 
> arch/powerpc/cpu/mpc85xx/Makefile        |    6 +
> arch/powerpc/cpu/mpc85xx/p2040_serdes.c  |   66 +++++++++++++
> arch/powerpc/cpu/mpc85xx/p3041_ids.c     |  105 +++++++++++++++++++++
> arch/powerpc/cpu/mpc85xx/p3041_serdes.c  |  151 ++++++++++++++++++++++++++++++
> arch/powerpc/cpu/mpc85xx/p5020_ids.c     |  105 +++++++++++++++++++++
> arch/powerpc/cpu/mpc85xx/p5020_serdes.c  |  151 ++++++++++++++++++++++++++++++
> arch/powerpc/cpu/mpc85xx/u-boot.lds      |    8 +-
> arch/powerpc/cpu/mpc8xxx/cpu.c           |    6 +
> arch/powerpc/cpu/mpc8xxx/ddr/ctrl_regs.c |   10 ++-
> arch/powerpc/cpu/mpc8xxx/ddr/ddr.h       |    8 +-
> arch/powerpc/cpu/mpc8xxx/ddr/main.c      |   31 +++++-
> arch/powerpc/include/asm/config.h        |   10 ++-
> arch/powerpc/include/asm/immap_85xx.h    |    2 +-
> arch/powerpc/include/asm/processor.h     |    6 +
> board/freescale/corenet_ds/config.mk     |   27 ------
> board/freescale/mpc8536ds/config.mk      |   14 +---
> board/freescale/mpc8572ds/config.mk      |    2 -
> board/freescale/p1022ds/config.mk        |   10 --
> board/freescale/p1_p2_rdb/config.mk      |   12 ---
> board/freescale/p2020ds/config.mk        |   26 -----
> drivers/misc/fsl_law.c                   |    7 +-
> include/configs/MPC8536DS.h              |    6 +
> include/configs/MPC8572DS.h              |    4 +
> include/configs/P1022DS.h                |    4 +
> include/configs/P1_P2_RDB.h              |    6 +
> include/configs/P2020DS.h                |    4 +
> include/configs/corenet_ds.h             |    4 +
> 27 files changed, 683 insertions(+), 108 deletions(-)
> create mode 100644 arch/powerpc/cpu/mpc85xx/p2040_serdes.c
> create mode 100644 arch/powerpc/cpu/mpc85xx/p3041_ids.c
> create mode 100644 arch/powerpc/cpu/mpc85xx/p3041_serdes.c
> create mode 100644 arch/powerpc/cpu/mpc85xx/p5020_ids.c
> create mode 100644 arch/powerpc/cpu/mpc85xx/p5020_serdes.c
> delete mode 100644 board/freescale/corenet_ds/config.mk
> delete mode 100644 board/freescale/p1022ds/config.mk
> delete mode 100644 board/freescale/p2020ds/config.mk
> _______________________________________________
> U-Boot mailing list
> U-Boot@lists.denx.de
> http://lists.denx.de/mailman/listinfo/u-boot
Wolfgang Denk Jan. 19, 2011, 8:37 a.m. UTC | #2
Dear Kumar Gala,

In message <Pine.LNX.4.64.1101172245100.2066@localhost.localdomain> you wrote:
> The following changes since commit e1ccf97c5d7651664d37c0c5aa243874b8851b2d:
> 
>   Merge branch 'master' of git://git.denx.de/u-boot-mpc85xx (2011-01-17 20:31:46 +0100)
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-mpc85xx master
> 
> Haiying Wang (1):
>       8xxx/ddr: add support to only compute the ddr sdram size
> 
> Kumar Gala (4):
>       powerpc/85xx: Move RESET_VECTOR_ADDRESS into config.h
>       powerpc/p3041: Add various p3041 specific information
>       powerpc/p5020: Add various p5020 specific information
>       powerpc/p2040: Add various p2040 specific information
> 
> Poonam Aggrwal (2):
>       powerpc/85xx: Add Support for Freescale P1010 Processor
>       powerpc/85xx: Add Support for Freescale P1014 Processor
> 
> Prabhakar (1):
>       Fix wrong CONFIG_SYS_MPC85xx_SERDES1_ADDR

Not pulled, as I've asked for changes to the P1010 and P1014 patches.

Best regards,

Wolfgang Denk