/* $NetBSD: pal.s,v 1.16 2020/09/29 01:17:22 thorpej Exp $ */ /* * Copyright (c) 1994, 1995 Carnegie-Mellon University. * All rights reserved. * * Author: Chris G. Demetriou * * 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 the * rights to redistribute these changes. */ /* * The various OSF PALcode routines. * * The following code is originally derived from pages: (I) 6-5 - (I) 6-7 * and (III) 2-1 - (III) 2-25 of "Alpha Architecture Reference Manual" by * Richard L. Sites. * * Updates taken from pages: (II-B) 2-1 - (II-B) 2-33 of "Alpha AXP * Architecture Reference Manual, Second Edition" by Richard L. Sites * and Richard T. Witek. */ __KERNEL_RCSID(1, "$NetBSD: pal.s,v 1.16 2020/09/29 01:17:22 thorpej Exp $"); inc2: .stabs __FILE__,132,0,0,inc2; .loc 1 __LINE__ /* * alpha_amask: read architecture features (XXX INSTRUCTION, NOT PALcode OP) * * Arguments: * a0 bitmask of features to test * * Returns: * v0 bitmask - bit is _cleared_ if feature is supported */ .text LEAF(alpha_amask,1) amask a0, v0 RET END(alpha_amask) /* * alpha_implver: read implementation version (XXX INSTRUCTION, NOT PALcode OP) * * Returns: * v0 implementation version - see */ .text LEAF(alpha_implver,0) #if 0 implver 0x1, v0 #else .long 0x47e03d80 /* XXX gas(1) does the Wrong Thing */ #endif RET END(alpha_implver) /* * alpha_pal_cflush: Cache flush [PRIVILEGED] * * Flush the entire physical page specified by the PFN specified in * a0 from any data caches associated with the current processor. * * Arguments: * a0 page frame number of page to flush */ .text LEAF(alpha_pal_cflush,1) call_pal PAL_cflush RET END(alpha_pal_cflush) /* * alpha_pal_halt: Halt the processor. [PRIVILEGED] */ .text LEAF_NOPROFILE(alpha_pal_halt,0) call_pal PAL_halt br zero,alpha_pal_halt /* Just in case */ RET END(alpha_pal_halt) /* * alpha_pal_rdps: Read processor status. [PRIVILEGED] * * Return: * v0 current PS value */ .text LEAF(alpha_pal_rdps,0) call_pal PAL_OSF1_rdps RET END(alpha_pal_rdps) /* * alpha_pal_swpipl: Swap Interrupt priority level. [PRIVILEGED] * _alpha_pal_swpipl: Same, from profiling code. [PRIVILEGED] * * Arguments: * a0 new IPL * * Return: * v0 old IPL */ .text LEAF(alpha_pal_swpipl,1) call_pal PAL_OSF1_swpipl RET END(alpha_pal_swpipl) LEAF_NOPROFILE(_alpha_pal_swpipl,1) call_pal PAL_OSF1_swpipl RET END(_alpha_pal_swpipl) /* * alpha_pal_wrent: Write system entry address. [PRIVILEGED] * * Arguments: * a0 new vector * a1 vector selector */ .text LEAF_NOPROFILE(alpha_pal_wrent,2) call_pal PAL_OSF1_wrent RET END(alpha_pal_wrent) /* * alpha_pal_wrvptptr: Write virtual page table pointer. [PRIVILEGED] * * Arguments: * a0 new virtual page table pointer */ .text LEAF_NOPROFILE(alpha_pal_wrvptptr,1) call_pal PAL_OSF1_wrvptptr RET END(alpha_pal_wrvptptr) /* * alpha_pal_wtint: Wait for interrupt. [PRIVILEGED] * * Arguments: * a0 maximum number of clock interrupts to skip * * Return value: * v0 actual number of clock interrupts skipped * * WTINT waits, in a low power mode, for either any device interrupt or * for the next clock interrupt (a0 == 0) or up to the specified number * of clock interrupts to pass. Note that the PCC may slow or stop * while waiting. * * Not all PALcode versions support WTINT. If it is not supported, * an OPDEC fault will occur. */ .text LEAF_NOPROFILE(alpha_pal_wtint,1) call_pal PAL_wtint RET END(alpha_pal_wtint)