nviic.c revision 1.7
1/*	$OpenBSD: nviic.c,v 1.7 2006/07/23 02:12:12 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};
127
128int
129nviic_match(struct device *parent, void *match, void *aux)
130{
131	return (pci_matchbyid(aux, nviic_ids,
132	    sizeof(nviic_ids) / sizeof(nviic_ids[0])));
133}
134
135void
136nviic_attach(struct device *parent, struct device *self, void *aux)
137{
138	struct nviic_softc		*sc = (struct nviic_softc *)self;
139	struct pci_attach_args		*pa = aux;
140	struct nviic_controller		*nc;
141	struct i2cbus_attach_args	iba;
142	int				baseregs[NVIIC_NBUS];
143	pcireg_t			reg;
144	int				i;
145
146	sc->sc_iot = pa->pa_iot;
147
148	printf("\n");
149
150	/* Older chipsets used non-standard BARs */
151	switch (PCI_PRODUCT(pa->pa_id)) {
152	case PCI_PRODUCT_NVIDIA_NFORCE2_SMB:
153	case PCI_PRODUCT_NVIDIA_NFORCE2_400_SMB:
154	case PCI_PRODUCT_NVIDIA_NFORCE3_SMB:
155	case PCI_PRODUCT_NVIDIA_NFORCE3_250_SMB:
156	case PCI_PRODUCT_NVIDIA_NFORCE4_SMB:
157		baseregs[0] = NVI_OLD_PCI_SMBASE1;
158		baseregs[1] = NVI_OLD_PCI_SMBASE2;
159		break;
160	default:
161		baseregs[0] = NVI_PCI_SMBASE1;
162		baseregs[1] = NVI_PCI_SMBASE2;
163	}
164
165	for (i = 0; i < NVIIC_NBUS; i++) {
166		nc = &sc->sc_nc[i];
167
168		reg = pci_conf_read(pa->pa_pc, pa->pa_tag, baseregs[i]);
169		if (bus_space_map(sc->sc_iot, NVI_SMBASE(reg), NVI_SMBASE_SIZE,
170		    0, &nc->nc_ioh)) {
171			printf("%s: unable to map space for bus %d\n",
172			    DEVNAME(sc), i);
173			continue;
174		}
175
176		nc->nc_sc = sc;
177		lockinit(&nc->nc_lock, PRIBIO | PCATCH, "iiclk", 0, 0);
178		nc->nc_i2c.ic_cookie = nc;
179		nc->nc_i2c.ic_acquire_bus = nviic_i2c_acquire_bus;
180		nc->nc_i2c.ic_release_bus = nviic_i2c_release_bus;
181		nc->nc_i2c.ic_exec = nviic_i2c_exec;
182
183		bzero(&iba, sizeof(iba));
184		iba.iba_name = "iic";
185		iba.iba_tag = &nc->nc_i2c;
186		config_found(self, &iba, iicbus_print);
187	}
188}
189
190int
191nviic_i2c_acquire_bus(void *arg, int flags)
192{
193	struct nviic_controller		*nc = arg;
194
195	if (cold || (flags & I2C_F_POLL))
196		return (0);
197
198	return (lockmgr(&nc->nc_lock, LK_EXCLUSIVE, NULL));
199}
200
201void
202nviic_i2c_release_bus(void *arg, int flags)
203{
204	struct nviic_controller		*nc = arg;
205
206	if (cold || (flags & I2C_F_POLL))
207		return;
208
209	lockmgr(&nc->nc_lock, LK_RELEASE, NULL);
210}
211
212int
213nviic_i2c_exec(void *arg, i2c_op_t op, i2c_addr_t addr,
214    const void *cmdbuf, size_t cmdlen, void *buf, size_t len, int flags)
215{
216	struct nviic_controller		*nc = arg;
217#ifdef NVIIC_DEBUG
218	struct nviic_softc		*sc = nc->nc_sc;
219#endif
220	u_int8_t			protocol;
221	u_int8_t			*b;
222	u_int8_t			sts;
223	int				i;
224
225	DPRINTF("%s: exec op: %d addr: 0x%x cmdlen: %d len: %d flags 0x%x\n",
226	    DEVNAME(sc), op, addr, cmdlen, len, flags);
227
228	if (cold)
229		flags |= I2C_F_POLL;
230
231	if (I2C_OP_STOP_P(op) == 0 || cmdlen > 1 || len > 2)
232		return (1);
233
234	/* set slave address */
235	nviic_write(nc, NVI_SMB_ADDR, addr << 1);
236
237	/* set command byte */
238	if (cmdlen > 0) {
239		b = (u_int8_t *)cmdbuf;
240		nviic_write(nc, NVI_SMB_CMD, b[0]);
241	}
242
243	b = (u_int8_t *)buf;
244
245	/* write data */
246	if (I2C_OP_WRITE_P(op)) {
247		for (i = 0; i < len; i++)
248			nviic_write(nc, NVI_SMB_DATA(i), b[i]);
249	}
250
251	switch (len) {
252	case 0:
253		protocol = NVI_SMB_PRTCL_BYTE;
254		break;
255	case 1:
256		protocol = NVI_SMB_PRTCL_BYTE_DATA;
257		break;
258	case 2:
259		protocol = NVI_SMB_PRTCL_WORD_DATA;
260		break;
261	}
262
263	/* set direction */
264	if (I2C_OP_READ_P(op))
265		protocol |= NVI_SMB_PRTCL_READ;
266
267	/* start transaction */
268	nviic_write(nc, NVI_SMB_PRTCL, protocol);
269
270	for (i = 1000; i > 0; i--) {
271		delay(100);
272		if (nviic_read(nc, NVI_SMB_PRTCL) == 0)
273			break;
274	}
275	if (i == 0) {
276		DPRINTF("%s: timeout\n", DEVNAME(sc));
277		return (1);
278	}
279
280	sts = nviic_read(nc, NVI_SMB_STS);
281	if (sts & NVI_SMB_STS_STATUS)
282		return (1);
283
284	/* read data */
285	if (I2C_OP_READ_P(op)) {
286		for (i = 0; i < len; i++)
287			b[i] = nviic_read(nc, NVI_SMB_DATA(i));
288	}
289
290	return (0);
291}
292
293u_int8_t
294nviic_read(struct nviic_controller *nc, bus_size_t r)
295{
296	struct nviic_softc		*sc = nc->nc_sc;
297
298	bus_space_barrier(sc->sc_iot, nc->nc_ioh, r, 1,
299	    BUS_SPACE_BARRIER_READ);
300	return (bus_space_read_1(sc->sc_iot, nc->nc_ioh, r));
301}
302
303void
304nviic_write(struct nviic_controller *nc, bus_size_t r, u_int8_t v)
305{
306	struct nviic_softc		*sc = nc->nc_sc;
307
308	bus_space_write_1(sc->sc_iot, nc->nc_ioh, r, v);
309	bus_space_barrier(sc->sc_iot, nc->nc_ioh, r, 1,
310	    BUS_SPACE_BARRIER_WRITE);
311}
312