public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot] [GIT PULL] Pull request u-boot-mpc85xx.git
@ 2011-04-29 12:57 Kumar Gala
  0 siblings, 0 replies; 7+ messages in thread
From: Kumar Gala @ 2011-04-29 12:57 UTC (permalink / raw)
  To: u-boot

The following changes since commit a000b7950da938d2df37ec5e081cd0680e6e4bbe:

  common: add a grepenv command (2011-04-28 01:00:07 +0200)

are available in the git repository at:
  git://git.denx.de/u-boot-mpc85xx.git master

Andy Fleming (1):
      tsec: Fix MDIO on devices with eTSEC2

Dipen Dudhat (2):
      powerpc/85xx: Change CS timing params before changing CS properties on IFC
      powerpc/85xx: Added PMUXCR1 and PMUXCR2 defines for P1010/P1014 SoC

Emil Medve (2):
      powerpc/85xx: fsl_corenet_serdes code rework
      p4080/serdes: Implement the XAUI workaround for SERDES9 erratum

Haiying Wang (1):
      powerpc/85xx: Add device tree fixup for bman portal

Jerry Huang (1):
      powerpc/85xx: Enable eSPI controller & SPI boot support on P2020DS

Jiang Yutang (1):
      powerpc/85xx: Enable eSPI support on P1022DS

Kim Phillips (1):
      powerpc/85xx: handle both "secX.Y" and "sec-vX.Y" properties

Kumar Gala (3):
      powerpc: Add P3041DS/P5020DS board support (uses corenet_ds code)
      powerpc/85xx: Change timebase divisor to be defined per processor
      powerpc/85xx: Bump up the CONFIG_SYS_BOOTM_LEN to 64M on FSL 85xx boards

Lei Xu (1):
      powerpc/85xx: Enable ESDHC111 erratum on P2040/P3041/P5010/P5020 SoCs

Matthew McClintock (1):
      powerpc/85xx: Don't set FT_FSL_PCI_SETUP if CONFIG_PCI is not set

Mingkai Hu (1):
      powerpc: eSPI and eSPI controller support

Priyanka Jain (2):
      powerpc/85xx: Add support to save environment in SD card on p1_p2_rdb
      powerpc/85xx: Enable eSPI support for p1_p2_rdb

Ramneek Mehresh (1):
      powerpc/85xx: Add support for 2nd USB controller on p1_p2_rdb

Roy Zang (1):
      powerpc/85xx: Enable Internal USB PHY for p2040, p3041, p5010 and p5020

Timur Tabi (6):
      powerpc/86xx: remove empty board_early_init_f()
      powerpc/fsl: add 'pixis_reset dump' command
      powerpc/85xx: Implement work-around for P4080 erratum SERDES-A005
      powerpc/85xx: Display SERDES 8 erratum warning if banks are not disabled
      powerpc/85xx: Extend SERDES9 erratum work-around to SGMII, SRIO, and AURORA
      powerpc/85xx: Implement work-around for P4080 erratum SERDES-A001

