xref: /openbsd-src/sys/dev/pci/if_re_pci.c (revision 898184e3e61f9129feb5978fad5a8c6865f00b92)
1 /*	$OpenBSD: if_re_pci.c,v 1.37 2013/01/16 04:42:44 brad Exp $	*/
2 
3 /*
4  * Copyright (c) 2005 Peter Valchev <pvalchev@openbsd.org>
5  *
6  * Permission to use, copy, modify, and distribute this software for any
7  * purpose with or without fee is hereby granted, provided that the above
8  * copyright notice and this permission notice appear in all copies.
9  *
10  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
11  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
12  * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
13  * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
14  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
15  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
16  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
17  */
18 
19 /*
20  * PCI front-end for the Realtek 8169
21  */
22 
23 #include <sys/param.h>
24 #include <sys/endian.h>
25 #include <sys/systm.h>
26 #include <sys/sockio.h>
27 #include <sys/mbuf.h>
28 #include <sys/malloc.h>
29 #include <sys/kernel.h>
30 #include <sys/device.h>
31 #include <sys/timeout.h>
32 #include <sys/socket.h>
33 
34 #include <net/if.h>
35 #include <net/if_dl.h>
36 #include <net/if_media.h>
37 
38 #ifdef INET
39 #include <netinet/in.h>
40 #include <netinet/in_systm.h>
41 #include <netinet/in_var.h>
42 #include <netinet/ip.h>
43 #include <netinet/if_ether.h>
44 #endif
45 
46 #include <dev/mii/mii.h>
47 #include <dev/mii/miivar.h>
48 
49 #include <dev/pci/pcireg.h>
50 #include <dev/pci/pcivar.h>
51 #include <dev/pci/pcidevs.h>
52 
53 #include <dev/ic/rtl81x9reg.h>
54 #include <dev/ic/revar.h>
55 
56 struct re_pci_softc {
57 	/* General */
58 	struct rl_softc sc_rl;
59 
60 	/* PCI-specific data */
61 	void *sc_ih;
62 	pci_chipset_tag_t sc_pc;
63 	pcitag_t sc_pcitag;
64 
65 	bus_size_t sc_iosize;
66 };
67 
68 const struct pci_matchid re_pci_devices[] = {
69 	{ PCI_VENDOR_COREGA, PCI_PRODUCT_COREGA_CGLAPCIGT },
70 	{ PCI_VENDOR_DLINK, PCI_PRODUCT_DLINK_DGE528T },
71 	{ PCI_VENDOR_DLINK, PCI_PRODUCT_DLINK_DGE530T_C1 },
72 	{ PCI_VENDOR_REALTEK, PCI_PRODUCT_REALTEK_RT8101E },
73 	{ PCI_VENDOR_REALTEK, PCI_PRODUCT_REALTEK_RT8168 },
74 	{ PCI_VENDOR_REALTEK, PCI_PRODUCT_REALTEK_RT8169 },
75 	{ PCI_VENDOR_REALTEK, PCI_PRODUCT_REALTEK_RT8169SC },
76 	{ PCI_VENDOR_TTTECH, PCI_PRODUCT_TTTECH_MC322 },
77 	{ PCI_VENDOR_USR2, PCI_PRODUCT_USR2_USR997902 }
78 };
79 
80 #define RE_LINKSYS_EG1032_SUBID 0x00241737
81 
82 int	re_pci_probe(struct device *, void *, void *);
83 void	re_pci_attach(struct device *, struct device *, void *);
84 int	re_pci_detach(struct device *, int);
85 int	re_pci_activate(struct device *, int);
86 
87 /*
88  * PCI autoconfig definitions
89  */
90 struct cfattach re_pci_ca = {
91 	sizeof(struct re_pci_softc),
92 	re_pci_probe,
93 	re_pci_attach,
94 	re_pci_detach,
95 	re_pci_activate
96 };
97 
98 /*
99  * Probe for a Realtek 8169/8110 chip. Check the PCI vendor and device
100  * IDs against our list and return a device name if we find a match.
101  */
102 int
103 re_pci_probe(struct device *parent, void *match, void *aux)
104 {
105 	struct pci_attach_args *pa = aux;
106 	pci_chipset_tag_t pc = pa->pa_pc;
107 	pcireg_t subid;
108 
109 	subid = pci_conf_read(pc, pa->pa_tag, PCI_SUBSYS_ID_REG);
110 
111 	/* C+ mode 8139's */
112 	if (PCI_VENDOR(pa->pa_id) == PCI_VENDOR_REALTEK &&
113 	    PCI_PRODUCT(pa->pa_id) == PCI_PRODUCT_REALTEK_RT8139 &&
114 	    PCI_REVISION(pa->pa_class) == 0x20)
115 		return (1);
116 
117 	if (PCI_VENDOR(pa->pa_id) == PCI_VENDOR_LINKSYS &&
118 	    PCI_PRODUCT(pa->pa_id) == PCI_PRODUCT_LINKSYS_EG1032 &&
119 	    subid == RE_LINKSYS_EG1032_SUBID)
120 		return (1);
121 
122 	return (pci_matchbyid((struct pci_attach_args *)aux, re_pci_devices,
123 	    nitems(re_pci_devices)));
124 }
125 
126 /*
127  * PCI-specific attach routine
128  */
129 void
130 re_pci_attach(struct device *parent, struct device *self, void *aux)
131 {
132 	struct re_pci_softc	*psc = (struct re_pci_softc *)self;
133 	struct rl_softc		*sc = &psc->sc_rl;
134 	struct pci_attach_args	*pa = aux;
135 	pci_chipset_tag_t	pc = pa->pa_pc;
136 	pci_intr_handle_t	ih;
137 	const char		*intrstr = NULL;
138 
139 	pci_set_powerstate(pa->pa_pc, pa->pa_tag, PCI_PMCSR_STATE_D0);
140 
141 #ifndef SMALL_KERNEL
142 	/* Enable power management for wake on lan. */
143 	pci_conf_write(pc, pa->pa_tag, RL_PCI_PMCSR, RL_PME_EN);
144 #endif
145 
146 	/*
147 	 * Map control/status registers.
148 	 */
149 	if (pci_mapreg_map(pa, RL_PCI_LOMEM, PCI_MAPREG_TYPE_MEM, 0,
150 	    &sc->rl_btag, &sc->rl_bhandle, NULL, &psc->sc_iosize, 0)) {
151 		if (pci_mapreg_map(pa, RL_PCI_LOIO, PCI_MAPREG_TYPE_IO, 0,
152 		    &sc->rl_btag, &sc->rl_bhandle, NULL, &psc->sc_iosize, 0)) {
153 			printf(": can't map mem or i/o space\n");
154 			return;
155 		}
156 	}
157 
158 	/* Allocate interrupt */
159 	if (pci_intr_map(pa, &ih)) {
160 		printf(": couldn't map interrupt\n");
161 		return;
162 	}
163 	intrstr = pci_intr_string(pc, ih);
164 	psc->sc_ih = pci_intr_establish(pc, ih, IPL_NET, re_intr, sc,
165 	    sc->sc_dev.dv_xname);
166 	if (psc->sc_ih == NULL) {
167 		printf(": couldn't establish interrupt");
168 		if (intrstr != NULL)
169 			printf(" at %s", intrstr);
170 		return;
171 	}
172 
173 	sc->sc_dmat = pa->pa_dmat;
174 	psc->sc_pc = pc;
175 
176 	/*
177 	 * PCI Express check.
178 	 */
179 	if (pci_get_capability(pc, pa->pa_tag, PCI_CAP_PCIEXPRESS,
180 	    NULL, NULL))
181 		sc->rl_flags |= RL_FLAG_PCIE;
182 
183 	/* Call bus-independent attach routine */
184 	if (re_attach(sc, intrstr)) {
185 		pci_intr_disestablish(pc, psc->sc_ih);
186 		bus_space_unmap(sc->rl_btag, sc->rl_bhandle, psc->sc_iosize);
187 	}
188 }
189 
190 int
191 re_pci_detach(struct device *self, int flags)
192 {
193 	struct re_pci_softc	*psc = (struct re_pci_softc *)self;
194 	struct rl_softc		*sc = &psc->sc_rl;
195 	struct ifnet		*ifp = &sc->sc_arpcom.ac_if;
196 
197 	/* Remove timeout handler */
198 	timeout_del(&sc->timer_handle);
199 
200 	/* Detach PHY */
201 	if (LIST_FIRST(&sc->sc_mii.mii_phys) != NULL)
202 		mii_detach(&sc->sc_mii, MII_PHY_ANY, MII_OFFSET_ANY);
203 
204 	/* Delete media stuff */
205 	ifmedia_delete_instance(&sc->sc_mii.mii_media, IFM_INST_ANY);
206 	ether_ifdetach(ifp);
207 	if_detach(ifp);
208 
209 	/* Disable interrupts */
210 	if (psc->sc_ih != NULL)
211 		pci_intr_disestablish(psc->sc_pc, psc->sc_ih);
212 
213 	/* Free pci resources */
214 	bus_space_unmap(sc->rl_btag, sc->rl_bhandle, psc->sc_iosize);
215 
216 	return (0);
217 }
218 
219 int
220 re_pci_activate(struct device *self, int act)
221 {
222 	struct re_pci_softc	*psc = (struct re_pci_softc *)self;
223 	struct rl_softc		*sc = &psc->sc_rl;
224 	struct ifnet 		*ifp = &sc->sc_arpcom.ac_if;
225 
226 	switch (act) {
227 	case DVACT_SUSPEND:
228 		if (ifp->if_flags & IFF_RUNNING)
229 			re_stop(ifp);
230 		break;
231 	case DVACT_RESUME:
232 		re_reset(sc);
233 		if (ifp->if_flags & IFF_UP)
234 			re_init(ifp);
235 		break;
236 	}
237 
238 	return (0);
239 }
240