Linux MIPS Architecture development
 help / color / mirror / Atom feed
From: Jayachandran C <jayachandranc@netlogicmicro.com>
To: <linux-mips@linux-mips.org>, <ralf@linux-mips.org>
Cc: Jayachandran C <jayachandranc@netlogicmicro.com>
Subject: [PATCH 00/11] Netlogic XLR/XLP fixes and updates.
Date: Thu, 2 Feb 2012 20:12:54 +0530	[thread overview]
Message-ID: <cover.1328189941.git.jayachandranc@netlogicmicro.com> (raw)

Here are the updates to Netlogic code for the next kernel.
The changes include fixes to the current code and new features.

* Fixes for the  current code
  XLR PCI irq fix, XLP TLB size fix, XLP smp boot sequence
  fixup, remove unused code in XLR PCI.

* New features
  XLR platform USB code, XLR platform NAND/NOR flash support,
  XLR oprofile driver, XLP initial PCI support and XLP USB support.

Let me know if there are any comments or concerns.

Thanks,
JC.
  
Ganesan Ramalingam (3):
  MIPS: Netlogic: Platform NAND/NOR flash support
  MIPS: Netlogic: XLP PCIe controller support.
  MIPS: Netlogic: USB support for XLP

Jayachandran C (7):
  MIPS: Netlogic: Fix PCIX irq on XLR chips
  MIPS: Netlogic: platform changes for XLS USB.
  MIPS: Netlogic: Remove unused pcibios_fixups
  MIPS: Netlogic: Update comments in smpboot.S
  MIPS: Netlogic: SMP wakeup code update
  MIPS: Netlogic: Fix TLB size of boot CPU.
  MIPS: Netlogic: Remove NETLOGIC_ prefix

Madhusudan Bhat (1):
  MIPS: Netlogic: Oprofile driver for XLR/XLS

 arch/mips/Kconfig                                  |    3 +-
 .../mips/include/asm/netlogic/xlp-hal/cpucontrol.h |    4 +-
 arch/mips/include/asm/netlogic/xlp-hal/iomap.h     |    5 +-
 arch/mips/include/asm/netlogic/xlp-hal/pcibus.h    |   76 ++++++
 arch/mips/include/asm/netlogic/xlp-hal/pic.h       |    4 +
 arch/mips/include/asm/netlogic/xlp-hal/usb.h       |   64 +++++
 arch/mips/include/asm/netlogic/xlp-hal/xlp.h       |   14 +-
 arch/mips/include/asm/netlogic/xlr/bridge.h        |  104 ++++++++
 arch/mips/include/asm/netlogic/xlr/flash.h         |   55 +++++
 arch/mips/include/asm/netlogic/xlr/gpio.h          |   59 +++---
 arch/mips/netlogic/common/smpboot.S                |  159 ++++++++-----
 arch/mips/netlogic/xlp/Makefile                    |    1 +
 arch/mips/netlogic/xlp/nlm_hal.c                   |   40 ++++
 arch/mips/netlogic/xlp/platform.c                  |    2 +-
 arch/mips/netlogic/xlp/setup.c                     |    8 +-
 arch/mips/netlogic/xlp/usb-init.c                  |  125 ++++++++++
 arch/mips/netlogic/xlr/Makefile                    |    2 +-
 arch/mips/netlogic/xlr/platform-flash.c            |  220 +++++++++++++++++
 arch/mips/netlogic/xlr/platform.c                  |   89 +++++++
 arch/mips/netlogic/xlr/setup.c                     |    2 +-
 arch/mips/oprofile/Makefile                        |    1 +
 arch/mips/oprofile/common.c                        |    1 +
 arch/mips/oprofile/op_model_mipsxx.c               |   29 +++
 arch/mips/pci/Makefile                             |    1 +
 arch/mips/pci/pci-xlp.c                            |  247 ++++++++++++++++++++
 arch/mips/pci/pci-xlr.c                            |    6 +-
 26 files changed, 1222 insertions(+), 99 deletions(-)
 create mode 100644 arch/mips/include/asm/netlogic/xlp-hal/pcibus.h
 create mode 100644 arch/mips/include/asm/netlogic/xlp-hal/usb.h
 create mode 100644 arch/mips/include/asm/netlogic/xlr/bridge.h
 create mode 100644 arch/mips/include/asm/netlogic/xlr/flash.h
 create mode 100644 arch/mips/netlogic/xlp/usb-init.c
 create mode 100644 arch/mips/netlogic/xlr/platform-flash.c
 create mode 100644 arch/mips/pci/pci-xlp.c

