blob: dc64f8b6b24ab6768ed958c4737b724a450c81cd [file] [log] [blame]
Ben Gardner99c3adb2006-01-18 22:41:50 +01001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 Copyright (c) 2001,2002 Christer Weinigel <wingel@nano-system.com>
3
4 National Semiconductor SCx200 ACCESS.bus support
Ben Gardner16ffc5c2006-01-18 22:48:26 +01005 Also supports the AMD CS5535 and AMD CS5536
Ben Gardner99c3adb2006-01-18 22:41:50 +01006
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 Based on i2c-keywest.c which is:
8 Copyright (c) 2001 Benjamin Herrenschmidt <benh@kernel.crashing.org>
9 Copyright (c) 2000 Philip Edelbrock <phil@stimpy.netroedge.com>
Ben Gardner99c3adb2006-01-18 22:41:50 +010010
Linus Torvalds1da177e2005-04-16 15:20:36 -070011 This program is free software; you can redistribute it and/or
12 modify it under the terms of the GNU General Public License as
13 published by the Free Software Foundation; either version 2 of the
14 License, or (at your option) any later version.
Ben Gardner99c3adb2006-01-18 22:41:50 +010015
Linus Torvalds1da177e2005-04-16 15:20:36 -070016 This program is distributed in the hope that it will be useful,
17 but WITHOUT ANY WARRANTY; without even the implied warranty of
18 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 General Public License for more details.
Ben Gardner99c3adb2006-01-18 22:41:50 +010020
Linus Torvalds1da177e2005-04-16 15:20:36 -070021 You should have received a copy of the GNU General Public License
22 along with this program; if not, write to the Free Software
23 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
Linus Torvalds1da177e2005-04-16 15:20:36 -070024*/
25
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <linux/module.h>
27#include <linux/errno.h>
28#include <linux/kernel.h>
29#include <linux/init.h>
30#include <linux/i2c.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include <linux/pci.h>
32#include <linux/delay.h>
Jean Delvare3fb9a652006-01-18 23:17:01 +010033#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include <asm/io.h>
35
36#include <linux/scx200.h>
37
38#define NAME "scx200_acb"
39
40MODULE_AUTHOR("Christer Weinigel <wingel@nano-system.com>");
41MODULE_DESCRIPTION("NatSemi SCx200 ACCESS.bus Driver");
42MODULE_LICENSE("GPL");
43
44#define MAX_DEVICES 4
45static int base[MAX_DEVICES] = { 0x820, 0x840 };
46module_param_array(base, int, NULL, 0);
47MODULE_PARM_DESC(base, "Base addresses for the ACCESS.bus controllers");
48
Ben Gardnerf933ff52006-01-18 22:52:06 +010049#define POLL_TIMEOUT (HZ/5)
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
51enum scx200_acb_state {
52 state_idle,
53 state_address,
54 state_command,
55 state_repeat_start,
56 state_quick,
57 state_read,
58 state_write,
59};
60
61static const char *scx200_acb_state_name[] = {
62 "idle",
63 "address",
64 "command",
65 "repeat_start",
66 "quick",
67 "read",
68 "write",
69};
70
71/* Physical interface */
Ben Gardner99c3adb2006-01-18 22:41:50 +010072struct scx200_acb_iface {
Linus Torvalds1da177e2005-04-16 15:20:36 -070073 struct scx200_acb_iface *next;
74 struct i2c_adapter adapter;
75 unsigned base;
Jean Delvare3fb9a652006-01-18 23:17:01 +010076 struct mutex mutex;
Linus Torvalds1da177e2005-04-16 15:20:36 -070077
78 /* State machine data */
79 enum scx200_acb_state state;
80 int result;
81 u8 address_byte;
82 u8 command;
83 u8 *ptr;
84 char needs_reset;
85 unsigned len;
Jordan Crouse80cd3a82006-06-12 21:44:28 +020086
87 /* PCI device info */
88 struct pci_dev *pdev;
89 int bar;
Linus Torvalds1da177e2005-04-16 15:20:36 -070090};
91
92/* Register Definitions */
93#define ACBSDA (iface->base + 0)
94#define ACBST (iface->base + 1)
95#define ACBST_SDAST 0x40 /* SDA Status */
Ben Gardner99c3adb2006-01-18 22:41:50 +010096#define ACBST_BER 0x20
Linus Torvalds1da177e2005-04-16 15:20:36 -070097#define ACBST_NEGACK 0x10 /* Negative Acknowledge */
98#define ACBST_STASTR 0x08 /* Stall After Start */
99#define ACBST_MASTER 0x02
100#define ACBCST (iface->base + 2)
101#define ACBCST_BB 0x02
102#define ACBCTL1 (iface->base + 3)
103#define ACBCTL1_STASTRE 0x80
104#define ACBCTL1_NMINTE 0x40
Ben Gardner99c3adb2006-01-18 22:41:50 +0100105#define ACBCTL1_ACK 0x10
106#define ACBCTL1_STOP 0x02
107#define ACBCTL1_START 0x01
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108#define ACBADDR (iface->base + 4)
109#define ACBCTL2 (iface->base + 5)
110#define ACBCTL2_ENABLE 0x01
111
112/************************************************************************/
113
114static void scx200_acb_machine(struct scx200_acb_iface *iface, u8 status)
115{
116 const char *errmsg;
117
Ben Gardneref4d9272006-01-18 22:43:10 +0100118 dev_dbg(&iface->adapter.dev, "state %s, status = 0x%02x\n",
119 scx200_acb_state_name[iface->state], status);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120
121 if (status & ACBST_BER) {
122 errmsg = "bus error";
123 goto error;
124 }
125 if (!(status & ACBST_MASTER)) {
126 errmsg = "not master";
127 goto error;
128 }
Ben Gardner9b7b6d32006-01-18 22:44:04 +0100129 if (status & ACBST_NEGACK) {
130 dev_dbg(&iface->adapter.dev, "negative ack in state %s\n",
131 scx200_acb_state_name[iface->state]);
132
133 iface->state = state_idle;
134 iface->result = -ENXIO;
135
136 outb(inb(ACBCTL1) | ACBCTL1_STOP, ACBCTL1);
137 outb(ACBST_STASTR | ACBST_NEGACK, ACBST);
Jordan Crouse95563d32006-04-28 22:53:30 +0200138
139 /* Reset the status register */
140 outb(0, ACBST);
Ben Gardner9b7b6d32006-01-18 22:44:04 +0100141 return;
142 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143
144 switch (iface->state) {
145 case state_idle:
146 dev_warn(&iface->adapter.dev, "interrupt in idle state\n");
147 break;
148
149 case state_address:
150 /* Do a pointer write first */
151 outb(iface->address_byte & ~1, ACBSDA);
152
153 iface->state = state_command;
154 break;
155
156 case state_command:
157 outb(iface->command, ACBSDA);
158
159 if (iface->address_byte & 1)
160 iface->state = state_repeat_start;
161 else
162 iface->state = state_write;
163 break;
164
165 case state_repeat_start:
166 outb(inb(ACBCTL1) | ACBCTL1_START, ACBCTL1);
167 /* fallthrough */
Ben Gardner99c3adb2006-01-18 22:41:50 +0100168
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 case state_quick:
170 if (iface->address_byte & 1) {
Ben Gardner99c3adb2006-01-18 22:41:50 +0100171 if (iface->len == 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 outb(inb(ACBCTL1) | ACBCTL1_ACK, ACBCTL1);
173 else
174 outb(inb(ACBCTL1) & ~ACBCTL1_ACK, ACBCTL1);
175 outb(iface->address_byte, ACBSDA);
176
177 iface->state = state_read;
178 } else {
179 outb(iface->address_byte, ACBSDA);
180
181 iface->state = state_write;
182 }
183 break;
184
185 case state_read:
Thomas Andrewsfd627a02006-07-01 17:05:12 +0200186 /* Set ACK if _next_ byte will be the last one */
187 if (iface->len == 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 outb(inb(ACBCTL1) | ACBCTL1_ACK, ACBCTL1);
189 else
190 outb(inb(ACBCTL1) & ~ACBCTL1_ACK, ACBCTL1);
191
Thomas Andrewsfd627a02006-07-01 17:05:12 +0200192 if (iface->len == 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 iface->result = 0;
194 iface->state = state_idle;
195 outb(inb(ACBCTL1) | ACBCTL1_STOP, ACBCTL1);
196 }
197
Thomas Andrewsfd627a02006-07-01 17:05:12 +0200198 *iface->ptr++ = inb(ACBSDA);
199 --iface->len;
200
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 break;
202
203 case state_write:
204 if (iface->len == 0) {
205 iface->result = 0;
206 iface->state = state_idle;
207 outb(inb(ACBCTL1) | ACBCTL1_STOP, ACBCTL1);
208 break;
209 }
Ben Gardner99c3adb2006-01-18 22:41:50 +0100210
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 outb(*iface->ptr++, ACBSDA);
212 --iface->len;
Ben Gardner99c3adb2006-01-18 22:41:50 +0100213
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 break;
215 }
216
217 return;
218
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 error:
220 dev_err(&iface->adapter.dev, "%s in state %s\n", errmsg,
221 scx200_acb_state_name[iface->state]);
222
223 iface->state = state_idle;
224 iface->result = -EIO;
225 iface->needs_reset = 1;
226}
227
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228static void scx200_acb_poll(struct scx200_acb_iface *iface)
229{
Ben Gardner9b7b6d32006-01-18 22:44:04 +0100230 u8 status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 unsigned long timeout;
232
233 timeout = jiffies + POLL_TIMEOUT;
David Woodhouse3e3183b2006-08-05 12:15:19 -0700234 while (1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 status = inb(ACBST);
Jordan Crouse95563d32006-04-28 22:53:30 +0200236
237 /* Reset the status register to avoid the hang */
238 outb(0, ACBST);
239
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 if ((status & (ACBST_SDAST|ACBST_BER|ACBST_NEGACK)) != 0) {
241 scx200_acb_machine(iface, status);
242 return;
243 }
David Woodhouse3e3183b2006-08-05 12:15:19 -0700244 if (time_after(jiffies, timeout))
245 break;
246 cpu_relax();
247 cond_resched();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 }
249
Ben Gardner9b7b6d32006-01-18 22:44:04 +0100250 dev_err(&iface->adapter.dev, "timeout in state %s\n",
251 scx200_acb_state_name[iface->state]);
252
253 iface->state = state_idle;
254 iface->result = -EIO;
255 iface->needs_reset = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257
258static void scx200_acb_reset(struct scx200_acb_iface *iface)
259{
260 /* Disable the ACCESS.bus device and Configure the SCL
Ben Gardner99c3adb2006-01-18 22:41:50 +0100261 frequency: 16 clock cycles */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 outb(0x70, ACBCTL2);
263 /* Polling mode */
264 outb(0, ACBCTL1);
265 /* Disable slave address */
266 outb(0, ACBADDR);
267 /* Enable the ACCESS.bus device */
268 outb(inb(ACBCTL2) | ACBCTL2_ENABLE, ACBCTL2);
269 /* Free STALL after START */
270 outb(inb(ACBCTL1) & ~(ACBCTL1_STASTRE | ACBCTL1_NMINTE), ACBCTL1);
271 /* Send a STOP */
272 outb(inb(ACBCTL1) | ACBCTL1_STOP, ACBCTL1);
273 /* Clear BER, NEGACK and STASTR bits */
274 outb(ACBST_BER | ACBST_NEGACK | ACBST_STASTR, ACBST);
275 /* Clear BB bit */
276 outb(inb(ACBCST) | ACBCST_BB, ACBCST);
277}
278
279static s32 scx200_acb_smbus_xfer(struct i2c_adapter *adapter,
Ben Gardner99c3adb2006-01-18 22:41:50 +0100280 u16 address, unsigned short flags,
281 char rw, u8 command, int size,
282 union i2c_smbus_data *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283{
284 struct scx200_acb_iface *iface = i2c_get_adapdata(adapter);
285 int len;
286 u8 *buffer;
287 u16 cur_word;
288 int rc;
289
290 switch (size) {
291 case I2C_SMBUS_QUICK:
Ben Gardner99c3adb2006-01-18 22:41:50 +0100292 len = 0;
293 buffer = NULL;
294 break;
295
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 case I2C_SMBUS_BYTE:
Ben Gardner9b7b6d32006-01-18 22:44:04 +0100297 len = 1;
298 buffer = rw ? &data->byte : &command;
Ben Gardner99c3adb2006-01-18 22:41:50 +0100299 break;
300
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 case I2C_SMBUS_BYTE_DATA:
Ben Gardner99c3adb2006-01-18 22:41:50 +0100302 len = 1;
303 buffer = &data->byte;
304 break;
305
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 case I2C_SMBUS_WORD_DATA:
307 len = 2;
Ben Gardner99c3adb2006-01-18 22:41:50 +0100308 cur_word = cpu_to_le16(data->word);
309 buffer = (u8 *)&cur_word;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 break;
Ben Gardner99c3adb2006-01-18 22:41:50 +0100311
Jean Delvarec3efaca2006-07-01 17:06:43 +0200312 case I2C_SMBUS_I2C_BLOCK_DATA:
313 if (rw == I2C_SMBUS_READ)
314 data->block[0] = I2C_SMBUS_BLOCK_MAX; /* For now */
Ben Gardner99c3adb2006-01-18 22:41:50 +0100315 len = data->block[0];
Jean Delvarec3efaca2006-07-01 17:06:43 +0200316 if (len == 0 || len > I2C_SMBUS_BLOCK_MAX)
317 return -EINVAL;
Ben Gardner99c3adb2006-01-18 22:41:50 +0100318 buffer = &data->block[1];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 break;
Ben Gardner99c3adb2006-01-18 22:41:50 +0100320
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 default:
Ben Gardner99c3adb2006-01-18 22:41:50 +0100322 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 }
324
Ben Gardneref4d9272006-01-18 22:43:10 +0100325 dev_dbg(&adapter->dev,
326 "size=%d, address=0x%x, command=0x%x, len=%d, read=%d\n",
327 size, address, command, len, rw);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328
329 if (!len && rw == I2C_SMBUS_READ) {
Ben Gardneref4d9272006-01-18 22:43:10 +0100330 dev_dbg(&adapter->dev, "zero length read\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 return -EINVAL;
332 }
333
Jean Delvare3fb9a652006-01-18 23:17:01 +0100334 mutex_lock(&iface->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335
Ben Gardner9b7b6d32006-01-18 22:44:04 +0100336 iface->address_byte = (address << 1) | rw;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 iface->command = command;
338 iface->ptr = buffer;
339 iface->len = len;
340 iface->result = -EINVAL;
341 iface->needs_reset = 0;
342
343 outb(inb(ACBCTL1) | ACBCTL1_START, ACBCTL1);
344
345 if (size == I2C_SMBUS_QUICK || size == I2C_SMBUS_BYTE)
346 iface->state = state_quick;
347 else
348 iface->state = state_address;
349
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 while (iface->state != state_idle)
351 scx200_acb_poll(iface);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352
353 if (iface->needs_reset)
354 scx200_acb_reset(iface);
355
356 rc = iface->result;
357
Jean Delvare3fb9a652006-01-18 23:17:01 +0100358 mutex_unlock(&iface->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359
360 if (rc == 0 && size == I2C_SMBUS_WORD_DATA && rw == I2C_SMBUS_READ)
Ben Gardner99c3adb2006-01-18 22:41:50 +0100361 data->word = le16_to_cpu(cur_word);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362
363#ifdef DEBUG
Ben Gardneref4d9272006-01-18 22:43:10 +0100364 dev_dbg(&adapter->dev, "transfer done, result: %d", rc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 if (buffer) {
366 int i;
367 printk(" data:");
368 for (i = 0; i < len; ++i)
369 printk(" %02x", buffer[i]);
370 }
371 printk("\n");
372#endif
373
374 return rc;
375}
376
377static u32 scx200_acb_func(struct i2c_adapter *adapter)
378{
379 return I2C_FUNC_SMBUS_QUICK | I2C_FUNC_SMBUS_BYTE |
380 I2C_FUNC_SMBUS_BYTE_DATA | I2C_FUNC_SMBUS_WORD_DATA |
Jean Delvarec3efaca2006-07-01 17:06:43 +0200381 I2C_FUNC_SMBUS_I2C_BLOCK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382}
383
384/* For now, we only handle combined mode (smbus) */
Jean Delvare8f9082c2006-09-03 22:39:46 +0200385static const struct i2c_algorithm scx200_acb_algorithm = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 .smbus_xfer = scx200_acb_smbus_xfer,
387 .functionality = scx200_acb_func,
388};
389
390static struct scx200_acb_iface *scx200_acb_list;
Matthias Kaehlcke9d9c01c2007-07-12 14:12:28 +0200391static DEFINE_MUTEX(scx200_acb_list_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392
Jean Delvare99173922006-06-12 21:46:04 +0200393static __init int scx200_acb_probe(struct scx200_acb_iface *iface)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394{
395 u8 val;
396
397 /* Disable the ACCESS.bus device and Configure the SCL
Ben Gardner99c3adb2006-01-18 22:41:50 +0100398 frequency: 16 clock cycles */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 outb(0x70, ACBCTL2);
400
401 if (inb(ACBCTL2) != 0x70) {
Ben Gardneref4d9272006-01-18 22:43:10 +0100402 pr_debug(NAME ": ACBCTL2 readback failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 return -ENXIO;
404 }
405
406 outb(inb(ACBCTL1) | ACBCTL1_NMINTE, ACBCTL1);
407
408 val = inb(ACBCTL1);
409 if (val) {
Ben Gardneref4d9272006-01-18 22:43:10 +0100410 pr_debug(NAME ": disabled, but ACBCTL1=0x%02x\n",
411 val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 return -ENXIO;
413 }
414
415 outb(inb(ACBCTL2) | ACBCTL2_ENABLE, ACBCTL2);
416
417 outb(inb(ACBCTL1) | ACBCTL1_NMINTE, ACBCTL1);
418
419 val = inb(ACBCTL1);
420 if ((val & ACBCTL1_NMINTE) != ACBCTL1_NMINTE) {
Ben Gardneref4d9272006-01-18 22:43:10 +0100421 pr_debug(NAME ": enabled, but NMINTE won't be set, "
422 "ACBCTL1=0x%02x\n", val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 return -ENXIO;
424 }
425
426 return 0;
427}
428
Jordan Crouse80cd3a82006-06-12 21:44:28 +0200429static __init struct scx200_acb_iface *scx200_create_iface(const char *text,
Jean Delvare12a917f2007-02-13 22:09:03 +0100430 struct device *dev, int index)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431{
432 struct scx200_acb_iface *iface;
433 struct i2c_adapter *adapter;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434
Deepak Saxena5263ebb2005-10-17 23:09:43 +0200435 iface = kzalloc(sizeof(*iface), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 if (!iface) {
437 printk(KERN_ERR NAME ": can't allocate memory\n");
Jordan Crouse80cd3a82006-06-12 21:44:28 +0200438 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 }
440
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 adapter = &iface->adapter;
442 i2c_set_adapdata(adapter, iface);
David Brownell2096b952007-05-01 23:26:28 +0200443 snprintf(adapter->name, sizeof(adapter->name), "%s ACB%d", text, index);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 adapter->owner = THIS_MODULE;
Jean Delvare1684a9842005-08-11 23:51:10 +0200445 adapter->id = I2C_HW_SMBUS_SCX200;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 adapter->algo = &scx200_acb_algorithm;
447 adapter->class = I2C_CLASS_HWMON;
Jean Delvare12a917f2007-02-13 22:09:03 +0100448 adapter->dev.parent = dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449
Jean Delvare3fb9a652006-01-18 23:17:01 +0100450 mutex_init(&iface->mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451
Jordan Crouse80cd3a82006-06-12 21:44:28 +0200452 return iface;
453}
454
455static int __init scx200_acb_create(struct scx200_acb_iface *iface)
456{
457 struct i2c_adapter *adapter;
458 int rc;
459
460 adapter = &iface->adapter;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461
462 rc = scx200_acb_probe(iface);
463 if (rc) {
Ben Gardneref4d9272006-01-18 22:43:10 +0100464 printk(KERN_WARNING NAME ": probe failed\n");
Jordan Crouse80cd3a82006-06-12 21:44:28 +0200465 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 }
467
468 scx200_acb_reset(iface);
469
470 if (i2c_add_adapter(adapter) < 0) {
Ben Gardneref4d9272006-01-18 22:43:10 +0100471 printk(KERN_ERR NAME ": failed to register\n");
Jordan Crouse80cd3a82006-06-12 21:44:28 +0200472 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 }
474
Matthias Kaehlcke9d9c01c2007-07-12 14:12:28 +0200475 mutex_lock(&scx200_acb_list_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 iface->next = scx200_acb_list;
477 scx200_acb_list = iface;
Matthias Kaehlcke9d9c01c2007-07-12 14:12:28 +0200478 mutex_unlock(&scx200_acb_list_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479
480 return 0;
Jordan Crouse80cd3a82006-06-12 21:44:28 +0200481}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482
Jordan Crouse80cd3a82006-06-12 21:44:28 +0200483static __init int scx200_create_pci(const char *text, struct pci_dev *pdev,
484 int bar)
485{
486 struct scx200_acb_iface *iface;
487 int rc;
488
Jean Delvare12a917f2007-02-13 22:09:03 +0100489 iface = scx200_create_iface(text, &pdev->dev, 0);
Jordan Crouse80cd3a82006-06-12 21:44:28 +0200490
491 if (iface == NULL)
492 return -ENOMEM;
493
494 iface->pdev = pdev;
495 iface->bar = bar;
496
Jeff Garzikffb3d132006-11-18 22:19:39 -0800497 rc = pci_enable_device_bars(iface->pdev, 1 << iface->bar);
498 if (rc)
499 goto errout_free;
Jordan Crouse80cd3a82006-06-12 21:44:28 +0200500
501 rc = pci_request_region(iface->pdev, iface->bar, iface->adapter.name);
Jeff Garzikffb3d132006-11-18 22:19:39 -0800502 if (rc) {
Jordan Crouse80cd3a82006-06-12 21:44:28 +0200503 printk(KERN_ERR NAME ": can't allocate PCI BAR %d\n",
504 iface->bar);
505 goto errout_free;
506 }
507
508 iface->base = pci_resource_start(iface->pdev, iface->bar);
509 rc = scx200_acb_create(iface);
510
511 if (rc == 0)
512 return 0;
513
514 pci_release_region(iface->pdev, iface->bar);
515 pci_dev_put(iface->pdev);
Ben Gardner9b7b6d32006-01-18 22:44:04 +0100516 errout_free:
517 kfree(iface);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 return rc;
519}
520
Jordan Crouse80cd3a82006-06-12 21:44:28 +0200521static int __init scx200_create_isa(const char *text, unsigned long base,
522 int index)
Ben Gardner16ffc5c2006-01-18 22:48:26 +0100523{
Jordan Crouse80cd3a82006-06-12 21:44:28 +0200524 struct scx200_acb_iface *iface;
525 int rc;
Ben Gardner16ffc5c2006-01-18 22:48:26 +0100526
Jean Delvare12a917f2007-02-13 22:09:03 +0100527 iface = scx200_create_iface(text, NULL, index);
Ben Gardner16ffc5c2006-01-18 22:48:26 +0100528
Jordan Crouse80cd3a82006-06-12 21:44:28 +0200529 if (iface == NULL)
530 return -ENOMEM;
531
532 if (request_region(base, 8, iface->adapter.name) == 0) {
533 printk(KERN_ERR NAME ": can't allocate io 0x%lx-0x%lx\n",
534 base, base + 8 - 1);
535 rc = -EBUSY;
536 goto errout_free;
Ben Gardner16ffc5c2006-01-18 22:48:26 +0100537 }
538
Jordan Crouse80cd3a82006-06-12 21:44:28 +0200539 iface->base = base;
540 rc = scx200_acb_create(iface);
Ben Gardner16ffc5c2006-01-18 22:48:26 +0100541
Jordan Crouse80cd3a82006-06-12 21:44:28 +0200542 if (rc == 0)
543 return 0;
544
545 release_region(base, 8);
546 errout_free:
547 kfree(iface);
548 return rc;
549}
550
551/* Driver data is an index into the scx200_data array that indicates
552 * the name and the BAR where the I/O address resource is located. ISA
553 * devices are flagged with a bar value of -1 */
554
555static struct pci_device_id scx200_pci[] = {
556 { PCI_DEVICE(PCI_VENDOR_ID_NS, PCI_DEVICE_ID_NS_SCx200_BRIDGE),
557 .driver_data = 0 },
558 { PCI_DEVICE(PCI_VENDOR_ID_NS, PCI_DEVICE_ID_NS_SC1100_BRIDGE),
559 .driver_data = 0 },
560 { PCI_DEVICE(PCI_VENDOR_ID_NS, PCI_DEVICE_ID_NS_CS5535_ISA),
561 .driver_data = 1 },
562 { PCI_DEVICE(PCI_VENDOR_ID_AMD, PCI_DEVICE_ID_AMD_CS5536_ISA),
563 .driver_data = 2 }
564};
565
566static struct {
567 const char *name;
568 int bar;
569} scx200_data[] = {
570 { "SCx200", -1 },
571 { "CS5535", 0 },
572 { "CS5536", 0 }
573};
574
575static __init int scx200_scan_pci(void)
576{
577 int data, dev;
578 int rc = -ENODEV;
579 struct pci_dev *pdev;
580
581 for(dev = 0; dev < ARRAY_SIZE(scx200_pci); dev++) {
582 pdev = pci_get_device(scx200_pci[dev].vendor,
583 scx200_pci[dev].device, NULL);
584
585 if (pdev == NULL)
586 continue;
587
588 data = scx200_pci[dev].driver_data;
589
590 /* if .bar is greater or equal to zero, this is a
591 * PCI device - otherwise, we assume
592 that the ports are ISA based
593 */
594
595 if (scx200_data[data].bar >= 0)
596 rc = scx200_create_pci(scx200_data[data].name, pdev,
597 scx200_data[data].bar);
598 else {
599 int i;
600
Jean Delvare4b4686e2007-05-01 23:26:30 +0200601 pci_dev_put(pdev);
Jordan Crouse80cd3a82006-06-12 21:44:28 +0200602 for (i = 0; i < MAX_DEVICES; ++i) {
603 if (base[i] == 0)
604 continue;
605
606 rc = scx200_create_isa(scx200_data[data].name,
607 base[i],
608 i);
609 }
610 }
611
612 break;
613 }
614
615 return rc;
Ben Gardner16ffc5c2006-01-18 22:48:26 +0100616}
617
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618static int __init scx200_acb_init(void)
619{
Jordan Crouse80cd3a82006-06-12 21:44:28 +0200620 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621
622 pr_debug(NAME ": NatSemi SCx200 ACCESS.bus Driver\n");
623
Jordan Crouse80cd3a82006-06-12 21:44:28 +0200624 rc = scx200_scan_pci();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625
Jean Delvare6f9c2962006-04-26 22:50:32 +0200626 /* If at least one bus was created, init must succeed */
627 if (scx200_acb_list)
628 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700629 return rc;
630}
631
632static void __exit scx200_acb_cleanup(void)
633{
634 struct scx200_acb_iface *iface;
Ben Gardner99c3adb2006-01-18 22:41:50 +0100635
Matthias Kaehlcke9d9c01c2007-07-12 14:12:28 +0200636 mutex_lock(&scx200_acb_list_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 while ((iface = scx200_acb_list) != NULL) {
638 scx200_acb_list = iface->next;
Matthias Kaehlcke9d9c01c2007-07-12 14:12:28 +0200639 mutex_unlock(&scx200_acb_list_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640
641 i2c_del_adapter(&iface->adapter);
Jordan Crouse80cd3a82006-06-12 21:44:28 +0200642
643 if (iface->pdev) {
644 pci_release_region(iface->pdev, iface->bar);
645 pci_dev_put(iface->pdev);
646 }
647 else
648 release_region(iface->base, 8);
649
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 kfree(iface);
Matthias Kaehlcke9d9c01c2007-07-12 14:12:28 +0200651 mutex_lock(&scx200_acb_list_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 }
Matthias Kaehlcke9d9c01c2007-07-12 14:12:28 +0200653 mutex_unlock(&scx200_acb_list_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654}
655
656module_init(scx200_acb_init);
657module_exit(scx200_acb_cleanup);