All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/17] Netlogic XLP updates
@ 2015-01-07 11:28 ` Jayachandran C
  0 siblings, 0 replies; 46+ messages in thread
From: Jayachandran C @ 2015-01-07 11:28 UTC (permalink / raw)
  To: linux-mips; +Cc: Jayachandran C, ralf

This patchset is a collection of fixes and updates to the Netlogic
platform support.

Comments/suggestions welcome.

JC.

Ganesan Ramalingam (5):
  MIPS: Netlogic: Fix cop0 prid check in AHCI init
  MIPS: Netlogic: Fix for SATA PHY init
  MIPS: Netlogic: Fix frequency calculation register
  MIPS: Netlogic: Add irq mapping and setup for XHCI port 3
  MIPS: Netlogic: Add built-in dts for XLP5xx boards

Jayachandran C (8):
  MIPS: Netlogic: Disable writing IRT for disabled blocks
  MIPS: MSI: Update MSI handling for XLP
  MIPS: Netlogic: Use MIPS topology.h
  MIPS: Netlogic: Move cores per node out of multi-node.h
  MIPS: Netlogic: nlm_core_id for xlp9xx
  MIPS: Netlogic: Update function to read DRAM BARs
  MIPS: Netlogic: Handle XLP hardware errata
  MIPS: Netlogic: Do not enable SUE for core

Prem Mallappa (1):
  MIPS: Netlogic: Added HugeTLB as default

Qingmin Liu (1):
  MIPS: Netlogic: Fix nlm_xlp2_get_pic_frequency to use ref_div

Shanghui Liu (1):
  MIPS: Netlogic: Fix wait for slave CPUs

Subhendu Sekhar Behera (1):
  MIPS: Netlogic: i2c IRQ mappings for XLP9XX

 arch/mips/Kconfig                                  |  1 +
 arch/mips/boot/dts/Makefile                        |  1 +
 arch/mips/boot/dts/xlp_rvp.dts                     | 77 ++++++++++++++++++++++
 arch/mips/include/asm/mach-netlogic/multi-node.h   |  9 ---
 arch/mips/include/asm/mach-netlogic/topology.h     | 15 -----
 arch/mips/include/asm/netlogic/common.h            | 21 +++++-
 arch/mips/include/asm/netlogic/mips-extns.h        |  8 ++-
 .../mips/include/asm/netlogic/xlp-hal/cpucontrol.h |  2 +
 arch/mips/include/asm/netlogic/xlp-hal/sys.h       |  3 +
 arch/mips/include/asm/netlogic/xlp-hal/xlp.h       |  3 +-
 arch/mips/netlogic/Kconfig                         |  9 +++
 arch/mips/netlogic/common/irq.c                    | 10 +--
 arch/mips/netlogic/common/reset.S                  | 20 +++++-
 arch/mips/netlogic/common/smp.c                    | 25 +++----
 arch/mips/netlogic/xlp/ahci-init-xlp2.c            | 13 ++++
 arch/mips/netlogic/xlp/ahci-init.c                 |  2 +-
 arch/mips/netlogic/xlp/dt.c                        | 10 ++-
 arch/mips/netlogic/xlp/nlm_hal.c                   | 57 ++++++++++------
 arch/mips/netlogic/xlp/setup.c                     |  7 +-
 arch/mips/netlogic/xlp/usb-init-xlp2.c             | 10 ++-
 arch/mips/netlogic/xlp/wakeup.c                    | 10 +--
 arch/mips/pci/msi-xlp.c                            | 19 +++---
 22 files changed, 244 insertions(+), 88 deletions(-)
 create mode 100644 arch/mips/boot/dts/xlp_rvp.dts
 delete mode 100644 arch/mips/include/asm/mach-netlogic/topology.h

-- 
1.9.1

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

end of thread, other threads:[~2015-01-09 11:35 UTC | newest]

Thread overview: 46+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-01-07 11:28 [PATCH 00/17] Netlogic XLP updates Jayachandran C
2015-01-07 11:28 ` Jayachandran C
2015-01-07 11:28 ` [PATCH 01/17] MIPS: Netlogic: Fix wait for slave CPUs Jayachandran C
2015-01-07 11:28   ` Jayachandran C
2015-01-07 11:28 ` [PATCH 02/17] MIPS: Netlogic: Fix nlm_xlp2_get_pic_frequency to use ref_div Jayachandran C
2015-01-07 11:28   ` Jayachandran C
2015-01-07 11:28 ` [PATCH 03/17] MIPS: Netlogic: Fix cop0 prid check in AHCI init Jayachandran C
2015-01-07 11:28   ` Jayachandran C
2015-01-07 11:28 ` [PATCH 04/17] MIPS: Netlogic: Disable writing IRT for disabled blocks Jayachandran C
2015-01-07 11:28   ` Jayachandran C
2015-01-07 17:07   ` Sergei Shtylyov
2015-01-09  9:48     ` Jayachandran C.
2015-01-09  9:48       ` Jayachandran C.
2015-01-09 11:35       ` Sergei Shtylyov
2015-01-07 11:28 ` [PATCH 05/17] MIPS: Netlogic: Fix for SATA PHY init Jayachandran C
2015-01-07 11:28   ` Jayachandran C
2015-01-07 11:28 ` [PATCH 06/17] MIPS: Netlogic: Fix frequency calculation register Jayachandran C
2015-01-07 11:28   ` Jayachandran C
2015-01-07 11:28 ` [PATCH 07/17] MIPS: MSI: Update MSI handling for XLP Jayachandran C
2015-01-07 11:28   ` Jayachandran C
2015-01-07 11:28 ` [PATCH 08/17] MIPS: Netlogic: Use MIPS topology.h Jayachandran C
2015-01-07 11:28   ` Jayachandran C
2015-01-07 11:28 ` [PATCH 09/17] MIPS: Netlogic: Move cores per node out of multi-node.h Jayachandran C
2015-01-07 11:28   ` Jayachandran C
2015-01-07 11:28 ` [PATCH 10/17] MIPS: Netlogic: nlm_core_id for xlp9xx Jayachandran C
2015-01-07 11:28   ` Jayachandran C
2015-01-07 11:28 ` [PATCH 11/17] MIPS: Netlogic: Added HugeTLB as default Jayachandran C
2015-01-07 11:28   ` Jayachandran C
2015-01-07 11:28 ` [PATCH 12/17] MIPS: Netlogic: Update function to read DRAM BARs Jayachandran C
2015-01-07 11:28   ` Jayachandran C
2015-01-07 11:28 ` [PATCH 13/17] MIPS: Netlogic: Handle XLP hardware errata Jayachandran C
2015-01-07 11:28   ` Jayachandran C
2015-01-07 17:21   ` Sergei Shtylyov
2015-01-07 19:33     ` David Daney
2015-01-09  9:51     ` Jayachandran C.
2015-01-09  9:51       ` Jayachandran C.
2015-01-09 10:43       ` Jayachandran C
2015-01-09 10:43         ` Jayachandran C
2015-01-07 11:28 ` [PATCH 14/17] MIPS: Netlogic: Do not enable SUE for core Jayachandran C
2015-01-07 11:28   ` Jayachandran C
2015-01-07 11:28 ` [PATCH 15/17] MIPS: Netlogic: Add irq mapping and setup for XHCI port 3 Jayachandran C
2015-01-07 11:28   ` Jayachandran C
2015-01-07 11:28 ` [PATCH 16/17] MIPS: Netlogic: i2c IRQ mappings for XLP9XX Jayachandran C
2015-01-07 11:28   ` Jayachandran C
2015-01-07 11:28 ` [PATCH 17/17] MIPS: Netlogic: Add built-in dts for XLP5xx boards Jayachandran C
2015-01-07 11:28   ` Jayachandran C

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.