Ben Gardner | 99c3adb | 2006-01-18 22:41:50 +0100 | [diff] [blame] | 1 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | Copyright (c) 2001,2002 Christer Weinigel <wingel@nano-system.com> |
| 3 | |
| 4 | National Semiconductor SCx200 ACCESS.bus support |
Ben Gardner | 16ffc5c | 2006-01-18 22:48:26 +0100 | [diff] [blame] | 5 | Also supports the AMD CS5535 and AMD CS5536 |
Ben Gardner | 99c3adb | 2006-01-18 22:41:50 +0100 | [diff] [blame] | 6 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7 | 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 Gardner | 99c3adb | 2006-01-18 22:41:50 +0100 | [diff] [blame] | 10 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11 | 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 Gardner | 99c3adb | 2006-01-18 22:41:50 +0100 | [diff] [blame] | 15 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 16 | 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. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 20 | */ |
| 21 | |
Jim Cromie | 401e72b | 2012-10-05 22:23:52 +0200 | [diff] [blame] | 22 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt |
| 23 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | #include <linux/module.h> |
| 25 | #include <linux/errno.h> |
| 26 | #include <linux/kernel.h> |
| 27 | #include <linux/init.h> |
| 28 | #include <linux/i2c.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | #include <linux/pci.h> |
Andres Salomon | de8255c | 2010-12-30 20:27:33 -0800 | [diff] [blame] | 30 | #include <linux/platform_device.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 | #include <linux/delay.h> |
Jean Delvare | 3fb9a65 | 2006-01-18 23:17:01 +0100 | [diff] [blame] | 32 | #include <linux/mutex.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 33 | #include <linux/slab.h> |
H Hartley Sweeten | 2178218 | 2010-05-21 18:41:01 +0200 | [diff] [blame] | 34 | #include <linux/io.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 | |
| 36 | #include <linux/scx200.h> |
| 37 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | MODULE_AUTHOR("Christer Weinigel <wingel@nano-system.com>"); |
| 39 | MODULE_DESCRIPTION("NatSemi SCx200 ACCESS.bus Driver"); |
Andres Salomon | de8255c | 2010-12-30 20:27:33 -0800 | [diff] [blame] | 40 | MODULE_ALIAS("platform:cs5535-smb"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 41 | MODULE_LICENSE("GPL"); |
| 42 | |
| 43 | #define MAX_DEVICES 4 |
| 44 | static int base[MAX_DEVICES] = { 0x820, 0x840 }; |
| 45 | module_param_array(base, int, NULL, 0); |
| 46 | MODULE_PARM_DESC(base, "Base addresses for the ACCESS.bus controllers"); |
| 47 | |
Ben Gardner | f933ff5 | 2006-01-18 22:52:06 +0100 | [diff] [blame] | 48 | #define POLL_TIMEOUT (HZ/5) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 49 | |
| 50 | enum scx200_acb_state { |
| 51 | state_idle, |
| 52 | state_address, |
| 53 | state_command, |
| 54 | state_repeat_start, |
| 55 | state_quick, |
| 56 | state_read, |
| 57 | state_write, |
| 58 | }; |
| 59 | |
| 60 | static const char *scx200_acb_state_name[] = { |
| 61 | "idle", |
| 62 | "address", |
| 63 | "command", |
| 64 | "repeat_start", |
| 65 | "quick", |
| 66 | "read", |
| 67 | "write", |
| 68 | }; |
| 69 | |
| 70 | /* Physical interface */ |
Ben Gardner | 99c3adb | 2006-01-18 22:41:50 +0100 | [diff] [blame] | 71 | struct scx200_acb_iface { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 72 | struct scx200_acb_iface *next; |
| 73 | struct i2c_adapter adapter; |
| 74 | unsigned base; |
Jean Delvare | 3fb9a65 | 2006-01-18 23:17:01 +0100 | [diff] [blame] | 75 | struct mutex mutex; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 76 | |
| 77 | /* State machine data */ |
| 78 | enum scx200_acb_state state; |
| 79 | int result; |
| 80 | u8 address_byte; |
| 81 | u8 command; |
| 82 | u8 *ptr; |
| 83 | char needs_reset; |
| 84 | unsigned len; |
| 85 | }; |
| 86 | |
| 87 | /* Register Definitions */ |
| 88 | #define ACBSDA (iface->base + 0) |
| 89 | #define ACBST (iface->base + 1) |
| 90 | #define ACBST_SDAST 0x40 /* SDA Status */ |
Ben Gardner | 99c3adb | 2006-01-18 22:41:50 +0100 | [diff] [blame] | 91 | #define ACBST_BER 0x20 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 92 | #define ACBST_NEGACK 0x10 /* Negative Acknowledge */ |
| 93 | #define ACBST_STASTR 0x08 /* Stall After Start */ |
| 94 | #define ACBST_MASTER 0x02 |
| 95 | #define ACBCST (iface->base + 2) |
| 96 | #define ACBCST_BB 0x02 |
| 97 | #define ACBCTL1 (iface->base + 3) |
| 98 | #define ACBCTL1_STASTRE 0x80 |
| 99 | #define ACBCTL1_NMINTE 0x40 |
Ben Gardner | 99c3adb | 2006-01-18 22:41:50 +0100 | [diff] [blame] | 100 | #define ACBCTL1_ACK 0x10 |
| 101 | #define ACBCTL1_STOP 0x02 |
| 102 | #define ACBCTL1_START 0x01 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 103 | #define ACBADDR (iface->base + 4) |
| 104 | #define ACBCTL2 (iface->base + 5) |
| 105 | #define ACBCTL2_ENABLE 0x01 |
| 106 | |
| 107 | /************************************************************************/ |
| 108 | |
| 109 | static void scx200_acb_machine(struct scx200_acb_iface *iface, u8 status) |
| 110 | { |
| 111 | const char *errmsg; |
| 112 | |
Ben Gardner | ef4d927 | 2006-01-18 22:43:10 +0100 | [diff] [blame] | 113 | dev_dbg(&iface->adapter.dev, "state %s, status = 0x%02x\n", |
| 114 | scx200_acb_state_name[iface->state], status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 115 | |
| 116 | if (status & ACBST_BER) { |
| 117 | errmsg = "bus error"; |
| 118 | goto error; |
| 119 | } |
| 120 | if (!(status & ACBST_MASTER)) { |
| 121 | errmsg = "not master"; |
| 122 | goto error; |
| 123 | } |
Ben Gardner | 9b7b6d3 | 2006-01-18 22:44:04 +0100 | [diff] [blame] | 124 | if (status & ACBST_NEGACK) { |
| 125 | dev_dbg(&iface->adapter.dev, "negative ack in state %s\n", |
| 126 | scx200_acb_state_name[iface->state]); |
| 127 | |
| 128 | iface->state = state_idle; |
| 129 | iface->result = -ENXIO; |
| 130 | |
| 131 | outb(inb(ACBCTL1) | ACBCTL1_STOP, ACBCTL1); |
| 132 | outb(ACBST_STASTR | ACBST_NEGACK, ACBST); |
Jordan Crouse | 95563d3 | 2006-04-28 22:53:30 +0200 | [diff] [blame] | 133 | |
| 134 | /* Reset the status register */ |
| 135 | outb(0, ACBST); |
Ben Gardner | 9b7b6d3 | 2006-01-18 22:44:04 +0100 | [diff] [blame] | 136 | return; |
| 137 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 138 | |
| 139 | switch (iface->state) { |
| 140 | case state_idle: |
| 141 | dev_warn(&iface->adapter.dev, "interrupt in idle state\n"); |
| 142 | break; |
| 143 | |
| 144 | case state_address: |
| 145 | /* Do a pointer write first */ |
| 146 | outb(iface->address_byte & ~1, ACBSDA); |
| 147 | |
| 148 | iface->state = state_command; |
| 149 | break; |
| 150 | |
| 151 | case state_command: |
| 152 | outb(iface->command, ACBSDA); |
| 153 | |
| 154 | if (iface->address_byte & 1) |
| 155 | iface->state = state_repeat_start; |
| 156 | else |
| 157 | iface->state = state_write; |
| 158 | break; |
| 159 | |
| 160 | case state_repeat_start: |
| 161 | outb(inb(ACBCTL1) | ACBCTL1_START, ACBCTL1); |
| 162 | /* fallthrough */ |
Ben Gardner | 99c3adb | 2006-01-18 22:41:50 +0100 | [diff] [blame] | 163 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 164 | case state_quick: |
| 165 | if (iface->address_byte & 1) { |
Ben Gardner | 99c3adb | 2006-01-18 22:41:50 +0100 | [diff] [blame] | 166 | if (iface->len == 1) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 167 | outb(inb(ACBCTL1) | ACBCTL1_ACK, ACBCTL1); |
| 168 | else |
| 169 | outb(inb(ACBCTL1) & ~ACBCTL1_ACK, ACBCTL1); |
| 170 | outb(iface->address_byte, ACBSDA); |
| 171 | |
| 172 | iface->state = state_read; |
| 173 | } else { |
| 174 | outb(iface->address_byte, ACBSDA); |
| 175 | |
| 176 | iface->state = state_write; |
| 177 | } |
| 178 | break; |
| 179 | |
| 180 | case state_read: |
Thomas Andrews | fd627a0 | 2006-07-01 17:05:12 +0200 | [diff] [blame] | 181 | /* Set ACK if _next_ byte will be the last one */ |
| 182 | if (iface->len == 2) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 183 | outb(inb(ACBCTL1) | ACBCTL1_ACK, ACBCTL1); |
| 184 | else |
| 185 | outb(inb(ACBCTL1) & ~ACBCTL1_ACK, ACBCTL1); |
| 186 | |
Thomas Andrews | fd627a0 | 2006-07-01 17:05:12 +0200 | [diff] [blame] | 187 | if (iface->len == 1) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 188 | iface->result = 0; |
| 189 | iface->state = state_idle; |
| 190 | outb(inb(ACBCTL1) | ACBCTL1_STOP, ACBCTL1); |
| 191 | } |
| 192 | |
Thomas Andrews | fd627a0 | 2006-07-01 17:05:12 +0200 | [diff] [blame] | 193 | *iface->ptr++ = inb(ACBSDA); |
| 194 | --iface->len; |
| 195 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 196 | break; |
| 197 | |
| 198 | case state_write: |
| 199 | if (iface->len == 0) { |
| 200 | iface->result = 0; |
| 201 | iface->state = state_idle; |
| 202 | outb(inb(ACBCTL1) | ACBCTL1_STOP, ACBCTL1); |
| 203 | break; |
| 204 | } |
Ben Gardner | 99c3adb | 2006-01-18 22:41:50 +0100 | [diff] [blame] | 205 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 206 | outb(*iface->ptr++, ACBSDA); |
| 207 | --iface->len; |
Ben Gardner | 99c3adb | 2006-01-18 22:41:50 +0100 | [diff] [blame] | 208 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 209 | break; |
| 210 | } |
| 211 | |
| 212 | return; |
| 213 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 214 | error: |
Willy Tarreau | fce96f3 | 2009-09-18 22:45:47 +0200 | [diff] [blame] | 215 | dev_err(&iface->adapter.dev, |
| 216 | "%s in state %s (addr=0x%02x, len=%d, status=0x%02x)\n", errmsg, |
| 217 | scx200_acb_state_name[iface->state], iface->address_byte, |
| 218 | iface->len, status); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 219 | |
| 220 | iface->state = state_idle; |
| 221 | iface->result = -EIO; |
| 222 | iface->needs_reset = 1; |
| 223 | } |
| 224 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 225 | static void scx200_acb_poll(struct scx200_acb_iface *iface) |
| 226 | { |
Ben Gardner | 9b7b6d3 | 2006-01-18 22:44:04 +0100 | [diff] [blame] | 227 | u8 status; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 228 | unsigned long timeout; |
| 229 | |
| 230 | timeout = jiffies + POLL_TIMEOUT; |
David Woodhouse | 3e3183b | 2006-08-05 12:15:19 -0700 | [diff] [blame] | 231 | while (1) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 232 | status = inb(ACBST); |
Jordan Crouse | 95563d3 | 2006-04-28 22:53:30 +0200 | [diff] [blame] | 233 | |
| 234 | /* Reset the status register to avoid the hang */ |
| 235 | outb(0, ACBST); |
| 236 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 237 | if ((status & (ACBST_SDAST|ACBST_BER|ACBST_NEGACK)) != 0) { |
| 238 | scx200_acb_machine(iface, status); |
| 239 | return; |
| 240 | } |
David Woodhouse | 3e3183b | 2006-08-05 12:15:19 -0700 | [diff] [blame] | 241 | if (time_after(jiffies, timeout)) |
| 242 | break; |
| 243 | cpu_relax(); |
| 244 | cond_resched(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 245 | } |
| 246 | |
Ben Gardner | 9b7b6d3 | 2006-01-18 22:44:04 +0100 | [diff] [blame] | 247 | dev_err(&iface->adapter.dev, "timeout in state %s\n", |
| 248 | scx200_acb_state_name[iface->state]); |
| 249 | |
| 250 | iface->state = state_idle; |
| 251 | iface->result = -EIO; |
| 252 | iface->needs_reset = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 253 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 254 | |
| 255 | static void scx200_acb_reset(struct scx200_acb_iface *iface) |
| 256 | { |
| 257 | /* Disable the ACCESS.bus device and Configure the SCL |
Ben Gardner | 99c3adb | 2006-01-18 22:41:50 +0100 | [diff] [blame] | 258 | frequency: 16 clock cycles */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 259 | outb(0x70, ACBCTL2); |
| 260 | /* Polling mode */ |
| 261 | outb(0, ACBCTL1); |
| 262 | /* Disable slave address */ |
| 263 | outb(0, ACBADDR); |
| 264 | /* Enable the ACCESS.bus device */ |
| 265 | outb(inb(ACBCTL2) | ACBCTL2_ENABLE, ACBCTL2); |
| 266 | /* Free STALL after START */ |
| 267 | outb(inb(ACBCTL1) & ~(ACBCTL1_STASTRE | ACBCTL1_NMINTE), ACBCTL1); |
| 268 | /* Send a STOP */ |
| 269 | outb(inb(ACBCTL1) | ACBCTL1_STOP, ACBCTL1); |
| 270 | /* Clear BER, NEGACK and STASTR bits */ |
| 271 | outb(ACBST_BER | ACBST_NEGACK | ACBST_STASTR, ACBST); |
| 272 | /* Clear BB bit */ |
| 273 | outb(inb(ACBCST) | ACBCST_BB, ACBCST); |
| 274 | } |
| 275 | |
| 276 | static s32 scx200_acb_smbus_xfer(struct i2c_adapter *adapter, |
Ben Gardner | 99c3adb | 2006-01-18 22:41:50 +0100 | [diff] [blame] | 277 | u16 address, unsigned short flags, |
| 278 | char rw, u8 command, int size, |
| 279 | union i2c_smbus_data *data) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 280 | { |
| 281 | struct scx200_acb_iface *iface = i2c_get_adapdata(adapter); |
| 282 | int len; |
| 283 | u8 *buffer; |
| 284 | u16 cur_word; |
| 285 | int rc; |
| 286 | |
| 287 | switch (size) { |
| 288 | case I2C_SMBUS_QUICK: |
Ben Gardner | 99c3adb | 2006-01-18 22:41:50 +0100 | [diff] [blame] | 289 | len = 0; |
| 290 | buffer = NULL; |
| 291 | break; |
| 292 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 293 | case I2C_SMBUS_BYTE: |
Ben Gardner | 9b7b6d3 | 2006-01-18 22:44:04 +0100 | [diff] [blame] | 294 | len = 1; |
| 295 | buffer = rw ? &data->byte : &command; |
Ben Gardner | 99c3adb | 2006-01-18 22:41:50 +0100 | [diff] [blame] | 296 | break; |
| 297 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 298 | case I2C_SMBUS_BYTE_DATA: |
Ben Gardner | 99c3adb | 2006-01-18 22:41:50 +0100 | [diff] [blame] | 299 | len = 1; |
| 300 | buffer = &data->byte; |
| 301 | break; |
| 302 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 303 | case I2C_SMBUS_WORD_DATA: |
| 304 | len = 2; |
Ben Gardner | 99c3adb | 2006-01-18 22:41:50 +0100 | [diff] [blame] | 305 | cur_word = cpu_to_le16(data->word); |
| 306 | buffer = (u8 *)&cur_word; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 307 | break; |
Ben Gardner | 99c3adb | 2006-01-18 22:41:50 +0100 | [diff] [blame] | 308 | |
Jean Delvare | c3efaca | 2006-07-01 17:06:43 +0200 | [diff] [blame] | 309 | case I2C_SMBUS_I2C_BLOCK_DATA: |
Ben Gardner | 99c3adb | 2006-01-18 22:41:50 +0100 | [diff] [blame] | 310 | len = data->block[0]; |
Jean Delvare | c3efaca | 2006-07-01 17:06:43 +0200 | [diff] [blame] | 311 | if (len == 0 || len > I2C_SMBUS_BLOCK_MAX) |
| 312 | return -EINVAL; |
Ben Gardner | 99c3adb | 2006-01-18 22:41:50 +0100 | [diff] [blame] | 313 | buffer = &data->block[1]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 314 | break; |
Ben Gardner | 99c3adb | 2006-01-18 22:41:50 +0100 | [diff] [blame] | 315 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 316 | default: |
Ben Gardner | 99c3adb | 2006-01-18 22:41:50 +0100 | [diff] [blame] | 317 | return -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 318 | } |
| 319 | |
Ben Gardner | ef4d927 | 2006-01-18 22:43:10 +0100 | [diff] [blame] | 320 | dev_dbg(&adapter->dev, |
| 321 | "size=%d, address=0x%x, command=0x%x, len=%d, read=%d\n", |
| 322 | size, address, command, len, rw); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 323 | |
| 324 | if (!len && rw == I2C_SMBUS_READ) { |
Ben Gardner | ef4d927 | 2006-01-18 22:43:10 +0100 | [diff] [blame] | 325 | dev_dbg(&adapter->dev, "zero length read\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 326 | return -EINVAL; |
| 327 | } |
| 328 | |
Jean Delvare | 3fb9a65 | 2006-01-18 23:17:01 +0100 | [diff] [blame] | 329 | mutex_lock(&iface->mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 330 | |
Ben Gardner | 9b7b6d3 | 2006-01-18 22:44:04 +0100 | [diff] [blame] | 331 | iface->address_byte = (address << 1) | rw; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 332 | iface->command = command; |
| 333 | iface->ptr = buffer; |
| 334 | iface->len = len; |
| 335 | iface->result = -EINVAL; |
| 336 | iface->needs_reset = 0; |
| 337 | |
| 338 | outb(inb(ACBCTL1) | ACBCTL1_START, ACBCTL1); |
| 339 | |
| 340 | if (size == I2C_SMBUS_QUICK || size == I2C_SMBUS_BYTE) |
| 341 | iface->state = state_quick; |
| 342 | else |
| 343 | iface->state = state_address; |
| 344 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 345 | while (iface->state != state_idle) |
| 346 | scx200_acb_poll(iface); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 347 | |
| 348 | if (iface->needs_reset) |
| 349 | scx200_acb_reset(iface); |
| 350 | |
| 351 | rc = iface->result; |
| 352 | |
Jean Delvare | 3fb9a65 | 2006-01-18 23:17:01 +0100 | [diff] [blame] | 353 | mutex_unlock(&iface->mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 354 | |
| 355 | if (rc == 0 && size == I2C_SMBUS_WORD_DATA && rw == I2C_SMBUS_READ) |
Ben Gardner | 99c3adb | 2006-01-18 22:41:50 +0100 | [diff] [blame] | 356 | data->word = le16_to_cpu(cur_word); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 357 | |
| 358 | #ifdef DEBUG |
Ben Gardner | ef4d927 | 2006-01-18 22:43:10 +0100 | [diff] [blame] | 359 | dev_dbg(&adapter->dev, "transfer done, result: %d", rc); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 360 | if (buffer) { |
| 361 | int i; |
| 362 | printk(" data:"); |
| 363 | for (i = 0; i < len; ++i) |
| 364 | printk(" %02x", buffer[i]); |
| 365 | } |
| 366 | printk("\n"); |
| 367 | #endif |
| 368 | |
| 369 | return rc; |
| 370 | } |
| 371 | |
| 372 | static u32 scx200_acb_func(struct i2c_adapter *adapter) |
| 373 | { |
| 374 | return I2C_FUNC_SMBUS_QUICK | I2C_FUNC_SMBUS_BYTE | |
| 375 | I2C_FUNC_SMBUS_BYTE_DATA | I2C_FUNC_SMBUS_WORD_DATA | |
Jean Delvare | c3efaca | 2006-07-01 17:06:43 +0200 | [diff] [blame] | 376 | I2C_FUNC_SMBUS_I2C_BLOCK; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 377 | } |
| 378 | |
| 379 | /* For now, we only handle combined mode (smbus) */ |
Jean Delvare | 8f9082c | 2006-09-03 22:39:46 +0200 | [diff] [blame] | 380 | static const struct i2c_algorithm scx200_acb_algorithm = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 381 | .smbus_xfer = scx200_acb_smbus_xfer, |
| 382 | .functionality = scx200_acb_func, |
| 383 | }; |
| 384 | |
| 385 | static struct scx200_acb_iface *scx200_acb_list; |
Matthias Kaehlcke | 9d9c01c | 2007-07-12 14:12:28 +0200 | [diff] [blame] | 386 | static DEFINE_MUTEX(scx200_acb_list_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 387 | |
Bill Pemberton | 0b255e9 | 2012-11-27 15:59:38 -0500 | [diff] [blame] | 388 | static int scx200_acb_probe(struct scx200_acb_iface *iface) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 389 | { |
| 390 | u8 val; |
| 391 | |
| 392 | /* Disable the ACCESS.bus device and Configure the SCL |
Ben Gardner | 99c3adb | 2006-01-18 22:41:50 +0100 | [diff] [blame] | 393 | frequency: 16 clock cycles */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 394 | outb(0x70, ACBCTL2); |
| 395 | |
| 396 | if (inb(ACBCTL2) != 0x70) { |
Jim Cromie | 401e72b | 2012-10-05 22:23:52 +0200 | [diff] [blame] | 397 | pr_debug("ACBCTL2 readback failed\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 398 | return -ENXIO; |
| 399 | } |
| 400 | |
| 401 | outb(inb(ACBCTL1) | ACBCTL1_NMINTE, ACBCTL1); |
| 402 | |
| 403 | val = inb(ACBCTL1); |
| 404 | if (val) { |
Jim Cromie | 401e72b | 2012-10-05 22:23:52 +0200 | [diff] [blame] | 405 | pr_debug("disabled, but ACBCTL1=0x%02x\n", val); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 406 | return -ENXIO; |
| 407 | } |
| 408 | |
| 409 | outb(inb(ACBCTL2) | ACBCTL2_ENABLE, ACBCTL2); |
| 410 | |
| 411 | outb(inb(ACBCTL1) | ACBCTL1_NMINTE, ACBCTL1); |
| 412 | |
| 413 | val = inb(ACBCTL1); |
| 414 | if ((val & ACBCTL1_NMINTE) != ACBCTL1_NMINTE) { |
Jim Cromie | 401e72b | 2012-10-05 22:23:52 +0200 | [diff] [blame] | 415 | pr_debug("enabled, but NMINTE won't be set, ACBCTL1=0x%02x\n", |
| 416 | val); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 417 | return -ENXIO; |
| 418 | } |
| 419 | |
| 420 | return 0; |
| 421 | } |
| 422 | |
Bill Pemberton | 0b255e9 | 2012-11-27 15:59:38 -0500 | [diff] [blame] | 423 | static struct scx200_acb_iface *scx200_create_iface(const char *text, |
Jean Delvare | 12a917f | 2007-02-13 22:09:03 +0100 | [diff] [blame] | 424 | struct device *dev, int index) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 425 | { |
| 426 | struct scx200_acb_iface *iface; |
| 427 | struct i2c_adapter *adapter; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 428 | |
Deepak Saxena | 5263ebb | 2005-10-17 23:09:43 +0200 | [diff] [blame] | 429 | iface = kzalloc(sizeof(*iface), GFP_KERNEL); |
Jingoo Han | 46797a2 | 2014-05-13 10:51:58 +0900 | [diff] [blame] | 430 | if (!iface) |
Jordan Crouse | 80cd3a8 | 2006-06-12 21:44:28 +0200 | [diff] [blame] | 431 | return NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 432 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 433 | adapter = &iface->adapter; |
| 434 | i2c_set_adapdata(adapter, iface); |
David Brownell | 2096b95 | 2007-05-01 23:26:28 +0200 | [diff] [blame] | 435 | snprintf(adapter->name, sizeof(adapter->name), "%s ACB%d", text, index); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 436 | adapter->owner = THIS_MODULE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 437 | adapter->algo = &scx200_acb_algorithm; |
Jean Delvare | 3401b2f | 2008-07-14 22:38:29 +0200 | [diff] [blame] | 438 | adapter->class = I2C_CLASS_HWMON | I2C_CLASS_SPD; |
Jean Delvare | 12a917f | 2007-02-13 22:09:03 +0100 | [diff] [blame] | 439 | adapter->dev.parent = dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 440 | |
Jean Delvare | 3fb9a65 | 2006-01-18 23:17:01 +0100 | [diff] [blame] | 441 | mutex_init(&iface->mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 442 | |
Jordan Crouse | 80cd3a8 | 2006-06-12 21:44:28 +0200 | [diff] [blame] | 443 | return iface; |
| 444 | } |
| 445 | |
Bill Pemberton | 0b255e9 | 2012-11-27 15:59:38 -0500 | [diff] [blame] | 446 | static int scx200_acb_create(struct scx200_acb_iface *iface) |
Jordan Crouse | 80cd3a8 | 2006-06-12 21:44:28 +0200 | [diff] [blame] | 447 | { |
| 448 | struct i2c_adapter *adapter; |
| 449 | int rc; |
| 450 | |
| 451 | adapter = &iface->adapter; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 452 | |
| 453 | rc = scx200_acb_probe(iface); |
| 454 | if (rc) { |
Jim Cromie | 401e72b | 2012-10-05 22:23:52 +0200 | [diff] [blame] | 455 | pr_warn("probe failed\n"); |
Jordan Crouse | 80cd3a8 | 2006-06-12 21:44:28 +0200 | [diff] [blame] | 456 | return rc; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 457 | } |
| 458 | |
| 459 | scx200_acb_reset(iface); |
| 460 | |
| 461 | if (i2c_add_adapter(adapter) < 0) { |
Jim Cromie | 401e72b | 2012-10-05 22:23:52 +0200 | [diff] [blame] | 462 | pr_err("failed to register\n"); |
Jordan Crouse | 80cd3a8 | 2006-06-12 21:44:28 +0200 | [diff] [blame] | 463 | return -ENODEV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 464 | } |
| 465 | |
Andres Salomon | de8255c | 2010-12-30 20:27:33 -0800 | [diff] [blame] | 466 | if (!adapter->dev.parent) { |
| 467 | /* If there's no dev, we're tracking (ISA) ifaces manually */ |
| 468 | mutex_lock(&scx200_acb_list_mutex); |
| 469 | iface->next = scx200_acb_list; |
| 470 | scx200_acb_list = iface; |
| 471 | mutex_unlock(&scx200_acb_list_mutex); |
| 472 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 473 | |
| 474 | return 0; |
Jordan Crouse | 80cd3a8 | 2006-06-12 21:44:28 +0200 | [diff] [blame] | 475 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 476 | |
Bill Pemberton | 0b255e9 | 2012-11-27 15:59:38 -0500 | [diff] [blame] | 477 | static struct scx200_acb_iface *scx200_create_dev(const char *text, |
Andres Salomon | de8255c | 2010-12-30 20:27:33 -0800 | [diff] [blame] | 478 | unsigned long base, int index, struct device *dev) |
Jordan Crouse | 80cd3a8 | 2006-06-12 21:44:28 +0200 | [diff] [blame] | 479 | { |
| 480 | struct scx200_acb_iface *iface; |
| 481 | int rc; |
| 482 | |
Andres Salomon | de8255c | 2010-12-30 20:27:33 -0800 | [diff] [blame] | 483 | iface = scx200_create_iface(text, dev, index); |
Jordan Crouse | 80cd3a8 | 2006-06-12 21:44:28 +0200 | [diff] [blame] | 484 | |
| 485 | if (iface == NULL) |
Andres Salomon | de8255c | 2010-12-30 20:27:33 -0800 | [diff] [blame] | 486 | return NULL; |
Jordan Crouse | 80cd3a8 | 2006-06-12 21:44:28 +0200 | [diff] [blame] | 487 | |
Adrian Bunk | dec1a99 | 2008-04-22 22:16:48 +0200 | [diff] [blame] | 488 | if (!request_region(base, 8, iface->adapter.name)) { |
Jim Cromie | 401e72b | 2012-10-05 22:23:52 +0200 | [diff] [blame] | 489 | pr_err("can't allocate io 0x%lx-0x%lx\n", base, base + 8 - 1); |
Jordan Crouse | 80cd3a8 | 2006-06-12 21:44:28 +0200 | [diff] [blame] | 490 | goto errout_free; |
Ben Gardner | 16ffc5c | 2006-01-18 22:48:26 +0100 | [diff] [blame] | 491 | } |
| 492 | |
Jordan Crouse | 80cd3a8 | 2006-06-12 21:44:28 +0200 | [diff] [blame] | 493 | iface->base = base; |
| 494 | rc = scx200_acb_create(iface); |
Ben Gardner | 16ffc5c | 2006-01-18 22:48:26 +0100 | [diff] [blame] | 495 | |
Jordan Crouse | 80cd3a8 | 2006-06-12 21:44:28 +0200 | [diff] [blame] | 496 | if (rc == 0) |
Andres Salomon | de8255c | 2010-12-30 20:27:33 -0800 | [diff] [blame] | 497 | return iface; |
Jordan Crouse | 80cd3a8 | 2006-06-12 21:44:28 +0200 | [diff] [blame] | 498 | |
| 499 | release_region(base, 8); |
| 500 | errout_free: |
| 501 | kfree(iface); |
Andres Salomon | de8255c | 2010-12-30 20:27:33 -0800 | [diff] [blame] | 502 | return NULL; |
Jordan Crouse | 80cd3a8 | 2006-06-12 21:44:28 +0200 | [diff] [blame] | 503 | } |
| 504 | |
Bill Pemberton | 0b255e9 | 2012-11-27 15:59:38 -0500 | [diff] [blame] | 505 | static int scx200_probe(struct platform_device *pdev) |
Andres Salomon | de8255c | 2010-12-30 20:27:33 -0800 | [diff] [blame] | 506 | { |
| 507 | struct scx200_acb_iface *iface; |
| 508 | struct resource *res; |
Jordan Crouse | 80cd3a8 | 2006-06-12 21:44:28 +0200 | [diff] [blame] | 509 | |
Andres Salomon | de8255c | 2010-12-30 20:27:33 -0800 | [diff] [blame] | 510 | res = platform_get_resource(pdev, IORESOURCE_IO, 0); |
| 511 | if (!res) { |
| 512 | dev_err(&pdev->dev, "can't fetch device resource info\n"); |
| 513 | return -ENODEV; |
| 514 | } |
| 515 | |
| 516 | iface = scx200_create_dev("CS5535", res->start, 0, &pdev->dev); |
| 517 | if (!iface) |
| 518 | return -EIO; |
| 519 | |
| 520 | dev_info(&pdev->dev, "SCx200 device '%s' registered\n", |
| 521 | iface->adapter.name); |
| 522 | platform_set_drvdata(pdev, iface); |
| 523 | |
| 524 | return 0; |
| 525 | } |
| 526 | |
Bill Pemberton | 0b255e9 | 2012-11-27 15:59:38 -0500 | [diff] [blame] | 527 | static void scx200_cleanup_iface(struct scx200_acb_iface *iface) |
Andres Salomon | de8255c | 2010-12-30 20:27:33 -0800 | [diff] [blame] | 528 | { |
| 529 | i2c_del_adapter(&iface->adapter); |
| 530 | release_region(iface->base, 8); |
| 531 | kfree(iface); |
| 532 | } |
| 533 | |
Bill Pemberton | 0b255e9 | 2012-11-27 15:59:38 -0500 | [diff] [blame] | 534 | static int scx200_remove(struct platform_device *pdev) |
Andres Salomon | de8255c | 2010-12-30 20:27:33 -0800 | [diff] [blame] | 535 | { |
| 536 | struct scx200_acb_iface *iface; |
| 537 | |
| 538 | iface = platform_get_drvdata(pdev); |
Andres Salomon | de8255c | 2010-12-30 20:27:33 -0800 | [diff] [blame] | 539 | scx200_cleanup_iface(iface); |
| 540 | |
| 541 | return 0; |
| 542 | } |
| 543 | |
Harvey Yang | 6fcf84a | 2011-10-30 13:47:25 +0100 | [diff] [blame] | 544 | static struct platform_driver scx200_pci_driver = { |
Andres Salomon | de8255c | 2010-12-30 20:27:33 -0800 | [diff] [blame] | 545 | .driver = { |
| 546 | .name = "cs5535-smb", |
Andres Salomon | de8255c | 2010-12-30 20:27:33 -0800 | [diff] [blame] | 547 | }, |
| 548 | .probe = scx200_probe, |
Bill Pemberton | 0b255e9 | 2012-11-27 15:59:38 -0500 | [diff] [blame] | 549 | .remove = scx200_remove, |
Andres Salomon | de8255c | 2010-12-30 20:27:33 -0800 | [diff] [blame] | 550 | }; |
| 551 | |
Jingoo Han | 392debf | 2013-12-03 08:11:20 +0900 | [diff] [blame] | 552 | static const struct pci_device_id scx200_isa[] = { |
Andres Salomon | de8255c | 2010-12-30 20:27:33 -0800 | [diff] [blame] | 553 | { PCI_DEVICE(PCI_VENDOR_ID_NS, PCI_DEVICE_ID_NS_SCx200_BRIDGE) }, |
| 554 | { PCI_DEVICE(PCI_VENDOR_ID_NS, PCI_DEVICE_ID_NS_SC1100_BRIDGE) }, |
Dzianis Kahanovich | 87acf5a | 2010-10-27 20:33:05 -0600 | [diff] [blame] | 555 | { 0, } |
Jordan Crouse | 80cd3a8 | 2006-06-12 21:44:28 +0200 | [diff] [blame] | 556 | }; |
| 557 | |
Andres Salomon | de8255c | 2010-12-30 20:27:33 -0800 | [diff] [blame] | 558 | static __init void scx200_scan_isa(void) |
Jordan Crouse | 80cd3a8 | 2006-06-12 21:44:28 +0200 | [diff] [blame] | 559 | { |
Andres Salomon | de8255c | 2010-12-30 20:27:33 -0800 | [diff] [blame] | 560 | int i; |
Jordan Crouse | 80cd3a8 | 2006-06-12 21:44:28 +0200 | [diff] [blame] | 561 | |
Andres Salomon | de8255c | 2010-12-30 20:27:33 -0800 | [diff] [blame] | 562 | if (!pci_dev_present(scx200_isa)) |
| 563 | return; |
Jordan Crouse | 80cd3a8 | 2006-06-12 21:44:28 +0200 | [diff] [blame] | 564 | |
Andres Salomon | de8255c | 2010-12-30 20:27:33 -0800 | [diff] [blame] | 565 | for (i = 0; i < MAX_DEVICES; ++i) { |
| 566 | if (base[i] == 0) |
Jordan Crouse | 80cd3a8 | 2006-06-12 21:44:28 +0200 | [diff] [blame] | 567 | continue; |
| 568 | |
Andres Salomon | de8255c | 2010-12-30 20:27:33 -0800 | [diff] [blame] | 569 | /* XXX: should we care about failures? */ |
| 570 | scx200_create_dev("SCx200", base[i], i, NULL); |
Jordan Crouse | 80cd3a8 | 2006-06-12 21:44:28 +0200 | [diff] [blame] | 571 | } |
Ben Gardner | 16ffc5c | 2006-01-18 22:48:26 +0100 | [diff] [blame] | 572 | } |
| 573 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 574 | static int __init scx200_acb_init(void) |
| 575 | { |
Jim Cromie | 401e72b | 2012-10-05 22:23:52 +0200 | [diff] [blame] | 576 | pr_debug("NatSemi SCx200 ACCESS.bus Driver\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 577 | |
Andres Salomon | de8255c | 2010-12-30 20:27:33 -0800 | [diff] [blame] | 578 | /* First scan for ISA-based devices */ |
| 579 | scx200_scan_isa(); /* XXX: should we care about errors? */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 580 | |
Jean Delvare | 6f9c296 | 2006-04-26 22:50:32 +0200 | [diff] [blame] | 581 | /* If at least one bus was created, init must succeed */ |
| 582 | if (scx200_acb_list) |
| 583 | return 0; |
Andres Salomon | de8255c | 2010-12-30 20:27:33 -0800 | [diff] [blame] | 584 | |
| 585 | /* No ISA devices; register the platform driver for PCI-based devices */ |
Harvey Yang | 6fcf84a | 2011-10-30 13:47:25 +0100 | [diff] [blame] | 586 | return platform_driver_register(&scx200_pci_driver); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 587 | } |
| 588 | |
| 589 | static void __exit scx200_acb_cleanup(void) |
| 590 | { |
| 591 | struct scx200_acb_iface *iface; |
Ben Gardner | 99c3adb | 2006-01-18 22:41:50 +0100 | [diff] [blame] | 592 | |
Harvey Yang | 6fcf84a | 2011-10-30 13:47:25 +0100 | [diff] [blame] | 593 | platform_driver_unregister(&scx200_pci_driver); |
Andres Salomon | de8255c | 2010-12-30 20:27:33 -0800 | [diff] [blame] | 594 | |
Matthias Kaehlcke | 9d9c01c | 2007-07-12 14:12:28 +0200 | [diff] [blame] | 595 | mutex_lock(&scx200_acb_list_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 596 | while ((iface = scx200_acb_list) != NULL) { |
| 597 | scx200_acb_list = iface->next; |
Matthias Kaehlcke | 9d9c01c | 2007-07-12 14:12:28 +0200 | [diff] [blame] | 598 | mutex_unlock(&scx200_acb_list_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 599 | |
Andres Salomon | de8255c | 2010-12-30 20:27:33 -0800 | [diff] [blame] | 600 | scx200_cleanup_iface(iface); |
Jordan Crouse | 80cd3a8 | 2006-06-12 21:44:28 +0200 | [diff] [blame] | 601 | |
Matthias Kaehlcke | 9d9c01c | 2007-07-12 14:12:28 +0200 | [diff] [blame] | 602 | mutex_lock(&scx200_acb_list_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 603 | } |
Matthias Kaehlcke | 9d9c01c | 2007-07-12 14:12:28 +0200 | [diff] [blame] | 604 | mutex_unlock(&scx200_acb_list_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 605 | } |
| 606 | |
| 607 | module_init(scx200_acb_init); |
| 608 | module_exit(scx200_acb_cleanup); |