-- 
1.7.5.4

WARNING: multiple messages have this Message-ID (diff)
From: Jayachandran C <jayachandranc@netlogicmicro.com>
To: linux-mips@linux-mips.org, ralf@linux-mips.org
Cc: Jayachandran C <jayachandranc@netlogicmicro.com>
Subject: [PATCH 00/11] Netlogic XLR/XLP fixes and updates.
Date: Thu, 2 Feb 2012 20:12:54 +0530	[thread overview]
Message-ID: <cover.1328189941.git.jayachandranc@netlogicmicro.com> (raw)
Message-ID: <20120202144254.Q2QvrtWZDX5N4h3ZuZoXridoNNBgb7jWJfjAe_80Pn8@z> (raw)

Here are the updates to Netlogic code for the next kernel.
The changes include fixes to the current code and new features.

* Fixes for the  current code
  XLR PCI irq fix, XLP TLB size fix, XLP smp boot sequence
  fixup, remove unused code in XLR PCI.

* New features
  XLR platform USB code, XLR platform NAND/NOR flash support,
  XLR oprofile driver, XLP initial PCI support and XLP USB support.

Let me know if there are any comments or concerns.

Thanks,
JC.
  
Ganesan Ramalingam (3):
  MIPS: Netlogic: Platform NAND/NOR flash support
  MIPS: Netlogic: XLP PCIe controller support.
  MIPS: Netlogic: USB support for XLP

Jayachandran C (7):
  MIPS: Netlogic: Fix PCIX irq on XLR chips
  MIPS: Netlogic: platform changes for XLS USB.
  MIPS: Netlogic: Remove unused pcibios_fixups
  MIPS: Netlogic: Update comments in smpboot.S
  MIPS: Netlogic: SMP wakeup code update
  MIPS: Netlogic: Fix TLB size of boot CPU.
  MIPS: Netlogic: Remove NETLOGIC_ prefix

Madhusudan Bhat (1):
  MIPS: Netlogic: Oprofile driver for XLR/XLS

 arch/mips/Kconfig                                  |    3 +-
 .../mips/include/asm/netlogic/xlp-hal/cpucontrol.h |    4 +-
 arch/mips/include/asm/netlogic/xlp-hal/iomap.h     |    5 +-
 arch/mips/include/asm/netlogic/xlp-hal/pcibus.h    |   76 ++++++
 arch/mips/include/asm/netlogic/xlp-hal/pic.h       |    4 +
 arch/mips/include/asm/netlogic/xlp-hal/usb.h       |   64 +++++
 arch/mips/include/asm/netlogic/xlp-hal/xlp.h       |   14 +-
 arch/mips/include/asm/netlogic/xlr/bridge.h        |  104 ++++++++
 arch/mips/include/asm/netlogic/xlr/flash.h         |   55 +++++
 arch/mips/include/asm/netlogic/xlr/gpio.h          |   59 +++---
 arch/mips/netlogic/common/smpboot.S                |  159 ++++++++-----
 arch/mips/netlogic/xlp/Makefile                    |    1 +
 arch/mips/netlogic/xlp/nlm_hal.c                   |   40 ++++
 arch/mips/netlogic/xlp/platform.c                  |    2 +-
 arch/mips/netlogic/xlp/setup.c                     |    8 +-
 arch/mips/netlogic/xlp/usb-init.c                  |  125 ++++++++++
 arch/mips/netlogic/xlr/Makefile                    |    2 +-
 arch/mips/netlogic/xlr/platform-flash.c            |  220 +++++++++++++++++
 arch/mips/netlogic/xlr/platform.c                  |   89 +++++++
 arch/mips/netlogic/xlr/setup.c                     |    2 +-
 arch/mips/oprofile/Makefile                        |    1 +
 arch/mips/oprofile/common.c                        |    1 +
 arch/mips/oprofile/op_model_mipsxx.c               |   29 +++
 arch/mips/pci/Makefile                             |    1 +
 arch/mips/pci/pci-xlp.c                            |  247 ++++++++++++++++++++
 arch/mips/pci/pci-xlr.c                            |    6 +-
 26 files changed, 1222 insertions(+), 99 deletions(-)
 create mode 100644 arch/mips/include/asm/netlogic/xlp-hal/pcibus.h
 create mode 100644 arch/mips/include/asm/netlogic/xlp-hal/usb.h
 create mode 100644 arch/mips/include/asm/netlogic/xlr/bridge.h
 create mode 100644 arch/mips/include/asm/netlogic/xlr/flash.h
 create mode 100644 arch/mips/netlogic/xlp/usb-init.c
 create mode 100644 arch/mips/netlogic/xlr/platform-flash.c
 create mode 100644 arch/mips/pci/pci-xlp.c

