[BACK]Return to psl.h CVS log [TXT][DIR] Up to [local] / sys / arch / m88k / include

File: [local] / sys / arch / m88k / include / psl.h (download)

Revision 1.1, Tue Mar 4 16:07:09 2008 UTC (16 years, 2 months ago) by nbrk
Branch point for: MAIN

Initial revision

/*	$OpenBSD: psl.h,v 1.4 2005/09/25 22:41:12 miod Exp $ */
/*
 * Copyright (c) 1996 Nivas Madhur
 * All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 * 1. Redistributions of source code must retain the above copyright
 *    notice, this list of conditions and the following disclaimer.
 * 2. Redistributions in binary form must reproduce the above copyright
 *    notice, this list of conditions and the following disclaimer in the
 *    documentation and/or other materials provided with the distribution.
 * 3. All advertising materials mentioning features or use of this software
 *    must display the following acknowledgement:
 *      This product includes software developed by Nivas Madhur.
 * 4. The name of the author may not be used to endorse or promote products
 *    derived from this software without specific prior written permission
 *
 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 *
 */
/*
 * Mach Operating System
 * Copyright (c) 1991 Carnegie Mellon University
 * Copyright (c) 1991 OMRON Corporation
 * 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.
 *
 */

#ifndef __M88K_PSL_H__
#define __M88K_PSL_H__

#ifdef _KERNEL

/*
 * 881x0 control registers
 */

/*
 * processor identification register (PID)
 */
#define PID_ARN		0x0000ff00	/* architectural revision number */
#define	ARN_SHIFT		8
#define	ARN_88100		0x00
#define	ARN_88110		0x01
#define PID_VN		0x000000fe	/* version number */
#define	VN_SHIFT		1
#define PID_MC		0x00000001	/* 88100 master/checker mode */

/*
 * processor status register
 */

#define PSR_MODE	0x80000000	/* supervisor/user mode */
#define PSR_BO		0x40000000	/* byte-ordering 0:big 1:little */
#define PSR_SER		0x20000000	/* 88110 serial mode */
#define PSR_C		0x10000000	/* carry */
#define PSR_SGN		0x04000000	/* 88110 Signed Immediate mode */
#define PSR_SRM		0x02000000	/* 88110 Serialize Memory */
#define PSR_TRACE	0x00800000	/* 88110 hardware trace */
#define PSR_SFD		0x000003e0	/* SFU disable */
#define PSR_SFD2	0x00000010	/* 88110 SFU2 (Graphics) disable */
#define PSR_SFD1	0x00000008	/* SFU1 (FPU) disable */
#define PSR_MXM		0x00000004	/* misaligned access enable */
#define PSR_IND		0x00000002	/* interrupt disable */
#define PSR_SFRZ	0x00000001	/* shadow freeze */

#define FIP_V		0x00000002	/* valid */
#define FIP_E		0x00000001	/* exception */
#define FIP_ADDR	0xfffffffc	/* address mask */
#define NIP_V		0x00000002	/* valid */
#define NIP_E		0x00000001	/* exception */
#define NIP_ADDR	0xfffffffc	/* address mask */
#define XIP_V		0x00000002	/* valid */
#define XIP_E		0x00000001	/* exception */
#define XIP_ADDR	0xfffffffc	/* address mask */

#endif	/* _KERNEL */

#endif /* __M88K_PSL_H__ */