Home | History | Annotate | Line # | Download | only in include
alpha_cpu.h revision 1.52
      1  1.52  thorpej /* $NetBSD: alpha_cpu.h,v 1.52 2020/09/29 01:17:22 thorpej Exp $ */
      2   1.1      cgd 
      3   1.1      cgd /*
      4   1.1      cgd  * Copyright (c) 1996 Carnegie-Mellon University.
      5   1.1      cgd  * All rights reserved.
      6   1.1      cgd  *
      7   1.1      cgd  * Author: Chris G. Demetriou
      8   1.1      cgd  *
      9   1.1      cgd  * Permission to use, copy, modify and distribute this software and
     10   1.1      cgd  * its documentation is hereby granted, provided that both the copyright
     11   1.1      cgd  * notice and this permission notice appear in all copies of the
     12   1.1      cgd  * software, derivative works or modified versions, and any portions
     13   1.1      cgd  * thereof, and that both notices appear in supporting documentation.
     14   1.1      cgd  *
     15   1.1      cgd  * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS"
     16   1.1      cgd  * CONDITION.  CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND
     17   1.1      cgd  * FOR ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
     18   1.1      cgd  *
     19   1.1      cgd  * Carnegie Mellon requests users of this software to return to
     20   1.1      cgd  *
     21   1.1      cgd  *  Software Distribution Coordinator  or  Software.Distribution (at) CS.CMU.EDU
     22   1.1      cgd  *  School of Computer Science
     23   1.1      cgd  *  Carnegie Mellon University
     24   1.1      cgd  *  Pittsburgh PA 15213-3890
     25   1.1      cgd  *
     26   1.1      cgd  * any improvements or extensions that they make and grant Carnegie the
     27   1.1      cgd  * rights to redistribute these changes.
     28   1.1      cgd  */
     29   1.1      cgd 
     30   1.1      cgd #ifndef __ALPHA_ALPHA_CPU_H__
     31   1.1      cgd #define	__ALPHA_ALPHA_CPU_H__
     32   1.1      cgd 
     33   1.1      cgd /*
     34   1.1      cgd  * Alpha CPU + OSF/1 PALcode definitions for use by the kernel.
     35   1.1      cgd  *
     36   1.1      cgd  * Definitions for:
     37   1.1      cgd  *
     38   1.2      cgd  *	Process Control Block
     39   1.2      cgd  *	Interrupt/Exception/Syscall Stack Frame
     40   1.1      cgd  *	Processor Status Register
     41   1.2      cgd  *	Machine Check Error Summary Register
     42   1.2      cgd  *	Machine Check Logout Area
     43  1.19   mjacob  *	Per CPU state Management of Machine Check Handling
     44   1.1      cgd  *	Virtual Memory Management
     45   1.4      cgd  *	Kernel Entry Vectors
     46   1.4      cgd  *	MMCSR Fault Type Codes
     47   1.1      cgd  *	Translation Buffer Invalidation
     48   1.1      cgd  *
     49   1.1      cgd  * and miscellaneous PALcode operations.
     50   1.1      cgd  */
     51   1.1      cgd 
     52   1.1      cgd 
     53   1.1      cgd /*
     54   1.2      cgd  * Process Control Block definitions [OSF/1 PALcode Specific]
     55   1.2      cgd  */
     56   1.2      cgd 
     57   1.2      cgd struct alpha_pcb {
     58   1.2      cgd 	unsigned long	apcb_ksp;	/* kernel stack ptr */
     59   1.2      cgd 	unsigned long	apcb_usp;	/* user stack ptr */
     60   1.2      cgd 	unsigned long	apcb_ptbr;	/* page table base reg */
     61   1.2      cgd 	unsigned int	apcb_cpc;	/* charged process cycles */
     62   1.2      cgd 	unsigned int	apcb_asn;	/* address space number */
     63   1.2      cgd 	unsigned long	apcb_unique;	/* process unique value */
     64  1.29  thorpej #define	apcb_backup_ksp	apcb_unique	/* backup kernel stack ptr */
     65   1.2      cgd 	unsigned long	apcb_flags;	/* flags; see below */
     66   1.2      cgd 	unsigned long	apcb_decrsv0;	/* DEC reserved */
     67   1.2      cgd 	unsigned long	apcb_decrsv1;	/* DEC reserved */
     68   1.2      cgd };
     69   1.2      cgd 
     70   1.2      cgd #define	ALPHA_PCB_FLAGS_FEN	0x0000000000000001
     71   1.2      cgd #define	ALPHA_PCB_FLAGS_PME	0x4000000000000000
     72   1.2      cgd 
     73   1.2      cgd /*
     74   1.3      cgd  * Interrupt/Exception/Syscall "Hardware" (really PALcode)
     75   1.3      cgd  * Stack Frame definitions
     76   1.3      cgd  *
     77   1.3      cgd  * These are quadword offsets from the sp on kernel entry, i.e.
     78   1.3      cgd  * to get to the value in question you access (sp + (offset * 8)).
     79   1.3      cgd  *
     80   1.3      cgd  * On syscall entry, A0-A2 aren't written to memory but space
     81   1.3      cgd  * _is_ reserved for them.
     82   1.2      cgd  */
     83   1.2      cgd 
     84   1.3      cgd #define	ALPHA_HWFRAME_PS	0	/* processor status register */
     85   1.3      cgd #define	ALPHA_HWFRAME_PC	1	/* program counter */
     86   1.3      cgd #define	ALPHA_HWFRAME_GP	2	/* global pointer */
     87   1.3      cgd #define	ALPHA_HWFRAME_A0	3	/* a0 */
     88   1.3      cgd #define	ALPHA_HWFRAME_A1	4	/* a1 */
     89   1.3      cgd #define	ALPHA_HWFRAME_A2	5	/* a2 */
     90   1.3      cgd 
     91   1.3      cgd #define	ALPHA_HWFRAME_SIZE	6	/* 6 8-byte words */
     92   1.2      cgd 
     93   1.2      cgd /*
     94   1.1      cgd  * Processor Status Register [OSF/1 PALcode Specific]
     95   1.1      cgd  *
     96   1.1      cgd  * Includes user/kernel mode bit, interrupt priority levels, etc.
     97  1.51  thorpej  *
     98  1.51  thorpej  * Processor Status Summary
     99  1.51  thorpej  * ---------------------------------------------------------------------------
    100  1.51  thorpej  * PS<mode>	PS<IPL>		Mode		Use
    101  1.51  thorpej  * ---------------------------------------------------------------------------
    102  1.51  thorpej  * 1		0		User		User software
    103  1.51  thorpej  * 0		0		Kernel		System software
    104  1.51  thorpej  * 0		1		Kernel		System software
    105  1.51  thorpej  * 0		2		Kernel		System software
    106  1.51  thorpej  * 0		3		Kernel		Low priority device interrupts
    107  1.51  thorpej  * 0		4		Kernel		High priority device interrupts
    108  1.51  thorpej  * 0		5		Kernel		Clock, inter-proc interrupts
    109  1.51  thorpej  * 0		6		Kernel		Real-time device interrupts
    110  1.51  thorpej  * 0		6		Kernel		Correctable error reporting
    111  1.51  thorpej  * 0		7		Kernel		Machine checks
    112   1.1      cgd  */
    113   1.1      cgd 
    114   1.1      cgd #define	ALPHA_PSL_USERMODE	0x0008		/* set -> user mode */
    115   1.1      cgd #define	ALPHA_PSL_IPL_MASK	0x0007		/* interrupt level mask */
    116   1.1      cgd 
    117   1.1      cgd #define	ALPHA_PSL_IPL_0		0x0000		/* all interrupts enabled */
    118  1.51  thorpej #define	ALPHA_PSL_IPL_SOFT_LO	0x0001		/* low pri soft ints disabled */
    119  1.51  thorpej #define	ALPHA_PSL_IPL_SOFT_HI	0x0002		/* hi pri soft ints disabled */
    120  1.51  thorpej #define	ALPHA_PSL_IPL_IO_LO	0x0003		/* low pri dev ints disabled */
    121  1.51  thorpej #define	ALPHA_PSL_IPL_IO_HI	0x0004		/* hi pri dev ints disabled */
    122   1.1      cgd #define	ALPHA_PSL_IPL_CLOCK	0x0005		/* clock ints disabled */
    123   1.1      cgd #define	ALPHA_PSL_IPL_HIGH	0x0006		/* all but mchecks disabled */
    124  1.51  thorpej #define	ALPHA_PSL_IPL_MCHECK	0x0007		/* machine checks disabled */
    125   1.1      cgd 
    126   1.1      cgd #define	ALPHA_PSL_MUST_BE_ZERO	0xfffffffffffffff0
    127   1.1      cgd 
    128   1.1      cgd /* Convenience constants: what must be set/clear in user mode */
    129   1.1      cgd #define	ALPHA_PSL_USERSET	ALPHA_PSL_USERMODE
    130   1.1      cgd #define	ALPHA_PSL_USERCLR	(ALPHA_PSL_MUST_BE_ZERO | ALPHA_PSL_IPL_MASK)
    131  1.15   mjacob 
    132  1.15   mjacob /*
    133  1.15   mjacob  * Interrupt Type Code Definitions [OSF/1 PALcode Specific]
    134  1.15   mjacob  */
    135  1.50     matt 
    136  1.15   mjacob #define	ALPHA_INTR_XPROC	0	/* interprocessor interrupt */
    137  1.15   mjacob #define	ALPHA_INTR_CLOCK	1	/* clock interrupt */
    138  1.15   mjacob #define	ALPHA_INTR_ERROR	2	/* correctable error or mcheck */
    139  1.15   mjacob #define	ALPHA_INTR_DEVICE	3	/* device interrupt */
    140  1.15   mjacob #define	ALPHA_INTR_PERF		4	/* performance counter */
    141  1.15   mjacob #define	ALPHA_INTR_PASSIVE	5	/* passive release */
    142   1.1      cgd 
    143   1.2      cgd /*
    144   1.2      cgd  * Machine Check Error Summary Register definitions [OSF/1 PALcode Specific]
    145   1.4      cgd  *
    146   1.4      cgd  * The following bits are values as read.  On write, _PCE, _SCE, and
    147   1.4      cgd  * _MIP are "write 1 to clear."
    148   1.2      cgd  */
    149   1.1      cgd 
    150   1.2      cgd #define	ALPHA_MCES_IMP							\
    151   1.2      cgd     0xffffffff00000000	/* impl. dependent */
    152   1.2      cgd #define	ALPHA_MCES_RSVD							\
    153   1.2      cgd     0x00000000ffffffe0	/* reserved */
    154   1.2      cgd #define	ALPHA_MCES_DSC							\
    155   1.2      cgd     0x0000000000000010	/* disable system correctable error reporting */
    156   1.2      cgd #define	ALPHA_MCES_DPC							\
    157   1.2      cgd     0x0000000000000008	/* disable processor correctable error reporting */
    158   1.2      cgd #define	ALPHA_MCES_PCE							\
    159   1.2      cgd     0x0000000000000004	/* processor correctable error in progress */
    160   1.2      cgd #define	ALPHA_MCES_SCE							\
    161   1.2      cgd     0x0000000000000002	/* system correctable error in progress */
    162   1.2      cgd #define	ALPHA_MCES_MIP							\
    163   1.2      cgd     0x0000000000000001	/* machine check in progress */
    164   1.2      cgd 
    165   1.2      cgd /*
    166   1.2      cgd  * Machine Check Error Summary Register definitions [OSF/1 PALcode Specific]
    167  1.19   mjacob  *
    168  1.19   mjacob  * Note that these are *generic* OSF/1 PALcode specific defines. There are
    169  1.19   mjacob  * platform variations to these entities.
    170   1.2      cgd  */
    171   1.2      cgd 
    172   1.2      cgd struct alpha_logout_area {
    173   1.2      cgd 	unsigned int	la_frame_size;		/* frame size */
    174   1.2      cgd 	unsigned int	la_flags;		/* flags; see below */
    175   1.2      cgd 	unsigned int	la_cpu_offset;		/* offset to cpu area */
    176   1.2      cgd 	unsigned int	la_system_offset;	/* offset to system area */
    177   1.2      cgd };
    178   1.2      cgd 
    179   1.2      cgd #define	ALPHA_LOGOUT_FLAGS_RETRY	0x80000000	/* OK to continue */
    180   1.2      cgd #define	ALPHA_LOGOUT_FLAGS_SE		0x40000000	/* second error */
    181   1.2      cgd #define	ALPHA_LOGOUT_FLAGS_SBZ		0x3fffffff	/* should be zero */
    182   1.2      cgd 
    183   1.2      cgd #define	ALPHA_LOGOUT_NOT_BUILT						\
    184   1.2      cgd     (struct alpha_logout_area *)0xffffffffffffffff)
    185   1.2      cgd 
    186   1.2      cgd #define	ALPHA_LOGOUT_PAL_AREA(lap)					\
    187   1.2      cgd     (unsigned long *)((unsigned char *)(lap) + 16)
    188   1.2      cgd #define	ALPHA_LOGOUT_PAL_SIZE(lap)					\
    189   1.2      cgd     ((lap)->la_cpu_offset - 16)
    190   1.2      cgd #define	ALPHA_LOGOUT_CPU_AREA(lap)					\
    191   1.2      cgd     (unsigned long *)((unsigned char *)(lap) + (lap)->la_cpu_offset)
    192   1.2      cgd #define	ALPHA_LOGOUT_CPU_SIZE(lap)					\
    193   1.2      cgd     ((lap)->la_system_offset - (lap)->la_cpu_offset)
    194   1.2      cgd #define	ALPHA_LOGOUT_SYSTEM_AREA(lap)					\
    195   1.2      cgd     (unsigned long *)((unsigned char *)(lap) + (lap)->la_system_offset)
    196   1.2      cgd #define	ALPHA_LOGOUT_SYSTEM_SIZE(lap)					\
    197   1.2      cgd     ((lap)->la_frame_size - (lap)->la_system_offset)
    198  1.19   mjacob 
    199  1.19   mjacob /* types of machine checks */
    200  1.19   mjacob #define	ALPHA_SYS_ERROR		0x620	/* System correctable error	*/
    201  1.19   mjacob #define	ALPHA_PROC_ERROR	0x630	/* Processor correctable error	*/
    202  1.19   mjacob #define	ALPHA_SYS_MCHECK	0x660	/* System machine check		*/
    203  1.19   mjacob #define	ALPHA_PROC_MCHECK	0x670	/* Processor machine check	*/
    204  1.49     hans #define	ALPHA_ENV_MCHECK	0x680	/* Environmental error		*/
    205  1.19   mjacob 
    206   1.1      cgd /*
    207   1.2      cgd  * Virtual Memory Management definitions [OSF/1 PALcode Specific]
    208   1.1      cgd  *
    209   1.1      cgd  * Includes user and kernel space addresses and information,
    210   1.1      cgd  * page table entry definitions, etc.
    211   1.1      cgd  *
    212   1.1      cgd  * NOTE THAT THESE DEFINITIONS MAY CHANGE IN FUTURE ALPHA CPUS!
    213   1.1      cgd  */
    214   1.1      cgd 
    215   1.1      cgd #define	ALPHA_PGSHIFT		13
    216   1.2      cgd #define	ALPHA_PGBYTES		(1 << ALPHA_PGSHIFT)
    217   1.1      cgd 
    218   1.1      cgd #define	ALPHA_USEG_BASE		0			/* virtual */
    219   1.1      cgd #define	ALPHA_USEG_END		0x000003ffffffffff
    220   1.1      cgd 
    221   1.1      cgd #define	ALPHA_K0SEG_BASE	0xfffffc0000000000	/* direct-mapped */
    222   1.6      cgd #define	ALPHA_K0SEG_END		0xfffffdffffffffff
    223   1.6      cgd #define	ALPHA_K1SEG_BASE	0xfffffe0000000000	/* virtual */
    224   1.1      cgd #define	ALPHA_K1SEG_END		0xffffffffffffffff
    225   1.1      cgd 
    226   1.7      cgd #define ALPHA_K0SEG_TO_PHYS(x)	((x) & ~ALPHA_K0SEG_BASE)
    227   1.1      cgd #define ALPHA_PHYS_TO_K0SEG(x)	((x) | ALPHA_K0SEG_BASE)
    228   1.1      cgd 
    229   1.1      cgd #define	ALPHA_PTE_VALID			0x0001
    230   1.1      cgd 
    231   1.1      cgd #define	ALPHA_PTE_FAULT_ON_READ		0x0002
    232   1.1      cgd #define	ALPHA_PTE_FAULT_ON_WRITE	0x0004
    233   1.1      cgd #define	ALPHA_PTE_FAULT_ON_EXECUTE	0x0008
    234   1.1      cgd 
    235   1.1      cgd #define	ALPHA_PTE_ASM			0x0010		/* addr. space match */
    236   1.1      cgd #define	ALPHA_PTE_GRANULARITY		0x0060		/* granularity hint */
    237   1.1      cgd 
    238   1.1      cgd #define	ALPHA_PTE_PROT			0xff00
    239   1.1      cgd #define	ALPHA_PTE_KR			0x0100
    240   1.1      cgd #define	ALPHA_PTE_UR			0x0200
    241   1.1      cgd #define	ALPHA_PTE_KW			0x1000
    242   1.1      cgd #define	ALPHA_PTE_UW			0x2000
    243   1.1      cgd 
    244  1.10  thorpej #define	ALPHA_PTE_WRITE			(ALPHA_PTE_KW | ALPHA_PTE_UW)
    245   1.1      cgd 
    246  1.20  thorpej #define	ALPHA_PTE_SOFTWARE		0x00000000ffff0000
    247  1.21  thorpej #define	ALPHA_PTE_PALCODE		(~ALPHA_PTE_SOFTWARE) /* shorthand */
    248   1.1      cgd 
    249   1.1      cgd #define	ALPHA_PTE_PFN			0xffffffff00000000
    250   1.1      cgd 
    251   1.1      cgd #define	ALPHA_PTE_TO_PFN(pte)		((pte) >> 32)
    252   1.1      cgd #define	ALPHA_PTE_FROM_PFN(pfn)		((pfn) << 32)
    253   1.1      cgd 
    254   1.1      cgd typedef unsigned long alpha_pt_entry_t;
    255   1.1      cgd 
    256   1.4      cgd /*
    257   1.4      cgd  * Kernel Entry Vectors.  [OSF/1 PALcode Specific]
    258   1.4      cgd  */
    259   1.4      cgd 
    260   1.4      cgd #define	ALPHA_KENTRY_INT	0
    261   1.4      cgd #define	ALPHA_KENTRY_ARITH	1
    262   1.4      cgd #define	ALPHA_KENTRY_MM		2
    263   1.4      cgd #define	ALPHA_KENTRY_IF		3
    264   1.4      cgd #define	ALPHA_KENTRY_UNA	4
    265   1.4      cgd #define	ALPHA_KENTRY_SYS	5
    266   1.4      cgd 
    267   1.4      cgd /*
    268   1.4      cgd  * MMCSR Fault Type Codes.  [OSF/1 PALcode Specific]
    269   1.4      cgd  */
    270   1.4      cgd 
    271   1.4      cgd #define	ALPHA_MMCSR_INVALTRANS	0
    272   1.4      cgd #define	ALPHA_MMCSR_ACCESS	1
    273   1.4      cgd #define	ALPHA_MMCSR_FOR		2
    274   1.4      cgd #define	ALPHA_MMCSR_FOE		3
    275   1.4      cgd #define	ALPHA_MMCSR_FOW		4
    276   1.4      cgd 
    277   1.4      cgd /*
    278   1.4      cgd  * Instruction Fault Type Codes.  [OSF/1 PALcode Specific]
    279   1.4      cgd  */
    280   1.4      cgd 
    281   1.4      cgd #define	ALPHA_IF_CODE_BPT	0
    282   1.4      cgd #define	ALPHA_IF_CODE_BUGCHK	1
    283   1.4      cgd #define	ALPHA_IF_CODE_GENTRAP	2
    284   1.4      cgd #define	ALPHA_IF_CODE_FEN	3
    285   1.4      cgd #define	ALPHA_IF_CODE_OPDEC	4
    286   1.1      cgd 
    287  1.42  thorpej #ifdef _KERNEL
    288  1.42  thorpej 
    289   1.1      cgd /*
    290   1.2      cgd  * Translation Buffer Invalidation definitions [OSF/1 PALcode Specific]
    291   1.1      cgd  */
    292   1.1      cgd 
    293   1.5      cgd #define	ALPHA_TBIA()	alpha_pal_tbi(-2, 0)		/* all TB entries */
    294   1.5      cgd #define	ALPHA_TBIAP()	alpha_pal_tbi(-1, 0)		/* all per-process */
    295   1.5      cgd #define	ALPHA_TBISI(va)	alpha_pal_tbi(1, (va))		/* ITB entry for va */
    296   1.5      cgd #define	ALPHA_TBISD(va)	alpha_pal_tbi(2, (va))		/* DTB entry for va */
    297   1.5      cgd #define	ALPHA_TBIS(va)	alpha_pal_tbi(3, (va))		/* all for va */
    298   1.1      cgd 
    299  1.42  thorpej #endif /* _KERNEL */
    300  1.42  thorpej 
    301   1.1      cgd /*
    302  1.12  thorpej  * Bits used in the amask instruction [EV56 and later]
    303  1.12  thorpej  */
    304  1.12  thorpej 
    305  1.12  thorpej #define	ALPHA_AMASK_BWX		0x0001		/* byte/word extension */
    306  1.38  thorpej #define	ALPHA_AMASK_FIX		0x0002		/* floating point conv. ext. */
    307  1.38  thorpej #define	ALPHA_AMASK_CIX		0x0004		/* count extension */
    308  1.38  thorpej #define	ALPHA_AMASK_MVI		0x0100		/* multimedia extension */
    309  1.38  thorpej #define	ALPHA_AMASK_PAT		0x0200		/* precise arith. traps */
    310  1.45   rpaulo #define	ALPHA_AMASK_PMI		0x1000		/* prefetch w/ modify intent */
    311  1.38  thorpej 
    312  1.39  thorpej #define	ALPHA_AMASK_ALL		(ALPHA_AMASK_BWX|ALPHA_AMASK_FIX|	\
    313  1.39  thorpej 				 ALPHA_AMASK_CIX|ALPHA_AMASK_MVI|	\
    314  1.45   rpaulo 				 ALPHA_AMASK_PAT|ALPHA_AMASK_PMI)
    315  1.39  thorpej 
    316  1.39  thorpej #define	ALPHA_AMASK_BITS						\
    317  1.45   rpaulo     "\20\17PMI\12PAT\11MVI\3CIX\2FIX\1BWX"
    318  1.12  thorpej 
    319  1.12  thorpej /*
    320  1.12  thorpej  * Chip family IDs returned by implver instruction
    321  1.12  thorpej  */
    322  1.12  thorpej 
    323  1.12  thorpej #define	ALPHA_IMPLVER_EV4	0		/* LCA/EV4/EV45 */
    324  1.12  thorpej #define	ALPHA_IMPLVER_EV5	1		/* EV5/EV56/PCA56 */
    325  1.12  thorpej #define	ALPHA_IMPLVER_EV6	2		/* EV6 */
    326  1.45   rpaulo #define	ALPHA_IMPLVER_EV7	3		/* EV7/EV79 */
    327  1.24  thorpej 
    328  1.42  thorpej #ifdef _KERNEL
    329  1.42  thorpej 
    330  1.24  thorpej /*
    331  1.24  thorpej  * Maximum processor ID we allow from `whami', and related constants.
    332  1.24  thorpej  *
    333  1.24  thorpej  * XXX This is not really processor or PALcode specific, but this is
    334  1.24  thorpej  * a convenient place to put these definitions.
    335  1.24  thorpej  *
    336  1.24  thorpej  * XXX This is clipped at 63 so that we can use `long's for proc bitmasks.
    337  1.24  thorpej  */
    338  1.24  thorpej 
    339  1.24  thorpej #define	ALPHA_WHAMI_MAXID	63
    340  1.24  thorpej #define	ALPHA_MAXPROCS		(ALPHA_WHAMI_MAXID + 1)
    341  1.16  thorpej 
    342  1.16  thorpej /*
    343  1.16  thorpej  * Misc. support routines.
    344  1.16  thorpej  */
    345  1.41  thorpej const char	*alpha_dsr_sysname(void);
    346  1.12  thorpej 
    347  1.12  thorpej /*
    348   1.1      cgd  * Stubs for Alpha instructions normally inaccessible from C.
    349   1.1      cgd  */
    350  1.40  thorpej unsigned long	alpha_amask(unsigned long);
    351  1.40  thorpej unsigned long	alpha_implver(void);
    352  1.32  thorpej 
    353  1.42  thorpej #endif /* _KERNEL */
    354  1.42  thorpej 
    355  1.42  thorpej /* XXX Expose the insn wrappers to userspace, for now. */
    356  1.42  thorpej 
    357  1.48    perry static __inline unsigned long
    358  1.40  thorpej alpha_rpcc(void)
    359  1.32  thorpej {
    360  1.32  thorpej 	unsigned long v0;
    361  1.32  thorpej 
    362  1.47    perry 	__asm volatile("rpcc %0" : "=r" (v0));
    363  1.32  thorpej 	return (v0);
    364  1.32  thorpej }
    365  1.32  thorpej 
    366  1.47    perry #define	alpha_mb()	__asm volatile("mb" : : : "memory")
    367  1.47    perry #define	alpha_wmb()	__asm volatile("mb" : : : "memory")	/* XXX */
    368   1.1      cgd 
    369  1.42  thorpej #if defined(_KERNEL) || defined(_STANDALONE)
    370  1.42  thorpej 
    371   1.1      cgd /*
    372   1.1      cgd  * Stubs for OSF/1 PALcode operations.
    373   1.1      cgd  */
    374  1.33  thorpej #include <machine/pal.h>
    375  1.33  thorpej 
    376  1.40  thorpej void		alpha_pal_cflush(unsigned long);
    377  1.40  thorpej void		alpha_pal_halt(void) __attribute__((__noreturn__));
    378  1.40  thorpej unsigned long	_alpha_pal_swpipl(unsigned long);	/* for profiling */
    379  1.40  thorpej void		alpha_pal_wrent(void *, unsigned long);
    380  1.40  thorpej void		alpha_pal_wrvptptr(unsigned long);
    381  1.52  thorpej unsigned long	alpha_pal_wtint(unsigned long);
    382  1.32  thorpej 
    383  1.47    perry #define	alpha_pal_draina() __asm volatile("call_pal %0 # PAL_draina"	\
    384  1.36  thorpej 				: : "i" (PAL_draina) : "memory")
    385  1.36  thorpej 
    386  1.47    perry #define	alpha_pal_imb()	__asm volatile("call_pal %0 # PAL_imb"	\
    387  1.33  thorpej 				: : "i" (PAL_imb) : "memory")
    388  1.32  thorpej 
    389  1.48    perry static __inline unsigned long
    390  1.40  thorpej alpha_pal_rdmces(void)
    391  1.36  thorpej {
    392  1.36  thorpej 	register unsigned long v0 __asm("$0");
    393  1.36  thorpej 
    394  1.47    perry 	__asm volatile("call_pal %1 # PAL_OSF1_rdmces"
    395  1.36  thorpej 		: "=r" (v0)
    396  1.36  thorpej 		: "i" (PAL_OSF1_rdmces)
    397  1.36  thorpej 		/* clobbers t0, t8..t11 */
    398  1.36  thorpej 		: "$1", "$22", "$23", "$24", "$25");
    399  1.36  thorpej 
    400  1.36  thorpej 	return (v0);
    401  1.36  thorpej }
    402  1.36  thorpej 
    403  1.48    perry static __inline unsigned long
    404  1.40  thorpej alpha_pal_rdps(void)
    405  1.32  thorpej {
    406  1.32  thorpej 	register unsigned long v0 __asm("$0");
    407  1.32  thorpej 
    408  1.47    perry 	__asm volatile("call_pal %1 # PAL_OSF1_rdps"
    409  1.32  thorpej 		: "=r" (v0)
    410  1.33  thorpej 		: "i" (PAL_OSF1_rdps)
    411  1.32  thorpej 		/* clobbers t0, t8..t11 */
    412  1.32  thorpej 		: "$1", "$22", "$23", "$24", "$25");
    413  1.32  thorpej 
    414  1.32  thorpej 	return (v0);
    415  1.32  thorpej }
    416  1.32  thorpej 
    417  1.48    perry static __inline unsigned long
    418  1.44  thorpej alpha_pal_rdunique(void)
    419  1.44  thorpej {
    420  1.44  thorpej 	register unsigned long v0 __asm("$0");
    421  1.44  thorpej 
    422  1.47    perry 	__asm volatile("call_pal %1 # PAL_rdunique"
    423  1.44  thorpej 		: "=r" (v0)
    424  1.44  thorpej 		: "i" (PAL_rdunique));
    425  1.44  thorpej 
    426  1.44  thorpej 	return (v0);
    427  1.44  thorpej }
    428  1.44  thorpej 
    429  1.48    perry static __inline unsigned long
    430  1.40  thorpej alpha_pal_rdusp(void)
    431  1.36  thorpej {
    432  1.36  thorpej 	register unsigned long v0 __asm("$0");
    433  1.36  thorpej 
    434  1.47    perry 	__asm volatile("call_pal %1 # PAL_OSF1_rdusp"
    435  1.36  thorpej 		: "=r" (v0)
    436  1.36  thorpej 		: "i" (PAL_OSF1_rdusp)
    437  1.36  thorpej 		/* clobbers t0, t8..t11 */
    438  1.36  thorpej 		: "$1", "$22", "$23", "$24", "$25");
    439  1.36  thorpej 
    440  1.36  thorpej 	return (v0);
    441  1.36  thorpej }
    442  1.36  thorpej 
    443  1.48    perry static __inline unsigned long
    444  1.40  thorpej alpha_pal_rdval(void)
    445  1.36  thorpej {
    446  1.36  thorpej 	register unsigned long v0 __asm("$0");
    447  1.36  thorpej 
    448  1.47    perry 	__asm volatile("call_pal %1 # PAL_OSF1_rdval"
    449  1.36  thorpej 		: "=r" (v0)
    450  1.36  thorpej 		: "i" (PAL_OSF1_rdval)
    451  1.36  thorpej 		/* clobbers t0, t8..t11 */
    452  1.36  thorpej 		: "$1", "$22", "$23", "$24", "$25");
    453  1.36  thorpej 
    454  1.36  thorpej 	return (v0);
    455  1.36  thorpej }
    456  1.36  thorpej 
    457  1.48    perry static __inline unsigned long
    458  1.37  thorpej alpha_pal_swpctx(unsigned long ctx)
    459  1.36  thorpej {
    460  1.36  thorpej 	register unsigned long a0 __asm("$16") = ctx;
    461  1.36  thorpej 	register unsigned long v0 __asm("$0");
    462  1.36  thorpej 
    463  1.47    perry 	__asm volatile("call_pal %2 # PAL_OSF1_swpctx"
    464  1.36  thorpej 		: "=r" (a0), "=r" (v0)
    465  1.36  thorpej 		: "i" (PAL_OSF1_swpctx), "0" (a0)
    466  1.36  thorpej 		/* clobbers t0, t8..t11, a0 (above) */
    467  1.43  thorpej 		: "$1", "$22", "$23", "$24", "$25", "memory");
    468  1.36  thorpej 
    469  1.36  thorpej 	return (v0);
    470  1.36  thorpej }
    471  1.36  thorpej 
    472  1.48    perry static __inline unsigned long
    473  1.37  thorpej alpha_pal_swpipl(unsigned long ipl)
    474  1.32  thorpej {
    475  1.32  thorpej 	register unsigned long a0 __asm("$16") = ipl;
    476  1.32  thorpej 	register unsigned long v0 __asm("$0");
    477  1.32  thorpej 
    478  1.47    perry 	__asm volatile("call_pal %2 # PAL_OSF1_swpipl"
    479  1.33  thorpej 		: "=r" (a0), "=r" (v0)
    480  1.33  thorpej 		: "i" (PAL_OSF1_swpipl), "0" (a0)
    481  1.33  thorpej 		/* clobbers t0, t8..t11, a0 (above) */
    482  1.43  thorpej 		: "$1", "$22", "$23", "$24", "$25", "memory");
    483  1.32  thorpej 
    484  1.32  thorpej 	return (v0);
    485  1.32  thorpej }
    486  1.32  thorpej 
    487  1.48    perry static __inline void
    488  1.37  thorpej alpha_pal_tbi(unsigned long op, vaddr_t va)
    489  1.32  thorpej {
    490  1.32  thorpej 	register unsigned long a0 __asm("$16") = op;
    491  1.32  thorpej 	register unsigned long a1 __asm("$17") = va;
    492  1.32  thorpej 
    493  1.47    perry 	__asm volatile("call_pal %2 # PAL_OSF1_tbi"
    494  1.33  thorpej 		: "=r" (a0), "=r" (a1)
    495  1.33  thorpej 		: "i" (PAL_OSF1_tbi), "0" (a0), "1" (a1)
    496  1.33  thorpej 		/* clobbers t0, t8..t11, a0 (above), a1 (above) */
    497  1.33  thorpej 		: "$1", "$22", "$23", "$24", "$25");
    498  1.32  thorpej }
    499  1.32  thorpej 
    500  1.48    perry static __inline unsigned long
    501  1.40  thorpej alpha_pal_whami(void)
    502  1.32  thorpej {
    503  1.32  thorpej 	register unsigned long v0 __asm("$0");
    504  1.32  thorpej 
    505  1.47    perry 	__asm volatile("call_pal %1 # PAL_OSF1_whami"
    506  1.32  thorpej 		: "=r" (v0)
    507  1.33  thorpej 		: "i" (PAL_OSF1_whami)
    508  1.32  thorpej 		/* clobbers t0, t8..t11 */
    509  1.32  thorpej 		: "$1", "$22", "$23", "$24", "$25");
    510  1.32  thorpej 
    511  1.32  thorpej 	return (v0);
    512  1.36  thorpej }
    513  1.36  thorpej 
    514  1.48    perry static __inline void
    515  1.37  thorpej alpha_pal_wrfen(unsigned long onoff)
    516  1.36  thorpej {
    517  1.36  thorpej 	register unsigned long a0 __asm("$16") = onoff;
    518  1.36  thorpej 
    519  1.47    perry 	__asm volatile("call_pal %1 # PAL_OSF1_wrfen"
    520  1.36  thorpej 		: "=r" (a0)
    521  1.36  thorpej 		: "i" (PAL_OSF1_wrfen), "0" (a0)
    522  1.36  thorpej 		/* clobbers t0, t8..t11, a0 (above) */
    523  1.36  thorpej 		: "$1", "$22", "$23", "$24", "$25");
    524  1.36  thorpej }
    525  1.36  thorpej 
    526  1.48    perry static __inline void
    527  1.37  thorpej alpha_pal_wripir(unsigned long cpu_id)
    528  1.36  thorpej {
    529  1.36  thorpej 	register unsigned long a0 __asm("$16") = cpu_id;
    530  1.36  thorpej 
    531  1.47    perry 	__asm volatile("call_pal %1 # PAL_ipir"
    532  1.36  thorpej 		: "=r" (a0)
    533  1.36  thorpej 		: "i" (PAL_ipir), "0" (a0)
    534  1.36  thorpej 		/* clobbers t0, t8..t11, a0 (above) */
    535  1.36  thorpej 		: "$1", "$22", "$23", "$24", "$25");
    536  1.44  thorpej }
    537  1.44  thorpej 
    538  1.48    perry static __inline void
    539  1.44  thorpej alpha_pal_wrunique(unsigned long unique)
    540  1.44  thorpej {
    541  1.44  thorpej 	register unsigned long a0 __asm("$16") = unique;
    542  1.44  thorpej 
    543  1.47    perry 	__asm volatile("call_pal %1 # PAL_wrunique"
    544  1.44  thorpej 		: "=r" (a0)
    545  1.44  thorpej 		: "i" (PAL_wrunique), "0" (a0));
    546  1.36  thorpej }
    547  1.36  thorpej 
    548  1.48    perry static __inline void
    549  1.37  thorpej alpha_pal_wrusp(unsigned long usp)
    550  1.36  thorpej {
    551  1.36  thorpej 	register unsigned long a0 __asm("$16") = usp;
    552  1.36  thorpej 
    553  1.47    perry 	__asm volatile("call_pal %1 # PAL_OSF1_wrusp"
    554  1.36  thorpej 		: "=r" (a0)
    555  1.36  thorpej 		: "i" (PAL_OSF1_wrusp), "0" (a0)
    556  1.36  thorpej 		/* clobbers t0, t8..t11, a0 (above) */
    557  1.36  thorpej 		: "$1", "$22", "$23", "$24", "$25");
    558  1.36  thorpej }
    559  1.36  thorpej 
    560  1.48    perry static __inline void
    561  1.37  thorpej alpha_pal_wrmces(unsigned long mces)
    562  1.36  thorpej {
    563  1.36  thorpej 	register unsigned long a0 __asm("$16") = mces;
    564  1.36  thorpej 
    565  1.47    perry 	__asm volatile("call_pal %1 # PAL_OSF1_wrmces"
    566  1.36  thorpej 		: "=r" (a0)
    567  1.36  thorpej 		: "i" (PAL_OSF1_wrmces), "0" (a0)
    568  1.36  thorpej 		/* clobbers t0, t8..t11 */
    569  1.36  thorpej 		: "$1", "$22", "$23", "$24", "$25");
    570  1.36  thorpej }
    571  1.36  thorpej 
    572  1.48    perry static __inline void
    573  1.37  thorpej alpha_pal_wrval(unsigned long val)
    574  1.36  thorpej {
    575  1.36  thorpej 	register unsigned long a0 __asm("$16") = val;
    576  1.36  thorpej 
    577  1.47    perry 	__asm volatile("call_pal %1 # PAL_OSF1_wrval"
    578  1.36  thorpej 		: "=r" (a0)
    579  1.36  thorpej 		: "i" (PAL_OSF1_wrval), "0" (a0)
    580  1.36  thorpej 		/* clobbers t0, t8..t11, a0 (above) */
    581  1.36  thorpej 		: "$1", "$22", "$23", "$24", "$25");
    582  1.32  thorpej }
    583  1.42  thorpej 
    584  1.42  thorpej #endif /* _KERNEL */
    585   1.1      cgd 
    586   1.9      cgd #endif /* __ALPHA_ALPHA_CPU_H__ */
    587