Tr?benbach, Ralf (1):
      powerpc/85xx: Fix Wrong PCIe 3 virtual address on corenet_ds platforms

 README                                        |    7 +
 arch/powerpc/cpu/mpc85xx/cmd_errata.c         |    6 +
 arch/powerpc/cpu/mpc85xx/cpu.c                |   11 +-
 arch/powerpc/cpu/mpc85xx/cpu_init.c           |   17 ++
 arch/powerpc/cpu/mpc85xx/fdt.c                |    1 +
 arch/powerpc/cpu/mpc85xx/fsl_corenet_serdes.c |  315 +++++++++++++++++++++--
 arch/powerpc/cpu/mpc85xx/fsl_corenet_serdes.h |    2 +-
 arch/powerpc/cpu/mpc85xx/portals.c            |   30 +++
 arch/powerpc/cpu/mpc8xxx/fsl_ifc.c            |   31 ++--
 arch/powerpc/include/asm/config.h             |    7 +
 arch/powerpc/include/asm/config_mpc85xx.h     |   21 ++
 arch/powerpc/include/asm/fsl_liodn.h          |   13 +
 arch/powerpc/include/asm/fsl_pci.h            |    4 +-
 arch/powerpc/include/asm/fsl_portals.h        |    3 +-
 arch/powerpc/include/asm/fsl_serdes.h         |    7 +
 arch/powerpc/include/asm/immap_85xx.h         |   89 +++++++
 board/freescale/common/Makefile               |    2 +
 board/freescale/common/ngpixis.c              |   58 +++++
 board/freescale/common/ngpixis.h              |    7 +-
 board/freescale/corenet_ds/Makefile           |    2 +
 board/freescale/corenet_ds/corenet_ds.c       |   45 +++-
 board/freescale/corenet_ds/law.c              |    5 +-
 board/freescale/corenet_ds/p3041ds_ddr.c      |   14 +
 board/freescale/corenet_ds/p5020ds_ddr.c      |   18 ++
 board/freescale/corenet_ds/tlb.c              |   10 +
 board/freescale/mpc8641hpcn/mpc8641hpcn.c     |    5 -
 board/freescale/p1022ds/p1022ds.c             |    3 +
 board/freescale/p1_p2_rdb/p1_p2_rdb.c         |   14 +
 boards.cfg                                    |    3 +
 drivers/spi/Makefile                          |    1 +
 drivers/spi/fsl_espi.c                        |  334 +++++++++++++++++++++++++
 include/configs/MPC8536DS.h                   |    6 +-
 include/configs/MPC8540ADS.h                  |    6 +-
 include/configs/MPC8541CDS.h                  |    6 +-
 include/configs/MPC8544DS.h                   |    6 +-
 include/configs/MPC8548CDS.h                  |    6 +-
 include/configs/MPC8555CDS.h                  |    6 +-
 include/configs/MPC8560ADS.h                  |    6 +-
 include/configs/MPC8568MDS.h                  |    6 +-
 include/configs/MPC8569MDS.h                  |    6 +-
 include/configs/MPC8572DS.h                   |    6 +-
 include/configs/MPC8641HPCN.h                 |    2 -
 include/configs/P1022DS.h                     |   21 ++-
 include/configs/P1_P2_RDB.h                   |   31 ++-
 include/configs/P2020DS.h                     |   34 +++-
 include/configs/P3041DS.h                     |   37 +++
 include/configs/P5020DS.h                     |   37 +++
 include/configs/corenet_ds.h                  |   46 +++-
 include/spi.h                                 |    7 -
 include/tsec.h                                |    2 +-
 50 files changed, 1243 insertions(+), 119 deletions(-)
 create mode 100644 board/freescale/corenet_ds/p3041ds_ddr.c
 create mode 100644 board/freescale/corenet_ds/p5020ds_ddr.c
 create mode 100644 drivers/spi/fsl_espi.c
 create mode 100644 include/configs/P3041DS.h
 create mode 100644 include/configs/P5020DS.h

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

