Home | History | Annotate | Line # | Download | only in pci
      1  1.7      rin /*	$NetBSD: pciide_machdep.c,v 1.7 2021/03/17 14:58:16 rin Exp $	*/
      2  1.2  garbled 
      3  1.2  garbled /*
      4  1.2  garbled  * Copyright (c) 1998 Christopher G. Demetriou.  All rights reserved.
      5  1.2  garbled  *
      6  1.2  garbled  * Redistribution and use in source and binary forms, with or without
      7  1.2  garbled  * modification, are permitted provided that the following conditions
      8  1.2  garbled  * are met:
      9  1.2  garbled  * 1. Redistributions of source code must retain the above copyright
     10  1.2  garbled  *    notice, this list of conditions and the following disclaimer.
     11  1.2  garbled  * 2. Redistributions in binary form must reproduce the above copyright
     12  1.2  garbled  *    notice, this list of conditions and the following disclaimer in the
     13  1.2  garbled  *    documentation and/or other materials provided with the distribution.
     14  1.2  garbled  * 3. All advertising materials mentioning features or use of this software
     15  1.2  garbled  *    must display the following acknowledgement:
     16  1.2  garbled  *      This product includes software developed by Christopher G. Demetriou
     17  1.2  garbled  *	for the NetBSD Project.
     18  1.2  garbled  * 4. The name of the author may not be used to endorse or promote products
     19  1.2  garbled  *    derived from this software without specific prior written permission
     20  1.2  garbled  *
     21  1.2  garbled  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     22  1.2  garbled  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     23  1.2  garbled  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     24  1.2  garbled  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     25  1.2  garbled  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
     26  1.2  garbled  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     27  1.2  garbled  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     28  1.2  garbled  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     29  1.2  garbled  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
     30  1.2  garbled  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     31  1.2  garbled  */
     32  1.2  garbled 
     33  1.2  garbled /*
     34  1.2  garbled  * PCI IDE controller driver (arm32 machine-dependent portion).
     35  1.2  garbled  *
     36  1.2  garbled  * Author: Christopher G. Demetriou, March 2, 1998 (derived from NetBSD
     37  1.2  garbled  * sys/dev/pci/ppb.c, revision 1.16).
     38  1.2  garbled  *
     39  1.2  garbled  * See "PCI IDE Controller Specification, Revision 1.0 3/4/94" from the
     40  1.2  garbled  * PCI SIG.
     41  1.2  garbled  */
     42  1.2  garbled 
     43  1.2  garbled #include <sys/cdefs.h>
     44  1.7      rin __KERNEL_RCSID(0, "$NetBSD: pciide_machdep.c,v 1.7 2021/03/17 14:58:16 rin Exp $");
     45  1.2  garbled 
     46  1.2  garbled #include <sys/param.h>
     47  1.2  garbled #include <sys/systm.h>
     48  1.2  garbled #include <sys/device.h>
     49  1.2  garbled 
     50  1.2  garbled #include <dev/pci/pcireg.h>
     51  1.2  garbled #include <dev/pci/pcivar.h>
     52  1.2  garbled #include <dev/pci/pciidereg.h>
     53  1.2  garbled #include <dev/pci/pciidevar.h>
     54  1.2  garbled 
     55  1.2  garbled #include <dev/isa/isavar.h>
     56  1.2  garbled #include <machine/intr.h>
     57  1.2  garbled #include "isa.h"
     58  1.2  garbled 
     59  1.2  garbled void *
     60  1.5     matt pciide_machdep_compat_intr_establish(device_t dev,
     61  1.4   dyoung     const struct pci_attach_args *pa, int chan, int (*func)(void *), void *arg)
     62  1.2  garbled {
     63  1.2  garbled #if NISA > 0
     64  1.2  garbled 	int irq;
     65  1.2  garbled 	void *cookie;
     66  1.7      rin 	char intr_xname[INTRDEVNAMEBUF];
     67  1.2  garbled 
     68  1.2  garbled 	irq = PCIIDE_COMPAT_IRQ(chan);
     69  1.7      rin 	snprintf(intr_xname, sizeof(intr_xname), "%s isa", device_xname(dev));
     70  1.6      rin 	cookie = isa_intr_establish_xname(NULL, irq, IST_LEVEL, IPL_BIO, func,
     71  1.7      rin 	    arg, intr_xname);
     72  1.2  garbled 	if (cookie == NULL)
     73  1.2  garbled 		return (NULL);
     74  1.5     matt 	aprint_normal_dev(dev, "%s channel interrupting at irq %d\n",
     75  1.2  garbled 	    PCIIDE_CHANNEL_NAME(chan), irq);
     76  1.2  garbled 	return (cookie);
     77  1.2  garbled #else
     78  1.2  garbled 	panic("pciide_machdep_compat_intr_establish() called");
     79  1.2  garbled #endif
     80  1.2  garbled }
     81