1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
|
/* $OpenBSD: qla_sbus.c,v 1.3 2022/03/13 13:34:54 mpi Exp $ */
/*
* Copyright (c) 2014 Mark Kettenis
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
#include <sys/param.h>
#include <sys/device.h>
#include <sys/malloc.h>
#include <sys/systm.h>
#include <machine/bus.h>
#include <machine/intr.h>
#include <machine/autoconf.h>
#include <dev/sbus/sbusvar.h>
#include <dev/pci/pcireg.h>
#include <dev/pci/pcivar.h>
#include <dev/pci/pcidevs.h>
#include <scsi/scsi_all.h>
#include <scsi/scsiconf.h>
#include <dev/ic/qlareg.h>
#include <dev/ic/qlavar.h>
#define QLA_SBUS_REG_OFFSET 0x100
#define QLA_SBUS_REG_SIZE 0x300
int qla_sbus_match(struct device *, void *, void *);
void qla_sbus_attach(struct device *, struct device *, void *);
const struct cfattach qla_sbus_ca = {
sizeof(struct qla_softc),
qla_sbus_match,
qla_sbus_attach
};
int
qla_sbus_match(struct device *parent, void *cf, void *aux)
{
struct sbus_attach_args *sa = aux;
if (strcmp("SUNW,qlc", sa->sa_name) == 0 ||
strcmp("QLGC,qla", sa->sa_name) == 0)
return 2;
return 0;
}
void
qla_sbus_attach(struct device *parent, struct device *self, void *aux)
{
struct qla_softc *sc = (void *)self;
struct sbus_attach_args *sa = aux;
struct sparc_bus_space_tag *iot;
bus_space_handle_t ioh;
pcireg_t id, class;
char devinfo[256];
if (sa->sa_nintr < 1) {
printf(": no interrupt\n");
return;
}
if (sa->sa_nreg < 1) {
printf(": no registers\n");
return;
}
/*
* These cards have a standard PCI chips that sit behind an
* FPGA with some bridging logic. Since the PCI bus is
* little-endian, we need a little-endian bus tag. So we
* build one here.
*/
iot = malloc(sizeof(*iot), M_DEVBUF, M_NOWAIT);
if (iot == NULL) {
printf(": can't allocate bus tag\n");
return;
}
*iot = *sa->sa_bustag;
iot->asi = ASI_PRIMARY_LITTLE;
if (sbus_bus_map(iot, sa->sa_slot, sa->sa_offset,
sa->sa_size, 0, 0, &ioh) != 0) {
printf(": can't map registers\n");
goto free;
}
/*
* PCI config space is mapped at the start of the SBus
* register space. We use it to identify the ISP chip.
*/
id = bus_space_read_4(iot, ioh, PCI_ID_REG);
class = bus_space_read_4(iot, ioh, PCI_CLASS_REG);
pci_devinfo(id, class, 0, devinfo, sizeof(devinfo));
printf(": %s\n", devinfo);
switch (PCI_PRODUCT(id)) {
case PCI_PRODUCT_QLOGIC_ISP2200:
sc->sc_isp_gen = QLA_GEN_ISP2200;
sc->sc_isp_type = QLA_ISP2200;
break;
case PCI_PRODUCT_QLOGIC_ISP2300:
sc->sc_isp_gen = QLA_GEN_ISP23XX;
sc->sc_isp_type = QLA_ISP2300;
break;
case PCI_PRODUCT_QLOGIC_ISP2312:
sc->sc_isp_gen = QLA_GEN_ISP23XX;
sc->sc_isp_type = QLA_ISP2312;
break;
default:
printf("%s: unsupported ISP chip\n", DEVNAME(sc));
goto unmap;
}
if (bus_intr_establish(sa->sa_bustag, sa->sa_pri, IPL_BIO, 0,
qla_intr, sc, sc->sc_dev.dv_xname) == NULL) {
printf("%s: can't establish interrupt\n", DEVNAME(sc));
goto unmap;
}
if (bus_space_subregion(iot, ioh, QLA_SBUS_REG_OFFSET,
QLA_SBUS_REG_SIZE, &sc->sc_ioh) != 0) {
printf("%s: can't submap registers\n", DEVNAME(sc));
goto unmap;
}
sc->sc_iot = iot;
sc->sc_ios = QLA_SBUS_REG_SIZE;
sc->sc_dmat = sa->sa_dmatag;
qla_attach(sc);
return;
unmap:
bus_space_unmap(iot, ioh, sa->sa_size);
free:
free(iot, M_DEVBUF, 0);
}
|