* [U-Boot] [GIT PULL] Pull request u-boot-mpc85xx.git
@ 2011-04-29 20:45 Kumar Gala
  2011-04-30 21:03 ` Wolfgang Denk
  0 siblings, 1 reply; 7+ messages in thread
From: Kumar Gala @ 2011-04-29 20:45 UTC (permalink / raw)
  To: u-boot

[ w/ L2 patch dropped ]

The following changes since commit a000b7950da938d2df37ec5e081cd0680e6e4bbe:

  common: add a grepenv command (2011-04-28 01:00:07 +0200)

are available in the git repository at:
  git://git.denx.de/u-boot-mpc85xx.git master

Andy Fleming (1):
      tsec: Fix MDIO on devices with eTSEC2

Dipen Dudhat (2):
      powerpc/85xx: Change CS timing params before changing CS properties on IFC
      powerpc/85xx: Added PMUXCR1 and PMUXCR2 defines for P1010/P1014 SoC

Emil Medve (2):
      powerpc/85xx: fsl_corenet_serdes code rework
      p4080/serdes: Implement the XAUI workaround for SERDES9 erratum

Haiying Wang (1):
      powerpc/85xx: Add device tree fixup for bman portal

Jerry Huang (1):
      powerpc/85xx: Enable eSPI controller & SPI boot support on P2020DS

Jiang Yutang (1):
      powerpc/85xx: Enable eSPI support on P1022DS

Kim Phillips (1):
      powerpc/85xx: handle both "secX.Y" and "sec-vX.Y" properties

Kumar Gala (3):
      powerpc: Add P3041DS/P5020DS board support (uses corenet_ds code)
      powerpc/85xx: Change timebase divisor to be defined per processor
      powerpc/85xx: Bump up the CONFIG_SYS_BOOTM_LEN to 64M on FSL 85xx boards

Kyle Moffett (1):
      fsl-ddr: Fix mixed-case macro names

Lei Xu (1):
      powerpc/85xx: Enable ESDHC111 erratum on P2040/P3041/P5010/P5020 SoCs

Matthew McClintock (1):
      powerpc/85xx: Don't set FT_FSL_PCI_SETUP if CONFIG_PCI is not set

Mingkai Hu (1):
      powerpc: eSPI and eSPI controller support

Priyanka Jain (2):
      powerpc/85xx: Add support to save environment in SD card on p1_p2_rdb
      powerpc/85xx: Enable eSPI support for p1_p2_rdb

Ramneek Mehresh (1):
      powerpc/85xx: Add support for 2nd USB controller on p1_p2_rdb

Roy Zang (1):
      powerpc/85xx: Enable Internal USB PHY for p2040, p3041, p5010 and p5020

Timur Tabi (6):
      powerpc/86xx: remove empty board_early_init_f()
      powerpc/fsl: add 'pixis_reset dump' command
      powerpc/85xx: Implement work-around for P4080 erratum SERDES-A005
      powerpc/85xx: Display SERDES 8 erratum warning if banks are not disabled
      powerpc/85xx: Extend SERDES9 erratum work-around to SGMII, SRIO, and AURORA
      powerpc/85xx: Implement work-around for P4080 erratum SERDES-A001

Tr?benbach, Ralf (1):
      powerpc/85xx: Fix Wrong PCIe 3 virtual address on corenet_ds platforms

 README                                        |    7 +
 arch/powerpc/cpu/mpc85xx/cmd_errata.c         |    6 +
 arch/powerpc/cpu/mpc85xx/cpu.c                |   11 +-
 arch/powerpc/cpu/mpc85xx/cpu_init.c           |   17 ++
 arch/powerpc/cpu/mpc85xx/fdt.c                |    1 +
 arch/powerpc/cpu/mpc85xx/fsl_corenet_serdes.c |  315 +++++++++++++++++++++--
 arch/powerpc/cpu/mpc85xx/fsl_corenet_serdes.h |    2 +-
 arch/powerpc/cpu/mpc85xx/portals.c            |   30 +++
 arch/powerpc/cpu/mpc8xxx/ddr/util.c           |   18 +-
 arch/powerpc/cpu/mpc8xxx/fsl_ifc.c            |   31 ++--
 arch/powerpc/include/asm/config.h             |    7 +
 arch/powerpc/include/asm/config_mpc85xx.h     |   21 ++
 arch/powerpc/include/asm/fsl_liodn.h          |   13 +
 arch/powerpc/include/asm/fsl_pci.h            |    4 +-
 arch/powerpc/include/asm/fsl_portals.h        |    3 +-
 arch/powerpc/include/asm/fsl_serdes.h         |    7 +
 arch/powerpc/include/asm/immap_85xx.h         |   89 +++++++
 board/freescale/common/Makefile               |    2 +
 board/freescale/common/ngpixis.c              |   58 +++++
 board/freescale/common/ngpixis.h              |    7 +-
 board/freescale/corenet_ds/Makefile           |    2 +
 board/freescale/corenet_ds/corenet_ds.c       |   45 +++-
 board/freescale/corenet_ds/law.c              |    5 +-
 board/freescale/corenet_ds/p3041ds_ddr.c      |   14 +
 board/freescale/corenet_ds/p5020ds_ddr.c      |   18 ++
 board/freescale/corenet_ds/tlb.c              |   10 +
 board/freescale/mpc8641hpcn/mpc8641hpcn.c     |    5 -
 board/freescale/p1022ds/p1022ds.c             |    3 +
 board/freescale/p1_p2_rdb/p1_p2_rdb.c         |   14 +
 boards.cfg                                    |    3 +
 drivers/spi/Makefile                          |    1 +
 drivers/spi/fsl_espi.c                        |  334 +++++++++++++++++++++++++
 include/configs/MPC8536DS.h                   |    6 +-
 include/configs/MPC8540ADS.h                  |    6 +-
 include/configs/MPC8541CDS.h                  |    6 +-
 include/configs/MPC8544DS.h                   |    6 +-
 include/configs/MPC8548CDS.h                  |    6 +-
 include/configs/MPC8555CDS.h                  |    6 +-
 include/configs/MPC8560ADS.h                  |    6 +-
 include/configs/MPC8568MDS.h                  |    6 +-
 include/configs/MPC8569MDS.h                  |    6 +-
 include/configs/MPC8572DS.h                   |    6 +-
 include/configs/MPC8641HPCN.h                 |    2 -
 include/configs/P1022DS.h                     |   21 ++-
 include/configs/P1_P2_RDB.h                   |   31 ++-
 include/configs/P2020DS.h                     |   34 +++-
 include/configs/P3041DS.h                     |   37 +++
 include/configs/P5020DS.h                     |   37 +++
 include/configs/corenet_ds.h                  |   46 +++-
 include/spi.h                                 |    7 -
 include/tsec.h                                |    2 +-
 51 files changed, 1252 insertions(+), 128 deletions(-)
 create mode 100644 board/freescale/corenet_ds/p3041ds_ddr.c
 create mode 100644 board/freescale/corenet_ds/p5020ds_ddr.c
 create mode 100644 drivers/spi/fsl_espi.c
 create mode 100644 include/configs/P3041DS.h
 create mode 100644 include/configs/P5020DS.h

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

* [U-Boot] [GIT PULL] Pull request u-boot-mpc85xx.git
  2011-04-29 20:45 [U-Boot] [GIT PULL] Pull request u-boot-mpc85xx.git Kumar Gala
@ 2011-04-30 21:03 ` Wolfgang Denk
  2011-05-02 15:00   ` Kumar Gala
  0 siblings, 1 reply; 7+ messages in thread
From: Wolfgang Denk @ 2011-04-30 21:03 UTC (permalink / raw)
  To: u-boot

Dear Kumar Gala,

In message <alpine.LFD.2.00.1104291544410.28705@right.am.freescale.net> you wrote:
>
> The following changes since commit a000b7950da938d2df37ec5e081cd0680e6e4bbe:
...
> Tr?benbach, Ralf (1):
>       powerpc/85xx: Fix Wrong PCIe 3 virtual address on corenet_ds platforms

It appears you are changing the commit messages without notice?

The posted subject was:

QorIQ corenet_ds.h: Wrong PCIe 3 virtual address

Please don't - this makes it very difficult to match your commits to
postings on the ML.

>  51 files changed, 1252 insertions(+), 128 deletions(-)

Applied.

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
"Oh dear, I think you'll find reality's on the blink again."
- Marvin The Paranoid Android

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

* [U-Boot] [GIT PULL] Pull request u-boot-mpc85xx.git
  2011-04-30 21:03 ` Wolfgang Denk
