public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot-Users] [PATCH 00/03] Add MPC8641HPCN board port
@ 2006-08-29 17:41 Jon Loeliger
  0 siblings, 0 replies; 5+ messages in thread
From: Jon Loeliger @ 2006-08-29 17:41 UTC (permalink / raw)
  To: u-boot


Wolfgang,

    This set of patches adds the MPC8641HPCN board port.
    Booting using the Flat Device Tree assumes that Matthew
    McClintock's patches of June 27 have been applied.

    All of these patches can be inspected in plain text
    and downloaded here:

        http://www.jdl.com/software/patches

    Furthermore these patches plus Matthew's, can be obtained
    directly from the u-boot-86xx.git tree found on jdl.com:

    Browse it:  http://www.jdl.com/git_repos

    Clone it:   git://www.jdl.com/software/u-boot-86xx.git
               http://www.jdl.com/software/u-boot-86xx.git

Thanks,
jdl



CHANGELOG:

* Add MPC8641HPCN board port
  - Add base level mpc86xx CPU support
  - Add MPC8641 HPCN board support
  - Support Flat Device Tree booting via downloaded DTB file
  - Add AHCI S-ATA and PCI-Express
  - Supports reset into alternate flash bank



 MAINTAINERS                     |    2
 Makefile                        |   11
 board/mpc8641hpcn/Makefile      |   49 +
 board/mpc8641hpcn/config.mk     |   31 +
 board/mpc8641hpcn/init.S        |  180 +++++
 board/mpc8641hpcn/mpc8641hpcn.c |  426 ++++++++++++
 board/mpc8641hpcn/pixis.c       |  321 +++++++++
 board/mpc8641hpcn/pixis.h       |   33 +
 board/mpc8641hpcn/sys_eeprom.c  |  256 +++++++
 board/mpc8641hpcn/u-boot.lds    |  148 ++++
 common/Makefile                 |    2
 common/cmd_boot.c               |    2
 common/cmd_mac.c                |   66 ++
 common/cmd_scsi.c               |    7
 cpu/mpc86xx/Makefile            |   48 +
 cpu/mpc86xx/cache.S             |  374 +++++++++++
 cpu/mpc86xx/config.mk           |   26 +
 cpu/mpc86xx/cpu.c               |  307 +++++++++
 cpu/mpc86xx/cpu_init.c          |  117 +++
 cpu/mpc86xx/i2c.c               |  269 ++++++++
 cpu/mpc86xx/interrupts.c        |  204 ++++++
 cpu/mpc86xx/pci.c               |  146 ++++
 cpu/mpc86xx/pcie_indirect.c     |  199 ++++++
 cpu/mpc86xx/resetvec.S          |    2
 cpu/mpc86xx/spd_sdram.c         | 1332 ++++++++++++++++++++++++++++++++++++++
 cpu/mpc86xx/speed.c             |  127 ++++
 cpu/mpc86xx/start.S             | 1227 +++++++++++++++++++++++++++++++++++
 cpu/mpc86xx/traps.c             |  226 ++++++
 doc/README.mpc8641hpcn          |  123 ++++
 drivers/Makefile                |    2
 drivers/ahci.c                  |  702 ++++++++++++++++++++
 drivers/rtl8139.c               |    1
 drivers/tsec.c                  |   71 ++
 drivers/tsec.h                  |   20 +
 include/ahci.h                  |  190 +++++
 include/asm-ppc/immap_86xx.h    | 1364 +++++++++++++++++++++++++++++++++++++++
 include/asm-ppc/mmu.h           |   15
 include/asm-ppc/processor.h     |   18 -
 include/asm-ppc/u-boot.h        |    2
 include/common.h                |   14
 include/configs/MPC8641HPCN.h   |  641 ++++++++++++++++++
 include/mpc86xx.h               |  116 +++
 include/pci_ids.h               |    3
 lib_ppc/board.c                 |    6
 net/eth.c                       |   16
 45 files changed, 9424 insertions(+), 18 deletions(-)

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [U-Boot-Users] [PATCH 00/03] Add MPC8641HPCN board port
@ 2006-08-29 17:47 Jon Loeliger
  0 siblings, 0 replies; 5+ messages in thread
From: Jon Loeliger @ 2006-08-29 17:47 UTC (permalink / raw)
  To: u-boot

Apologies for the encoding, its a big port.

