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.
5 * Copyright(c) 2012 Intel Corporation. All rights reserved.
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.
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 * The full GNU General Public License is included in this distribution
18 * in the file called LICENSE.GPL.
22 * Redistribution and use in source and binary forms, with or without
23 * modification, are permitted provided that the following conditions
26 * * Redistributions of source code must retain the above copyright
27 * notice, this list of conditions and the following disclaimer.
28 * * Redistributions in binary form must reproduce the above copyright
29 * notice, this list of conditions and the following disclaimer in
30 * the documentation and/or other materials provided with the
32 * * Neither the name of Intel Corporation nor the names of its
33 * contributors may be used to endorse or promote products derived
34 * from this software without specific prior written permission.
36 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
37 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
38 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
39 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
40 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
41 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
42 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
43 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
44 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
45 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
46 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
50 * Supports the SMBus Message Transport (SMT) in the Intel Atom Processor
51 * S12xx Product Family.
53 * Features supported by this driver:
56 * Block process call transaction yes
60 #include <linux/module.h>
61 #include <linux/pci.h>
62 #include <linux/kernel.h>
63 #include <linux/stddef.h>
64 #include <linux/completion.h>
65 #include <linux/dma-mapping.h>
66 #include <linux/i2c.h>
67 #include <linux/acpi.h>
68 #include <linux/interrupt.h>
70 #include <linux/io-64-nonatomic-lo-hi.h>
72 /* PCI Address Constants */
75 /* PCI DIDs for the Intel SMBus Message Transport (SMT) Devices */
76 #define PCI_DEVICE_ID_INTEL_S1200_SMT0 0x0c59
77 #define PCI_DEVICE_ID_INTEL_S1200_SMT1 0x0c5a
78 #define PCI_DEVICE_ID_INTEL_CDF_SMT 0x18ac
79 #define PCI_DEVICE_ID_INTEL_DNV_SMT 0x19ac
80 #define PCI_DEVICE_ID_INTEL_EBG_SMT 0x1bff
81 #define PCI_DEVICE_ID_INTEL_AVOTON_SMT 0x1f15
83 #define ISMT_DESC_ENTRIES 2 /* number of descriptor entries */
84 #define ISMT_MAX_RETRIES 3 /* number of SMBus retries to attempt */
85 #define ISMT_LOG_ENTRIES 3 /* number of interrupt cause log entries */
87 /* Hardware Descriptor Constants - Control Field */
88 #define ISMT_DESC_CWRL 0x01 /* Command/Write Length */
89 #define ISMT_DESC_BLK 0X04 /* Perform Block Transaction */
90 #define ISMT_DESC_FAIR 0x08 /* Set fairness flag upon successful arbit. */
91 #define ISMT_DESC_PEC 0x10 /* Packet Error Code */
92 #define ISMT_DESC_I2C 0x20 /* I2C Enable */
93 #define ISMT_DESC_INT 0x40 /* Interrupt */
94 #define ISMT_DESC_SOE 0x80 /* Stop On Error */
96 /* Hardware Descriptor Constants - Status Field */
97 #define ISMT_DESC_SCS 0x01 /* Success */
98 #define ISMT_DESC_DLTO 0x04 /* Data Low Time Out */
99 #define ISMT_DESC_NAK 0x08 /* NAK Received */
100 #define ISMT_DESC_CRC 0x10 /* CRC Error */
101 #define ISMT_DESC_CLTO 0x20 /* Clock Low Time Out */
102 #define ISMT_DESC_COL 0x40 /* Collisions */
103 #define ISMT_DESC_LPR 0x80 /* Large Packet Received */
106 #define ISMT_DESC_ADDR_RW(addr, rw) (((addr) << 1) | (rw))
108 /* iSMT General Register address offsets (SMBBAR + <addr>) */
109 #define ISMT_GR_GCTRL 0x000 /* General Control */
110 #define ISMT_GR_SMTICL 0x008 /* SMT Interrupt Cause Location */
111 #define ISMT_GR_ERRINTMSK 0x010 /* Error Interrupt Mask */
112 #define ISMT_GR_ERRAERMSK 0x014 /* Error AER Mask */
113 #define ISMT_GR_ERRSTS 0x018 /* Error Status */
114 #define ISMT_GR_ERRINFO 0x01c /* Error Information */
116 /* iSMT Master Registers */
117 #define ISMT_MSTR_MDBA 0x100 /* Master Descriptor Base Address */
118 #define ISMT_MSTR_MCTRL 0x108 /* Master Control */
119 #define ISMT_MSTR_MSTS 0x10c /* Master Status */
120 #define ISMT_MSTR_MDS 0x110 /* Master Descriptor Size */
121 #define ISMT_MSTR_RPOLICY 0x114 /* Retry Policy */
123 /* iSMT Miscellaneous Registers */
124 #define ISMT_SPGT 0x300 /* SMBus PHY Global Timing */
126 /* General Control Register (GCTRL) bit definitions */
127 #define ISMT_GCTRL_TRST 0x04 /* Target Reset */
128 #define ISMT_GCTRL_KILL 0x08 /* Kill */
129 #define ISMT_GCTRL_SRST 0x40 /* Soft Reset */
131 /* Master Control Register (MCTRL) bit definitions */
132 #define ISMT_MCTRL_SS 0x01 /* Start/Stop */
133 #define ISMT_MCTRL_MEIE 0x10 /* Master Error Interrupt Enable */
134 #define ISMT_MCTRL_FMHP 0x00ff0000 /* Firmware Master Head Ptr (FMHP) */
136 /* Master Status Register (MSTS) bit definitions */
137 #define ISMT_MSTS_HMTP 0xff0000 /* HW Master Tail Pointer (HMTP) */
138 #define ISMT_MSTS_MIS 0x20 /* Master Interrupt Status (MIS) */
139 #define ISMT_MSTS_MEIS 0x10 /* Master Error Int Status (MEIS) */
140 #define ISMT_MSTS_IP 0x01 /* In Progress */
142 /* Master Descriptor Size (MDS) bit definitions */
143 #define ISMT_MDS_MASK 0xff /* Master Descriptor Size mask (MDS) */
145 /* SMBus PHY Global Timing Register (SPGT) bit definitions */
146 #define ISMT_SPGT_SPD_MASK 0xc0000000 /* SMBus Speed mask */
147 #define ISMT_SPGT_SPD_80K 0x00 /* 80 kHz */
148 #define ISMT_SPGT_SPD_100K (0x1 << 30) /* 100 kHz */
149 #define ISMT_SPGT_SPD_400K (0x2U << 30) /* 400 kHz */
150 #define ISMT_SPGT_SPD_1M (0x3U << 30) /* 1 MHz */
153 /* MSI Control Register (MSICTL) bit definitions */
154 #define ISMT_MSICTL_MSIE 0x01 /* MSI Enable */
156 /* iSMT Hardware Descriptor */
158 u8 tgtaddr_rw
; /* target address & r/w bit */
159 u8 wr_len_cmd
; /* write length in bytes or a command */
160 u8 rd_len
; /* read length */
161 u8 control
; /* control bits */
162 u8 status
; /* status bits */
163 u8 retry
; /* collision retry and retry count */
164 u8 rxbytes
; /* received bytes */
165 u8 txbytes
; /* transmitted bytes */
166 u32 dptr_low
; /* lower 32 bit of the data pointer */
167 u32 dptr_high
; /* upper 32 bit of the data pointer */
171 struct i2c_adapter adapter
;
172 void __iomem
*smba
; /* PCI BAR */
173 struct pci_dev
*pci_dev
;
174 struct ismt_desc
*hw
; /* descriptor virt base addr */
175 dma_addr_t io_rng_dma
; /* descriptor HW base addr */
176 u8 head
; /* ring buffer head pointer */
177 struct completion cmp
; /* interrupt completion */
178 u8 buffer
[I2C_SMBUS_BLOCK_MAX
+ 16]; /* temp R/W data buffer */
183 static const struct pci_device_id ismt_ids
[] = {
184 { PCI_DEVICE(PCI_VENDOR_ID_INTEL
, PCI_DEVICE_ID_INTEL_S1200_SMT0
) },
185 { PCI_DEVICE(PCI_VENDOR_ID_INTEL
, PCI_DEVICE_ID_INTEL_S1200_SMT1
) },
186 { PCI_DEVICE(PCI_VENDOR_ID_INTEL
, PCI_DEVICE_ID_INTEL_CDF_SMT
) },
187 { PCI_DEVICE(PCI_VENDOR_ID_INTEL
, PCI_DEVICE_ID_INTEL_DNV_SMT
) },
188 { PCI_DEVICE(PCI_VENDOR_ID_INTEL
, PCI_DEVICE_ID_INTEL_EBG_SMT
) },
189 { PCI_DEVICE(PCI_VENDOR_ID_INTEL
, PCI_DEVICE_ID_INTEL_AVOTON_SMT
) },
193 MODULE_DEVICE_TABLE(pci
, ismt_ids
);
195 /* Bus speed control bits for slow debuggers - refer to the docs for usage */
196 static unsigned int bus_speed
;
197 module_param(bus_speed
, uint
, S_IRUGO
);
198 MODULE_PARM_DESC(bus_speed
, "Bus Speed in kHz (0 = BIOS default)");
201 * __ismt_desc_dump() - dump the contents of a specific descriptor
202 * @dev: the iSMT device
203 * @desc: the iSMT hardware descriptor
205 static void __ismt_desc_dump(struct device
*dev
, const struct ismt_desc
*desc
)
208 dev_dbg(dev
, "Descriptor struct: %p\n", desc
);
209 dev_dbg(dev
, "\ttgtaddr_rw=0x%02X\n", desc
->tgtaddr_rw
);
210 dev_dbg(dev
, "\twr_len_cmd=0x%02X\n", desc
->wr_len_cmd
);
211 dev_dbg(dev
, "\trd_len= 0x%02X\n", desc
->rd_len
);
212 dev_dbg(dev
, "\tcontrol= 0x%02X\n", desc
->control
);
213 dev_dbg(dev
, "\tstatus= 0x%02X\n", desc
->status
);
214 dev_dbg(dev
, "\tretry= 0x%02X\n", desc
->retry
);
215 dev_dbg(dev
, "\trxbytes= 0x%02X\n", desc
->rxbytes
);
216 dev_dbg(dev
, "\ttxbytes= 0x%02X\n", desc
->txbytes
);
217 dev_dbg(dev
, "\tdptr_low= 0x%08X\n", desc
->dptr_low
);
218 dev_dbg(dev
, "\tdptr_high= 0x%08X\n", desc
->dptr_high
);
221 * ismt_desc_dump() - dump the contents of a descriptor for debug purposes
222 * @priv: iSMT private data
224 static void ismt_desc_dump(struct ismt_priv
*priv
)
226 struct device
*dev
= &priv
->pci_dev
->dev
;
227 struct ismt_desc
*desc
= &priv
->hw
[priv
->head
];
229 dev_dbg(dev
, "Dump of the descriptor struct: 0x%X\n", priv
->head
);
230 __ismt_desc_dump(dev
, desc
);
234 * ismt_gen_reg_dump() - dump the iSMT General Registers
235 * @priv: iSMT private data
237 static void ismt_gen_reg_dump(struct ismt_priv
*priv
)
239 struct device
*dev
= &priv
->pci_dev
->dev
;
241 dev_dbg(dev
, "Dump of the iSMT General Registers\n");
242 dev_dbg(dev
, " GCTRL.... : (0x%p)=0x%X\n",
243 priv
->smba
+ ISMT_GR_GCTRL
,
244 readl(priv
->smba
+ ISMT_GR_GCTRL
));
245 dev_dbg(dev
, " SMTICL... : (0x%p)=0x%016llX\n",
246 priv
->smba
+ ISMT_GR_SMTICL
,
247 (long long unsigned int)readq(priv
->smba
+ ISMT_GR_SMTICL
));
248 dev_dbg(dev
, " ERRINTMSK : (0x%p)=0x%X\n",
249 priv
->smba
+ ISMT_GR_ERRINTMSK
,
250 readl(priv
->smba
+ ISMT_GR_ERRINTMSK
));
251 dev_dbg(dev
, " ERRAERMSK : (0x%p)=0x%X\n",
252 priv
->smba
+ ISMT_GR_ERRAERMSK
,
253 readl(priv
->smba
+ ISMT_GR_ERRAERMSK
));
254 dev_dbg(dev
, " ERRSTS... : (0x%p)=0x%X\n",
255 priv
->smba
+ ISMT_GR_ERRSTS
,
256 readl(priv
->smba
+ ISMT_GR_ERRSTS
));
257 dev_dbg(dev
, " ERRINFO.. : (0x%p)=0x%X\n",
258 priv
->smba
+ ISMT_GR_ERRINFO
,
259 readl(priv
->smba
+ ISMT_GR_ERRINFO
));
263 * ismt_mstr_reg_dump() - dump the iSMT Master Registers
264 * @priv: iSMT private data
266 static void ismt_mstr_reg_dump(struct ismt_priv
*priv
)
268 struct device
*dev
= &priv
->pci_dev
->dev
;
270 dev_dbg(dev
, "Dump of the iSMT Master Registers\n");
271 dev_dbg(dev
, " MDBA..... : (0x%p)=0x%016llX\n",
272 priv
->smba
+ ISMT_MSTR_MDBA
,
273 (long long unsigned int)readq(priv
->smba
+ ISMT_MSTR_MDBA
));
274 dev_dbg(dev
, " MCTRL.... : (0x%p)=0x%X\n",
275 priv
->smba
+ ISMT_MSTR_MCTRL
,
276 readl(priv
->smba
+ ISMT_MSTR_MCTRL
));
277 dev_dbg(dev
, " MSTS..... : (0x%p)=0x%X\n",
278 priv
->smba
+ ISMT_MSTR_MSTS
,
279 readl(priv
->smba
+ ISMT_MSTR_MSTS
));
280 dev_dbg(dev
, " MDS...... : (0x%p)=0x%X\n",
281 priv
->smba
+ ISMT_MSTR_MDS
,
282 readl(priv
->smba
+ ISMT_MSTR_MDS
));
283 dev_dbg(dev
, " RPOLICY.. : (0x%p)=0x%X\n",
284 priv
->smba
+ ISMT_MSTR_RPOLICY
,
285 readl(priv
->smba
+ ISMT_MSTR_RPOLICY
));
286 dev_dbg(dev
, " SPGT..... : (0x%p)=0x%X\n",
287 priv
->smba
+ ISMT_SPGT
,
288 readl(priv
->smba
+ ISMT_SPGT
));
292 * ismt_submit_desc() - add a descriptor to the ring
293 * @priv: iSMT private data
295 static void ismt_submit_desc(struct ismt_priv
*priv
)
300 ismt_desc_dump(priv
);
301 ismt_gen_reg_dump(priv
);
302 ismt_mstr_reg_dump(priv
);
304 /* Set the FMHP (Firmware Master Head Pointer)*/
305 fmhp
= ((priv
->head
+ 1) % ISMT_DESC_ENTRIES
) << 16;
306 val
= readl(priv
->smba
+ ISMT_MSTR_MCTRL
);
307 writel((val
& ~ISMT_MCTRL_FMHP
) | fmhp
,
308 priv
->smba
+ ISMT_MSTR_MCTRL
);
310 /* Set the start bit */
311 val
= readl(priv
->smba
+ ISMT_MSTR_MCTRL
);
312 writel(val
| ISMT_MCTRL_SS
,
313 priv
->smba
+ ISMT_MSTR_MCTRL
);
317 * ismt_process_desc() - handle the completion of the descriptor
318 * @desc: the iSMT hardware descriptor
319 * @data: data buffer from the upper layer
320 * @priv: ismt_priv struct holding our dma buffer
321 * @size: SMBus transaction type
322 * @read_write: flag to indicate if this is a read or write
324 static int ismt_process_desc(const struct ismt_desc
*desc
,
325 union i2c_smbus_data
*data
,
326 struct ismt_priv
*priv
, int size
,
329 u8
*dma_buffer
= PTR_ALIGN(&priv
->buffer
[0], 16);
331 dev_dbg(&priv
->pci_dev
->dev
, "Processing completed descriptor\n");
332 __ismt_desc_dump(&priv
->pci_dev
->dev
, desc
);
333 ismt_gen_reg_dump(priv
);
334 ismt_mstr_reg_dump(priv
);
336 if (desc
->status
& ISMT_DESC_SCS
) {
337 if (read_write
== I2C_SMBUS_WRITE
&&
338 size
!= I2C_SMBUS_PROC_CALL
&&
339 size
!= I2C_SMBUS_BLOCK_PROC_CALL
)
344 case I2C_SMBUS_BYTE_DATA
:
345 data
->byte
= dma_buffer
[0];
347 case I2C_SMBUS_WORD_DATA
:
348 case I2C_SMBUS_PROC_CALL
:
349 data
->word
= dma_buffer
[0] | (dma_buffer
[1] << 8);
351 case I2C_SMBUS_BLOCK_DATA
:
352 case I2C_SMBUS_BLOCK_PROC_CALL
:
353 if (desc
->rxbytes
!= dma_buffer
[0] + 1)
356 memcpy(data
->block
, dma_buffer
, desc
->rxbytes
);
358 case I2C_SMBUS_I2C_BLOCK_DATA
:
359 memcpy(&data
->block
[1], dma_buffer
, desc
->rxbytes
);
360 data
->block
[0] = desc
->rxbytes
;
366 if (likely(desc
->status
& ISMT_DESC_NAK
))
369 if (desc
->status
& ISMT_DESC_CRC
)
372 if (desc
->status
& ISMT_DESC_COL
)
375 if (desc
->status
& ISMT_DESC_LPR
)
378 if (desc
->status
& (ISMT_DESC_DLTO
| ISMT_DESC_CLTO
))
385 * ismt_kill_transaction() - kill current transaction
386 * @priv: iSMT private data
388 static void ismt_kill_transaction(struct ismt_priv
*priv
)
390 writel(ISMT_GCTRL_KILL
, priv
->smba
+ ISMT_GR_GCTRL
);
394 * ismt_access() - process an SMBus command
395 * @adap: the i2c host adapter
396 * @addr: address of the i2c/SMBus target
397 * @flags: command options
398 * @read_write: read from or write to device
399 * @command: the i2c/SMBus command to issue
400 * @size: SMBus transaction type
401 * @data: read/write data buffer
403 static int ismt_access(struct i2c_adapter
*adap
, u16 addr
,
404 unsigned short flags
, char read_write
, u8 command
,
405 int size
, union i2c_smbus_data
*data
)
408 unsigned long time_left
;
409 dma_addr_t dma_addr
= 0; /* address of the data buffer */
411 enum dma_data_direction dma_direction
= 0;
412 struct ismt_desc
*desc
;
413 struct ismt_priv
*priv
= i2c_get_adapdata(adap
);
414 struct device
*dev
= &priv
->pci_dev
->dev
;
415 u8
*dma_buffer
= PTR_ALIGN(&priv
->buffer
[0], 16);
417 desc
= &priv
->hw
[priv
->head
];
419 /* Initialize the DMA buffer */
420 memset(priv
->buffer
, 0, sizeof(priv
->buffer
));
422 /* Initialize the descriptor */
423 memset(desc
, 0, sizeof(struct ismt_desc
));
424 desc
->tgtaddr_rw
= ISMT_DESC_ADDR_RW(addr
, read_write
);
426 /* Always clear the log entries */
427 memset(priv
->log
, 0, ISMT_LOG_ENTRIES
* sizeof(u32
));
429 /* Initialize common control bits */
430 if (likely(pci_dev_msi_enabled(priv
->pci_dev
)))
431 desc
->control
= ISMT_DESC_INT
| ISMT_DESC_FAIR
;
433 desc
->control
= ISMT_DESC_FAIR
;
435 if ((flags
& I2C_CLIENT_PEC
) && (size
!= I2C_SMBUS_QUICK
)
436 && (size
!= I2C_SMBUS_I2C_BLOCK_DATA
))
437 desc
->control
|= ISMT_DESC_PEC
;
440 case I2C_SMBUS_QUICK
:
441 dev_dbg(dev
, "I2C_SMBUS_QUICK\n");
445 if (read_write
== I2C_SMBUS_WRITE
) {
448 * The command field contains the write data
450 dev_dbg(dev
, "I2C_SMBUS_BYTE: WRITE\n");
451 desc
->control
|= ISMT_DESC_CWRL
;
452 desc
->wr_len_cmd
= command
;
455 dev_dbg(dev
, "I2C_SMBUS_BYTE: READ\n");
457 dma_direction
= DMA_FROM_DEVICE
;
462 case I2C_SMBUS_BYTE_DATA
:
463 if (read_write
== I2C_SMBUS_WRITE
) {
466 * Command plus 1 data byte
468 dev_dbg(dev
, "I2C_SMBUS_BYTE_DATA: WRITE\n");
469 desc
->wr_len_cmd
= 2;
471 dma_direction
= DMA_TO_DEVICE
;
472 dma_buffer
[0] = command
;
473 dma_buffer
[1] = data
->byte
;
476 dev_dbg(dev
, "I2C_SMBUS_BYTE_DATA: READ\n");
477 desc
->control
|= ISMT_DESC_CWRL
;
478 desc
->wr_len_cmd
= command
;
481 dma_direction
= DMA_FROM_DEVICE
;
485 case I2C_SMBUS_WORD_DATA
:
486 if (read_write
== I2C_SMBUS_WRITE
) {
488 dev_dbg(dev
, "I2C_SMBUS_WORD_DATA: WRITE\n");
489 desc
->wr_len_cmd
= 3;
491 dma_direction
= DMA_TO_DEVICE
;
492 dma_buffer
[0] = command
;
493 dma_buffer
[1] = data
->word
& 0xff;
494 dma_buffer
[2] = data
->word
>> 8;
497 dev_dbg(dev
, "I2C_SMBUS_WORD_DATA: READ\n");
498 desc
->wr_len_cmd
= command
;
499 desc
->control
|= ISMT_DESC_CWRL
;
502 dma_direction
= DMA_FROM_DEVICE
;
506 case I2C_SMBUS_PROC_CALL
:
507 dev_dbg(dev
, "I2C_SMBUS_PROC_CALL\n");
508 desc
->wr_len_cmd
= 3;
511 dma_direction
= DMA_BIDIRECTIONAL
;
512 dma_buffer
[0] = command
;
513 dma_buffer
[1] = data
->word
& 0xff;
514 dma_buffer
[2] = data
->word
>> 8;
517 case I2C_SMBUS_BLOCK_DATA
:
518 if (read_write
== I2C_SMBUS_WRITE
) {
520 dev_dbg(dev
, "I2C_SMBUS_BLOCK_DATA: WRITE\n");
521 if (data
->block
[0] < 1 || data
->block
[0] > I2C_SMBUS_BLOCK_MAX
)
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_BLK
;
528 dma_buffer
[0] = command
;
529 memcpy(&dma_buffer
[1], &data
->block
[1], dma_size
- 1);
532 dev_dbg(dev
, "I2C_SMBUS_BLOCK_DATA: READ\n");
533 dma_size
= I2C_SMBUS_BLOCK_MAX
;
534 dma_direction
= DMA_FROM_DEVICE
;
535 desc
->rd_len
= dma_size
;
536 desc
->wr_len_cmd
= command
;
537 desc
->control
|= (ISMT_DESC_BLK
| ISMT_DESC_CWRL
);
541 case I2C_SMBUS_BLOCK_PROC_CALL
:
542 dev_dbg(dev
, "I2C_SMBUS_BLOCK_PROC_CALL\n");
543 if (data
->block
[0] > I2C_SMBUS_BLOCK_MAX
)
546 dma_size
= I2C_SMBUS_BLOCK_MAX
;
547 desc
->tgtaddr_rw
= ISMT_DESC_ADDR_RW(addr
, 1);
548 desc
->wr_len_cmd
= data
->block
[0] + 1;
549 desc
->rd_len
= dma_size
;
550 desc
->control
|= ISMT_DESC_BLK
;
551 dma_direction
= DMA_BIDIRECTIONAL
;
552 dma_buffer
[0] = command
;
553 memcpy(&dma_buffer
[1], &data
->block
[1], data
->block
[0]);
556 case I2C_SMBUS_I2C_BLOCK_DATA
:
557 /* Make sure the length is valid */
558 if (data
->block
[0] < 1)
561 if (data
->block
[0] > I2C_SMBUS_BLOCK_MAX
)
562 data
->block
[0] = I2C_SMBUS_BLOCK_MAX
;
564 if (read_write
== I2C_SMBUS_WRITE
) {
565 /* i2c Block Write */
566 dev_dbg(dev
, "I2C_SMBUS_I2C_BLOCK_DATA: WRITE\n");
567 dma_size
= data
->block
[0] + 1;
568 dma_direction
= DMA_TO_DEVICE
;
569 desc
->wr_len_cmd
= dma_size
;
570 desc
->control
|= ISMT_DESC_I2C
;
571 dma_buffer
[0] = command
;
572 memcpy(&dma_buffer
[1], &data
->block
[1], dma_size
- 1);
575 dev_dbg(dev
, "I2C_SMBUS_I2C_BLOCK_DATA: READ\n");
576 dma_size
= data
->block
[0];
577 dma_direction
= DMA_FROM_DEVICE
;
578 desc
->rd_len
= dma_size
;
579 desc
->wr_len_cmd
= command
;
580 desc
->control
|= (ISMT_DESC_I2C
| ISMT_DESC_CWRL
);
582 * Per the "Table 15-15. I2C Commands",
583 * in the External Design Specification (EDS),
584 * (Document Number: 508084, Revision: 2.0),
585 * the _rw bit must be 0
587 desc
->tgtaddr_rw
= ISMT_DESC_ADDR_RW(addr
, 0);
592 dev_err(dev
, "Unsupported transaction %d\n",
597 /* map the data buffer */
599 dev_dbg(dev
, " dev=%p\n", dev
);
600 dev_dbg(dev
, " data=%p\n", data
);
601 dev_dbg(dev
, " dma_buffer=%p\n", dma_buffer
);
602 dev_dbg(dev
, " dma_size=%d\n", dma_size
);
603 dev_dbg(dev
, " dma_direction=%d\n", dma_direction
);
605 dma_addr
= dma_map_single(dev
,
610 if (dma_mapping_error(dev
, dma_addr
)) {
611 dev_err(dev
, "Error in mapping dma buffer %p\n",
616 dev_dbg(dev
, " dma_addr = %pad\n", &dma_addr
);
618 desc
->dptr_low
= lower_32_bits(dma_addr
);
619 desc
->dptr_high
= upper_32_bits(dma_addr
);
622 reinit_completion(&priv
->cmp
);
624 /* Add the descriptor */
625 ismt_submit_desc(priv
);
627 /* Now we wait for interrupt completion, 1s */
628 time_left
= wait_for_completion_timeout(&priv
->cmp
, HZ
*1);
630 /* unmap the data buffer */
632 dma_unmap_single(dev
, dma_addr
, dma_size
, dma_direction
);
634 if (unlikely(!time_left
)) {
635 ismt_kill_transaction(priv
);
640 /* do any post processing of the descriptor here */
641 ret
= ismt_process_desc(desc
, data
, priv
, size
, read_write
);
644 /* Update the ring pointer */
646 priv
->head
%= ISMT_DESC_ENTRIES
;
652 * ismt_func() - report which i2c commands are supported by this adapter
653 * @adap: the i2c host adapter
655 static u32
ismt_func(struct i2c_adapter
*adap
)
657 return I2C_FUNC_SMBUS_QUICK
|
658 I2C_FUNC_SMBUS_BYTE
|
659 I2C_FUNC_SMBUS_BYTE_DATA
|
660 I2C_FUNC_SMBUS_WORD_DATA
|
661 I2C_FUNC_SMBUS_PROC_CALL
|
662 I2C_FUNC_SMBUS_BLOCK_PROC_CALL
|
663 I2C_FUNC_SMBUS_BLOCK_DATA
|
664 I2C_FUNC_SMBUS_I2C_BLOCK
|
668 static const struct i2c_algorithm smbus_algorithm
= {
669 .smbus_xfer
= ismt_access
,
670 .functionality
= ismt_func
,
674 * ismt_handle_isr() - interrupt handler bottom half
675 * @priv: iSMT private data
677 static irqreturn_t
ismt_handle_isr(struct ismt_priv
*priv
)
679 complete(&priv
->cmp
);
686 * ismt_do_interrupt() - IRQ interrupt handler
687 * @vec: interrupt vector
688 * @data: iSMT private data
690 static irqreturn_t
ismt_do_interrupt(int vec
, void *data
)
693 struct ismt_priv
*priv
= data
;
696 * check to see it's our interrupt, return IRQ_NONE if not ours
697 * since we are sharing interrupt
699 val
= readl(priv
->smba
+ ISMT_MSTR_MSTS
);
701 if (!(val
& (ISMT_MSTS_MIS
| ISMT_MSTS_MEIS
)))
704 writel(val
| ISMT_MSTS_MIS
| ISMT_MSTS_MEIS
,
705 priv
->smba
+ ISMT_MSTR_MSTS
);
707 return ismt_handle_isr(priv
);
711 * ismt_do_msi_interrupt() - MSI interrupt handler
712 * @vec: interrupt vector
713 * @data: iSMT private data
715 static irqreturn_t
ismt_do_msi_interrupt(int vec
, void *data
)
717 return ismt_handle_isr(data
);
721 * ismt_hw_init() - initialize the iSMT hardware
722 * @priv: iSMT private data
724 static void ismt_hw_init(struct ismt_priv
*priv
)
727 struct device
*dev
= &priv
->pci_dev
->dev
;
729 /* initialize the Master Descriptor Base Address (MDBA) */
730 writeq(priv
->io_rng_dma
, priv
->smba
+ ISMT_MSTR_MDBA
);
732 writeq(priv
->log_dma
, priv
->smba
+ ISMT_GR_SMTICL
);
734 /* initialize the Master Control Register (MCTRL) */
735 writel(ISMT_MCTRL_MEIE
, priv
->smba
+ ISMT_MSTR_MCTRL
);
737 /* initialize the Master Status Register (MSTS) */
738 writel(0, priv
->smba
+ ISMT_MSTR_MSTS
);
740 /* initialize the Master Descriptor Size (MDS) */
741 val
= readl(priv
->smba
+ ISMT_MSTR_MDS
);
742 writel((val
& ~ISMT_MDS_MASK
) | (ISMT_DESC_ENTRIES
- 1),
743 priv
->smba
+ ISMT_MSTR_MDS
);
746 * Set the SMBus speed (could use this for slow HW debuggers)
749 val
= readl(priv
->smba
+ ISMT_SPGT
);
756 dev_dbg(dev
, "Setting SMBus clock to 80 kHz\n");
757 writel(((val
& ~ISMT_SPGT_SPD_MASK
) | ISMT_SPGT_SPD_80K
),
758 priv
->smba
+ ISMT_SPGT
);
762 dev_dbg(dev
, "Setting SMBus clock to 100 kHz\n");
763 writel(((val
& ~ISMT_SPGT_SPD_MASK
) | ISMT_SPGT_SPD_100K
),
764 priv
->smba
+ ISMT_SPGT
);
768 dev_dbg(dev
, "Setting SMBus clock to 400 kHz\n");
769 writel(((val
& ~ISMT_SPGT_SPD_MASK
) | ISMT_SPGT_SPD_400K
),
770 priv
->smba
+ ISMT_SPGT
);
774 dev_dbg(dev
, "Setting SMBus clock to 1000 kHz\n");
775 writel(((val
& ~ISMT_SPGT_SPD_MASK
) | ISMT_SPGT_SPD_1M
),
776 priv
->smba
+ ISMT_SPGT
);
780 dev_warn(dev
, "Invalid SMBus clock speed, only 0, 80, 100, 400, and 1000 are valid\n");
784 val
= readl(priv
->smba
+ ISMT_SPGT
);
786 switch (val
& ISMT_SPGT_SPD_MASK
) {
787 case ISMT_SPGT_SPD_80K
:
790 case ISMT_SPGT_SPD_100K
:
793 case ISMT_SPGT_SPD_400K
:
796 case ISMT_SPGT_SPD_1M
:
800 dev_dbg(dev
, "SMBus clock is running at %d kHz\n", bus_speed
);
804 * ismt_dev_init() - initialize the iSMT data structures
805 * @priv: iSMT private data
807 static int ismt_dev_init(struct ismt_priv
*priv
)
809 /* allocate memory for the descriptor */
810 priv
->hw
= dmam_alloc_coherent(&priv
->pci_dev
->dev
,
812 * sizeof(struct ismt_desc
)),
819 init_completion(&priv
->cmp
);
821 priv
->log
= dmam_alloc_coherent(&priv
->pci_dev
->dev
,
822 ISMT_LOG_ENTRIES
* sizeof(u32
),
823 &priv
->log_dma
, GFP_KERNEL
);
831 * ismt_int_init() - initialize interrupts
832 * @priv: iSMT private data
834 static int ismt_int_init(struct ismt_priv
*priv
)
838 /* Try using MSI interrupts */
839 err
= pci_enable_msi(priv
->pci_dev
);
843 err
= devm_request_irq(&priv
->pci_dev
->dev
,
845 ismt_do_msi_interrupt
,
850 pci_disable_msi(priv
->pci_dev
);
856 /* Try using legacy interrupts */
858 dev_warn(&priv
->pci_dev
->dev
,
859 "Unable to use MSI interrupts, falling back to legacy\n");
861 err
= devm_request_irq(&priv
->pci_dev
->dev
,
868 dev_err(&priv
->pci_dev
->dev
, "no usable interrupts\n");
875 static struct pci_driver ismt_driver
;
878 * ismt_probe() - probe for iSMT devices
879 * @pdev: PCI-Express device
880 * @id: PCI-Express device ID
883 ismt_probe(struct pci_dev
*pdev
, const struct pci_device_id
*id
)
886 struct ismt_priv
*priv
;
887 unsigned long start
, len
;
889 priv
= devm_kzalloc(&pdev
->dev
, sizeof(*priv
), GFP_KERNEL
);
893 pci_set_drvdata(pdev
, priv
);
895 i2c_set_adapdata(&priv
->adapter
, priv
);
896 priv
->adapter
.owner
= THIS_MODULE
;
897 priv
->adapter
.class = I2C_CLASS_HWMON
;
898 priv
->adapter
.algo
= &smbus_algorithm
;
899 priv
->adapter
.dev
.parent
= &pdev
->dev
;
900 ACPI_COMPANION_SET(&priv
->adapter
.dev
, ACPI_COMPANION(&pdev
->dev
));
901 priv
->adapter
.retries
= ISMT_MAX_RETRIES
;
903 priv
->pci_dev
= pdev
;
905 err
= pcim_enable_device(pdev
);
907 dev_err(&pdev
->dev
, "Failed to enable SMBus PCI device (%d)\n",
912 /* enable bus mastering */
913 pci_set_master(pdev
);
915 /* Determine the address of the SMBus area */
916 start
= pci_resource_start(pdev
, SMBBAR
);
917 len
= pci_resource_len(pdev
, SMBBAR
);
918 if (!start
|| !len
) {
920 "SMBus base address uninitialized, upgrade BIOS\n");
924 snprintf(priv
->adapter
.name
, sizeof(priv
->adapter
.name
),
925 "SMBus iSMT adapter at %lx", start
);
927 dev_dbg(&priv
->pci_dev
->dev
, " start=0x%lX\n", start
);
928 dev_dbg(&priv
->pci_dev
->dev
, " len=0x%lX\n", len
);
930 err
= acpi_check_resource_conflict(&pdev
->resource
[SMBBAR
]);
932 dev_err(&pdev
->dev
, "ACPI resource conflict!\n");
936 err
= pci_request_region(pdev
, SMBBAR
, ismt_driver
.name
);
939 "Failed to request SMBus region 0x%lx-0x%lx\n",
944 priv
->smba
= pcim_iomap(pdev
, SMBBAR
, len
);
946 dev_err(&pdev
->dev
, "Unable to ioremap SMBus BAR\n");
950 err
= dma_set_mask_and_coherent(&pdev
->dev
, DMA_BIT_MASK(64));
952 dev_err(&pdev
->dev
, "dma_set_mask fail\n");
956 err
= ismt_dev_init(priv
);
962 err
= ismt_int_init(priv
);
966 err
= i2c_add_adapter(&priv
->adapter
);
973 * ismt_remove() - release driver resources
974 * @pdev: PCI-Express device
976 static void ismt_remove(struct pci_dev
*pdev
)
978 struct ismt_priv
*priv
= pci_get_drvdata(pdev
);
980 i2c_del_adapter(&priv
->adapter
);
983 static struct pci_driver ismt_driver
= {
984 .name
= "ismt_smbus",
985 .id_table
= ismt_ids
,
987 .remove
= ismt_remove
,
990 module_pci_driver(ismt_driver
);
992 MODULE_LICENSE("Dual BSD/GPL");
993 MODULE_AUTHOR("Bill E. Brown <bill.e.brown@intel.com>");
994 MODULE_DESCRIPTION("Intel SMBus Message Transport (iSMT) driver");