xref: /openbsd/sys/dev/pci/ciss_pci.c (revision 17df1aa7)
1 /*	$OpenBSD: ciss_pci.c,v 1.15 2010/03/02 10:52:27 sthen Exp $	*/
2 
3 /*
4  * Copyright (c) 2005 Michael Shalayeff
5  * All rights reserved.
6  *
7  * Permission to use, copy, modify, and distribute this software for any
8  * purpose with or without fee is hereby granted, provided that the above
9  * copyright notice and this permission notice appear in all copies.
10  *
11  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
12  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
13  * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
14  * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
15  * WHATSOEVER RESULTING FROM LOSS OF MIND, USE, DATA OR PROFITS, WHETHER IN
16  * AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
17  * OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
18  */
19 
20 #include <sys/param.h>
21 #include <sys/systm.h>
22 #include <sys/kernel.h>
23 #include <sys/malloc.h>
24 #include <sys/device.h>
25 
26 #include <dev/pci/pcidevs.h>
27 #include <dev/pci/pcivar.h>
28 
29 #include <machine/bus.h>
30 
31 #include <scsi/scsi_all.h>
32 #include <scsi/scsi_disk.h>
33 #include <scsi/scsiconf.h>
34 
35 #include <dev/ic/cissreg.h>
36 #include <dev/ic/cissvar.h>
37 
38 #define	CISS_BAR	0x10
39 
40 int	ciss_pci_match(struct device *, void *, void *);
41 void	ciss_pci_attach(struct device *, struct device *, void *);
42 
43 struct cfattach ciss_pci_ca = {
44 	sizeof(struct ciss_softc), ciss_pci_match, ciss_pci_attach
45 };
46 
47 const struct pci_matchid ciss_pci_devices[] = {
48 	{ PCI_VENDOR_COMPAQ,	PCI_PRODUCT_COMPAQ_CSA532 },
49 	{ PCI_VENDOR_COMPAQ,	PCI_PRODUCT_COMPAQ_CSA5300 },
50 	{ PCI_VENDOR_COMPAQ,	PCI_PRODUCT_COMPAQ_CSA5300_2 },
51 	{ PCI_VENDOR_COMPAQ,	PCI_PRODUCT_COMPAQ_CSA5312 },
52 	{ PCI_VENDOR_COMPAQ,	PCI_PRODUCT_COMPAQ_CSA5i },
53 	{ PCI_VENDOR_COMPAQ,	PCI_PRODUCT_COMPAQ_CSA5i_2 },
54 	{ PCI_VENDOR_COMPAQ,	PCI_PRODUCT_COMPAQ_CSA6i },
55 	{ PCI_VENDOR_COMPAQ,	PCI_PRODUCT_COMPAQ_CSA641 },
56 	{ PCI_VENDOR_COMPAQ,	PCI_PRODUCT_COMPAQ_CSA642 },
57 	{ PCI_VENDOR_COMPAQ,	PCI_PRODUCT_COMPAQ_CSA6400 },
58 	{ PCI_VENDOR_COMPAQ,	PCI_PRODUCT_COMPAQ_CSA6400EM },
59 	{ PCI_VENDOR_COMPAQ,	PCI_PRODUCT_COMPAQ_CSA6422 },
60 	{ PCI_VENDOR_COMPAQ,	PCI_PRODUCT_COMPAQ_CSA64XX },
61 	{ PCI_VENDOR_HP,	PCI_PRODUCT_HP_HPSAE200 },
62 	{ PCI_VENDOR_HP,	PCI_PRODUCT_HP_HPSAE200I_1 },
63 	{ PCI_VENDOR_HP,	PCI_PRODUCT_HP_HPSAE200I_2 },
64 	{ PCI_VENDOR_HP,	PCI_PRODUCT_HP_HPSAE200I_3 },
65 	{ PCI_VENDOR_HP,	PCI_PRODUCT_HP_HPSAE200I_4 },
66 	{ PCI_VENDOR_HP,	PCI_PRODUCT_HP_HPSAE500_1 },
67 	{ PCI_VENDOR_HP,	PCI_PRODUCT_HP_HPSAE500_2 },
68 	{ PCI_VENDOR_HP,	PCI_PRODUCT_HP_HPSAP212 },
69 	{ PCI_VENDOR_HP,	PCI_PRODUCT_HP_HPSAP410 },
70 	{ PCI_VENDOR_HP,	PCI_PRODUCT_HP_HPSAP410I },
71 	{ PCI_VENDOR_HP,	PCI_PRODUCT_HP_HPSAP411 },
72 	{ PCI_VENDOR_HP,	PCI_PRODUCT_HP_HPSAP600 },
73 	{ PCI_VENDOR_HP,	PCI_PRODUCT_HP_HPSAP700M },
74 	{ PCI_VENDOR_HP,	PCI_PRODUCT_HP_HPSAP711M },
75 	{ PCI_VENDOR_HP,	PCI_PRODUCT_HP_HPSAP712M },
76 	{ PCI_VENDOR_HP,	PCI_PRODUCT_HP_HPSAP800 },
77 	{ PCI_VENDOR_HP,	PCI_PRODUCT_HP_HPSAP812 },
78 	{ PCI_VENDOR_HP,	PCI_PRODUCT_HP_HPSAV100 },
79 	{ PCI_VENDOR_HP,	PCI_PRODUCT_HP_HPSA_1 },
80 	{ PCI_VENDOR_HP,	PCI_PRODUCT_HP_HPSA_2 },
81 	{ PCI_VENDOR_HP,	PCI_PRODUCT_HP_HPSA_3 },
82 	{ PCI_VENDOR_HP,	PCI_PRODUCT_HP_HPSA_4 },
83 	{ PCI_VENDOR_HP,	PCI_PRODUCT_HP_HPSA_5 },
84 	{ PCI_VENDOR_HP,	PCI_PRODUCT_HP_HPSA_6 },
85 	{ PCI_VENDOR_HP,	PCI_PRODUCT_HP_HPSA_7 },
86 	{ PCI_VENDOR_HP,	PCI_PRODUCT_HP_HPSA_8 },
87 	{ PCI_VENDOR_HP,	PCI_PRODUCT_HP_HPSA_9 },
88 	{ PCI_VENDOR_HP,	PCI_PRODUCT_HP_HPSA_10 },
89 	{ PCI_VENDOR_HP,	PCI_PRODUCT_HP_HPSA_11 }
90 };
91 
92 int
93 ciss_pci_match(struct device *parent, void *match, void *aux)
94 {
95 	struct pci_attach_args *pa = aux;
96 
97 	return pci_matchbyid(pa, ciss_pci_devices, nitems(ciss_pci_devices));
98 }
99 
100 void
101 ciss_pci_attach(struct device *parent, struct device *self, void *aux)
102 {
103 	struct ciss_softc *sc = (struct ciss_softc *)self;
104 	struct pci_attach_args *pa = aux;
105 	bus_size_t size, cfgsz;
106 	pci_intr_handle_t ih;
107 	const char *intrstr;
108 	int cfg_bar, memtype;
109 	pcireg_t reg;
110 
111 	memtype = pci_mapreg_type(pa->pa_pc, pa->pa_tag, CISS_BAR);
112 	if (pci_mapreg_map(pa, CISS_BAR, memtype, 0,
113 	    &sc->iot, &sc->ioh, NULL, &size, 0)) {
114 		printf(": can't map controller mem space\n");
115 		return;
116 	}
117 	sc->dmat = pa->pa_dmat;
118 
119 	sc->iem = CISS_READYENA;
120 	reg = pci_conf_read(pa->pa_pc, pa->pa_tag, PCI_SUBSYS_ID_REG);
121 	if (PCI_VENDOR(reg) == PCI_VENDOR_COMPAQ &&
122 	    (PCI_PRODUCT(reg) == PCI_PRODUCT_COMPAQ_CSA5i ||
123 	     PCI_PRODUCT(reg) == PCI_PRODUCT_COMPAQ_CSA532 ||
124 	     PCI_PRODUCT(reg) == PCI_PRODUCT_COMPAQ_CSA5312))
125 		sc->iem = CISS_READYENAB;
126 
127 	cfg_bar = bus_space_read_2(sc->iot, sc->ioh, CISS_CFG_BAR);
128 	sc->cfgoff = bus_space_read_4(sc->iot, sc->ioh, CISS_CFG_OFF);
129 	if (cfg_bar != CISS_BAR) {
130 		if (pci_mapreg_map(pa, cfg_bar, PCI_MAPREG_TYPE_MEM, 0,
131 		    NULL, &sc->cfg_ioh, NULL, &cfgsz, 0)) {
132 			printf(": can't map controller config space\n");
133 			bus_space_unmap(sc->iot, sc->ioh, size);
134 			return;
135 		}
136 	} else {
137 		sc->cfg_ioh = sc->ioh;
138 		cfgsz = size;
139 	}
140 
141 	if (sc->cfgoff + sizeof(struct ciss_config) > cfgsz) {
142 		printf(": unfit config space\n");
143 		bus_space_unmap(sc->iot, sc->ioh, size);
144 		if (cfg_bar != CISS_BAR)
145 			bus_space_unmap(sc->iot, sc->cfg_ioh, cfgsz);
146 		return;
147 	}
148 
149 	/* disable interrupts until ready */
150 	bus_space_write_4(sc->iot, sc->ioh, CISS_IMR,
151 	    bus_space_read_4(sc->iot, sc->ioh, CISS_IMR) | sc->iem);
152 
153 	if (pci_intr_map(pa, &ih)) {
154 		printf(": can't map interrupt\n");
155 		bus_space_unmap(sc->iot, sc->ioh, size);
156 		if (cfg_bar != CISS_BAR)
157 			bus_space_unmap(sc->iot, sc->cfg_ioh, cfgsz);
158 		return;
159 	}
160 	intrstr = pci_intr_string(pa->pa_pc, ih);
161 	sc->sc_ih = pci_intr_establish(pa->pa_pc, ih, IPL_BIO, ciss_intr, sc,
162 	    sc->sc_dev.dv_xname);
163 	if (!sc->sc_ih) {
164 		printf(": can't establish interrupt");
165 		if (intrstr)
166 			printf(" at %s", intrstr);
167 		printf("\n");
168 		bus_space_unmap(sc->iot, sc->ioh, size);
169 		if (cfg_bar != CISS_BAR)
170 			bus_space_unmap(sc->iot, sc->cfg_ioh, cfgsz);
171 	}
172 
173 	printf(": %s\n%s", intrstr, sc->sc_dev.dv_xname);
174 
175 	if (ciss_attach(sc)) {
176 		pci_intr_disestablish(pa->pa_pc, sc->sc_ih);
177 		sc->sc_ih = NULL;
178 		bus_space_unmap(sc->iot, sc->ioh, size);
179 		if (cfg_bar != CISS_BAR)
180 			bus_space_unmap(sc->iot, sc->cfg_ioh, cfgsz);
181 		return;
182 	}
183 
184 	/* enable interrupts now */
185 	bus_space_write_4(sc->iot, sc->ioh, CISS_IMR,
186 	    bus_space_read_4(sc->iot, sc->ioh, CISS_IMR) & ~sc->iem);
187 }
188