-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/x-gzip
Size: 28608 bytes
Desc: not available
Url : http://lists.denx.de/pipermail/u-boot/attachments/20060829/a1df33bc/attachment.bin 

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [U-Boot-Users] [PATCH 00/03] Add MPC8641HPCN board port
@ 2006-08-29 18:01 jdl at freescale.com
  2006-08-29 18:24 ` Wolfgang Denk
  0 siblings, 1 reply; 5+ messages in thread
From: jdl at freescale.com @ 2006-08-29 18:01 UTC (permalink / raw)
  To: u-boot

Wolfgang,

    This set of patches adds the MPC8641HPCN board port.
    Booting using the Flat Device Tree assumes that Matthew
    McClintock's patches of June 27 have been applied.

    All of these patches can be inspected in plain text
    and downloaded here:

        http://www.jdl.com/software/patches

    Furthermore these patches plus Matthew's, can be obtained
    directly from the u-boot-86xx.git tree found on jdl.com:

    Browse it:  http://www.jdl.com/git_repos

    Clone it:   git://www.jdl.com/software/u-boot-86xx.git
               http://www.jdl.com/software/u-boot-86xx.git

    Apologies for such a large encoded patch.  There were
    single files that exceeded the list post length in
    plain text form.

Thanks,
jdl



CHANGELOG:

* Add MPC8641HPCN board port
  - Add base level mpc86xx CPU support
  - Add MPC8641 HPCN board support
  - Support Flat Device Tree booting via downloaded DTB file
  - Add AHCI S-ATA and PCI-Express
  - Supports reset into alternate flash bank


 MAINTAINERS                     |    2
 Makefile                        |   11
 board/mpc8641hpcn/Makefile      |   49 +
 board/mpc8641hpcn/config.mk     |   31 +
 board/mpc8641hpcn/init.S        |  180 +++++
 board/mpc8641hpcn/mpc8641hpcn.c |  426 ++++++++++++
 board/mpc8641hpcn/pixis.c       |  321 +++++++++
 board/mpc8641hpcn/pixis.h       |   33 +
 board/mpc8641hpcn/sys_eeprom.c  |  256 +++++++
 board/mpc8641hpcn/u-boot.lds    |  148 ++++
 common/Makefile                 |    2
 common/cmd_boot.c               |    2
 common/cmd_mac.c                |   66 ++
 common/cmd_scsi.c               |    7
 cpu/mpc86xx/Makefile            |   48 +
 cpu/mpc86xx/cache.S             |  374 +++++++++++
 cpu/mpc86xx/config.mk           |   26 +
 cpu/mpc86xx/cpu.c               |  307 +++++++++
 cpu/mpc86xx/cpu_init.c          |  117 +++
 cpu/mpc86xx/i2c.c               |  269 ++++++++
 cpu/mpc86xx/interrupts.c        |  204 ++++++
 cpu/mpc86xx/pci.c               |  146 ++++
 cpu/mpc86xx/pcie_indirect.c     |  199 ++++++
 cpu/mpc86xx/resetvec.S          |    2
 cpu/mpc86xx/spd_sdram.c         | 1332 ++++++++++++++++++++++++++++++++++++++
 cpu/mpc86xx/speed.c             |  127 ++++
 cpu/mpc86xx/start.S             | 1227 +++++++++++++++++++++++++++++++++++
 cpu/mpc86xx/traps.c             |  226 ++++++
 doc/README.mpc8641hpcn          |  123 ++++
 drivers/Makefile                |    2
 drivers/ahci.c                  |  702 ++++++++++++++++++++
 drivers/rtl8139.c               |    1
 drivers/tsec.c                  |   71 ++
 drivers/tsec.h                  |   20 +
 include/ahci.h                  |  190 +++++
 include/asm-ppc/immap_86xx.h    | 1364 +++++++++++++++++++++++++++++++++++++++
 include/asm-ppc/mmu.h           |   15
 include/asm-ppc/processor.h     |   18 -
 include/asm-ppc/u-boot.h        |    2
 include/common.h                |   14
 include/configs/MPC8641HPCN.h   |  641 ++++++++++++++++++
 include/mpc86xx.h               |  116 +++
 include/pci_ids.h               |    3
 lib_ppc/board.c                 |    6
 net/eth.c                       |   16
 45 files changed, 9424 insertions(+), 18 deletions(-)

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [U-Boot-Users] [PATCH 00/03] Add MPC8641HPCN board port
  2006-08-29 18:01 [U-Boot-Users] [PATCH 00/03] Add MPC8641HPCN board port jdl at freescale.com
@ 2006-08-29 18:24 ` Wolfgang Denk
  2006-08-29 19:15   ` Jon Loeliger
  0 siblings, 1 reply; 5+ messages in thread
From: Wolfgang Denk @ 2006-08-29 18:24 UTC (permalink / raw)
  To: u-boot

In message <E1GI7uF-0001Vf-A9@jdl.com> you wrote:
> 
>     This set of patches adds the MPC8641HPCN board port.
>     Booting using the Flat Device Tree assumes that Matthew
>     McClintock's patches of June 27 have been applied.

Is there a difference between  your  two  resends  of  the  same  (?)
patches, or what was the reson for resending all parts (execpt 01/03)?

Best regards,

Wolfgang Denk

-- 
Software Engineering:  Embedded and Realtime Systems,  Embedded Linux
Phone: (+49)-8142-66989-10 Fax: (+49)-8142-66989-80 Email: wd at denx.de
Given a choice between two theories, take the one which is funnier.

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [U-Boot-Users] [PATCH 00/03] Add MPC8641HPCN board port
  2006-08-29 18:24 ` Wolfgang Denk
@ 2006-08-29 19:15   ` Jon Loeliger
  0 siblings, 0 replies; 5+ messages in thread
From: Jon Loeliger @ 2006-08-29 19:15 UTC (permalink / raw)
  To: u-boot

On Tue, 2006-08-29 at 13:24, Wolfgang Denk wrote:
> In message <E1GI7uF-0001Vf-A9@jdl.com> you wrote:
> > 
> >     This set of patches adds the MPC8641HPCN board port.
> >     Booting using the Flat Device Tree assumes that Matthew
> >     McClintock's patches of June 27 have been applied.
> 
> Is there a difference between  your  two  resends  of  the  same  (?)
> patches, or what was the reson for resending all parts (execpt 01/03)?

Apologies.  They should be identical, modulo the fact
that the post containing "Apologies for the encoding,
its a big port." is really Part 1/3 mislabeled 0/3.

Sorry.

jdl

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2006-08-29 19:15 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-08-29 18:01 [U-Boot-Users] [PATCH 00/03] Add MPC8641HPCN board port jdl at freescale.com
2006-08-29 18:24 ` Wolfgang Denk
2006-08-29 19:15   ` Jon Loeliger
  -- strict thread matches above, loose matches on Subject: below --
2006-08-29 17:47 Jon Loeliger
2006-08-29 17:41 Jon Loeliger

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox