if_fxp_pci.c revision 1.12.2.2 1 1.12.2.2 nathanw /* $NetBSD: if_fxp_pci.c,v 1.12.2.2 2001/08/24 00:10:04 nathanw Exp $ */
2 1.1 thorpej
3 1.1 thorpej /*-
4 1.12.2.1 nathanw * Copyright (c) 1997, 1998, 1999, 2000, 2001 The NetBSD Foundation, Inc.
5 1.1 thorpej * All rights reserved.
6 1.1 thorpej *
7 1.1 thorpej * This code is derived from software contributed to The NetBSD Foundation
8 1.1 thorpej * by Jason R. Thorpe of the Numerical Aerospace Simulation Facility,
9 1.1 thorpej * NASA Ames Research Center.
10 1.1 thorpej *
11 1.1 thorpej * Redistribution and use in source and binary forms, with or without
12 1.1 thorpej * modification, are permitted provided that the following conditions
13 1.1 thorpej * are met:
14 1.1 thorpej * 1. Redistributions of source code must retain the above copyright
15 1.1 thorpej * notice, this list of conditions and the following disclaimer.
16 1.1 thorpej * 2. Redistributions in binary form must reproduce the above copyright
17 1.1 thorpej * notice, this list of conditions and the following disclaimer in the
18 1.1 thorpej * documentation and/or other materials provided with the distribution.
19 1.1 thorpej * 3. All advertising materials mentioning features or use of this software
20 1.1 thorpej * must display the following acknowledgement:
21 1.1 thorpej * This product includes software developed by the NetBSD
22 1.1 thorpej * Foundation, Inc. and its contributors.
23 1.1 thorpej * 4. Neither the name of The NetBSD Foundation nor the names of its
24 1.1 thorpej * contributors may be used to endorse or promote products derived
25 1.1 thorpej * from this software without specific prior written permission.
26 1.1 thorpej *
27 1.1 thorpej * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
28 1.1 thorpej * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
29 1.1 thorpej * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
30 1.1 thorpej * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
31 1.1 thorpej * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
32 1.1 thorpej * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
33 1.1 thorpej * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
34 1.1 thorpej * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
35 1.1 thorpej * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
36 1.1 thorpej * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
37 1.1 thorpej * POSSIBILITY OF SUCH DAMAGE.
38 1.1 thorpej */
39 1.1 thorpej
40 1.1 thorpej /*
41 1.1 thorpej * PCI bus front-end for the Intel i82557 fast Ethernet controller
42 1.1 thorpej * driver. Works with Intel Etherexpress Pro 10+, 100B, 100+ cards.
43 1.1 thorpej */
44 1.1 thorpej
45 1.1 thorpej #include "rnd.h"
46 1.1 thorpej
47 1.1 thorpej #include <sys/param.h>
48 1.1 thorpej #include <sys/systm.h>
49 1.1 thorpej #include <sys/mbuf.h>
50 1.1 thorpej #include <sys/malloc.h>
51 1.1 thorpej #include <sys/kernel.h>
52 1.1 thorpej #include <sys/socket.h>
53 1.1 thorpej #include <sys/ioctl.h>
54 1.1 thorpej #include <sys/errno.h>
55 1.1 thorpej #include <sys/device.h>
56 1.1 thorpej
57 1.1 thorpej #if NRND > 0
58 1.1 thorpej #include <sys/rnd.h>
59 1.1 thorpej #endif
60 1.3 thorpej
61 1.3 thorpej #include <machine/endian.h>
62 1.1 thorpej
63 1.1 thorpej #include <net/if.h>
64 1.1 thorpej #include <net/if_dl.h>
65 1.1 thorpej #include <net/if_media.h>
66 1.1 thorpej #include <net/if_ether.h>
67 1.1 thorpej
68 1.1 thorpej #include <machine/bus.h>
69 1.1 thorpej #include <machine/intr.h>
70 1.1 thorpej
71 1.1 thorpej #include <dev/mii/miivar.h>
72 1.1 thorpej
73 1.1 thorpej #include <dev/ic/i82557reg.h>
74 1.1 thorpej #include <dev/ic/i82557var.h>
75 1.1 thorpej
76 1.1 thorpej #include <dev/pci/pcivar.h>
77 1.1 thorpej #include <dev/pci/pcireg.h>
78 1.1 thorpej #include <dev/pci/pcidevs.h>
79 1.1 thorpej
80 1.7 jhawk struct fxp_pci_softc {
81 1.7 jhawk struct fxp_softc psc_fxp;
82 1.7 jhawk
83 1.7 jhawk pci_chipset_tag_t psc_pc; /* pci chipset tag */
84 1.7 jhawk pcireg_t psc_regs[0x20>>2]; /* saved PCI config regs (sparse) */
85 1.7 jhawk pcitag_t psc_tag; /* pci register tag */
86 1.7 jhawk void *psc_powerhook; /* power hook */
87 1.12.2.2 nathanw
88 1.12.2.2 nathanw int psc_pwrmgmt_csr_reg; /* ACPI power management register */
89 1.12.2.2 nathanw pcireg_t psc_pwrmgmt_csr; /* ...and the contents at D0 */
90 1.7 jhawk };
91 1.6 jhawk
92 1.1 thorpej int fxp_pci_match __P((struct device *, struct cfdata *, void *));
93 1.1 thorpej void fxp_pci_attach __P((struct device *, struct device *, void *));
94 1.1 thorpej
95 1.12.2.2 nathanw int fxp_pci_enable __P((struct fxp_softc *));
96 1.12.2.2 nathanw void fxp_pci_disable __P((struct fxp_softc *));
97 1.12.2.2 nathanw
98 1.6 jhawk static void fxp_pci_confreg_restore __P((struct fxp_pci_softc *psc));
99 1.6 jhawk static void fxp_pci_power __P((int why, void *arg));
100 1.6 jhawk
101 1.1 thorpej struct cfattach fxp_pci_ca = {
102 1.6 jhawk sizeof(struct fxp_pci_softc), fxp_pci_match, fxp_pci_attach
103 1.1 thorpej };
104 1.1 thorpej
105 1.5 thorpej const struct fxp_pci_product {
106 1.5 thorpej u_int32_t fpp_prodid; /* PCI product ID */
107 1.5 thorpej const char *fpp_name; /* device name */
108 1.5 thorpej } fxp_pci_products[] = {
109 1.5 thorpej { PCI_PRODUCT_INTEL_82557,
110 1.5 thorpej "Intel i82557 Ethernet" },
111 1.9 mycroft { PCI_PRODUCT_INTEL_82559ER,
112 1.9 mycroft "Intel i82559ER Ethernet" },
113 1.5 thorpej { PCI_PRODUCT_INTEL_IN_BUSINESS,
114 1.5 thorpej "Intel InBusiness Ethernet" },
115 1.11 ad { PCI_PRODUCT_INTEL_82801BA_LAN,
116 1.11 ad "Intel i82562 Ethernet" },
117 1.5 thorpej { 0,
118 1.5 thorpej NULL },
119 1.5 thorpej };
120 1.5 thorpej
121 1.12.2.1 nathanw static const struct fxp_pci_product *
122 1.12.2.1 nathanw fxp_pci_lookup(const struct pci_attach_args *pa)
123 1.5 thorpej {
124 1.5 thorpej const struct fxp_pci_product *fpp;
125 1.5 thorpej
126 1.5 thorpej if (PCI_VENDOR(pa->pa_id) != PCI_VENDOR_INTEL)
127 1.5 thorpej return (NULL);
128 1.5 thorpej
129 1.5 thorpej for (fpp = fxp_pci_products; fpp->fpp_name != NULL; fpp++)
130 1.5 thorpej if (PCI_PRODUCT(pa->pa_id) == fpp->fpp_prodid)
131 1.5 thorpej return (fpp);
132 1.5 thorpej
133 1.5 thorpej return (NULL);
134 1.5 thorpej }
135 1.5 thorpej
136 1.1 thorpej int
137 1.1 thorpej fxp_pci_match(parent, match, aux)
138 1.1 thorpej struct device *parent;
139 1.1 thorpej struct cfdata *match;
140 1.1 thorpej void *aux;
141 1.1 thorpej {
142 1.1 thorpej struct pci_attach_args *pa = aux;
143 1.1 thorpej
144 1.5 thorpej if (fxp_pci_lookup(pa) != NULL)
145 1.1 thorpej return (1);
146 1.1 thorpej
147 1.1 thorpej return (0);
148 1.1 thorpej }
149 1.1 thorpej
150 1.6 jhawk /*
151 1.6 jhawk * Restore PCI configuration registers that may have been clobbered.
152 1.6 jhawk * This is necessary due to bugs on the Sony VAIO Z505-series on-board
153 1.6 jhawk * ethernet, after an APM suspend/resume, as well as after an ACPI
154 1.6 jhawk * D3->D0 transition. We call this function from a power hook after
155 1.6 jhawk * APM resume events, as well as after the ACPI D3->D0 transition.
156 1.6 jhawk */
157 1.6 jhawk static void
158 1.6 jhawk fxp_pci_confreg_restore(psc)
159 1.6 jhawk struct fxp_pci_softc *psc;
160 1.6 jhawk {
161 1.6 jhawk pcireg_t reg;
162 1.6 jhawk
163 1.6 jhawk #if 0
164 1.6 jhawk /*
165 1.6 jhawk * Check to see if the command register is blank -- if so, then
166 1.6 jhawk * we'll assume that all the clobberable-registers have been
167 1.6 jhawk * clobbered.
168 1.6 jhawk */
169 1.6 jhawk
170 1.6 jhawk /*
171 1.6 jhawk * In general, the above metric is accurate. Unfortunately,
172 1.6 jhawk * it is inaccurate across a hibernation. Ideally APM/ACPI
173 1.6 jhawk * code should take note of hibernation events and execute
174 1.6 jhawk * a hibernation wakeup hook, but at present a hibernation wake
175 1.6 jhawk * is indistinguishable from a suspend wake.
176 1.6 jhawk */
177 1.6 jhawk
178 1.6 jhawk if (((reg = pci_conf_read(psc->psc_pc, psc->psc_tag,
179 1.6 jhawk PCI_COMMAND_STATUS_REG)) & 0xffff) != 0)
180 1.6 jhawk return;
181 1.10 jhawk #else
182 1.10 jhawk reg = pci_conf_read(psc->psc_pc, psc->psc_tag, PCI_COMMAND_STATUS_REG);
183 1.6 jhawk #endif
184 1.6 jhawk
185 1.6 jhawk pci_conf_write(psc->psc_pc, psc->psc_tag,
186 1.6 jhawk PCI_COMMAND_STATUS_REG,
187 1.6 jhawk (reg & 0xffff0000) |
188 1.6 jhawk (psc->psc_regs[PCI_COMMAND_STATUS_REG>>2] & 0xffff));
189 1.6 jhawk pci_conf_write(psc->psc_pc, psc->psc_tag, PCI_BHLC_REG,
190 1.6 jhawk psc->psc_regs[PCI_BHLC_REG>>2]);
191 1.6 jhawk pci_conf_write(psc->psc_pc, psc->psc_tag, PCI_MAPREG_START+0x0,
192 1.6 jhawk psc->psc_regs[(PCI_MAPREG_START+0x0)>>2]);
193 1.6 jhawk pci_conf_write(psc->psc_pc, psc->psc_tag, PCI_MAPREG_START+0x4,
194 1.6 jhawk psc->psc_regs[(PCI_MAPREG_START+0x4)>>2]);
195 1.6 jhawk pci_conf_write(psc->psc_pc, psc->psc_tag, PCI_MAPREG_START+0x8,
196 1.6 jhawk psc->psc_regs[(PCI_MAPREG_START+0x8)>>2]);
197 1.6 jhawk }
198 1.6 jhawk
199 1.6 jhawk
200 1.6 jhawk /*
201 1.6 jhawk * Power handler routine. Called when the system is transitioning into/out
202 1.6 jhawk * of power save modes. We restore the (bashed) PCI configuration registers
203 1.6 jhawk * on a resume.
204 1.6 jhawk */
205 1.6 jhawk static void
206 1.6 jhawk fxp_pci_power(why, arg)
207 1.6 jhawk int why;
208 1.6 jhawk void *arg;
209 1.6 jhawk {
210 1.6 jhawk struct fxp_pci_softc *psc = arg;
211 1.6 jhawk
212 1.6 jhawk if (why == PWR_RESUME)
213 1.6 jhawk fxp_pci_confreg_restore(psc);
214 1.6 jhawk }
215 1.6 jhawk
216 1.1 thorpej void
217 1.1 thorpej fxp_pci_attach(parent, self, aux)
218 1.1 thorpej struct device *parent, *self;
219 1.1 thorpej void *aux;
220 1.1 thorpej {
221 1.6 jhawk struct fxp_pci_softc *psc = (struct fxp_pci_softc *)self;
222 1.1 thorpej struct fxp_softc *sc = (struct fxp_softc *)self;
223 1.1 thorpej struct pci_attach_args *pa = aux;
224 1.1 thorpej pci_chipset_tag_t pc = pa->pa_pc;
225 1.1 thorpej pci_intr_handle_t ih;
226 1.5 thorpej const struct fxp_pci_product *fpp;
227 1.1 thorpej const char *intrstr = NULL;
228 1.1 thorpej bus_space_tag_t iot, memt;
229 1.1 thorpej bus_space_handle_t ioh, memh;
230 1.1 thorpej int ioh_valid, memh_valid;
231 1.1 thorpej bus_addr_t addr;
232 1.1 thorpej bus_size_t size;
233 1.1 thorpej int flags;
234 1.12.2.2 nathanw int pci_pwrmgmt_cap_reg;
235 1.1 thorpej
236 1.1 thorpej /*
237 1.1 thorpej * Map control/status registers.
238 1.1 thorpej */
239 1.1 thorpej ioh_valid = (pci_mapreg_map(pa, FXP_PCI_IOBA,
240 1.1 thorpej PCI_MAPREG_TYPE_IO, 0,
241 1.1 thorpej &iot, &ioh, NULL, NULL) == 0);
242 1.1 thorpej
243 1.1 thorpej /*
244 1.1 thorpej * Version 2.1 of the PCI spec, page 196, "Address Maps":
245 1.1 thorpej *
246 1.1 thorpej * Prefetchable
247 1.1 thorpej *
248 1.1 thorpej * Set to one if there are no side effects on reads, the
249 1.1 thorpej * device returns all bytes regardless of the byte enables,
250 1.1 thorpej * and host bridges can merge processor writes into this
251 1.1 thorpej * range without causing errors. Bit must be set to zero
252 1.1 thorpej * otherwise.
253 1.1 thorpej *
254 1.1 thorpej * The 82557 incorrectly sets the "prefetchable" bit, resulting
255 1.1 thorpej * in errors on systems which will do merged reads and writes.
256 1.1 thorpej * These errors manifest themselves as all-bits-set when reading
257 1.1 thorpej * from the EEPROM or other < 4 byte registers.
258 1.1 thorpej *
259 1.1 thorpej * We must work around this problem by always forcing the mapping
260 1.1 thorpej * for memory space to be uncacheable. On systems which cannot
261 1.1 thorpej * create an uncacheable mapping (because the firmware mapped it
262 1.1 thorpej * into only cacheable/prefetchable space due to the "prefetchable"
263 1.1 thorpej * bit), we can fall back onto i/o mapped access.
264 1.1 thorpej */
265 1.1 thorpej memh_valid = 0;
266 1.1 thorpej memt = pa->pa_memt;
267 1.1 thorpej if (((pa->pa_flags & PCI_FLAGS_MEM_ENABLED) != 0) &&
268 1.1 thorpej pci_mapreg_info(pa->pa_pc, pa->pa_tag, FXP_PCI_MMBA,
269 1.1 thorpej PCI_MAPREG_TYPE_MEM|PCI_MAPREG_MEM_TYPE_32BIT,
270 1.1 thorpej &addr, &size, &flags) == 0) {
271 1.4 drochner flags &= ~BUS_SPACE_MAP_PREFETCHABLE;
272 1.1 thorpej if (bus_space_map(memt, addr, size, flags, &memh) == 0)
273 1.1 thorpej memh_valid = 1;
274 1.1 thorpej }
275 1.1 thorpej
276 1.1 thorpej if (memh_valid) {
277 1.1 thorpej sc->sc_st = memt;
278 1.1 thorpej sc->sc_sh = memh;
279 1.1 thorpej } else if (ioh_valid) {
280 1.1 thorpej sc->sc_st = iot;
281 1.1 thorpej sc->sc_sh = ioh;
282 1.1 thorpej } else {
283 1.1 thorpej printf(": unable to map device registers\n");
284 1.1 thorpej return;
285 1.1 thorpej }
286 1.1 thorpej
287 1.1 thorpej sc->sc_dmat = pa->pa_dmat;
288 1.1 thorpej
289 1.5 thorpej fpp = fxp_pci_lookup(pa);
290 1.5 thorpej if (fpp == NULL) {
291 1.5 thorpej printf("\n");
292 1.5 thorpej panic("fxp_pci_attach: impossible");
293 1.5 thorpej }
294 1.5 thorpej
295 1.12.2.1 nathanw sc->sc_rev = PCI_REVISION(pa->pa_class);
296 1.12.2.1 nathanw
297 1.12.2.1 nathanw switch (fpp->fpp_prodid) {
298 1.12.2.1 nathanw case PCI_PRODUCT_INTEL_82557:
299 1.12.2.1 nathanw case PCI_PRODUCT_INTEL_82559ER:
300 1.12.2.1 nathanw case PCI_PRODUCT_INTEL_IN_BUSINESS:
301 1.12.2.1 nathanw {
302 1.12.2.1 nathanw const char *chipname = NULL;
303 1.12.2.1 nathanw
304 1.12.2.1 nathanw if (sc->sc_rev >= FXP_REV_82558_A4) {
305 1.12.2.1 nathanw chipname = "i82558 Ethernet";
306 1.12.2.1 nathanw /*
307 1.12.2.1 nathanw * Enable the MWI command for memory writes.
308 1.12.2.1 nathanw */
309 1.12.2.1 nathanw if (pa->pa_flags & PCI_FLAGS_MWI_OKAY)
310 1.12.2.1 nathanw sc->sc_flags |= FXPF_MWI;
311 1.12.2.1 nathanw }
312 1.12.2.1 nathanw if (sc->sc_rev >= FXP_REV_82559_A0)
313 1.12.2.1 nathanw chipname = "i82559 Ethernet";
314 1.12.2.1 nathanw if (sc->sc_rev >= FXP_REV_82559S_A)
315 1.12.2.1 nathanw chipname = "i82559S Ethernet";
316 1.12.2.1 nathanw if (sc->sc_rev >= FXP_REV_82550)
317 1.12.2.1 nathanw chipname = "i82550 Ethernet";
318 1.12.2.1 nathanw
319 1.12.2.1 nathanw printf(": %s, rev %d\n", chipname != NULL ? chipname :
320 1.12.2.1 nathanw fpp->fpp_name, sc->sc_rev);
321 1.12.2.1 nathanw break;
322 1.12.2.1 nathanw }
323 1.12.2.1 nathanw
324 1.12.2.1 nathanw case PCI_PRODUCT_INTEL_82801BA_LAN:
325 1.12.2.1 nathanw printf(": %s, rev %d\n", fpp->fpp_name, sc->sc_rev);
326 1.12.2.1 nathanw
327 1.12.2.1 nathanw /*
328 1.12.2.1 nathanw * The 82801BA Ethernet has a bug which requires us to send a
329 1.12.2.1 nathanw * NOP before a CU_RESUME if we're in 10baseT mode.
330 1.12.2.1 nathanw */
331 1.12.2.1 nathanw if (fpp->fpp_prodid == PCI_PRODUCT_INTEL_82801BA_LAN)
332 1.12.2.1 nathanw sc->sc_flags |= FXPF_HAS_RESUME_BUG;
333 1.12.2.1 nathanw break;
334 1.12.2.1 nathanw
335 1.12.2.1 nathanw case PCI_PRODUCT_INTEL_PRO_100_VE_0:
336 1.12.2.1 nathanw case PCI_PRODUCT_INTEL_PRO_100_VE_1:
337 1.12.2.1 nathanw case PCI_PRODUCT_INTEL_PRO_100_VM_0:
338 1.12.2.1 nathanw case PCI_PRODUCT_INTEL_PRO_100_VM_1:
339 1.12.2.1 nathanw case PCI_PRODUCT_INTEL_82562EH_HPNA_0:
340 1.12.2.1 nathanw case PCI_PRODUCT_INTEL_82562EH_HPNA_1:
341 1.12.2.1 nathanw case PCI_PRODUCT_INTEL_82562EH_HPNA_2:
342 1.12.2.1 nathanw case PCI_PRODUCT_INTEL_PRO_100_VM_2:
343 1.12.2.1 nathanw printf(": %s, rev %d\n", fpp->fpp_name, sc->sc_rev);
344 1.12.2.1 nathanw
345 1.12.2.1 nathanw /*
346 1.12.2.1 nathanw * ICH3 chips apparently have problems with the enhanced
347 1.12.2.1 nathanw * features, so just treat them as an i82557. It also
348 1.12.2.1 nathanw * has the resume bug that the ICH2 has.
349 1.12.2.1 nathanw */
350 1.12.2.1 nathanw sc->sc_rev = 1;
351 1.12.2.1 nathanw sc->sc_flags |= FXPF_HAS_RESUME_BUG;
352 1.12.2.1 nathanw break;
353 1.12.2.1 nathanw }
354 1.1 thorpej
355 1.1 thorpej /* Make sure bus-mastering is enabled. */
356 1.1 thorpej pci_conf_write(pc, pa->pa_tag, PCI_COMMAND_STATUS_REG,
357 1.1 thorpej pci_conf_read(pc, pa->pa_tag, PCI_COMMAND_STATUS_REG) |
358 1.1 thorpej PCI_COMMAND_MASTER_ENABLE);
359 1.1 thorpej
360 1.6 jhawk /*
361 1.6 jhawk * Under some circumstances (such as APM suspend/resume
362 1.6 jhawk * cycles, and across ACPI power state changes), the
363 1.6 jhawk * i82257-family can lose the contents of critical PCI
364 1.6 jhawk * configuration registers, causing the card to be
365 1.6 jhawk * non-responsive and useless. This occurs on the Sony VAIO
366 1.6 jhawk * Z505-series, among others. Preserve them here so they can
367 1.6 jhawk * be later restored (by fxp_pci_confreg_restore()).
368 1.6 jhawk */
369 1.6 jhawk psc->psc_pc = pc;
370 1.6 jhawk psc->psc_tag = pa->pa_tag;
371 1.6 jhawk psc->psc_regs[PCI_COMMAND_STATUS_REG>>2] =
372 1.6 jhawk pci_conf_read(pc, pa->pa_tag, PCI_COMMAND_STATUS_REG);
373 1.6 jhawk psc->psc_regs[PCI_BHLC_REG>>2] =
374 1.6 jhawk pci_conf_read(pc, pa->pa_tag, PCI_BHLC_REG);
375 1.6 jhawk psc->psc_regs[(PCI_MAPREG_START+0x0)>>2] =
376 1.6 jhawk pci_conf_read(pc, pa->pa_tag, PCI_MAPREG_START+0x0);
377 1.6 jhawk psc->psc_regs[(PCI_MAPREG_START+0x4)>>2] =
378 1.6 jhawk pci_conf_read(pc, pa->pa_tag, PCI_MAPREG_START+0x4);
379 1.6 jhawk psc->psc_regs[(PCI_MAPREG_START+0x8)>>2] =
380 1.6 jhawk pci_conf_read(pc, pa->pa_tag, PCI_MAPREG_START+0x8);
381 1.6 jhawk
382 1.6 jhawk /*
383 1.6 jhawk * Work around BIOS ACPI bugs where the chip is inadvertantly
384 1.6 jhawk * left in ACPI D3 (lowest power state). First confirm the device
385 1.6 jhawk * supports ACPI power management, then move it to the D0 (fully
386 1.6 jhawk * functional) state if it is not already there.
387 1.6 jhawk */
388 1.6 jhawk if (pci_get_capability(pc, pa->pa_tag, PCI_CAP_PWRMGMT,
389 1.6 jhawk &pci_pwrmgmt_cap_reg, 0)) {
390 1.6 jhawk pcireg_t reg;
391 1.6 jhawk
392 1.12.2.2 nathanw sc->sc_enable = fxp_pci_enable;
393 1.12.2.2 nathanw sc->sc_disable = fxp_pci_disable;
394 1.12.2.2 nathanw
395 1.12.2.2 nathanw psc->psc_pwrmgmt_csr_reg = pci_pwrmgmt_cap_reg + 4;
396 1.12.2.2 nathanw reg = pci_conf_read(pc, pa->pa_tag, psc->psc_pwrmgmt_csr_reg);
397 1.12.2.2 nathanw psc->psc_pwrmgmt_csr = (reg & ~PCI_PMCSR_STATE_MASK) |
398 1.12.2.2 nathanw PCI_PMCSR_STATE_D0;
399 1.12.2.2 nathanw if ((reg & PCI_PMCSR_STATE_MASK) != PCI_PMCSR_STATE_D0)
400 1.12.2.2 nathanw pci_conf_write(pc, pa->pa_tag, psc->psc_pwrmgmt_csr_reg,
401 1.12.2.2 nathanw psc->psc_pwrmgmt_csr);
402 1.6 jhawk }
403 1.6 jhawk /* Restore PCI configuration registers. */
404 1.6 jhawk fxp_pci_confreg_restore(psc);
405 1.6 jhawk
406 1.12.2.2 nathanw sc->sc_enabled = 1;
407 1.12.2.2 nathanw
408 1.1 thorpej /*
409 1.1 thorpej * Map and establish our interrupt.
410 1.1 thorpej */
411 1.12 sommerfe if (pci_intr_map(pa, &ih)) {
412 1.1 thorpej printf("%s: couldn't map interrupt\n", sc->sc_dev.dv_xname);
413 1.1 thorpej return;
414 1.1 thorpej }
415 1.1 thorpej intrstr = pci_intr_string(pc, ih);
416 1.8 jhawk sc->sc_ih = pci_intr_establish(pc, ih, IPL_NET, fxp_intr, sc);
417 1.8 jhawk if (sc->sc_ih == NULL) {
418 1.1 thorpej printf("%s: couldn't establish interrupt",
419 1.1 thorpej sc->sc_dev.dv_xname);
420 1.1 thorpej if (intrstr != NULL)
421 1.1 thorpej printf(" at %s", intrstr);
422 1.1 thorpej printf("\n");
423 1.1 thorpej return;
424 1.1 thorpej }
425 1.1 thorpej printf("%s: interrupting at %s\n", sc->sc_dev.dv_xname, intrstr);
426 1.1 thorpej
427 1.1 thorpej /* Finish off the attach. */
428 1.1 thorpej fxp_attach(sc);
429 1.12.2.2 nathanw if (sc->sc_disable != NULL)
430 1.12.2.2 nathanw fxp_disable(sc);
431 1.6 jhawk
432 1.6 jhawk /* Add a suspend hook to restore PCI config state */
433 1.6 jhawk psc->psc_powerhook = powerhook_establish(fxp_pci_power, psc);
434 1.6 jhawk if (psc->psc_powerhook == NULL)
435 1.6 jhawk printf ("%s: WARNING: unable to establish pci power hook\n",
436 1.6 jhawk sc->sc_dev.dv_xname);
437 1.12.2.2 nathanw }
438 1.12.2.2 nathanw
439 1.12.2.2 nathanw int
440 1.12.2.2 nathanw fxp_pci_enable(struct fxp_softc *sc)
441 1.12.2.2 nathanw {
442 1.12.2.2 nathanw struct fxp_pci_softc *psc = (void *) sc;
443 1.12.2.2 nathanw
444 1.12.2.2 nathanw #if 0
445 1.12.2.2 nathanw printf("%s: going to power state D0\n", sc->sc_dev.dv_xname);
446 1.12.2.2 nathanw #endif
447 1.12.2.2 nathanw
448 1.12.2.2 nathanw /* Bring the device into D0 power state. */
449 1.12.2.2 nathanw pci_conf_write(psc->psc_pc, psc->psc_tag,
450 1.12.2.2 nathanw psc->psc_pwrmgmt_csr_reg, psc->psc_pwrmgmt_csr);
451 1.12.2.2 nathanw
452 1.12.2.2 nathanw /* Now restore the configuration registers. */
453 1.12.2.2 nathanw fxp_pci_confreg_restore(psc);
454 1.12.2.2 nathanw
455 1.12.2.2 nathanw return (0);
456 1.12.2.2 nathanw }
457 1.12.2.2 nathanw
458 1.12.2.2 nathanw void
459 1.12.2.2 nathanw fxp_pci_disable(struct fxp_softc *sc)
460 1.12.2.2 nathanw {
461 1.12.2.2 nathanw struct fxp_pci_softc *psc = (void *) sc;
462 1.12.2.2 nathanw
463 1.12.2.2 nathanw #if 0
464 1.12.2.2 nathanw printf("%s: going to power state D3\n", sc->sc_dev.dv_xname);
465 1.12.2.2 nathanw #endif
466 1.12.2.2 nathanw
467 1.12.2.2 nathanw /* Put the device into D3 state. */
468 1.12.2.2 nathanw pci_conf_write(psc->psc_pc, psc->psc_tag,
469 1.12.2.2 nathanw psc->psc_pwrmgmt_csr_reg, (psc->psc_pwrmgmt_csr &
470 1.12.2.2 nathanw ~PCI_PMCSR_STATE_MASK) | PCI_PMCSR_STATE_D3);
471 1.1 thorpej }
472