59474a8c82
SH-5, meet NetBSD. Let's hope this is the start of a long and fruitful relationship. :-) This code, funded by Wasabi Systems, adds initial support for the Hitachi SuperH(tm) SH-5 cpu architecture to NetBSD. At the present time, NetBSD/evbsh5 only runs on a SH-5 core simulator which has no simulated devices other than a simple console. However, it is good enough to get to the "root device: " prompt. Device driver support for Real SH-5 Hardware is in place, particularly for supporting the up-coming Cayman evaluation board, and should be quite easy to get running when the hardware is available. There is no in-tree toolchain for this port at this time. Gcc-current has rudimentary SH-5 support but it is known to be buggy. A working toolchain was obtained from SuperH to facilitate this port. Gcc-current will be fixed in due course. The SH-5 architecture is fully 64-bit capable, although NetBSD/evbsh5 has currently only been tested in 32-bit mode. It is bi-endian, via a boot- time option and it also has an "SHcompact" mode in which it will execute SH-[34] user-land instructions. For more information on the SH-5, see www.superh.com. Suffice to say it is *not* just another respin of the SH-[34].
119 lines
3.3 KiB
C
119 lines
3.3 KiB
C
/* $NetBSD: db_machdep.h,v 1.1 2002/07/05 13:31:57 scw Exp $ */
|
|
|
|
/*
|
|
* This is still very much experimental. There is as yet no DB support
|
|
* for SH-5.
|
|
*/
|
|
|
|
/*
|
|
* Mach Operating System
|
|
* Copyright (c) 1991,1990 Carnegie Mellon University
|
|
* All Rights Reserved.
|
|
*
|
|
* Permission to use, copy, modify and distribute this software and its
|
|
* documentation is hereby granted, provided that both the copyright
|
|
* notice and this permission notice appear in all copies of the
|
|
* software, derivative works or modified versions, and any portions
|
|
* thereof, and that both notices appear in supporting documentation.
|
|
*
|
|
* CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS"
|
|
* CONDITION. CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND FOR
|
|
* ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
|
|
*
|
|
* Carnegie Mellon requests users of this software to return to
|
|
*
|
|
* Software Distribution Coordinator or Software.Distribution@CS.CMU.EDU
|
|
* School of Computer Science
|
|
* Carnegie Mellon University
|
|
* Pittsburgh PA 15213-3890
|
|
*
|
|
* any improvements or extensions that they make and grant Carnegie Mellon
|
|
* the rights to redistribute these changes.
|
|
*/
|
|
|
|
#ifndef _SH5_DB_MACHDEP_H_
|
|
#define _SH5_DB_MACHDEP_H_
|
|
|
|
/*
|
|
* Machine-dependent defines for new kernel debugger.
|
|
*/
|
|
|
|
#include <sys/param.h>
|
|
#include <uvm/uvm_extern.h>
|
|
#include <machine/trap.h>
|
|
|
|
typedef vaddr_t db_addr_t; /* address - unsigned */
|
|
typedef long db_expr_t; /* expression - signed */
|
|
|
|
typedef struct trapframe db_regs_t;
|
|
db_regs_t ddb_regs; /* register state */
|
|
#define DDB_REGS (&ddb_regs)
|
|
|
|
#define PC_REGS(regs) ((db_addr_t)(regs)->tf_spc)
|
|
|
|
#define BKPT_INST 0x6ff5ff0 /* breakpoint instruction */
|
|
#define BKPT_SIZE 4 /* size of breakpoint inst */
|
|
#define BKPT_SET(inst) BKPT_INST
|
|
|
|
#define FIXUP_PC_AFTER_BREAK(regs) ((regs)->tf_state.sf_spc -= BKPT_SIZE)
|
|
|
|
#define IS_BREAKPOINT_TRAP(type, code) ((type) == SH5_EXPEVT_BREAK)
|
|
#define IS_WATCHPOINT_TRAP(type, code) (0) /* XXX (msaitoh) */
|
|
|
|
#define inst_load(ins) 0
|
|
#define inst_store(ins) 0
|
|
|
|
/* access capability and access macros */
|
|
|
|
#define DB_ACCESS_LEVEL 2 /* access any space */
|
|
#define DB_CHECK_ACCESS(addr, size, task) \
|
|
db_check_access(addr, size, task)
|
|
#define DB_PHYS_EQ(task1, addr1, task2, addr2) \
|
|
db_phys_eq(task1, addr1, task2, addr2)
|
|
#define DB_VALID_KERN_ADDR(addr) \
|
|
((addr) >= VM_MIN_KERNEL_ADDRESS && \
|
|
(addr) < VM_MAX_KERNEL_ADDRESS)
|
|
#define DB_VALID_ADDRESS(addr, user) \
|
|
((!(user) && DB_VALID_KERN_ADDR(addr)) || \
|
|
((user) && (addr) < VM_MAX_ADDRESS))
|
|
|
|
/* macros for printing OS server dependent task name */
|
|
|
|
#define DB_TASK_NAME(task) db_task_name(task)
|
|
#define DB_TASK_NAME_TITLE "COMMAND "
|
|
#define DB_TASK_NAME_LEN 23
|
|
#define DB_NULL_TASK_NAME "? "
|
|
|
|
#ifdef notyet
|
|
/*
|
|
* Constants for KGDB.
|
|
*/
|
|
typedef long kgdb_reg_t;
|
|
#define KGDB_NUMREGS 59
|
|
#define KGDB_BUFLEN 1024
|
|
#endif
|
|
|
|
/* macro for checking if a thread has used floating-point */
|
|
#define db_thread_fp_used(thread) ((thread)->pcb->ims.ifps != 0)
|
|
|
|
int kdb_trap(int, int, db_regs_t *);
|
|
boolean_t inst_call(int);
|
|
boolean_t inst_return(int);
|
|
boolean_t inst_trap_return(int);
|
|
|
|
/*
|
|
* We use ELF symbols in DDB.
|
|
*
|
|
*/
|
|
#define DB_ELF_SYMBOLS
|
|
#define DB_ELFSIZE 32
|
|
|
|
/*
|
|
* We have machine-dependent commands.
|
|
*/
|
|
#define DB_MACHINE_COMMANDS
|
|
|
|
extern const char kgdb_devname[];
|
|
|
|
#endif /* _SH5_DB_MACHDEP_H_ */
|