summaryrefslogtreecommitdiff
path: root/sys/dev/i2c/i2c_scan.c
blob: 44b5d0694d6c353266991fb4d18a8e6247ff6d3e (plain)
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
/*	$OpenBSD: i2c_scan.c,v 1.4 2005/12/23 04:09:56 deraadt 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.
 */

/*
 * I2C bus scanning.
 */

#include <sys/param.h>
#include <sys/systm.h>
#include <sys/device.h>

#define _I2C_PRIVATE
#include <dev/i2c/i2cvar.h>

void	iic_probe(struct device *, struct i2cbus_attach_args *, u_int8_t);

/*
 * some basic rules for finding devices...
 * 
 * 0x7 == 0x0001			national lm92
 * 0xfe == 0x4d			maxim (6659/6658/6659) == lm90
 * no 0x7 register??		maxim (6633/6634/6635) lm92
 * 
 * XXX remove this block of text later	
 * 0x00	National (on LM84)
 * 0x01	National
 * 0x12C3	Asus (at 0x4F)
 * 0x23	Analog Devices
 * 0x41	Analog Devices (also at 0x16)
 * 0x49	TI
 * 0x4D	Maxim
 * 0x54	On Semi
 * 0x5C	SMSC
 * 0x5D 	SMSC
 * 0x55	SMSC
 * 0x5CA3	Winbond (at 0x4F)
 * 0x90	ITE (at 0x58)
 * 0xA1	Philips (at 0x05 too)
 * 0xA3	Winbond (at 0x4F)
 * 0xAC	Myson (at 0x58)
 * 0xC3	Asus (at 0x4F)
 * 0xDA	Dallas
 * 0x54    Microchip (at 0x7)
 */

/* ports to probe for sensors */
struct {
	u_int8_t start, end;
} probe_paddrs[] = {
	{ 0x20, 0x2f },
	{ 0x48, 0x4f },
	{ 0xad, 0xad }
};

u_int8_t probereg[] = { 0x3e, 0x3f, 0xfe, 0xff, 0x07, 0x4d, 0x4e, 0x4f, 0x58, 0x3d };
#define P_3e	0
#define P_3f	1
#define P_fe	2
#define P_ff	3
#define P_07	4
#define P_4d	5
#define P_4e	6
#define P_4f	7
#define P_58	8
#define P_3d	9
u_int8_t probeval[sizeof(probereg)];

void
iic_probe(struct device *self, struct i2cbus_attach_args *iba, u_int8_t addr)
{
	struct i2c_attach_args ia;
	char *name = NULL;
	int i;

	if (probeval[P_3e] == 0x41) {
		/*
		 * Analog Devices adt/adm product code at 0x3e == 0x41
		 * probe newer to older.  newer chips have a valid 0x3d
		 * product number, while older ones encoded the product
		 * into the upper half of the step at 0x3f
		 */
		if (probeval[P_3d] == 0x03 || probeval[P_3d] == 0x08 ||
		    probeval[P_3d] == 0x07)
			name = "adt7516";	/* adt7517, adt7519 */
		if (probeval[P_3d] == 0x76)
			name = "adt7476";
		else if (probeval[P_3d] == 0x70)
			name = "adt7470";
		else if (probeval[P_3d] == 0x27)
			name = "adt7460";	/* adt746x */
		else if (probeval[P_3d] == 0x33)
			name = "adm1033";
		else if (probeval[P_3d] == 0x30)
			name = "adm1030";
		else if ((probeval[P_3f] & 0xf0) == 0x20)
			name = "adm1025";
		else if ((probeval[P_ff] & 0xf0) == 0x10)
			name = "adm1024";
		else if ((probeval[P_ff] & 0xf0) == 0x30)
			name = "adm1023";
		else if ((probeval[P_ff] & 0xf0) == 0x90)
			name = "adm1022";
		else
			name = "adm1021";
	} else if (probeval[P_3e] == 0xa1) {
		/* Philips vendor code 0xa1 at 0x3e */
		if ((probeval[P_3f] & 0xf0) == 0x20)
			name = "ne1619";	/* adm1025 compat */
	} else if (probeval[P_3e] == 0x01) {
		/*
		 * Most newer National products use a vendor code at
		 * 0x3e of 0x01, and then 0x3f contains a product code
		 */
		if (probeval[P_3f] == 0x49)
			name = "lm99";
		else if (probeval[P_3f] == 0x73)
			name = "lm93";
		else if (probeval[P_3f] == 0x33)
			name = "lm90";
		else if (probeval[P_3f] == 0x52)
			name = "lm89";
		else if (probeval[P_3f] == 0x17)
			name = "lm86";
		else if (probeval[P_3f] == 0x03)	/* and higher? */
			name = "lm81";
	} else if (probeval[P_3e] == 0x02 && probeval[P_3f] == 0x6)
		name = "lm87";

	printf("addr 0x%x at %s:", addr, self->dv_xname);
	for (i = 0; i < sizeof(probeval); i++)
		if (probeval[i] != 0xff)
			printf(" %02x=%02x", probereg[i], probeval[i]);
	if (name)
		printf(": %s", name);
	printf("\n");

	if (name) {
		ia.ia_tag = iba->iba_tag;
		ia.ia_addr = addr;
		ia.ia_size = 1;
		ia.ia_name = name;
		ia.ia_compat = NULL;
		config_found(self, &ia, iic_print);
	}
}

void
iic_scan(struct device *self, struct i2cbus_attach_args *iba)
{
	i2c_tag_t ic = iba->iba_tag;
	u_int8_t cmd = 0, addr, data;
	int i, j;

	for (j = 0; j < sizeof(probe_paddrs)/sizeof(probe_paddrs[0]); j++) {
		for (addr = probe_paddrs[j].start; addr <= probe_paddrs[j].end;
		    addr++) {
			/* Perform RECEIVE BYTE command */
			ic->ic_acquire_bus(ic->ic_cookie, I2C_F_POLL);
			if (ic->ic_exec(ic->ic_cookie, I2C_OP_READ_WITH_STOP, addr,
			    &cmd, 1, NULL, 0, I2C_F_POLL) == 0) {

				for (i = 0; i < sizeof(probereg); i++) {
					cmd = probereg[i];
					probeval[i] = 0xff;
					if (ic->ic_exec(ic->ic_cookie,
					    I2C_OP_READ_WITH_STOP, addr,
					    &cmd, 1, &data, 1, I2C_F_POLL) == 0)
						probeval[i] = data;
				}
				iic_probe(self, iba, addr);
			}
			ic->ic_release_bus(ic->ic_cookie, I2C_F_POLL);
		}
	}
}