public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot] [PATCH v2 0/10] powerpc, 8xx: Modernise the 8xx
@ 2017-07-06  8:33 Christophe Leroy
  2017-07-06  8:33 ` [U-Boot] [PATCH v2 01/10] powerpc, 8xx: move immap.c in arch/powerpc/cpu/mpc8xx/ Christophe Leroy
                   ` (9 more replies)
  0 siblings, 10 replies; 35+ messages in thread
From: Christophe Leroy @ 2017-07-06  8:33 UTC (permalink / raw)
  To: u-boot

This patchset modernises the resurrected 8xx.

Christophe Leroy (10):
  powerpc, 8xx: move immap.c in arch/powerpc/cpu/mpc8xx/
  powerpc, 8xx: move specific reginfo
  powerpc, 8xx: Use IO accessors to access IO memory
  powerpc, 8xx: Implement GLL2 ERRATA
  powerpc, 8xx: Handle checkpatch errors and some of the warnings/checks
  powerpc, 8xx: Properly set CPM frequency in the device tree
  powerpc, 8xx: Migrate to Kconfig
  powerpc, 8xx: move FEC Ethernet driver in drivers/net
  powerpc, 8xx: move SPI driver to drivers/spi/
  powerpc, 8xx: move Serial driver to drivers/serial/

 README                                             |  49 ---
 arch/powerpc/Kconfig                               |   2 -
 arch/powerpc/cpu/mpc8xx/Kconfig                    | 157 ++++++++
 arch/powerpc/cpu/mpc8xx/Makefile                   |   5 +-
 arch/powerpc/cpu/mpc8xx/cpu.c                      | 183 ++++-----
 arch/powerpc/cpu/mpc8xx/cpu_init.c                 | 112 +++---
 arch/powerpc/cpu/mpc8xx/fdt.c                      |  10 +-
 arch/powerpc/cpu/mpc8xx/immap.c                    | 380 ++++++++++++++++++
 arch/powerpc/cpu/mpc8xx/interrupts.c               | 121 +++---
 arch/powerpc/cpu/mpc8xx/reginfo.c                  |  70 ++++
 arch/powerpc/cpu/mpc8xx/serial.c                   | 301 --------------
 arch/powerpc/cpu/mpc8xx/speed.c                    |  39 +-
 arch/powerpc/cpu/mpc8xx/traps.c                    |  37 +-
 arch/powerpc/include/asm/iopin_8xx.h               | 441 +++++++++++++--------
 arch/powerpc/include/asm/ppc.h                     |   5 -
 arch/powerpc/lib/Kconfig                           |   7 -
 arch/powerpc/lib/Makefile                          |   1 -
 arch/powerpc/lib/immap.c                           | 397 -------------------
 arch/powerpc/lib/time.c                            |   7 +-
 cmd/reginfo.c                                      |  54 +--
 drivers/i2c/soft_i2c.c                             |   2 +-
 drivers/net/Kconfig                                |  58 +++
 drivers/net/Makefile                               |   1 +
 .../cpu/mpc8xx/fec.c => drivers/net/mpc8xx_fec.c   | 369 +++++++++--------
 drivers/serial/Kconfig                             |  53 +++
 drivers/serial/Makefile                            |   1 +
 drivers/serial/serial_mpc8xx.c                     | 256 ++++++++++++
 drivers/spi/Kconfig                                |   6 +
 drivers/spi/Makefile                               |   1 +
 .../cpu/mpc8xx/spi.c => drivers/spi/mpc8xx_spi.c   | 212 +++++-----
 include/commproc.h                                 |  12 +-
 include/watchdog.h                                 |   2 +-
 scripts/config_whitelist.txt                       |  22 -
 33 files changed, 1778 insertions(+), 1595 deletions(-)
 create mode 100644 arch/powerpc/cpu/mpc8xx/immap.c
 create mode 100644 arch/powerpc/cpu/mpc8xx/reginfo.c
 delete mode 100644 arch/powerpc/cpu/mpc8xx/serial.c
 delete mode 100644 arch/powerpc/lib/Kconfig
 delete mode 100644 arch/powerpc/lib/immap.c
 rename arch/powerpc/cpu/mpc8xx/fec.c => drivers/net/mpc8xx_fec.c (62%)
 create mode 100644 drivers/serial/serial_mpc8xx.c
 rename arch/powerpc/cpu/mpc8xx/spi.c => drivers/spi/mpc8xx_spi.c (62%)

