1*1fd2c684Smatt /* $NetBSD: isa_machdep_common.c,v 1.7 2011/06/18 06:41:43 matt Exp $ */
2d974db0aSgarbled
3d974db0aSgarbled /*-
4d974db0aSgarbled * Copyright (c) 2007 The NetBSD Foundation, Inc.
5d974db0aSgarbled * All rights reserved.
6d974db0aSgarbled *
7d974db0aSgarbled * This code is derived from software contributed to The NetBSD Foundation
8d974db0aSgarbled * by Tim Rightnour
9d974db0aSgarbled *
10d974db0aSgarbled * Redistribution and use in source and binary forms, with or without
11d974db0aSgarbled * modification, are permitted provided that the following conditions
12d974db0aSgarbled * are met:
13d974db0aSgarbled * 1. Redistributions of source code must retain the above copyright
14d974db0aSgarbled * notice, this list of conditions and the following disclaimer.
15d974db0aSgarbled * 2. Redistributions in binary form must reproduce the above copyright
16d974db0aSgarbled * notice, this list of conditions and the following disclaimer in the
17d974db0aSgarbled * documentation and/or other materials provided with the distribution.
18d974db0aSgarbled *
19d974db0aSgarbled * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
20d974db0aSgarbled * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
21d974db0aSgarbled * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
22d974db0aSgarbled * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
23d974db0aSgarbled * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
24d974db0aSgarbled * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25d974db0aSgarbled * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26d974db0aSgarbled * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
27d974db0aSgarbled * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28d974db0aSgarbled * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29d974db0aSgarbled * POSSIBILITY OF SUCH DAMAGE.
30d974db0aSgarbled */
31d974db0aSgarbled
32d974db0aSgarbled #include <sys/cdefs.h>
33*1fd2c684Smatt __KERNEL_RCSID(0, "$NetBSD: isa_machdep_common.c,v 1.7 2011/06/18 06:41:43 matt Exp $");
34d974db0aSgarbled
35d974db0aSgarbled #include <sys/param.h>
36d974db0aSgarbled #include <sys/systm.h>
37d974db0aSgarbled #include <sys/syslog.h>
38d974db0aSgarbled #include <sys/device.h>
39*1fd2c684Smatt #include <sys/intr.h>
40d974db0aSgarbled
41d974db0aSgarbled #include <machine/pio.h>
42d974db0aSgarbled
43d974db0aSgarbled #include <dev/isa/isareg.h>
44d974db0aSgarbled #include <dev/isa/isavar.h>
45d974db0aSgarbled
46d974db0aSgarbled #define IO_ELCR1 0x4d0
47d974db0aSgarbled #define IO_ELCR2 0x4d1
48d974db0aSgarbled
49d974db0aSgarbled const struct evcnt *
genppc_isa_intr_evcnt(isa_chipset_tag_t ic,int irq)50d974db0aSgarbled genppc_isa_intr_evcnt(isa_chipset_tag_t ic, int irq)
51d974db0aSgarbled {
52d974db0aSgarbled
53d974db0aSgarbled /* XXX for now, no evcnt parent reported */
54d974db0aSgarbled return NULL;
55d974db0aSgarbled }
56d974db0aSgarbled
57d974db0aSgarbled /*
58d974db0aSgarbled * Set up an interrupt handler to start being called.
59d974db0aSgarbled */
60d974db0aSgarbled void *
genppc_isa_intr_establish(isa_chipset_tag_t ic,int irq,int type,int level,int (* ih_fun)(void *),void * ih_arg)61d974db0aSgarbled genppc_isa_intr_establish(isa_chipset_tag_t ic, int irq, int type, int level,
62d974db0aSgarbled int (*ih_fun)(void *), void *ih_arg)
63d974db0aSgarbled {
64d974db0aSgarbled
65d974db0aSgarbled return (void *)intr_establish(irq, type, level, ih_fun, ih_arg);
66d974db0aSgarbled }
67d974db0aSgarbled
68d974db0aSgarbled /*
69d974db0aSgarbled * Deregister an interrupt handler.
70d974db0aSgarbled */
71d974db0aSgarbled void
genppc_isa_intr_disestablish(isa_chipset_tag_t ic,void * arg)72d974db0aSgarbled genppc_isa_intr_disestablish(isa_chipset_tag_t ic, void *arg)
73d974db0aSgarbled {
74d974db0aSgarbled
75d974db0aSgarbled intr_disestablish(arg);
76d974db0aSgarbled }
77d974db0aSgarbled
78d974db0aSgarbled void
genppc_isa_attach_hook(device_t parent,device_t self,struct isabus_attach_args * iba)79a5b74325Smatt genppc_isa_attach_hook(device_t parent, device_t self,
80d974db0aSgarbled struct isabus_attach_args *iba)
81d974db0aSgarbled {
82d974db0aSgarbled
83d974db0aSgarbled /* Nothing to do. */
84d974db0aSgarbled }
8565d8a872Sdyoung
8665d8a872Sdyoung void
genppc_isa_detach_hook(isa_chipset_tag_t ic,device_t self)87fc51180bSdyoung genppc_isa_detach_hook(isa_chipset_tag_t ic, device_t self)
8865d8a872Sdyoung {
8965d8a872Sdyoung
9065d8a872Sdyoung /* Nothing to do. */
9165d8a872Sdyoung }
92