@ 2011-05-02 15:00   ` Kumar Gala
  2011-05-02 15:42     ` Tabi Timur-B04825
  2011-05-02 17:06     ` Wolfgang Denk
  0 siblings, 2 replies; 7+ messages in thread
From: Kumar Gala @ 2011-05-02 15:00 UTC (permalink / raw)
  To: u-boot


On Apr 30, 2011, at 4:03 PM, Wolfgang Denk wrote:

> Dear Kumar Gala,
> 
> In message <alpine.LFD.2.00.1104291544410.28705@right.am.freescale.net> you wrote:
>> 
>> The following changes since commit a000b7950da938d2df37ec5e081cd0680e6e4bbe:
> ...
>> Tr?benbach, Ralf (1):
>>      powerpc/85xx: Fix Wrong PCIe 3 virtual address on corenet_ds platforms
> 
> It appears you are changing the commit messages without notice?
> 
> The posted subject was:
> 
> QorIQ corenet_ds.h: Wrong PCIe 3 virtual address
> 
> Please don't - this makes it very difficult to match your commits to
> postings on the ML.
> 
>> 51 files changed, 1252 insertions(+), 128 deletions(-)
> 
> Applied.
> 
> Best regards,
> 
> Wolfgang Denk

I thought that was less of an issue because of our use of patchworks.

- k

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

* [U-Boot] [GIT PULL] Pull request u-boot-mpc85xx.git
  2011-05-02 15:00   ` Kumar Gala
