From: Scott Wood <oss@buserror.net>
To: Michael Ellerman <mpe@ellerman.id.au>
Cc: linuxppc-dev@lists.ozlabs.org, galak@kernel.crashing.org
Subject: Pull request: scottwood/linux.git next
Date: Thu, 21 Jul 2016 12:09:01 -0500 [thread overview]
Message-ID: <20160721170901.GA10486@home.buserror.net> (raw)
Highlights include more 8xx optimizations, device tree updates,
and MVME7100 support.
The following changes since commit 63a72284b159c569ec52f380c9a8dd9342d43bb8:
powerpc/pci: Assign fixed PHB number based on device-tree properties (2016-07-07 22:06:55 +1000)
are available in the git repository at:
git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git next
for you to fetch changes up to 9f595fd8b54809fed13fc30906ef1e90a3fcfbc9:
powerpc/8xx: Force VIRT_IMMR_BASE to be a positive number (2016-07-09 03:26:53 -0500)
----------------------------------------------------------------
Alessio Igor Bogani (1):
powerpc/86xx: Add support for Emerson/Artesyn MVME7100
Bartlomiej Zolnierkiewicz (1):
powerpc: disable IDE subsystem in pq2fads_defconfig
Christophe Leroy (8):
powerpc32: provide VIRT_CPU_ACCOUNTING
powerpc/8xx: Fix vaddr for IMMR early remap
powerpc/8xx: Map IMMR area with 512k page at a fixed address
powerpc/8xx: CONFIG_PIN_TLB unneeded for CONFIG_PPC_EARLY_DEBUG_CPM
powerpc/8xx: unpin all TLBs before flushing
powerpc/8xx: Don't use page table for linear memory space
powerpc/8xx: Rework CONFIG_PIN_TLB handling
powerpc/8xx: add CONFIG_PIN_TLB_IMMR
Claudiu Manoil (1):
powerpc/85xx: Don't report SRAM to L2 cache fallback as error
Scott Wood (1):
powerpc/8xx: Force VIRT_IMMR_BASE to be a positive number
Sriram Dash (2):
powerpc/85xx: Change T1040si USB controller version
powerpc/85xx: add aliases for usb nodes on t4240, b4860, and b4420
Valentin Longchamp (1):
powerpc: define the fman node for the kmcoge4 DTS
Zhao Qiang (7):
QE: Add IC, SI and SIRAM document to device tree bindings.
QE: Add ucc hdlc document to bindings
QE: Add uqe_serial document to bindings
bindings: move cpm_qe binding from powerpc/fsl to soc/fsl
T104xD4RDB: Add qe node to t104xd4rdb
T104xRDB: Add qe node to t104xrdb
T104xQDS: Add qe node to t104xqds
.../bindings/powerpc/fsl/cpm_qe/network.txt | 43 ------
.../bindings/{powerpc => soc}/fsl/cpm_qe/cpm.txt | 0
.../{powerpc => soc}/fsl/cpm_qe/cpm/brg.txt | 0
.../{powerpc => soc}/fsl/cpm_qe/cpm/i2c.txt | 0
.../{powerpc => soc}/fsl/cpm_qe/cpm/pic.txt | 0
.../{powerpc => soc}/fsl/cpm_qe/cpm/usb.txt | 0
.../bindings/{powerpc => soc}/fsl/cpm_qe/gpio.txt | 0
.../devicetree/bindings/soc/fsl/cpm_qe/network.txt | 124 ++++++++++++++++
.../bindings/{powerpc => soc}/fsl/cpm_qe/qe.txt | 52 +++++++
.../{powerpc => soc}/fsl/cpm_qe/qe/firmware.txt | 0
.../{powerpc => soc}/fsl/cpm_qe/qe/par_io.txt | 0
.../{powerpc => soc}/fsl/cpm_qe/qe/pincfg.txt | 0
.../{powerpc => soc}/fsl/cpm_qe/qe/ucc.txt | 0
.../{powerpc => soc}/fsl/cpm_qe/qe/usb.txt | 0
.../{powerpc => soc}/fsl/cpm_qe/serial.txt | 0
.../bindings/soc/fsl/cpm_qe/uqe_serial.txt | 17 +++
arch/powerpc/Kconfig | 6 +
arch/powerpc/Kconfig.debug | 1 -
arch/powerpc/boot/Makefile | 4 +
arch/powerpc/boot/dts/fsl/b4420si-pre.dtsi | 1 +
arch/powerpc/boot/dts/fsl/b4860si-pre.dtsi | 1 +
arch/powerpc/boot/dts/fsl/kmcoge4.dts | 37 +++++
arch/powerpc/boot/dts/fsl/mvme7100.dts | 153 ++++++++++++++++++++
arch/powerpc/boot/dts/fsl/qonverge-usb2-dr-0.dtsi | 2 +-
arch/powerpc/boot/dts/fsl/t1040si-post.dtsi | 49 ++++++-
arch/powerpc/boot/dts/fsl/t104xd4rdb.dtsi | 38 +++++
arch/powerpc/boot/dts/fsl/t104xqds.dtsi | 38 +++++
arch/powerpc/boot/dts/fsl/t104xrdb.dtsi | 38 +++++
arch/powerpc/boot/dts/fsl/t4240si-pre.dtsi | 2 +
arch/powerpc/boot/motload-head.S | 11 ++
arch/powerpc/boot/mvme7100.c | 59 ++++++++
arch/powerpc/boot/ppcboot.h | 2 +-
arch/powerpc/boot/wrapper | 5 +
arch/powerpc/configs/86xx-hw.config | 4 +-
arch/powerpc/configs/mpc86xx_basic_defconfig | 1 +
arch/powerpc/configs/pq2fads_defconfig | 1 -
arch/powerpc/include/asm/accounting.h | 24 ++++
arch/powerpc/include/asm/cputime.h | 14 +-
arch/powerpc/include/asm/exception-64s.h | 2 +-
arch/powerpc/include/asm/fixmap.h | 7 +
arch/powerpc/include/asm/mmu-8xx.h | 3 +
arch/powerpc/include/asm/paca.h | 9 +-
arch/powerpc/include/asm/ppc_asm.h | 24 ++--
arch/powerpc/include/asm/reg.h | 1 +
arch/powerpc/include/asm/thread_info.h | 4 +
arch/powerpc/kernel/asm-offsets.c | 31 +++-
arch/powerpc/kernel/entry_32.S | 17 +++
arch/powerpc/kernel/entry_64.S | 6 +-
arch/powerpc/kernel/exceptions-64e.S | 4 +-
arch/powerpc/kernel/head_8xx.S | 159 +++++++++++----------
arch/powerpc/kernel/time.c | 81 +++++++----
arch/powerpc/mm/8xx_mmu.c | 131 +++++++++++------
arch/powerpc/mm/mmu_decl.h | 3 +-
arch/powerpc/platforms/86xx/Kconfig | 8 +-
arch/powerpc/platforms/86xx/Makefile | 1 +
arch/powerpc/platforms/86xx/mvme7100.c | 121 ++++++++++++++++
arch/powerpc/platforms/Kconfig.cputype | 1 -
arch/powerpc/sysdev/cpm_common.c | 22 ++-
arch/powerpc/sysdev/fsl_85xx_l2ctlr.c | 8 +-
arch/powerpc/xmon/xmon.c | 14 +-
60 files changed, 1133 insertions(+), 251 deletions(-)
delete mode 100644 Documentation/devicetree/bindings/powerpc/fsl/cpm_qe/network.txt
rename Documentation/devicetree/bindings/{powerpc => soc}/fsl/cpm_qe/cpm.txt (100%)
rename Documentation/devicetree/bindings/{powerpc => soc}/fsl/cpm_qe/cpm/brg.txt (100%)
rename Documentation/devicetree/bindings/{powerpc => soc}/fsl/cpm_qe/cpm/i2c.txt (100%)
rename Documentation/devicetree/bindings/{powerpc => soc}/fsl/cpm_qe/cpm/pic.txt (100%)
rename Documentation/devicetree/bindings/{powerpc => soc}/fsl/cpm_qe/cpm/usb.txt (100%)
rename Documentation/devicetree/bindings/{powerpc => soc}/fsl/cpm_qe/gpio.txt (100%)
create mode 100644 Documentation/devicetree/bindings/soc/fsl/cpm_qe/network.txt
rename Documentation/devicetree/bindings/{powerpc => soc}/fsl/cpm_qe/qe.txt (75%)
rename Documentation/devicetree/bindings/{powerpc => soc}/fsl/cpm_qe/qe/firmware.txt (100%)
rename Documentation/devicetree/bindings/{powerpc => soc}/fsl/cpm_qe/qe/par_io.txt (100%)
rename Documentation/devicetree/bindings/{powerpc => soc}/fsl/cpm_qe/qe/pincfg.txt (100%)
rename Documentation/devicetree/bindings/{powerpc => soc}/fsl/cpm_qe/qe/ucc.txt (100%)
rename Documentation/devicetree/bindings/{powerpc => soc}/fsl/cpm_qe/qe/usb.txt (100%)
rename Documentation/devicetree/bindings/{powerpc => soc}/fsl/cpm_qe/serial.txt (100%)
create mode 100644 Documentation/devicetree/bindings/soc/fsl/cpm_qe/uqe_serial.txt
create mode 100644 arch/powerpc/boot/dts/fsl/mvme7100.dts
create mode 100644 arch/powerpc/boot/motload-head.S
create mode 100644 arch/powerpc/boot/mvme7100.c
create mode 100644 arch/powerpc/include/asm/accounting.h
create mode 100644 arch/powerpc/platforms/86xx/mvme7100.c
next reply other threads:[~2016-07-21 17:09 UTC|newest]
Thread overview: 82+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-07-21 17:09 Scott Wood [this message]
-- strict thread matches above, loose matches on Subject: below --
2019-11-17 9:44 Pull request: scottwood/linux.git next Scott Wood
2019-10-22 23:21 Scott Wood
2019-10-31 2:01 ` Jason Yan
2019-11-01 17:01 ` Scott Wood
2019-11-04 2:36 ` Jason Yan
2019-11-02 10:38 ` Michael Ellerman
2019-11-04 2:38 ` Jason Yan
2019-11-13 9:23 ` Michael Ellerman
2019-11-14 6:00 ` Jason Yan
2018-12-22 4:42 Scott Wood
2018-12-22 10:50 ` christophe leroy
2018-12-22 20:01 ` Scott Wood
2018-12-23 13:13 ` Michael Ellerman
2018-12-24 2:09 ` Scott Wood
2018-12-27 13:10 ` Christoph Hellwig
2018-12-28 0:03 ` Scott Wood
2018-10-23 0:22 Scott Wood
2018-08-11 5:29 Scott Wood
2018-01-21 7:55 Scott Wood
2018-01-23 5:24 ` Michael Ellerman
2017-08-29 4:20 Scott Wood
2017-05-06 3:42 Scott Wood
2017-01-27 23:53 Scott Wood
2017-02-17 11:08 ` Scott Wood
2017-02-18 8:00 ` Michael Ellerman
2016-12-12 8:17 Scott Wood
2016-12-13 15:49 ` Aneesh Kumar K.V
2016-12-13 18:34 ` Aneesh Kumar K.V
2016-09-27 22:08 Scott Wood
2016-05-17 1:37 Scott Wood
2016-05-19 12:35 ` Michael Ellerman
2016-03-12 3:15 Scott Wood
2016-03-15 0:19 ` Michael Ellerman
2016-03-15 7:01 ` Scott Wood
2016-03-15 9:07 ` Michael Ellerman
2016-03-15 17:50 ` Scott Wood
2016-03-15 10:27 ` Christophe Leroy
2016-01-04 21:38 Scott Wood
2016-01-14 13:05 ` Michael Ellerman
2015-10-28 21:56 Scott Wood
2015-08-18 4:30 Scott Wood
2015-08-26 14:14 ` Scott Wood
2015-08-27 1:14 ` Michael Ellerman
2015-06-05 23:06 Scott Wood
2015-04-02 22:47 Scott Wood
2015-02-03 17:20 Scott Wood
2015-02-04 0:58 ` Michael Ellerman
2015-02-04 1:05 ` Scott Wood
2015-02-04 2:25 ` Michael Ellerman
2014-11-18 5:20 Scott Wood
2014-09-22 22:21 Scott Wood
2014-09-23 3:52 ` Bob Cochran
2014-09-23 5:45 ` Scott Wood
2014-09-23 10:47 ` Joakim Tjernlund
2014-09-23 12:37 ` Scott Wood
2014-09-23 16:19 ` Bob Cochran
2014-10-03 19:52 ` Scott Wood
2014-10-03 23:06 ` Stephen Rothwell
2014-08-01 19:54 Scott Wood
2014-07-03 0:51 Scott Wood
2014-03-20 4:25 Scott Wood
2014-03-23 23:16 ` Benjamin Herrenschmidt
2014-03-23 23:33 ` Benjamin Herrenschmidt
2014-03-25 1:09 ` Scott Wood
2013-10-29 2:44 Scott Wood
2013-10-29 3:05 ` Scott Wood
2013-08-24 1:07 Scott Wood
2013-08-26 15:48 ` Scott Wood
2013-08-08 22:45 Scott Wood
2013-08-09 6:03 ` Benjamin Herrenschmidt
2013-08-09 14:43 ` Kumar Gala
2013-08-09 16:30 ` Scott Wood
2013-08-14 4:18 ` Benjamin Herrenschmidt
2013-08-14 17:02 ` Scott Wood
2013-08-14 21:01 ` Benjamin Herrenschmidt
2013-08-19 22:56 ` Scott Wood
2013-08-19 23:47 ` Benjamin Herrenschmidt
2013-08-19 23:49 ` Josh Boyer
2013-08-20 0:49 ` Benjamin Herrenschmidt
2013-07-01 23:43 Scott Wood
2013-07-02 7:43 ` Benjamin Herrenschmidt
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20160721170901.GA10486@home.buserror.net \
--to=oss@buserror.net \
--cc=galak@kernel.crashing.org \
--cc=linuxppc-dev@lists.ozlabs.org \
--cc=mpe@ellerman.id.au \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.