xref: /netbsd-src/sys/dev/pci/amdpm.c (revision b7ae68fde0d8ef1c03714e8bbb1ee7c6118ea93b)
1 /*	$NetBSD: amdpm.c,v 1.19 2006/08/27 23:27:44 christos Exp $	*/
2 
3 /*-
4  * Copyright (c) 2002 The NetBSD Foundation, Inc.
5  * All rights reserved.
6  *
7  * This code is derived from software contributed to The NetBSD Foundation
8  * by Enami Tsugutomo.
9  *
10  * Redistribution and use in source and binary forms, with or without
11  * modification, are permitted provided that the following conditions
12  * are met:
13  * 1. Redistributions of source code must retain the above copyright
14  *    notice, this list of conditions and the following disclaimer.
15  * 2. Redistributions in binary form must reproduce the above copyright
16  *    notice, this list of conditions and the following disclaimer in the
17  *    documentation and/or other materials provided with the distribution.
18  * 3. All advertising materials mentioning features or use of this software
19  *    must display the following acknowledgement:
20  *	This product includes software developed by the NetBSD
21  *	Foundation, Inc. and its contributors.
22  * 4. Neither the name of The NetBSD Foundation nor the names of its
23  *    contributors may be used to endorse or promote products derived
24  *    from this software without specific prior written permission.
25  *
26  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
27  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
28  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
29  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
30  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
31  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
32  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
33  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
34  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
35  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
36  * POSSIBILITY OF SUCH DAMAGE.
37  */
38 
39 #include <sys/cdefs.h>
40 __KERNEL_RCSID(0, "$NetBSD: amdpm.c,v 1.19 2006/08/27 23:27:44 christos Exp $");
41 
42 #include "opt_amdpm.h"
43 
44 #include <sys/param.h>
45 #include <sys/systm.h>
46 #include <sys/kernel.h>
47 #include <sys/device.h>
48 #include <sys/callout.h>
49 #include <sys/rnd.h>
50 
51 #ifdef __HAVE_TIMECOUNTER
52 #include <machine/bus.h>
53 #include <dev/ic/acpipmtimer.h>
54 #endif
55 
56 #include <dev/i2c/i2cvar.h>
57 
58 #include <dev/pci/pcivar.h>
59 #include <dev/pci/pcireg.h>
60 #include <dev/pci/pcidevs.h>
61 
62 #include <dev/pci/amdpmreg.h>
63 #include <dev/pci/amdpmvar.h>
64 #include <dev/pci/amdpm_smbusreg.h>
65 
66 static void	amdpm_rnd_callout(void *);
67 
68 #ifdef AMDPM_RND_COUNTERS
69 #define	AMDPM_RNDCNT_INCR(ev)	(ev)->ev_count++
70 #endif
71 
72 static int
73 amdpm_match(struct device *parent, struct cfdata *match, void *aux)
74 {
75 	struct pci_attach_args *pa = aux;
76 
77 	if (PCI_VENDOR(pa->pa_id) != PCI_VENDOR_AMD)
78 		return (0);
79 
80 	switch (PCI_PRODUCT(pa->pa_id)) {
81 	case PCI_PRODUCT_AMD_PBC768_PMC:
82 	case PCI_PRODUCT_AMD_PBC8111_ACPI:
83 		return (1);
84 	}
85 
86 	return (0);
87 }
88 
89 static void
90 amdpm_attach(struct device *parent, struct device *self, void *aux)
91 {
92 	struct amdpm_softc *sc = (struct amdpm_softc *) self;
93 	struct pci_attach_args *pa = aux;
94 	char devinfo[256];
95 	pcireg_t confreg, pmptrreg;
96 	u_int32_t pmreg;
97 	int i;
98 
99 	aprint_naive("\n");
100 	pci_devinfo(pa->pa_id, pa->pa_class, 0, devinfo, sizeof(devinfo));
101 	aprint_normal(": %s (rev. 0x%02x)\n", devinfo,
102 	    PCI_REVISION(pa->pa_class));
103 
104 	sc->sc_pc = pa->pa_pc;
105 	sc->sc_tag = pa->pa_tag;
106 	sc->sc_iot = pa->pa_iot;
107 
108 #if 0
109 	aprint_normal("%s: ", sc->sc_dev.dv_xname);
110 	pci_conf_print(pa->pa_pc, pa->pa_tag, NULL);
111 #endif
112 
113 	confreg = pci_conf_read(pa->pa_pc, pa->pa_tag, AMDPM_CONFREG);
114 	/* enable pm i/o space for AMD-8111 */
115 	if (PCI_PRODUCT(pa->pa_id)  == PCI_PRODUCT_AMD_PBC8111_ACPI)
116 		confreg |= AMDPM_PMIOEN;
117 
118 	/* Enable random number generation for everyone */
119 	pci_conf_write(pa->pa_pc, pa->pa_tag, AMDPM_CONFREG,
120 	    confreg | AMDPM_RNGEN);
121 	confreg = pci_conf_read(pa->pa_pc, pa->pa_tag, AMDPM_CONFREG);
122 
123 	if ((confreg & AMDPM_PMIOEN) == 0) {
124 		aprint_error("%s: PMxx space isn't enabled\n",
125 		    sc->sc_dev.dv_xname);
126 		return;
127 	}
128 
129 	pmptrreg = pci_conf_read(pa->pa_pc, pa->pa_tag, AMDPM_PMPTR);
130 	if (bus_space_map(sc->sc_iot, AMDPM_PMBASE(pmptrreg), AMDPM_PMSIZE,
131 	    0, &sc->sc_ioh)) {
132 		aprint_error("%s: failed to map PMxx space\n",
133 		    sc->sc_dev.dv_xname);
134 		return;
135 	}
136 
137 #ifdef __HAVE_TIMECOUNTER
138 	if ((confreg & AMDPM_TMRRST) == 0 && (confreg & AMDPM_STOPTMR) == 0) {
139 		acpipmtimer_attach(&sc->sc_dev, sc->sc_iot, sc->sc_ioh,
140 		  AMDPM_TMR, ((confreg & AMDPM_TMR32) ? ACPIPMT_32BIT : 0));
141 	}
142 #endif
143 
144 	/* try to attach devices on the smbus */
145 	if (PCI_PRODUCT(pa->pa_id) == PCI_PRODUCT_AMD_PBC8111_ACPI) {
146 		amdpm_smbus_attach(sc);
147 	}
148 
149 	if (confreg & AMDPM_RNGEN) {
150 		/* Check to see if we can read data from the RNG. */
151 		(void) bus_space_read_4(sc->sc_iot, sc->sc_ioh,
152 		    AMDPM_RNGDATA);
153 		for (i = 0; i < 1000; i++) {
154 			pmreg = bus_space_read_4(sc->sc_iot,
155 			    sc->sc_ioh, AMDPM_RNGSTAT);
156 			if (pmreg & AMDPM_RNGDONE)
157 				break;
158 			delay(1);
159 		}
160 		if ((pmreg & AMDPM_RNGDONE) != 0) {
161 			aprint_normal("%s: "
162 			    "random number generator enabled (apprx. %dms)\n",
163 			    sc->sc_dev.dv_xname, i);
164 			callout_init(&sc->sc_rnd_ch);
165 			rnd_attach_source(&sc->sc_rnd_source,
166 			    sc->sc_dev.dv_xname, RND_TYPE_RNG,
167 			    /*
168 			     * XXX Careful!  The use of RND_FLAG_NO_ESTIMATE
169 			     * XXX here is unobvious: we later feed raw bits
170 			     * XXX into the "entropy pool" with rnd_add_data,
171 			     * XXX explicitly supplying an entropy estimate.
172 			     * XXX In this context, NO_ESTIMATE serves only
173 			     * XXX to prevent rnd_add_data from trying to
174 			     * XXX use the *time at which we added the data*
175 			     * XXX as entropy, which is not a good idea since
176 			     * XXX we add data periodically from a callout.
177 			     */
178 			    RND_FLAG_NO_ESTIMATE);
179 #ifdef AMDPM_RND_COUNTERS
180 			evcnt_attach_dynamic(&sc->sc_rnd_hits, EVCNT_TYPE_MISC,
181 			    NULL, sc->sc_dev.dv_xname, "rnd hits");
182 			evcnt_attach_dynamic(&sc->sc_rnd_miss, EVCNT_TYPE_MISC,
183 			    NULL, sc->sc_dev.dv_xname, "rnd miss");
184 			for (i = 0; i < 256; i++) {
185 				evcnt_attach_dynamic(&sc->sc_rnd_data[i],
186 				    EVCNT_TYPE_MISC, NULL, sc->sc_dev.dv_xname,
187 				    "rnd data");
188 			}
189 #endif
190 			amdpm_rnd_callout(sc);
191 		}
192 	}
193 }
194 
195 CFATTACH_DECL(amdpm, sizeof(struct amdpm_softc),
196     amdpm_match, amdpm_attach, NULL, NULL);
197 
198 static void
199 amdpm_rnd_callout(void *v)
200 {
201 	struct amdpm_softc *sc = v;
202 	u_int32_t rngreg;
203 #ifdef AMDPM_RND_COUNTERS
204 	int i;
205 #endif
206 
207 	if ((bus_space_read_4(sc->sc_iot, sc->sc_ioh, AMDPM_RNGSTAT) &
208 	    AMDPM_RNGDONE) != 0) {
209 		rngreg = bus_space_read_4(sc->sc_iot, sc->sc_ioh,
210 		    AMDPM_RNGDATA);
211 		rnd_add_data(&sc->sc_rnd_source, &rngreg,
212 		    sizeof(rngreg), sizeof(rngreg) * NBBY);
213 #ifdef AMDPM_RND_COUNTERS
214 		AMDPM_RNDCNT_INCR(&sc->sc_rnd_hits);
215 		for (i = 0; i < sizeof(rngreg); i++, rngreg >>= NBBY)
216 			AMDPM_RNDCNT_INCR(&sc->sc_rnd_data[rngreg & 0xff]);
217 #endif
218 	}
219 #ifdef AMDPM_RND_COUNTERS
220 	else
221 		AMDPM_RNDCNT_INCR(&sc->sc_rnd_miss);
222 #endif
223 	callout_reset(&sc->sc_rnd_ch, 1, amdpm_rnd_callout, sc);
224 }
225