-- 
2.12.0

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

end of thread, other threads:[~2017-07-09  0:25 UTC | newest]

Thread overview: 35+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-07-06  8:33 [U-Boot] [PATCH v2 0/10] powerpc, 8xx: Modernise the 8xx Christophe Leroy
2017-07-06  8:33 ` [U-Boot] [PATCH v2 01/10] powerpc, 8xx: move immap.c in arch/powerpc/cpu/mpc8xx/ Christophe Leroy
2017-07-06  8:41   ` Christophe LEROY
2017-07-06  9:40   ` Heiko Schocher
2017-07-09  0:24   ` [U-Boot] [U-Boot, v2, " Tom Rini
2017-07-06  8:33 ` [U-Boot] [PATCH v2 02/10] powerpc, 8xx: move specific reginfo Christophe Leroy
2017-07-06  9:40   ` Heiko Schocher
2017-07-09  0:24   ` [U-Boot] [U-Boot,v2,02/10] " Tom Rini
2017-07-06  8:33 ` [U-Boot] [PATCH v2 03/10] powerpc, 8xx: Use IO accessors to access IO memory Christophe Leroy
2017-07-06  9:41   ` Heiko Schocher
2017-07-09  0:24   ` [U-Boot] [U-Boot, v2, " Tom Rini
2017-07-06  8:33 ` [U-Boot] [PATCH v2 04/10] powerpc, 8xx: Implement GLL2 ERRATA Christophe Leroy
2017-07-06  9:43   ` Heiko Schocher
2017-07-06 10:56   ` Wolfgang Denk
2017-07-06 11:12     ` Christophe LEROY
2017-07-06 11:18       ` Christophe LEROY
2017-07-06 11:20       ` Wolfgang Denk
2017-07-06  8:33 ` [U-Boot] [PATCH v2 05/10] powerpc, 8xx: Handle checkpatch errors and some of the warnings/checks Christophe Leroy
2017-07-06  9:43   ` Heiko Schocher
2017-07-09  0:24   ` [U-Boot] [U-Boot, v2, " Tom Rini
2017-07-06  8:33 ` [U-Boot] [PATCH v2 06/10] powerpc, 8xx: Properly set CPM frequency in the device tree Christophe Leroy
2017-07-06  9:46   ` Heiko Schocher
2017-07-09  0:25   ` [U-Boot] [U-Boot, v2, " Tom Rini
2017-07-06  8:33 ` [U-Boot] [PATCH v2 07/10] powerpc, 8xx: Migrate to Kconfig Christophe Leroy
2017-07-06  8:57   ` Bin Meng
2017-07-06  9:47   ` Heiko Schocher
2017-07-09  0:25   ` [U-Boot] [U-Boot,v2,07/10] " Tom Rini
2017-07-06  8:33 ` [U-Boot] [PATCH v2 08/10] powerpc, 8xx: move FEC Ethernet driver in drivers/net Christophe Leroy
2017-07-06  8:54   ` Bin Meng
2017-07-06 12:02     ` Tom Rini
2017-07-09  0:25   ` [U-Boot] [U-Boot, v2, " Tom Rini
2017-07-06  8:33 ` [U-Boot] [PATCH v2 09/10] powerpc, 8xx: move SPI driver to drivers/spi/ Christophe Leroy
2017-07-09  0:25   ` [U-Boot] [U-Boot, v2, " Tom Rini
2017-07-06  8:33 ` [U-Boot] [PATCH v2 10/10] powerpc, 8xx: move Serial driver to drivers/serial/ Christophe Leroy
2017-07-09  0:25   ` [U-Boot] [U-Boot, v2, " Tom Rini

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