1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * I2C bus driver for the Cadence I2C controller.
5 * Copyright (C) 2009 - 2014 Xilinx, Inc.
9 #include <linux/delay.h>
10 #include <linux/i2c.h>
11 #include <linux/interrupt.h>
13 #include <linux/iopoll.h>
14 #include <linux/module.h>
15 #include <linux/platform_device.h>
17 #include <linux/pm_runtime.h>
18 #include <linux/pinctrl/consumer.h>
19 #include <linux/reset.h>
21 /* Register offsets for the I2C device. */
22 #define CDNS_I2C_CR_OFFSET 0x00 /* Control Register, RW */
23 #define CDNS_I2C_SR_OFFSET 0x04 /* Status Register, RO */
24 #define CDNS_I2C_ADDR_OFFSET 0x08 /* I2C Address Register, RW */
25 #define CDNS_I2C_DATA_OFFSET 0x0C /* I2C Data Register, RW */
26 #define CDNS_I2C_ISR_OFFSET 0x10 /* IRQ Status Register, RW */
27 #define CDNS_I2C_XFER_SIZE_OFFSET 0x14 /* Transfer Size Register, RW */
28 #define CDNS_I2C_TIME_OUT_OFFSET 0x1C /* Time Out Register, RW */
29 #define CDNS_I2C_IMR_OFFSET 0x20 /* IRQ Mask Register, RO */
30 #define CDNS_I2C_IER_OFFSET 0x24 /* IRQ Enable Register, WO */
31 #define CDNS_I2C_IDR_OFFSET 0x28 /* IRQ Disable Register, WO */
33 /* Control Register Bit mask definitions */
34 #define CDNS_I2C_CR_HOLD BIT(4) /* Hold Bus bit */
35 #define CDNS_I2C_CR_ACK_EN BIT(3)
36 #define CDNS_I2C_CR_NEA BIT(2)
37 #define CDNS_I2C_CR_MS BIT(1)
38 /* Read or Write Master transfer 0 = Transmitter, 1 = Receiver */
39 #define CDNS_I2C_CR_RW BIT(0)
40 /* 1 = Auto init FIFO to zeroes */
41 #define CDNS_I2C_CR_CLR_FIFO BIT(6)
42 #define CDNS_I2C_CR_DIVA_SHIFT 14
43 #define CDNS_I2C_CR_DIVA_MASK (3 << CDNS_I2C_CR_DIVA_SHIFT)
44 #define CDNS_I2C_CR_DIVB_SHIFT 8
45 #define CDNS_I2C_CR_DIVB_MASK (0x3f << CDNS_I2C_CR_DIVB_SHIFT)
47 #define CDNS_I2C_CR_MASTER_EN_MASK (CDNS_I2C_CR_NEA | \
48 CDNS_I2C_CR_ACK_EN | \
51 #define CDNS_I2C_CR_SLAVE_EN_MASK ~CDNS_I2C_CR_MASTER_EN_MASK
53 /* Status Register Bit mask definitions */
54 #define CDNS_I2C_SR_BA BIT(8)
55 #define CDNS_I2C_SR_TXDV BIT(6)
56 #define CDNS_I2C_SR_RXDV BIT(5)
57 #define CDNS_I2C_SR_RXRW BIT(3)
60 * I2C Address Register Bit mask definitions
61 * Normal addressing mode uses [6:0] bits. Extended addressing mode uses [9:0]
62 * bits. A write access to this register always initiates a transfer if the I2C
65 #define CDNS_I2C_ADDR_MASK 0x000003FF /* I2C Address Mask */
68 * I2C Interrupt Registers Bit mask definitions
69 * All the four interrupt registers (Status/Mask/Enable/Disable) have the same
72 #define CDNS_I2C_IXR_ARB_LOST BIT(9)
73 #define CDNS_I2C_IXR_RX_UNF BIT(7)
74 #define CDNS_I2C_IXR_TX_OVF BIT(6)
75 #define CDNS_I2C_IXR_RX_OVF BIT(5)
76 #define CDNS_I2C_IXR_SLV_RDY BIT(4)
77 #define CDNS_I2C_IXR_TO BIT(3)
78 #define CDNS_I2C_IXR_NACK BIT(2)
79 #define CDNS_I2C_IXR_DATA BIT(1)
80 #define CDNS_I2C_IXR_COMP BIT(0)
82 #define CDNS_I2C_IXR_ALL_INTR_MASK (CDNS_I2C_IXR_ARB_LOST | \
83 CDNS_I2C_IXR_RX_UNF | \
84 CDNS_I2C_IXR_TX_OVF | \
85 CDNS_I2C_IXR_RX_OVF | \
86 CDNS_I2C_IXR_SLV_RDY | \
92 #define CDNS_I2C_IXR_ERR_INTR_MASK (CDNS_I2C_IXR_ARB_LOST | \
93 CDNS_I2C_IXR_RX_UNF | \
94 CDNS_I2C_IXR_TX_OVF | \
95 CDNS_I2C_IXR_RX_OVF | \
98 #define CDNS_I2C_ENABLED_INTR_MASK (CDNS_I2C_IXR_ARB_LOST | \
99 CDNS_I2C_IXR_RX_UNF | \
100 CDNS_I2C_IXR_TX_OVF | \
101 CDNS_I2C_IXR_RX_OVF | \
102 CDNS_I2C_IXR_NACK | \
103 CDNS_I2C_IXR_DATA | \
106 #define CDNS_I2C_IXR_SLAVE_INTR_MASK (CDNS_I2C_IXR_RX_UNF | \
107 CDNS_I2C_IXR_TX_OVF | \
108 CDNS_I2C_IXR_RX_OVF | \
110 CDNS_I2C_IXR_NACK | \
111 CDNS_I2C_IXR_DATA | \
114 #define CDNS_I2C_TIMEOUT msecs_to_jiffies(1000)
115 /* timeout for pm runtime autosuspend */
116 #define CNDS_I2C_PM_TIMEOUT 1000 /* ms */
118 #define CDNS_I2C_FIFO_DEPTH_DEFAULT 16
119 #define CDNS_I2C_MAX_TRANSFER_SIZE 255
120 /* Transfer size in multiples of data interrupt depth */
121 #define CDNS_I2C_TRANSFER_SIZE(max) ((max) - 3)
123 #define DRIVER_NAME "cdns-i2c"
125 #define CDNS_I2C_DIVA_MAX 4
126 #define CDNS_I2C_DIVB_MAX 64
128 #define CDNS_I2C_TIMEOUT_MAX 0xFF
130 #define CDNS_I2C_BROKEN_HOLD_BIT BIT(0)
131 #define CDNS_I2C_POLL_US 100000
132 #define CDNS_I2C_TIMEOUT_US 500000
134 #define cdns_i2c_readreg(offset) readl_relaxed(id->membase + offset)
135 #define cdns_i2c_writereg(val, offset) writel_relaxed(val, id->membase + offset)
137 #if IS_ENABLED(CONFIG_I2C_SLAVE)
139 * enum cdns_i2c_mode - I2C Controller current operating mode
141 * @CDNS_I2C_MODE_SLAVE: I2C controller operating in slave mode
142 * @CDNS_I2C_MODE_MASTER: I2C Controller operating in master mode
146 CDNS_I2C_MODE_MASTER,
150 * enum cdns_i2c_slave_state - Slave state when I2C is operating in slave mode
152 * @CDNS_I2C_SLAVE_STATE_IDLE: I2C slave idle
153 * @CDNS_I2C_SLAVE_STATE_SEND: I2C slave sending data to master
154 * @CDNS_I2C_SLAVE_STATE_RECV: I2C slave receiving data from master
156 enum cdns_i2c_slave_state {
157 CDNS_I2C_SLAVE_STATE_IDLE,
158 CDNS_I2C_SLAVE_STATE_SEND,
159 CDNS_I2C_SLAVE_STATE_RECV,
164 * struct cdns_i2c - I2C device private data structure
166 * @dev: Pointer to device structure
167 * @membase: Base address of the I2C device
168 * @adap: I2C adapter instance
169 * @p_msg: Message pointer
170 * @err_status: Error status in Interrupt Status Register
171 * @xfer_done: Transfer complete status
172 * @p_send_buf: Pointer to transmit buffer
173 * @p_recv_buf: Pointer to receive buffer
174 * @send_count: Number of bytes still expected to send
175 * @recv_count: Number of bytes still expected to receive
176 * @curr_recv_count: Number of bytes to be received in current transfer
177 * @input_clk: Input clock to I2C controller
178 * @i2c_clk: Maximum I2C clock speed
179 * @bus_hold_flag: Flag used in repeated start for clearing HOLD bit
180 * @clk: Pointer to struct clk
181 * @clk_rate_change_nb: Notifier block for clock rate changes
182 * @reset: Reset control for the device
183 * @quirks: flag for broken hold bit usage in r1p10
184 * @ctrl_reg: Cached value of the control register.
185 * @rinfo: I2C GPIO recovery information
186 * @ctrl_reg_diva_divb: value of fields DIV_A and DIV_B from CR register
187 * @slave: Registered slave instance.
188 * @dev_mode: I2C operating role(master/slave).
189 * @slave_state: I2C Slave state(idle/read/write).
190 * @fifo_depth: The depth of the transfer FIFO
191 * @transfer_size: The maximum number of bytes in one transfer
195 void __iomem *membase;
196 struct i2c_adapter adap;
197 struct i2c_msg *p_msg;
199 struct completion xfer_done;
200 unsigned char *p_send_buf;
201 unsigned char *p_recv_buf;
202 unsigned int send_count;
203 unsigned int recv_count;
204 unsigned int curr_recv_count;
205 unsigned long input_clk;
206 unsigned int i2c_clk;
207 unsigned int bus_hold_flag;
209 struct notifier_block clk_rate_change_nb;
210 struct reset_control *reset;
213 struct i2c_bus_recovery_info rinfo;
214 #if IS_ENABLED(CONFIG_I2C_SLAVE)
215 u16 ctrl_reg_diva_divb;
216 struct i2c_client *slave;
217 enum cdns_i2c_mode dev_mode;
218 enum cdns_i2c_slave_state slave_state;
221 unsigned int transfer_size;
224 struct cdns_platform_data {
228 #define to_cdns_i2c(_nb) container_of(_nb, struct cdns_i2c, \
232 * cdns_i2c_clear_bus_hold - Clear bus hold bit
233 * @id: Pointer to driver data struct
235 * Helper to clear the controller's bus hold bit.
237 static void cdns_i2c_clear_bus_hold(struct cdns_i2c *id)
239 u32 reg = cdns_i2c_readreg(CDNS_I2C_CR_OFFSET);
240 if (reg & CDNS_I2C_CR_HOLD)
241 cdns_i2c_writereg(reg & ~CDNS_I2C_CR_HOLD, CDNS_I2C_CR_OFFSET);
244 static inline bool cdns_is_holdquirk(struct cdns_i2c *id, bool hold_wrkaround)
246 return (hold_wrkaround &&
247 (id->curr_recv_count == id->fifo_depth + 1));
250 #if IS_ENABLED(CONFIG_I2C_SLAVE)
251 static void cdns_i2c_set_mode(enum cdns_i2c_mode mode, struct cdns_i2c *id)
253 /* Disable all interrupts */
254 cdns_i2c_writereg(CDNS_I2C_IXR_ALL_INTR_MASK, CDNS_I2C_IDR_OFFSET);
256 /* Clear FIFO and transfer size */
257 cdns_i2c_writereg(CDNS_I2C_CR_CLR_FIFO, CDNS_I2C_CR_OFFSET);
259 /* Update device mode and state */
261 id->slave_state = CDNS_I2C_SLAVE_STATE_IDLE;
264 case CDNS_I2C_MODE_MASTER:
265 /* Enable i2c master */
266 cdns_i2c_writereg(id->ctrl_reg_diva_divb |
267 CDNS_I2C_CR_MASTER_EN_MASK,
270 * This delay is needed to give the IP some time to switch to
271 * the master mode. With lower values(like 110 us) i2cdetect
272 * will not detect any slave and without this delay, the IP will
273 * trigger a timeout interrupt.
275 usleep_range(115, 125);
277 case CDNS_I2C_MODE_SLAVE:
278 /* Enable i2c slave */
279 cdns_i2c_writereg(id->ctrl_reg_diva_divb &
280 CDNS_I2C_CR_SLAVE_EN_MASK,
283 /* Setting slave address */
284 cdns_i2c_writereg(id->slave->addr & CDNS_I2C_ADDR_MASK,
285 CDNS_I2C_ADDR_OFFSET);
287 /* Enable slave send/receive interrupts */
288 cdns_i2c_writereg(CDNS_I2C_IXR_SLAVE_INTR_MASK,
289 CDNS_I2C_IER_OFFSET);
294 static void cdns_i2c_slave_rcv_data(struct cdns_i2c *id)
299 /* Prepare backend for data reception */
300 if (id->slave_state == CDNS_I2C_SLAVE_STATE_IDLE) {
301 id->slave_state = CDNS_I2C_SLAVE_STATE_RECV;
302 i2c_slave_event(id->slave, I2C_SLAVE_WRITE_REQUESTED, NULL);
305 /* Fetch number of bytes to receive */
306 bytes = cdns_i2c_readreg(CDNS_I2C_XFER_SIZE_OFFSET);
308 /* Read data and send to backend */
310 data = cdns_i2c_readreg(CDNS_I2C_DATA_OFFSET);
311 i2c_slave_event(id->slave, I2C_SLAVE_WRITE_RECEIVED, &data);
315 static void cdns_i2c_slave_send_data(struct cdns_i2c *id)
319 /* Prepare backend for data transmission */
320 if (id->slave_state == CDNS_I2C_SLAVE_STATE_IDLE) {
321 id->slave_state = CDNS_I2C_SLAVE_STATE_SEND;
322 i2c_slave_event(id->slave, I2C_SLAVE_READ_REQUESTED, &data);
324 i2c_slave_event(id->slave, I2C_SLAVE_READ_PROCESSED, &data);
327 /* Send data over bus */
328 cdns_i2c_writereg(data, CDNS_I2C_DATA_OFFSET);
332 * cdns_i2c_slave_isr - Interrupt handler for the I2C device in slave role
333 * @ptr: Pointer to I2C device private data
335 * This function handles the data interrupt and transfer complete interrupt of
336 * the I2C device in slave role.
338 * Return: IRQ_HANDLED always
340 static irqreturn_t cdns_i2c_slave_isr(void *ptr)
342 struct cdns_i2c *id = ptr;
343 unsigned int isr_status, i2c_status;
345 /* Fetch the interrupt status */
346 isr_status = cdns_i2c_readreg(CDNS_I2C_ISR_OFFSET);
347 cdns_i2c_writereg(isr_status, CDNS_I2C_ISR_OFFSET);
349 /* Ignore masked interrupts */
350 isr_status &= ~cdns_i2c_readreg(CDNS_I2C_IMR_OFFSET);
352 /* Fetch transfer mode (send/receive) */
353 i2c_status = cdns_i2c_readreg(CDNS_I2C_SR_OFFSET);
355 /* Handle data send/receive */
356 if (i2c_status & CDNS_I2C_SR_RXRW) {
357 /* Send data to master */
358 if (isr_status & CDNS_I2C_IXR_DATA)
359 cdns_i2c_slave_send_data(id);
361 if (isr_status & CDNS_I2C_IXR_COMP) {
362 id->slave_state = CDNS_I2C_SLAVE_STATE_IDLE;
363 i2c_slave_event(id->slave, I2C_SLAVE_STOP, NULL);
366 /* Receive data from master */
367 if (isr_status & CDNS_I2C_IXR_DATA)
368 cdns_i2c_slave_rcv_data(id);
370 if (isr_status & CDNS_I2C_IXR_COMP) {
371 cdns_i2c_slave_rcv_data(id);
372 id->slave_state = CDNS_I2C_SLAVE_STATE_IDLE;
373 i2c_slave_event(id->slave, I2C_SLAVE_STOP, NULL);
377 /* Master indicated xfer stop or fifo underflow/overflow */
378 if (isr_status & (CDNS_I2C_IXR_NACK | CDNS_I2C_IXR_RX_OVF |
379 CDNS_I2C_IXR_RX_UNF | CDNS_I2C_IXR_TX_OVF)) {
380 id->slave_state = CDNS_I2C_SLAVE_STATE_IDLE;
381 i2c_slave_event(id->slave, I2C_SLAVE_STOP, NULL);
382 cdns_i2c_writereg(CDNS_I2C_CR_CLR_FIFO, CDNS_I2C_CR_OFFSET);
390 * cdns_i2c_master_isr - Interrupt handler for the I2C device in master role
391 * @ptr: Pointer to I2C device private data
393 * This function handles the data interrupt, transfer complete interrupt and
394 * the error interrupts of the I2C device in master role.
396 * Return: IRQ_HANDLED always
398 static irqreturn_t cdns_i2c_master_isr(void *ptr)
400 unsigned int isr_status, avail_bytes;
401 unsigned int bytes_to_send;
403 struct cdns_i2c *id = ptr;
404 /* Signal completion only after everything is updated */
406 irqreturn_t status = IRQ_NONE;
408 isr_status = cdns_i2c_readreg(CDNS_I2C_ISR_OFFSET);
409 cdns_i2c_writereg(isr_status, CDNS_I2C_ISR_OFFSET);
412 /* Handling nack and arbitration lost interrupt */
413 if (isr_status & (CDNS_I2C_IXR_NACK | CDNS_I2C_IXR_ARB_LOST)) {
415 status = IRQ_HANDLED;
419 * Check if transfer size register needs to be updated again for a
420 * large data receive operation.
422 updatetx = id->recv_count > id->curr_recv_count;
424 /* When receiving, handle data interrupt and completion interrupt */
425 if (id->p_recv_buf &&
426 ((isr_status & CDNS_I2C_IXR_COMP) ||
427 (isr_status & CDNS_I2C_IXR_DATA))) {
428 /* Read data if receive data valid is set */
429 while (cdns_i2c_readreg(CDNS_I2C_SR_OFFSET) &
431 if (id->recv_count > 0) {
432 *(id->p_recv_buf)++ =
433 cdns_i2c_readreg(CDNS_I2C_DATA_OFFSET);
435 id->curr_recv_count--;
438 * Clear hold bit that was set for FIFO control
439 * if RX data left is less than or equal to
440 * FIFO DEPTH unless repeated start is selected
442 if (id->recv_count <= id->fifo_depth &&
444 cdns_i2c_clear_bus_hold(id);
447 dev_err(id->adap.dev.parent,
448 "xfer_size reg rollover. xfer aborted!\n");
449 id->err_status |= CDNS_I2C_IXR_TO;
453 if (cdns_is_holdquirk(id, updatetx))
458 * The controller sends NACK to the slave when transfer size
459 * register reaches zero without considering the HOLD bit.
460 * This workaround is implemented for large data transfers to
461 * maintain transfer size non-zero while performing a large
464 if (cdns_is_holdquirk(id, updatetx)) {
465 /* wait while fifo is full */
466 while (cdns_i2c_readreg(CDNS_I2C_XFER_SIZE_OFFSET) !=
467 (id->curr_recv_count - id->fifo_depth))
471 * Check number of bytes to be received against maximum
472 * transfer size and update register accordingly.
474 if (((int)(id->recv_count) - id->fifo_depth) >
476 cdns_i2c_writereg(id->transfer_size,
477 CDNS_I2C_XFER_SIZE_OFFSET);
478 id->curr_recv_count = id->transfer_size +
481 cdns_i2c_writereg(id->recv_count -
483 CDNS_I2C_XFER_SIZE_OFFSET);
484 id->curr_recv_count = id->recv_count;
488 /* Clear hold (if not repeated start) and signal completion */
489 if ((isr_status & CDNS_I2C_IXR_COMP) && !id->recv_count) {
490 if (!id->bus_hold_flag)
491 cdns_i2c_clear_bus_hold(id);
495 status = IRQ_HANDLED;
498 /* When sending, handle transfer complete interrupt */
499 if ((isr_status & CDNS_I2C_IXR_COMP) && !id->p_recv_buf) {
501 * If there is more data to be sent, calculate the
502 * space available in FIFO and fill with that many bytes.
504 if (id->send_count) {
505 avail_bytes = id->fifo_depth -
506 cdns_i2c_readreg(CDNS_I2C_XFER_SIZE_OFFSET);
507 if (id->send_count > avail_bytes)
508 bytes_to_send = avail_bytes;
510 bytes_to_send = id->send_count;
512 while (bytes_to_send--) {
514 (*(id->p_send_buf)++),
515 CDNS_I2C_DATA_OFFSET);
520 * Signal the completion of transaction and
521 * clear the hold bus bit if there are no
522 * further messages to be processed.
526 if (!id->send_count && !id->bus_hold_flag)
527 cdns_i2c_clear_bus_hold(id);
529 status = IRQ_HANDLED;
532 /* Update the status for errors */
533 id->err_status |= isr_status & CDNS_I2C_IXR_ERR_INTR_MASK;
535 status = IRQ_HANDLED;
538 complete(&id->xfer_done);
544 * cdns_i2c_isr - Interrupt handler for the I2C device
545 * @irq: irq number for the I2C device
546 * @ptr: void pointer to cdns_i2c structure
548 * This function passes the control to slave/master based on current role of
551 * Return: IRQ_HANDLED always
553 static irqreturn_t cdns_i2c_isr(int irq, void *ptr)
555 #if IS_ENABLED(CONFIG_I2C_SLAVE)
556 struct cdns_i2c *id = ptr;
558 if (id->dev_mode == CDNS_I2C_MODE_SLAVE)
559 return cdns_i2c_slave_isr(ptr);
561 return cdns_i2c_master_isr(ptr);
565 * cdns_i2c_mrecv - Prepare and start a master receive operation
566 * @id: pointer to the i2c device structure
568 static void cdns_i2c_mrecv(struct cdns_i2c *id)
570 unsigned int ctrl_reg;
571 unsigned int isr_status;
573 bool hold_clear = false;
574 bool irq_save = false;
578 id->p_recv_buf = id->p_msg->buf;
579 id->recv_count = id->p_msg->len;
581 /* Put the controller in master receive mode and clear the FIFO */
582 ctrl_reg = cdns_i2c_readreg(CDNS_I2C_CR_OFFSET);
583 ctrl_reg |= CDNS_I2C_CR_RW | CDNS_I2C_CR_CLR_FIFO;
586 * Receive up to I2C_SMBUS_BLOCK_MAX data bytes, plus one message length
587 * byte, plus one checksum byte if PEC is enabled. p_msg->len will be 2 if
588 * PEC is enabled, otherwise 1.
590 if (id->p_msg->flags & I2C_M_RECV_LEN)
591 id->recv_count = I2C_SMBUS_BLOCK_MAX + id->p_msg->len;
593 id->curr_recv_count = id->recv_count;
596 * Check for the message size against FIFO depth and set the
597 * 'hold bus' bit if it is greater than FIFO depth.
599 if (id->recv_count > id->fifo_depth)
600 ctrl_reg |= CDNS_I2C_CR_HOLD;
602 cdns_i2c_writereg(ctrl_reg, CDNS_I2C_CR_OFFSET);
604 /* Clear the interrupts in interrupt status register */
605 isr_status = cdns_i2c_readreg(CDNS_I2C_ISR_OFFSET);
606 cdns_i2c_writereg(isr_status, CDNS_I2C_ISR_OFFSET);
609 * The no. of bytes to receive is checked against the limit of
610 * max transfer size. Set transfer size register with no of bytes
611 * receive if it is less than transfer size and transfer size if
612 * it is more. Enable the interrupts.
614 if (id->recv_count > id->transfer_size) {
615 cdns_i2c_writereg(id->transfer_size,
616 CDNS_I2C_XFER_SIZE_OFFSET);
617 id->curr_recv_count = id->transfer_size;
619 cdns_i2c_writereg(id->recv_count, CDNS_I2C_XFER_SIZE_OFFSET);
622 /* Determine hold_clear based on number of bytes to receive and hold flag */
623 if (!id->bus_hold_flag && id->recv_count <= id->fifo_depth) {
624 if (ctrl_reg & CDNS_I2C_CR_HOLD) {
626 if (id->quirks & CDNS_I2C_BROKEN_HOLD_BIT)
631 addr = id->p_msg->addr;
632 addr &= CDNS_I2C_ADDR_MASK;
635 ctrl_reg &= ~CDNS_I2C_CR_HOLD;
636 ctrl_reg &= ~CDNS_I2C_CR_CLR_FIFO;
638 * In case of Xilinx Zynq SOC, clear the HOLD bit before transfer size
639 * register reaches '0'. This is an IP bug which causes transfer size
640 * register overflow to 0xFF. To satisfy this timing requirement,
641 * disable the interrupts on current processor core between register
642 * writes to slave address register and control register.
645 local_irq_save(flags);
647 cdns_i2c_writereg(addr, CDNS_I2C_ADDR_OFFSET);
648 cdns_i2c_writereg(ctrl_reg, CDNS_I2C_CR_OFFSET);
649 /* Read it back to avoid bufferring and make sure write happens */
650 cdns_i2c_readreg(CDNS_I2C_CR_OFFSET);
653 local_irq_restore(flags);
655 cdns_i2c_writereg(addr, CDNS_I2C_ADDR_OFFSET);
658 cdns_i2c_writereg(CDNS_I2C_ENABLED_INTR_MASK, CDNS_I2C_IER_OFFSET);
662 * cdns_i2c_msend - Prepare and start a master send operation
663 * @id: pointer to the i2c device
665 static void cdns_i2c_msend(struct cdns_i2c *id)
667 unsigned int avail_bytes;
668 unsigned int bytes_to_send;
669 unsigned int ctrl_reg;
670 unsigned int isr_status;
672 id->p_recv_buf = NULL;
673 id->p_send_buf = id->p_msg->buf;
674 id->send_count = id->p_msg->len;
676 /* Set the controller in Master transmit mode and clear the FIFO. */
677 ctrl_reg = cdns_i2c_readreg(CDNS_I2C_CR_OFFSET);
678 ctrl_reg &= ~CDNS_I2C_CR_RW;
679 ctrl_reg |= CDNS_I2C_CR_CLR_FIFO;
682 * Check for the message size against FIFO depth and set the
683 * 'hold bus' bit if it is greater than FIFO depth.
685 if (id->send_count > id->fifo_depth)
686 ctrl_reg |= CDNS_I2C_CR_HOLD;
687 cdns_i2c_writereg(ctrl_reg, CDNS_I2C_CR_OFFSET);
689 /* Clear the interrupts in interrupt status register. */
690 isr_status = cdns_i2c_readreg(CDNS_I2C_ISR_OFFSET);
691 cdns_i2c_writereg(isr_status, CDNS_I2C_ISR_OFFSET);
694 * Calculate the space available in FIFO. Check the message length
695 * against the space available, and fill the FIFO accordingly.
696 * Enable the interrupts.
698 avail_bytes = id->fifo_depth -
699 cdns_i2c_readreg(CDNS_I2C_XFER_SIZE_OFFSET);
701 if (id->send_count > avail_bytes)
702 bytes_to_send = avail_bytes;
704 bytes_to_send = id->send_count;
706 while (bytes_to_send--) {
707 cdns_i2c_writereg((*(id->p_send_buf)++), CDNS_I2C_DATA_OFFSET);
712 * Clear the bus hold flag if there is no more data
713 * and if it is the last message.
715 if (!id->bus_hold_flag && !id->send_count)
716 cdns_i2c_clear_bus_hold(id);
717 /* Set the slave address in address register - triggers operation. */
718 cdns_i2c_writereg(id->p_msg->addr & CDNS_I2C_ADDR_MASK,
719 CDNS_I2C_ADDR_OFFSET);
721 cdns_i2c_writereg(CDNS_I2C_ENABLED_INTR_MASK, CDNS_I2C_IER_OFFSET);
725 * cdns_i2c_master_reset - Reset the interface
726 * @adap: pointer to the i2c adapter driver instance
728 * This function cleanup the fifos, clear the hold bit and status
729 * and disable the interrupts.
731 static void cdns_i2c_master_reset(struct i2c_adapter *adap)
733 struct cdns_i2c *id = adap->algo_data;
736 /* Disable the interrupts */
737 cdns_i2c_writereg(CDNS_I2C_IXR_ALL_INTR_MASK, CDNS_I2C_IDR_OFFSET);
738 /* Clear the hold bit and fifos */
739 regval = cdns_i2c_readreg(CDNS_I2C_CR_OFFSET);
740 regval &= ~CDNS_I2C_CR_HOLD;
741 regval |= CDNS_I2C_CR_CLR_FIFO;
742 cdns_i2c_writereg(regval, CDNS_I2C_CR_OFFSET);
743 /* Update the transfercount register to zero */
744 cdns_i2c_writereg(0, CDNS_I2C_XFER_SIZE_OFFSET);
745 /* Clear the interrupt status register */
746 regval = cdns_i2c_readreg(CDNS_I2C_ISR_OFFSET);
747 cdns_i2c_writereg(regval, CDNS_I2C_ISR_OFFSET);
748 /* Clear the status register */
749 regval = cdns_i2c_readreg(CDNS_I2C_SR_OFFSET);
750 cdns_i2c_writereg(regval, CDNS_I2C_SR_OFFSET);
753 static int cdns_i2c_process_msg(struct cdns_i2c *id, struct i2c_msg *msg,
754 struct i2c_adapter *adap)
756 unsigned long time_left, msg_timeout;
761 reinit_completion(&id->xfer_done);
763 /* Check for the TEN Bit mode on each msg */
764 reg = cdns_i2c_readreg(CDNS_I2C_CR_OFFSET);
765 if (msg->flags & I2C_M_TEN) {
766 if (reg & CDNS_I2C_CR_NEA)
767 cdns_i2c_writereg(reg & ~CDNS_I2C_CR_NEA,
770 if (!(reg & CDNS_I2C_CR_NEA))
771 cdns_i2c_writereg(reg | CDNS_I2C_CR_NEA,
775 /* Check for the R/W flag on each msg */
776 if (msg->flags & I2C_M_RD)
781 /* Minimal time to execute this message */
782 msg_timeout = msecs_to_jiffies((1000 * msg->len * BITS_PER_BYTE) / id->i2c_clk);
783 /* Plus some wiggle room */
784 msg_timeout += msecs_to_jiffies(500);
786 if (msg_timeout < adap->timeout)
787 msg_timeout = adap->timeout;
789 /* Wait for the signal of completion */
790 time_left = wait_for_completion_timeout(&id->xfer_done, msg_timeout);
791 if (time_left == 0) {
792 cdns_i2c_master_reset(adap);
796 cdns_i2c_writereg(CDNS_I2C_IXR_ALL_INTR_MASK,
797 CDNS_I2C_IDR_OFFSET);
799 /* If it is bus arbitration error, try again */
800 if (id->err_status & CDNS_I2C_IXR_ARB_LOST)
803 if (msg->flags & I2C_M_RECV_LEN)
804 msg->len += min_t(unsigned int, msg->buf[0], I2C_SMBUS_BLOCK_MAX);
810 * cdns_i2c_master_xfer - The main i2c transfer function
811 * @adap: pointer to the i2c adapter driver instance
812 * @msgs: pointer to the i2c message structure
813 * @num: the number of messages to transfer
815 * Initiates the send/recv activity based on the transfer message received.
817 * Return: number of msgs processed on success, negative error otherwise
819 static int cdns_i2c_master_xfer(struct i2c_adapter *adap, struct i2c_msg *msgs,
824 struct cdns_i2c *id = adap->algo_data;
826 #if IS_ENABLED(CONFIG_I2C_SLAVE)
827 bool change_role = false;
830 ret = pm_runtime_resume_and_get(id->dev);
834 #if IS_ENABLED(CONFIG_I2C_SLAVE)
835 /* Check i2c operating mode and switch if possible */
836 if (id->dev_mode == CDNS_I2C_MODE_SLAVE) {
837 if (id->slave_state != CDNS_I2C_SLAVE_STATE_IDLE) {
842 /* Set mode to master */
843 cdns_i2c_set_mode(CDNS_I2C_MODE_MASTER, id);
845 /* Mark flag to change role once xfer is completed */
850 /* Check if the bus is free */
852 ret = readl_relaxed_poll_timeout(id->membase + CDNS_I2C_SR_OFFSET,
854 !(reg & CDNS_I2C_SR_BA),
855 CDNS_I2C_POLL_US, CDNS_I2C_TIMEOUT_US);
858 if (id->adap.bus_recovery_info)
859 i2c_recover_bus(adap);
863 hold_quirk = !!(id->quirks & CDNS_I2C_BROKEN_HOLD_BIT);
865 * Set the flag to one when multiple messages are to be
866 * processed with a repeated start.
870 * This controller does not give completion interrupt after a
871 * master receive message if HOLD bit is set (repeated start),
872 * resulting in SW timeout. Hence, if a receive message is
873 * followed by any other message, an error is returned
874 * indicating that this sequence is not supported.
876 for (count = 0; (count < num - 1 && hold_quirk); count++) {
877 if (msgs[count].flags & I2C_M_RD) {
878 dev_warn(adap->dev.parent,
879 "Can't do repeated start after a receive message\n");
884 id->bus_hold_flag = 1;
885 reg = cdns_i2c_readreg(CDNS_I2C_CR_OFFSET);
886 reg |= CDNS_I2C_CR_HOLD;
887 cdns_i2c_writereg(reg, CDNS_I2C_CR_OFFSET);
889 id->bus_hold_flag = 0;
892 /* Process the msg one by one */
893 for (count = 0; count < num; count++, msgs++) {
894 if (count == (num - 1))
895 id->bus_hold_flag = 0;
897 ret = cdns_i2c_process_msg(id, msgs, adap);
901 /* Report the other error interrupts to application */
902 if (id->err_status) {
903 cdns_i2c_master_reset(adap);
905 if (id->err_status & CDNS_I2C_IXR_NACK) {
918 #if IS_ENABLED(CONFIG_I2C_SLAVE)
919 /* Switch i2c mode to slave */
921 cdns_i2c_set_mode(CDNS_I2C_MODE_SLAVE, id);
924 pm_runtime_mark_last_busy(id->dev);
925 pm_runtime_put_autosuspend(id->dev);
930 * cdns_i2c_func - Returns the supported features of the I2C driver
931 * @adap: pointer to the i2c adapter structure
933 * Return: 32 bit value, each bit corresponding to a feature
935 static u32 cdns_i2c_func(struct i2c_adapter *adap)
937 u32 func = I2C_FUNC_I2C | I2C_FUNC_10BIT_ADDR |
938 (I2C_FUNC_SMBUS_EMUL & ~I2C_FUNC_SMBUS_QUICK) |
939 I2C_FUNC_SMBUS_BLOCK_DATA;
941 #if IS_ENABLED(CONFIG_I2C_SLAVE)
942 func |= I2C_FUNC_SLAVE;
948 #if IS_ENABLED(CONFIG_I2C_SLAVE)
949 static int cdns_reg_slave(struct i2c_client *slave)
952 struct cdns_i2c *id = container_of(slave->adapter, struct cdns_i2c,
958 if (slave->flags & I2C_CLIENT_TEN)
959 return -EAFNOSUPPORT;
961 ret = pm_runtime_resume_and_get(id->dev);
965 /* Store slave information */
968 /* Enable I2C slave */
969 cdns_i2c_set_mode(CDNS_I2C_MODE_SLAVE, id);
974 static int cdns_unreg_slave(struct i2c_client *slave)
976 struct cdns_i2c *id = container_of(slave->adapter, struct cdns_i2c,
979 pm_runtime_put(id->dev);
981 /* Remove slave information */
984 /* Enable I2C master */
985 cdns_i2c_set_mode(CDNS_I2C_MODE_MASTER, id);
991 static const struct i2c_algorithm cdns_i2c_algo = {
992 .master_xfer = cdns_i2c_master_xfer,
993 .functionality = cdns_i2c_func,
994 #if IS_ENABLED(CONFIG_I2C_SLAVE)
995 .reg_slave = cdns_reg_slave,
996 .unreg_slave = cdns_unreg_slave,
1001 * cdns_i2c_calc_divs - Calculate clock dividers
1002 * @f: I2C clock frequency
1003 * @input_clk: Input clock frequency
1004 * @a: First divider (return value)
1005 * @b: Second divider (return value)
1007 * f is used as input and output variable. As input it is used as target I2C
1008 * frequency. On function exit f holds the actually resulting I2C frequency.
1010 * Return: 0 on success, negative errno otherwise.
1012 static int cdns_i2c_calc_divs(unsigned long *f, unsigned long input_clk,
1013 unsigned int *a, unsigned int *b)
1015 unsigned long fscl = *f, best_fscl = *f, actual_fscl, temp;
1016 unsigned int div_a, div_b, calc_div_a = 0, calc_div_b = 0;
1017 unsigned int last_error, current_error;
1019 /* calculate (divisor_a+1) x (divisor_b+1) */
1020 temp = input_clk / (22 * fscl);
1023 * If the calculated value is negative or 0, the fscl input is out of
1024 * range. Return error.
1026 if (!temp || (temp > (CDNS_I2C_DIVA_MAX * CDNS_I2C_DIVB_MAX)))
1030 for (div_a = 0; div_a < CDNS_I2C_DIVA_MAX; div_a++) {
1031 div_b = DIV_ROUND_UP(input_clk, 22 * fscl * (div_a + 1));
1033 if ((div_b < 1) || (div_b > CDNS_I2C_DIVB_MAX))
1037 actual_fscl = input_clk / (22 * (div_a + 1) * (div_b + 1));
1039 if (actual_fscl > fscl)
1042 current_error = fscl - actual_fscl;
1044 if (last_error > current_error) {
1047 best_fscl = actual_fscl;
1048 last_error = current_error;
1060 * cdns_i2c_setclk - This function sets the serial clock rate for the I2C device
1061 * @clk_in: I2C clock input frequency in Hz
1062 * @id: Pointer to the I2C device structure
1064 * The device must be idle rather than busy transferring data before setting
1065 * these device options.
1066 * The data rate is set by values in the control register.
1067 * The formula for determining the correct register values is
1068 * Fscl = Fpclk/(22 x (divisor_a+1) x (divisor_b+1))
1069 * See the hardware data sheet for a full explanation of setting the serial
1070 * clock rate. The clock can not be faster than the input clock divide by 22.
1071 * The two most common clock rates are 100KHz and 400KHz.
1073 * Return: 0 on success, negative error otherwise
1075 static int cdns_i2c_setclk(unsigned long clk_in, struct cdns_i2c *id)
1077 unsigned int div_a, div_b;
1078 unsigned int ctrl_reg;
1080 unsigned long fscl = id->i2c_clk;
1082 ret = cdns_i2c_calc_divs(&fscl, clk_in, &div_a, &div_b);
1086 ctrl_reg = id->ctrl_reg;
1087 ctrl_reg &= ~(CDNS_I2C_CR_DIVA_MASK | CDNS_I2C_CR_DIVB_MASK);
1088 ctrl_reg |= ((div_a << CDNS_I2C_CR_DIVA_SHIFT) |
1089 (div_b << CDNS_I2C_CR_DIVB_SHIFT));
1090 id->ctrl_reg = ctrl_reg;
1091 cdns_i2c_writereg(ctrl_reg, CDNS_I2C_CR_OFFSET);
1092 #if IS_ENABLED(CONFIG_I2C_SLAVE)
1093 id->ctrl_reg_diva_divb = ctrl_reg & (CDNS_I2C_CR_DIVA_MASK |
1094 CDNS_I2C_CR_DIVB_MASK);
1100 * cdns_i2c_clk_notifier_cb - Clock rate change callback
1101 * @nb: Pointer to notifier block
1102 * @event: Notification reason
1103 * @data: Pointer to notification data object
1105 * This function is called when the cdns_i2c input clock frequency changes.
1106 * The callback checks whether a valid bus frequency can be generated after the
1107 * change. If so, the change is acknowledged, otherwise the change is aborted.
1108 * New dividers are written to the HW in the pre- or post change notification
1109 * depending on the scaling direction.
1111 * Return: NOTIFY_STOP if the rate change should be aborted, NOTIFY_OK
1112 * to acknowledge the change, NOTIFY_DONE if the notification is
1113 * considered irrelevant.
1115 static int cdns_i2c_clk_notifier_cb(struct notifier_block *nb, unsigned long
1118 struct clk_notifier_data *ndata = data;
1119 struct cdns_i2c *id = to_cdns_i2c(nb);
1121 if (pm_runtime_suspended(id->dev))
1125 case PRE_RATE_CHANGE:
1127 unsigned long input_clk = ndata->new_rate;
1128 unsigned long fscl = id->i2c_clk;
1129 unsigned int div_a, div_b;
1132 ret = cdns_i2c_calc_divs(&fscl, input_clk, &div_a, &div_b);
1134 dev_warn(id->adap.dev.parent,
1135 "clock rate change rejected\n");
1140 if (ndata->new_rate > ndata->old_rate)
1141 cdns_i2c_setclk(ndata->new_rate, id);
1145 case POST_RATE_CHANGE:
1146 id->input_clk = ndata->new_rate;
1148 if (ndata->new_rate < ndata->old_rate)
1149 cdns_i2c_setclk(ndata->new_rate, id);
1151 case ABORT_RATE_CHANGE:
1153 if (ndata->new_rate > ndata->old_rate)
1154 cdns_i2c_setclk(ndata->old_rate, id);
1162 * cdns_i2c_runtime_suspend - Runtime suspend method for the driver
1163 * @dev: Address of the platform_device structure
1165 * Put the driver into low power mode.
1169 static int __maybe_unused cdns_i2c_runtime_suspend(struct device *dev)
1171 struct cdns_i2c *xi2c = dev_get_drvdata(dev);
1173 clk_disable(xi2c->clk);
1178 static int __maybe_unused cdns_i2c_suspend(struct device *dev)
1180 struct cdns_i2c *xi2c = dev_get_drvdata(dev);
1182 i2c_mark_adapter_suspended(&xi2c->adap);
1184 if (!pm_runtime_status_suspended(dev))
1185 return cdns_i2c_runtime_suspend(dev);
1191 * cdns_i2c_init - Controller initialisation
1192 * @id: Device private data structure
1194 * Initialise the i2c controller.
1197 static void cdns_i2c_init(struct cdns_i2c *id)
1199 cdns_i2c_writereg(id->ctrl_reg, CDNS_I2C_CR_OFFSET);
1201 * Cadence I2C controller has a bug wherein it generates
1202 * invalid read transaction after HW timeout in master receiver mode.
1203 * HW timeout is not used by this driver and the interrupt is disabled.
1204 * But the feature itself cannot be disabled. Hence maximum value
1205 * is written to this register to reduce the chances of error.
1207 cdns_i2c_writereg(CDNS_I2C_TIMEOUT_MAX, CDNS_I2C_TIME_OUT_OFFSET);
1211 * cdns_i2c_runtime_resume - Runtime resume
1212 * @dev: Address of the platform_device structure
1214 * Runtime resume callback.
1216 * Return: 0 on success and error value on error
1218 static int __maybe_unused cdns_i2c_runtime_resume(struct device *dev)
1220 struct cdns_i2c *xi2c = dev_get_drvdata(dev);
1223 ret = clk_enable(xi2c->clk);
1225 dev_err(dev, "Cannot enable clock.\n");
1228 cdns_i2c_init(xi2c);
1233 static int __maybe_unused cdns_i2c_resume(struct device *dev)
1235 struct cdns_i2c *xi2c = dev_get_drvdata(dev);
1238 err = cdns_i2c_runtime_resume(dev);
1242 if (pm_runtime_status_suspended(dev)) {
1243 err = cdns_i2c_runtime_suspend(dev);
1248 i2c_mark_adapter_resumed(&xi2c->adap);
1253 static const struct dev_pm_ops cdns_i2c_dev_pm_ops = {
1254 SET_NOIRQ_SYSTEM_SLEEP_PM_OPS(cdns_i2c_suspend, cdns_i2c_resume)
1255 SET_RUNTIME_PM_OPS(cdns_i2c_runtime_suspend,
1256 cdns_i2c_runtime_resume, NULL)
1259 static const struct cdns_platform_data r1p10_i2c_def = {
1260 .quirks = CDNS_I2C_BROKEN_HOLD_BIT,
1263 static const struct of_device_id cdns_i2c_of_match[] = {
1264 { .compatible = "cdns,i2c-r1p10", .data = &r1p10_i2c_def },
1265 { .compatible = "cdns,i2c-r1p14",},
1266 { /* end of table */ }
1268 MODULE_DEVICE_TABLE(of, cdns_i2c_of_match);
1271 * cdns_i2c_detect_transfer_size - Detect the maximum transfer size supported
1272 * @id: Device private data structure
1274 * Detect the maximum transfer size that is supported by this instance of the
1275 * Cadence I2C controller.
1277 static void cdns_i2c_detect_transfer_size(struct cdns_i2c *id)
1282 * Writing to the transfer size register is only possible if these two bits
1283 * are set in the control register.
1285 cdns_i2c_writereg(CDNS_I2C_CR_MS | CDNS_I2C_CR_RW, CDNS_I2C_CR_OFFSET);
1288 * The number of writable bits of the transfer size register can be between
1289 * 4 and 8. This is a controlled through a synthesis parameter of the IP
1290 * core and can vary from instance to instance. The unused MSBs always read
1291 * back as 0. Writing 0xff and then reading the value back will report the
1292 * maximum supported transfer size.
1294 cdns_i2c_writereg(CDNS_I2C_MAX_TRANSFER_SIZE, CDNS_I2C_XFER_SIZE_OFFSET);
1295 val = cdns_i2c_readreg(CDNS_I2C_XFER_SIZE_OFFSET);
1296 id->transfer_size = CDNS_I2C_TRANSFER_SIZE(val);
1297 cdns_i2c_writereg(0, CDNS_I2C_XFER_SIZE_OFFSET);
1298 cdns_i2c_writereg(0, CDNS_I2C_CR_OFFSET);
1302 * cdns_i2c_probe - Platform registration call
1303 * @pdev: Handle to the platform device structure
1305 * This function does all the memory allocation and registration for the i2c
1306 * device. User can modify the address mode to 10 bit address mode using the
1307 * ioctl call with option I2C_TENBIT.
1309 * Return: 0 on success, negative error otherwise
1311 static int cdns_i2c_probe(struct platform_device *pdev)
1313 struct resource *r_mem;
1314 struct cdns_i2c *id;
1316 const struct of_device_id *match;
1318 id = devm_kzalloc(&pdev->dev, sizeof(*id), GFP_KERNEL);
1322 id->dev = &pdev->dev;
1323 platform_set_drvdata(pdev, id);
1325 match = of_match_node(cdns_i2c_of_match, pdev->dev.of_node);
1326 if (match && match->data) {
1327 const struct cdns_platform_data *data = match->data;
1328 id->quirks = data->quirks;
1331 id->rinfo.pinctrl = devm_pinctrl_get(&pdev->dev);
1332 if (IS_ERR(id->rinfo.pinctrl)) {
1333 int err = PTR_ERR(id->rinfo.pinctrl);
1335 dev_info(&pdev->dev, "can't get pinctrl, bus recovery not supported\n");
1339 id->adap.bus_recovery_info = &id->rinfo;
1342 id->membase = devm_platform_get_and_ioremap_resource(pdev, 0, &r_mem);
1343 if (IS_ERR(id->membase))
1344 return PTR_ERR(id->membase);
1346 irq = platform_get_irq(pdev, 0);
1350 id->adap.owner = THIS_MODULE;
1351 id->adap.dev.of_node = pdev->dev.of_node;
1352 id->adap.algo = &cdns_i2c_algo;
1353 id->adap.timeout = CDNS_I2C_TIMEOUT;
1354 id->adap.retries = 3; /* Default retry value. */
1355 id->adap.algo_data = id;
1356 id->adap.dev.parent = &pdev->dev;
1357 init_completion(&id->xfer_done);
1358 snprintf(id->adap.name, sizeof(id->adap.name),
1359 "Cadence I2C at %08lx", (unsigned long)r_mem->start);
1361 id->clk = devm_clk_get(&pdev->dev, NULL);
1362 if (IS_ERR(id->clk))
1363 return dev_err_probe(&pdev->dev, PTR_ERR(id->clk),
1364 "input clock not found.\n");
1366 id->reset = devm_reset_control_get_optional_shared(&pdev->dev, NULL);
1367 if (IS_ERR(id->reset))
1368 return dev_err_probe(&pdev->dev, PTR_ERR(id->reset),
1369 "Failed to request reset.\n");
1371 ret = clk_prepare_enable(id->clk);
1373 dev_err(&pdev->dev, "Unable to enable clock.\n");
1375 ret = reset_control_deassert(id->reset);
1377 dev_err_probe(&pdev->dev, ret,
1378 "Failed to de-assert reset.\n");
1382 pm_runtime_set_autosuspend_delay(id->dev, CNDS_I2C_PM_TIMEOUT);
1383 pm_runtime_use_autosuspend(id->dev);
1384 pm_runtime_set_active(id->dev);
1385 pm_runtime_enable(id->dev);
1387 id->clk_rate_change_nb.notifier_call = cdns_i2c_clk_notifier_cb;
1388 if (clk_notifier_register(id->clk, &id->clk_rate_change_nb))
1389 dev_warn(&pdev->dev, "Unable to register clock notifier.\n");
1390 id->input_clk = clk_get_rate(id->clk);
1392 ret = of_property_read_u32(pdev->dev.of_node, "clock-frequency",
1394 if (ret || (id->i2c_clk > I2C_MAX_FAST_MODE_FREQ))
1395 id->i2c_clk = I2C_MAX_STANDARD_MODE_FREQ;
1397 #if IS_ENABLED(CONFIG_I2C_SLAVE)
1398 /* Set initial mode to master */
1399 id->dev_mode = CDNS_I2C_MODE_MASTER;
1400 id->slave_state = CDNS_I2C_SLAVE_STATE_IDLE;
1402 id->ctrl_reg = CDNS_I2C_CR_ACK_EN | CDNS_I2C_CR_NEA | CDNS_I2C_CR_MS;
1404 id->fifo_depth = CDNS_I2C_FIFO_DEPTH_DEFAULT;
1405 of_property_read_u32(pdev->dev.of_node, "fifo-depth", &id->fifo_depth);
1407 cdns_i2c_detect_transfer_size(id);
1409 ret = cdns_i2c_setclk(id->input_clk, id);
1411 dev_err(&pdev->dev, "invalid SCL clock: %u Hz\n", id->i2c_clk);
1413 goto err_clk_notifier_unregister;
1416 ret = devm_request_irq(&pdev->dev, irq, cdns_i2c_isr, 0,
1419 dev_err(&pdev->dev, "cannot get irq %d\n", irq);
1420 goto err_clk_notifier_unregister;
1424 ret = i2c_add_adapter(&id->adap);
1426 goto err_clk_notifier_unregister;
1428 dev_info(&pdev->dev, "%u kHz mmio %08lx irq %d\n",
1429 id->i2c_clk / 1000, (unsigned long)r_mem->start, irq);
1433 err_clk_notifier_unregister:
1434 clk_notifier_unregister(id->clk, &id->clk_rate_change_nb);
1435 reset_control_assert(id->reset);
1437 clk_disable_unprepare(id->clk);
1438 pm_runtime_disable(&pdev->dev);
1439 pm_runtime_set_suspended(&pdev->dev);
1444 * cdns_i2c_remove - Unregister the device after releasing the resources
1445 * @pdev: Handle to the platform device structure
1447 * This function frees all the resources allocated to the device.
1451 static void cdns_i2c_remove(struct platform_device *pdev)
1453 struct cdns_i2c *id = platform_get_drvdata(pdev);
1455 pm_runtime_disable(&pdev->dev);
1456 pm_runtime_set_suspended(&pdev->dev);
1457 pm_runtime_dont_use_autosuspend(&pdev->dev);
1459 i2c_del_adapter(&id->adap);
1460 clk_notifier_unregister(id->clk, &id->clk_rate_change_nb);
1461 reset_control_assert(id->reset);
1462 clk_disable_unprepare(id->clk);
1465 static struct platform_driver cdns_i2c_drv = {
1467 .name = DRIVER_NAME,
1468 .of_match_table = cdns_i2c_of_match,
1469 .pm = &cdns_i2c_dev_pm_ops,
1471 .probe = cdns_i2c_probe,
1472 .remove_new = cdns_i2c_remove,
1475 module_platform_driver(cdns_i2c_drv);
1477 MODULE_AUTHOR("Xilinx Inc.");
1478 MODULE_DESCRIPTION("Cadence I2C bus driver");
1479 MODULE_LICENSE("GPL");