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