Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1327383
| From | David Daney <ddaney.cavm@gmail.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH 0/7] MIPS: Add support for OCTEON cn78xx and cn73xx. |
| Date | 2016-02-05 01:50 +0100 |
| Message-ID | <qYCKZ-18W-3@gated-at.bofh.it> (permalink) |
| Organization | linux.* mail to news gateway |
From: David Daney <david.daney@cavium.com>
The OCTEON III cn78xx and cn73xx family of SoCs has some architectural
differences from previous OCTEON processors.
Here we add support for the new interrupt controller and related IPI
machinery. This is enough to be able to boot an initrd based system
to a command prompt on the serial console.
Still pending are support for: PCI, Watchdog, I2C, Sata, USB,
Ethernet, etc.
This set depends on these two sets:
http://www.linux-mips.org/archives/linux-mips/2016-02/msg00051.html
http://www.linux-mips.org/archives/linux-mips/2016-02/msg00041.html
All patches are to the MIPS tree except the device tree binding
definition. Probably they could be merged via Ralf's tree if there
were no objections.
David Daney (7):
MIPS: OCTEON: Remove some code limiting NR_IRQS to 255
MIPS: Select CONFIG_HANDLE_DOMAIN_IRQ and make it work.
MIPS: OCTEON: Add register definitions for cn73xx, cnf75xx and
cn78xx.
MIPS: OCTEON: Add model checking support for cn73xx, cnf75xx and
cn78xx
MIPS: OCTEON: Don't attempt to use nonexistent registers on OCTEON
III models.
MIPS: OCTEON: Add support for OCTEON III interrupt controller.
MIPS: OCTEON: Add SMP support for OCTEON cn78xx et al.
.../devicetree/bindings/mips/cavium/ciu3.txt | 27 +
arch/mips/Kconfig | 1 +
arch/mips/cavium-octeon/csrc-octeon.c | 13 +-
arch/mips/cavium-octeon/executive/octeon-model.c | 82 ++-
arch/mips/cavium-octeon/octeon-irq.c | 678 ++++++++++++++++++++-
arch/mips/cavium-octeon/setup.c | 36 +-
arch/mips/cavium-octeon/smp.c | 145 ++++-
arch/mips/include/asm/irq_regs.h | 10 +
arch/mips/include/asm/octeon/cvmx-ciu3-defs.h | 353 +++++++++++
arch/mips/include/asm/octeon/cvmx-fpa-defs.h | 1 +
arch/mips/include/asm/octeon/cvmx-mio-defs.h | 410 ++++++++++++-
arch/mips/include/asm/octeon/cvmx.h | 27 +-
arch/mips/include/asm/octeon/octeon-feature.h | 19 +-
arch/mips/include/asm/octeon/octeon-model.h | 5 +
arch/mips/include/asm/octeon/octeon.h | 8 +
15 files changed, 1733 insertions(+), 82 deletions(-)
create mode 100644 Documentation/devicetree/bindings/mips/cavium/ciu3.txt
create mode 100644 arch/mips/include/asm/octeon/cvmx-ciu3-defs.h
Cc: Rob Herring <robh+dt@kernel.org>
Cc: Pawel Moll <pawel.moll@arm.com>
Cc: Mark Rutland <mark.rutland@arm.com>
Cc: Ian Campbell <ijc+devicetree@hellion.org.uk>
Cc: Kumar Gala <galak@codeaurora.org>
Cc: devicetree@vger.kernel.org
Cc: Thomas Gleixner <tglx@linutronix.de>
--
1.7.11.7
Back to linux.kernel | Previous | Next — Next in thread | Find similar | Unroll thread
[PATCH 0/7] MIPS: Add support for OCTEON cn78xx and cn73xx. David Daney <ddaney.cavm@gmail.com> - 2016-02-05 01:50 +0100
[PATCH 1/7] MIPS: OCTEON: Remove some code limiting NR_IRQS to 255 David Daney <ddaney.cavm@gmail.com> - 2016-02-05 01:50 +0100
[PATCH 3/7] MIPS: OCTEON: Add register definitions for cn73xx, cnf75xx and cn78xx. David Daney <ddaney.cavm@gmail.com> - 2016-02-05 01:50 +0100
Re: [PATCH 0/7] MIPS: Add support for OCTEON cn78xx and cn73xx. Aaro Koskinen <aaro.koskinen@iki.fi> - 2016-02-05 02:30 +0100
Re: [PATCH 0/7] MIPS: Add support for OCTEON cn78xx and cn73xx. David Daney <ddaney.cavm@gmail.com> - 2016-02-05 02:40 +0100
csiph-web