blob: bb132ea7d2b49e1b0050ff998d0f893b6cdb80af [file] [log] [blame]
Neil Horman13f35ac2013-02-04 14:54:10 -05001/*
2 * This file is provided under a dual BSD/GPLv2 license. When using or
3 * redistributing this file, you may do so under either license.
4 *
5 * Copyright(c) 2012 Intel Corporation. All rights reserved.
6 *
7 * GPL LICENSE SUMMARY
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of version 2 of the GNU General Public License as
11 * published by the Free Software Foundation.
12 *
13 * This program is distributed in the hope that it will be useful, but
14 * WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
21 * The full GNU General Public License is included in this distribution
22 * in the file called LICENSE.GPL.
23 *
24 * BSD LICENSE
25 *
26 * Redistribution and use in source and binary forms, with or without
27 * modification, are permitted provided that the following conditions
28 * are met:
29 *
30 * * Redistributions of source code must retain the above copyright
31 * notice, this list of conditions and the following disclaimer.
32 * * Redistributions in binary form must reproduce the above copyright
33 * notice, this list of conditions and the following disclaimer in
34 * the documentation and/or other materials provided with the
35 * distribution.
36 * * Neither the name of Intel Corporation nor the names of its
37 * contributors may be used to endorse or promote products derived
38 * from this software without specific prior written permission.
39 *
40 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
41 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
42 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
43 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
44 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
45 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
46 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
47 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
48 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
49 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
50 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
51 */
52
53/*
54 * Supports the SMBus Message Transport (SMT) in the Intel Atom Processor
55 * S12xx Product Family.
56 *
57 * Features supported by this driver:
58 * Hardware PEC yes
59 * Block buffer yes
60 * Block process call transaction no
61 * Slave mode no
62 */
63
64#include <linux/module.h>
65#include <linux/init.h>
66#include <linux/pci.h>
67#include <linux/kernel.h>
68#include <linux/stddef.h>
69#include <linux/completion.h>
70#include <linux/dma-mapping.h>
71#include <linux/i2c.h>
72#include <linux/acpi.h>
73#include <linux/interrupt.h>
74
75#include <asm-generic/io-64-nonatomic-lo-hi.h>
76
77/* PCI Address Constants */
78#define SMBBAR 0
79
80/* PCI DIDs for the Intel SMBus Message Transport (SMT) Devices */
81#define PCI_DEVICE_ID_INTEL_S1200_SMT0 0x0c59
82#define PCI_DEVICE_ID_INTEL_S1200_SMT1 0x0c5a
Seth Heasley488b9262013-02-21 12:30:43 +000083#define PCI_DEVICE_ID_INTEL_AVOTON_SMT 0x1f15
Neil Horman13f35ac2013-02-04 14:54:10 -050084
85#define ISMT_DESC_ENTRIES 32 /* number of descriptor entries */
86#define ISMT_MAX_RETRIES 3 /* number of SMBus retries to attempt */
87
88/* Hardware Descriptor Constants - Control Field */
89#define ISMT_DESC_CWRL 0x01 /* Command/Write Length */
90#define ISMT_DESC_BLK 0X04 /* Perform Block Transaction */
91#define ISMT_DESC_FAIR 0x08 /* Set fairness flag upon successful arbit. */
92#define ISMT_DESC_PEC 0x10 /* Packet Error Code */
93#define ISMT_DESC_I2C 0x20 /* I2C Enable */
94#define ISMT_DESC_INT 0x40 /* Interrupt */
95#define ISMT_DESC_SOE 0x80 /* Stop On Error */
96
97/* Hardware Descriptor Constants - Status Field */
98#define ISMT_DESC_SCS 0x01 /* Success */
99#define ISMT_DESC_DLTO 0x04 /* Data Low Time Out */
100#define ISMT_DESC_NAK 0x08 /* NAK Received */
101#define ISMT_DESC_CRC 0x10 /* CRC Error */
102#define ISMT_DESC_CLTO 0x20 /* Clock Low Time Out */
103#define ISMT_DESC_COL 0x40 /* Collisions */
104#define ISMT_DESC_LPR 0x80 /* Large Packet Received */
105
106/* Macros */
107#define ISMT_DESC_ADDR_RW(addr, rw) (((addr) << 1) | (rw))
108
109/* iSMT General Register address offsets (SMBBAR + <addr>) */
110#define ISMT_GR_GCTRL 0x000 /* General Control */
111#define ISMT_GR_SMTICL 0x008 /* SMT Interrupt Cause Location */
112#define ISMT_GR_ERRINTMSK 0x010 /* Error Interrupt Mask */
113#define ISMT_GR_ERRAERMSK 0x014 /* Error AER Mask */
114#define ISMT_GR_ERRSTS 0x018 /* Error Status */
115#define ISMT_GR_ERRINFO 0x01c /* Error Information */
116
117/* iSMT Master Registers */
118#define ISMT_MSTR_MDBA 0x100 /* Master Descriptor Base Address */
119#define ISMT_MSTR_MCTRL 0x108 /* Master Control */
120#define ISMT_MSTR_MSTS 0x10c /* Master Status */
121#define ISMT_MSTR_MDS 0x110 /* Master Descriptor Size */
122#define ISMT_MSTR_RPOLICY 0x114 /* Retry Policy */
123
124/* iSMT Miscellaneous Registers */
125#define ISMT_SPGT 0x300 /* SMBus PHY Global Timing */
126
127/* General Control Register (GCTRL) bit definitions */
128#define ISMT_GCTRL_TRST 0x04 /* Target Reset */
129#define ISMT_GCTRL_KILL 0x08 /* Kill */
130#define ISMT_GCTRL_SRST 0x40 /* Soft Reset */
131
132/* Master Control Register (MCTRL) bit definitions */
133#define ISMT_MCTRL_SS 0x01 /* Start/Stop */
134#define ISMT_MCTRL_MEIE 0x10 /* Master Error Interrupt Enable */
135#define ISMT_MCTRL_FMHP 0x00ff0000 /* Firmware Master Head Ptr (FMHP) */
136
137/* Master Status Register (MSTS) bit definitions */
138#define ISMT_MSTS_HMTP 0xff0000 /* HW Master Tail Pointer (HMTP) */
139#define ISMT_MSTS_MIS 0x20 /* Master Interrupt Status (MIS) */
140#define ISMT_MSTS_MEIS 0x10 /* Master Error Int Status (MEIS) */
141#define ISMT_MSTS_IP 0x01 /* In Progress */
142
143/* Master Descriptor Size (MDS) bit definitions */
144#define ISMT_MDS_MASK 0xff /* Master Descriptor Size mask (MDS) */
145
146/* SMBus PHY Global Timing Register (SPGT) bit definitions */
147#define ISMT_SPGT_SPD_MASK 0xc0000000 /* SMBus Speed mask */
148#define ISMT_SPGT_SPD_80K 0x00 /* 80 kHz */
149#define ISMT_SPGT_SPD_100K (0x1 << 30) /* 100 kHz */
150#define ISMT_SPGT_SPD_400K (0x2 << 30) /* 400 kHz */
151#define ISMT_SPGT_SPD_1M (0x3 << 30) /* 1 MHz */
152
153
154/* MSI Control Register (MSICTL) bit definitions */
155#define ISMT_MSICTL_MSIE 0x01 /* MSI Enable */
156
157/* iSMT Hardware Descriptor */
158struct ismt_desc {
159 u8 tgtaddr_rw; /* target address & r/w bit */
160 u8 wr_len_cmd; /* write length in bytes or a command */
161 u8 rd_len; /* read length */
162 u8 control; /* control bits */
163 u8 status; /* status bits */
164 u8 retry; /* collision retry and retry count */
165 u8 rxbytes; /* received bytes */
166 u8 txbytes; /* transmitted bytes */
167 u32 dptr_low; /* lower 32 bit of the data pointer */
168 u32 dptr_high; /* upper 32 bit of the data pointer */
169} __packed;
170
171struct ismt_priv {
172 struct i2c_adapter adapter;
173 void *smba; /* PCI BAR */
174 struct pci_dev *pci_dev;
175 struct ismt_desc *hw; /* descriptor virt base addr */
176 dma_addr_t io_rng_dma; /* descriptor HW base addr */
177 u8 head; /* ring buffer head pointer */
178 struct completion cmp; /* interrupt completion */
179 u8 dma_buffer[I2C_SMBUS_BLOCK_MAX + 1]; /* temp R/W data buffer */
180 bool using_msi; /* type of interrupt flag */
181};
182
183/**
184 * ismt_ids - PCI device IDs supported by this driver
185 */
Wolfram Sang1fdc66a2013-03-22 11:10:53 +0100186static DEFINE_PCI_DEVICE_TABLE(ismt_ids) = {
Neil Horman13f35ac2013-02-04 14:54:10 -0500187 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_S1200_SMT0) },
188 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_S1200_SMT1) },
Seth Heasley488b9262013-02-21 12:30:43 +0000189 { PCI_DEVICE(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_AVOTON_SMT) },
Neil Horman13f35ac2013-02-04 14:54:10 -0500190 { 0, }
191};
192
193MODULE_DEVICE_TABLE(pci, ismt_ids);
194
195/* Bus speed control bits for slow debuggers - refer to the docs for usage */
196static unsigned int bus_speed;
197module_param(bus_speed, uint, S_IRUGO);
198MODULE_PARM_DESC(bus_speed, "Bus Speed in kHz (0 = BIOS default)");
199
200/**
201 * __ismt_desc_dump() - dump the contents of a specific descriptor
202 */
203static void __ismt_desc_dump(struct device *dev, const struct ismt_desc *desc)
204{
205
206 dev_dbg(dev, "Descriptor struct: %p\n", desc);
207 dev_dbg(dev, "\ttgtaddr_rw=0x%02X\n", desc->tgtaddr_rw);
208 dev_dbg(dev, "\twr_len_cmd=0x%02X\n", desc->wr_len_cmd);
209 dev_dbg(dev, "\trd_len= 0x%02X\n", desc->rd_len);
210 dev_dbg(dev, "\tcontrol= 0x%02X\n", desc->control);
211 dev_dbg(dev, "\tstatus= 0x%02X\n", desc->status);
212 dev_dbg(dev, "\tretry= 0x%02X\n", desc->retry);
213 dev_dbg(dev, "\trxbytes= 0x%02X\n", desc->rxbytes);
214 dev_dbg(dev, "\ttxbytes= 0x%02X\n", desc->txbytes);
215 dev_dbg(dev, "\tdptr_low= 0x%08X\n", desc->dptr_low);
216 dev_dbg(dev, "\tdptr_high= 0x%08X\n", desc->dptr_high);
217}
218/**
219 * ismt_desc_dump() - dump the contents of a descriptor for debug purposes
220 * @priv: iSMT private data
221 */
222static void ismt_desc_dump(struct ismt_priv *priv)
223{
224 struct device *dev = &priv->pci_dev->dev;
225 struct ismt_desc *desc = &priv->hw[priv->head];
226
227 dev_dbg(dev, "Dump of the descriptor struct: 0x%X\n", priv->head);
228 __ismt_desc_dump(dev, desc);
229}
230
231/**
232 * ismt_gen_reg_dump() - dump the iSMT General Registers
233 * @priv: iSMT private data
234 */
235static void ismt_gen_reg_dump(struct ismt_priv *priv)
236{
237 struct device *dev = &priv->pci_dev->dev;
238
239 dev_dbg(dev, "Dump of the iSMT General Registers\n");
240 dev_dbg(dev, " GCTRL.... : (0x%p)=0x%X\n",
241 priv->smba + ISMT_GR_GCTRL,
242 readl(priv->smba + ISMT_GR_GCTRL));
243 dev_dbg(dev, " SMTICL... : (0x%p)=0x%016llX\n",
244 priv->smba + ISMT_GR_SMTICL,
245 (long long unsigned int)readq(priv->smba + ISMT_GR_SMTICL));
246 dev_dbg(dev, " ERRINTMSK : (0x%p)=0x%X\n",
247 priv->smba + ISMT_GR_ERRINTMSK,
248 readl(priv->smba + ISMT_GR_ERRINTMSK));
249 dev_dbg(dev, " ERRAERMSK : (0x%p)=0x%X\n",
250 priv->smba + ISMT_GR_ERRAERMSK,
251 readl(priv->smba + ISMT_GR_ERRAERMSK));
252 dev_dbg(dev, " ERRSTS... : (0x%p)=0x%X\n",
253 priv->smba + ISMT_GR_ERRSTS,
254 readl(priv->smba + ISMT_GR_ERRSTS));
255 dev_dbg(dev, " ERRINFO.. : (0x%p)=0x%X\n",
256 priv->smba + ISMT_GR_ERRINFO,
257 readl(priv->smba + ISMT_GR_ERRINFO));
258}
259
260/**
261 * ismt_mstr_reg_dump() - dump the iSMT Master Registers
262 * @priv: iSMT private data
263 */
264static void ismt_mstr_reg_dump(struct ismt_priv *priv)
265{
266 struct device *dev = &priv->pci_dev->dev;
267
268 dev_dbg(dev, "Dump of the iSMT Master Registers\n");
269 dev_dbg(dev, " MDBA..... : (0x%p)=0x%016llX\n",
270 priv->smba + ISMT_MSTR_MDBA,
271 (long long unsigned int)readq(priv->smba + ISMT_MSTR_MDBA));
272 dev_dbg(dev, " MCTRL.... : (0x%p)=0x%X\n",
273 priv->smba + ISMT_MSTR_MCTRL,
274 readl(priv->smba + ISMT_MSTR_MCTRL));
275 dev_dbg(dev, " MSTS..... : (0x%p)=0x%X\n",
276 priv->smba + ISMT_MSTR_MSTS,
277 readl(priv->smba + ISMT_MSTR_MSTS));
278 dev_dbg(dev, " MDS...... : (0x%p)=0x%X\n",
279 priv->smba + ISMT_MSTR_MDS,
280 readl(priv->smba + ISMT_MSTR_MDS));
281 dev_dbg(dev, " RPOLICY.. : (0x%p)=0x%X\n",
282 priv->smba + ISMT_MSTR_RPOLICY,
283 readl(priv->smba + ISMT_MSTR_RPOLICY));
284 dev_dbg(dev, " SPGT..... : (0x%p)=0x%X\n",
285 priv->smba + ISMT_SPGT,
286 readl(priv->smba + ISMT_SPGT));
287}
288
289/**
290 * ismt_submit_desc() - add a descriptor to the ring
291 * @priv: iSMT private data
292 */
293static void ismt_submit_desc(struct ismt_priv *priv)
294{
295 uint fmhp;
296 uint val;
297
298 ismt_desc_dump(priv);
299 ismt_gen_reg_dump(priv);
300 ismt_mstr_reg_dump(priv);
301
302 /* Set the FMHP (Firmware Master Head Pointer)*/
303 fmhp = ((priv->head + 1) % ISMT_DESC_ENTRIES) << 16;
304 val = readl(priv->smba + ISMT_MSTR_MCTRL);
305 writel((val & ~ISMT_MCTRL_FMHP) | fmhp,
306 priv->smba + ISMT_MSTR_MCTRL);
307
308 /* Set the start bit */
309 val = readl(priv->smba + ISMT_MSTR_MCTRL);
310 writel(val | ISMT_MCTRL_SS,
311 priv->smba + ISMT_MSTR_MCTRL);
312}
313
314/**
315 * ismt_process_desc() - handle the completion of the descriptor
316 * @desc: the iSMT hardware descriptor
317 * @data: data buffer from the upper layer
318 * @priv: ismt_priv struct holding our dma buffer
319 * @size: SMBus transaction type
320 * @read_write: flag to indicate if this is a read or write
321 */
322static int ismt_process_desc(const struct ismt_desc *desc,
323 union i2c_smbus_data *data,
324 struct ismt_priv *priv, int size,
325 char read_write)
326{
327 u8 *dma_buffer = priv->dma_buffer;
328
329 dev_dbg(&priv->pci_dev->dev, "Processing completed descriptor\n");
330 __ismt_desc_dump(&priv->pci_dev->dev, desc);
331
332 if (desc->status & ISMT_DESC_SCS) {
333 if (read_write == I2C_SMBUS_WRITE &&
334 size != I2C_SMBUS_PROC_CALL)
335 return 0;
336
337 switch (size) {
338 case I2C_SMBUS_BYTE:
339 case I2C_SMBUS_BYTE_DATA:
340 data->byte = dma_buffer[0];
341 break;
342 case I2C_SMBUS_WORD_DATA:
343 case I2C_SMBUS_PROC_CALL:
344 data->word = dma_buffer[0] | (dma_buffer[1] << 8);
345 break;
346 case I2C_SMBUS_BLOCK_DATA:
robert.valiquette@intel.com001cebf2013-11-14 19:52:30 -0500347 case I2C_SMBUS_I2C_BLOCK_DATA:
Neil Horman13f35ac2013-02-04 14:54:10 -0500348 memcpy(&data->block[1], dma_buffer, desc->rxbytes);
349 data->block[0] = desc->rxbytes;
350 break;
351 }
352 return 0;
353 }
354
355 if (likely(desc->status & ISMT_DESC_NAK))
356 return -ENXIO;
357
358 if (desc->status & ISMT_DESC_CRC)
359 return -EBADMSG;
360
361 if (desc->status & ISMT_DESC_COL)
362 return -EAGAIN;
363
364 if (desc->status & ISMT_DESC_LPR)
365 return -EPROTO;
366
367 if (desc->status & (ISMT_DESC_DLTO | ISMT_DESC_CLTO))
368 return -ETIMEDOUT;
369
370 return -EIO;
371}
372
373/**
374 * ismt_access() - process an SMBus command
375 * @adap: the i2c host adapter
376 * @addr: address of the i2c/SMBus target
377 * @flags: command options
378 * @read_write: read from or write to device
379 * @command: the i2c/SMBus command to issue
380 * @size: SMBus transaction type
381 * @data: read/write data buffer
382 */
383static int ismt_access(struct i2c_adapter *adap, u16 addr,
384 unsigned short flags, char read_write, u8 command,
385 int size, union i2c_smbus_data *data)
386{
387 int ret;
388 dma_addr_t dma_addr = 0; /* address of the data buffer */
389 u8 dma_size = 0;
390 enum dma_data_direction dma_direction = 0;
391 struct ismt_desc *desc;
392 struct ismt_priv *priv = i2c_get_adapdata(adap);
393 struct device *dev = &priv->pci_dev->dev;
394
395 desc = &priv->hw[priv->head];
396
James Ralstonbf416912013-09-24 16:47:55 -0700397 /* Initialize the DMA buffer */
398 memset(priv->dma_buffer, 0, sizeof(priv->dma_buffer));
399
Neil Horman13f35ac2013-02-04 14:54:10 -0500400 /* Initialize the descriptor */
401 memset(desc, 0, sizeof(struct ismt_desc));
402 desc->tgtaddr_rw = ISMT_DESC_ADDR_RW(addr, read_write);
403
404 /* Initialize common control bits */
405 if (likely(priv->using_msi))
406 desc->control = ISMT_DESC_INT | ISMT_DESC_FAIR;
407 else
408 desc->control = ISMT_DESC_FAIR;
409
410 if ((flags & I2C_CLIENT_PEC) && (size != I2C_SMBUS_QUICK)
411 && (size != I2C_SMBUS_I2C_BLOCK_DATA))
412 desc->control |= ISMT_DESC_PEC;
413
414 switch (size) {
415 case I2C_SMBUS_QUICK:
416 dev_dbg(dev, "I2C_SMBUS_QUICK\n");
417 break;
418
419 case I2C_SMBUS_BYTE:
420 if (read_write == I2C_SMBUS_WRITE) {
421 /*
422 * Send Byte
423 * The command field contains the write data
424 */
425 dev_dbg(dev, "I2C_SMBUS_BYTE: WRITE\n");
426 desc->control |= ISMT_DESC_CWRL;
427 desc->wr_len_cmd = command;
428 } else {
429 /* Receive Byte */
430 dev_dbg(dev, "I2C_SMBUS_BYTE: READ\n");
431 dma_size = 1;
432 dma_direction = DMA_FROM_DEVICE;
433 desc->rd_len = 1;
434 }
435 break;
436
437 case I2C_SMBUS_BYTE_DATA:
438 if (read_write == I2C_SMBUS_WRITE) {
439 /*
440 * Write Byte
441 * Command plus 1 data byte
442 */
443 dev_dbg(dev, "I2C_SMBUS_BYTE_DATA: WRITE\n");
444 desc->wr_len_cmd = 2;
445 dma_size = 2;
446 dma_direction = DMA_TO_DEVICE;
447 priv->dma_buffer[0] = command;
448 priv->dma_buffer[1] = data->byte;
449 } else {
450 /* Read Byte */
451 dev_dbg(dev, "I2C_SMBUS_BYTE_DATA: READ\n");
452 desc->control |= ISMT_DESC_CWRL;
453 desc->wr_len_cmd = command;
454 desc->rd_len = 1;
455 dma_size = 1;
456 dma_direction = DMA_FROM_DEVICE;
457 }
458 break;
459
460 case I2C_SMBUS_WORD_DATA:
461 if (read_write == I2C_SMBUS_WRITE) {
462 /* Write Word */
463 dev_dbg(dev, "I2C_SMBUS_WORD_DATA: WRITE\n");
464 desc->wr_len_cmd = 3;
465 dma_size = 3;
466 dma_direction = DMA_TO_DEVICE;
467 priv->dma_buffer[0] = command;
468 priv->dma_buffer[1] = data->word & 0xff;
469 priv->dma_buffer[2] = data->word >> 8;
470 } else {
471 /* Read Word */
472 dev_dbg(dev, "I2C_SMBUS_WORD_DATA: READ\n");
473 desc->wr_len_cmd = command;
474 desc->control |= ISMT_DESC_CWRL;
475 desc->rd_len = 2;
476 dma_size = 2;
477 dma_direction = DMA_FROM_DEVICE;
478 }
479 break;
480
481 case I2C_SMBUS_PROC_CALL:
482 dev_dbg(dev, "I2C_SMBUS_PROC_CALL\n");
483 desc->wr_len_cmd = 3;
484 desc->rd_len = 2;
485 dma_size = 3;
486 dma_direction = DMA_BIDIRECTIONAL;
487 priv->dma_buffer[0] = command;
488 priv->dma_buffer[1] = data->word & 0xff;
489 priv->dma_buffer[2] = data->word >> 8;
490 break;
491
492 case I2C_SMBUS_BLOCK_DATA:
493 if (read_write == I2C_SMBUS_WRITE) {
494 /* Block Write */
495 dev_dbg(dev, "I2C_SMBUS_BLOCK_DATA: WRITE\n");
496 dma_size = data->block[0] + 1;
497 dma_direction = DMA_TO_DEVICE;
498 desc->wr_len_cmd = dma_size;
499 desc->control |= ISMT_DESC_BLK;
500 priv->dma_buffer[0] = command;
501 memcpy(&priv->dma_buffer[1], &data->block[1], dma_size);
502 } else {
503 /* Block Read */
504 dev_dbg(dev, "I2C_SMBUS_BLOCK_DATA: READ\n");
505 dma_size = I2C_SMBUS_BLOCK_MAX;
506 dma_direction = DMA_FROM_DEVICE;
507 desc->rd_len = dma_size;
508 desc->wr_len_cmd = command;
509 desc->control |= (ISMT_DESC_BLK | ISMT_DESC_CWRL);
510 }
511 break;
512
robert.valiquette@intel.com001cebf2013-11-14 19:52:30 -0500513 case I2C_SMBUS_I2C_BLOCK_DATA:
514 /* Make sure the length is valid */
515 if (data->block[0] < 1)
516 data->block[0] = 1;
517
518 if (data->block[0] > I2C_SMBUS_BLOCK_MAX)
519 data->block[0] = I2C_SMBUS_BLOCK_MAX;
520
521 if (read_write == I2C_SMBUS_WRITE) {
522 /* i2c Block Write */
523 dev_dbg(dev, "I2C_SMBUS_I2C_BLOCK_DATA: WRITE\n");
524 dma_size = data->block[0] + 1;
525 dma_direction = DMA_TO_DEVICE;
526 desc->wr_len_cmd = dma_size;
527 desc->control |= ISMT_DESC_I2C;
528 priv->dma_buffer[0] = command;
529 memcpy(&priv->dma_buffer[1], &data->block[1], dma_size);
530 } else {
531 /* i2c Block Read */
532 dev_dbg(dev, "I2C_SMBUS_I2C_BLOCK_DATA: READ\n");
533 dma_size = data->block[0];
534 dma_direction = DMA_FROM_DEVICE;
535 desc->rd_len = dma_size;
536 desc->wr_len_cmd = command;
537 desc->control |= (ISMT_DESC_I2C | ISMT_DESC_CWRL);
538 /*
539 * Per the "Table 15-15. I2C Commands",
540 * in the External Design Specification (EDS),
541 * (Document Number: 508084, Revision: 2.0),
542 * the _rw bit must be 0
543 */
544 desc->tgtaddr_rw = ISMT_DESC_ADDR_RW(addr, 0);
545 }
546 break;
547
Neil Horman13f35ac2013-02-04 14:54:10 -0500548 default:
549 dev_err(dev, "Unsupported transaction %d\n",
550 size);
551 return -EOPNOTSUPP;
552 }
553
554 /* map the data buffer */
555 if (dma_size != 0) {
556 dev_dbg(dev, " dev=%p\n", dev);
557 dev_dbg(dev, " data=%p\n", data);
558 dev_dbg(dev, " dma_buffer=%p\n", priv->dma_buffer);
559 dev_dbg(dev, " dma_size=%d\n", dma_size);
560 dev_dbg(dev, " dma_direction=%d\n", dma_direction);
561
562 dma_addr = dma_map_single(dev,
563 priv->dma_buffer,
564 dma_size,
565 dma_direction);
566
567 if (dma_mapping_error(dev, dma_addr)) {
568 dev_err(dev, "Error in mapping dma buffer %p\n",
569 priv->dma_buffer);
570 return -EIO;
571 }
572
573 dev_dbg(dev, " dma_addr = 0x%016llX\n",
Randy Dunlap724d5ed2013-02-15 08:51:40 +0000574 (unsigned long long)dma_addr);
Neil Horman13f35ac2013-02-04 14:54:10 -0500575
576 desc->dptr_low = lower_32_bits(dma_addr);
577 desc->dptr_high = upper_32_bits(dma_addr);
578 }
579
Wolfram Sang16735d02013-11-14 14:32:02 -0800580 reinit_completion(&priv->cmp);
Neil Horman13f35ac2013-02-04 14:54:10 -0500581
582 /* Add the descriptor */
583 ismt_submit_desc(priv);
584
585 /* Now we wait for interrupt completion, 1s */
586 ret = wait_for_completion_timeout(&priv->cmp, HZ*1);
587
588 /* unmap the data buffer */
589 if (dma_size != 0)
590 dma_unmap_single(&adap->dev, dma_addr, dma_size, dma_direction);
591
592 if (unlikely(!ret)) {
593 dev_err(dev, "completion wait timed out\n");
594 ret = -ETIMEDOUT;
595 goto out;
596 }
597
598 /* do any post processing of the descriptor here */
599 ret = ismt_process_desc(desc, data, priv, size, read_write);
600
601out:
602 /* Update the ring pointer */
603 priv->head++;
604 priv->head %= ISMT_DESC_ENTRIES;
605
606 return ret;
607}
608
609/**
610 * ismt_func() - report which i2c commands are supported by this adapter
611 * @adap: the i2c host adapter
612 */
613static u32 ismt_func(struct i2c_adapter *adap)
614{
615 return I2C_FUNC_SMBUS_QUICK |
616 I2C_FUNC_SMBUS_BYTE |
617 I2C_FUNC_SMBUS_BYTE_DATA |
618 I2C_FUNC_SMBUS_WORD_DATA |
619 I2C_FUNC_SMBUS_PROC_CALL |
620 I2C_FUNC_SMBUS_BLOCK_DATA |
robert.valiquette@intel.com001cebf2013-11-14 19:52:30 -0500621 I2C_FUNC_SMBUS_I2C_BLOCK |
Neil Horman13f35ac2013-02-04 14:54:10 -0500622 I2C_FUNC_SMBUS_PEC;
623}
624
625/**
626 * smbus_algorithm - the adapter algorithm and supported functionality
627 * @smbus_xfer: the adapter algorithm
628 * @functionality: functionality supported by the adapter
629 */
630static const struct i2c_algorithm smbus_algorithm = {
631 .smbus_xfer = ismt_access,
632 .functionality = ismt_func,
633};
634
635/**
636 * ismt_handle_isr() - interrupt handler bottom half
637 * @priv: iSMT private data
638 */
639static irqreturn_t ismt_handle_isr(struct ismt_priv *priv)
640{
641 complete(&priv->cmp);
642
643 return IRQ_HANDLED;
644}
645
646
647/**
648 * ismt_do_interrupt() - IRQ interrupt handler
649 * @vec: interrupt vector
650 * @data: iSMT private data
651 */
652static irqreturn_t ismt_do_interrupt(int vec, void *data)
653{
654 u32 val;
655 struct ismt_priv *priv = data;
656
657 /*
658 * check to see it's our interrupt, return IRQ_NONE if not ours
659 * since we are sharing interrupt
660 */
661 val = readl(priv->smba + ISMT_MSTR_MSTS);
662
663 if (!(val & (ISMT_MSTS_MIS | ISMT_MSTS_MEIS)))
664 return IRQ_NONE;
665 else
666 writel(val | ISMT_MSTS_MIS | ISMT_MSTS_MEIS,
667 priv->smba + ISMT_MSTR_MSTS);
668
669 return ismt_handle_isr(priv);
670}
671
672/**
673 * ismt_do_msi_interrupt() - MSI interrupt handler
674 * @vec: interrupt vector
675 * @data: iSMT private data
676 */
677static irqreturn_t ismt_do_msi_interrupt(int vec, void *data)
678{
679 return ismt_handle_isr(data);
680}
681
682/**
683 * ismt_hw_init() - initialize the iSMT hardware
684 * @priv: iSMT private data
685 */
686static void ismt_hw_init(struct ismt_priv *priv)
687{
688 u32 val;
689 struct device *dev = &priv->pci_dev->dev;
690
691 /* initialize the Master Descriptor Base Address (MDBA) */
692 writeq(priv->io_rng_dma, priv->smba + ISMT_MSTR_MDBA);
693
694 /* initialize the Master Control Register (MCTRL) */
695 writel(ISMT_MCTRL_MEIE, priv->smba + ISMT_MSTR_MCTRL);
696
697 /* initialize the Master Status Register (MSTS) */
698 writel(0, priv->smba + ISMT_MSTR_MSTS);
699
700 /* initialize the Master Descriptor Size (MDS) */
701 val = readl(priv->smba + ISMT_MSTR_MDS);
702 writel((val & ~ISMT_MDS_MASK) | (ISMT_DESC_ENTRIES - 1),
703 priv->smba + ISMT_MSTR_MDS);
704
705 /*
706 * Set the SMBus speed (could use this for slow HW debuggers)
707 */
708
709 val = readl(priv->smba + ISMT_SPGT);
710
711 switch (bus_speed) {
712 case 0:
713 break;
714
715 case 80:
716 dev_dbg(dev, "Setting SMBus clock to 80 kHz\n");
717 writel(((val & ~ISMT_SPGT_SPD_MASK) | ISMT_SPGT_SPD_80K),
718 priv->smba + ISMT_SPGT);
719 break;
720
721 case 100:
722 dev_dbg(dev, "Setting SMBus clock to 100 kHz\n");
723 writel(((val & ~ISMT_SPGT_SPD_MASK) | ISMT_SPGT_SPD_100K),
724 priv->smba + ISMT_SPGT);
725 break;
726
727 case 400:
728 dev_dbg(dev, "Setting SMBus clock to 400 kHz\n");
729 writel(((val & ~ISMT_SPGT_SPD_MASK) | ISMT_SPGT_SPD_400K),
730 priv->smba + ISMT_SPGT);
731 break;
732
733 case 1000:
734 dev_dbg(dev, "Setting SMBus clock to 1000 kHz\n");
735 writel(((val & ~ISMT_SPGT_SPD_MASK) | ISMT_SPGT_SPD_1M),
736 priv->smba + ISMT_SPGT);
737 break;
738
739 default:
740 dev_warn(dev, "Invalid SMBus clock speed, only 0, 80, 100, 400, and 1000 are valid\n");
741 break;
742 }
743
744 val = readl(priv->smba + ISMT_SPGT);
745
746 switch (val & ISMT_SPGT_SPD_MASK) {
747 case ISMT_SPGT_SPD_80K:
748 bus_speed = 80;
749 break;
750 case ISMT_SPGT_SPD_100K:
751 bus_speed = 100;
752 break;
753 case ISMT_SPGT_SPD_400K:
754 bus_speed = 400;
755 break;
756 case ISMT_SPGT_SPD_1M:
757 bus_speed = 1000;
758 break;
759 }
760 dev_dbg(dev, "SMBus clock is running at %d kHz\n", bus_speed);
761}
762
763/**
764 * ismt_dev_init() - initialize the iSMT data structures
765 * @priv: iSMT private data
766 */
767static int ismt_dev_init(struct ismt_priv *priv)
768{
769 /* allocate memory for the descriptor */
770 priv->hw = dmam_alloc_coherent(&priv->pci_dev->dev,
771 (ISMT_DESC_ENTRIES
772 * sizeof(struct ismt_desc)),
773 &priv->io_rng_dma,
774 GFP_KERNEL);
775 if (!priv->hw)
776 return -ENOMEM;
777
778 memset(priv->hw, 0, (ISMT_DESC_ENTRIES * sizeof(struct ismt_desc)));
779
780 priv->head = 0;
781 init_completion(&priv->cmp);
782
783 return 0;
784}
785
786/**
787 * ismt_int_init() - initialize interrupts
788 * @priv: iSMT private data
789 */
790static int ismt_int_init(struct ismt_priv *priv)
791{
792 int err;
793
794 /* Try using MSI interrupts */
795 err = pci_enable_msi(priv->pci_dev);
796 if (err) {
797 dev_warn(&priv->pci_dev->dev,
798 "Unable to use MSI interrupts, falling back to legacy\n");
799 goto intx;
800 }
801
802 err = devm_request_irq(&priv->pci_dev->dev,
803 priv->pci_dev->irq,
804 ismt_do_msi_interrupt,
805 0,
806 "ismt-msi",
807 priv);
808 if (err) {
809 pci_disable_msi(priv->pci_dev);
810 goto intx;
811 }
812
813 priv->using_msi = true;
814 goto done;
815
816 /* Try using legacy interrupts */
817intx:
818 err = devm_request_irq(&priv->pci_dev->dev,
819 priv->pci_dev->irq,
820 ismt_do_interrupt,
821 IRQF_SHARED,
822 "ismt-intx",
823 priv);
824 if (err) {
825 dev_err(&priv->pci_dev->dev, "no usable interrupts\n");
826 return -ENODEV;
827 }
828
829 priv->using_msi = false;
830
831done:
832 return 0;
833}
834
835static struct pci_driver ismt_driver;
836
837/**
838 * ismt_probe() - probe for iSMT devices
839 * @pdev: PCI-Express device
840 * @id: PCI-Express device ID
841 */
842static int
843ismt_probe(struct pci_dev *pdev, const struct pci_device_id *id)
844{
845 int err;
846 struct ismt_priv *priv;
847 unsigned long start, len;
848
849 priv = devm_kzalloc(&pdev->dev, sizeof(*priv), GFP_KERNEL);
850 if (!priv)
851 return -ENOMEM;
852
853 pci_set_drvdata(pdev, priv);
854 i2c_set_adapdata(&priv->adapter, priv);
855 priv->adapter.owner = THIS_MODULE;
856
857 priv->adapter.class = I2C_CLASS_HWMON;
858
859 priv->adapter.algo = &smbus_algorithm;
860
861 /* set up the sysfs linkage to our parent device */
862 priv->adapter.dev.parent = &pdev->dev;
863
864 /* number of retries on lost arbitration */
865 priv->adapter.retries = ISMT_MAX_RETRIES;
866
867 priv->pci_dev = pdev;
868
869 err = pcim_enable_device(pdev);
870 if (err) {
871 dev_err(&pdev->dev, "Failed to enable SMBus PCI device (%d)\n",
872 err);
873 return err;
874 }
875
876 /* enable bus mastering */
877 pci_set_master(pdev);
878
879 /* Determine the address of the SMBus area */
880 start = pci_resource_start(pdev, SMBBAR);
881 len = pci_resource_len(pdev, SMBBAR);
882 if (!start || !len) {
883 dev_err(&pdev->dev,
884 "SMBus base address uninitialized, upgrade BIOS\n");
885 return -ENODEV;
886 }
887
888 snprintf(priv->adapter.name, sizeof(priv->adapter.name),
889 "SMBus iSMT adapter at %lx", start);
890
891 dev_dbg(&priv->pci_dev->dev, " start=0x%lX\n", start);
892 dev_dbg(&priv->pci_dev->dev, " len=0x%lX\n", len);
893
894 err = acpi_check_resource_conflict(&pdev->resource[SMBBAR]);
895 if (err) {
896 dev_err(&pdev->dev, "ACPI resource conflict!\n");
897 return err;
898 }
899
900 err = pci_request_region(pdev, SMBBAR, ismt_driver.name);
901 if (err) {
902 dev_err(&pdev->dev,
903 "Failed to request SMBus region 0x%lx-0x%lx\n",
904 start, start + len);
905 return err;
906 }
907
908 priv->smba = pcim_iomap(pdev, SMBBAR, len);
909 if (!priv->smba) {
910 dev_err(&pdev->dev, "Unable to ioremap SMBus BAR\n");
911 err = -ENODEV;
912 goto fail;
913 }
914
915 if ((pci_set_dma_mask(pdev, DMA_BIT_MASK(64)) != 0) ||
916 (pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(64)) != 0)) {
917 if ((pci_set_dma_mask(pdev, DMA_BIT_MASK(32)) != 0) ||
918 (pci_set_consistent_dma_mask(pdev,
919 DMA_BIT_MASK(32)) != 0)) {
920 dev_err(&pdev->dev, "pci_set_dma_mask fail %p\n",
921 pdev);
Wolfram Sang370257b2013-08-23 11:23:50 +0200922 err = -ENODEV;
Neil Horman13f35ac2013-02-04 14:54:10 -0500923 goto fail;
924 }
925 }
926
927 err = ismt_dev_init(priv);
928 if (err)
929 goto fail;
930
931 ismt_hw_init(priv);
932
933 err = ismt_int_init(priv);
934 if (err)
935 goto fail;
936
937 err = i2c_add_adapter(&priv->adapter);
938 if (err) {
939 dev_err(&pdev->dev, "Failed to add SMBus iSMT adapter\n");
940 err = -ENODEV;
941 goto fail;
942 }
943 return 0;
944
945fail:
946 pci_release_region(pdev, SMBBAR);
947 return err;
948}
949
950/**
951 * ismt_remove() - release driver resources
952 * @pdev: PCI-Express device
953 */
954static void ismt_remove(struct pci_dev *pdev)
955{
956 struct ismt_priv *priv = pci_get_drvdata(pdev);
957
958 i2c_del_adapter(&priv->adapter);
959 pci_release_region(pdev, SMBBAR);
960}
961
962/**
963 * ismt_suspend() - place the device in suspend
964 * @pdev: PCI-Express device
965 * @mesg: PM message
966 */
967#ifdef CONFIG_PM
968static int ismt_suspend(struct pci_dev *pdev, pm_message_t mesg)
969{
970 pci_save_state(pdev);
971 pci_set_power_state(pdev, pci_choose_state(pdev, mesg));
972 return 0;
973}
974
975/**
976 * ismt_resume() - PCI resume code
977 * @pdev: PCI-Express device
978 */
979static int ismt_resume(struct pci_dev *pdev)
980{
981 pci_set_power_state(pdev, PCI_D0);
982 pci_restore_state(pdev);
983 return pci_enable_device(pdev);
984}
985
986#else
987
988#define ismt_suspend NULL
989#define ismt_resume NULL
990
991#endif
992
993static struct pci_driver ismt_driver = {
994 .name = "ismt_smbus",
995 .id_table = ismt_ids,
996 .probe = ismt_probe,
997 .remove = ismt_remove,
998 .suspend = ismt_suspend,
999 .resume = ismt_resume,
1000};
1001
1002module_pci_driver(ismt_driver);
1003
1004MODULE_LICENSE("Dual BSD/GPL");
1005MODULE_AUTHOR("Bill E. Brown <bill.e.brown@intel.com>");
1006MODULE_DESCRIPTION("Intel SMBus Message Transport (iSMT) driver");