Add the DragonFly cvs id and perform general cleanups on cvs/rcs/sccs ids. Most
[dragonfly.git] / sys / dev / powermng / i386 / amdpm / amdpm.c
1 /*-
2  * Copyright (c) 2000 Matthew C. Forman
3  *
4  * Based (heavily) on alpm.c which is:
5  *
6  * Copyright (c) 1998, 1999 Nicolas Souchu
7  * All rights reserved.
8  *
9  * Redistribution and use in source and binary forms, with or without
10  * modification, are permitted provided that the following conditions
11  * are met:
12  * 1. Redistributions of source code must retain the above copyright
13  *    notice, this list of conditions and the following disclaimer.
14  * 2. Redistributions in binary form must reproduce the above copyright
15  *    notice, this list of conditions and the following disclaimer in the
16  *    documentation and/or other materials provided with the distribution.
17  *
18  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
19  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
22  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
23  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
24  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
25  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
26  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
27  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
28  * SUCH DAMAGE.
29  *
30  * $FreeBSD: src/sys/pci/amdpm.c,v 1.1.2.1 2001/10/10 12:10:26 murray Exp $
31  * $DragonFly: src/sys/dev/powermng/i386/amdpm/amdpm.c,v 1.2 2003/06/17 04:28:56 dillon Exp $
32  *
33  */
34
35 /*
36  * Power management function/SMBus function support for the AMD 756 chip.
37  */
38
39 #include <sys/param.h>
40 #include <sys/kernel.h>
41 #include <sys/systm.h>
42 #include <sys/module.h>
43 #include <sys/bus.h>
44 #include <sys/uio.h>
45
46 #include <machine/bus_pio.h>
47 #include <machine/bus_memio.h>
48 #include <machine/bus.h>
49 #include <machine/clock.h>
50 #include <machine/resource.h>
51 #include <sys/rman.h>
52
53 #include <pci/pcivar.h>
54 #include <pci/pcireg.h>
55
56 #include <dev/iicbus/iiconf.h>
57 #include <dev/smbus/smbconf.h>
58 #include "smbus_if.h"
59
60 #define AMDPM_DEBUG(x)  if (amdpm_debug) (x)
61
62 #ifdef DEBUG
63 static int amdpm_debug = 1;
64 #else
65 static int amdpm_debug = 0;
66 #endif
67
68 #define AMDPM_VENDORID_AMD 0x1022
69 #define AMDPM_DEVICEID_AMD756PM 0x740b
70
71 /* PCI Configuration space registers */
72 #define AMDPCI_PMBASE 0x58
73
74 #define AMDPCI_GEN_CONFIG_PM 0x41
75 #define AMDPCI_PMIOEN (1<<7)
76
77 #define AMDPCI_SCIINT_CONFIG_PM 0x42
78 #define AMDPCI_SCISEL_IRQ11 11
79
80 #define AMDPCI_REVID 0x08
81
82 /*
83  * I/O registers.
84  * Base address programmed via AMDPCI_PMBASE.
85  */
86 #define AMDSMB_GLOBAL_STATUS 0xE0
87 #define AMDSMB_GS_TO_STS (1<<5)
88 #define AMDSMB_GS_HCYC_STS (1<<4)
89 #define AMDSMB_GS_HST_STS (1<<3)
90 #define AMDSMB_GS_PRERR_STS (1<<2)
91 #define AMDSMB_GS_COL_STS (1<<1)
92 #define AMDSMB_GS_ABRT_STS (1<<0)
93 #define AMDSMB_GS_CLEAR_STS (AMDSMB_GS_TO_STS|AMDSMB_GS_HCYC_STS|AMDSMB_GS_PRERR_STS|AMDSMB_GS_COL_STS|AMDSMB_GS_ABRT_STS)
94
95 #define AMDSMB_GLOBAL_ENABLE 0xE2
96 #define AMDSMB_GE_ABORT (1<<5)
97 #define AMDSMB_GE_HCYC_EN (1<<4)
98 #define AMDSMB_GE_HOST_STC (1<<3)
99 #define AMDSMB_GE_CYC_QUICK 0
100 #define AMDSMB_GE_CYC_BYTE 1
101 #define AMDSMB_GE_CYC_BDATA 2
102 #define AMDSMB_GE_CYC_WDATA 3
103 #define AMDSMB_GE_CYC_PROCCALL 4
104 #define AMDSMB_GE_CYC_BLOCK 5
105
106 #define AMDSMB_HSTADDR 0xE4
107 #define AMDSMB_HSTDATA 0xE6
108 #define AMDSMB_HSTCMD 0xE8
109 #define AMDSMB_HSTDFIFO 0xE9
110 #define AMDSMB_HSLVDATA 0xEA
111 #define AMDSMB_HSLVDA 0xEC
112 #define AMDSMB_HSLVDDR 0xEE
113 #define AMDSMB_SNPADDR 0xEF
114
115 struct amdpm_softc {
116         int base;
117         int rid;
118         struct resource *res;
119         bus_space_tag_t smbst;
120         bus_space_handle_t smbsh;
121 };
122
123 struct amdsmb_softc {
124         int base;
125         device_t smbus;
126         struct amdpm_softc *amdpm;
127 };
128
129 #define AMDPM_SMBINB(amdsmb,register) \
130         (bus_space_read_1(amdsmb->amdpm->smbst, amdsmb->amdpm->smbsh, register))
131 #define AMDPM_SMBOUTB(amdsmb,register,value) \
132         (bus_space_write_1(amdsmb->amdpm->smbst, amdsmb->amdpm->smbsh, register, value))
133 #define AMDPM_SMBINW(amdsmb,register) \
134         (bus_space_read_2(amdsmb->amdpm->smbst, amdsmb->amdpm->smbsh, register))
135 #define AMDPM_SMBOUTW(amdsmb,register,value) \
136         (bus_space_write_2(amdsmb->amdpm->smbst, amdsmb->amdpm->smbsh, register, value))
137
138 static int amdsmb_probe(device_t);
139 static int amdsmb_attach(device_t);
140 static int amdsmb_smb_callback(device_t, int, caddr_t *);
141 static int amdsmb_smb_quick(device_t dev, u_char slave, int how);
142 static int amdsmb_smb_sendb(device_t dev, u_char slave, char byte);
143 static int amdsmb_smb_recvb(device_t dev, u_char slave, char *byte);
144 static int amdsmb_smb_writeb(device_t dev, u_char slave, char cmd, char byte);
145 static int amdsmb_smb_readb(device_t dev, u_char slave, char cmd, char *byte);
146 static int amdsmb_smb_writew(device_t dev, u_char slave, char cmd, short word);
147 static int amdsmb_smb_readw(device_t dev, u_char slave, char cmd, short *word);
148 static int amdsmb_smb_bwrite(device_t dev, u_char slave, char cmd, u_char count, char *buf);
149 static int amdsmb_smb_bread(device_t dev, u_char slave, char cmd, u_char count, char *byte);
150
151 static int amdpm_probe(device_t);
152 static int amdpm_attach(device_t);
153
154
155 static int
156 amdpm_probe(device_t dev)
157 {
158         u_long base;
159         
160         if ((pci_get_vendor(dev) == AMDPM_VENDORID_AMD) &&
161             (pci_get_device(dev) == AMDPM_DEVICEID_AMD756PM)) {
162               device_set_desc(dev, "AMD 756 Power Management Controller");
163               
164               /* 
165                * We have to do this, since the BIOS won't give us the
166                * resource info (not mine, anyway).
167                */
168               base = pci_read_config(dev, AMDPCI_PMBASE, 4);
169               base &= 0xff00;
170               bus_set_resource(dev, SYS_RES_IOPORT, AMDPCI_PMBASE, base, 256);
171               return (0);
172         }
173         return ENXIO;
174 }
175
176 static int
177 amdpm_attach(device_t dev)
178 {
179         struct amdpm_softc *amdpm_sc = device_get_softc(dev);
180         u_char val_b;
181         int unit = device_get_unit(dev);
182         device_t smbinterface;
183         
184         /* Enable I/O block access */
185         val_b = pci_read_config(dev, AMDPCI_GEN_CONFIG_PM, 1);
186         pci_write_config(dev, AMDPCI_GEN_CONFIG_PM, val_b | AMDPCI_PMIOEN, 1);
187
188         /* Allocate I/O space */
189         amdpm_sc->rid = AMDPCI_PMBASE;
190         amdpm_sc->res = bus_alloc_resource(dev, SYS_RES_IOPORT, &amdpm_sc->rid, 0, ~0, 1, RF_ACTIVE);
191         
192         if (amdpm_sc->res == NULL) {
193                 device_printf(dev, "could not map i/o space\n");
194                 return (ENXIO);
195         }            
196
197         amdpm_sc->smbst = rman_get_bustag(amdpm_sc->res);
198         amdpm_sc->smbsh = rman_get_bushandle(amdpm_sc->res);
199         
200         smbinterface = device_add_child(dev, "amdsmb", unit);
201         if (!smbinterface)
202                 device_printf(dev, "could not add SMBus device\n");
203         else
204                 device_probe_and_attach(smbinterface);
205
206         return (0);
207 }
208
209 static int
210 amdsmb_probe(device_t dev)
211 {
212         struct amdsmb_softc *amdsmb_sc = (struct amdsmb_softc *)device_get_softc(dev);
213
214         /* Allocate a new smbus device */
215         amdsmb_sc->smbus = smbus_alloc_bus(dev);
216         if (!amdsmb_sc->smbus)
217                 return (EINVAL);
218
219         device_set_desc(dev, "AMD 756 SMBus interface");
220         device_printf(dev, "AMD 756 SMBus interface\n");
221
222         return (0);
223 }
224
225 static int
226 amdsmb_attach(device_t dev)
227 {
228         struct amdsmb_softc *amdsmb_sc = (struct amdsmb_softc *)device_get_softc(dev);
229
230         amdsmb_sc->amdpm = device_get_softc(device_get_parent(dev));
231         
232         /* Probe and attach the smbus */
233         device_probe_and_attach(amdsmb_sc->smbus);
234
235         return (0);
236 }
237
238 static int
239 amdsmb_smb_callback(device_t dev, int index, caddr_t *data)
240 {
241         int error = 0;
242
243         switch (index) {
244         case SMB_REQUEST_BUS:
245         case SMB_RELEASE_BUS:
246                 break;
247         default:
248                 error = EINVAL;
249         }
250
251         return (error);
252 }
253
254 static int
255 amdsmb_clear(struct amdsmb_softc *sc)
256 {
257         AMDPM_SMBOUTW(sc, AMDSMB_GLOBAL_STATUS, AMDSMB_GS_CLEAR_STS);
258         DELAY(10);
259
260         return (0);
261 }
262
263 static int
264 amdsmb_abort(struct amdsmb_softc *sc)
265 {
266         u_short l;
267         
268         l = AMDPM_SMBINW(sc, AMDSMB_GLOBAL_ENABLE);
269         AMDPM_SMBOUTW(sc, AMDSMB_GLOBAL_ENABLE, l | AMDSMB_GE_ABORT);
270
271         return (0);
272 }
273
274 static int
275 amdsmb_idle(struct amdsmb_softc *sc)
276 {
277         u_short sts;
278
279         sts = AMDPM_SMBINW(sc, AMDSMB_GLOBAL_STATUS);
280
281         AMDPM_DEBUG(printf("amdpm: busy? STS=0x%x\n", sts));
282
283         return (~(sts & AMDSMB_GS_HST_STS));
284 }
285
286 /*
287  * Poll the SMBus controller
288  */
289 static int
290 amdsmb_wait(struct amdsmb_softc *sc)
291 {
292         int count = 10000;
293         u_short sts = 0;
294         int error;
295
296         /* Wait for command to complete (SMBus controller is idle) */
297         while(count--) {
298                 DELAY(10);
299                 sts = AMDPM_SMBINW(sc, AMDSMB_GLOBAL_STATUS);
300                 if (!(sts & AMDSMB_GS_HST_STS))
301                         break;
302         }
303
304         AMDPM_DEBUG(printf("amdpm: STS=0x%x (count=%d)\n", sts, count));
305
306         error = SMB_ENOERR;
307
308         if (!count)
309                 error |= SMB_ETIMEOUT;
310
311         if (sts & AMDSMB_GS_ABRT_STS)
312                 error |= SMB_EABORT;
313
314         if (sts & AMDSMB_GS_COL_STS)
315                 error |= SMB_ENOACK;
316
317         if (sts & AMDSMB_GS_PRERR_STS)
318                 error |= SMB_EBUSERR;
319
320         if (error != SMB_ENOERR)
321                 amdsmb_clear(sc);
322
323         return (error);
324 }
325
326 static int
327 amdsmb_smb_quick(device_t dev, u_char slave, int how)
328 {
329         struct amdsmb_softc *sc = (struct amdsmb_softc *)device_get_softc(dev);
330         int error;
331         u_short l;
332
333         amdsmb_clear(sc);
334         if (!amdsmb_idle(sc))
335                 return (EBUSY);
336
337         switch (how) {
338         case SMB_QWRITE:
339                 AMDPM_DEBUG(printf("amdpm: QWRITE to 0x%x", slave));
340                 AMDPM_SMBOUTW(sc, AMDSMB_HSTADDR, slave & ~LSB);
341                 break;
342         case SMB_QREAD:
343                 AMDPM_DEBUG(printf("amdpm: QREAD to 0x%x", slave));
344                 AMDPM_SMBOUTW(sc, AMDSMB_HSTADDR, slave | LSB);
345                 break;
346         default:
347                 panic("%s: unknown QUICK command (%x)!", __FUNCTION__, how);
348         }
349         l = AMDPM_SMBINW(sc, AMDSMB_GLOBAL_ENABLE);
350         AMDPM_SMBOUTW(sc, AMDSMB_GLOBAL_ENABLE, (l & 0xfff8) | AMDSMB_GE_CYC_QUICK | AMDSMB_GE_HOST_STC);
351
352         error = amdsmb_wait(sc);
353
354         AMDPM_DEBUG(printf(", error=0x%x\n", error));
355
356         return (error);
357 }
358
359 static int
360 amdsmb_smb_sendb(device_t dev, u_char slave, char byte)
361 {
362         struct amdsmb_softc *sc = (struct amdsmb_softc *)device_get_softc(dev);
363         int error;
364         u_short l;
365
366         amdsmb_clear(sc);
367         if (!amdsmb_idle(sc))
368                 return (SMB_EBUSY);
369
370         AMDPM_SMBOUTW(sc, AMDSMB_HSTADDR, slave & ~LSB);
371         AMDPM_SMBOUTW(sc, AMDSMB_HSTDATA, byte);
372         l = AMDPM_SMBINW(sc, AMDSMB_GLOBAL_ENABLE);
373         AMDPM_SMBOUTW(sc, AMDSMB_GLOBAL_ENABLE, (l & 0xfff8) | AMDSMB_GE_CYC_BYTE | AMDSMB_GE_HOST_STC);
374
375         error = amdsmb_wait(sc);
376
377         AMDPM_DEBUG(printf("amdpm: SENDB to 0x%x, byte=0x%x, error=0x%x\n", slave, byte, error));
378
379         return (error);
380 }
381
382 static int
383 amdsmb_smb_recvb(device_t dev, u_char slave, char *byte)
384 {
385         struct amdsmb_softc *sc = (struct amdsmb_softc *)device_get_softc(dev);
386         int error;
387         u_short l;
388
389         amdsmb_clear(sc);
390         if (!amdsmb_idle(sc))
391                 return (SMB_EBUSY);
392
393         AMDPM_SMBOUTW(sc, AMDSMB_HSTADDR, slave | LSB);
394         l = AMDPM_SMBINW(sc, AMDSMB_GLOBAL_ENABLE);
395         AMDPM_SMBOUTW(sc, AMDSMB_GLOBAL_ENABLE, (l & 0xfff8) | AMDSMB_GE_CYC_BYTE | AMDSMB_GE_HOST_STC);
396
397         if ((error = amdsmb_wait(sc)) == SMB_ENOERR)
398                 *byte = AMDPM_SMBINW(sc, AMDSMB_HSTDATA);
399
400         AMDPM_DEBUG(printf("amdpm: RECVB from 0x%x, byte=0x%x, error=0x%x\n", slave, *byte, error));
401
402         return (error);
403 }
404
405 static int
406 amdsmb_smb_writeb(device_t dev, u_char slave, char cmd, char byte)
407 {
408         struct amdsmb_softc *sc = (struct amdsmb_softc *)device_get_softc(dev);
409         int error;
410         u_short l;
411
412         amdsmb_clear(sc);
413         if (!amdsmb_idle(sc))
414                 return (SMB_EBUSY);
415
416         AMDPM_SMBOUTW(sc, AMDSMB_HSTADDR, slave & ~LSB);
417         AMDPM_SMBOUTW(sc, AMDSMB_HSTDATA, byte);
418         AMDPM_SMBOUTB(sc, AMDSMB_HSTCMD, cmd);
419         l = AMDPM_SMBINW(sc, AMDSMB_GLOBAL_ENABLE);
420         AMDPM_SMBOUTW(sc, AMDSMB_GLOBAL_ENABLE, (l & 0xfff8) | AMDSMB_GE_CYC_BDATA | AMDSMB_GE_HOST_STC);
421
422         error = amdsmb_wait(sc);
423
424         AMDPM_DEBUG(printf("amdpm: WRITEB to 0x%x, cmd=0x%x, byte=0x%x, error=0x%x\n", slave, cmd, byte, error));
425
426         return (error);
427 }
428
429 static int
430 amdsmb_smb_readb(device_t dev, u_char slave, char cmd, char *byte)
431 {
432         struct amdsmb_softc *sc = (struct amdsmb_softc *)device_get_softc(dev);
433         int error;
434         u_short l;
435
436         amdsmb_clear(sc);
437         if (!amdsmb_idle(sc))
438                 return (SMB_EBUSY);
439
440         AMDPM_SMBOUTW(sc, AMDSMB_HSTADDR, slave | LSB);
441         AMDPM_SMBOUTB(sc, AMDSMB_HSTCMD, cmd);
442         l = AMDPM_SMBINW(sc, AMDSMB_GLOBAL_ENABLE);
443         AMDPM_SMBOUTW(sc, AMDSMB_GLOBAL_ENABLE, (l & 0xfff8) | AMDSMB_GE_CYC_BDATA | AMDSMB_GE_HOST_STC);
444
445         if ((error = amdsmb_wait(sc)) == SMB_ENOERR)
446                 *byte = AMDPM_SMBINW(sc, AMDSMB_HSTDATA);
447
448         AMDPM_DEBUG(printf("amdpm: READB from 0x%x, cmd=0x%x, byte=0x%x, error=0x%x\n", slave, cmd, *byte, error));
449
450         return (error);
451 }
452
453 static int
454 amdsmb_smb_writew(device_t dev, u_char slave, char cmd, short word)
455 {
456         struct amdsmb_softc *sc = (struct amdsmb_softc *)device_get_softc(dev);
457         int error;
458         u_short l;
459
460         amdsmb_clear(sc);
461         if (!amdsmb_idle(sc))
462                 return (SMB_EBUSY);
463
464         AMDPM_SMBOUTW(sc, AMDSMB_HSTADDR, slave & ~LSB);
465         AMDPM_SMBOUTW(sc, AMDSMB_HSTDATA, word);
466         AMDPM_SMBOUTB(sc, AMDSMB_HSTCMD, cmd);
467         l = AMDPM_SMBINW(sc, AMDSMB_GLOBAL_ENABLE);
468         AMDPM_SMBOUTW(sc, AMDSMB_GLOBAL_ENABLE, (l & 0xfff8) | AMDSMB_GE_CYC_WDATA | AMDSMB_GE_HOST_STC);
469
470         error = amdsmb_wait(sc);
471
472         AMDPM_DEBUG(printf("amdpm: WRITEW to 0x%x, cmd=0x%x, word=0x%x, error=0x%x\n", slave, cmd, word, error));
473
474         return (error);
475 }
476
477 static int
478 amdsmb_smb_readw(device_t dev, u_char slave, char cmd, short *word)
479 {
480         struct amdsmb_softc *sc = (struct amdsmb_softc *)device_get_softc(dev);
481         int error;
482         u_short l;
483
484         amdsmb_clear(sc);
485         if (!amdsmb_idle(sc))
486                 return (SMB_EBUSY);
487
488         AMDPM_SMBOUTW(sc, AMDSMB_HSTADDR, slave | LSB);
489         AMDPM_SMBOUTB(sc, AMDSMB_HSTCMD, cmd);
490         l = AMDPM_SMBINW(sc, AMDSMB_GLOBAL_ENABLE);
491         AMDPM_SMBOUTW(sc, AMDSMB_GLOBAL_ENABLE, (l & 0xfff8) | AMDSMB_GE_CYC_WDATA | AMDSMB_GE_HOST_STC);
492
493         if ((error = amdsmb_wait(sc)) == SMB_ENOERR)
494                 *word = AMDPM_SMBINW(sc, AMDSMB_HSTDATA);
495
496         AMDPM_DEBUG(printf("amdpm: READW from 0x%x, cmd=0x%x, word=0x%x, error=0x%x\n", slave, cmd, *word, error));
497
498         return (error);
499 }
500
501 static int
502 amdsmb_smb_bwrite(device_t dev, u_char slave, char cmd, u_char count, char *buf)
503 {
504         struct amdsmb_softc *sc = (struct amdsmb_softc *)device_get_softc(dev);
505         u_char remain, len, i;
506         int error = SMB_ENOERR;
507         u_short l;
508
509         amdsmb_clear(sc);
510         if(!amdsmb_idle(sc))
511                 return (SMB_EBUSY);
512
513         remain = count;
514         while (remain) {
515                 len = min(remain, 32);
516
517                 AMDPM_SMBOUTW(sc, AMDSMB_HSTADDR, slave & ~LSB);
518         
519                 /*
520                  * Do we have to reset the internal 32-byte buffer?
521                  * Can't see how to do this from the data sheet.
522                  */
523
524                 AMDPM_SMBOUTW(sc, AMDSMB_HSTDATA, len);
525
526                 /* Fill the 32-byte internal buffer */
527                 for (i=0; i<len; i++) {
528                         AMDPM_SMBOUTB(sc, AMDSMB_HSTDFIFO, buf[count-remain+i]);
529                         DELAY(2);
530                 }
531                 AMDPM_SMBOUTB(sc, AMDSMB_HSTCMD, cmd);
532                 l = AMDPM_SMBINW(sc, AMDSMB_GLOBAL_ENABLE);
533                 AMDPM_SMBOUTW(sc, AMDSMB_GLOBAL_ENABLE, (l & 0xfff8) | AMDSMB_GE_CYC_BLOCK | AMDSMB_GE_HOST_STC);
534
535                 if ((error = amdsmb_wait(sc)) != SMB_ENOERR)
536                         goto error;
537
538                 remain -= len;
539         }
540
541 error:
542         AMDPM_DEBUG(printf("amdpm: WRITEBLK to 0x%x, count=0x%x, cmd=0x%x, error=0x%x", slave, count, cmd, error));
543
544         return (error);
545 }
546
547 static int
548 amdsmb_smb_bread(device_t dev, u_char slave, char cmd, u_char count, char *buf)
549 {
550         struct amdsmb_softc *sc = (struct amdsmb_softc *)device_get_softc(dev);
551         u_char remain, len, i;
552         int error = SMB_ENOERR;
553         u_short l;
554
555         amdsmb_clear(sc);
556         if (!amdsmb_idle(sc))
557                 return (SMB_EBUSY);
558
559         remain = count;
560         while (remain) {
561                 AMDPM_SMBOUTW(sc, AMDSMB_HSTADDR, slave | LSB);
562         
563                 AMDPM_SMBOUTB(sc, AMDSMB_HSTCMD, cmd);
564
565                 l = AMDPM_SMBINW(sc, AMDSMB_GLOBAL_ENABLE);
566                 AMDPM_SMBOUTW(sc, AMDSMB_GLOBAL_ENABLE, (l & 0xfff8) | AMDSMB_GE_CYC_BLOCK | AMDSMB_GE_HOST_STC);
567                 
568                 if ((error = amdsmb_wait(sc)) != SMB_ENOERR)
569                         goto error;
570
571                 len = AMDPM_SMBINW(sc, AMDSMB_HSTDATA);
572
573                 /* Read the 32-byte internal buffer */
574                 for (i=0; i<len; i++) {
575                         buf[count-remain+i] = AMDPM_SMBINB(sc, AMDSMB_HSTDFIFO);
576                         DELAY(2);
577                 }
578
579                 remain -= len;
580         }
581 error:
582         AMDPM_DEBUG(printf("amdpm: READBLK to 0x%x, count=0x%x, cmd=0x%x, error=0x%x", slave, count, cmd, error));
583
584         return (error);
585 }
586
587 static devclass_t amdpm_devclass;
588
589 static device_method_t amdpm_methods[] = {
590         /* Device interface */
591         DEVMETHOD(device_probe,         amdpm_probe),
592         DEVMETHOD(device_attach,        amdpm_attach),
593         
594         { 0, 0 }
595 };
596
597 static driver_t amdpm_driver = {
598         "amdpm",
599         amdpm_methods,
600         sizeof(struct amdpm_softc),
601 };
602
603 static devclass_t amdsmb_devclass;
604
605 static device_method_t amdsmb_methods[] = {
606         /* Device interface */
607         DEVMETHOD(device_probe,         amdsmb_probe),
608         DEVMETHOD(device_attach,        amdsmb_attach),
609
610         /* Bus interface */
611         DEVMETHOD(bus_print_child,      bus_generic_print_child),
612         
613         /* SMBus interface */
614         DEVMETHOD(smbus_callback,       amdsmb_smb_callback),
615         DEVMETHOD(smbus_quick,          amdsmb_smb_quick),
616         DEVMETHOD(smbus_sendb,          amdsmb_smb_sendb),
617         DEVMETHOD(smbus_recvb,          amdsmb_smb_recvb),
618         DEVMETHOD(smbus_writeb,         amdsmb_smb_writeb),
619         DEVMETHOD(smbus_readb,          amdsmb_smb_readb),
620         DEVMETHOD(smbus_writew,         amdsmb_smb_writew),
621         DEVMETHOD(smbus_readw,          amdsmb_smb_readw),
622         DEVMETHOD(smbus_bwrite,         amdsmb_smb_bwrite),
623         DEVMETHOD(smbus_bread,          amdsmb_smb_bread),
624         
625         { 0, 0 }
626 };
627
628 static driver_t amdsmb_driver = {
629         "amdsmb",
630         amdsmb_methods,
631         sizeof(struct amdsmb_softc),
632 };
633
634 DRIVER_MODULE(amdpm, pci, amdpm_driver, amdpm_devclass, 0, 0);
635 DRIVER_MODULE(amdsmb, amdpm, amdsmb_driver, amdsmb_devclass, 0, 0);