2 * Support for Moorestown/Medfield I2C chip
4 * Copyright (c) 2009 Intel Corporation.
5 * Copyright (c) 2009 Synopsys. Inc.
7 * This program is free software; you can redistribute it and/or modify it
8 * under the terms and conditions of the GNU General Public License, version
9 * 2, as published by the Free Software Foundation.
11 * This program is distributed in the hope it will be useful, but WITHOUT ANY
12 * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
13 * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
16 * You should have received a copy of the GNU General Public License along
17 * with this program; if not, write to the Free Software Foundation, Inc., 51
18 * Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
22 #include <linux/module.h>
23 #include <linux/kernel.h>
24 #include <linux/err.h>
25 #include <linux/slab.h>
26 #include <linux/stat.h>
27 #include <linux/delay.h>
28 #include <linux/i2c.h>
29 #include <linux/init.h>
30 #include <linux/pci.h>
31 #include <linux/interrupt.h>
32 #include <linux/pm_runtime.h>
35 #define DRIVER_NAME "i2c-intel-mid"
36 #define VERSION "Version 0.5ac2"
37 #define PLATFORM "Moorestown/Medfield"
39 /* Tables use: 0 Moorestown, 1 Medfield */
40 #define NUM_PLATFORMS 2
49 STATUS_READ_IN_PROGRESS
,
58 * struct intel_mid_i2c_private - per device I²C context
59 * @adap: core i2c layer adapter information
60 * @dev: device reference for power management
61 * @base: register base
62 * @speed: speed mode for this port
63 * @complete: completion object for transaction wait
64 * @abort: reason for last abort
65 * @rx_buf: pointer into working receive buffer
66 * @rx_buf_len: receive buffer length
67 * @status: adapter state machine
68 * @msg: the message we are currently processing
69 * @platform: the MID device type we are part of
70 * @lock: transaction serialization
72 * We allocate one of these per device we discover, it holds the core
73 * i2c layer objects and the data we need to track privately.
75 struct intel_mid_i2c_private
{
76 struct i2c_adapter adap
;
80 struct completion complete
;
84 enum mid_i2c_status status
;
86 enum platform_enum platform
;
96 /* Control register */
98 #define SLV_DIS (1 << 6) /* Disable slave mode */
99 #define RESTART (1 << 5) /* Send a Restart condition */
100 #define ADDR_10BIT (1 << 4) /* 10-bit addressing */
101 #define STANDARD_MODE (1 << 1) /* standard mode */
102 #define FAST_MODE (2 << 1) /* fast mode */
103 #define HIGH_MODE (3 << 1) /* high speed mode */
104 #define MASTER_EN (1 << 0) /* Master mode */
106 /* Target address register */
108 #define IC_TAR_10BIT_ADDR (1 << 12) /* 10-bit addressing */
109 #define IC_TAR_SPECIAL (1 << 11) /* Perform special I2C cmd */
110 #define IC_TAR_GC_OR_START (1 << 10) /* 0: Gerneral Call Address */
112 /* Slave Address Register */
113 #define IC_SAR 0x08 /* Not used in Master mode */
115 /* High Speed Master Mode Code Address Register */
116 #define IC_HS_MADDR 0x0c
118 /* Rx/Tx Data Buffer and Command Register */
119 #define IC_DATA_CMD 0x10
120 #define IC_RD (1 << 8) /* 1: Read 0: Write */
122 /* Standard Speed Clock SCL High Count Register */
123 #define IC_SS_SCL_HCNT 0x14
125 /* Standard Speed Clock SCL Low Count Register */
126 #define IC_SS_SCL_LCNT 0x18
128 /* Fast Speed Clock SCL High Count Register */
129 #define IC_FS_SCL_HCNT 0x1c
131 /* Fast Spedd Clock SCL Low Count Register */
132 #define IC_FS_SCL_LCNT 0x20
134 /* High Speed Clock SCL High Count Register */
135 #define IC_HS_SCL_HCNT 0x24
137 /* High Speed Clock SCL Low Count Register */
138 #define IC_HS_SCL_LCNT 0x28
140 /* Interrupt Status Register */
141 #define IC_INTR_STAT 0x2c /* Read only */
142 #define R_GEN_CALL (1 << 11)
143 #define R_START_DET (1 << 10)
144 #define R_STOP_DET (1 << 9)
145 #define R_ACTIVITY (1 << 8)
146 #define R_RX_DONE (1 << 7)
147 #define R_TX_ABRT (1 << 6)
148 #define R_RD_REQ (1 << 5)
149 #define R_TX_EMPTY (1 << 4)
150 #define R_TX_OVER (1 << 3)
151 #define R_RX_FULL (1 << 2)
152 #define R_RX_OVER (1 << 1)
153 #define R_RX_UNDER (1 << 0)
155 /* Interrupt Mask Register */
156 #define IC_INTR_MASK 0x30 /* Read and Write */
157 #define M_GEN_CALL (1 << 11)
158 #define M_START_DET (1 << 10)
159 #define M_STOP_DET (1 << 9)
160 #define M_ACTIVITY (1 << 8)
161 #define M_RX_DONE (1 << 7)
162 #define M_TX_ABRT (1 << 6)
163 #define M_RD_REQ (1 << 5)
164 #define M_TX_EMPTY (1 << 4)
165 #define M_TX_OVER (1 << 3)
166 #define M_RX_FULL (1 << 2)
167 #define M_RX_OVER (1 << 1)
168 #define M_RX_UNDER (1 << 0)
170 /* Raw Interrupt Status Register */
171 #define IC_RAW_INTR_STAT 0x34 /* Read Only */
172 #define GEN_CALL (1 << 11) /* General call */
173 #define START_DET (1 << 10) /* (RE)START occured */
174 #define STOP_DET (1 << 9) /* STOP occured */
175 #define ACTIVITY (1 << 8) /* Bus busy */
176 #define RX_DONE (1 << 7) /* Not used in Master mode */
177 #define TX_ABRT (1 << 6) /* Transmit Abort */
178 #define RD_REQ (1 << 5) /* Not used in Master mode */
179 #define TX_EMPTY (1 << 4) /* TX FIFO <= threshold */
180 #define TX_OVER (1 << 3) /* TX FIFO overflow */
181 #define RX_FULL (1 << 2) /* RX FIFO >= threshold */
182 #define RX_OVER (1 << 1) /* RX FIFO overflow */
183 #define RX_UNDER (1 << 0) /* RX FIFO empty */
185 /* Receive FIFO Threshold Register */
186 #define IC_RX_TL 0x38
188 /* Transmit FIFO Treshold Register */
189 #define IC_TX_TL 0x3c
191 /* Clear Combined and Individual Interrupt Register */
192 #define IC_CLR_INTR 0x40
193 #define CLR_INTR (1 << 0)
195 /* Clear RX_UNDER Interrupt Register */
196 #define IC_CLR_RX_UNDER 0x44
197 #define CLR_RX_UNDER (1 << 0)
199 /* Clear RX_OVER Interrupt Register */
200 #define IC_CLR_RX_OVER 0x48
201 #define CLR_RX_OVER (1 << 0)
203 /* Clear TX_OVER Interrupt Register */
204 #define IC_CLR_TX_OVER 0x4c
205 #define CLR_TX_OVER (1 << 0)
207 #define IC_CLR_RD_REQ 0x50
209 /* Clear TX_ABRT Interrupt Register */
210 #define IC_CLR_TX_ABRT 0x54
211 #define CLR_TX_ABRT (1 << 0)
212 #define IC_CLR_RX_DONE 0x58
214 /* Clear ACTIVITY Interrupt Register */
215 #define IC_CLR_ACTIVITY 0x5c
216 #define CLR_ACTIVITY (1 << 0)
218 /* Clear STOP_DET Interrupt Register */
219 #define IC_CLR_STOP_DET 0x60
220 #define CLR_STOP_DET (1 << 0)
222 /* Clear START_DET Interrupt Register */
223 #define IC_CLR_START_DET 0x64
224 #define CLR_START_DET (1 << 0)
226 /* Clear GEN_CALL Interrupt Register */
227 #define IC_CLR_GEN_CALL 0x68
228 #define CLR_GEN_CALL (1 << 0)
230 /* Enable Register */
231 #define IC_ENABLE 0x6c
232 #define ENABLE (1 << 0)
234 /* Status Register */
235 #define IC_STATUS 0x70 /* Read Only */
236 #define STAT_SLV_ACTIVITY (1 << 6) /* Slave not in idle */
237 #define STAT_MST_ACTIVITY (1 << 5) /* Master not in idle */
238 #define STAT_RFF (1 << 4) /* RX FIFO Full */
239 #define STAT_RFNE (1 << 3) /* RX FIFO Not Empty */
240 #define STAT_TFE (1 << 2) /* TX FIFO Empty */
241 #define STAT_TFNF (1 << 1) /* TX FIFO Not Full */
242 #define STAT_ACTIVITY (1 << 0) /* Activity Status */
244 /* Transmit FIFO Level Register */
245 #define IC_TXFLR 0x74 /* Read Only */
246 #define TXFLR (1 << 0) /* TX FIFO level */
248 /* Receive FIFO Level Register */
249 #define IC_RXFLR 0x78 /* Read Only */
250 #define RXFLR (1 << 0) /* RX FIFO level */
252 /* Transmit Abort Source Register */
253 #define IC_TX_ABRT_SOURCE 0x80
254 #define ABRT_SLVRD_INTX (1 << 15)
255 #define ABRT_SLV_ARBLOST (1 << 14)
256 #define ABRT_SLVFLUSH_TXFIFO (1 << 13)
257 #define ARB_LOST (1 << 12)
258 #define ABRT_MASTER_DIS (1 << 11)
259 #define ABRT_10B_RD_NORSTRT (1 << 10)
260 #define ABRT_SBYTE_NORSTRT (1 << 9)
261 #define ABRT_HS_NORSTRT (1 << 8)
262 #define ABRT_SBYTE_ACKDET (1 << 7)
263 #define ABRT_HS_ACKDET (1 << 6)
264 #define ABRT_GCALL_READ (1 << 5)
265 #define ABRT_GCALL_NOACK (1 << 4)
266 #define ABRT_TXDATA_NOACK (1 << 3)
267 #define ABRT_10ADDR2_NOACK (1 << 2)
268 #define ABRT_10ADDR1_NOACK (1 << 1)
269 #define ABRT_7B_ADDR_NOACK (1 << 0)
271 /* Enable Status Register */
272 #define IC_ENABLE_STATUS 0x9c
273 #define IC_EN (1 << 0) /* I2C in an enabled state */
275 /* Component Parameter Register 1*/
276 #define IC_COMP_PARAM_1 0xf4
277 #define APB_DATA_WIDTH (0x3 << 0)
279 /* added by xiaolin --begin */
280 #define SS_MIN_SCL_HIGH 4000
281 #define SS_MIN_SCL_LOW 4700
282 #define FS_MIN_SCL_HIGH 600
283 #define FS_MIN_SCL_LOW 1300
284 #define HS_MIN_SCL_HIGH_100PF 60
285 #define HS_MIN_SCL_LOW_100PF 120
293 static int speed_mode
[6] = {
302 static int ctl_num
= 6;
303 module_param_array(speed_mode
, int, &ctl_num
, S_IRUGO
);
304 MODULE_PARM_DESC(speed_mode
, "Set the speed of the i2c interface (0-2)");
307 * intel_mid_i2c_disable - Disable I2C controller
308 * @adap: struct pointer to i2c_adapter
312 * -EBUSY if device is busy
313 * -ETIMEDOUT if i2c cannot be disabled within the given time
315 * I2C bus state should be checked prior to disabling the hardware. If bus is
316 * not in idle state, an errno is returned. Write "0" to IC_ENABLE to disable
319 static int intel_mid_i2c_disable(struct i2c_adapter
*adap
)
321 struct intel_mid_i2c_private
*i2c
= i2c_get_adapdata(adap
);
325 static const u16 delay
[NUM_SPEEDS
] = {100, 25, 3};
327 /* Set IC_ENABLE to 0 */
328 writel(0, i2c
->base
+ IC_ENABLE
);
330 /* Check if device is busy */
331 dev_dbg(&adap
->dev
, "mrst i2c disable\n");
332 while ((ret1
= readl(i2c
->base
+ IC_ENABLE_STATUS
) & 0x1)
333 || (ret2
= readl(i2c
->base
+ IC_STATUS
) & 0x1)) {
334 udelay(delay
[i2c
->speed
]);
335 writel(0, i2c
->base
+ IC_ENABLE
);
336 dev_dbg(&adap
->dev
, "i2c is busy, count is %d speed %d\n",
344 /* Clear all interrupts */
345 readl(i2c
->base
+ IC_CLR_INTR
);
346 readl(i2c
->base
+ IC_CLR_STOP_DET
);
347 readl(i2c
->base
+ IC_CLR_START_DET
);
348 readl(i2c
->base
+ IC_CLR_ACTIVITY
);
349 readl(i2c
->base
+ IC_CLR_TX_ABRT
);
350 readl(i2c
->base
+ IC_CLR_RX_OVER
);
351 readl(i2c
->base
+ IC_CLR_RX_UNDER
);
352 readl(i2c
->base
+ IC_CLR_TX_OVER
);
353 readl(i2c
->base
+ IC_CLR_RX_DONE
);
354 readl(i2c
->base
+ IC_CLR_GEN_CALL
);
356 /* Disable all interupts */
357 writel(0x0000, i2c
->base
+ IC_INTR_MASK
);
363 * intel_mid_i2c_hwinit - Initialize the I2C hardware registers
364 * @dev: pci device struct pointer
366 * This function will be called in intel_mid_i2c_probe() before device
371 * -EBUSY i2c cannot be disabled
372 * -ETIMEDOUT i2c cannot be disabled
373 * -EFAULT If APB data width is not 32-bit wide
375 * I2C should be disabled prior to other register operation. If failed, an
376 * errno is returned. Mask and Clear all interrpts, this should be done at
377 * first. Set common registers which will not be modified during normal
378 * transfers, including: controll register, FIFO threshold and clock freq.
379 * Check APB data width at last.
381 static int intel_mid_i2c_hwinit(struct intel_mid_i2c_private
*i2c
)
385 static const u16 hcnt
[NUM_PLATFORMS
][NUM_SPEEDS
] = {
386 { 0x75, 0x15, 0x07 },
387 { 0x04c, 0x10, 0x06 }
389 static const u16 lcnt
[NUM_PLATFORMS
][NUM_SPEEDS
] = {
390 { 0x7C, 0x21, 0x0E },
391 { 0x053, 0x19, 0x0F }
394 /* Disable i2c first */
395 err
= intel_mid_i2c_disable(&i2c
->adap
);
400 * Setup clock frequency and speed mode
401 * Enable restart condition,
402 * enable master FSM, disable slave FSM,
403 * use target address when initiating transfer
406 writel((i2c
->speed
+ 1) << 1 | SLV_DIS
| RESTART
| MASTER_EN
,
408 writel(hcnt
[i2c
->platform
][i2c
->speed
],
409 i2c
->base
+ (IC_SS_SCL_HCNT
+ (i2c
->speed
<< 3)));
410 writel(lcnt
[i2c
->platform
][i2c
->speed
],
411 i2c
->base
+ (IC_SS_SCL_LCNT
+ (i2c
->speed
<< 3)));
413 /* Set tranmit & receive FIFO threshold to zero */
414 writel(0x0, i2c
->base
+ IC_RX_TL
);
415 writel(0x0, i2c
->base
+ IC_TX_TL
);
421 * intel_mid_i2c_func - Return the supported three I2C operations.
422 * @adapter: i2c_adapter struct pointer
424 static u32
intel_mid_i2c_func(struct i2c_adapter
*adapter
)
426 return I2C_FUNC_I2C
| I2C_FUNC_10BIT_ADDR
| I2C_FUNC_SMBUS_EMUL
;
430 * intel_mid_i2c_address_neq - To check if the addresses for different i2c messages
433 * @p2: second i2c_msg
436 * 0 if addresses are equal
439 * Within a single transfer, the I2C client may need to send its address more
440 * than once. So a check if the addresses match is needed.
442 static inline bool intel_mid_i2c_address_neq(const struct i2c_msg
*p1
,
443 const struct i2c_msg
*p2
)
445 if (p1
->addr
!= p2
->addr
)
447 if ((p1
->flags
^ p2
->flags
) & I2C_M_TEN
)
453 * intel_mid_i2c_abort - To handle transfer abortions and print error messages.
454 * @adap: i2c_adapter struct pointer
456 * By reading register IC_TX_ABRT_SOURCE, various transfer errors can be
457 * distingushed. At present, no circumstances have been found out that
458 * multiple errors would be occured simutaneously, so we simply use the
459 * register value directly.
461 * At last the error bits are cleared. (Note clear ABRT_SBYTE_NORSTRT bit need
464 static void intel_mid_i2c_abort(struct intel_mid_i2c_private
*i2c
)
466 /* Read about source register */
467 int abort
= i2c
->abort
;
468 struct i2c_adapter
*adap
= &i2c
->adap
;
470 /* Single transfer error check:
471 * According to databook, TX/RX FIFOs would be flushed when
472 * the abort interrupt occured.
474 if (abort
& ABRT_MASTER_DIS
)
476 "initiate master operation with master mode disabled.\n");
477 if (abort
& ABRT_10B_RD_NORSTRT
)
479 "RESTART disabled and master sent READ cmd in 10-bit addressing.\n");
481 if (abort
& ABRT_SBYTE_NORSTRT
) {
483 "RESTART disabled and user is trying to send START byte.\n");
484 writel(~ABRT_SBYTE_NORSTRT
, i2c
->base
+ IC_TX_ABRT_SOURCE
);
485 writel(RESTART
, i2c
->base
+ IC_CON
);
486 writel(~IC_TAR_SPECIAL
, i2c
->base
+ IC_TAR
);
489 if (abort
& ABRT_SBYTE_ACKDET
)
491 "START byte was not acknowledged.\n");
492 if (abort
& ABRT_TXDATA_NOACK
)
494 "No acknowledgement received from slave.\n");
495 if (abort
& ABRT_10ADDR2_NOACK
)
497 "The 2nd address byte of the 10-bit address was not acknowledged.\n");
498 if (abort
& ABRT_10ADDR1_NOACK
)
500 "The 1st address byte of 10-bit address was not acknowledged.\n");
501 if (abort
& ABRT_7B_ADDR_NOACK
)
503 "I2C slave device not acknowledged.\n");
505 /* Clear TX_ABRT bit */
506 readl(i2c
->base
+ IC_CLR_TX_ABRT
);
507 i2c
->status
= STATUS_XFER_ABORT
;
511 * xfer_read - Internal function to implement master read transfer.
512 * @adap: i2c_adapter struct pointer
513 * @buf: buffer in i2c_msg
514 * @length: number of bytes to be read
517 * 0 if the read transfer succeeds
518 * -ETIMEDOUT if cannot read the "raw" interrupt register
519 * -EINVAL if a transfer abort occurred
521 * For every byte, a "READ" command will be loaded into IC_DATA_CMD prior to
522 * data transfer. The actual "read" operation will be performed if an RX_FULL
523 * interrupt occurred.
525 * Note there may be two interrupt signals captured, one should read
526 * IC_RAW_INTR_STAT to separate between errors and actual data.
528 static int xfer_read(struct i2c_adapter
*adap
, unsigned char *buf
, int length
)
530 struct intel_mid_i2c_private
*i2c
= i2c_get_adapdata(adap
);
536 "I2C FIFO cannot support larger than 256 bytes\n");
540 INIT_COMPLETION(i2c
->complete
);
542 readl(i2c
->base
+ IC_CLR_INTR
);
543 writel(0x0044, i2c
->base
+ IC_INTR_MASK
);
545 i2c
->status
= STATUS_READ_START
;
548 writel(IC_RD
, i2c
->base
+ IC_DATA_CMD
);
550 i2c
->status
= STATUS_READ_START
;
551 err
= wait_for_completion_interruptible_timeout(&i2c
->complete
, HZ
);
553 dev_err(&adap
->dev
, "Timeout for ACK from I2C slave device\n");
554 intel_mid_i2c_hwinit(i2c
);
557 if (i2c
->status
== STATUS_READ_SUCCESS
)
564 * xfer_write - Internal function to implement master write transfer.
565 * @adap: i2c_adapter struct pointer
566 * @buf: buffer in i2c_msg
567 * @length: number of bytes to be read
570 * 0 if the read transfer succeeds
571 * -ETIMEDOUT if we cannot read the "raw" interrupt register
572 * -EINVAL if a transfer abort occured
574 * For every byte, a "WRITE" command will be loaded into IC_DATA_CMD prior to
575 * data transfer. The actual "write" operation will be performed when the
576 * RX_FULL interrupt signal occurs.
578 * Note there may be two interrupt signals captured, one should read
579 * IC_RAW_INTR_STAT to separate between errors and actual data.
581 static int xfer_write(struct i2c_adapter
*adap
,
582 unsigned char *buf
, int length
)
584 struct intel_mid_i2c_private
*i2c
= i2c_get_adapdata(adap
);
589 "I2C FIFO cannot support larger than 256 bytes\n");
593 INIT_COMPLETION(i2c
->complete
);
595 readl(i2c
->base
+ IC_CLR_INTR
);
596 writel(0x0050, i2c
->base
+ IC_INTR_MASK
);
598 i2c
->status
= STATUS_WRITE_START
;
599 for (i
= 0; i
< length
; i
++)
600 writel((u16
)(*(buf
+ i
)), i2c
->base
+ IC_DATA_CMD
);
602 i2c
->status
= STATUS_WRITE_START
;
603 err
= wait_for_completion_interruptible_timeout(&i2c
->complete
, HZ
);
605 dev_err(&adap
->dev
, "Timeout for ACK from I2C slave device\n");
606 intel_mid_i2c_hwinit(i2c
);
609 if (i2c
->status
== STATUS_WRITE_SUCCESS
)
616 static int intel_mid_i2c_setup(struct i2c_adapter
*adap
, struct i2c_msg
*pmsg
)
618 struct intel_mid_i2c_private
*i2c
= i2c_get_adapdata(adap
);
624 /* Disable device first */
625 err
= intel_mid_i2c_disable(adap
);
628 "Cannot disable i2c controller, timeout\n");
632 mode
= (1 + i2c
->speed
) << 1;
633 /* set the speed mode */
634 reg
= readl(i2c
->base
+ IC_CON
);
635 if ((reg
& 0x06) != mode
) {
636 dev_dbg(&adap
->dev
, "set mode %d\n", i2c
->speed
);
637 writel((reg
& ~0x6) | mode
, i2c
->base
+ IC_CON
);
640 reg
= readl(i2c
->base
+ IC_CON
);
641 /* use 7-bit addressing */
642 if (pmsg
->flags
& I2C_M_TEN
) {
643 if ((reg
& ADDR_10BIT
) != ADDR_10BIT
) {
644 dev_dbg(&adap
->dev
, "set i2c 10 bit address mode\n");
645 writel(reg
| ADDR_10BIT
, i2c
->base
+ IC_CON
);
648 if ((reg
& ADDR_10BIT
) != 0x0) {
649 dev_dbg(&adap
->dev
, "set i2c 7 bit address mode\n");
650 writel(reg
& ~ADDR_10BIT
, i2c
->base
+ IC_CON
);
653 /* enable restart conditions */
654 reg
= readl(i2c
->base
+ IC_CON
);
655 if ((reg
& RESTART
) != RESTART
) {
656 dev_dbg(&adap
->dev
, "enable restart conditions\n");
657 writel(reg
| RESTART
, i2c
->base
+ IC_CON
);
660 /* enable master FSM */
661 reg
= readl(i2c
->base
+ IC_CON
);
662 dev_dbg(&adap
->dev
, "ic_con reg is 0x%x\n", reg
);
663 writel(reg
| MASTER_EN
, i2c
->base
+ IC_CON
);
664 if ((reg
& SLV_DIS
) != SLV_DIS
) {
665 dev_dbg(&adap
->dev
, "enable master FSM\n");
666 writel(reg
| SLV_DIS
, i2c
->base
+ IC_CON
);
667 dev_dbg(&adap
->dev
, "ic_con reg is 0x%x\n", reg
);
670 /* use target address when initiating transfer */
671 reg
= readl(i2c
->base
+ IC_TAR
);
672 bit_mask
= IC_TAR_SPECIAL
| IC_TAR_GC_OR_START
;
674 if ((reg
& bit_mask
) != 0x0) {
676 "WR: use target address when intiating transfer, i2c_tx_target\n");
677 writel(reg
& ~bit_mask
, i2c
->base
+ IC_TAR
);
680 /* set target address to the I2C slave address */
682 "set target address to the I2C slave address, addr is %x\n",
684 writel(pmsg
->addr
| (pmsg
->flags
& I2C_M_TEN
? IC_TAR_10BIT_ADDR
: 0),
687 /* Enable I2C controller */
688 writel(ENABLE
, i2c
->base
+ IC_ENABLE
);
694 * intel_mid_i2c_xfer - Main master transfer routine.
695 * @adap: i2c_adapter struct pointer
696 * @pmsg: i2c_msg struct pointer
697 * @num: number of i2c_msg
700 * + number of messages transfered
701 * -ETIMEDOUT If cannot disable I2C controller or read IC_STATUS
702 * -EINVAL If the address in i2c_msg is invalid
704 * This function will be registered in i2c-core and exposed to external
706 * 1. Disable I2C controller
707 * 2. Unmask three interrupts: RX_FULL, TX_EMPTY, TX_ABRT
708 * 3. Check if address in i2c_msg is valid
709 * 4. Enable I2C controller
710 * 5. Perform real transfer (call xfer_read or xfer_write)
711 * 6. Wait until the current transfer is finished (check bus state)
712 * 7. Mask and clear all interrupts
714 static int intel_mid_i2c_xfer(struct i2c_adapter
*adap
,
715 struct i2c_msg
*pmsg
,
718 struct intel_mid_i2c_private
*i2c
= i2c_get_adapdata(adap
);
721 /* if number of messages equal 0*/
725 pm_runtime_get(i2c
->dev
);
727 mutex_lock(&i2c
->lock
);
728 dev_dbg(&adap
->dev
, "intel_mid_i2c_xfer, process %d msg(s)\n", num
);
729 dev_dbg(&adap
->dev
, "slave address is %x\n", pmsg
->addr
);
732 if (i2c
->status
!= STATUS_IDLE
) {
733 dev_err(&adap
->dev
, "Adapter %d in transfer/standby\n",
735 mutex_unlock(&i2c
->lock
);
736 pm_runtime_put(i2c
->dev
);
741 for (i
= 1; i
< num
; i
++) {
742 /* Message address equal? */
743 if (unlikely(intel_mid_i2c_address_neq(&pmsg
[0], &pmsg
[i
]))) {
744 dev_err(&adap
->dev
, "Invalid address in msg[%d]\n", i
);
745 mutex_unlock(&i2c
->lock
);
746 pm_runtime_put(i2c
->dev
);
751 if (intel_mid_i2c_setup(adap
, pmsg
)) {
752 mutex_unlock(&i2c
->lock
);
753 pm_runtime_put(i2c
->dev
);
757 for (i
= 0; i
< num
; i
++) {
759 i2c
->status
= STATUS_IDLE
;
761 if (pmsg
->flags
& I2C_M_RD
) {
762 dev_dbg(&adap
->dev
, "I2C_M_RD\n");
763 err
= xfer_read(adap
, pmsg
->buf
, pmsg
->len
);
765 dev_dbg(&adap
->dev
, "I2C_M_WR\n");
766 err
= xfer_write(adap
, pmsg
->buf
, pmsg
->len
);
770 dev_dbg(&adap
->dev
, "msg[%d] transfer complete\n", i
);
771 pmsg
++; /* next message */
774 /* Mask interrupts */
775 writel(0x0000, i2c
->base
+ IC_INTR_MASK
);
776 /* Clear all interrupts */
777 readl(i2c
->base
+ IC_CLR_INTR
);
779 i2c
->status
= STATUS_IDLE
;
780 mutex_unlock(&i2c
->lock
);
781 pm_runtime_put(i2c
->dev
);
786 static int intel_mid_i2c_runtime_suspend(struct device
*dev
)
788 struct pci_dev
*pdev
= to_pci_dev(dev
);
789 struct intel_mid_i2c_private
*i2c
= pci_get_drvdata(pdev
);
790 struct i2c_adapter
*adap
= to_i2c_adapter(dev
);
793 if (i2c
->status
!= STATUS_IDLE
)
796 intel_mid_i2c_disable(adap
);
798 err
= pci_save_state(pdev
);
800 dev_err(dev
, "pci_save_state failed\n");
804 err
= pci_set_power_state(pdev
, PCI_D3hot
);
806 dev_err(dev
, "pci_set_power_state failed\n");
809 i2c
->status
= STATUS_STANDBY
;
814 static int intel_mid_i2c_runtime_resume(struct device
*dev
)
816 struct pci_dev
*pdev
= to_pci_dev(dev
);
817 struct intel_mid_i2c_private
*i2c
= pci_get_drvdata(pdev
);
820 if (i2c
->status
!= STATUS_STANDBY
)
823 pci_set_power_state(pdev
, PCI_D0
);
824 pci_restore_state(pdev
);
825 err
= pci_enable_device(pdev
);
827 dev_err(dev
, "pci_enable_device failed\n");
831 i2c
->status
= STATUS_IDLE
;
833 intel_mid_i2c_hwinit(i2c
);
837 static void i2c_isr_read(struct intel_mid_i2c_private
*i2c
)
839 struct i2c_msg
*msg
= i2c
->msg
;
844 if (!(msg
->flags
& I2C_M_RD
))
847 if (i2c
->status
!= STATUS_READ_IN_PROGRESS
) {
851 len
= i2c
->rx_buf_len
;
855 rx_num
= readl(i2c
->base
+ IC_RXFLR
);
857 for (; len
> 0 && rx_num
> 0; len
--, rx_num
--)
858 *buf
++ = readl(i2c
->base
+ IC_DATA_CMD
);
861 i2c
->status
= STATUS_READ_IN_PROGRESS
;
862 i2c
->rx_buf_len
= len
;
865 i2c
->status
= STATUS_READ_SUCCESS
;
870 static irqreturn_t
intel_mid_i2c_isr(int this_irq
, void *dev
)
872 struct intel_mid_i2c_private
*i2c
= dev
;
873 u32 stat
= readl(i2c
->base
+ IC_INTR_STAT
);
878 dev_dbg(&i2c
->adap
.dev
, "%s, stat = 0x%x\n", __func__
, stat
);
881 if (i2c
->status
!= STATUS_WRITE_START
&&
882 i2c
->status
!= STATUS_READ_START
&&
883 i2c
->status
!= STATUS_READ_IN_PROGRESS
)
887 i2c
->abort
= readl(i2c
->base
+ IC_TX_ABRT_SOURCE
);
889 readl(i2c
->base
+ IC_CLR_INTR
);
891 if (stat
& TX_ABRT
) {
892 intel_mid_i2c_abort(i2c
);
896 if (stat
& RX_FULL
) {
901 if (stat
& TX_EMPTY
) {
902 if (readl(i2c
->base
+ IC_STATUS
) & 0x4)
903 i2c
->status
= STATUS_WRITE_SUCCESS
;
907 if (i2c
->status
== STATUS_READ_SUCCESS
||
908 i2c
->status
== STATUS_WRITE_SUCCESS
||
909 i2c
->status
== STATUS_XFER_ABORT
) {
910 /* Clear all interrupts */
911 readl(i2c
->base
+ IC_CLR_INTR
);
912 /* Mask interrupts */
913 writel(0, i2c
->base
+ IC_INTR_MASK
);
914 complete(&i2c
->complete
);
920 static struct i2c_algorithm intel_mid_i2c_algorithm
= {
921 .master_xfer
= intel_mid_i2c_xfer
,
922 .functionality
= intel_mid_i2c_func
,
926 static const struct dev_pm_ops intel_mid_i2c_pm_ops
= {
927 .runtime_suspend
= intel_mid_i2c_runtime_suspend
,
928 .runtime_resume
= intel_mid_i2c_runtime_resume
,
932 * intel_mid_i2c_probe - I2C controller initialization routine
938 * -ENODEV If cannot allocate pci resource
939 * -ENOMEM If the register base remapping failed, or
942 * Initialization steps:
943 * 1. Request for PCI resource
944 * 2. Remap the start address of PCI resource to register base
945 * 3. Request for device memory region
946 * 4. Fill in the struct members of intel_mid_i2c_private
947 * 5. Call intel_mid_i2c_hwinit() for hardware initialization
948 * 6. Register I2C adapter in i2c-core
950 static int __devinit
intel_mid_i2c_probe(struct pci_dev
*dev
,
951 const struct pci_device_id
*id
)
953 struct intel_mid_i2c_private
*mrst
;
954 unsigned long start
, len
;
956 void __iomem
*base
= NULL
;
958 dev_dbg(&dev
->dev
, "Get into probe function for I2C\n");
959 err
= pci_enable_device(dev
);
961 dev_err(&dev
->dev
, "Failed to enable I2C PCI device (%d)\n",
966 /* Determine the address of the I2C area */
967 start
= pci_resource_start(dev
, 0);
968 len
= pci_resource_len(dev
, 0);
969 if (!start
|| len
== 0) {
970 dev_err(&dev
->dev
, "base address not set\n");
974 dev_dbg(&dev
->dev
, "%s i2c resource start 0x%lx, len=%ld\n",
975 PLATFORM
, start
, len
);
977 err
= pci_request_region(dev
, 0, DRIVER_NAME
);
979 dev_err(&dev
->dev
, "failed to request I2C region "
980 "0x%lx-0x%lx\n", start
,
981 (unsigned long)pci_resource_end(dev
, 0));
985 base
= ioremap_nocache(start
, len
);
987 dev_err(&dev
->dev
, "I/O memory remapping failed\n");
992 /* Allocate the per-device data structure, intel_mid_i2c_private */
993 mrst
= kzalloc(sizeof(struct intel_mid_i2c_private
), GFP_KERNEL
);
995 dev_err(&dev
->dev
, "can't allocate interface\n");
1000 /* Initialize struct members */
1001 snprintf(mrst
->adap
.name
, sizeof(mrst
->adap
.name
),
1002 "Intel MID I2C at %lx", start
);
1003 mrst
->adap
.owner
= THIS_MODULE
;
1004 mrst
->adap
.algo
= &intel_mid_i2c_algorithm
;
1005 mrst
->adap
.dev
.parent
= &dev
->dev
;
1006 mrst
->dev
= &dev
->dev
;
1008 mrst
->speed
= STANDARD
;
1010 mrst
->rx_buf_len
= 0;
1011 mrst
->status
= STATUS_IDLE
;
1013 pci_set_drvdata(dev
, mrst
);
1014 i2c_set_adapdata(&mrst
->adap
, mrst
);
1016 mrst
->adap
.nr
= busnum
= id
->driver_data
;
1017 if (dev
->device
<= 0x0804)
1018 mrst
->platform
= MOORESTOWN
;
1020 mrst
->platform
= MEDFIELD
;
1022 dev_dbg(&dev
->dev
, "I2C%d\n", busnum
);
1024 if (ctl_num
> busnum
) {
1025 if (speed_mode
[busnum
] < 0 || speed_mode
[busnum
] >= NUM_SPEEDS
)
1026 dev_warn(&dev
->dev
, "invalid speed %d ignored.\n",
1027 speed_mode
[busnum
]);
1029 mrst
->speed
= speed_mode
[busnum
];
1032 /* Initialize i2c controller */
1033 err
= intel_mid_i2c_hwinit(mrst
);
1035 dev_err(&dev
->dev
, "I2C interface initialization failed\n");
1039 mutex_init(&mrst
->lock
);
1040 init_completion(&mrst
->complete
);
1042 /* Clear all interrupts */
1043 readl(mrst
->base
+ IC_CLR_INTR
);
1044 writel(0x0000, mrst
->base
+ IC_INTR_MASK
);
1046 err
= request_irq(dev
->irq
, intel_mid_i2c_isr
, IRQF_SHARED
,
1047 mrst
->adap
.name
, mrst
);
1049 dev_err(&dev
->dev
, "Failed to request IRQ for I2C controller: "
1050 "%s", mrst
->adap
.name
);
1054 /* Adapter registration */
1055 err
= i2c_add_numbered_adapter(&mrst
->adap
);
1057 dev_err(&dev
->dev
, "Adapter %s registration failed\n",
1062 dev_dbg(&dev
->dev
, "%s I2C bus %d driver bind success.\n",
1063 (mrst
->platform
== MOORESTOWN
) ? "Moorestown" : "Medfield",
1066 pm_runtime_enable(&dev
->dev
);
1070 free_irq(dev
->irq
, mrst
);
1072 pci_set_drvdata(dev
, NULL
);
1077 pci_release_region(dev
, 0);
1082 static void __devexit
intel_mid_i2c_remove(struct pci_dev
*dev
)
1084 struct intel_mid_i2c_private
*mrst
= pci_get_drvdata(dev
);
1085 intel_mid_i2c_disable(&mrst
->adap
);
1086 if (i2c_del_adapter(&mrst
->adap
))
1087 dev_err(&dev
->dev
, "Failed to delete i2c adapter");
1089 free_irq(dev
->irq
, mrst
);
1090 pci_set_drvdata(dev
, NULL
);
1091 iounmap(mrst
->base
);
1093 pci_release_region(dev
, 0);
1096 static struct pci_device_id intel_mid_i2c_ids
[] = {
1098 { PCI_VDEVICE(INTEL
, 0x0802), 0 },
1099 { PCI_VDEVICE(INTEL
, 0x0803), 1 },
1100 { PCI_VDEVICE(INTEL
, 0x0804), 2 },
1102 { PCI_VDEVICE(INTEL
, 0x0817), 3,},
1103 { PCI_VDEVICE(INTEL
, 0x0818), 4 },
1104 { PCI_VDEVICE(INTEL
, 0x0819), 5 },
1105 { PCI_VDEVICE(INTEL
, 0x082C), 0 },
1106 { PCI_VDEVICE(INTEL
, 0x082D), 1 },
1107 { PCI_VDEVICE(INTEL
, 0x082E), 2 },
1110 MODULE_DEVICE_TABLE(pci
, intel_mid_i2c_ids
);
1112 static struct pci_driver intel_mid_i2c_driver
= {
1113 .name
= DRIVER_NAME
,
1114 .id_table
= intel_mid_i2c_ids
,
1115 .probe
= intel_mid_i2c_probe
,
1116 .remove
= __devexit_p(intel_mid_i2c_remove
),
1119 static int __init
intel_mid_i2c_init(void)
1121 return pci_register_driver(&intel_mid_i2c_driver
);
1124 static void __exit
intel_mid_i2c_exit(void)
1126 pci_unregister_driver(&intel_mid_i2c_driver
);
1129 module_init(intel_mid_i2c_init
);
1130 module_exit(intel_mid_i2c_exit
);
1132 MODULE_AUTHOR("Ba Zheng <zheng.ba@intel.com>");
1133 MODULE_DESCRIPTION("I2C driver for Moorestown Platform");
1134 MODULE_LICENSE("GPL");
1135 MODULE_VERSION(VERSION
);