2000-01-24 00:01:48 +03:00
|
|
|
/* $NetBSD: cpu.h,v 1.7 2000/01/23 21:01:56 soda Exp $ */
|
|
|
|
/* $OpenBSD: cpu.h,v 1.8 1997/04/19 17:19:56 pefo Exp $ */
|
|
|
|
|
|
|
|
#ifndef _ARC_CPU_H_
|
|
|
|
#define _ARC_CPU_H_
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Internal timer causes hard interrupt 5.
|
|
|
|
*/
|
|
|
|
#define MIPS3_INTERNAL_TIMER_INTERRUPT
|
|
|
|
#define MIPS_INT_MASK_CLOCK MIPS_INT_MASK_5
|
2000-01-23 23:08:18 +03:00
|
|
|
|
|
|
|
#include <mips/cpu.h>
|
2000-01-24 00:01:48 +03:00
|
|
|
#include <machine/cpuregs.h>
|
2000-01-23 23:08:18 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* definitions of cpu-dependent requirements
|
|
|
|
* referenced in generic code
|
|
|
|
*/
|
|
|
|
#define COPY_SIGCODE /* copy sigcode above user stack in exec */
|
2000-01-24 00:01:48 +03:00
|
|
|
|
|
|
|
#define INT_MASK_REAL_DEV MIPS3_HARD_INT_MASK /* XXX */
|
|
|
|
|
|
|
|
#ifndef _LOCORE
|
|
|
|
struct tlb;
|
|
|
|
extern void mips3_TLBWriteIndexedVPS __P((u_int index, struct tlb *tlb));
|
|
|
|
#endif /* ! _LOCORE */
|
|
|
|
|
|
|
|
#endif /* _ARC_CPU_H_ */
|