2007-03-18 03:30:29 +03:00
|
|
|
/*
|
|
|
|
* MIPS emulation for qemu: CPU initialisation routines.
|
|
|
|
*
|
|
|
|
* Copyright (c) 2004-2005 Jocelyn Mayer
|
|
|
|
* Copyright (c) 2007 Herve Poussineau
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
2009-07-17 00:47:01 +04:00
|
|
|
* License along with this library; if not, see <http://www.gnu.org/licenses/>.
|
2007-03-18 03:30:29 +03:00
|
|
|
*/
|
|
|
|
|
2007-03-21 14:04:42 +03:00
|
|
|
/* CPU / CPU family specific config register values. */
|
|
|
|
|
2007-12-25 06:13:56 +03:00
|
|
|
/* Have config1, uncached coherency */
|
2007-03-21 14:04:42 +03:00
|
|
|
#define MIPS_CONFIG0 \
|
2014-03-17 20:00:34 +04:00
|
|
|
((1U << CP0C0_M) | (0x2 << CP0C0_K0))
|
2007-03-21 14:04:42 +03:00
|
|
|
|
2007-07-30 02:11:46 +04:00
|
|
|
/* Have config2, no coprocessor2 attached, no MDMX support attached,
|
2007-03-21 14:04:42 +03:00
|
|
|
no performance counters, watch registers present,
|
|
|
|
no code compression, EJTAG present, no FPU */
|
|
|
|
#define MIPS_CONFIG1 \
|
2014-03-17 20:00:34 +04:00
|
|
|
((1U << CP0C1_M) | \
|
2007-03-21 14:04:42 +03:00
|
|
|
(0 << CP0C1_C2) | (0 << CP0C1_MD) | (0 << CP0C1_PC) | \
|
|
|
|
(1 << CP0C1_WR) | (0 << CP0C1_CA) | (1 << CP0C1_EP) | \
|
|
|
|
(0 << CP0C1_FP))
|
|
|
|
|
|
|
|
/* Have config3, no tertiary/secondary caches implemented */
|
|
|
|
#define MIPS_CONFIG2 \
|
2014-03-17 20:00:34 +04:00
|
|
|
((1U << CP0C2_M))
|
2007-03-21 14:04:42 +03:00
|
|
|
|
2007-12-25 06:13:56 +03:00
|
|
|
/* No config4, no DSP ASE, no large physaddr (PABITS),
|
2011-04-28 19:20:35 +04:00
|
|
|
no external interrupt controller, no vectored interrupts,
|
2007-09-06 04:18:15 +04:00
|
|
|
no 1kb pages, no SmartMIPS ASE, no trace logic */
|
2007-03-21 14:04:42 +03:00
|
|
|
#define MIPS_CONFIG3 \
|
|
|
|
((0 << CP0C3_M) | (0 << CP0C3_DSPP) | (0 << CP0C3_LPA) | \
|
|
|
|
(0 << CP0C3_VEIC) | (0 << CP0C3_VInt) | (0 << CP0C3_SP) | \
|
2007-09-06 04:18:15 +04:00
|
|
|
(0 << CP0C3_SM) | (0 << CP0C3_TL))
|
2007-03-21 14:04:42 +03:00
|
|
|
|
2014-01-24 16:45:05 +04:00
|
|
|
#define MIPS_CONFIG4 \
|
|
|
|
((0 << CP0C4_M))
|
|
|
|
|
2014-01-17 22:25:57 +04:00
|
|
|
#define MIPS_CONFIG5 \
|
|
|
|
((0 << CP0C5_M))
|
|
|
|
|
2007-03-18 03:30:29 +03:00
|
|
|
/*****************************************************************************/
|
|
|
|
/* MIPS CPU definitions */
|
2017-09-20 22:49:33 +03:00
|
|
|
const mips_def_t mips_defs[] =
|
2007-03-18 03:30:29 +03:00
|
|
|
{
|
|
|
|
{
|
|
|
|
.name = "4Kc",
|
|
|
|
.CP0_PRid = 0x00018000,
|
2007-12-25 06:13:56 +03:00
|
|
|
.CP0_Config0 = MIPS_CONFIG0 | (MMU_TYPE_R4000 << CP0C0_MT),
|
2007-07-30 02:11:46 +04:00
|
|
|
.CP0_Config1 = MIPS_CONFIG1 | (15 << CP0C1_MMU) |
|
2009-01-14 22:40:36 +03:00
|
|
|
(0 << CP0C1_IS) | (3 << CP0C1_IL) | (1 << CP0C1_IA) |
|
2009-12-08 19:06:32 +03:00
|
|
|
(0 << CP0C1_DS) | (3 << CP0C1_DL) | (1 << CP0C1_DA) |
|
2009-12-15 16:03:03 +03:00
|
|
|
(0 << CP0C1_CA),
|
2007-03-21 14:04:42 +03:00
|
|
|
.CP0_Config2 = MIPS_CONFIG2,
|
|
|
|
.CP0_Config3 = MIPS_CONFIG3,
|
2009-11-22 15:22:54 +03:00
|
|
|
.CP0_LLAddr_rw_bitmask = 0,
|
|
|
|
.CP0_LLAddr_shift = 4,
|
2007-04-12 00:34:23 +04:00
|
|
|
.SYNCI_Step = 32,
|
|
|
|
.CCRes = 2,
|
2007-09-06 04:18:15 +04:00
|
|
|
.CP0_Status_rw_bitmask = 0x1278FF17,
|
2007-12-25 06:13:56 +03:00
|
|
|
.SEGBITS = 32,
|
|
|
|
.PABITS = 32,
|
2009-12-15 16:43:40 +03:00
|
|
|
.insn_flags = CPU_MIPS32,
|
2007-12-25 06:13:56 +03:00
|
|
|
.mmu_type = MMU_TYPE_R4000,
|
2007-03-18 03:30:29 +03:00
|
|
|
},
|
2007-11-19 19:10:33 +03:00
|
|
|
{
|
|
|
|
.name = "4Km",
|
|
|
|
.CP0_PRid = 0x00018300,
|
|
|
|
/* Config1 implemented, fixed mapping MMU,
|
|
|
|
no virtual icache, uncached coherency. */
|
2007-12-25 06:13:56 +03:00
|
|
|
.CP0_Config0 = MIPS_CONFIG0 | (MMU_TYPE_FMT << CP0C0_MT),
|
2007-11-19 19:10:33 +03:00
|
|
|
.CP0_Config1 = MIPS_CONFIG1 |
|
2009-01-14 22:40:36 +03:00
|
|
|
(0 << CP0C1_IS) | (3 << CP0C1_IL) | (1 << CP0C1_IA) |
|
2009-12-08 19:06:32 +03:00
|
|
|
(0 << CP0C1_DS) | (3 << CP0C1_DL) | (1 << CP0C1_DA) |
|
|
|
|
(1 << CP0C1_CA),
|
2007-11-19 19:10:33 +03:00
|
|
|
.CP0_Config2 = MIPS_CONFIG2,
|
|
|
|
.CP0_Config3 = MIPS_CONFIG3,
|
2009-11-22 15:22:54 +03:00
|
|
|
.CP0_LLAddr_rw_bitmask = 0,
|
|
|
|
.CP0_LLAddr_shift = 4,
|
2007-11-19 19:10:33 +03:00
|
|
|
.SYNCI_Step = 32,
|
|
|
|
.CCRes = 2,
|
|
|
|
.CP0_Status_rw_bitmask = 0x1258FF17,
|
2007-12-25 06:13:56 +03:00
|
|
|
.SEGBITS = 32,
|
|
|
|
.PABITS = 32,
|
2007-11-19 19:10:33 +03:00
|
|
|
.insn_flags = CPU_MIPS32 | ASE_MIPS16,
|
2007-12-25 06:13:56 +03:00
|
|
|
.mmu_type = MMU_TYPE_FMT,
|
2007-11-19 19:10:33 +03:00
|
|
|
},
|
2007-03-18 03:30:29 +03:00
|
|
|
{
|
2007-03-25 03:36:18 +04:00
|
|
|
.name = "4KEcR1",
|
2007-03-18 03:30:29 +03:00
|
|
|
.CP0_PRid = 0x00018400,
|
2007-12-25 06:13:56 +03:00
|
|
|
.CP0_Config0 = MIPS_CONFIG0 | (MMU_TYPE_R4000 << CP0C0_MT),
|
2007-07-30 02:11:46 +04:00
|
|
|
.CP0_Config1 = MIPS_CONFIG1 | (15 << CP0C1_MMU) |
|
2009-01-14 22:40:36 +03:00
|
|
|
(0 << CP0C1_IS) | (3 << CP0C1_IL) | (1 << CP0C1_IA) |
|
2009-12-08 19:06:32 +03:00
|
|
|
(0 << CP0C1_DS) | (3 << CP0C1_DL) | (1 << CP0C1_DA) |
|
2009-12-15 16:03:03 +03:00
|
|
|
(0 << CP0C1_CA),
|
2007-03-25 03:36:18 +04:00
|
|
|
.CP0_Config2 = MIPS_CONFIG2,
|
|
|
|
.CP0_Config3 = MIPS_CONFIG3,
|
2009-11-22 15:22:54 +03:00
|
|
|
.CP0_LLAddr_rw_bitmask = 0,
|
|
|
|
.CP0_LLAddr_shift = 4,
|
2007-04-12 00:34:23 +04:00
|
|
|
.SYNCI_Step = 32,
|
|
|
|
.CCRes = 2,
|
2007-09-06 04:18:15 +04:00
|
|
|
.CP0_Status_rw_bitmask = 0x1278FF17,
|
2007-12-25 06:13:56 +03:00
|
|
|
.SEGBITS = 32,
|
|
|
|
.PABITS = 32,
|
2009-12-15 16:43:40 +03:00
|
|
|
.insn_flags = CPU_MIPS32,
|
2007-12-25 06:13:56 +03:00
|
|
|
.mmu_type = MMU_TYPE_R4000,
|
2007-03-25 03:36:18 +04:00
|
|
|
},
|
2007-11-19 19:10:33 +03:00
|
|
|
{
|
|
|
|
.name = "4KEmR1",
|
|
|
|
.CP0_PRid = 0x00018500,
|
2007-12-25 06:13:56 +03:00
|
|
|
.CP0_Config0 = MIPS_CONFIG0 | (MMU_TYPE_FMT << CP0C0_MT),
|
2007-11-19 19:10:33 +03:00
|
|
|
.CP0_Config1 = MIPS_CONFIG1 |
|
2009-01-14 22:40:36 +03:00
|
|
|
(0 << CP0C1_IS) | (3 << CP0C1_IL) | (1 << CP0C1_IA) |
|
2009-12-08 19:06:32 +03:00
|
|
|
(0 << CP0C1_DS) | (3 << CP0C1_DL) | (1 << CP0C1_DA) |
|
|
|
|
(1 << CP0C1_CA),
|
2007-11-19 19:10:33 +03:00
|
|
|
.CP0_Config2 = MIPS_CONFIG2,
|
|
|
|
.CP0_Config3 = MIPS_CONFIG3,
|
2009-11-22 15:22:54 +03:00
|
|
|
.CP0_LLAddr_rw_bitmask = 0,
|
|
|
|
.CP0_LLAddr_shift = 4,
|
2007-11-19 19:10:33 +03:00
|
|
|
.SYNCI_Step = 32,
|
|
|
|
.CCRes = 2,
|
|
|
|
.CP0_Status_rw_bitmask = 0x1258FF17,
|
2007-12-25 06:13:56 +03:00
|
|
|
.SEGBITS = 32,
|
|
|
|
.PABITS = 32,
|
2007-11-19 19:10:33 +03:00
|
|
|
.insn_flags = CPU_MIPS32 | ASE_MIPS16,
|
2007-12-25 06:13:56 +03:00
|
|
|
.mmu_type = MMU_TYPE_FMT,
|
2007-11-19 19:10:33 +03:00
|
|
|
},
|
2007-03-25 03:36:18 +04:00
|
|
|
{
|
|
|
|
.name = "4KEc",
|
|
|
|
.CP0_PRid = 0x00019000,
|
2007-12-25 06:13:56 +03:00
|
|
|
.CP0_Config0 = MIPS_CONFIG0 | (0x1 << CP0C0_AR) |
|
|
|
|
(MMU_TYPE_R4000 << CP0C0_MT),
|
2007-07-30 02:11:46 +04:00
|
|
|
.CP0_Config1 = MIPS_CONFIG1 | (15 << CP0C1_MMU) |
|
2009-01-14 22:40:36 +03:00
|
|
|
(0 << CP0C1_IS) | (3 << CP0C1_IL) | (1 << CP0C1_IA) |
|
2009-12-08 19:06:32 +03:00
|
|
|
(0 << CP0C1_DS) | (3 << CP0C1_DL) | (1 << CP0C1_DA) |
|
2009-12-15 16:03:03 +03:00
|
|
|
(0 << CP0C1_CA),
|
2007-03-25 03:36:18 +04:00
|
|
|
.CP0_Config2 = MIPS_CONFIG2,
|
2007-09-06 04:18:15 +04:00
|
|
|
.CP0_Config3 = MIPS_CONFIG3 | (0 << CP0C3_VInt),
|
2009-11-22 15:22:54 +03:00
|
|
|
.CP0_LLAddr_rw_bitmask = 0,
|
|
|
|
.CP0_LLAddr_shift = 4,
|
2007-04-12 00:34:23 +04:00
|
|
|
.SYNCI_Step = 32,
|
|
|
|
.CCRes = 2,
|
2007-09-06 04:18:15 +04:00
|
|
|
.CP0_Status_rw_bitmask = 0x1278FF17,
|
2007-12-25 06:13:56 +03:00
|
|
|
.SEGBITS = 32,
|
|
|
|
.PABITS = 32,
|
2009-12-15 16:43:40 +03:00
|
|
|
.insn_flags = CPU_MIPS32R2,
|
2007-12-25 06:13:56 +03:00
|
|
|
.mmu_type = MMU_TYPE_R4000,
|
2007-03-25 03:36:18 +04:00
|
|
|
},
|
2007-11-14 06:11:17 +03:00
|
|
|
{
|
|
|
|
.name = "4KEm",
|
|
|
|
.CP0_PRid = 0x00019100,
|
2007-12-25 06:13:56 +03:00
|
|
|
.CP0_Config0 = MIPS_CONFIG0 | (0x1 << CP0C0_AR) |
|
2009-01-14 22:40:36 +03:00
|
|
|
(MMU_TYPE_FMT << CP0C0_MT),
|
2007-11-14 06:11:17 +03:00
|
|
|
.CP0_Config1 = MIPS_CONFIG1 |
|
2009-01-14 22:40:36 +03:00
|
|
|
(0 << CP0C1_IS) | (3 << CP0C1_IL) | (1 << CP0C1_IA) |
|
2009-12-08 19:06:32 +03:00
|
|
|
(0 << CP0C1_DS) | (3 << CP0C1_DL) | (1 << CP0C1_DA) |
|
|
|
|
(1 << CP0C1_CA),
|
2007-11-14 06:11:17 +03:00
|
|
|
.CP0_Config2 = MIPS_CONFIG2,
|
|
|
|
.CP0_Config3 = MIPS_CONFIG3,
|
2009-11-22 15:22:54 +03:00
|
|
|
.CP0_LLAddr_rw_bitmask = 0,
|
|
|
|
.CP0_LLAddr_shift = 4,
|
2007-11-14 06:11:17 +03:00
|
|
|
.SYNCI_Step = 32,
|
|
|
|
.CCRes = 2,
|
|
|
|
.CP0_Status_rw_bitmask = 0x1258FF17,
|
2007-12-25 06:13:56 +03:00
|
|
|
.SEGBITS = 32,
|
|
|
|
.PABITS = 32,
|
2007-11-14 06:11:17 +03:00
|
|
|
.insn_flags = CPU_MIPS32R2 | ASE_MIPS16,
|
2007-12-25 06:13:56 +03:00
|
|
|
.mmu_type = MMU_TYPE_FMT,
|
2007-11-14 06:11:17 +03:00
|
|
|
},
|
2007-03-25 03:36:18 +04:00
|
|
|
{
|
|
|
|
.name = "24Kc",
|
|
|
|
.CP0_PRid = 0x00019300,
|
2007-12-25 06:13:56 +03:00
|
|
|
.CP0_Config0 = MIPS_CONFIG0 | (0x1 << CP0C0_AR) |
|
2009-01-14 22:40:36 +03:00
|
|
|
(MMU_TYPE_R4000 << CP0C0_MT),
|
2007-07-30 02:11:46 +04:00
|
|
|
.CP0_Config1 = MIPS_CONFIG1 | (15 << CP0C1_MMU) |
|
2009-01-14 22:40:36 +03:00
|
|
|
(0 << CP0C1_IS) | (3 << CP0C1_IL) | (1 << CP0C1_IA) |
|
2009-12-08 19:06:32 +03:00
|
|
|
(0 << CP0C1_DS) | (3 << CP0C1_DL) | (1 << CP0C1_DA) |
|
|
|
|
(1 << CP0C1_CA),
|
2007-03-21 14:04:42 +03:00
|
|
|
.CP0_Config2 = MIPS_CONFIG2,
|
2007-09-06 04:18:15 +04:00
|
|
|
.CP0_Config3 = MIPS_CONFIG3 | (0 << CP0C3_VInt),
|
2009-11-22 15:22:54 +03:00
|
|
|
.CP0_LLAddr_rw_bitmask = 0,
|
|
|
|
.CP0_LLAddr_shift = 4,
|
2007-04-12 00:34:23 +04:00
|
|
|
.SYNCI_Step = 32,
|
|
|
|
.CCRes = 2,
|
2007-09-06 04:18:15 +04:00
|
|
|
/* No DSP implemented. */
|
2007-09-29 23:21:36 +04:00
|
|
|
.CP0_Status_rw_bitmask = 0x1278FF1F,
|
2007-12-25 06:13:56 +03:00
|
|
|
.SEGBITS = 32,
|
|
|
|
.PABITS = 32,
|
2007-11-14 06:11:17 +03:00
|
|
|
.insn_flags = CPU_MIPS32R2 | ASE_MIPS16,
|
2007-12-25 06:13:56 +03:00
|
|
|
.mmu_type = MMU_TYPE_R4000,
|
2007-03-18 03:30:29 +03:00
|
|
|
},
|
2016-07-26 02:42:45 +03:00
|
|
|
{
|
|
|
|
.name = "24KEc",
|
|
|
|
.CP0_PRid = 0x00019600,
|
|
|
|
.CP0_Config0 = MIPS_CONFIG0 | (0x1 << CP0C0_AR) |
|
|
|
|
(MMU_TYPE_R4000 << CP0C0_MT),
|
|
|
|
.CP0_Config1 = MIPS_CONFIG1 | (15 << CP0C1_MMU) |
|
|
|
|
(0 << CP0C1_IS) | (3 << CP0C1_IL) | (1 << CP0C1_IA) |
|
|
|
|
(0 << CP0C1_DS) | (3 << CP0C1_DL) | (1 << CP0C1_DA) |
|
|
|
|
(1 << CP0C1_CA),
|
|
|
|
.CP0_Config2 = MIPS_CONFIG2,
|
|
|
|
.CP0_Config3 = MIPS_CONFIG3 | (1 << CP0C3_DSPP) | (0 << CP0C3_VInt),
|
|
|
|
.CP0_LLAddr_rw_bitmask = 0,
|
|
|
|
.CP0_LLAddr_shift = 4,
|
|
|
|
.SYNCI_Step = 32,
|
|
|
|
.CCRes = 2,
|
|
|
|
/* we have a DSP, but no FPU */
|
|
|
|
.CP0_Status_rw_bitmask = 0x1378FF1F,
|
|
|
|
.SEGBITS = 32,
|
|
|
|
.PABITS = 32,
|
|
|
|
.insn_flags = CPU_MIPS32R2 | ASE_MIPS16 | ASE_DSP,
|
|
|
|
.mmu_type = MMU_TYPE_R4000,
|
|
|
|
},
|
2007-03-18 03:30:29 +03:00
|
|
|
{
|
|
|
|
.name = "24Kf",
|
|
|
|
.CP0_PRid = 0x00019300,
|
2007-12-25 06:13:56 +03:00
|
|
|
.CP0_Config0 = MIPS_CONFIG0 | (0x1 << CP0C0_AR) |
|
|
|
|
(MMU_TYPE_R4000 << CP0C0_MT),
|
2007-07-30 02:11:46 +04:00
|
|
|
.CP0_Config1 = MIPS_CONFIG1 | (1 << CP0C1_FP) | (15 << CP0C1_MMU) |
|
2009-01-14 22:40:36 +03:00
|
|
|
(0 << CP0C1_IS) | (3 << CP0C1_IL) | (1 << CP0C1_IA) |
|
2009-12-08 19:06:32 +03:00
|
|
|
(0 << CP0C1_DS) | (3 << CP0C1_DL) | (1 << CP0C1_DA) |
|
|
|
|
(1 << CP0C1_CA),
|
2007-03-21 14:04:42 +03:00
|
|
|
.CP0_Config2 = MIPS_CONFIG2,
|
2007-09-06 04:18:15 +04:00
|
|
|
.CP0_Config3 = MIPS_CONFIG3 | (0 << CP0C3_VInt),
|
2009-11-22 15:22:54 +03:00
|
|
|
.CP0_LLAddr_rw_bitmask = 0,
|
|
|
|
.CP0_LLAddr_shift = 4,
|
2007-04-12 00:34:23 +04:00
|
|
|
.SYNCI_Step = 32,
|
|
|
|
.CCRes = 2,
|
2007-09-06 04:18:15 +04:00
|
|
|
/* No DSP implemented. */
|
2007-09-29 23:21:36 +04:00
|
|
|
.CP0_Status_rw_bitmask = 0x3678FF1F,
|
2007-05-07 17:55:33 +04:00
|
|
|
.CP1_fcr0 = (1 << FCR0_F64) | (1 << FCR0_L) | (1 << FCR0_W) |
|
|
|
|
(1 << FCR0_D) | (1 << FCR0_S) | (0x93 << FCR0_PRID),
|
2016-06-10 12:57:36 +03:00
|
|
|
.CP1_fcr31 = 0,
|
|
|
|
.CP1_fcr31_rw_bitmask = 0xFF83FFFF,
|
2007-12-25 06:13:56 +03:00
|
|
|
.SEGBITS = 32,
|
|
|
|
.PABITS = 32,
|
2007-11-14 06:11:17 +03:00
|
|
|
.insn_flags = CPU_MIPS32R2 | ASE_MIPS16,
|
2007-12-25 06:13:56 +03:00
|
|
|
.mmu_type = MMU_TYPE_R4000,
|
2007-03-18 03:30:29 +03:00
|
|
|
},
|
2007-09-06 04:18:15 +04:00
|
|
|
{
|
|
|
|
.name = "34Kf",
|
|
|
|
.CP0_PRid = 0x00019500,
|
2007-12-25 06:13:56 +03:00
|
|
|
.CP0_Config0 = MIPS_CONFIG0 | (0x1 << CP0C0_AR) |
|
2009-01-14 22:40:36 +03:00
|
|
|
(MMU_TYPE_R4000 << CP0C0_MT),
|
2007-09-06 04:18:15 +04:00
|
|
|
.CP0_Config1 = MIPS_CONFIG1 | (1 << CP0C1_FP) | (15 << CP0C1_MMU) |
|
2009-01-14 22:40:36 +03:00
|
|
|
(0 << CP0C1_IS) | (3 << CP0C1_IL) | (1 << CP0C1_IA) |
|
2009-12-08 19:06:32 +03:00
|
|
|
(0 << CP0C1_DS) | (3 << CP0C1_DL) | (1 << CP0C1_DA) |
|
|
|
|
(1 << CP0C1_CA),
|
2007-09-06 04:18:15 +04:00
|
|
|
.CP0_Config2 = MIPS_CONFIG2,
|
2013-08-02 13:33:43 +04:00
|
|
|
.CP0_Config3 = MIPS_CONFIG3 | (1 << CP0C3_VInt) | (1 << CP0C3_MT) |
|
|
|
|
(1 << CP0C3_DSPP),
|
2009-11-22 15:22:54 +03:00
|
|
|
.CP0_LLAddr_rw_bitmask = 0,
|
|
|
|
.CP0_LLAddr_shift = 0,
|
2007-09-06 04:18:15 +04:00
|
|
|
.SYNCI_Step = 32,
|
|
|
|
.CCRes = 2,
|
2013-08-02 13:33:43 +04:00
|
|
|
.CP0_Status_rw_bitmask = 0x3778FF1F,
|
2007-09-06 04:18:15 +04:00
|
|
|
.CP0_TCStatus_rw_bitmask = (0 << CP0TCSt_TCU3) | (0 << CP0TCSt_TCU2) |
|
|
|
|
(1 << CP0TCSt_TCU1) | (1 << CP0TCSt_TCU0) |
|
|
|
|
(0 << CP0TCSt_TMX) | (1 << CP0TCSt_DT) |
|
|
|
|
(1 << CP0TCSt_DA) | (1 << CP0TCSt_A) |
|
|
|
|
(0x3 << CP0TCSt_TKSU) | (1 << CP0TCSt_IXMT) |
|
|
|
|
(0xff << CP0TCSt_TASID),
|
|
|
|
.CP1_fcr0 = (1 << FCR0_F64) | (1 << FCR0_L) | (1 << FCR0_W) |
|
|
|
|
(1 << FCR0_D) | (1 << FCR0_S) | (0x95 << FCR0_PRID),
|
2016-06-10 12:57:36 +03:00
|
|
|
.CP1_fcr31 = 0,
|
|
|
|
.CP1_fcr31_rw_bitmask = 0xFF83FFFF,
|
2007-09-06 04:18:15 +04:00
|
|
|
.CP0_SRSCtl = (0xf << CP0SRSCtl_HSS),
|
|
|
|
.CP0_SRSConf0_rw_bitmask = 0x3fffffff,
|
2014-03-17 20:00:34 +04:00
|
|
|
.CP0_SRSConf0 = (1U << CP0SRSC0_M) | (0x3fe << CP0SRSC0_SRS3) |
|
2007-09-06 04:18:15 +04:00
|
|
|
(0x3fe << CP0SRSC0_SRS2) | (0x3fe << CP0SRSC0_SRS1),
|
|
|
|
.CP0_SRSConf1_rw_bitmask = 0x3fffffff,
|
2014-03-17 20:00:34 +04:00
|
|
|
.CP0_SRSConf1 = (1U << CP0SRSC1_M) | (0x3fe << CP0SRSC1_SRS6) |
|
2007-09-06 04:18:15 +04:00
|
|
|
(0x3fe << CP0SRSC1_SRS5) | (0x3fe << CP0SRSC1_SRS4),
|
|
|
|
.CP0_SRSConf2_rw_bitmask = 0x3fffffff,
|
2014-03-17 20:00:34 +04:00
|
|
|
.CP0_SRSConf2 = (1U << CP0SRSC2_M) | (0x3fe << CP0SRSC2_SRS9) |
|
2007-09-06 04:18:15 +04:00
|
|
|
(0x3fe << CP0SRSC2_SRS8) | (0x3fe << CP0SRSC2_SRS7),
|
|
|
|
.CP0_SRSConf3_rw_bitmask = 0x3fffffff,
|
2014-03-17 20:00:34 +04:00
|
|
|
.CP0_SRSConf3 = (1U << CP0SRSC3_M) | (0x3fe << CP0SRSC3_SRS12) |
|
2007-09-06 04:18:15 +04:00
|
|
|
(0x3fe << CP0SRSC3_SRS11) | (0x3fe << CP0SRSC3_SRS10),
|
|
|
|
.CP0_SRSConf4_rw_bitmask = 0x3fffffff,
|
|
|
|
.CP0_SRSConf4 = (0x3fe << CP0SRSC4_SRS15) |
|
|
|
|
(0x3fe << CP0SRSC4_SRS14) | (0x3fe << CP0SRSC4_SRS13),
|
2007-12-25 06:13:56 +03:00
|
|
|
.SEGBITS = 32,
|
|
|
|
.PABITS = 32,
|
2007-10-23 21:04:27 +04:00
|
|
|
.insn_flags = CPU_MIPS32R2 | ASE_MIPS16 | ASE_DSP | ASE_MT,
|
2007-12-25 06:13:56 +03:00
|
|
|
.mmu_type = MMU_TYPE_R4000,
|
2007-09-06 04:18:15 +04:00
|
|
|
},
|
2012-10-24 18:17:12 +04:00
|
|
|
{
|
|
|
|
.name = "74Kf",
|
|
|
|
.CP0_PRid = 0x00019700,
|
|
|
|
.CP0_Config0 = MIPS_CONFIG0 | (0x1 << CP0C0_AR) |
|
|
|
|
(MMU_TYPE_R4000 << CP0C0_MT),
|
|
|
|
.CP0_Config1 = MIPS_CONFIG1 | (1 << CP0C1_FP) | (15 << CP0C1_MMU) |
|
|
|
|
(0 << CP0C1_IS) | (3 << CP0C1_IL) | (1 << CP0C1_IA) |
|
|
|
|
(0 << CP0C1_DS) | (3 << CP0C1_DL) | (1 << CP0C1_DA) |
|
|
|
|
(1 << CP0C1_CA),
|
|
|
|
.CP0_Config2 = MIPS_CONFIG2,
|
2014-11-04 18:41:20 +03:00
|
|
|
.CP0_Config3 = MIPS_CONFIG3 | (1 << CP0C3_DSP2P) | (1 << CP0C3_DSPP) |
|
2014-11-04 18:42:19 +03:00
|
|
|
(1 << CP0C3_VInt),
|
2012-10-24 18:17:12 +04:00
|
|
|
.CP0_LLAddr_rw_bitmask = 0,
|
|
|
|
.CP0_LLAddr_shift = 4,
|
|
|
|
.SYNCI_Step = 32,
|
|
|
|
.CCRes = 2,
|
|
|
|
.CP0_Status_rw_bitmask = 0x3778FF1F,
|
|
|
|
.CP1_fcr0 = (1 << FCR0_F64) | (1 << FCR0_L) | (1 << FCR0_W) |
|
|
|
|
(1 << FCR0_D) | (1 << FCR0_S) | (0x93 << FCR0_PRID),
|
2016-06-10 12:57:36 +03:00
|
|
|
.CP1_fcr31 = 0,
|
|
|
|
.CP1_fcr31_rw_bitmask = 0xFF83FFFF,
|
2012-10-24 18:17:12 +04:00
|
|
|
.SEGBITS = 32,
|
|
|
|
.PABITS = 32,
|
|
|
|
.insn_flags = CPU_MIPS32R2 | ASE_MIPS16 | ASE_DSP | ASE_DSPR2,
|
|
|
|
.mmu_type = MMU_TYPE_R4000,
|
|
|
|
},
|
target-mips: Add M14K and M14Kc MIPS32r2 microMIPS processors
Add the M14K and M14Kc processors from MIPS Technologies that are the
original implementation of the microMIPS ISA. They are dual instruction
set processors, implementing both the microMIPS and the standard MIPSr32
ISA.
These processors correspond to the M4K and 4KEc CPUs respectively,
except with support for the microMIPS instruction set added, support for
the MCU ASE added and two extra interrupt lines, making a total of 8
hardware interrupts plus 2 software interrupts. The remaining parts of
the microarchitecture, in particular the pipeline, stayed unchanged.
The presence of the microMIPS ASE is is reflected in the configuration
added. We currently have no support for the MCU ASE, including in
particular the ACLR, ASET and IRET instructions in either encoding, and
we have no support for the extra interrupt lines, including bits in
CP0.Status and CP0.Cause registers, so these features are not marked,
making our support diverge from real hardware.
Signed-off-by: Sandra Loosemore <sandra@codesourcery.com>
Signed-off-by: Maciej W. Rozycki <macro@codesourcery.com>
Reviewed-by: Leon Alrae <leon.alrae@imgtec.com>
Signed-off-by: Leon Alrae <leon.alrae@imgtec.com>
2014-11-04 18:39:48 +03:00
|
|
|
{
|
|
|
|
.name = "M14K",
|
|
|
|
.CP0_PRid = 0x00019b00,
|
|
|
|
/* Config1 implemented, fixed mapping MMU,
|
|
|
|
no virtual icache, uncached coherency. */
|
|
|
|
.CP0_Config0 = MIPS_CONFIG0 | (0x2 << CP0C0_KU) | (0x2 << CP0C0_K23) |
|
|
|
|
(0x1 << CP0C0_AR) | (MMU_TYPE_FMT << CP0C0_MT),
|
|
|
|
.CP0_Config1 = MIPS_CONFIG1,
|
|
|
|
.CP0_Config2 = MIPS_CONFIG2,
|
|
|
|
.CP0_Config3 = MIPS_CONFIG3 | (0x2 << CP0C3_ISA) | (1 << CP0C3_VInt),
|
|
|
|
.CP0_LLAddr_rw_bitmask = 0,
|
|
|
|
.CP0_LLAddr_shift = 4,
|
|
|
|
.SYNCI_Step = 32,
|
|
|
|
.CCRes = 2,
|
|
|
|
.CP0_Status_rw_bitmask = 0x1258FF17,
|
|
|
|
.SEGBITS = 32,
|
|
|
|
.PABITS = 32,
|
|
|
|
.insn_flags = CPU_MIPS32R2 | ASE_MICROMIPS,
|
|
|
|
.mmu_type = MMU_TYPE_FMT,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
.name = "M14Kc",
|
|
|
|
/* This is the TLB-based MMU core. */
|
|
|
|
.CP0_PRid = 0x00019c00,
|
|
|
|
.CP0_Config0 = MIPS_CONFIG0 | (0x1 << CP0C0_AR) |
|
|
|
|
(MMU_TYPE_R4000 << CP0C0_MT),
|
|
|
|
.CP0_Config1 = MIPS_CONFIG1 | (15 << CP0C1_MMU) |
|
|
|
|
(0 << CP0C1_IS) | (3 << CP0C1_IL) | (1 << CP0C1_IA) |
|
|
|
|
(0 << CP0C1_DS) | (3 << CP0C1_DL) | (1 << CP0C1_DA),
|
|
|
|
.CP0_Config2 = MIPS_CONFIG2,
|
|
|
|
.CP0_Config3 = MIPS_CONFIG3 | (0x2 << CP0C3_ISA) | (0 << CP0C3_VInt),
|
|
|
|
.CP0_LLAddr_rw_bitmask = 0,
|
|
|
|
.CP0_LLAddr_shift = 4,
|
|
|
|
.SYNCI_Step = 32,
|
|
|
|
.CCRes = 2,
|
|
|
|
.CP0_Status_rw_bitmask = 0x1278FF17,
|
|
|
|
.SEGBITS = 32,
|
|
|
|
.PABITS = 32,
|
|
|
|
.insn_flags = CPU_MIPS32R2 | ASE_MICROMIPS,
|
|
|
|
.mmu_type = MMU_TYPE_R4000,
|
|
|
|
},
|
2014-01-15 20:01:46 +04:00
|
|
|
{
|
2015-07-10 14:10:52 +03:00
|
|
|
/* FIXME:
|
2017-07-18 14:55:58 +03:00
|
|
|
* Config3: CMGCR, PW, VZ, CTXTC, CDMM, TL
|
2015-07-10 14:10:52 +03:00
|
|
|
* Config4: MMUExtDef
|
2017-07-18 14:55:58 +03:00
|
|
|
* Config5: MRP
|
2015-07-10 14:10:52 +03:00
|
|
|
* FIR(FCR0): Has2008
|
|
|
|
* */
|
|
|
|
.name = "P5600",
|
|
|
|
.CP0_PRid = 0x0001A800,
|
|
|
|
.CP0_Config0 = MIPS_CONFIG0 | (1 << CP0C0_MM) | (1 << CP0C0_AR) |
|
2014-01-15 20:01:46 +04:00
|
|
|
(MMU_TYPE_R4000 << CP0C0_MT),
|
2015-07-10 14:10:52 +03:00
|
|
|
.CP0_Config1 = MIPS_CONFIG1 | (0x3F << CP0C1_MMU) |
|
|
|
|
(2 << CP0C1_IS) | (4 << CP0C1_IL) | (3 << CP0C1_IA) |
|
|
|
|
(2 << CP0C1_DS) | (4 << CP0C1_DL) | (3 << CP0C1_DA) |
|
|
|
|
(1 << CP0C1_PC) | (1 << CP0C1_FP),
|
2014-01-15 20:01:46 +04:00
|
|
|
.CP0_Config2 = MIPS_CONFIG2,
|
2015-04-14 12:33:43 +03:00
|
|
|
.CP0_Config3 = MIPS_CONFIG3 | (1U << CP0C3_M) | (1 << CP0C3_MSAP) |
|
2017-07-18 14:55:58 +03:00
|
|
|
(1 << CP0C3_BP) | (1 << CP0C3_BI) | (1 << CP0C3_SC) |
|
|
|
|
(1 << CP0C3_ULRI) | (1 << CP0C3_RXI) | (1 << CP0C3_LPA) |
|
|
|
|
(1 << CP0C3_VInt),
|
2015-07-10 14:10:52 +03:00
|
|
|
.CP0_Config4 = MIPS_CONFIG4 | (1U << CP0C4_M) | (2 << CP0C4_IE) |
|
|
|
|
(0x1c << CP0C4_KScrExist),
|
2014-01-24 16:45:05 +04:00
|
|
|
.CP0_Config4_rw_bitmask = 0,
|
2017-07-18 14:55:58 +03:00
|
|
|
.CP0_Config5 = MIPS_CONFIG5 | (1 << CP0C5_EVA) | (1 << CP0C5_MVH) |
|
|
|
|
(1 << CP0C5_LLB) | (1 << CP0C5_MRP),
|
2015-07-10 14:10:52 +03:00
|
|
|
.CP0_Config5_rw_bitmask = (1 << CP0C5_K) | (1 << CP0C5_CV) |
|
|
|
|
(1 << CP0C5_MSAEn) | (1 << CP0C5_UFE) |
|
|
|
|
(1 << CP0C5_FRE) | (1 << CP0C5_UFR),
|
2014-01-15 20:01:46 +04:00
|
|
|
.CP0_LLAddr_rw_bitmask = 0,
|
2015-07-10 14:10:52 +03:00
|
|
|
.CP0_LLAddr_shift = 0,
|
2014-01-15 20:01:46 +04:00
|
|
|
.SYNCI_Step = 32,
|
|
|
|
.CCRes = 2,
|
2015-07-10 14:10:52 +03:00
|
|
|
.CP0_Status_rw_bitmask = 0x3C68FF1F,
|
|
|
|
.CP0_PageGrain_rw_bitmask = (1U << CP0PG_RIE) | (1 << CP0PG_XIE) |
|
|
|
|
(1 << CP0PG_ELPA) | (1 << CP0PG_IEC),
|
2017-07-18 14:55:58 +03:00
|
|
|
.CP0_EBaseWG_rw_bitmask = (1 << CP0EBase_WG),
|
2016-02-24 13:47:10 +03:00
|
|
|
.CP1_fcr0 = (1 << FCR0_FREP) | (1 << FCR0_UFRP) | (1 << FCR0_HAS2008) |
|
|
|
|
(1 << FCR0_F64) | (1 << FCR0_L) | (1 << FCR0_W) |
|
|
|
|
(1 << FCR0_D) | (1 << FCR0_S) | (0x03 << FCR0_PRID),
|
|
|
|
.CP1_fcr31 = (1 << FCR31_ABS2008) | (1 << FCR31_NAN2008),
|
2016-06-10 12:57:36 +03:00
|
|
|
.CP1_fcr31_rw_bitmask = 0xFF83FFFF,
|
2014-01-15 20:01:46 +04:00
|
|
|
.SEGBITS = 32,
|
2015-04-14 12:33:43 +03:00
|
|
|
.PABITS = 40,
|
2015-07-10 14:10:52 +03:00
|
|
|
.insn_flags = CPU_MIPS32R5 | ASE_MSA,
|
2014-01-15 20:01:46 +04:00
|
|
|
.mmu_type = MMU_TYPE_R4000,
|
|
|
|
},
|
2015-06-25 02:24:27 +03:00
|
|
|
{
|
|
|
|
/* A generic CPU supporting MIPS32 Release 6 ISA.
|
|
|
|
FIXME: Support IEEE 754-2008 FP.
|
|
|
|
Eventually this should be replaced by a real CPU model. */
|
|
|
|
.name = "mips32r6-generic",
|
|
|
|
.CP0_PRid = 0x00010000,
|
|
|
|
.CP0_Config0 = MIPS_CONFIG0 | (0x2 << CP0C0_AR) |
|
|
|
|
(MMU_TYPE_R4000 << CP0C0_MT),
|
|
|
|
.CP0_Config1 = MIPS_CONFIG1 | (1 << CP0C1_FP) | (31 << CP0C1_MMU) |
|
|
|
|
(2 << CP0C1_IS) | (4 << CP0C1_IL) | (3 << CP0C1_IA) |
|
|
|
|
(2 << CP0C1_DS) | (4 << CP0C1_DL) | (3 << CP0C1_DA) |
|
|
|
|
(0 << CP0C1_PC) | (1 << CP0C1_WR) | (1 << CP0C1_EP),
|
|
|
|
.CP0_Config2 = MIPS_CONFIG2,
|
|
|
|
.CP0_Config3 = MIPS_CONFIG3 | (1 << CP0C3_BP) | (1 << CP0C3_BI) |
|
|
|
|
(2 << CP0C3_ISA) | (1 << CP0C3_ULRI) |
|
|
|
|
(1 << CP0C3_RXI) | (1U << CP0C3_M),
|
|
|
|
.CP0_Config4 = MIPS_CONFIG4 | (0xfc << CP0C4_KScrExist) |
|
|
|
|
(3 << CP0C4_IE) | (1U << CP0C4_M),
|
2015-10-05 16:45:45 +03:00
|
|
|
.CP0_Config5 = MIPS_CONFIG5 | (1 << CP0C5_XNP) | (1 << CP0C5_LLB),
|
2015-06-25 02:24:27 +03:00
|
|
|
.CP0_Config5_rw_bitmask = (1 << CP0C5_SBRI) | (1 << CP0C5_FRE) |
|
|
|
|
(1 << CP0C5_UFE),
|
|
|
|
.CP0_LLAddr_rw_bitmask = 0,
|
|
|
|
.CP0_LLAddr_shift = 0,
|
|
|
|
.SYNCI_Step = 32,
|
|
|
|
.CCRes = 2,
|
|
|
|
.CP0_Status_rw_bitmask = 0x3058FF1F,
|
|
|
|
.CP0_PageGrain = (1 << CP0PG_IEC) | (1 << CP0PG_XIE) |
|
|
|
|
(1U << CP0PG_RIE),
|
|
|
|
.CP0_PageGrain_rw_bitmask = 0,
|
2016-02-24 13:47:10 +03:00
|
|
|
.CP1_fcr0 = (1 << FCR0_FREP) | (1 << FCR0_HAS2008) | (1 << FCR0_F64) |
|
|
|
|
(1 << FCR0_L) | (1 << FCR0_W) | (1 << FCR0_D) |
|
|
|
|
(1 << FCR0_S) | (0x00 << FCR0_PRID) | (0x0 << FCR0_REV),
|
|
|
|
.CP1_fcr31 = (1 << FCR31_ABS2008) | (1 << FCR31_NAN2008),
|
2016-06-10 12:57:36 +03:00
|
|
|
.CP1_fcr31_rw_bitmask = 0x0103FFFF,
|
2015-06-25 02:24:27 +03:00
|
|
|
.SEGBITS = 32,
|
|
|
|
.PABITS = 32,
|
|
|
|
.insn_flags = CPU_MIPS32R6 | ASE_MICROMIPS,
|
|
|
|
.mmu_type = MMU_TYPE_R4000,
|
|
|
|
},
|
2018-08-02 17:16:47 +03:00
|
|
|
{
|
|
|
|
.name = "I7200",
|
|
|
|
.CP0_PRid = 0x00010000,
|
|
|
|
.CP0_Config0 = MIPS_CONFIG0 | (1 << CP0C0_MM) | (0x2 << CP0C0_AR) |
|
|
|
|
(MMU_TYPE_R4000 << CP0C0_MT),
|
|
|
|
.CP0_Config1 = (1U << CP0C1_M) | (15 << CP0C1_MMU) | (2 << CP0C1_IS) |
|
|
|
|
(4 << CP0C1_IL) | (3 << CP0C1_IA) | (2 << CP0C1_DS) |
|
|
|
|
(4 << CP0C1_DL) | (3 << CP0C1_DA) | (1 << CP0C1_PC) |
|
|
|
|
(1 << CP0C1_EP),
|
|
|
|
.CP0_Config2 = MIPS_CONFIG2,
|
|
|
|
.CP0_Config3 = MIPS_CONFIG3 | (1U << CP0C3_M) | (1 << CP0C3_CMGCR) |
|
|
|
|
(1 << CP0C3_BI) | (1 << CP0C3_SC) | (3 << CP0C3_MMAR) |
|
|
|
|
(1 << CP0C3_ISA_ON_EXC) | (1 << CP0C3_ISA) |
|
|
|
|
(1 << CP0C3_ULRI) | (1 << CP0C3_RXI) |
|
|
|
|
(1 << CP0C3_DSP2P) | (1 << CP0C3_DSPP) |
|
|
|
|
(1 << CP0C3_CTXTC) | (1 << CP0C3_VInt) |
|
|
|
|
(1 << CP0C3_CDMM) | (1 << CP0C3_MT) | (1 << CP0C3_TL),
|
|
|
|
.CP0_Config4 = MIPS_CONFIG4 | (0xfc << CP0C4_KScrExist) |
|
|
|
|
(2 << CP0C4_IE) | (1U << CP0C4_M),
|
|
|
|
.CP0_Config5 = MIPS_CONFIG5 | (1 << CP0C5_MVH) | (1 << CP0C5_LLB),
|
|
|
|
.CP0_Config5_rw_bitmask = (1 << CP0C5_SBRI) | (1 << CP0C5_FRE) |
|
|
|
|
(1 << CP0C5_UFE),
|
|
|
|
.CP0_LLAddr_rw_bitmask = 0,
|
|
|
|
.CP0_LLAddr_shift = 0,
|
|
|
|
.SYNCI_Step = 32,
|
|
|
|
.CCRes = 2,
|
|
|
|
.CP0_Status_rw_bitmask = 0x3158FF1F,
|
|
|
|
.CP0_PageGrain = (1 << CP0PG_IEC) | (1 << CP0PG_XIE) |
|
|
|
|
(1U << CP0PG_RIE),
|
|
|
|
.CP0_PageGrain_rw_bitmask = 0,
|
|
|
|
.CP1_fcr0 = (1 << FCR0_FREP) | (1 << FCR0_HAS2008) | (1 << FCR0_F64) |
|
|
|
|
(1 << FCR0_L) | (1 << FCR0_W) | (1 << FCR0_D) |
|
|
|
|
(1 << FCR0_S) | (0x02 << FCR0_PRID) | (0x0 << FCR0_REV),
|
|
|
|
.CP1_fcr31 = (1 << FCR31_ABS2008) | (1 << FCR31_NAN2008),
|
|
|
|
.SEGBITS = 32,
|
|
|
|
.PABITS = 32,
|
|
|
|
.insn_flags = CPU_NANOMIPS32 | ASE_DSP | ASE_DSPR2 | ASE_MT,
|
|
|
|
.mmu_type = MMU_TYPE_R4000,
|
|
|
|
},
|
2007-11-08 21:05:37 +03:00
|
|
|
#if defined(TARGET_MIPS64)
|
2007-03-18 03:30:29 +03:00
|
|
|
{
|
|
|
|
.name = "R4000",
|
|
|
|
.CP0_PRid = 0x00000400,
|
2007-12-25 06:13:56 +03:00
|
|
|
/* No L2 cache, icache size 8k, dcache size 8k, uncached coherency. */
|
|
|
|
.CP0_Config0 = (1 << 17) | (0x1 << 9) | (0x1 << 6) | (0x2 << CP0C0_K0),
|
2009-01-14 22:40:36 +03:00
|
|
|
/* Note: Config1 is only used internally, the R4000 has only Config0. */
|
2007-12-25 06:13:56 +03:00
|
|
|
.CP0_Config1 = (1 << CP0C1_FP) | (47 << CP0C1_MMU),
|
2009-11-22 15:22:54 +03:00
|
|
|
.CP0_LLAddr_rw_bitmask = 0xFFFFFFFF,
|
|
|
|
.CP0_LLAddr_shift = 4,
|
2007-04-12 00:34:23 +04:00
|
|
|
.SYNCI_Step = 16,
|
|
|
|
.CCRes = 2,
|
2007-09-06 04:18:15 +04:00
|
|
|
.CP0_Status_rw_bitmask = 0x3678FFFF,
|
2009-01-14 22:40:36 +03:00
|
|
|
/* The R4000 has a full 64bit FPU but doesn't use the fcr0 bits. */
|
2007-06-01 18:58:56 +04:00
|
|
|
.CP1_fcr0 = (0x5 << FCR0_PRID) | (0x0 << FCR0_REV),
|
2016-06-10 12:57:36 +03:00
|
|
|
.CP1_fcr31 = 0,
|
|
|
|
.CP1_fcr31_rw_bitmask = 0x0183FFFF,
|
2007-06-23 22:04:12 +04:00
|
|
|
.SEGBITS = 40,
|
2007-12-25 06:13:56 +03:00
|
|
|
.PABITS = 36,
|
2007-09-24 16:48:00 +04:00
|
|
|
.insn_flags = CPU_MIPS3,
|
2007-12-25 06:13:56 +03:00
|
|
|
.mmu_type = MMU_TYPE_R4000,
|
2007-06-01 18:58:56 +04:00
|
|
|
},
|
2007-12-25 23:46:56 +03:00
|
|
|
{
|
|
|
|
.name = "VR5432",
|
|
|
|
.CP0_PRid = 0x00005400,
|
|
|
|
/* No L2 cache, icache size 8k, dcache size 8k, uncached coherency. */
|
|
|
|
.CP0_Config0 = (1 << 17) | (0x1 << 9) | (0x1 << 6) | (0x2 << CP0C0_K0),
|
|
|
|
.CP0_Config1 = (1 << CP0C1_FP) | (47 << CP0C1_MMU),
|
2009-11-22 15:22:54 +03:00
|
|
|
.CP0_LLAddr_rw_bitmask = 0xFFFFFFFFL,
|
|
|
|
.CP0_LLAddr_shift = 4,
|
2007-12-25 23:46:56 +03:00
|
|
|
.SYNCI_Step = 16,
|
|
|
|
.CCRes = 2,
|
|
|
|
.CP0_Status_rw_bitmask = 0x3678FFFF,
|
|
|
|
/* The VR5432 has a full 64bit FPU but doesn't use the fcr0 bits. */
|
|
|
|
.CP1_fcr0 = (0x54 << FCR0_PRID) | (0x0 << FCR0_REV),
|
2016-06-10 12:57:36 +03:00
|
|
|
.CP1_fcr31 = 0,
|
|
|
|
.CP1_fcr31_rw_bitmask = 0xFF83FFFF,
|
2007-12-25 23:46:56 +03:00
|
|
|
.SEGBITS = 40,
|
|
|
|
.PABITS = 32,
|
|
|
|
.insn_flags = CPU_VR54XX,
|
|
|
|
.mmu_type = MMU_TYPE_R4000,
|
|
|
|
},
|
2007-06-01 18:58:56 +04:00
|
|
|
{
|
|
|
|
.name = "5Kc",
|
|
|
|
.CP0_PRid = 0x00018100,
|
2007-12-25 20:32:46 +03:00
|
|
|
.CP0_Config0 = MIPS_CONFIG0 | (0x2 << CP0C0_AT) |
|
2009-01-14 22:40:36 +03:00
|
|
|
(MMU_TYPE_R4000 << CP0C0_MT),
|
2007-06-01 18:58:56 +04:00
|
|
|
.CP0_Config1 = MIPS_CONFIG1 | (31 << CP0C1_MMU) |
|
2009-01-14 22:40:36 +03:00
|
|
|
(1 << CP0C1_IS) | (4 << CP0C1_IL) | (1 << CP0C1_IA) |
|
|
|
|
(1 << CP0C1_DS) | (4 << CP0C1_DL) | (1 << CP0C1_DA) |
|
|
|
|
(1 << CP0C1_PC) | (1 << CP0C1_WR) | (1 << CP0C1_EP),
|
2007-06-01 18:58:56 +04:00
|
|
|
.CP0_Config2 = MIPS_CONFIG2,
|
|
|
|
.CP0_Config3 = MIPS_CONFIG3,
|
2009-11-22 15:22:54 +03:00
|
|
|
.CP0_LLAddr_rw_bitmask = 0,
|
|
|
|
.CP0_LLAddr_shift = 4,
|
2007-06-01 18:58:56 +04:00
|
|
|
.SYNCI_Step = 32,
|
|
|
|
.CCRes = 2,
|
2014-12-21 02:00:25 +03:00
|
|
|
.CP0_Status_rw_bitmask = 0x12F8FFFF,
|
2007-06-23 22:04:12 +04:00
|
|
|
.SEGBITS = 42,
|
2007-12-25 06:13:56 +03:00
|
|
|
.PABITS = 36,
|
2007-09-24 16:48:00 +04:00
|
|
|
.insn_flags = CPU_MIPS64,
|
2007-12-25 06:13:56 +03:00
|
|
|
.mmu_type = MMU_TYPE_R4000,
|
2007-06-01 18:58:56 +04:00
|
|
|
},
|
|
|
|
{
|
|
|
|
.name = "5Kf",
|
|
|
|
.CP0_PRid = 0x00018100,
|
2007-12-25 20:32:46 +03:00
|
|
|
.CP0_Config0 = MIPS_CONFIG0 | (0x2 << CP0C0_AT) |
|
2009-01-14 22:40:36 +03:00
|
|
|
(MMU_TYPE_R4000 << CP0C0_MT),
|
2007-06-01 18:58:56 +04:00
|
|
|
.CP0_Config1 = MIPS_CONFIG1 | (1 << CP0C1_FP) | (31 << CP0C1_MMU) |
|
2009-01-14 22:40:36 +03:00
|
|
|
(1 << CP0C1_IS) | (4 << CP0C1_IL) | (1 << CP0C1_IA) |
|
|
|
|
(1 << CP0C1_DS) | (4 << CP0C1_DL) | (1 << CP0C1_DA) |
|
|
|
|
(1 << CP0C1_PC) | (1 << CP0C1_WR) | (1 << CP0C1_EP),
|
2007-06-01 18:58:56 +04:00
|
|
|
.CP0_Config2 = MIPS_CONFIG2,
|
|
|
|
.CP0_Config3 = MIPS_CONFIG3,
|
2009-11-22 15:22:54 +03:00
|
|
|
.CP0_LLAddr_rw_bitmask = 0,
|
|
|
|
.CP0_LLAddr_shift = 4,
|
2007-06-01 18:58:56 +04:00
|
|
|
.SYNCI_Step = 32,
|
|
|
|
.CCRes = 2,
|
2007-09-06 04:18:15 +04:00
|
|
|
.CP0_Status_rw_bitmask = 0x36F8FFFF,
|
2009-01-14 22:40:36 +03:00
|
|
|
/* The 5Kf has F64 / L / W but doesn't use the fcr0 bits. */
|
2007-06-01 18:58:56 +04:00
|
|
|
.CP1_fcr0 = (1 << FCR0_D) | (1 << FCR0_S) |
|
|
|
|
(0x81 << FCR0_PRID) | (0x0 << FCR0_REV),
|
2016-06-10 12:57:36 +03:00
|
|
|
.CP1_fcr31 = 0,
|
|
|
|
.CP1_fcr31_rw_bitmask = 0xFF83FFFF,
|
2007-06-23 22:04:12 +04:00
|
|
|
.SEGBITS = 42,
|
2007-12-25 06:13:56 +03:00
|
|
|
.PABITS = 36,
|
2007-09-24 16:48:00 +04:00
|
|
|
.insn_flags = CPU_MIPS64,
|
2007-12-25 06:13:56 +03:00
|
|
|
.mmu_type = MMU_TYPE_R4000,
|
2007-06-01 18:58:56 +04:00
|
|
|
},
|
|
|
|
{
|
|
|
|
.name = "20Kc",
|
2009-01-14 22:40:36 +03:00
|
|
|
/* We emulate a later version of the 20Kc, earlier ones had a broken
|
2007-06-12 16:43:47 +04:00
|
|
|
WAIT instruction. */
|
|
|
|
.CP0_PRid = 0x000182a0,
|
2007-12-25 20:32:46 +03:00
|
|
|
.CP0_Config0 = MIPS_CONFIG0 | (0x2 << CP0C0_AT) |
|
2007-12-25 06:13:56 +03:00
|
|
|
(MMU_TYPE_R4000 << CP0C0_MT) | (1 << CP0C0_VI),
|
2007-06-01 18:58:56 +04:00
|
|
|
.CP0_Config1 = MIPS_CONFIG1 | (1 << CP0C1_FP) | (47 << CP0C1_MMU) |
|
2009-01-14 22:40:36 +03:00
|
|
|
(2 << CP0C1_IS) | (4 << CP0C1_IL) | (3 << CP0C1_IA) |
|
|
|
|
(2 << CP0C1_DS) | (4 << CP0C1_DL) | (3 << CP0C1_DA) |
|
|
|
|
(1 << CP0C1_PC) | (1 << CP0C1_WR) | (1 << CP0C1_EP),
|
2007-06-01 18:58:56 +04:00
|
|
|
.CP0_Config2 = MIPS_CONFIG2,
|
|
|
|
.CP0_Config3 = MIPS_CONFIG3,
|
2009-11-22 15:22:54 +03:00
|
|
|
.CP0_LLAddr_rw_bitmask = 0,
|
|
|
|
.CP0_LLAddr_shift = 0,
|
2007-06-01 18:58:56 +04:00
|
|
|
.SYNCI_Step = 32,
|
2007-12-24 17:33:57 +03:00
|
|
|
.CCRes = 1,
|
2007-09-06 04:18:15 +04:00
|
|
|
.CP0_Status_rw_bitmask = 0x36FBFFFF,
|
2009-01-14 22:40:36 +03:00
|
|
|
/* The 20Kc has F64 / L / W but doesn't use the fcr0 bits. */
|
2007-06-01 18:58:56 +04:00
|
|
|
.CP1_fcr0 = (1 << FCR0_3D) | (1 << FCR0_PS) |
|
2007-05-07 17:55:33 +04:00
|
|
|
(1 << FCR0_D) | (1 << FCR0_S) |
|
2007-06-01 18:58:56 +04:00
|
|
|
(0x82 << FCR0_PRID) | (0x0 << FCR0_REV),
|
2016-06-10 12:57:36 +03:00
|
|
|
.CP1_fcr31 = 0,
|
|
|
|
.CP1_fcr31_rw_bitmask = 0xFF83FFFF,
|
2007-06-23 22:04:12 +04:00
|
|
|
.SEGBITS = 40,
|
2007-12-25 06:13:56 +03:00
|
|
|
.PABITS = 36,
|
2007-09-24 16:48:00 +04:00
|
|
|
.insn_flags = CPU_MIPS64 | ASE_MIPS3D,
|
2007-12-25 06:13:56 +03:00
|
|
|
.mmu_type = MMU_TYPE_R4000,
|
2007-03-18 03:30:29 +03:00
|
|
|
},
|
2007-10-29 12:38:43 +03:00
|
|
|
{
|
2009-01-14 22:40:36 +03:00
|
|
|
/* A generic CPU providing MIPS64 Release 2 features.
|
2007-10-29 12:38:43 +03:00
|
|
|
FIXME: Eventually this should be replaced by a real CPU model. */
|
|
|
|
.name = "MIPS64R2-generic",
|
2007-11-18 06:19:58 +03:00
|
|
|
.CP0_PRid = 0x00010000,
|
2007-12-25 06:13:56 +03:00
|
|
|
.CP0_Config0 = MIPS_CONFIG0 | (0x1 << CP0C0_AR) | (0x2 << CP0C0_AT) |
|
2009-01-14 22:40:36 +03:00
|
|
|
(MMU_TYPE_R4000 << CP0C0_MT),
|
2007-10-29 12:38:43 +03:00
|
|
|
.CP0_Config1 = MIPS_CONFIG1 | (1 << CP0C1_FP) | (63 << CP0C1_MMU) |
|
2009-01-14 22:40:36 +03:00
|
|
|
(2 << CP0C1_IS) | (4 << CP0C1_IL) | (3 << CP0C1_IA) |
|
|
|
|
(2 << CP0C1_DS) | (4 << CP0C1_DL) | (3 << CP0C1_DA) |
|
|
|
|
(1 << CP0C1_PC) | (1 << CP0C1_WR) | (1 << CP0C1_EP),
|
2007-10-29 12:38:43 +03:00
|
|
|
.CP0_Config2 = MIPS_CONFIG2,
|
2007-12-25 06:13:56 +03:00
|
|
|
.CP0_Config3 = MIPS_CONFIG3 | (1 << CP0C3_LPA),
|
2009-11-22 15:22:54 +03:00
|
|
|
.CP0_LLAddr_rw_bitmask = 0,
|
|
|
|
.CP0_LLAddr_shift = 0,
|
2007-10-29 12:38:43 +03:00
|
|
|
.SYNCI_Step = 32,
|
|
|
|
.CCRes = 2,
|
|
|
|
.CP0_Status_rw_bitmask = 0x36FBFFFF,
|
2017-07-18 14:55:59 +03:00
|
|
|
.CP0_EBaseWG_rw_bitmask = (1 << CP0EBase_WG),
|
2007-12-28 15:35:05 +03:00
|
|
|
.CP1_fcr0 = (1 << FCR0_F64) | (1 << FCR0_3D) | (1 << FCR0_PS) |
|
|
|
|
(1 << FCR0_L) | (1 << FCR0_W) | (1 << FCR0_D) |
|
|
|
|
(1 << FCR0_S) | (0x00 << FCR0_PRID) | (0x0 << FCR0_REV),
|
2016-06-10 12:57:36 +03:00
|
|
|
.CP1_fcr31 = 0,
|
|
|
|
.CP1_fcr31_rw_bitmask = 0xFF83FFFF,
|
2007-12-25 06:13:56 +03:00
|
|
|
.SEGBITS = 42,
|
|
|
|
.PABITS = 36,
|
2007-10-29 12:38:43 +03:00
|
|
|
.insn_flags = CPU_MIPS64R2 | ASE_MIPS3D,
|
2007-12-25 06:13:56 +03:00
|
|
|
.mmu_type = MMU_TYPE_R4000,
|
2007-10-29 12:38:43 +03:00
|
|
|
},
|
2014-11-03 22:31:26 +03:00
|
|
|
{
|
|
|
|
.name = "5KEc",
|
|
|
|
.CP0_PRid = 0x00018900,
|
|
|
|
.CP0_Config0 = MIPS_CONFIG0 | (0x1 << CP0C0_AR) | (0x2 << CP0C0_AT) |
|
|
|
|
(MMU_TYPE_R4000 << CP0C0_MT),
|
|
|
|
.CP0_Config1 = MIPS_CONFIG1 | (31 << CP0C1_MMU) |
|
|
|
|
(1 << CP0C1_IS) | (4 << CP0C1_IL) | (1 << CP0C1_IA) |
|
|
|
|
(1 << CP0C1_DS) | (4 << CP0C1_DL) | (1 << CP0C1_DA) |
|
|
|
|
(1 << CP0C1_PC) | (1 << CP0C1_WR) | (1 << CP0C1_EP),
|
|
|
|
.CP0_Config2 = MIPS_CONFIG2,
|
|
|
|
.CP0_Config3 = MIPS_CONFIG3,
|
|
|
|
.CP0_LLAddr_rw_bitmask = 0,
|
|
|
|
.CP0_LLAddr_shift = 4,
|
|
|
|
.SYNCI_Step = 32,
|
|
|
|
.CCRes = 2,
|
2014-12-21 02:00:25 +03:00
|
|
|
.CP0_Status_rw_bitmask = 0x12F8FFFF,
|
2014-11-03 22:31:26 +03:00
|
|
|
.SEGBITS = 42,
|
|
|
|
.PABITS = 36,
|
|
|
|
.insn_flags = CPU_MIPS64R2,
|
|
|
|
.mmu_type = MMU_TYPE_R4000,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
.name = "5KEf",
|
|
|
|
.CP0_PRid = 0x00018900,
|
|
|
|
.CP0_Config0 = MIPS_CONFIG0 | (0x1 << CP0C0_AR) | (0x2 << CP0C0_AT) |
|
|
|
|
(MMU_TYPE_R4000 << CP0C0_MT),
|
|
|
|
.CP0_Config1 = MIPS_CONFIG1 | (1 << CP0C1_FP) | (31 << CP0C1_MMU) |
|
|
|
|
(1 << CP0C1_IS) | (4 << CP0C1_IL) | (1 << CP0C1_IA) |
|
|
|
|
(1 << CP0C1_DS) | (4 << CP0C1_DL) | (1 << CP0C1_DA) |
|
|
|
|
(1 << CP0C1_PC) | (1 << CP0C1_WR) | (1 << CP0C1_EP),
|
|
|
|
.CP0_Config2 = MIPS_CONFIG2,
|
|
|
|
.CP0_Config3 = MIPS_CONFIG3,
|
|
|
|
.CP0_LLAddr_rw_bitmask = 0,
|
|
|
|
.CP0_LLAddr_shift = 4,
|
|
|
|
.SYNCI_Step = 32,
|
|
|
|
.CCRes = 2,
|
|
|
|
.CP0_Status_rw_bitmask = 0x36F8FFFF,
|
|
|
|
.CP1_fcr0 = (1 << FCR0_F64) | (1 << FCR0_L) | (1 << FCR0_W) |
|
|
|
|
(1 << FCR0_D) | (1 << FCR0_S) |
|
|
|
|
(0x89 << FCR0_PRID) | (0x0 << FCR0_REV),
|
|
|
|
.SEGBITS = 42,
|
|
|
|
.PABITS = 36,
|
|
|
|
.insn_flags = CPU_MIPS64R2,
|
|
|
|
.mmu_type = MMU_TYPE_R4000,
|
|
|
|
},
|
2014-06-27 11:49:09 +04:00
|
|
|
{
|
2016-06-27 13:11:39 +03:00
|
|
|
.name = "I6400",
|
|
|
|
.CP0_PRid = 0x1A900,
|
2014-06-27 11:49:09 +04:00
|
|
|
.CP0_Config0 = MIPS_CONFIG0 | (0x2 << CP0C0_AR) | (0x2 << CP0C0_AT) |
|
|
|
|
(MMU_TYPE_R4000 << CP0C0_MT),
|
2016-06-27 13:11:39 +03:00
|
|
|
.CP0_Config1 = MIPS_CONFIG1 | (1 << CP0C1_FP) | (15 << CP0C1_MMU) |
|
|
|
|
(2 << CP0C1_IS) | (5 << CP0C1_IL) | (3 << CP0C1_IA) |
|
|
|
|
(2 << CP0C1_DS) | (5 << CP0C1_DL) | (3 << CP0C1_DA) |
|
2014-06-27 11:49:09 +04:00
|
|
|
(0 << CP0C1_PC) | (1 << CP0C1_WR) | (1 << CP0C1_EP),
|
|
|
|
.CP0_Config2 = MIPS_CONFIG2,
|
2016-03-15 12:59:36 +03:00
|
|
|
.CP0_Config3 = MIPS_CONFIG3 | (1U << CP0C3_M) |
|
|
|
|
(1 << CP0C3_CMGCR) | (1 << CP0C3_MSAP) |
|
2015-06-29 12:11:23 +03:00
|
|
|
(1 << CP0C3_BP) | (1 << CP0C3_BI) | (1 << CP0C3_ULRI) |
|
2016-06-27 13:11:39 +03:00
|
|
|
(1 << CP0C3_RXI) | (1 << CP0C3_LPA) | (1 << CP0C3_VInt),
|
2015-06-29 12:11:23 +03:00
|
|
|
.CP0_Config4 = MIPS_CONFIG4 | (1U << CP0C4_M) | (3 << CP0C4_IE) |
|
2016-06-27 18:19:12 +03:00
|
|
|
(1 << CP0C4_AE) | (0xfc << CP0C4_KScrExist),
|
2016-02-03 15:31:07 +03:00
|
|
|
.CP0_Config5 = MIPS_CONFIG5 | (1 << CP0C5_XNP) | (1 << CP0C5_VP) |
|
2016-06-27 13:11:39 +03:00
|
|
|
(1 << CP0C5_LLB) | (1 << CP0C5_MRP),
|
2015-06-29 12:11:23 +03:00
|
|
|
.CP0_Config5_rw_bitmask = (1 << CP0C5_MSAEn) | (1 << CP0C5_SBRI) |
|
|
|
|
(1 << CP0C5_FRE) | (1 << CP0C5_UFE),
|
2014-06-27 11:49:09 +04:00
|
|
|
.CP0_LLAddr_rw_bitmask = 0,
|
|
|
|
.CP0_LLAddr_shift = 0,
|
|
|
|
.SYNCI_Step = 32,
|
|
|
|
.CCRes = 2,
|
|
|
|
.CP0_Status_rw_bitmask = 0x30D8FFFF,
|
2014-07-11 19:11:35 +04:00
|
|
|
.CP0_PageGrain = (1 << CP0PG_IEC) | (1 << CP0PG_XIE) |
|
|
|
|
(1U << CP0PG_RIE),
|
2015-04-14 12:33:43 +03:00
|
|
|
.CP0_PageGrain_rw_bitmask = (1 << CP0PG_ELPA),
|
2017-07-18 14:55:59 +03:00
|
|
|
.CP0_EBaseWG_rw_bitmask = (1 << CP0EBase_WG),
|
2016-02-24 13:47:10 +03:00
|
|
|
.CP1_fcr0 = (1 << FCR0_FREP) | (1 << FCR0_HAS2008) | (1 << FCR0_F64) |
|
|
|
|
(1 << FCR0_L) | (1 << FCR0_W) | (1 << FCR0_D) |
|
2016-06-27 13:11:39 +03:00
|
|
|
(1 << FCR0_S) | (0x03 << FCR0_PRID) | (0x0 << FCR0_REV),
|
2016-02-24 13:47:10 +03:00
|
|
|
.CP1_fcr31 = (1 << FCR31_ABS2008) | (1 << FCR31_NAN2008),
|
2016-06-10 12:57:36 +03:00
|
|
|
.CP1_fcr31_rw_bitmask = 0x0103FFFF,
|
2016-06-27 13:11:39 +03:00
|
|
|
.MSAIR = 0x03 << MSAIR_ProcID,
|
2015-06-29 12:11:23 +03:00
|
|
|
.SEGBITS = 48,
|
2015-04-14 12:33:43 +03:00
|
|
|
.PABITS = 48,
|
2015-06-29 12:11:23 +03:00
|
|
|
.insn_flags = CPU_MIPS64R6 | ASE_MSA,
|
2014-06-27 11:49:09 +04:00
|
|
|
.mmu_type = MMU_TYPE_R4000,
|
|
|
|
},
|
2010-06-29 06:50:27 +04:00
|
|
|
{
|
|
|
|
.name = "Loongson-2E",
|
|
|
|
.CP0_PRid = 0x6302,
|
2014-11-05 18:34:58 +03:00
|
|
|
/* 64KB I-cache and d-cache. 4 way with 32 bit cache line size. */
|
|
|
|
.CP0_Config0 = (0x1<<17) | (0x1<<16) | (0x1<<11) | (0x1<<8) |
|
|
|
|
(0x1<<5) | (0x1<<4) | (0x1<<1),
|
|
|
|
/* Note: Config1 is only used internally,
|
|
|
|
Loongson-2E has only Config0. */
|
2010-06-29 06:50:27 +04:00
|
|
|
.CP0_Config1 = (1 << CP0C1_FP) | (47 << CP0C1_MMU),
|
|
|
|
.SYNCI_Step = 16,
|
|
|
|
.CCRes = 2,
|
|
|
|
.CP0_Status_rw_bitmask = 0x35D0FFFF,
|
|
|
|
.CP1_fcr0 = (0x5 << FCR0_PRID) | (0x1 << FCR0_REV),
|
2016-06-10 12:57:36 +03:00
|
|
|
.CP1_fcr31 = 0,
|
|
|
|
.CP1_fcr31_rw_bitmask = 0xFF83FFFF,
|
2010-06-29 06:50:27 +04:00
|
|
|
.SEGBITS = 40,
|
|
|
|
.PABITS = 40,
|
|
|
|
.insn_flags = CPU_LOONGSON2E,
|
|
|
|
.mmu_type = MMU_TYPE_R4000,
|
|
|
|
},
|
|
|
|
{
|
2014-11-05 18:34:58 +03:00
|
|
|
.name = "Loongson-2F",
|
|
|
|
.CP0_PRid = 0x6303,
|
|
|
|
/* 64KB I-cache and d-cache. 4 way with 32 bit cache line size. */
|
|
|
|
.CP0_Config0 = (0x1<<17) | (0x1<<16) | (0x1<<11) | (0x1<<8) |
|
|
|
|
(0x1<<5) | (0x1<<4) | (0x1<<1),
|
|
|
|
/* Note: Config1 is only used internally,
|
|
|
|
Loongson-2F has only Config0. */
|
|
|
|
.CP0_Config1 = (1 << CP0C1_FP) | (47 << CP0C1_MMU),
|
|
|
|
.SYNCI_Step = 16,
|
|
|
|
.CCRes = 2,
|
|
|
|
.CP0_Status_rw_bitmask = 0xF5D0FF1F, /* Bits 7:5 not writable. */
|
|
|
|
.CP1_fcr0 = (0x5 << FCR0_PRID) | (0x1 << FCR0_REV),
|
2016-06-10 12:57:36 +03:00
|
|
|
.CP1_fcr31 = 0,
|
|
|
|
.CP1_fcr31_rw_bitmask = 0xFF83FFFF,
|
2014-11-05 18:34:58 +03:00
|
|
|
.SEGBITS = 40,
|
|
|
|
.PABITS = 40,
|
|
|
|
.insn_flags = CPU_LOONGSON2F,
|
|
|
|
.mmu_type = MMU_TYPE_R4000,
|
2010-06-29 06:50:27 +04:00
|
|
|
},
|
2012-10-24 18:17:12 +04:00
|
|
|
{
|
|
|
|
/* A generic CPU providing MIPS64 ASE DSP 2 features.
|
|
|
|
FIXME: Eventually this should be replaced by a real CPU model. */
|
|
|
|
.name = "mips64dspr2",
|
|
|
|
.CP0_PRid = 0x00010000,
|
|
|
|
.CP0_Config0 = MIPS_CONFIG0 | (0x1 << CP0C0_AR) | (0x2 << CP0C0_AT) |
|
|
|
|
(MMU_TYPE_R4000 << CP0C0_MT),
|
|
|
|
.CP0_Config1 = MIPS_CONFIG1 | (1 << CP0C1_FP) | (63 << CP0C1_MMU) |
|
|
|
|
(2 << CP0C1_IS) | (4 << CP0C1_IL) | (3 << CP0C1_IA) |
|
|
|
|
(2 << CP0C1_DS) | (4 << CP0C1_DL) | (3 << CP0C1_DA) |
|
|
|
|
(1 << CP0C1_PC) | (1 << CP0C1_WR) | (1 << CP0C1_EP),
|
|
|
|
.CP0_Config2 = MIPS_CONFIG2,
|
2014-11-04 18:41:20 +03:00
|
|
|
.CP0_Config3 = MIPS_CONFIG3 | (1U << CP0C3_M) | (1 << CP0C3_DSP2P) |
|
|
|
|
(1 << CP0C3_DSPP) | (1 << CP0C3_LPA),
|
2012-10-24 18:17:12 +04:00
|
|
|
.CP0_LLAddr_rw_bitmask = 0,
|
|
|
|
.CP0_LLAddr_shift = 0,
|
|
|
|
.SYNCI_Step = 32,
|
|
|
|
.CCRes = 2,
|
|
|
|
.CP0_Status_rw_bitmask = 0x37FBFFFF,
|
|
|
|
.CP1_fcr0 = (1 << FCR0_F64) | (1 << FCR0_3D) | (1 << FCR0_PS) |
|
|
|
|
(1 << FCR0_L) | (1 << FCR0_W) | (1 << FCR0_D) |
|
|
|
|
(1 << FCR0_S) | (0x00 << FCR0_PRID) | (0x0 << FCR0_REV),
|
2016-06-10 12:57:36 +03:00
|
|
|
.CP1_fcr31 = 0,
|
|
|
|
.CP1_fcr31_rw_bitmask = 0xFF83FFFF,
|
2012-10-24 18:17:12 +04:00
|
|
|
.SEGBITS = 42,
|
|
|
|
.PABITS = 36,
|
|
|
|
.insn_flags = CPU_MIPS64R2 | ASE_DSP | ASE_DSPR2,
|
|
|
|
.mmu_type = MMU_TYPE_R4000,
|
|
|
|
},
|
2010-06-29 06:50:27 +04:00
|
|
|
|
2007-03-18 03:30:29 +03:00
|
|
|
#endif
|
|
|
|
};
|
2017-09-20 22:49:33 +03:00
|
|
|
const int mips_defs_number = ARRAY_SIZE(mips_defs);
|
2007-03-18 03:30:29 +03:00
|
|
|
|
2010-10-23 01:03:33 +04:00
|
|
|
void mips_cpu_list (FILE *f, fprintf_function cpu_fprintf)
|
2007-03-18 03:30:29 +03:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
2008-12-22 23:33:55 +03:00
|
|
|
for (i = 0; i < ARRAY_SIZE(mips_defs); i++) {
|
2007-03-18 03:30:29 +03:00
|
|
|
(*cpu_fprintf)(f, "MIPS '%s'\n",
|
|
|
|
mips_defs[i].name);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-09-02 21:39:45 +04:00
|
|
|
#ifndef CONFIG_USER_ONLY
|
2009-10-02 01:12:16 +04:00
|
|
|
static void no_mmu_init (CPUMIPSState *env, const mips_def_t *def)
|
2007-05-13 17:49:44 +04:00
|
|
|
{
|
2007-09-06 04:18:15 +04:00
|
|
|
env->tlb->nb_tlb = 1;
|
|
|
|
env->tlb->map_address = &no_mmu_map_address;
|
2007-05-13 17:49:44 +04:00
|
|
|
}
|
|
|
|
|
2009-10-02 01:12:16 +04:00
|
|
|
static void fixed_mmu_init (CPUMIPSState *env, const mips_def_t *def)
|
2007-05-13 17:49:44 +04:00
|
|
|
{
|
2007-09-06 04:18:15 +04:00
|
|
|
env->tlb->nb_tlb = 1;
|
|
|
|
env->tlb->map_address = &fixed_mmu_map_address;
|
2007-05-13 17:49:44 +04:00
|
|
|
}
|
|
|
|
|
2009-10-02 01:12:16 +04:00
|
|
|
static void r4k_mmu_init (CPUMIPSState *env, const mips_def_t *def)
|
2007-05-13 17:49:44 +04:00
|
|
|
{
|
2007-09-06 04:18:15 +04:00
|
|
|
env->tlb->nb_tlb = 1 + ((def->CP0_Config1 >> CP0C1_MMU) & 63);
|
|
|
|
env->tlb->map_address = &r4k_map_address;
|
2009-03-08 03:06:01 +03:00
|
|
|
env->tlb->helper_tlbwi = r4k_helper_tlbwi;
|
|
|
|
env->tlb->helper_tlbwr = r4k_helper_tlbwr;
|
|
|
|
env->tlb->helper_tlbp = r4k_helper_tlbp;
|
|
|
|
env->tlb->helper_tlbr = r4k_helper_tlbr;
|
2014-07-07 14:24:00 +04:00
|
|
|
env->tlb->helper_tlbinv = r4k_helper_tlbinv;
|
|
|
|
env->tlb->helper_tlbinvf = r4k_helper_tlbinvf;
|
2007-09-06 04:18:15 +04:00
|
|
|
}
|
|
|
|
|
2009-10-02 01:12:16 +04:00
|
|
|
static void mmu_init (CPUMIPSState *env, const mips_def_t *def)
|
2007-09-06 04:18:15 +04:00
|
|
|
{
|
2013-09-03 19:38:47 +04:00
|
|
|
MIPSCPU *cpu = mips_env_get_cpu(env);
|
|
|
|
|
2011-08-21 07:09:37 +04:00
|
|
|
env->tlb = g_malloc0(sizeof(CPUMIPSTLBContext));
|
2007-09-06 04:18:15 +04:00
|
|
|
|
2007-12-25 06:13:56 +03:00
|
|
|
switch (def->mmu_type) {
|
|
|
|
case MMU_TYPE_NONE:
|
2007-09-06 04:18:15 +04:00
|
|
|
no_mmu_init(env, def);
|
|
|
|
break;
|
2007-12-25 06:13:56 +03:00
|
|
|
case MMU_TYPE_R4000:
|
2007-09-06 04:18:15 +04:00
|
|
|
r4k_mmu_init(env, def);
|
|
|
|
break;
|
2007-12-25 06:13:56 +03:00
|
|
|
case MMU_TYPE_FMT:
|
2007-09-06 04:18:15 +04:00
|
|
|
fixed_mmu_init(env, def);
|
|
|
|
break;
|
2007-12-25 06:13:56 +03:00
|
|
|
case MMU_TYPE_R3000:
|
|
|
|
case MMU_TYPE_R6000:
|
|
|
|
case MMU_TYPE_R8000:
|
2007-09-06 04:18:15 +04:00
|
|
|
default:
|
2013-09-03 19:38:47 +04:00
|
|
|
cpu_abort(CPU(cpu), "MMU type not supported\n");
|
2007-09-06 04:18:15 +04:00
|
|
|
}
|
2007-05-13 17:49:44 +04:00
|
|
|
}
|
2008-09-02 21:39:45 +04:00
|
|
|
#endif /* CONFIG_USER_ONLY */
|
2007-05-13 17:49:44 +04:00
|
|
|
|
2009-10-02 01:12:16 +04:00
|
|
|
static void fpu_init (CPUMIPSState *env, const mips_def_t *def)
|
2007-09-06 04:18:15 +04:00
|
|
|
{
|
2008-09-18 15:57:27 +04:00
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < MIPS_FPU_MAX; i++)
|
|
|
|
env->fpus[i].fcr0 = def->CP1_fcr0;
|
2007-09-06 04:18:15 +04:00
|
|
|
|
2008-09-18 15:57:27 +04:00
|
|
|
memcpy(&env->active_fpu, &env->fpus[0], sizeof(env->active_fpu));
|
2007-09-06 04:18:15 +04:00
|
|
|
}
|
|
|
|
|
2009-10-02 01:12:16 +04:00
|
|
|
static void mvp_init (CPUMIPSState *env, const mips_def_t *def)
|
2007-09-06 04:18:15 +04:00
|
|
|
{
|
2011-08-21 07:09:37 +04:00
|
|
|
env->mvp = g_malloc0(sizeof(CPUMIPSMVPContext));
|
2007-09-06 04:18:15 +04:00
|
|
|
|
|
|
|
/* MVPConf1 implemented, TLB sharable, no gating storage support,
|
|
|
|
programmable cache partitioning implemented, number of allocatable
|
|
|
|
and sharable TLB entries, MVP has allocatable TCs, 2 VPEs
|
|
|
|
implemented, 5 TCs implemented. */
|
2014-03-17 20:00:34 +04:00
|
|
|
env->mvp->CP0_MVPConf0 = (1U << CP0MVPC0_M) | (1 << CP0MVPC0_TLBS) |
|
2007-09-06 04:18:15 +04:00
|
|
|
(0 << CP0MVPC0_GS) | (1 << CP0MVPC0_PCP) |
|
|
|
|
// TODO: actually do 2 VPEs.
|
|
|
|
// (1 << CP0MVPC0_TCA) | (0x1 << CP0MVPC0_PVPE) |
|
|
|
|
// (0x04 << CP0MVPC0_PTC);
|
|
|
|
(1 << CP0MVPC0_TCA) | (0x0 << CP0MVPC0_PVPE) |
|
2011-08-30 01:07:38 +04:00
|
|
|
(0x00 << CP0MVPC0_PTC);
|
2009-01-13 00:33:13 +03:00
|
|
|
#if !defined(CONFIG_USER_ONLY)
|
2008-07-23 20:14:22 +04:00
|
|
|
/* Usermode has no TLB support */
|
2009-01-13 00:33:13 +03:00
|
|
|
env->mvp->CP0_MVPConf0 |= (env->tlb->nb_tlb << CP0MVPC0_PTLBE);
|
|
|
|
#endif
|
2008-07-23 20:14:22 +04:00
|
|
|
|
2007-09-06 04:18:15 +04:00
|
|
|
/* Allocatable CP1 have media extensions, allocatable CP1 have FP support,
|
|
|
|
no UDI implemented, no CP2 implemented, 1 CP1 implemented. */
|
2014-03-17 20:00:34 +04:00
|
|
|
env->mvp->CP0_MVPConf1 = (1U << CP0MVPC1_CIM) | (1 << CP0MVPC1_CIF) |
|
2007-09-06 04:18:15 +04:00
|
|
|
(0x0 << CP0MVPC1_PCX) | (0x0 << CP0MVPC1_PCP2) |
|
|
|
|
(0x1 << CP0MVPC1_PCP1);
|
|
|
|
}
|
2014-11-01 08:28:40 +03:00
|
|
|
|
|
|
|
static void msa_reset(CPUMIPSState *env)
|
|
|
|
{
|
|
|
|
#ifdef CONFIG_USER_ONLY
|
|
|
|
/* MSA access enabled */
|
|
|
|
env->CP0_Config5 |= 1 << CP0C5_MSAEn;
|
|
|
|
env->CP0_Status |= (1 << CP0St_CU1) | (1 << CP0St_FR);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* MSA CSR:
|
|
|
|
- non-signaling floating point exception mode off (NX bit is 0)
|
|
|
|
- Cause, Enables, and Flags are all 0
|
|
|
|
- round to nearest / ties to even (RM bits are 0) */
|
|
|
|
env->active_tc.msacsr = 0;
|
|
|
|
|
2015-02-20 16:07:45 +03:00
|
|
|
restore_msa_fp_status(env);
|
|
|
|
|
2014-11-01 08:28:40 +03:00
|
|
|
/* tininess detected after rounding.*/
|
|
|
|
set_float_detect_tininess(float_tininess_after_rounding,
|
|
|
|
&env->active_tc.msa_fp_status);
|
|
|
|
|
|
|
|
/* clear float_status exception flags */
|
|
|
|
set_float_exception_flags(0, &env->active_tc.msa_fp_status);
|
|
|
|
|
|
|
|
/* clear float_status nan mode */
|
|
|
|
set_default_nan_mode(0, &env->active_tc.msa_fp_status);
|
softfloat: Implement run-time-configurable meaning of signaling NaN bit
This patch modifies SoftFloat library so that it can be configured in
run-time in relation to the meaning of signaling NaN bit, while, at the
same time, strictly preserving its behavior on all existing platforms.
Background:
In floating-point calculations, there is a need for denoting undefined or
unrepresentable values. This is achieved by defining certain floating-point
numerical values to be NaNs (which stands for "not a number"). For additional
reasons, virtually all modern floating-point unit implementations use two
kinds of NaNs: quiet and signaling. The binary representations of these two
kinds of NaNs, as a rule, differ only in one bit (that bit is, traditionally,
the first bit of mantissa).
Up to 2008, standards for floating-point did not specify all details about
binary representation of NaNs. More specifically, the meaning of the bit
that is used for distinguishing between signaling and quiet NaNs was not
strictly prescribed. (IEEE 754-2008 was the first floating-point standard
that defined that meaning clearly, see [1], p. 35) As a result, different
platforms took different approaches, and that presented considerable
challenge for multi-platform emulators like QEMU.
Mips platform represents the most complex case among QEMU-supported
platforms regarding signaling NaN bit. Up to the Release 6 of Mips
architecture, "1" in signaling NaN bit denoted signaling NaN, which is
opposite to IEEE 754-2008 standard. From Release 6 on, Mips architecture
adopted IEEE standard prescription, and "0" denotes signaling NaN. On top of
that, Mips architecture for SIMD (also known as MSA, or vector instructions)
also specifies signaling bit in accordance to IEEE standard. MSA unit can be
implemented with both pre-Release 6 and Release 6 main processor units.
QEMU uses SoftFloat library to implement various floating-point-related
instructions on all platforms. The current QEMU implementation allows for
defining meaning of signaling NaN bit during build time, and is implemented
via preprocessor macro called SNAN_BIT_IS_ONE.
On the other hand, the change in this patch enables SoftFloat library to be
configured in run-time. This configuration is meant to occur during CPU
initialization, at the moment when it is definitely known what desired
behavior for particular CPU (or any additional FPUs) is.
The change is implemented so that it is consistent with existing
implementation of similar cases. This means that structure float_status is
used for passing the information about desired signaling NaN bit on each
invocation of SoftFloat functions. The additional field in float_status is
called snan_bit_is_one, which supersedes macro SNAN_BIT_IS_ONE.
IMPORTANT:
This change is not meant to create any change in emulator behavior or
functionality on any platform. It just provides the means for SoftFloat
library to be used in a more flexible way - in other words, it will just
prepare SoftFloat library for usage related to Mips platform and its
specifics regarding signaling bit meaning, which is done in some of
subsequent patches from this series.
Further break down of changes:
1) Added field snan_bit_is_one to the structure float_status, and
correspondent setter function set_snan_bit_is_one().
2) Constants <float16|float32|float64|floatx80|float128>_default_nan
(used both internally and externally) converted to functions
<float16|float32|float64|floatx80|float128>_default_nan(float_status*).
This is necessary since they are dependent on signaling bit meaning.
At the same time, for the sake of code cleanup and simplicity, constants
<floatx80|float128>_default_nan_<low|high> (used only internally within
SoftFloat library) are removed, as not needed.
3) Added a float_status* argument to SoftFloat library functions
XXX_is_quiet_nan(XXX a_), XXX_is_signaling_nan(XXX a_),
XXX_maybe_silence_nan(XXX a_). This argument must be present in
order to enable correct invocation of new version of functions
XXX_default_nan(). (XXX is <float16|float32|float64|floatx80|float128>
here)
4) Updated code for all platforms to reflect changes in SoftFloat library.
This change is twofolds: it includes modifications of SoftFloat library
functions invocations, and an addition of invocation of function
set_snan_bit_is_one() during CPU initialization, with arguments that
are appropriate for each particular platform. It was established that
all platforms zero their main CPU data structures, so snan_bit_is_one(0)
in appropriate places is not added, as it is not needed.
[1] "IEEE Standard for Floating-Point Arithmetic",
IEEE Computer Society, August 29, 2008.
Signed-off-by: Thomas Schwinge <thomas@codesourcery.com>
Signed-off-by: Maciej W. Rozycki <macro@codesourcery.com>
Signed-off-by: Aleksandar Markovic <aleksandar.markovic@imgtec.com>
Tested-by: Bastian Koppelmann <kbastian@mail.uni-paderborn.de>
Reviewed-by: Leon Alrae <leon.alrae@imgtec.com>
Tested-by: Leon Alrae <leon.alrae@imgtec.com>
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
[leon.alrae@imgtec.com:
* cherry-picked 2 chunks from patch #2 to fix compilation warnings]
Signed-off-by: Leon Alrae <leon.alrae@imgtec.com>
2016-06-10 12:57:28 +03:00
|
|
|
|
2016-06-10 12:57:33 +03:00
|
|
|
/* set proper signanling bit meaning ("1" means "quiet") */
|
|
|
|
set_snan_bit_is_one(0, &env->active_tc.msa_fp_status);
|
2014-11-01 08:28:40 +03:00
|
|
|
}
|