From: Jayachandran C <jayachandranc@netlogicmicro.com>
To: linux-mips@linux-mips.org, ralf@linux-mips.org
Subject: [PATCH 0/6] Support for Netlogic XLR/XLS processors
Date: Fri, 1 Apr 2011 08:36:26 +0530 [thread overview]
Message-ID: <cover.1301626288.git.jayachandranc@netlogicmicro.com> (raw)
Time to give this another go. This time the license of Netlogic
files are updated to a dual license. I'm not giving up hope yet :)
As always, comments on code and licenses are welcome.
Changes from last version(v2):
* Netlogic files updated to use a dual license (GPLv2 or Netlogic
2-clause BSD license.)
* irq.c updated to use new style of irq_data based handlers.
* Rebased to latest linux-mips master tip.
* Minor reshuffle of patches to group them better.
Changes from last version(v1):
* Initial 64-bit support
* cleanup irq.c, don't use irq_desc[] directly
* couple of checkpatch.pl white-space fixes
Changes from last version(v0):
* Remove c-netlogic.c for now, c-r4k works well enough for the first
cut, so the custom cache handler can be considered later.
* More elaborate asm/mach-netlogic/cpu-feature-overrides.h
(noted by David Daney)
These set of patches add support for the XLR and XLS multi-core MIPS64
SoCs from Netlogic Microsystems.
These changes enable us to boot linux-mips on Netlogic evaluation boards
from the netlogic bootloader.
Jayachandran C (6):
Netlogic XLR/XLS processor IDs.
mach-netlogic include directory and files.
Cache support, TLB support, asm/module.h entry
Platform files for XLR/XLS processor support
Kconfig and Makefile update for Netlogic XLR/XLS
Add default configuration for XLR/XLS processors
arch/mips/Kconfig | 42 +
arch/mips/Makefile | 12 +
arch/mips/configs/nlm_xlr_defconfig | 1705 ++++++++++++++++++++
arch/mips/include/asm/cpu.h | 27 +
.../asm/mach-netlogic/cpu-feature-overrides.h | 47 +
arch/mips/include/asm/mach-netlogic/irq.h | 14 +
arch/mips/include/asm/mach-netlogic/war.h | 26 +
arch/mips/include/asm/module.h | 2 +
arch/mips/include/asm/netlogic/interrupt.h | 45 +
arch/mips/include/asm/netlogic/mips-extns.h | 76 +
arch/mips/include/asm/netlogic/psb-bootinfo.h | 109 ++
arch/mips/include/asm/netlogic/xlr/gpio.h | 73 +
arch/mips/include/asm/netlogic/xlr/iomap.h | 131 ++
arch/mips/include/asm/netlogic/xlr/pic.h | 231 +++
arch/mips/include/asm/netlogic/xlr/xlr.h | 54 +
arch/mips/kernel/Makefile | 1 +
arch/mips/kernel/cpu-probe.c | 55 +
arch/mips/lib/Makefile | 1 +
arch/mips/mm/Makefile | 1 +
arch/mips/mm/c-r4k.c | 1 +
arch/mips/mm/tlbex.c | 1 +
arch/mips/netlogic/Kconfig | 5 +
arch/mips/netlogic/xlr/Makefile | 5 +
arch/mips/netlogic/xlr/irq.c | 221 +++
arch/mips/netlogic/xlr/platform.c | 100 ++
arch/mips/netlogic/xlr/setup.c | 188 +++
arch/mips/netlogic/xlr/smp.c | 225 +++
arch/mips/netlogic/xlr/smpboot.S | 94 ++
arch/mips/netlogic/xlr/time.c | 51 +
arch/mips/netlogic/xlr/xlr_console.c | 46 +
30 files changed, 3589 insertions(+), 0 deletions(-)
create mode 100644 arch/mips/configs/nlm_xlr_defconfig
create mode 100644 arch/mips/include/asm/mach-netlogic/cpu-feature-overrides.h
create mode 100644 arch/mips/include/asm/mach-netlogic/irq.h
create mode 100644 arch/mips/include/asm/mach-netlogic/war.h
create mode 100644 arch/mips/include/asm/netlogic/interrupt.h
create mode 100644 arch/mips/include/asm/netlogic/mips-extns.h
create mode 100644 arch/mips/include/asm/netlogic/psb-bootinfo.h
create mode 100644 arch/mips/include/asm/netlogic/xlr/gpio.h
create mode 100644 arch/mips/include/asm/netlogic/xlr/iomap.h
create mode 100644 arch/mips/include/asm/netlogic/xlr/pic.h
create mode 100644 arch/mips/include/asm/netlogic/xlr/xlr.h
create mode 100644 arch/mips/netlogic/Kconfig
create mode 100644 arch/mips/netlogic/xlr/Makefile
create mode 100644 arch/mips/netlogic/xlr/irq.c
create mode 100644 arch/mips/netlogic/xlr/platform.c
create mode 100644 arch/mips/netlogic/xlr/setup.c
create mode 100644 arch/mips/netlogic/xlr/smp.c
create mode 100644 arch/mips/netlogic/xlr/smpboot.S
create mode 100644 arch/mips/netlogic/xlr/time.c
create mode 100644 arch/mips/netlogic/xlr/xlr_console.c
--
Jayachandran C.
jayachandranc@netlogicmicro.com (Netlogic Microsystems)
jchandra@freebsd.org (The FreeBSD Project)
next reply other threads:[~2011-04-01 3:07 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-04-01 3:06 Jayachandran C [this message]
2011-04-01 3:06 ` [PATCH 1/6] Netlogic XLR/XLS processor IDs Jayachandran C
2011-04-01 3:07 ` [PATCH 2/6] mach-netlogic include directory and files Jayachandran C
2011-04-01 3:07 ` [PATCH 3/6] Cache support, TLB support, asm/module.h entry Jayachandran C
2011-04-01 3:08 ` [PATCH 4/6] Platform files for XLR/XLS processor support Jayachandran C
2011-04-01 3:08 ` [PATCH 5/6] Kconfig and Makefile update for Netlogic XLR/XLS Jayachandran C
2011-04-01 3:08 ` [PATCH 6/6] Add default configuration for XLR/XLS processors 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.1301626288.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