/* * Copyright (c) 2003,2004,2008 The DragonFly Project. All rights reserved. * * This code is derived from software contributed to The DragonFly Project * by Matthew Dillon * * 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. Neither the name of The DragonFly Project nor the names of its * contributors may be used to endorse or promote products derived * from this software without specific, prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS * ``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 * COPYRIGHT HOLDERS OR CONTRIBUTORS 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. * * Copyright (c) 1997, by Steve Passe, 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. The name of the developer 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 AND CONTRIBUTORS ``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 OR CONTRIBUTORS 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. * * $FreeBSD: src/sys/i386/isa/apic_ipl.s,v 1.27.2.2 2000/09/30 02:49:35 ps Exp $ */ #include #include #include #include #include #include "apicreg.h" #include #include "assym.s" #ifdef SMP /* APIC-IO */ .text SUPERALIGN_TEXT /* * Functions to enable and disable a hardware interrupt. The * IRQ number is passed as an argument. */ ENTRY(IOAPIC_INTRDIS) IOAPIC_IMASK_LOCK /* enter critical reg */ movl %edi, %eax 1: shll $IOAPIC_IM_SZSHIFT, %eax orl $IOAPIC_IM_FLAG_MASKED, CNAME(int_to_apicintpin) + IOAPIC_IM_FLAGS(%rax) movq CNAME(int_to_apicintpin) + IOAPIC_IM_ADDR(%rax), %rdx movl CNAME(int_to_apicintpin) + IOAPIC_IM_ENTIDX(%rax), %ecx testq %rdx, %rdx jz 2f movl %ecx, (%rdx) /* target register index */ orl $IOART_INTMASK, IOAPIC_WINDOW(%rdx) /* set intmask in target ioapic reg */ 2: IOAPIC_IMASK_UNLOCK /* exit critical reg */ ret ENTRY(IOAPIC_INTREN) IOAPIC_IMASK_LOCK /* enter critical reg */ movl %edi, %eax 1: shll $IOAPIC_IM_SZSHIFT, %eax andl $~IOAPIC_IM_FLAG_MASKED, CNAME(int_to_apicintpin) + IOAPIC_IM_FLAGS(%rax) movq CNAME(int_to_apicintpin) + IOAPIC_IM_ADDR(%rax), %rdx movl CNAME(int_to_apicintpin) + IOAPIC_IM_ENTIDX(%rax), %ecx testq %rdx, %rdx jz 2f movl %ecx, (%rdx) /* write the target register index */ andl $~IOART_INTMASK, IOAPIC_WINDOW(%rdx) /* clear mask bit */ 2: IOAPIC_IMASK_UNLOCK /* exit critical reg */ ret /****************************************************************************** * */ /* * u_int ioapic_read(volatile void *ioapic, int select); */ ENTRY(ioapic_read) movl %esi, (%rdi) /* write the target register index */ movl IOAPIC_WINDOW(%rdi), %eax /* read the IOAPIC register data */ ret /* %eax = register value */ /* * void ioapic_write(volatile void *ioapic, int select, u_int value); */ ENTRY(ioapic_write) movl %esi, (%rdi) /* write the target register index */ movl %edx, IOAPIC_WINDOW(%rdi) /* write the IOAPIC register data */ ret /* %eax = void */ #endif