1 /* $NetBSD: oosiop_jazzio.c,v 1.5 2006/04/15 08:49:47 tsutsui Exp $ */
4 * Copyright (c) 2001 Shuichiro URATA. All rights reserved.
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * 2. Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
14 * 3. The name of the author may not be used to endorse or promote products
15 * derived from this software without specific prior written permission.
17 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 #include <sys/cdefs.h>
30 __KERNEL_RCSID(0, "$NetBSD: oosiop_jazzio.c,v 1.5 2006/04/15 08:49:47 tsutsui Exp $");
32 #include <sys/param.h>
33 #include <sys/systm.h>
34 #include <sys/device.h>
36 #include <sys/malloc.h>
38 #include <dev/scsipi/scsi_all.h>
39 #include <dev/scsipi/scsipi_all.h>
40 #include <dev/scsipi/scsiconf.h>
41 #include <dev/scsipi/scsi_message.h>
43 #include <machine/cpu.h>
44 #include <machine/autoconf.h>
45 #include <machine/bus.h>
47 #include <dev/ic/oosiopreg.h>
48 #include <dev/ic/oosiopvar.h>
49 #include <arc/jazz/jazziovar.h>
53 int oosiop_jazzio_match(device_t
, cfdata_t
, void *);
54 void oosiop_jazzio_attach(device_t
, device_t
, void *);
56 CFATTACH_DECL_NEW(oosiop_jazzio
, sizeof(struct oosiop_softc
),
57 oosiop_jazzio_match
, oosiop_jazzio_attach
, NULL
, NULL
);
60 * Match driver based on name
63 oosiop_jazzio_match(device_t parent
, cfdata_t cf
, void *aux
)
65 struct jazzio_attach_args
*ja
= aux
;
67 if (strcmp(ja
->ja_name
, "NCRC700") != 0)
74 oosiop_jazzio_attach(device_t parent
, device_t self
, void *aux
)
76 struct oosiop_softc
*sc
= device_private(self
);
77 struct jazzio_attach_args
*ja
= aux
;
81 sc
->sc_bst
= ja
->ja_bust
;
82 sc
->sc_dmat
= ja
->ja_dmat
;
84 if (bus_space_map(sc
->sc_bst
, ja
->ja_addr
,
85 OOSIOP_NREGS
, 0, &sc
->sc_bsh
) != 0) {
86 aprint_error(": failed to map regsters\n");
90 sc
->sc_chip
= OOSIOP_700_66
;
91 sc
->sc_freq
= 50000000;
93 /* Preserve host id */
94 scid
= oosiop_read_1(sc
, OOSIOP_SCID
);
95 for (i
= 0; i
< OOSIOP_NTGT
; i
++)
103 jazzio_intr_establish(ja
->ja_intr
, (intr_handler_t
)oosiop_intr
, sc
);