diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2014-04-02 16:40:50 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2014-04-02 16:40:50 -0400 |
commit | bdfc7cbdeef8cadba0e5793079ac0130b8e2220c (patch) | |
tree | 82af0cae4898e259edcc6cbdad639087dc1189a8 /arch/mips/include/asm/mipsregs.h | |
parent | 62d1a3ba5adc5653d43f6cd3a90758bb6ad5d5bd (diff) | |
parent | ade63aada79c61bcd5f51cbd310f237399892268 (diff) |
Merge branch 'mips-for-linux-next' of git://git.linux-mips.org/pub/scm/ralf/upstream-sfr
Pull MIPS updates from Ralf Baechle:
- Support for Imgtec's Aptiv family of MIPS cores.
- Improved detection of BCM47xx configurations.
- Fix hiberation for certain configurations.
- Add support for the Chinese Loongson 3 CPU, a MIPS64 R2 core and
systems.
- Detection and support for the MIPS P5600 core.
- A few more random fixes that didn't make 3.14.
- Support for the EVA Extended Virtual Addressing
- Switch Alchemy to the platform PATA driver
- Complete unification of Alchemy support
- Allow availability of I/O cache coherency to be runtime detected
- Improvments to multiprocessing support for Imgtec platforms
- A few microoptimizations
- Cleanups of FPU support
- Paul Gortmaker's fixes for the init stuff
- Support for seccomp
* 'mips-for-linux-next' of git://git.linux-mips.org/pub/scm/ralf/upstream-sfr: (165 commits)
MIPS: CPC: Use __raw_ memory access functions
MIPS: CM: use __raw_ memory access functions
MIPS: Fix warning when including smp-ops.h with CONFIG_SMP=n
MIPS: Malta: GIC IPIs may be used without MT
MIPS: smp-mt: Use common GIC IPI implementation
MIPS: smp-cmp: Remove incorrect core number probe
MIPS: Fix gigaton of warning building with microMIPS.
MIPS: Fix core number detection for MT cores
MIPS: MT: core_nvpes function to retrieve VPE count
MIPS: Provide empty mips_mt_set_cpuoptions when CONFIG_MIPS_MT=n
MIPS: Lasat: Replace del_timer by del_timer_sync
MIPS: Malta: Setup PM I/O region on boot
MIPS: Loongson: Add a Loongson-3 default config file
MIPS: Loongson 3: Add CPU hotplug support
MIPS: Loongson 3: Add Loongson-3 SMP support
MIPS: Loongson: Add Loongson-3 Kconfig options
MIPS: Loongson: Add swiotlb to support All-Memory DMA
MIPS: Loongson 3: Add serial port support
MIPS: Loongson 3: Add IRQ init and dispatch support
MIPS: Loongson 3: Add HT-linked PCI support
...
Diffstat (limited to 'arch/mips/include/asm/mipsregs.h')
-rw-r--r-- | arch/mips/include/asm/mipsregs.h | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/arch/mips/include/asm/mipsregs.h b/arch/mips/include/asm/mipsregs.h index bbc3dd4294bc..3e025b5311db 100644 --- a/arch/mips/include/asm/mipsregs.h +++ b/arch/mips/include/asm/mipsregs.h | |||
@@ -568,11 +568,23 @@ | |||
568 | #define MIPS_CONF1_PC (_ULCAST_(1) << 4) | 568 | #define MIPS_CONF1_PC (_ULCAST_(1) << 4) |
569 | #define MIPS_CONF1_MD (_ULCAST_(1) << 5) | 569 | #define MIPS_CONF1_MD (_ULCAST_(1) << 5) |
570 | #define MIPS_CONF1_C2 (_ULCAST_(1) << 6) | 570 | #define MIPS_CONF1_C2 (_ULCAST_(1) << 6) |
571 | #define MIPS_CONF1_DA_SHF 7 | ||
572 | #define MIPS_CONF1_DA_SZ 3 | ||
571 | #define MIPS_CONF1_DA (_ULCAST_(7) << 7) | 573 | #define MIPS_CONF1_DA (_ULCAST_(7) << 7) |
574 | #define MIPS_CONF1_DL_SHF 10 | ||
575 | #define MIPS_CONF1_DL_SZ 3 | ||
572 | #define MIPS_CONF1_DL (_ULCAST_(7) << 10) | 576 | #define MIPS_CONF1_DL (_ULCAST_(7) << 10) |
577 | #define MIPS_CONF1_DS_SHF 13 | ||
578 | #define MIPS_CONF1_DS_SZ 3 | ||
573 | #define MIPS_CONF1_DS (_ULCAST_(7) << 13) | 579 | #define MIPS_CONF1_DS (_ULCAST_(7) << 13) |
580 | #define MIPS_CONF1_IA_SHF 16 | ||
581 | #define MIPS_CONF1_IA_SZ 3 | ||
574 | #define MIPS_CONF1_IA (_ULCAST_(7) << 16) | 582 | #define MIPS_CONF1_IA (_ULCAST_(7) << 16) |
583 | #define MIPS_CONF1_IL_SHF 19 | ||
584 | #define MIPS_CONF1_IL_SZ 3 | ||
575 | #define MIPS_CONF1_IL (_ULCAST_(7) << 19) | 585 | #define MIPS_CONF1_IL (_ULCAST_(7) << 19) |
586 | #define MIPS_CONF1_IS_SHF 22 | ||
587 | #define MIPS_CONF1_IS_SZ 3 | ||
576 | #define MIPS_CONF1_IS (_ULCAST_(7) << 22) | 588 | #define MIPS_CONF1_IS (_ULCAST_(7) << 22) |
577 | #define MIPS_CONF1_TLBS_SHIFT (25) | 589 | #define MIPS_CONF1_TLBS_SHIFT (25) |
578 | #define MIPS_CONF1_TLBS_SIZE (6) | 590 | #define MIPS_CONF1_TLBS_SIZE (6) |
@@ -653,9 +665,16 @@ | |||
653 | 665 | ||
654 | #define MIPS_CONF7_RPS (_ULCAST_(1) << 2) | 666 | #define MIPS_CONF7_RPS (_ULCAST_(1) << 2) |
655 | 667 | ||
668 | #define MIPS_CONF7_IAR (_ULCAST_(1) << 10) | ||
669 | #define MIPS_CONF7_AR (_ULCAST_(1) << 16) | ||
670 | |||
656 | /* EntryHI bit definition */ | 671 | /* EntryHI bit definition */ |
657 | #define MIPS_ENTRYHI_EHINV (_ULCAST_(1) << 10) | 672 | #define MIPS_ENTRYHI_EHINV (_ULCAST_(1) << 10) |
658 | 673 | ||
674 | /* CMGCRBase bit definitions */ | ||
675 | #define MIPS_CMGCRB_BASE 11 | ||
676 | #define MIPS_CMGCRF_BASE (~_ULCAST_((1 << MIPS_CMGCRB_BASE) - 1)) | ||
677 | |||
659 | /* | 678 | /* |
660 | * Bits in the MIPS32/64 coprocessor 1 (FPU) revision register. | 679 | * Bits in the MIPS32/64 coprocessor 1 (FPU) revision register. |
661 | */ | 680 | */ |
@@ -1010,6 +1029,8 @@ do { \ | |||
1010 | 1029 | ||
1011 | #define read_c0_prid() __read_32bit_c0_register($15, 0) | 1030 | #define read_c0_prid() __read_32bit_c0_register($15, 0) |
1012 | 1031 | ||
1032 | #define read_c0_cmgcrbase() __read_ulong_c0_register($15, 3) | ||
1033 | |||
1013 | #define read_c0_config() __read_32bit_c0_register($16, 0) | 1034 | #define read_c0_config() __read_32bit_c0_register($16, 0) |
1014 | #define read_c0_config1() __read_32bit_c0_register($16, 1) | 1035 | #define read_c0_config1() __read_32bit_c0_register($16, 1) |
1015 | #define read_c0_config2() __read_32bit_c0_register($16, 2) | 1036 | #define read_c0_config2() __read_32bit_c0_register($16, 2) |
@@ -1883,6 +1904,7 @@ change_c0_##name(unsigned int change, unsigned int newbits) \ | |||
1883 | __BUILD_SET_C0(status) | 1904 | __BUILD_SET_C0(status) |
1884 | __BUILD_SET_C0(cause) | 1905 | __BUILD_SET_C0(cause) |
1885 | __BUILD_SET_C0(config) | 1906 | __BUILD_SET_C0(config) |
1907 | __BUILD_SET_C0(config5) | ||
1886 | __BUILD_SET_C0(intcontrol) | 1908 | __BUILD_SET_C0(intcontrol) |
1887 | __BUILD_SET_C0(intctl) | 1909 | __BUILD_SET_C0(intctl) |
1888 | __BUILD_SET_C0(srsmap) | 1910 | __BUILD_SET_C0(srsmap) |