1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * Copyright (C) 2015 Masahiro Yamada <yamada.masahiro@socionext.com>
8 #include <linux/iopoll.h>
9 #include <linux/interrupt.h>
11 #include <linux/module.h>
12 #include <linux/platform_device.h>
14 #define UNIPHIER_FI2C_CR 0x00 /* control register */
15 #define UNIPHIER_FI2C_CR_MST BIT(3) /* master mode */
16 #define UNIPHIER_FI2C_CR_STA BIT(2) /* start condition */
17 #define UNIPHIER_FI2C_CR_STO BIT(1) /* stop condition */
18 #define UNIPHIER_FI2C_CR_NACK BIT(0) /* do not return ACK */
19 #define UNIPHIER_FI2C_DTTX 0x04 /* TX FIFO */
20 #define UNIPHIER_FI2C_DTTX_CMD BIT(8) /* send command (slave addr) */
21 #define UNIPHIER_FI2C_DTTX_RD BIT(0) /* read transaction */
22 #define UNIPHIER_FI2C_DTRX 0x04 /* RX FIFO */
23 #define UNIPHIER_FI2C_SLAD 0x0c /* slave address */
24 #define UNIPHIER_FI2C_CYC 0x10 /* clock cycle control */
25 #define UNIPHIER_FI2C_LCTL 0x14 /* clock low period control */
26 #define UNIPHIER_FI2C_SSUT 0x18 /* restart/stop setup time control */
27 #define UNIPHIER_FI2C_DSUT 0x1c /* data setup time control */
28 #define UNIPHIER_FI2C_INT 0x20 /* interrupt status */
29 #define UNIPHIER_FI2C_IE 0x24 /* interrupt enable */
30 #define UNIPHIER_FI2C_IC 0x28 /* interrupt clear */
31 #define UNIPHIER_FI2C_INT_TE BIT(9) /* TX FIFO empty */
32 #define UNIPHIER_FI2C_INT_RF BIT(8) /* RX FIFO full */
33 #define UNIPHIER_FI2C_INT_TC BIT(7) /* send complete (STOP) */
34 #define UNIPHIER_FI2C_INT_RC BIT(6) /* receive complete (STOP) */
35 #define UNIPHIER_FI2C_INT_TB BIT(5) /* sent specified bytes */
36 #define UNIPHIER_FI2C_INT_RB BIT(4) /* received specified bytes */
37 #define UNIPHIER_FI2C_INT_NA BIT(2) /* no ACK */
38 #define UNIPHIER_FI2C_INT_AL BIT(1) /* arbitration lost */
39 #define UNIPHIER_FI2C_SR 0x2c /* status register */
40 #define UNIPHIER_FI2C_SR_DB BIT(12) /* device busy */
41 #define UNIPHIER_FI2C_SR_STS BIT(11) /* stop condition detected */
42 #define UNIPHIER_FI2C_SR_BB BIT(8) /* bus busy */
43 #define UNIPHIER_FI2C_SR_RFF BIT(3) /* RX FIFO full */
44 #define UNIPHIER_FI2C_SR_RNE BIT(2) /* RX FIFO not empty */
45 #define UNIPHIER_FI2C_SR_TNF BIT(1) /* TX FIFO not full */
46 #define UNIPHIER_FI2C_SR_TFE BIT(0) /* TX FIFO empty */
47 #define UNIPHIER_FI2C_RST 0x34 /* reset control */
48 #define UNIPHIER_FI2C_RST_TBRST BIT(2) /* clear TX FIFO */
49 #define UNIPHIER_FI2C_RST_RBRST BIT(1) /* clear RX FIFO */
50 #define UNIPHIER_FI2C_RST_RST BIT(0) /* forcible bus reset */
51 #define UNIPHIER_FI2C_BM 0x38 /* bus monitor */
52 #define UNIPHIER_FI2C_BM_SDAO BIT(3) /* output for SDA line */
53 #define UNIPHIER_FI2C_BM_SDAS BIT(2) /* readback of SDA line */
54 #define UNIPHIER_FI2C_BM_SCLO BIT(1) /* output for SCL line */
55 #define UNIPHIER_FI2C_BM_SCLS BIT(0) /* readback of SCL line */
56 #define UNIPHIER_FI2C_NOISE 0x3c /* noise filter control */
57 #define UNIPHIER_FI2C_TBC 0x40 /* TX byte count setting */
58 #define UNIPHIER_FI2C_RBC 0x44 /* RX byte count setting */
59 #define UNIPHIER_FI2C_TBCM 0x48 /* TX byte count monitor */
60 #define UNIPHIER_FI2C_RBCM 0x4c /* RX byte count monitor */
61 #define UNIPHIER_FI2C_BRST 0x50 /* bus reset */
62 #define UNIPHIER_FI2C_BRST_FOEN BIT(1) /* normal operation */
63 #define UNIPHIER_FI2C_BRST_RSCL BIT(0) /* release SCL */
65 #define UNIPHIER_FI2C_INT_FAULTS \
66 (UNIPHIER_FI2C_INT_NA | UNIPHIER_FI2C_INT_AL)
67 #define UNIPHIER_FI2C_INT_STOP \
68 (UNIPHIER_FI2C_INT_TC | UNIPHIER_FI2C_INT_RC)
70 #define UNIPHIER_FI2C_RD BIT(0)
71 #define UNIPHIER_FI2C_STOP BIT(1)
72 #define UNIPHIER_FI2C_MANUAL_NACK BIT(2)
73 #define UNIPHIER_FI2C_BYTE_WISE BIT(3)
74 #define UNIPHIER_FI2C_DEFER_STOP_COMP BIT(4)
76 #define UNIPHIER_FI2C_DEFAULT_SPEED 100000
77 #define UNIPHIER_FI2C_MAX_SPEED 400000
78 #define UNIPHIER_FI2C_FIFO_SIZE 8
80 struct uniphier_fi2c_priv
{
81 struct completion comp
;
82 struct i2c_adapter adap
;
83 void __iomem
*membase
;
90 unsigned int busy_cnt
;
91 unsigned int clk_cycle
;
92 spinlock_t lock
; /* IRQ synchronization */
95 static void uniphier_fi2c_fill_txfifo(struct uniphier_fi2c_priv
*priv
,
98 int fifo_space
= UNIPHIER_FI2C_FIFO_SIZE
;
101 * TX-FIFO stores slave address in it for the first access.
102 * Decrement the counter.
108 if (fifo_space
-- <= 0)
111 writel(*priv
->buf
++, priv
->membase
+ UNIPHIER_FI2C_DTTX
);
116 static void uniphier_fi2c_drain_rxfifo(struct uniphier_fi2c_priv
*priv
)
118 int fifo_left
= priv
->flags
& UNIPHIER_FI2C_BYTE_WISE
?
119 1 : UNIPHIER_FI2C_FIFO_SIZE
;
122 if (fifo_left
-- <= 0)
125 *priv
->buf
++ = readl(priv
->membase
+ UNIPHIER_FI2C_DTRX
);
130 static void uniphier_fi2c_set_irqs(struct uniphier_fi2c_priv
*priv
)
132 writel(priv
->enabled_irqs
, priv
->membase
+ UNIPHIER_FI2C_IE
);
135 static void uniphier_fi2c_clear_irqs(struct uniphier_fi2c_priv
*priv
,
138 writel(mask
, priv
->membase
+ UNIPHIER_FI2C_IC
);
141 static void uniphier_fi2c_stop(struct uniphier_fi2c_priv
*priv
)
143 priv
->enabled_irqs
|= UNIPHIER_FI2C_INT_STOP
;
144 uniphier_fi2c_set_irqs(priv
);
145 writel(UNIPHIER_FI2C_CR_MST
| UNIPHIER_FI2C_CR_STO
,
146 priv
->membase
+ UNIPHIER_FI2C_CR
);
149 static irqreturn_t
uniphier_fi2c_interrupt(int irq
, void *dev_id
)
151 struct uniphier_fi2c_priv
*priv
= dev_id
;
154 spin_lock(&priv
->lock
);
156 irq_status
= readl(priv
->membase
+ UNIPHIER_FI2C_INT
);
157 irq_status
&= priv
->enabled_irqs
;
159 if (irq_status
& UNIPHIER_FI2C_INT_STOP
)
162 if (unlikely(irq_status
& UNIPHIER_FI2C_INT_AL
)) {
163 priv
->error
= -EAGAIN
;
167 if (unlikely(irq_status
& UNIPHIER_FI2C_INT_NA
)) {
168 priv
->error
= -ENXIO
;
169 if (priv
->flags
& UNIPHIER_FI2C_RD
) {
171 * work around a hardware bug:
172 * The receive-completed interrupt is never set even if
173 * STOP condition is detected after the address phase
174 * of read transaction fails to get ACK.
175 * To avoid time-out error, we issue STOP here,
176 * but do not wait for its completion.
177 * It should be checked after exiting this handler.
179 uniphier_fi2c_stop(priv
);
180 priv
->flags
|= UNIPHIER_FI2C_DEFER_STOP_COMP
;
186 if (irq_status
& UNIPHIER_FI2C_INT_TE
) {
190 uniphier_fi2c_fill_txfifo(priv
, false);
194 if (irq_status
& (UNIPHIER_FI2C_INT_RF
| UNIPHIER_FI2C_INT_RB
)) {
195 uniphier_fi2c_drain_rxfifo(priv
);
197 * If the number of bytes to read is multiple of the FIFO size
198 * (msg->len == 8, 16, 24, ...), the INT_RF bit is set a little
199 * earlier than INT_RB. We wait for INT_RB to confirm the
200 * completion of the current message.
202 if (!priv
->len
&& (irq_status
& UNIPHIER_FI2C_INT_RB
))
205 if (unlikely(priv
->flags
& UNIPHIER_FI2C_MANUAL_NACK
)) {
206 if (priv
->len
<= UNIPHIER_FI2C_FIFO_SIZE
&&
207 !(priv
->flags
& UNIPHIER_FI2C_BYTE_WISE
)) {
208 priv
->enabled_irqs
|= UNIPHIER_FI2C_INT_RB
;
209 uniphier_fi2c_set_irqs(priv
);
210 priv
->flags
|= UNIPHIER_FI2C_BYTE_WISE
;
213 writel(UNIPHIER_FI2C_CR_MST
|
214 UNIPHIER_FI2C_CR_NACK
,
215 priv
->membase
+ UNIPHIER_FI2C_CR
);
221 spin_unlock(&priv
->lock
);
226 if (priv
->flags
& UNIPHIER_FI2C_STOP
) {
228 uniphier_fi2c_stop(priv
);
231 priv
->enabled_irqs
= 0;
232 uniphier_fi2c_set_irqs(priv
);
233 complete(&priv
->comp
);
238 * This controller makes a pause while any bit of the IRQ status is
239 * asserted. Clear the asserted bit to kick the controller just before
240 * exiting the handler.
242 uniphier_fi2c_clear_irqs(priv
, irq_status
);
244 spin_unlock(&priv
->lock
);
249 static void uniphier_fi2c_tx_init(struct uniphier_fi2c_priv
*priv
, u16 addr
,
252 priv
->enabled_irqs
|= UNIPHIER_FI2C_INT_TE
;
253 uniphier_fi2c_set_irqs(priv
);
255 /* do not use TX byte counter */
256 writel(0, priv
->membase
+ UNIPHIER_FI2C_TBC
);
257 /* set slave address */
258 writel(UNIPHIER_FI2C_DTTX_CMD
| addr
<< 1,
259 priv
->membase
+ UNIPHIER_FI2C_DTTX
);
261 * First chunk of data. For a repeated START condition, do not write
262 * data to the TX fifo here to avoid the timing issue.
265 uniphier_fi2c_fill_txfifo(priv
, true);
268 static void uniphier_fi2c_rx_init(struct uniphier_fi2c_priv
*priv
, u16 addr
)
270 priv
->flags
|= UNIPHIER_FI2C_RD
;
272 if (likely(priv
->len
< 256)) {
274 * If possible, use RX byte counter.
275 * It can automatically handle NACK for the last byte.
277 writel(priv
->len
, priv
->membase
+ UNIPHIER_FI2C_RBC
);
278 priv
->enabled_irqs
|= UNIPHIER_FI2C_INT_RF
|
279 UNIPHIER_FI2C_INT_RB
;
282 * The byte counter can not count over 256. In this case,
283 * do not use it at all. Drain data when FIFO gets full,
284 * but treat the last portion as a special case.
286 writel(0, priv
->membase
+ UNIPHIER_FI2C_RBC
);
287 priv
->flags
|= UNIPHIER_FI2C_MANUAL_NACK
;
288 priv
->enabled_irqs
|= UNIPHIER_FI2C_INT_RF
;
291 uniphier_fi2c_set_irqs(priv
);
293 /* set slave address with RD bit */
294 writel(UNIPHIER_FI2C_DTTX_CMD
| UNIPHIER_FI2C_DTTX_RD
| addr
<< 1,
295 priv
->membase
+ UNIPHIER_FI2C_DTTX
);
298 static void uniphier_fi2c_reset(struct uniphier_fi2c_priv
*priv
)
300 writel(UNIPHIER_FI2C_RST_RST
, priv
->membase
+ UNIPHIER_FI2C_RST
);
303 static void uniphier_fi2c_prepare_operation(struct uniphier_fi2c_priv
*priv
)
305 writel(UNIPHIER_FI2C_BRST_FOEN
| UNIPHIER_FI2C_BRST_RSCL
,
306 priv
->membase
+ UNIPHIER_FI2C_BRST
);
309 static void uniphier_fi2c_recover(struct uniphier_fi2c_priv
*priv
)
311 uniphier_fi2c_reset(priv
);
312 i2c_recover_bus(&priv
->adap
);
315 static int uniphier_fi2c_master_xfer_one(struct i2c_adapter
*adap
,
316 struct i2c_msg
*msg
, bool repeat
,
319 struct uniphier_fi2c_priv
*priv
= i2c_get_adapdata(adap
);
320 bool is_read
= msg
->flags
& I2C_M_RD
;
321 unsigned long time_left
, flags
;
323 priv
->len
= msg
->len
;
324 priv
->buf
= msg
->buf
;
325 priv
->enabled_irqs
= UNIPHIER_FI2C_INT_FAULTS
;
330 priv
->flags
|= UNIPHIER_FI2C_STOP
;
332 reinit_completion(&priv
->comp
);
333 uniphier_fi2c_clear_irqs(priv
, U32_MAX
);
334 writel(UNIPHIER_FI2C_RST_TBRST
| UNIPHIER_FI2C_RST_RBRST
,
335 priv
->membase
+ UNIPHIER_FI2C_RST
); /* reset TX/RX FIFO */
337 spin_lock_irqsave(&priv
->lock
, flags
);
340 uniphier_fi2c_rx_init(priv
, msg
->addr
);
342 uniphier_fi2c_tx_init(priv
, msg
->addr
, repeat
);
345 * For a repeated START condition, writing a slave address to the FIFO
346 * kicks the controller. So, the UNIPHIER_FI2C_CR register should be
347 * written only for a non-repeated START condition.
350 writel(UNIPHIER_FI2C_CR_MST
| UNIPHIER_FI2C_CR_STA
,
351 priv
->membase
+ UNIPHIER_FI2C_CR
);
353 spin_unlock_irqrestore(&priv
->lock
, flags
);
355 time_left
= wait_for_completion_timeout(&priv
->comp
, adap
->timeout
);
357 spin_lock_irqsave(&priv
->lock
, flags
);
358 priv
->enabled_irqs
= 0;
359 uniphier_fi2c_set_irqs(priv
);
360 spin_unlock_irqrestore(&priv
->lock
, flags
);
363 dev_err(&adap
->dev
, "transaction timeout.\n");
364 uniphier_fi2c_recover(priv
);
368 if (unlikely(priv
->flags
& UNIPHIER_FI2C_DEFER_STOP_COMP
)) {
372 ret
= readl_poll_timeout(priv
->membase
+ UNIPHIER_FI2C_SR
,
374 (status
& UNIPHIER_FI2C_SR_STS
) &&
375 !(status
& UNIPHIER_FI2C_SR_BB
),
379 "stop condition was not completed.\n");
380 uniphier_fi2c_recover(priv
);
388 static int uniphier_fi2c_check_bus_busy(struct i2c_adapter
*adap
)
390 struct uniphier_fi2c_priv
*priv
= i2c_get_adapdata(adap
);
392 if (readl(priv
->membase
+ UNIPHIER_FI2C_SR
) & UNIPHIER_FI2C_SR_DB
) {
393 if (priv
->busy_cnt
++ > 3) {
395 * If bus busy continues too long, it is probably
396 * in a wrong state. Try bus recovery.
398 uniphier_fi2c_recover(priv
);
409 static int uniphier_fi2c_master_xfer(struct i2c_adapter
*adap
,
410 struct i2c_msg
*msgs
, int num
)
412 struct i2c_msg
*msg
, *emsg
= msgs
+ num
;
416 ret
= uniphier_fi2c_check_bus_busy(adap
);
420 for (msg
= msgs
; msg
< emsg
; msg
++) {
421 /* Emit STOP if it is the last message or I2C_M_STOP is set. */
422 bool stop
= (msg
+ 1 == emsg
) || (msg
->flags
& I2C_M_STOP
);
424 ret
= uniphier_fi2c_master_xfer_one(adap
, msg
, repeat
, stop
);
434 static u32
uniphier_fi2c_functionality(struct i2c_adapter
*adap
)
436 return I2C_FUNC_I2C
| I2C_FUNC_SMBUS_EMUL
;
439 static const struct i2c_algorithm uniphier_fi2c_algo
= {
440 .master_xfer
= uniphier_fi2c_master_xfer
,
441 .functionality
= uniphier_fi2c_functionality
,
444 static int uniphier_fi2c_get_scl(struct i2c_adapter
*adap
)
446 struct uniphier_fi2c_priv
*priv
= i2c_get_adapdata(adap
);
448 return !!(readl(priv
->membase
+ UNIPHIER_FI2C_BM
) &
449 UNIPHIER_FI2C_BM_SCLS
);
452 static void uniphier_fi2c_set_scl(struct i2c_adapter
*adap
, int val
)
454 struct uniphier_fi2c_priv
*priv
= i2c_get_adapdata(adap
);
456 writel(val
? UNIPHIER_FI2C_BRST_RSCL
: 0,
457 priv
->membase
+ UNIPHIER_FI2C_BRST
);
460 static int uniphier_fi2c_get_sda(struct i2c_adapter
*adap
)
462 struct uniphier_fi2c_priv
*priv
= i2c_get_adapdata(adap
);
464 return !!(readl(priv
->membase
+ UNIPHIER_FI2C_BM
) &
465 UNIPHIER_FI2C_BM_SDAS
);
468 static void uniphier_fi2c_unprepare_recovery(struct i2c_adapter
*adap
)
470 uniphier_fi2c_prepare_operation(i2c_get_adapdata(adap
));
473 static struct i2c_bus_recovery_info uniphier_fi2c_bus_recovery_info
= {
474 .recover_bus
= i2c_generic_scl_recovery
,
475 .get_scl
= uniphier_fi2c_get_scl
,
476 .set_scl
= uniphier_fi2c_set_scl
,
477 .get_sda
= uniphier_fi2c_get_sda
,
478 .unprepare_recovery
= uniphier_fi2c_unprepare_recovery
,
481 static void uniphier_fi2c_hw_init(struct uniphier_fi2c_priv
*priv
)
483 unsigned int cyc
= priv
->clk_cycle
;
486 tmp
= readl(priv
->membase
+ UNIPHIER_FI2C_CR
);
487 tmp
|= UNIPHIER_FI2C_CR_MST
;
488 writel(tmp
, priv
->membase
+ UNIPHIER_FI2C_CR
);
490 uniphier_fi2c_reset(priv
);
493 * Standard-mode: tLOW + tHIGH = 10 us
494 * Fast-mode: tLOW + tHIGH = 2.5 us
496 writel(cyc
, priv
->membase
+ UNIPHIER_FI2C_CYC
);
498 * Standard-mode: tLOW = 4.7 us, tHIGH = 4.0 us, tBUF = 4.7 us
499 * Fast-mode: tLOW = 1.3 us, tHIGH = 0.6 us, tBUF = 1.3 us
500 * "tLow/tHIGH = 5/4" meets both.
502 writel(cyc
* 5 / 9, priv
->membase
+ UNIPHIER_FI2C_LCTL
);
504 * Standard-mode: tHD;STA = 4.0 us, tSU;STA = 4.7 us, tSU;STO = 4.0 us
505 * Fast-mode: tHD;STA = 0.6 us, tSU;STA = 0.6 us, tSU;STO = 0.6 us
507 writel(cyc
/ 2, priv
->membase
+ UNIPHIER_FI2C_SSUT
);
509 * Standard-mode: tSU;DAT = 250 ns
510 * Fast-mode: tSU;DAT = 100 ns
512 writel(cyc
/ 16, priv
->membase
+ UNIPHIER_FI2C_DSUT
);
514 uniphier_fi2c_prepare_operation(priv
);
517 static int uniphier_fi2c_probe(struct platform_device
*pdev
)
519 struct device
*dev
= &pdev
->dev
;
520 struct uniphier_fi2c_priv
*priv
;
522 unsigned long clk_rate
;
525 priv
= devm_kzalloc(dev
, sizeof(*priv
), GFP_KERNEL
);
529 priv
->membase
= devm_platform_ioremap_resource(pdev
, 0);
530 if (IS_ERR(priv
->membase
))
531 return PTR_ERR(priv
->membase
);
533 irq
= platform_get_irq(pdev
, 0);
535 dev_err(dev
, "failed to get IRQ number\n");
539 if (of_property_read_u32(dev
->of_node
, "clock-frequency", &bus_speed
))
540 bus_speed
= UNIPHIER_FI2C_DEFAULT_SPEED
;
542 if (!bus_speed
|| bus_speed
> UNIPHIER_FI2C_MAX_SPEED
) {
543 dev_err(dev
, "invalid clock-frequency %d\n", bus_speed
);
547 priv
->clk
= devm_clk_get(dev
, NULL
);
548 if (IS_ERR(priv
->clk
)) {
549 dev_err(dev
, "failed to get clock\n");
550 return PTR_ERR(priv
->clk
);
553 ret
= clk_prepare_enable(priv
->clk
);
557 clk_rate
= clk_get_rate(priv
->clk
);
559 dev_err(dev
, "input clock rate should not be zero\n");
564 priv
->clk_cycle
= clk_rate
/ bus_speed
;
565 init_completion(&priv
->comp
);
566 spin_lock_init(&priv
->lock
);
567 priv
->adap
.owner
= THIS_MODULE
;
568 priv
->adap
.algo
= &uniphier_fi2c_algo
;
569 priv
->adap
.dev
.parent
= dev
;
570 priv
->adap
.dev
.of_node
= dev
->of_node
;
571 strlcpy(priv
->adap
.name
, "UniPhier FI2C", sizeof(priv
->adap
.name
));
572 priv
->adap
.bus_recovery_info
= &uniphier_fi2c_bus_recovery_info
;
573 i2c_set_adapdata(&priv
->adap
, priv
);
574 platform_set_drvdata(pdev
, priv
);
576 uniphier_fi2c_hw_init(priv
);
578 ret
= devm_request_irq(dev
, irq
, uniphier_fi2c_interrupt
, 0,
581 dev_err(dev
, "failed to request irq %d\n", irq
);
585 ret
= i2c_add_adapter(&priv
->adap
);
588 clk_disable_unprepare(priv
->clk
);
593 static int uniphier_fi2c_remove(struct platform_device
*pdev
)
595 struct uniphier_fi2c_priv
*priv
= platform_get_drvdata(pdev
);
597 i2c_del_adapter(&priv
->adap
);
598 clk_disable_unprepare(priv
->clk
);
603 static int __maybe_unused
uniphier_fi2c_suspend(struct device
*dev
)
605 struct uniphier_fi2c_priv
*priv
= dev_get_drvdata(dev
);
607 clk_disable_unprepare(priv
->clk
);
612 static int __maybe_unused
uniphier_fi2c_resume(struct device
*dev
)
614 struct uniphier_fi2c_priv
*priv
= dev_get_drvdata(dev
);
617 ret
= clk_prepare_enable(priv
->clk
);
621 uniphier_fi2c_hw_init(priv
);
626 static const struct dev_pm_ops uniphier_fi2c_pm_ops
= {
627 SET_SYSTEM_SLEEP_PM_OPS(uniphier_fi2c_suspend
, uniphier_fi2c_resume
)
630 static const struct of_device_id uniphier_fi2c_match
[] = {
631 { .compatible
= "socionext,uniphier-fi2c" },
634 MODULE_DEVICE_TABLE(of
, uniphier_fi2c_match
);
636 static struct platform_driver uniphier_fi2c_drv
= {
637 .probe
= uniphier_fi2c_probe
,
638 .remove
= uniphier_fi2c_remove
,
640 .name
= "uniphier-fi2c",
641 .of_match_table
= uniphier_fi2c_match
,
642 .pm
= &uniphier_fi2c_pm_ops
,
645 module_platform_driver(uniphier_fi2c_drv
);
647 MODULE_AUTHOR("Masahiro Yamada <yamada.masahiro@socionext.com>");
648 MODULE_DESCRIPTION("UniPhier FIFO-builtin I2C bus driver");
649 MODULE_LICENSE("GPL");