1 /* $NetBSD: unixbp.c,v 1.6 2009/01/04 00:36:00 bjh21 Exp $ */
4 * Copyright (c) 2000 Ben Harris
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
15 * 3. The name of the author may not be used to endorse or promote products
16 * derived from this software without specific prior written permission.
18 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
19 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
20 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
21 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
22 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
23 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
27 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30 * unixbp.c - driver for the Unix Backplane, found in the R140 etc
33 #include <sys/param.h>
35 __KERNEL_RCSID(0, "$NetBSD: unixbp.c,v 1.6 2009/01/04 00:36:00 bjh21 Exp $");
37 #include <sys/device.h>
38 #include <sys/systm.h>
39 #include <machine/bus.h>
40 #include <arch/acorn26/iobus/iocvar.h>
41 #include <arch/acorn26/podulebus/unixbpreg.h>
42 #include <arch/acorn26/podulebus/unixbpvar.h>
46 bus_space_tag_t sc_iot
;
47 bus_space_handle_t sc_ioh
;
50 static int unixbp_match(device_t
, cfdata_t
, void *);
51 static void unixbp_attach(device_t
, device_t
, void *);
53 CFATTACH_DECL_NEW(unixbp
, sizeof(struct unixbp_softc
),
54 unixbp_match
, unixbp_attach
, NULL
, NULL
);
59 unixbp_match(device_t parent
, cfdata_t cf
, void *aux
)
61 struct ioc_attach_args
*ioc
= aux
;
62 bus_space_tag_t bst
= ioc
->ioc_fast_t
;
63 bus_space_handle_t bsh
= ioc
->ioc_fast_h
;
65 /* Ask to disable all interrupts and check the request lines go low. */
66 bus_space_write_1(bst
, bsh
, UNIXBP_REG_MASK
, 0);
67 if ((bus_space_read_1(bst
, bsh
, UNIXBP_REG_REQUEST
) & 0xf) != 0)
69 /* Re-enable interrupts. */
70 bus_space_write_1(bst
, bsh
, UNIXBP_REG_MASK
, 0xf);
75 unixbp_attach(device_t parent
, device_t self
, void *aux
)
77 struct ioc_attach_args
*ioc
= aux
;
78 struct unixbp_softc
*sc
= device_private(self
);
81 if (the_unixbp
== NULL
)
83 sc
->sc_iot
= ioc
->ioc_fast_t
;
84 sc
->sc_ioh
= ioc
->ioc_fast_h
;
90 unixbp_irq_status_full(void)
92 struct unixbp_softc
*sc
= device_private(the_unixbp
);
96 return bus_space_read_1(sc
->sc_iot
, sc
->sc_ioh
, UNIXBP_REG_REQUEST
)
101 unixbp_irq_setmask(int mask
)
103 struct unixbp_softc
*sc
= device_private(the_unixbp
);
107 bus_space_write_1(sc
->sc_iot
, sc
->sc_ioh
, UNIXBP_REG_MASK
, mask
& 0xf);