* [U-Boot] (no subject)
@ 2011-01-18 4:45 Kumar Gala
2011-01-18 9:39 ` [U-Boot] Please pull u-boot-mpc85xx.git Kumar Gala
2011-01-19 8:37 ` [U-Boot] Pull request 85xx Wolfgang Denk
0 siblings, 2 replies; 3+ messages in thread
From: Kumar Gala @ 2011-01-18 4:45 UTC (permalink / raw)
To: u-boot
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
^ permalink raw reply [flat|nested] 3+ messages in thread
* [U-Boot] Please pull u-boot-mpc85xx.git
2011-01-18 4:45 [U-Boot] (no subject) Kumar Gala
@ 2011-01-18 9:39 ` Kumar Gala
2011-01-19 8:37 ` [U-Boot] Pull request 85xx Wolfgang Denk
1 sibling, 0 replies; 3+ messages in thread
From: Kumar Gala @ 2011-01-18 9:39 UTC (permalink / raw)
To: u-boot
(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 at lists.denx.de
> http://lists.denx.de/mailman/listinfo/u-boot
^ permalink raw reply [flat|nested] 3+ messages in thread
* [U-Boot] Pull request 85xx
2011-01-18 4:45 [U-Boot] (no subject) Kumar Gala
2011-01-18 9:39 ` [U-Boot] Please pull u-boot-mpc85xx.git Kumar Gala
@ 2011-01-19 8:37 ` Wolfgang Denk
1 sibling, 0 replies; 3+ messages in thread
From: Wolfgang Denk @ 2011-01-19 8:37 UTC (permalink / raw)
To: u-boot
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
--
DENX Software Engineering GmbH, MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-10 Fax: (+49)-8142-66989-80 Email: wd at denx.de
I can't say I've ever been lost, but I was bewildered once for three
days. - Daniel Boone (Attributed)
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2011-01-19 8:37 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-01-18 4:45 [U-Boot] (no subject) Kumar Gala
2011-01-18 9:39 ` [U-Boot] Please pull u-boot-mpc85xx.git Kumar Gala
2011-01-19 8:37 ` [U-Boot] Pull request 85xx Wolfgang Denk
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox