Linux MIPS Architecture development
 help / color / mirror / Atom feed
* [PATCH V3 0/5] MIPS: Loongson: Add Loongson-3A R2 support
@ 2016-02-24 14:32 Huacai Chen
  2016-02-24 14:32 ` [PATCH] MIPS: tlbex: Fix bugs in tlbchange handler Huacai Chen
                   ` (6 more replies)
  0 siblings, 7 replies; 28+ messages in thread
From: Huacai Chen @ 2016-02-24 14:32 UTC (permalink / raw)
  To: Ralf Baechle
  Cc: Aurelien Jarno, Steven J . Hill, linux-mips, Fuxin Zhang,
	Zhangjin Wu, Huacai Chen

This patchset is is prepared for the next 4.6 release for Linux/MIPS.
It adds Loongson-3A R2 (Loongson-3A2000) support and fixes a potential
bug related to FTLB.

Loongson-3 CPU family:

Code-name       Brand-name       PRId
Loongson-3A R1  Loongson-3A1000  0x6305
Loongson-3A R2  Loongson-3A2000  0x6308
Loongson-3B R1  Loongson-3B1000  0x6306
Loongson-3B R2  Loongson-3B1500  0x6307

Features of R2 revision of Loongson-3A:
1, Primary cache includes I-Cache, D-Cache and V-Cache (Victim Cache).
2, I-Cache, D-Cache and V-Cache are 16-way set-associative, linesize is 64 Bytes.
3, 64 entries of VTLB (classic TLB), 1024 entries of FTLB (8-way set-associative).
4, Support DSP/DSPv2 instructions, UserLocal register and Read-Inhibit/Execute-Inhibit.

V1 -> V2:
1, Probe MIPS_CPU_PREFETCH by PRId.
2, Use PRID_REV_MASK instead of hardcode.
3, Update commit messages to avoid confusion.

V2 -> V3:
1, Remove the 4th patch since it is a bugfix not only for Loongson.
2, Split the 5th patch and remove the generic part since that is not only for Loongson.

Huacai Chen(5):
 MIPS: Loongson: Add Loongson-3A R2 basic support.
 MIPS: Loongson: Invalidate special TLBs when needed.
 MIPS: Loongson-3: Fast TLB refill handler.
 MIPS: Loongson-3: Use cpu_has_coherent_cache feature
 MIPS: Loongson-3: Introduce CONFIG_LOONGSON3_ENHANCEMENT.

Signed-off-by: Huacai Chen <chenhc@lemote.com>
---
 arch/mips/Kconfig                                  |  19 ++++
 arch/mips/include/asm/cacheops.h                   |   6 +
 arch/mips/include/asm/cpu-features.h               |   3 +
 arch/mips/include/asm/cpu-info.h                   |   1 +
 arch/mips/include/asm/cpu.h                        |   5 +-
 arch/mips/include/asm/hazards.h                    |   7 +-
 arch/mips/include/asm/io.h                         |  10 +-
 arch/mips/include/asm/irqflags.h                   |   5 +
 .../asm/mach-loongson64/cpu-feature-overrides.h    |  13 +--
 .../asm/mach-loongson64/kernel-entry-init.h        |  18 ++-
 arch/mips/include/asm/mipsregs.h                   |   8 ++
 arch/mips/include/asm/pgtable-bits.h               |   8 +-
 arch/mips/include/asm/pgtable.h                    |   4 +-
 arch/mips/include/asm/uasm.h                       |   3 +-
 arch/mips/include/uapi/asm/inst.h                  |  10 ++
 arch/mips/kernel/cpu-probe.c                       |  40 ++++++-
 arch/mips/kernel/idle.c                            |   5 +
 arch/mips/kernel/traps.c                           |   3 +-
 arch/mips/loongson64/common/env.c                  |   7 +-
 arch/mips/loongson64/loongson-3/smp.c              | 106 +++++++++++++++--
 arch/mips/mm/c-r4k.c                               |  29 +++++
 arch/mips/mm/page.c                                |   9 ++
 arch/mips/mm/tlb-r4k.c                             |  27 +++--
 arch/mips/mm/tlbex.c                               | 126 ++++++++++++++++++++-
 arch/mips/mm/uasm-mips.c                           |   2 +
 arch/mips/mm/uasm.c                                |   3 +
 drivers/platform/mips/cpu_hwmon.c                  |   4 +-
 27 files changed, 422 insertions(+), 59 deletions(-)
--
2.7.0

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

end of thread, other threads:[~2016-03-01  2:18 UTC | newest]

Thread overview: 28+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-02-24 14:32 [PATCH V3 0/5] MIPS: Loongson: Add Loongson-3A R2 support Huacai Chen
2016-02-24 14:32 ` [PATCH] MIPS: tlbex: Fix bugs in tlbchange handler Huacai Chen
2016-02-25  0:40   ` Maciej W. Rozycki
2016-02-25  0:40     ` Maciej W. Rozycki
2016-02-25  1:06     ` David Daney
2016-02-25  5:32       ` Huacai Chen
2016-02-25 11:02         ` Maciej W. Rozycki
2016-02-25 12:41           ` Huacai Chen
2016-02-24 14:32 ` [PATCH] MIPS: Introduce cpu_has_coherent_cache feature Huacai Chen
2016-02-25  0:59   ` Maciej W. Rozycki
2016-02-25  0:59     ` Maciej W. Rozycki
2016-02-25  5:36     ` Huacai Chen
2016-02-25 11:16       ` Maciej W. Rozycki
2016-02-25 12:53         ` Huacai Chen
2016-02-26  5:35           ` Huacai Chen
2016-02-26 15:22             ` Maciej W. Rozycki
2016-02-24 14:33 ` [PATCH V3 1/5] MIPS: Loongson: Add Loongson-3A R2 basic support Huacai Chen
2016-02-24 14:33 ` [PATCH V3 2/5] MIPS: Loongson: Invalidate special TLBs when needed Huacai Chen
2016-02-24 14:33 ` [PATCH V3 3/5] MIPS: Loongson-3: Fast TLB refill handler Huacai Chen
2016-02-24 14:33 ` [PATCH V3 4/5] MIPS: Loongson-3: Use cpu_has_coherent_cache feature Huacai Chen
2016-02-24 14:33 ` [PATCH V3 5/5] MIPS: Loongson-3: Introduce CONFIG_LOONGSON3_ENHANCEMENT Huacai Chen
2016-02-25  0:49   ` Maciej W. Rozycki
2016-02-25  0:49     ` Maciej W. Rozycki
2016-02-25  5:41     ` Huacai Chen
2016-02-25 12:25       ` Maciej W. Rozycki
2016-02-25 12:49         ` Huacai Chen
2016-03-01  1:06           ` Maciej W. Rozycki
2016-03-01  2:18             ` Huacai Chen

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox