nviic.c revision 1.8
1/*	$OpenBSD: nviic.c,v 1.8 2006/11/06 04:00:15 brad Exp $ */
2
3/*
4 * Copyright (c) 2005 David Gwynne <dlg@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#include <sys/param.h>
20#include <sys/systm.h>
21#include <sys/device.h>
22#include <sys/kernel.h>
23#include <sys/lock.h>
24#include <sys/proc.h>
25
26#include <machine/bus.h>
27
28#include <dev/pci/pcidevs.h>
29#include <dev/pci/pcireg.h>
30#include <dev/pci/pcivar.h>
31
32#include <dev/i2c/i2cvar.h>
33
34/* PCI Configuration space registers */
35#define NVI_PCI_SMBASE1		0x20
36#define NVI_PCI_SMBASE2		0x24
37
38#define NVI_OLD_PCI_SMBASE1	0x50
39#define NVI_OLD_PCI_SMBASE2	0x54
40
41#define NVI_SMBASE(x)		((x) & 0xfffc)
42#define NVI_SMBASE_SIZE		8
43
44/* SMBus 2.0 registers */
45#define NVI_SMB_PRTCL		0x00	/* protocol, PEC */
46#define NVI_SMB_STS		0x01	/* status */
47#define NVI_SMB_ADDR		0x02	/* address */
48#define NVI_SMB_CMD		0x03	/* command */
49#define NVI_SMB_DATA(o)		(0x04 + (o))	/* 32 data registers */
50#define NVI_SMB_BCNT		0x24	/* number of data bytes */
51#define NVI_SMB_ALRM_A		0x25	/* alarm address */
52#define NVI_SMB_ALRM_D		0x26	/* 2 bytes alarm data */
53
54#define NVI_SMB_STS_DONE	0x80
55#define NVI_SMB_STS_ALRM	0x40
56#define NVI_SMB_STS_RES		0x20
57#define NVI_SMB_STS_STATUS	0x1f
58
59#define NVI_SMB_PRTCL_WRITE	0x00
60#define NVI_SMB_PRTCL_READ	0x01
61#define NVI_SMB_PRTCL_QUICK	0x02
62#define NVI_SMB_PRTCL_BYTE	0x04
63#define NVI_SMB_PRTCL_BYTE_DATA	0x06
64#define NVI_SMB_PRTCL_WORD_DATA	0x08
65#define NVI_SMB_PRTCL_BLOCK_DATA 0x0a
66#define NVI_SMB_PRTCL_PROC_CALL	0x0c
67#define NVI_SMB_PRTCL_BLOCK_PROC_CALL 0x0d
68#define NVI_SMB_PRTCL_PEC	0x80
69
70#ifdef NVIIC_DEBUG
71#define DPRINTF(x...)		do { if (nviic_debug) printf(x); } while (0)
72int nviic_debug = 1;
73#else
74#define DPRINTF(x...)		/* x */
75#endif
76
77/* there are two iic busses on this pci device */
78#define NVIIC_NBUS		2
79
80int		nviic_match(struct device *, void *, void *);
81void		nviic_attach(struct device *, struct device *, void *);
82
83struct nviic_softc;
84
85struct nviic_controller {
86	struct nviic_softc	*nc_sc;
87	bus_space_handle_t	nc_ioh;
88	struct lock		nc_lock;
89	struct i2c_controller	nc_i2c;
90};
91
92struct nviic_softc {
93	struct device		sc_dev;
94	bus_space_tag_t		sc_iot;
95	struct nviic_controller	sc_nc[NVIIC_NBUS];
96};
97
98struct cfattach nviic_ca = {
99	sizeof(struct nviic_softc), nviic_match, nviic_attach
100};
101
102struct cfdriver nviic_cd = {
103	NULL, "nviic", DV_DULL
104};
105
106int		nviic_i2c_acquire_bus(void *, int);
107void		nviic_i2c_release_bus(void *, int);
108int		nviic_i2c_exec(void *, i2c_op_t, i2c_addr_t, const void *,
109		    size_t, void *, size_t, int);
110
111u_int8_t	nviic_read(struct nviic_controller *, bus_size_t);
112void		nviic_write(struct nviic_controller *, bus_size_t, u_int8_t);
113
114#define DEVNAME(s)		((sc)->sc_dev.dv_xname)
115
116const struct pci_matchid nviic_ids[] = {
117	{ PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_NFORCE2_SMB },
118	{ PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_NFORCE2_400_SMB },
119	{ PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_NFORCE3_SMB },
120	{ PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_NFORCE3_250_SMB },
121	{ PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_NFORCE4_SMB },
122	{ PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP51_SMB },
123	{ PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP55_SMB },
124	{ PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP61_SMB },
125	{ PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP65_SMB },
126	{ PCI_VENDOR_NVIDIA, PCI_PRODUCT_NVIDIA_MCP67_SMB }
127};
128
129int
130nviic_match(struct device *parent, void *match, void *aux)
131{
132	return (pci_matchbyid(aux, nviic_ids,
133	    sizeof(nviic_ids) / sizeof(nviic_ids[0])));
134}
135
136void
137nviic_attach(struct device *parent, struct device *self, void *aux)
138{
139	struct nviic_softc		*sc = (struct nviic_softc *)self;
140	struct pci_attach_args		*pa = aux;
141	struct nviic_controller		*nc;
142	struct i2cbus_attach_args	iba;
143	int				baseregs[NVIIC_NBUS];
144	pcireg_t			reg;
145	int				i;
146
147	sc->sc_iot = pa->pa_iot;
148
149	printf("\n");
150
151	/* Older chipsets used non-standard BARs */
152	switch (PCI_PRODUCT(pa->pa_id)) {
153	case PCI_PRODUCT_NVIDIA_NFORCE2_SMB:
154	case PCI_PRODUCT_NVIDIA_NFORCE2_400_SMB:
155	case PCI_PRODUCT_NVIDIA_NFORCE3_SMB:
156	case PCI_PRODUCT_NVIDIA_NFORCE3_250_SMB:
157	case PCI_PRODUCT_NVIDIA_NFORCE4_SMB:
158		baseregs[0] = NVI_OLD_PCI_SMBASE1;
159		baseregs[1] = NVI_OLD_PCI_SMBASE2;
160		break;
161	default:
162		baseregs[0] = NVI_PCI_SMBASE1;
163		baseregs[1] = NVI_PCI_SMBASE2;
164	}
165
166	for (i = 0; i < NVIIC_NBUS; i++) {
167		nc = &sc->sc_nc[i];
168
169		reg = pci_conf_read(pa->pa_pc, pa->pa_tag, baseregs[i]);
170		if (bus_space_map(sc->sc_iot, NVI_SMBASE(reg), NVI_SMBASE_SIZE,
171		    0, &nc->nc_ioh)) {
172			printf("%s: unable to map space for bus %d\n",
173			    DEVNAME(sc), i);
174			continue;
175		}
176
177		nc->nc_sc = sc;
178		lockinit(&nc->nc_lock, PRIBIO | PCATCH, "iiclk", 0, 0);
179		nc->nc_i2c.ic_cookie = nc;
180		nc->nc_i2c.ic_acquire_bus = nviic_i2c_acquire_bus;
181		nc->nc_i2c.ic_release_bus = nviic_i2c_release_bus;
182		nc->nc_i2c.ic_exec = nviic_i2c_exec;
183
184		bzero(&iba, sizeof(iba));
185		iba.iba_name = "iic";
186		iba.iba_tag = &nc->nc_i2c;
187		config_found(self, &iba, iicbus_print);
188	}
189}
190
191int
192nviic_i2c_acquire_bus(void *arg, int flags)
193{
194	struct nviic_controller		*nc = arg;
195
196	if (cold || (flags & I2C_F_POLL))
197		return (0);
198
199	return (lockmgr(&nc->nc_lock, LK_EXCLUSIVE, NULL));
200}
201
202void
203nviic_i2c_release_bus(void *arg, int flags)
204{
205	struct nviic_controller		*nc = arg;
206
207	if (cold || (flags & I2C_F_POLL))
208		return;
209
210	lockmgr(&nc->nc_lock, LK_RELEASE, NULL);
211}
212
213int
214nviic_i2c_exec(void *arg, i2c_op_t op, i2c_addr_t addr,
215    const void *cmdbuf, size_t cmdlen, void *buf, size_t len, int flags)
216{
217	struct nviic_controller		*nc = arg;
218#ifdef NVIIC_DEBUG
219	struct nviic_softc		*sc = nc->nc_sc;
220#endif
221	u_int8_t			protocol;
222	u_int8_t			*b;
223	u_int8_t			sts;
224	int				i;
225
226	DPRINTF("%s: exec op: %d addr: 0x%x cmdlen: %d len: %d flags 0x%x\n",
227	    DEVNAME(sc), op, addr, cmdlen, len, flags);
228
229	if (cold)
230		flags |= I2C_F_POLL;
231
232	if (I2C_OP_STOP_P(op) == 0 || cmdlen > 1 || len > 2)
233		return (1);
234
235	/* set slave address */
236	nviic_write(nc, NVI_SMB_ADDR, addr << 1);
237
238	/* set command byte */
239	if (cmdlen > 0) {
240		b = (u_int8_t *)cmdbuf;
241		nviic_write(nc, NVI_SMB_CMD, b[0]);
242	}
243
244	b = (u_int8_t *)buf;
245
246	/* write data */
247	if (I2C_OP_WRITE_P(op)) {
248		for (i = 0; i < len; i++)
249			nviic_write(nc, NVI_SMB_DATA(i), b[i]);
250	}
251
252	switch (len) {
253	case 0:
254		protocol = NVI_SMB_PRTCL_BYTE;
255		break;
256	case 1:
257		protocol = NVI_SMB_PRTCL_BYTE_DATA;
258		break;
259	case 2:
260		protocol = NVI_SMB_PRTCL_WORD_DATA;
261		break;
262	}
263
264	/* set direction */
265	if (I2C_OP_READ_P(op))
266		protocol |= NVI_SMB_PRTCL_READ;
267
268	/* start transaction */
269	nviic_write(nc, NVI_SMB_PRTCL, protocol);
270
271	for (i = 1000; i > 0; i--) {
272		delay(100);
273		if (nviic_read(nc, NVI_SMB_PRTCL) == 0)
274			break;
275	}
276	if (i == 0) {
277		DPRINTF("%s: timeout\n", DEVNAME(sc));
278		return (1);
279	}
280
281	sts = nviic_read(nc, NVI_SMB_STS);
282	if (sts & NVI_SMB_STS_STATUS)
283		return (1);
284
285	/* read data */
286	if (I2C_OP_READ_P(op)) {
287		for (i = 0; i < len; i++)
288			b[i] = nviic_read(nc, NVI_SMB_DATA(i));
289	}
290
291	return (0);
292}
293
294u_int8_t
295nviic_read(struct nviic_controller *nc, bus_size_t r)
296{
297	struct nviic_softc		*sc = nc->nc_sc;
298
299	bus_space_barrier(sc->sc_iot, nc->nc_ioh, r, 1,
300	    BUS_SPACE_BARRIER_READ);
301	return (bus_space_read_1(sc->sc_iot, nc->nc_ioh, r));
302}
303
304void
305nviic_write(struct nviic_controller *nc, bus_size_t r, u_int8_t v)
306{
307	struct nviic_softc		*sc = nc->nc_sc;
308
309	bus_space_write_1(sc->sc_iot, nc->nc_ioh, r, v);
310	bus_space_barrier(sc->sc_iot, nc->nc_ioh, r, 1,
311	    BUS_SPACE_BARRIER_WRITE);
312}
313