-- 
1.7.5.4

             reply	other threads:[~2012-02-02 14:39 UTC|newest]

Thread overview: 24+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-02-02 14:42 Jayachandran C [this message]
2012-02-02 14:42 ` [PATCH 00/11] Netlogic XLR/XLP fixes and updates Jayachandran C
2012-02-02 14:42 ` [PATCH 01/11] MIPS: Netlogic: Fix PCIX irq on XLR chips Jayachandran C
2012-02-02 14:42   ` Jayachandran C
2012-02-02 14:42 ` [PATCH 02/11] MIPS: Netlogic: platform changes for XLS USB Jayachandran C
2012-02-02 14:42   ` Jayachandran C
2012-02-02 14:42 ` [PATCH 03/11] MIPS: Netlogic: Remove unused pcibios_fixups Jayachandran C
2012-02-02 14:42   ` Jayachandran C
2012-02-02 14:42 ` [PATCH 04/11] MIPS: Netlogic: Update comments in smpboot.S Jayachandran C
2012-02-02 14:42   ` Jayachandran C
2012-02-02 14:42 ` [PATCH 05/11] MIPS: Netlogic: SMP wakeup code update Jayachandran C
2012-02-02 14:42   ` Jayachandran C
2012-02-02 14:43 ` [PATCH 06/11] MIPS: Netlogic: Fix TLB size of boot CPU Jayachandran C
2012-02-02 14:43   ` Jayachandran C
2012-02-02 14:43 ` [PATCH 07/11] MIPS: Netlogic: Remove NETLOGIC_ prefix Jayachandran C
2012-02-02 14:43   ` Jayachandran C
2012-02-02 14:43 ` [PATCH 08/11] MIPS: Netlogic: Platform NAND/NOR flash support Jayachandran C
2012-02-02 14:43   ` Jayachandran C
2012-02-02 14:43 ` [PATCH 09/11] MIPS: Netlogic: Oprofile driver for XLR/XLS Jayachandran C
2012-02-02 14:43   ` Jayachandran C
2012-02-02 14:43 ` [PATCH 10/11] MIPS: Netlogic: XLP PCIe controller support Jayachandran C
2012-02-02 14:43   ` Jayachandran C
2012-02-02 14:43 ` [PATCH 11/11] MIPS: Netlogic: USB support for XLP Jayachandran C
2012-02-02 14:43   ` Jayachandran C

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=cover.1328189941.git.jayachandranc@netlogicmicro.com \
    --to=jayachandranc@netlogicmicro.com \
    --cc=linux-mips@linux-mips.org \
    --cc=ralf@linux-mips.org \
    /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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox