blob: cfb8e04a2a8310e04e66dd9fc2efcf044c3126c5 [file] [log] [blame]
Thomas Gleixnerc942fdd2019-05-27 08:55:06 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 Copyright (c) 2002,2003 Alexander Malysh <amalysh@web.de>
4
Linus Torvalds1da177e2005-04-16 15:20:36 -07005*/
6
7/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 Status: beta
9
10 Supports:
11 SIS 630
12 SIS 730
Amaury Decrême974d6a32013-01-28 22:21:05 +010013 SIS 964
14
15 Notable differences between chips:
16 +------------------------+--------------------+-------------------+
17 | | SIS630/730 | SIS964 |
18 +------------------------+--------------------+-------------------+
19 | Clock | 14kHz/56kHz | 55.56kHz/27.78kHz |
20 | SMBus registers offset | 0x80 | 0xE0 |
21 | SMB_CNT | Bit 1 = Slave Busy | Bit 1 = Bus probe |
22 | (not used yet) | Bit 3 is reserved | Bit 3 = Last byte |
23 | SMB_PCOUNT | Offset + 0x06 | Offset + 0x14 |
24 | SMB_COUNT | 4:0 bits | 5:0 bits |
25 +------------------------+--------------------+-------------------+
26 (Other differences don't affect the functions provided by the driver)
Linus Torvalds1da177e2005-04-16 15:20:36 -070027
28 Note: we assume there can only be one device, with one SMBus interface.
29*/
30
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include <linux/kernel.h>
32#include <linux/module.h>
33#include <linux/delay.h>
34#include <linux/pci.h>
35#include <linux/ioport.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036#include <linux/i2c.h>
Jean Delvare54fb4a052008-07-14 22:38:33 +020037#include <linux/acpi.h>
H Hartley Sweeten21782182010-05-21 18:41:01 +020038#include <linux/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
Amaury Decrême974d6a32013-01-28 22:21:05 +010040/* SIS964 id is defined here as we are the only file using it */
41#define PCI_DEVICE_ID_SI_964 0x0964
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
Amaury Decrême974d6a32013-01-28 22:21:05 +010043/* SIS630/730/964 SMBus registers */
44#define SMB_STS 0x00 /* status */
45#define SMB_CNT 0x02 /* control */
46#define SMBHOST_CNT 0x03 /* host control */
47#define SMB_ADDR 0x04 /* address */
48#define SMB_CMD 0x05 /* command */
49#define SMB_COUNT 0x07 /* byte count */
50#define SMB_BYTE 0x08 /* ~0x8F data byte field */
51
Amaury Decrêmea6e7d0ef2013-01-28 22:21:08 +010052/* SMB_STS register */
53#define BYTE_DONE_STS 0x10 /* Byte Done Status / Block Array */
54#define SMBCOL_STS 0x04 /* Collision */
55#define SMBERR_STS 0x02 /* Device error */
56
57/* SMB_CNT register */
58#define MSTO_EN 0x40 /* Host Master Timeout Enable */
59#define SMBCLK_SEL 0x20 /* Host master clock selection */
60#define SMB_PROBE 0x02 /* Bus Probe/Slave busy */
61#define SMB_HOSTBUSY 0x01 /* Host Busy */
62
63/* SMBHOST_CNT register */
64#define SMB_KILL 0x20 /* Kill */
65#define SMB_START 0x10 /* Start */
66
Amaury Decrême974d6a32013-01-28 22:21:05 +010067/* register count for request_region
68 * As we don't use SMB_PCOUNT, 20 is ok for SiS630 and SiS964
69 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070070#define SIS630_SMB_IOREGION 20
71
72/* PCI address constants */
73/* acpi base address register */
74#define SIS630_ACPI_BASE_REG 0x74
75/* bios control register */
76#define SIS630_BIOS_CTL_REG 0x40
77
78/* Other settings */
79#define MAX_TIMEOUT 500
80
81/* SIS630 constants */
82#define SIS630_QUICK 0x00
83#define SIS630_BYTE 0x01
84#define SIS630_BYTE_DATA 0x02
85#define SIS630_WORD_DATA 0x03
86#define SIS630_PCALL 0x04
87#define SIS630_BLOCK_DATA 0x05
88
Jean Delvared6072f82005-09-25 16:37:04 +020089static struct pci_driver sis630_driver;
90
Linus Torvalds1da177e2005-04-16 15:20:36 -070091/* insmod parameters */
Rusty Russell90ab5ee2012-01-13 09:32:20 +103092static bool high_clock;
93static bool force;
Linus Torvalds1da177e2005-04-16 15:20:36 -070094module_param(high_clock, bool, 0);
Amaury Decrême974d6a32013-01-28 22:21:05 +010095MODULE_PARM_DESC(high_clock,
96 "Set Host Master Clock to 56KHz (default 14KHz) (SIS630/730 only).");
Linus Torvalds1da177e2005-04-16 15:20:36 -070097module_param(force, bool, 0);
98MODULE_PARM_DESC(force, "Forcibly enable the SIS630. DANGEROUS!");
99
Amaury Decrême974d6a32013-01-28 22:21:05 +0100100/* SMBus base adress */
101static unsigned short smbus_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102
103/* supported chips */
104static int supported[] = {
105 PCI_DEVICE_ID_SI_630,
106 PCI_DEVICE_ID_SI_730,
Amaury Decrême974d6a32013-01-28 22:21:05 +0100107 PCI_DEVICE_ID_SI_760,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 0 /* terminates the list */
109};
110
111static inline u8 sis630_read(u8 reg)
112{
Amaury Decrême974d6a32013-01-28 22:21:05 +0100113 return inb(smbus_base + reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114}
115
116static inline void sis630_write(u8 reg, u8 data)
117{
Amaury Decrême974d6a32013-01-28 22:21:05 +0100118 outb(data, smbus_base + reg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119}
120
Amaury Decrême91991f32013-01-29 21:22:26 +0100121static int sis630_transaction_start(struct i2c_adapter *adap, int size,
122 u8 *oldclock)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123{
Amaury Decrême91991f32013-01-29 21:22:26 +0100124 int temp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125
126 /* Make sure the SMBus host is ready to start transmitting. */
Amaury Decrêmea6e7d0ef2013-01-28 22:21:08 +0100127 temp = sis630_read(SMB_CNT);
128 if ((temp & (SMB_PROBE | SMB_HOSTBUSY)) != 0x00) {
129 dev_dbg(&adap->dev, "SMBus busy (%02x). Resetting...\n", temp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 /* kill smbus transaction */
Amaury Decrêmea6e7d0ef2013-01-28 22:21:08 +0100131 sis630_write(SMBHOST_CNT, SMB_KILL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132
Amaury Decrêmea6e7d0ef2013-01-28 22:21:08 +0100133 temp = sis630_read(SMB_CNT);
134 if (temp & (SMB_PROBE | SMB_HOSTBUSY)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 dev_dbg(&adap->dev, "Failed! (%02x)\n", temp);
David Brownell97140342008-07-14 22:38:25 +0200136 return -EBUSY;
Amaury Decrême91991f32013-01-29 21:22:26 +0100137 } else {
Jean Delvarec5d21b72008-04-29 23:11:37 +0200138 dev_dbg(&adap->dev, "Successful!\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 }
Amaury Decrême91991f32013-01-29 21:22:26 +0100140 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141
142 /* save old clock, so we can prevent machine for hung */
143 *oldclock = sis630_read(SMB_CNT);
144
145 dev_dbg(&adap->dev, "saved clock 0x%02x\n", *oldclock);
146
Amaury Decrême91991f32013-01-29 21:22:26 +0100147 /* disable timeout interrupt,
148 * set Host Master Clock to 56KHz if requested */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 if (high_clock)
Amaury Decrêmea6e7d0ef2013-01-28 22:21:08 +0100150 sis630_write(SMB_CNT, SMBCLK_SEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 else
Amaury Decrêmea6e7d0ef2013-01-28 22:21:08 +0100152 sis630_write(SMB_CNT, (*oldclock & ~MSTO_EN));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153
154 /* clear all sticky bits */
155 temp = sis630_read(SMB_STS);
156 sis630_write(SMB_STS, temp & 0x1e);
157
158 /* start the transaction by setting bit 4 and size */
Amaury Decrêmea6e7d0ef2013-01-28 22:21:08 +0100159 sis630_write(SMBHOST_CNT, SMB_START | (size & 0x07));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160
161 return 0;
162}
163
164static int sis630_transaction_wait(struct i2c_adapter *adap, int size)
165{
166 int temp, result = 0, timeout = 0;
167
168 /* We will always wait for a fraction of a second! */
169 do {
170 msleep(1);
171 temp = sis630_read(SMB_STS);
172 /* check if block transmitted */
Amaury Decrêmea6e7d0ef2013-01-28 22:21:08 +0100173 if (size == SIS630_BLOCK_DATA && (temp & BYTE_DONE_STS))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 break;
175 } while (!(temp & 0x0e) && (timeout++ < MAX_TIMEOUT));
176
177 /* If the SMBus is still busy, we give up */
Roel Kluin4ccc28f2009-05-05 08:39:24 +0200178 if (timeout > MAX_TIMEOUT) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 dev_dbg(&adap->dev, "SMBus Timeout!\n");
David Brownell97140342008-07-14 22:38:25 +0200180 result = -ETIMEDOUT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 }
182
Amaury Decrêmea6e7d0ef2013-01-28 22:21:08 +0100183 if (temp & SMBERR_STS) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 dev_dbg(&adap->dev, "Error: Failed bus transaction\n");
David Brownell97140342008-07-14 22:38:25 +0200185 result = -ENXIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 }
187
Amaury Decrêmea6e7d0ef2013-01-28 22:21:08 +0100188 if (temp & SMBCOL_STS) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 dev_err(&adap->dev, "Bus collision!\n");
Amaury Decrême499b9192013-01-28 22:21:07 +0100190 result = -EAGAIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 }
192
193 return result;
194}
195
196static void sis630_transaction_end(struct i2c_adapter *adap, u8 oldclock)
197{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 /* clear all status "sticky" bits */
Amaury Decrêmeaa9e7a32013-01-28 22:21:06 +0100199 sis630_write(SMB_STS, 0xFF);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200
Amaury Decrême91991f32013-01-29 21:22:26 +0100201 dev_dbg(&adap->dev,
202 "SMB_CNT before clock restore 0x%02x\n", sis630_read(SMB_CNT));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203
204 /*
205 * restore old Host Master Clock if high_clock is set
206 * and oldclock was not 56KHz
207 */
Amaury Decrêmea6e7d0ef2013-01-28 22:21:08 +0100208 if (high_clock && !(oldclock & SMBCLK_SEL))
209 sis630_write(SMB_CNT, sis630_read(SMB_CNT) & ~SMBCLK_SEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210
Amaury Decrême91991f32013-01-29 21:22:26 +0100211 dev_dbg(&adap->dev,
212 "SMB_CNT after clock restore 0x%02x\n", sis630_read(SMB_CNT));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213}
214
215static int sis630_transaction(struct i2c_adapter *adap, int size)
216{
217 int result = 0;
218 u8 oldclock = 0;
219
220 result = sis630_transaction_start(adap, size, &oldclock);
221 if (!result) {
222 result = sis630_transaction_wait(adap, size);
223 sis630_transaction_end(adap, oldclock);
224 }
225
226 return result;
227}
228
Amaury Decrême91991f32013-01-29 21:22:26 +0100229static int sis630_block_data(struct i2c_adapter *adap,
230 union i2c_smbus_data *data, int read_write)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231{
232 int i, len = 0, rc = 0;
233 u8 oldclock = 0;
234
235 if (read_write == I2C_SMBUS_WRITE) {
236 len = data->block[0];
237 if (len < 0)
238 len = 0;
239 else if (len > 32)
240 len = 32;
241 sis630_write(SMB_COUNT, len);
Amaury Decrême91991f32013-01-29 21:22:26 +0100242 for (i = 1; i <= len; i++) {
243 dev_dbg(&adap->dev,
244 "set data 0x%02x\n", data->block[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 /* set data */
Amaury Decrême91991f32013-01-29 21:22:26 +0100246 sis630_write(SMB_BYTE + (i - 1) % 8, data->block[i]);
247 if (i == 8 || (len < 8 && i == len)) {
248 dev_dbg(&adap->dev,
249 "start trans len=%d i=%d\n", len, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 /* first transaction */
David Brownell97140342008-07-14 22:38:25 +0200251 rc = sis630_transaction_start(adap,
252 SIS630_BLOCK_DATA, &oldclock);
253 if (rc)
254 return rc;
Amaury Decrême91991f32013-01-29 21:22:26 +0100255 } else if ((i - 1) % 8 == 7 || i == len) {
256 dev_dbg(&adap->dev,
257 "trans_wait len=%d i=%d\n", len, i);
258 if (i > 8) {
259 dev_dbg(&adap->dev,
260 "clear smbary_sts"
261 " len=%d i=%d\n", len, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 /*
263 If this is not first transaction,
264 we must clear sticky bit.
265 clear SMBARY_STS
266 */
Amaury Decrêmea6e7d0ef2013-01-28 22:21:08 +0100267 sis630_write(SMB_STS, BYTE_DONE_STS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 }
David Brownell97140342008-07-14 22:38:25 +0200269 rc = sis630_transaction_wait(adap,
270 SIS630_BLOCK_DATA);
271 if (rc) {
Amaury Decrême91991f32013-01-29 21:22:26 +0100272 dev_dbg(&adap->dev,
273 "trans_wait failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 break;
275 }
276 }
277 }
Amaury Decrême91991f32013-01-29 21:22:26 +0100278 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 /* read request */
280 data->block[0] = len = 0;
David Brownell97140342008-07-14 22:38:25 +0200281 rc = sis630_transaction_start(adap,
282 SIS630_BLOCK_DATA, &oldclock);
283 if (rc)
284 return rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 do {
David Brownell97140342008-07-14 22:38:25 +0200286 rc = sis630_transaction_wait(adap, SIS630_BLOCK_DATA);
287 if (rc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 dev_dbg(&adap->dev, "trans_wait failed\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 break;
290 }
291 /* if this first transaction then read byte count */
292 if (len == 0)
293 data->block[0] = sis630_read(SMB_COUNT);
294
295 /* just to be sure */
296 if (data->block[0] > 32)
297 data->block[0] = 32;
298
Amaury Decrême91991f32013-01-29 21:22:26 +0100299 dev_dbg(&adap->dev,
300 "block data read len=0x%x\n", data->block[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301
Amaury Decrême91991f32013-01-29 21:22:26 +0100302 for (i = 0; i < 8 && len < data->block[0]; i++, len++) {
303 dev_dbg(&adap->dev,
304 "read i=%d len=%d\n", i, len);
305 data->block[len + 1] = sis630_read(SMB_BYTE +
306 i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 }
308
Amaury Decrême91991f32013-01-29 21:22:26 +0100309 dev_dbg(&adap->dev,
310 "clear smbary_sts len=%d i=%d\n", len, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311
312 /* clear SMBARY_STS */
Amaury Decrêmea6e7d0ef2013-01-28 22:21:08 +0100313 sis630_write(SMB_STS, BYTE_DONE_STS);
Amaury Decrême91991f32013-01-29 21:22:26 +0100314 } while (len < data->block[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 }
316
317 sis630_transaction_end(adap, oldclock);
318
319 return rc;
320}
321
David Brownell97140342008-07-14 22:38:25 +0200322/* Return negative errno on error. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323static s32 sis630_access(struct i2c_adapter *adap, u16 addr,
324 unsigned short flags, char read_write,
325 u8 command, int size, union i2c_smbus_data *data)
326{
David Brownell97140342008-07-14 22:38:25 +0200327 int status;
328
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 switch (size) {
Amaury Decrême91991f32013-01-29 21:22:26 +0100330 case I2C_SMBUS_QUICK:
331 sis630_write(SMB_ADDR,
332 ((addr & 0x7f) << 1) | (read_write & 0x01));
333 size = SIS630_QUICK;
334 break;
335 case I2C_SMBUS_BYTE:
336 sis630_write(SMB_ADDR,
337 ((addr & 0x7f) << 1) | (read_write & 0x01));
338 if (read_write == I2C_SMBUS_WRITE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 sis630_write(SMB_CMD, command);
Amaury Decrême91991f32013-01-29 21:22:26 +0100340 size = SIS630_BYTE;
341 break;
342 case I2C_SMBUS_BYTE_DATA:
343 sis630_write(SMB_ADDR,
344 ((addr & 0x7f) << 1) | (read_write & 0x01));
345 sis630_write(SMB_CMD, command);
346 if (read_write == I2C_SMBUS_WRITE)
347 sis630_write(SMB_BYTE, data->byte);
348 size = SIS630_BYTE_DATA;
349 break;
350 case I2C_SMBUS_PROC_CALL:
351 case I2C_SMBUS_WORD_DATA:
352 sis630_write(SMB_ADDR,
353 ((addr & 0x7f) << 1) | (read_write & 0x01));
354 sis630_write(SMB_CMD, command);
355 if (read_write == I2C_SMBUS_WRITE) {
356 sis630_write(SMB_BYTE, data->word & 0xff);
357 sis630_write(SMB_BYTE + 1, (data->word & 0xff00) >> 8);
358 }
359 size = (size == I2C_SMBUS_PROC_CALL ?
360 SIS630_PCALL : SIS630_WORD_DATA);
361 break;
362 case I2C_SMBUS_BLOCK_DATA:
363 sis630_write(SMB_ADDR,
364 ((addr & 0x7f) << 1) | (read_write & 0x01));
365 sis630_write(SMB_CMD, command);
366 size = SIS630_BLOCK_DATA;
367 return sis630_block_data(adap, data, read_write);
368 default:
369 dev_warn(&adap->dev, "Unsupported transaction %d\n", size);
370 return -EOPNOTSUPP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 }
372
David Brownell97140342008-07-14 22:38:25 +0200373 status = sis630_transaction(adap, size);
374 if (status)
375 return status;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376
377 if ((size != SIS630_PCALL) &&
378 ((read_write == I2C_SMBUS_WRITE) || (size == SIS630_QUICK))) {
379 return 0;
380 }
381
Amaury Decrême91991f32013-01-29 21:22:26 +0100382 switch (size) {
383 case SIS630_BYTE:
384 case SIS630_BYTE_DATA:
385 data->byte = sis630_read(SMB_BYTE);
386 break;
387 case SIS630_PCALL:
388 case SIS630_WORD_DATA:
389 data->word = sis630_read(SMB_BYTE) +
390 (sis630_read(SMB_BYTE + 1) << 8);
391 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 }
393
394 return 0;
395}
396
397static u32 sis630_func(struct i2c_adapter *adapter)
398{
Amaury Decrême91991f32013-01-29 21:22:26 +0100399 return I2C_FUNC_SMBUS_QUICK | I2C_FUNC_SMBUS_BYTE |
400 I2C_FUNC_SMBUS_BYTE_DATA | I2C_FUNC_SMBUS_WORD_DATA |
401 I2C_FUNC_SMBUS_PROC_CALL | I2C_FUNC_SMBUS_BLOCK_DATA;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402}
403
Bill Pemberton0b255e92012-11-27 15:59:38 -0500404static int sis630_setup(struct pci_dev *sis630_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405{
406 unsigned char b;
407 struct pci_dev *dummy = NULL;
Jean Delvare7c1f59c2012-01-12 20:32:03 +0100408 int retval, i;
Amaury Decrême974d6a32013-01-28 22:21:05 +0100409 /* acpi base address */
410 unsigned short acpi_base;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411
412 /* check for supported SiS devices */
Amaury Decrême91991f32013-01-29 21:22:26 +0100413 for (i = 0; supported[i] > 0; i++) {
414 dummy = pci_get_device(PCI_VENDOR_ID_SI, supported[i], dummy);
415 if (dummy)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 break; /* found */
417 }
418
419 if (dummy) {
420 pci_dev_put(dummy);
Amaury Decrême91991f32013-01-29 21:22:26 +0100421 } else if (force) {
422 dev_err(&sis630_dev->dev,
423 "WARNING: Can't detect SIS630 compatible device, but "
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 "loading because of force option enabled\n");
Amaury Decrême91991f32013-01-29 21:22:26 +0100425 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 return -ENODEV;
427 }
428
429 /*
430 Enable ACPI first , so we can accsess reg 74-75
431 in acpi io space and read acpi base addr
432 */
Amaury Decrême91991f32013-01-29 21:22:26 +0100433 if (pci_read_config_byte(sis630_dev, SIS630_BIOS_CTL_REG, &b)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 dev_err(&sis630_dev->dev, "Error: Can't read bios ctl reg\n");
Jean Delvare7c1f59c2012-01-12 20:32:03 +0100435 retval = -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 goto exit;
437 }
438 /* if ACPI already enabled , do nothing */
439 if (!(b & 0x80) &&
440 pci_write_config_byte(sis630_dev, SIS630_BIOS_CTL_REG, b | 0x80)) {
441 dev_err(&sis630_dev->dev, "Error: Can't enable ACPI\n");
Jean Delvare7c1f59c2012-01-12 20:32:03 +0100442 retval = -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 goto exit;
444 }
445
446 /* Determine the ACPI base address */
Amaury Decrême91991f32013-01-29 21:22:26 +0100447 if (pci_read_config_word(sis630_dev,
448 SIS630_ACPI_BASE_REG, &acpi_base)) {
449 dev_err(&sis630_dev->dev,
450 "Error: Can't determine ACPI base address\n");
Jean Delvare7c1f59c2012-01-12 20:32:03 +0100451 retval = -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 goto exit;
453 }
454
Amaury Decrême97da42d2013-01-28 22:21:09 +0100455 dev_dbg(&sis630_dev->dev, "ACPI base at 0x%04hx\n", acpi_base);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456
Amaury Decrême974d6a32013-01-28 22:21:05 +0100457 if (supported[i] == PCI_DEVICE_ID_SI_760)
458 smbus_base = acpi_base + 0xE0;
459 else
460 smbus_base = acpi_base + 0x80;
461
462 dev_dbg(&sis630_dev->dev, "SMBus base at 0x%04hx\n", smbus_base);
463
464 retval = acpi_check_region(smbus_base + SMB_STS, SIS630_SMB_IOREGION,
Jean Delvare54fb4a052008-07-14 22:38:33 +0200465 sis630_driver.name);
466 if (retval)
467 goto exit;
468
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 /* Everything is happy, let's grab the memory and set things up. */
Amaury Decrême974d6a32013-01-28 22:21:05 +0100470 if (!request_region(smbus_base + SMB_STS, SIS630_SMB_IOREGION,
Jean Delvared6072f82005-09-25 16:37:04 +0200471 sis630_driver.name)) {
Amaury Decrême974d6a32013-01-28 22:21:05 +0100472 dev_err(&sis630_dev->dev,
Louis Taylor60f76912019-03-02 14:18:36 +0000473 "I/O Region 0x%04x-0x%04x for SMBus already in use.\n",
Amaury Decrême974d6a32013-01-28 22:21:05 +0100474 smbus_base + SMB_STS,
475 smbus_base + SMB_STS + SIS630_SMB_IOREGION - 1);
Jean Delvare7c1f59c2012-01-12 20:32:03 +0100476 retval = -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 goto exit;
478 }
479
480 retval = 0;
481
482exit:
483 if (retval)
Amaury Decrême974d6a32013-01-28 22:21:05 +0100484 smbus_base = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 return retval;
486}
487
488
Jean Delvare8f9082c2006-09-03 22:39:46 +0200489static const struct i2c_algorithm smbus_algorithm = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 .smbus_xfer = sis630_access,
491 .functionality = sis630_func,
492};
493
494static struct i2c_adapter sis630_adapter = {
495 .owner = THIS_MODULE,
Jean Delvare3401b2f2008-07-14 22:38:29 +0200496 .class = I2C_CLASS_HWMON | I2C_CLASS_SPD,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 .algo = &smbus_algorithm,
Amaury Decrême974d6a32013-01-28 22:21:05 +0100498 .retries = 3
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499};
500
Jingoo Han392debf2013-12-03 08:11:20 +0900501static const struct pci_device_id sis630_ids[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 { PCI_DEVICE(PCI_VENDOR_ID_SI, PCI_DEVICE_ID_SI_503) },
503 { PCI_DEVICE(PCI_VENDOR_ID_SI, PCI_DEVICE_ID_SI_LPC) },
Amaury Decrême974d6a32013-01-28 22:21:05 +0100504 { PCI_DEVICE(PCI_VENDOR_ID_SI, PCI_DEVICE_ID_SI_964) },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 { 0, }
506};
507
Amaury Decrême91991f32013-01-29 21:22:26 +0100508MODULE_DEVICE_TABLE(pci, sis630_ids);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509
Bill Pemberton0b255e92012-11-27 15:59:38 -0500510static int sis630_probe(struct pci_dev *dev, const struct pci_device_id *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511{
512 if (sis630_setup(dev)) {
Amaury Decrême91991f32013-01-29 21:22:26 +0100513 dev_err(&dev->dev,
514 "SIS630 compatible bus not detected, "
515 "module not inserted.\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 return -ENODEV;
517 }
518
Robert P. J. Day405ae7d2007-02-17 19:13:42 +0100519 /* set up the sysfs linkage to our parent device */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 sis630_adapter.dev.parent = &dev->dev;
521
Jean Delvare66c7acf2009-01-07 14:29:18 +0100522 snprintf(sis630_adapter.name, sizeof(sis630_adapter.name),
Louis Taylor60f76912019-03-02 14:18:36 +0000523 "SMBus SIS630 adapter at %04x", smbus_base + SMB_STS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524
525 return i2c_add_adapter(&sis630_adapter);
526}
527
Bill Pemberton0b255e92012-11-27 15:59:38 -0500528static void sis630_remove(struct pci_dev *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529{
Amaury Decrême974d6a32013-01-28 22:21:05 +0100530 if (smbus_base) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 i2c_del_adapter(&sis630_adapter);
Amaury Decrême974d6a32013-01-28 22:21:05 +0100532 release_region(smbus_base + SMB_STS, SIS630_SMB_IOREGION);
533 smbus_base = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 }
535}
536
537
538static struct pci_driver sis630_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 .name = "sis630_smbus",
540 .id_table = sis630_ids,
541 .probe = sis630_probe,
Bill Pemberton0b255e92012-11-27 15:59:38 -0500542 .remove = sis630_remove,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543};
544
Axel Lin56f21782012-07-24 14:13:56 +0200545module_pci_driver(sis630_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546
547MODULE_LICENSE("GPL");
548MODULE_AUTHOR("Alexander Malysh <amalysh@web.de>");
549MODULE_DESCRIPTION("SIS630 SMBus driver");