@ 2011-05-02 15:42     ` Tabi Timur-B04825
  2011-05-02 17:05       ` Wolfgang Denk
  2011-05-02 17:06     ` Wolfgang Denk
  1 sibling, 1 reply; 7+ messages in thread
From: Tabi Timur-B04825 @ 2011-05-02 15:42 UTC (permalink / raw)
  To: u-boot

On Mon, May 2, 2011 at 10:00 AM, Kumar Gala <galak@kernel.crashing.org> wrote:

> I thought that was less of an issue because of our use of patchworks.

How?  Patchwork uses the same subject line as the email.  There's
still the problem of trying to correlate the actual commit to the
entry in patchwork.

On the other hand, I don't know of any good way to correct a patch's
subject line without having the patch re-submitted to the mailing
list.

-- 
Timur Tabi
Linux kernel developer at Freescale

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

* [U-Boot] [GIT PULL] Pull request u-boot-mpc85xx.git
  2011-05-02 15:42     ` Tabi Timur-B04825
@ 2011-05-02 17:05       ` Wolfgang Denk
  0 siblings, 0 replies; 7+ messages in thread
From: Wolfgang Denk @ 2011-05-02 17:05 UTC (permalink / raw)
  To: u-boot

Dear Tabi Timur-B04825,

In message <BANLkTimz0ifsCmF9oo-Q_9Sv9wC0rQtMQQ@mail.gmail.com> you wrote:
>
> How?  Patchwork uses the same subject line as the email.  There's
> still the problem of trying to correlate the actual commit to the
> entry in patchwork.
> 
> On the other hand, I don't know of any good way to correct a patch's
> subject line without having the patch re-submitted to the mailing
> list.

It's possible to match a patch based on it's content.

For example, you can use something like

	HASH=$(/home/wd/bin/pwparser.py --hash <$MBOX)
	pwclient apply -h $HASH
	pwclient update -s 'Accepted' -h $HASH

[error checking omitted here]

to apply and update the status of a patch in PW.  So you can of course
find out which patch it was based on the hash, which depends on the
content, not the subject.

But this is way too expensive and time consuming for regular work.

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@denx.de
Q:  Why do mountain climbers rope themselves together?
A:  To prevent the sensible ones from going home.

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

* [U-Boot] [GIT PULL] Pull request u-boot-mpc85xx.git
  2011-05-02 15:00   ` Kumar Gala
  2011-05-02 15:42     ` Tabi Timur-B04825
@ 2011-05-02 17:06     ` Wolfgang Denk
  1 sibling, 0 replies; 7+ messages in thread
From: Wolfgang Denk @ 2011-05-02 17:06 UTC (permalink / raw)
  To: u-boot

Dear Kumar Gala,

In message <9BC90F9C-896B-47E9-B445-2692AAD1FB30@kernel.crashing.org> you wrote:
> 
> > It appears you are changing the commit messages without notice?
> > 
> > The posted subject was:
> > 
> > QorIQ corenet_ds.h: Wrong PCIe 3 virtual address
> > 
> > Please don't - this makes it very difficult to match your commits to
> > postings on the ML.
...
> I thought that was less of an issue because of our use of patchworks.

Think that thought to an end, please.  It is counterproductive.

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
The human mind ordinarily operates at only ten percent of its capaci-
ty - the rest is overhead for the operating system.

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

end of thread, other threads:[~2011-05-02 17:06 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-04-29 20:45 [U-Boot] [GIT PULL] Pull request u-boot-mpc85xx.git Kumar Gala
2011-04-30 21:03 ` Wolfgang Denk
2011-05-02 15:00   ` Kumar Gala
2011-05-02 15:42     ` Tabi Timur-B04825
2011-05-02 17:05       ` Wolfgang Denk
2011-05-02 17:06     ` Wolfgang Denk
  -- strict thread matches above, loose matches on Subject: below --
2011-04-29 12:57 Kumar Gala

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