1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
|
/* $OpenBSD: amdiic.c,v 1.3 2006/01/05 10:43:15 grange Exp $ */
/*
* Copyright (c) 2005 Alexander Yurchenko <grange@openbsd.org>
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
/*
* AMD-8111 SMBus controller driver.
*/
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/device.h>
#include <sys/kernel.h>
#include <sys/lock.h>
#include <sys/proc.h>
#include <machine/bus.h>
#include <dev/pci/pcidevs.h>
#include <dev/pci/pcireg.h>
#include <dev/pci/pcivar.h>
#include <dev/i2c/i2cvar.h>
#ifdef AMDIIC_DEBUG
#define DPRINTF(x) printf x
#else
#define DPRINTF(x)
#endif
#define AMDIIC_DELAY 100
#define AMDIIC_TIMEOUT 1
/* PCI configuration registers */
#define AMD8111_SMB_BASE 0x10 /* SMBus base address */
#define AMD8111_SMB_MISC 0x48 /* miscellaneous control */
#define AMD8111_SMB_MISC_SU (1 << 0) /* 16x clock speed-up */
#define AMD8111_SMB_MISC_INTEN (1 << 1) /* PCI IRQ enabled */
#define AMD8111_SMB_MISC_SCIEN (1 << 2) /* SCI enabled */
/* SMBus I/O registers */
#define AMD8111_SMB_SC_DATA 0x00 /* data port */
#define AMD8111_SMB_SC_ST 0x04 /* status */
#define AMD8111_SMB_SC_ST_OBF (1 << 0) /* output buffer full */
#define AMD8111_SMB_SC_ST_IBF (1 << 1) /* input buffer full */
#define AMD8111_SMB_SC_ST_CMD (1 << 3) /* command byte */
#define AMD8111_SMB_SC_ST_BITS "\020\001OBF\002IBF\004CMD"
#define AMD8111_SMB_SC_CMD 0x04 /* command port */
#define AMD8111_SMB_SC_CMD_RD 0x80 /* read */
#define AMD8111_SMB_SC_CMD_WR 0x81 /* write */
#define AMD8111_SMB_SC_IC 0x08 /* interrupt control */
/* Host controller interface registers */
#define AMD8111_SMB_PROTO 0x00 /* protocol */
#define AMD8111_SMB_PROTO_READ 0x01 /* read direction */
#define AMD8111_SMB_PROTO_QUICK 0x02 /* QUICK command */
#define AMD8111_SMB_PROTO_BYTE 0x04 /* BYTE command */
#define AMD8111_SMB_PROTO_BDATA 0x06 /* BYTE DATA command */
#define AMD8111_SMB_PROTO_WDATA 0x08 /* WORD DATA command */
#define AMD8111_SMB_STAT 0x01 /* status */
#define AMD8111_SMB_STAT_MASK 0x1f
#define AMD8111_SMB_STAT_DONE (1 << 7) /* command completion */
#define AMD8111_SMB_ADDR 0x02 /* address */
#define AMD8111_SMB_ADDR_SHIFT 1
#define AMD8111_SMB_CMD 0x03 /* SMBus command */
#define AMD8111_SMB_DATA(x) (0x04 + (x)) /* SMBus data */
struct amdiic_softc {
struct device sc_dev;
bus_space_tag_t sc_iot;
bus_space_handle_t sc_ioh;
void * sc_ih;
int sc_poll;
struct i2c_controller sc_i2c_tag;
struct lock sc_i2c_lock;
struct {
i2c_op_t op;
void * buf;
size_t len;
int flags;
volatile int error;
} sc_i2c_xfer;
};
int amdiic_match(struct device *, void *, void *);
void amdiic_attach(struct device *, struct device *, void *);
int amdiic_read(struct amdiic_softc *, u_int8_t);
int amdiic_write(struct amdiic_softc *, u_int8_t, u_int8_t);
int amdiic_wait(struct amdiic_softc *, int);
int amdiic_i2c_acquire_bus(void *, int);
void amdiic_i2c_release_bus(void *, int);
int amdiic_i2c_exec(void *, i2c_op_t, i2c_addr_t, const void *, size_t,
void *, size_t, int);
int amdiic_intr(void *);
struct cfattach amdiic_ca = {
sizeof(struct amdiic_softc),
amdiic_match,
amdiic_attach
};
struct cfdriver amdiic_cd = {
NULL, "amdiic", DV_DULL
};
const struct pci_matchid amdiic_ids[] = {
{ PCI_VENDOR_AMD, PCI_PRODUCT_AMD_8111_SMB }
};
int
amdiic_match(struct device *parent, void *match, void *aux)
{
return (pci_matchbyid(aux, amdiic_ids,
sizeof(amdiic_ids) / sizeof(amdiic_ids[0])));
}
void
amdiic_attach(struct device *parent, struct device *self, void *aux)
{
struct amdiic_softc *sc = (struct amdiic_softc *)self;
struct pci_attach_args *pa = aux;
struct i2cbus_attach_args iba;
pcireg_t conf;
bus_size_t iosize;
pci_intr_handle_t ih;
const char *intrstr = NULL;
/* Map I/O space */
if (pci_mapreg_map(pa, AMD8111_SMB_BASE, PCI_MAPREG_TYPE_IO, 0,
&sc->sc_iot, &sc->sc_ioh, NULL, &iosize, 0)) {
printf(": can't map I/O space\n");
return;
}
/* Read configuration */
conf = pci_conf_read(pa->pa_pc, pa->pa_tag, AMD8111_SMB_MISC);
DPRINTF((": conf 0x%x", conf));
if (conf & AMD8111_SMB_MISC_SCIEN) {
printf(": SCI");
sc->sc_poll = 1;
} else if (conf & AMD8111_SMB_MISC_INTEN) {
/* Install interrupt handler */
if (pci_intr_map(pa, &ih)) {
printf(": can't map interrupt\n");
goto fail;
}
intrstr = pci_intr_string(pa->pa_pc, ih);
sc->sc_ih = pci_intr_establish(pa->pa_pc, ih, IPL_BIO,
amdiic_intr, sc, sc->sc_dev.dv_xname);
if (sc->sc_ih == NULL) {
printf(": can't establish interrupt");
if (intrstr != NULL)
printf(" at %s", intrstr);
printf("\n");
goto fail;
}
printf(": %s", intrstr);
} else {
sc->sc_poll = 1;
}
printf("\n");
/* Attach I2C bus */
lockinit(&sc->sc_i2c_lock, PRIBIO | PCATCH, "iiclk", 0, 0);
sc->sc_i2c_tag.ic_cookie = sc;
sc->sc_i2c_tag.ic_acquire_bus = amdiic_i2c_acquire_bus;
sc->sc_i2c_tag.ic_release_bus = amdiic_i2c_release_bus;
sc->sc_i2c_tag.ic_exec = amdiic_i2c_exec;
bzero(&iba, sizeof(iba));
iba.iba_name = "iic";
iba.iba_tag = &sc->sc_i2c_tag;
config_found(self, &iba, iicbus_print);
return;
fail:
bus_space_unmap(sc->sc_iot, sc->sc_ioh, iosize);
}
int
amdiic_read(struct amdiic_softc *sc, u_int8_t reg)
{
if (amdiic_wait(sc, 0))
return (-1);
bus_space_write_1(sc->sc_iot, sc->sc_ioh, AMD8111_SMB_SC_CMD,
AMD8111_SMB_SC_CMD_RD);
if (amdiic_wait(sc, 0))
return (-1);
bus_space_write_1(sc->sc_iot, sc->sc_ioh, AMD8111_SMB_SC_DATA, reg);
if (amdiic_wait(sc, 1))
return (-1);
return (bus_space_read_1(sc->sc_iot, sc->sc_ioh, AMD8111_SMB_SC_DATA));
}
int
amdiic_write(struct amdiic_softc *sc, u_int8_t reg, u_int8_t val)
{
if (amdiic_wait(sc, 0))
return (-1);
bus_space_write_1(sc->sc_iot, sc->sc_ioh, AMD8111_SMB_SC_CMD,
AMD8111_SMB_SC_CMD_WR);
if (amdiic_wait(sc, 0))
return (-1);
bus_space_write_1(sc->sc_iot, sc->sc_ioh, AMD8111_SMB_SC_DATA, reg);
if (amdiic_wait(sc, 0))
return (-1);
bus_space_write_1(sc->sc_iot, sc->sc_ioh, AMD8111_SMB_SC_DATA, val);
return (0);
}
int
amdiic_wait(struct amdiic_softc *sc, int output)
{
int retries;
u_int8_t st;
for (retries = 100; retries > 0; retries--) {
st = bus_space_read_1(sc->sc_iot, sc->sc_ioh,
AMD8111_SMB_SC_ST);
if (output && (st & AMD8111_SMB_SC_ST_OBF))
return (0);
if (!output && (st & AMD8111_SMB_SC_ST_IBF) == 0)
return (0);
DELAY(1);
}
DPRINTF(("%s: %s wait timeout: st 0x%b\n", sc->sc_dev.dv_xname,
(output ? "output" : "input"), st));
return (1);
}
int
amdiic_i2c_acquire_bus(void *cookie, int flags)
{
struct amdiic_softc *sc = cookie;
if (cold || sc->sc_poll || (flags & I2C_F_POLL))
return (0);
return (lockmgr(&sc->sc_i2c_lock, LK_EXCLUSIVE, NULL));
}
void
amdiic_i2c_release_bus(void *cookie, int flags)
{
struct amdiic_softc *sc = cookie;
if (cold || sc->sc_poll || (flags & I2C_F_POLL))
return;
lockmgr(&sc->sc_i2c_lock, LK_RELEASE, NULL);
}
int
amdiic_i2c_exec(void *cookie, i2c_op_t op, i2c_addr_t addr,
const void *cmdbuf, size_t cmdlen, void *buf, size_t len, int flags)
{
struct amdiic_softc *sc = cookie;
u_int8_t *b;
u_int8_t proto, st;
int retries;
DPRINTF(("%s: exec op %d, addr 0x%x, cmdlen %d, len %d, "
"flags 0x%x\n", sc->sc_dev.dv_xname, op, addr,
cmdlen, len, flags));
if (cold || sc->sc_poll)
flags |= I2C_F_POLL;
if (!I2C_OP_STOP_P(op) || cmdlen > 1 || len > 2)
return (1);
/* Setup transfer */
sc->sc_i2c_xfer.op = op;
sc->sc_i2c_xfer.buf = buf;
sc->sc_i2c_xfer.len = len;
sc->sc_i2c_xfer.flags = flags;
sc->sc_i2c_xfer.error = 0;
/* Set slave address */
if (amdiic_write(sc, AMD8111_SMB_ADDR,
addr << AMD8111_SMB_ADDR_SHIFT) == -1)
return (1);
b = (void *)cmdbuf;
if (cmdlen > 0)
/* Set command byte */
if (amdiic_write(sc, AMD8111_SMB_CMD, b[0]) == -1)
return (1);
if (I2C_OP_WRITE_P(op)) {
/* Write data */
b = buf;
if (len > 0)
if (amdiic_write(sc, AMD8111_SMB_DATA(0), b[0]) == -1)
return (1);
if (len > 1)
if (amdiic_write(sc, AMD8111_SMB_DATA(1), b[1]) == -1)
return (1);
}
/* Set SMBus command */
if (len == 0)
proto = AMD8111_SMB_PROTO_BYTE;
else if (len == 1)
proto = AMD8111_SMB_PROTO_BDATA;
else if (len == 2)
proto = AMD8111_SMB_PROTO_WDATA;
/* Set direction */
if (I2C_OP_READ_P(op))
proto |= AMD8111_SMB_PROTO_READ;
/* Start transaction */
amdiic_write(sc, AMD8111_SMB_PROTO, proto);
if (flags & I2C_F_POLL) {
/* Poll for completion */
DELAY(AMDIIC_DELAY);
for (retries = 1000; retries > 0; retries--) {
st = amdiic_read(sc, AMD8111_SMB_STAT);
if (st != 0)
break;
DELAY(AMDIIC_DELAY);
}
if (st == 0) {
printf("%s: timeout\n", sc->sc_dev.dv_xname);
return (1);
}
amdiic_intr(sc);
} else {
/* Wait for interrupt */
if (tsleep(sc, PRIBIO, "iicexec", AMDIIC_TIMEOUT * hz))
return (1);
}
if (sc->sc_i2c_xfer.error)
return (1);
return (0);
}
int
amdiic_intr(void *arg)
{
struct amdiic_softc *sc = arg;
int st;
u_int8_t *b;
size_t len;
/* Read status */
if ((st = amdiic_read(sc, AMD8111_SMB_STAT)) == -1)
return (-1);
if (st == 0)
/* Interrupt was not for us */
return (0);
DPRINTF(("%s: intr: st 0x%x\n", sc->sc_dev.dv_xname, st));
/* Check for errors */
if ((st & AMD8111_SMB_STAT_MASK) != 0) {
sc->sc_i2c_xfer.error = 1;
goto done;
}
if (st & AMD8111_SMB_STAT_DONE) {
if (I2C_OP_WRITE_P(sc->sc_i2c_xfer.op))
goto done;
/* Read data */
b = sc->sc_i2c_xfer.buf;
len = sc->sc_i2c_xfer.len;
if (len > 0)
b[0] = amdiic_read(sc, AMD8111_SMB_DATA(0));
if (len > 1)
b[1] = amdiic_read(sc, AMD8111_SMB_DATA(1));
}
done:
if ((sc->sc_i2c_xfer.flags & I2C_F_POLL) == 0)
wakeup(sc);
return (1);
}
|