1 | /* $ZEL: plx9054_reset.c,v 1.1 2003/08/30 21:32:01 wuestner Exp $ */
|
---|
2 |
|
---|
3 | /*
|
---|
4 | * Copyright (c) 2001, 2003
|
---|
5 | * Willi Erven, Peter Wuestner. All rights reserved.
|
---|
6 | *
|
---|
7 | * Redistribution and use in source and binary forms, with or without
|
---|
8 | * modification, are permitted provided that the following conditions
|
---|
9 | * are met:
|
---|
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 | *
|
---|
16 | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
|
---|
17 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
---|
18 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
---|
19 | * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR(S) OR CONTRIBUTORS BE LIABLE
|
---|
20 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
---|
21 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
---|
22 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
---|
23 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
---|
24 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
---|
25 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
---|
26 | * SUCH DAMAGE.
|
---|
27 | */
|
---|
28 |
|
---|
29 | #include "sis1100_sc.h"
|
---|
30 |
|
---|
31 | /* only used in initialisation; no need for semaphores */
|
---|
32 |
|
---|
33 | void sis1100_reset_plx(struct sis1100_softc* sc)
|
---|
34 | {
|
---|
35 | u_int32_t conf_3C=0;
|
---|
36 | int c;
|
---|
37 |
|
---|
38 | /* save value of irq-line, it will be cleared during reset */
|
---|
39 | #ifdef __NetBSD__
|
---|
40 | conf_3C=pci_conf_read(sc->sc_pc, sc->sc_pcitag, PCI_INTERRUPT_REG);
|
---|
41 | #elif __linux__
|
---|
42 | pci_read_config_dword(sc->pcidev, 0x3c, &conf_3C);
|
---|
43 | #endif
|
---|
44 | _plxwritereg_1(sc, 0x6f, 0x40);
|
---|
45 | wmb_plx();
|
---|
46 | _plxwritereg_1(sc, 0x6f, 0x00);
|
---|
47 | wmb_plx();
|
---|
48 | _plxwritereg_1(sc, 0x6f, 0x20);
|
---|
49 | mb_plx();
|
---|
50 | c=0;
|
---|
51 | while ((!(plxreadreg(sc, LAS0RR)) || (c<10)) && (++c<50));
|
---|
52 | _plxwritereg_1(sc, 0x6f, 0x00);
|
---|
53 |
|
---|
54 | /* restore value of irq-line */
|
---|
55 | #ifdef __NetBSD__
|
---|
56 | pci_conf_write(sc->sc_pc, sc->sc_pcitag, PCI_INTERRUPT_REG, conf_3C);
|
---|
57 | #elif __linux__
|
---|
58 | pci_write_config_dword(sc->pcidev, 0x3c, conf_3C);
|
---|
59 | #endif
|
---|
60 | }
|
---|