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