2008-07-26 05:32:11 -05:00
|
|
|
/***************************************************************************
|
|
|
|
* Copyright (C) 2008 by Spencer Oliver *
|
|
|
|
* spen@spen-soft.co.uk *
|
|
|
|
* *
|
|
|
|
* Copyright (C) 2008 by David T.L. Wong *
|
|
|
|
* *
|
2011-07-07 10:41:20 -05:00
|
|
|
* Copyright (C) 2011 by Drasko DRASKOVIC *
|
|
|
|
* drasko.draskovic@gmail.com *
|
|
|
|
* *
|
2008-07-26 05:32:11 -05:00
|
|
|
* This program is free software; you can redistribute it and/or modify *
|
|
|
|
* it under the terms of the GNU General Public License as published by *
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or *
|
|
|
|
* (at your option) any later version. *
|
|
|
|
* *
|
|
|
|
* This program 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 General Public License for more details. *
|
|
|
|
* *
|
|
|
|
* You should have received a copy of the GNU General Public License *
|
|
|
|
* along with this program; if not, write to the *
|
|
|
|
* Free Software Foundation, Inc., *
|
2013-06-02 14:32:36 -05:00
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. *
|
2008-07-26 05:32:11 -05:00
|
|
|
***************************************************************************/
|
|
|
|
|
|
|
|
#ifndef MIPS32_H
|
|
|
|
#define MIPS32_H
|
|
|
|
|
2009-12-13 14:52:23 -06:00
|
|
|
#include "target.h"
|
|
|
|
#include "mips32_pracc.h"
|
2008-07-26 05:32:11 -05:00
|
|
|
|
|
|
|
#define MIPS32_COMMON_MAGIC 0xB320B320
|
|
|
|
|
2011-07-07 10:59:13 -05:00
|
|
|
/**
|
|
|
|
* Memory segments (32bit kernel mode addresses)
|
|
|
|
* These are the traditional names used in the 32-bit universe.
|
|
|
|
*/
|
|
|
|
#define KUSEG 0x00000000
|
|
|
|
#define KSEG0 0x80000000
|
|
|
|
#define KSEG1 0xa0000000
|
|
|
|
#define KSEG2 0xc0000000
|
|
|
|
#define KSEG3 0xe0000000
|
|
|
|
|
|
|
|
/** Returns the kernel segment base of a given address */
|
|
|
|
#define KSEGX(a) ((a) & 0xe0000000)
|
|
|
|
|
|
|
|
/** CP0 CONFIG regites fields */
|
|
|
|
#define MIPS32_CONFIG0_KU_SHIFT 25
|
|
|
|
#define MIPS32_CONFIG0_KU_MASK (0x7 << MIPS32_CONFIG0_KU_SHIFT)
|
|
|
|
|
|
|
|
#define MIPS32_CONFIG0_K0_SHIFT 0
|
|
|
|
#define MIPS32_CONFIG0_K0_MASK (0x7 << MIPS32_CONFIG0_K0_SHIFT)
|
|
|
|
|
|
|
|
#define MIPS32_CONFIG0_K23_SHIFT 28
|
|
|
|
#define MIPS32_CONFIG0_K23_MASK (0x7 << MIPS32_CONFIG0_K23_SHIFT)
|
|
|
|
|
|
|
|
#define MIPS32_CONFIG0_AR_SHIFT 10
|
|
|
|
#define MIPS32_CONFIG0_AR_MASK (0x7 << MIPS32_CONFIG0_AR_SHIFT)
|
|
|
|
|
|
|
|
#define MIPS32_CONFIG1_DL_SHIFT 10
|
|
|
|
#define MIPS32_CONFIG1_DL_MASK (0x7 << MIPS32_CONFIG1_DL_SHIFT)
|
|
|
|
|
|
|
|
#define MIPS32_ARCH_REL1 0x0
|
|
|
|
#define MIPS32_ARCH_REL2 0x1
|
|
|
|
|
2008-07-26 05:32:11 -05:00
|
|
|
/* offsets into mips32 core register cache */
|
2012-02-05 06:03:04 -06:00
|
|
|
enum {
|
2008-07-26 05:32:11 -05:00
|
|
|
MIPS32_PC = 37,
|
|
|
|
MIPS32NUMCOREREGS
|
|
|
|
};
|
|
|
|
|
2012-02-05 06:03:04 -06:00
|
|
|
enum mips32_isa_mode {
|
2010-01-08 16:35:08 -06:00
|
|
|
MIPS32_ISA_MIPS32 = 0,
|
|
|
|
MIPS32_ISA_MIPS16E = 1,
|
|
|
|
};
|
|
|
|
|
2012-02-05 06:03:04 -06:00
|
|
|
struct mips32_comparator {
|
2008-11-17 11:56:44 -06:00
|
|
|
int used;
|
2009-06-18 02:09:35 -05:00
|
|
|
uint32_t bp_value;
|
|
|
|
uint32_t reg_address;
|
2009-11-13 10:43:26 -06:00
|
|
|
};
|
2008-11-17 11:56:44 -06:00
|
|
|
|
2012-02-05 06:03:04 -06:00
|
|
|
struct mips32_common {
|
2009-06-18 02:09:35 -05:00
|
|
|
uint32_t common_magic;
|
2008-07-26 05:32:11 -05:00
|
|
|
void *arch_info;
|
2009-11-13 10:44:08 -06:00
|
|
|
struct reg_cache *core_cache;
|
2009-11-13 10:43:36 -06:00
|
|
|
struct mips_ejtag ejtag_info;
|
2009-06-18 02:09:35 -05:00
|
|
|
uint32_t core_regs[MIPS32NUMCOREREGS];
|
2010-01-08 16:35:08 -06:00
|
|
|
enum mips32_isa_mode isa_mode;
|
2009-06-23 17:49:23 -05:00
|
|
|
|
2011-01-04 06:29:49 -06:00
|
|
|
/* working area for fastdata access */
|
|
|
|
struct working_area *fast_data_area;
|
|
|
|
|
2008-11-17 11:56:44 -06:00
|
|
|
int bp_scanned;
|
|
|
|
int num_inst_bpoints;
|
|
|
|
int num_data_bpoints;
|
|
|
|
int num_inst_bpoints_avail;
|
|
|
|
int num_data_bpoints_avail;
|
2009-11-13 10:43:26 -06:00
|
|
|
struct mips32_comparator *inst_break_list;
|
|
|
|
struct mips32_comparator *data_break_list;
|
2009-06-23 17:49:23 -05:00
|
|
|
|
2008-07-26 05:32:11 -05:00
|
|
|
/* register cache to processor synchronization */
|
2009-11-13 12:11:13 -06:00
|
|
|
int (*read_core_reg)(struct target *target, int num);
|
|
|
|
int (*write_core_reg)(struct target *target, int num);
|
2009-11-13 10:43:30 -06:00
|
|
|
};
|
2008-07-26 05:32:11 -05:00
|
|
|
|
2010-01-08 16:35:08 -06:00
|
|
|
static inline struct mips32_common *
|
|
|
|
target_to_mips32(struct target *target)
|
|
|
|
{
|
|
|
|
return target->arch_info;
|
|
|
|
}
|
|
|
|
|
2012-02-05 06:03:04 -06:00
|
|
|
struct mips32_core_reg {
|
2009-06-18 02:09:35 -05:00
|
|
|
uint32_t num;
|
2009-11-13 12:11:13 -06:00
|
|
|
struct target *target;
|
2009-11-13 10:43:30 -06:00
|
|
|
struct mips32_common *mips32_common;
|
2009-11-13 10:43:33 -06:00
|
|
|
};
|
2008-07-26 05:32:11 -05:00
|
|
|
|
2012-02-05 06:03:04 -06:00
|
|
|
struct mips32_algorithm {
|
2010-01-13 04:12:34 -06:00
|
|
|
int common_magic;
|
|
|
|
enum mips32_isa_mode isa_mode;
|
|
|
|
};
|
|
|
|
|
2011-07-07 10:59:13 -05:00
|
|
|
#define MIPS32_OP_ADDIU 0x21
|
|
|
|
#define MIPS32_OP_ANDI 0x0C
|
2008-07-26 05:32:11 -05:00
|
|
|
#define MIPS32_OP_BEQ 0x04
|
2011-07-07 10:59:13 -05:00
|
|
|
#define MIPS32_OP_BGTZ 0x07
|
2009-04-21 06:35:58 -05:00
|
|
|
#define MIPS32_OP_BNE 0x05
|
2008-07-26 05:32:11 -05:00
|
|
|
#define MIPS32_OP_ADDI 0x08
|
|
|
|
#define MIPS32_OP_AND 0x24
|
2011-07-07 10:59:13 -05:00
|
|
|
#define MIPS32_OP_CACHE 0x2F
|
2008-07-26 05:32:11 -05:00
|
|
|
#define MIPS32_OP_COP0 0x10
|
2013-04-15 02:40:21 -05:00
|
|
|
#define MIPS32_OP_J 0x02
|
2009-12-16 05:23:52 -06:00
|
|
|
#define MIPS32_OP_JR 0x08
|
2008-07-26 05:32:11 -05:00
|
|
|
#define MIPS32_OP_LUI 0x0F
|
|
|
|
#define MIPS32_OP_LW 0x23
|
|
|
|
#define MIPS32_OP_LBU 0x24
|
|
|
|
#define MIPS32_OP_LHU 0x25
|
|
|
|
#define MIPS32_OP_MFHI 0x10
|
2008-11-13 15:40:26 -06:00
|
|
|
#define MIPS32_OP_MTHI 0x11
|
2008-07-26 05:32:11 -05:00
|
|
|
#define MIPS32_OP_MFLO 0x12
|
2008-11-13 15:40:26 -06:00
|
|
|
#define MIPS32_OP_MTLO 0x13
|
2011-07-07 10:59:13 -05:00
|
|
|
#define MIPS32_OP_RDHWR 0x3B
|
2008-07-26 05:32:11 -05:00
|
|
|
#define MIPS32_OP_SB 0x28
|
|
|
|
#define MIPS32_OP_SH 0x29
|
|
|
|
#define MIPS32_OP_SW 0x2B
|
|
|
|
#define MIPS32_OP_ORI 0x0D
|
2012-10-30 17:15:35 -05:00
|
|
|
#define MIPS32_OP_XORI 0x0E
|
2011-06-03 04:10:34 -05:00
|
|
|
#define MIPS32_OP_XOR 0x26
|
2011-07-07 10:59:13 -05:00
|
|
|
#define MIPS32_OP_SLTU 0x2B
|
2011-06-03 04:10:34 -05:00
|
|
|
#define MIPS32_OP_SRL 0x03
|
2011-07-07 10:59:13 -05:00
|
|
|
#define MIPS32_OP_SYNCI 0x1F
|
|
|
|
|
|
|
|
#define MIPS32_OP_REGIMM 0x01
|
|
|
|
#define MIPS32_OP_SDBBP 0x3F
|
|
|
|
#define MIPS32_OP_SPECIAL 0x00
|
|
|
|
#define MIPS32_OP_SPECIAL2 0x07
|
|
|
|
#define MIPS32_OP_SPECIAL3 0x1F
|
2008-07-26 05:32:11 -05:00
|
|
|
|
|
|
|
#define MIPS32_COP0_MF 0x00
|
|
|
|
#define MIPS32_COP0_MT 0x04
|
|
|
|
|
2012-02-05 06:03:04 -06:00
|
|
|
#define MIPS32_R_INST(opcode, rs, rt, rd, shamt, funct) \
|
|
|
|
(((opcode) << 26) | ((rs) << 21) | ((rt) << 16) | ((rd) << 11) | ((shamt) << 6) | (funct))
|
|
|
|
#define MIPS32_I_INST(opcode, rs, rt, immd) \
|
|
|
|
(((opcode) << 26) | ((rs) << 21) | ((rt) << 16) | (immd))
|
|
|
|
#define MIPS32_J_INST(opcode, addr) (((opcode) << 26) | (addr))
|
2008-07-26 05:32:11 -05:00
|
|
|
|
2011-07-07 10:59:13 -05:00
|
|
|
#define MIPS32_NOP 0
|
|
|
|
#define MIPS32_ADDI(tar, src, val) MIPS32_I_INST(MIPS32_OP_ADDI, src, tar, val)
|
|
|
|
#define MIPS32_ADDU(dst, src, tar) MIPS32_R_INST(MIPS32_OP_SPECIAL, src, tar, dst, 0, MIPS32_OP_ADDIU)
|
|
|
|
#define MIPS32_AND(reg, off, val) MIPS32_R_INST(0, off, val, reg, 0, MIPS32_OP_AND)
|
|
|
|
#define MIPS32_ANDI(tar, src, val) MIPS32_I_INST(MIPS32_OP_ANDI, src, tar, val)
|
|
|
|
#define MIPS32_B(off) MIPS32_BEQ(0, 0, off)
|
|
|
|
#define MIPS32_BEQ(src, tar, off) MIPS32_I_INST(MIPS32_OP_BEQ, src, tar, off)
|
|
|
|
#define MIPS32_BGTZ(reg, off) MIPS32_I_INST(MIPS32_OP_BGTZ, reg, 0, off)
|
2012-02-05 06:03:04 -06:00
|
|
|
#define MIPS32_BNE(src, tar, off) MIPS32_I_INST(MIPS32_OP_BNE, src, tar, off)
|
2011-07-07 10:59:13 -05:00
|
|
|
#define MIPS32_CACHE(op, off, base) MIPS32_I_INST(MIPS32_OP_CACHE, base, op, off)
|
2013-04-15 02:40:21 -05:00
|
|
|
#define MIPS32_J(tar) MIPS32_J_INST(MIPS32_OP_J, tar)
|
2011-07-07 10:59:13 -05:00
|
|
|
#define MIPS32_JR(reg) MIPS32_R_INST(0, reg, 0, 0, 0, MIPS32_OP_JR)
|
|
|
|
#define MIPS32_MFC0(gpr, cpr, sel) MIPS32_R_INST(MIPS32_OP_COP0, MIPS32_COP0_MF, gpr, cpr, 0, sel)
|
|
|
|
#define MIPS32_MTC0(gpr, cpr, sel) MIPS32_R_INST(MIPS32_OP_COP0, MIPS32_COP0_MT, gpr, cpr, 0, sel)
|
|
|
|
#define MIPS32_LBU(reg, off, base) MIPS32_I_INST(MIPS32_OP_LBU, base, reg, off)
|
|
|
|
#define MIPS32_LHU(reg, off, base) MIPS32_I_INST(MIPS32_OP_LHU, base, reg, off)
|
|
|
|
#define MIPS32_LUI(reg, val) MIPS32_I_INST(MIPS32_OP_LUI, 0, reg, val)
|
|
|
|
#define MIPS32_LW(reg, off, base) MIPS32_I_INST(MIPS32_OP_LW, base, reg, off)
|
|
|
|
#define MIPS32_MFLO(reg) MIPS32_R_INST(0, 0, 0, reg, 0, MIPS32_OP_MFLO)
|
|
|
|
#define MIPS32_MFHI(reg) MIPS32_R_INST(0, 0, 0, reg, 0, MIPS32_OP_MFHI)
|
|
|
|
#define MIPS32_MTLO(reg) MIPS32_R_INST(0, reg, 0, 0, 0, MIPS32_OP_MTLO)
|
|
|
|
#define MIPS32_MTHI(reg) MIPS32_R_INST(0, reg, 0, 0, 0, MIPS32_OP_MTHI)
|
|
|
|
#define MIPS32_ORI(tar, src, val) MIPS32_I_INST(MIPS32_OP_ORI, src, tar, val)
|
2012-10-30 17:15:35 -05:00
|
|
|
#define MIPS32_XORI(tar, src, val) MIPS32_I_INST(MIPS32_OP_XORI, src, tar, val)
|
2011-07-07 10:59:13 -05:00
|
|
|
#define MIPS32_RDHWR(tar, dst) MIPS32_R_INST(MIPS32_OP_SPECIAL3, 0, tar, dst, 0, MIPS32_OP_RDHWR)
|
|
|
|
#define MIPS32_SB(reg, off, base) MIPS32_I_INST(MIPS32_OP_SB, base, reg, off)
|
|
|
|
#define MIPS32_SH(reg, off, base) MIPS32_I_INST(MIPS32_OP_SH, base, reg, off)
|
|
|
|
#define MIPS32_SW(reg, off, base) MIPS32_I_INST(MIPS32_OP_SW, base, reg, off)
|
|
|
|
#define MIPS32_XOR(reg, val1, val2) MIPS32_R_INST(0, val1, val2, reg, 0, MIPS32_OP_XOR)
|
|
|
|
#define MIPS32_SRL(reg, src, off) MIPS32_R_INST(0, 0, src, reg, off, MIPS32_OP_SRL)
|
|
|
|
#define MIPS32_SLTU(dst, src, tar) MIPS32_R_INST(MIPS32_OP_SPECIAL, src, tar, dst, 0, MIPS32_OP_SLTU)
|
|
|
|
#define MIPS32_SYNCI(off, base) MIPS32_I_INST(MIPS32_OP_REGIMM, base, MIPS32_OP_SYNCI, off)
|
|
|
|
|
|
|
|
#define MIPS32_SYNC 0xF
|
|
|
|
#define MIPS32_SYNCI_STEP 0x1 /* reg num od address step size to be used with synci instruction */
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Cache operations definietions
|
|
|
|
* Operation field is 5 bits long :
|
|
|
|
* 1) bits 1..0 hold cache type
|
|
|
|
* 2) bits 4..2 hold operation code
|
|
|
|
*/
|
|
|
|
#define MIPS32_CACHE_D_HIT_WRITEBACK ((0x1 << 0) | (0x6 << 2))
|
|
|
|
#define MIPS32_CACHE_I_HIT_INVALIDATE ((0x0 << 0) | (0x4 << 2))
|
2009-01-13 05:33:19 -06:00
|
|
|
|
|
|
|
/* ejtag specific instructions */
|
2008-07-26 05:32:11 -05:00
|
|
|
#define MIPS32_DRET 0x4200001F
|
2011-07-07 10:59:13 -05:00
|
|
|
#define MIPS32_SDBBP 0x7000003F /* MIPS32_J_INST(MIPS32_OP_SPECIAL2, MIPS32_OP_SDBBP) */
|
2010-01-07 14:56:07 -06:00
|
|
|
#define MIPS16_SDBBP 0xE801
|
2008-07-26 05:32:11 -05:00
|
|
|
|
2011-07-07 10:41:20 -05:00
|
|
|
extern const struct command_registration mips32_command_handlers[];
|
|
|
|
|
2009-11-13 12:11:13 -06:00
|
|
|
int mips32_arch_state(struct target *target);
|
2009-11-09 06:22:23 -06:00
|
|
|
|
2009-11-13 12:11:13 -06:00
|
|
|
int mips32_init_arch_info(struct target *target,
|
2009-11-13 10:43:30 -06:00
|
|
|
struct mips32_common *mips32, struct jtag_tap *tap);
|
2009-11-09 06:22:23 -06:00
|
|
|
|
2009-11-13 12:11:13 -06:00
|
|
|
int mips32_restore_context(struct target *target);
|
|
|
|
int mips32_save_context(struct target *target);
|
2009-11-09 06:22:23 -06:00
|
|
|
|
2009-11-13 12:11:13 -06:00
|
|
|
struct reg_cache *mips32_build_reg_cache(struct target *target);
|
2009-11-09 06:22:23 -06:00
|
|
|
|
2009-11-13 12:11:13 -06:00
|
|
|
int mips32_run_algorithm(struct target *target,
|
2009-11-13 10:39:30 -06:00
|
|
|
int num_mem_params, struct mem_param *mem_params,
|
2009-11-13 10:39:42 -06:00
|
|
|
int num_reg_params, struct reg_param *reg_params,
|
2009-11-09 06:22:23 -06:00
|
|
|
uint32_t entry_point, uint32_t exit_point,
|
|
|
|
int timeout_ms, void *arch_info);
|
|
|
|
|
2009-11-13 12:11:13 -06:00
|
|
|
int mips32_configure_break_unit(struct target *target);
|
2009-11-09 06:22:23 -06:00
|
|
|
|
2009-11-13 12:11:13 -06:00
|
|
|
int mips32_enable_interrupts(struct target *target, int enable);
|
2009-11-09 06:22:23 -06:00
|
|
|
|
2009-11-13 12:11:13 -06:00
|
|
|
int mips32_examine(struct target *target);
|
2009-11-09 06:22:23 -06:00
|
|
|
|
2009-11-13 15:25:47 -06:00
|
|
|
int mips32_register_commands(struct command_context *cmd_ctx);
|
2009-11-09 06:22:23 -06:00
|
|
|
|
2009-11-13 12:11:13 -06:00
|
|
|
int mips32_get_gdb_reg_list(struct target *target,
|
2009-11-13 11:55:49 -06:00
|
|
|
struct reg **reg_list[], int *reg_list_size);
|
2010-01-13 04:12:34 -06:00
|
|
|
int mips32_checksum_memory(struct target *target, uint32_t address,
|
2012-02-05 06:03:04 -06:00
|
|
|
uint32_t count, uint32_t *checksum);
|
2010-01-13 04:12:34 -06:00
|
|
|
int mips32_blank_check_memory(struct target *target,
|
2012-02-05 06:03:04 -06:00
|
|
|
uint32_t address, uint32_t count, uint32_t *blank);
|
2008-07-26 05:32:11 -05:00
|
|
|
|
|
|
|
#endif /*MIPS32_H*/
|