2 * Blackfin On-Chip Two Wire Interface Driver
4 * Copyright 2005-2007 Analog Devices Inc.
6 * Enter bugs at http://blackfin.uclinux.org/
8 * Licensed under the GPL-2 or later.
11 #include <linux/module.h>
12 #include <linux/kernel.h>
13 #include <linux/init.h>
14 #include <linux/i2c.h>
15 #include <linux/slab.h>
18 #include <linux/timer.h>
19 #include <linux/spinlock.h>
20 #include <linux/completion.h>
21 #include <linux/interrupt.h>
22 #include <linux/platform_device.h>
24 #include <asm/blackfin.h>
25 #include <asm/portmux.h>
29 #define TWI_I2C_MODE_STANDARD 1
30 #define TWI_I2C_MODE_STANDARDSUB 2
31 #define TWI_I2C_MODE_COMBINED 3
32 #define TWI_I2C_MODE_REPEAT 4
34 struct bfin_twi_iface
{
45 struct i2c_adapter adap
;
46 struct completion complete
;
52 void __iomem
*regs_base
;
56 #define DEFINE_TWI_REG(reg, off) \
57 static inline u16 read_##reg(struct bfin_twi_iface *iface) \
58 { return bfin_read16(iface->regs_base + (off)); } \
59 static inline void write_##reg(struct bfin_twi_iface *iface, u16 v) \
60 { bfin_write16(iface->regs_base + (off), v); }
62 DEFINE_TWI_REG(CLKDIV
, 0x00)
63 DEFINE_TWI_REG(CONTROL
, 0x04)
64 DEFINE_TWI_REG(SLAVE_CTL
, 0x08)
65 DEFINE_TWI_REG(SLAVE_STAT
, 0x0C)
66 DEFINE_TWI_REG(SLAVE_ADDR
, 0x10)
67 DEFINE_TWI_REG(MASTER_CTL
, 0x14)
68 DEFINE_TWI_REG(MASTER_STAT
, 0x18)
69 DEFINE_TWI_REG(MASTER_ADDR
, 0x1C)
70 DEFINE_TWI_REG(INT_STAT
, 0x20)
71 DEFINE_TWI_REG(INT_MASK
, 0x24)
72 DEFINE_TWI_REG(FIFO_CTL
, 0x28)
73 DEFINE_TWI_REG(FIFO_STAT
, 0x2C)
74 DEFINE_TWI_REG(XMT_DATA8
, 0x80)
75 DEFINE_TWI_REG(XMT_DATA16
, 0x84)
76 DEFINE_TWI_REG(RCV_DATA8
, 0x88)
77 DEFINE_TWI_REG(RCV_DATA16
, 0x8C)
79 static const u16 pin_req
[2][3] = {
80 {P_TWI0_SCL
, P_TWI0_SDA
, 0},
81 {P_TWI1_SCL
, P_TWI1_SDA
, 0},
84 static void bfin_twi_handle_interrupt(struct bfin_twi_iface
*iface
,
85 unsigned short twi_int_status
)
87 unsigned short mast_stat
= read_MASTER_STAT(iface
);
89 if (twi_int_status
& XMTSERV
) {
90 /* Transmit next data */
91 if (iface
->writeNum
> 0) {
93 write_XMT_DATA8(iface
, *(iface
->transPtr
++));
96 /* start receive immediately after complete sending in
99 else if (iface
->cur_mode
== TWI_I2C_MODE_COMBINED
)
100 write_MASTER_CTL(iface
,
101 read_MASTER_CTL(iface
) | MDIR
| RSTART
);
102 else if (iface
->manual_stop
)
103 write_MASTER_CTL(iface
,
104 read_MASTER_CTL(iface
) | STOP
);
105 else if (iface
->cur_mode
== TWI_I2C_MODE_REPEAT
&&
106 iface
->cur_msg
+ 1 < iface
->msg_num
) {
107 if (iface
->pmsg
[iface
->cur_msg
+ 1].flags
& I2C_M_RD
)
108 write_MASTER_CTL(iface
,
109 read_MASTER_CTL(iface
) | RSTART
| MDIR
);
111 write_MASTER_CTL(iface
,
112 (read_MASTER_CTL(iface
) | RSTART
) & ~MDIR
);
115 if (twi_int_status
& RCVSERV
) {
116 if (iface
->readNum
> 0) {
117 /* Receive next data */
118 *(iface
->transPtr
) = read_RCV_DATA8(iface
);
119 if (iface
->cur_mode
== TWI_I2C_MODE_COMBINED
) {
120 /* Change combine mode into sub mode after
123 iface
->cur_mode
= TWI_I2C_MODE_STANDARDSUB
;
124 /* Get read number from first byte in block
127 if (iface
->readNum
== 1 && iface
->manual_stop
)
128 iface
->readNum
= *iface
->transPtr
+ 1;
132 } else if (iface
->manual_stop
) {
133 write_MASTER_CTL(iface
,
134 read_MASTER_CTL(iface
) | STOP
);
135 } else if (iface
->cur_mode
== TWI_I2C_MODE_REPEAT
&&
136 iface
->cur_msg
+ 1 < iface
->msg_num
) {
137 if (iface
->pmsg
[iface
->cur_msg
+ 1].flags
& I2C_M_RD
)
138 write_MASTER_CTL(iface
,
139 read_MASTER_CTL(iface
) | RSTART
| MDIR
);
141 write_MASTER_CTL(iface
,
142 (read_MASTER_CTL(iface
) | RSTART
) & ~MDIR
);
145 if (twi_int_status
& MERR
) {
146 write_INT_MASK(iface
, 0);
147 write_MASTER_STAT(iface
, 0x3e);
148 write_MASTER_CTL(iface
, 0);
149 iface
->result
= -EIO
;
151 if (mast_stat
& LOSTARB
)
152 dev_dbg(&iface
->adap
.dev
, "Lost Arbitration\n");
153 if (mast_stat
& ANAK
)
154 dev_dbg(&iface
->adap
.dev
, "Address Not Acknowledged\n");
155 if (mast_stat
& DNAK
)
156 dev_dbg(&iface
->adap
.dev
, "Data Not Acknowledged\n");
157 if (mast_stat
& BUFRDERR
)
158 dev_dbg(&iface
->adap
.dev
, "Buffer Read Error\n");
159 if (mast_stat
& BUFWRERR
)
160 dev_dbg(&iface
->adap
.dev
, "Buffer Write Error\n");
162 /* If it is a quick transfer, only address without data,
163 * not an err, return 1.
165 if (iface
->cur_mode
== TWI_I2C_MODE_STANDARD
&&
166 iface
->transPtr
== NULL
&&
167 (twi_int_status
& MCOMP
) && (mast_stat
& DNAK
))
170 complete(&iface
->complete
);
173 if (twi_int_status
& MCOMP
) {
174 if (iface
->cur_mode
== TWI_I2C_MODE_COMBINED
) {
175 if (iface
->readNum
== 0) {
176 /* set the read number to 1 and ask for manual
177 * stop in block combine mode
180 iface
->manual_stop
= 1;
181 write_MASTER_CTL(iface
,
182 read_MASTER_CTL(iface
) | (0xff << 6));
184 /* set the readd number in other
187 write_MASTER_CTL(iface
,
188 (read_MASTER_CTL(iface
) &
190 (iface
->readNum
<< 6));
192 /* remove restart bit and enable master receive */
193 write_MASTER_CTL(iface
,
194 read_MASTER_CTL(iface
) & ~RSTART
);
195 } else if (iface
->cur_mode
== TWI_I2C_MODE_REPEAT
&&
196 iface
->cur_msg
+1 < iface
->msg_num
) {
198 iface
->transPtr
= iface
->pmsg
[iface
->cur_msg
].buf
;
199 iface
->writeNum
= iface
->readNum
=
200 iface
->pmsg
[iface
->cur_msg
].len
;
201 /* Set Transmit device address */
202 write_MASTER_ADDR(iface
,
203 iface
->pmsg
[iface
->cur_msg
].addr
);
204 if (iface
->pmsg
[iface
->cur_msg
].flags
& I2C_M_RD
)
205 iface
->read_write
= I2C_SMBUS_READ
;
207 iface
->read_write
= I2C_SMBUS_WRITE
;
208 /* Transmit first data */
209 if (iface
->writeNum
> 0) {
210 write_XMT_DATA8(iface
,
211 *(iface
->transPtr
++));
216 if (iface
->pmsg
[iface
->cur_msg
].len
<= 255)
217 write_MASTER_CTL(iface
,
218 (read_MASTER_CTL(iface
) &
220 (iface
->pmsg
[iface
->cur_msg
].len
<< 6));
222 write_MASTER_CTL(iface
,
223 (read_MASTER_CTL(iface
) |
225 iface
->manual_stop
= 1;
227 /* remove restart bit and enable master receive */
228 write_MASTER_CTL(iface
,
229 read_MASTER_CTL(iface
) & ~RSTART
);
232 write_INT_MASK(iface
, 0);
233 write_MASTER_CTL(iface
, 0);
236 complete(&iface
->complete
);
239 /* Interrupt handler */
240 static irqreturn_t
bfin_twi_interrupt_entry(int irq
, void *dev_id
)
242 struct bfin_twi_iface
*iface
= dev_id
;
244 unsigned short twi_int_status
;
246 spin_lock_irqsave(&iface
->lock
, flags
);
248 twi_int_status
= read_INT_STAT(iface
);
251 /* Clear interrupt status */
252 write_INT_STAT(iface
, twi_int_status
);
253 bfin_twi_handle_interrupt(iface
, twi_int_status
);
256 spin_unlock_irqrestore(&iface
->lock
, flags
);
261 * One i2c master transfer
263 static int bfin_twi_do_master_xfer(struct i2c_adapter
*adap
,
264 struct i2c_msg
*msgs
, int num
)
266 struct bfin_twi_iface
*iface
= adap
->algo_data
;
267 struct i2c_msg
*pmsg
;
270 if (!(read_CONTROL(iface
) & TWI_ENA
))
273 while (read_MASTER_STAT(iface
) & BUSBUSY
)
277 iface
->msg_num
= num
;
281 if (pmsg
->flags
& I2C_M_TEN
) {
282 dev_err(&adap
->dev
, "10 bits addr not supported!\n");
286 iface
->cur_mode
= TWI_I2C_MODE_REPEAT
;
287 iface
->manual_stop
= 0;
288 iface
->transPtr
= pmsg
->buf
;
289 iface
->writeNum
= iface
->readNum
= pmsg
->len
;
291 init_completion(&(iface
->complete
));
292 /* Set Transmit device address */
293 write_MASTER_ADDR(iface
, pmsg
->addr
);
295 /* FIFO Initiation. Data in FIFO should be
296 * discarded before start a new operation.
298 write_FIFO_CTL(iface
, 0x3);
300 write_FIFO_CTL(iface
, 0);
303 if (pmsg
->flags
& I2C_M_RD
)
304 iface
->read_write
= I2C_SMBUS_READ
;
306 iface
->read_write
= I2C_SMBUS_WRITE
;
307 /* Transmit first data */
308 if (iface
->writeNum
> 0) {
309 write_XMT_DATA8(iface
, *(iface
->transPtr
++));
316 write_INT_STAT(iface
, MERR
| MCOMP
| XMTSERV
| RCVSERV
);
318 /* Interrupt mask . Enable XMT, RCV interrupt */
319 write_INT_MASK(iface
, MCOMP
| MERR
| RCVSERV
| XMTSERV
);
322 if (pmsg
->len
<= 255)
323 write_MASTER_CTL(iface
, pmsg
->len
<< 6);
325 write_MASTER_CTL(iface
, 0xff << 6);
326 iface
->manual_stop
= 1;
330 write_MASTER_CTL(iface
, read_MASTER_CTL(iface
) | MEN
|
331 ((iface
->read_write
== I2C_SMBUS_READ
) ? MDIR
: 0) |
332 ((CONFIG_I2C_BLACKFIN_TWI_CLK_KHZ
> 100) ? FAST
: 0));
335 while (!iface
->result
) {
336 if (!wait_for_completion_timeout(&iface
->complete
,
339 dev_err(&adap
->dev
, "master transfer timeout\n");
343 if (iface
->result
== 1)
344 rc
= iface
->cur_msg
+ 1;
352 * Generic i2c master transfer entrypoint
354 static int bfin_twi_master_xfer(struct i2c_adapter
*adap
,
355 struct i2c_msg
*msgs
, int num
)
357 return bfin_twi_do_master_xfer(adap
, msgs
, num
);
361 * One I2C SMBus transfer
363 int bfin_twi_do_smbus_xfer(struct i2c_adapter
*adap
, u16 addr
,
364 unsigned short flags
, char read_write
,
365 u8 command
, int size
, union i2c_smbus_data
*data
)
367 struct bfin_twi_iface
*iface
= adap
->algo_data
;
370 if (!(read_CONTROL(iface
) & TWI_ENA
))
373 while (read_MASTER_STAT(iface
) & BUSBUSY
)
379 /* Prepare datas & select mode */
381 case I2C_SMBUS_QUICK
:
382 iface
->transPtr
= NULL
;
383 iface
->cur_mode
= TWI_I2C_MODE_STANDARD
;
387 iface
->transPtr
= NULL
;
389 if (read_write
== I2C_SMBUS_READ
)
393 iface
->transPtr
= &data
->byte
;
395 iface
->cur_mode
= TWI_I2C_MODE_STANDARD
;
397 case I2C_SMBUS_BYTE_DATA
:
398 if (read_write
== I2C_SMBUS_READ
) {
400 iface
->cur_mode
= TWI_I2C_MODE_COMBINED
;
403 iface
->cur_mode
= TWI_I2C_MODE_STANDARDSUB
;
405 iface
->transPtr
= &data
->byte
;
407 case I2C_SMBUS_WORD_DATA
:
408 if (read_write
== I2C_SMBUS_READ
) {
410 iface
->cur_mode
= TWI_I2C_MODE_COMBINED
;
413 iface
->cur_mode
= TWI_I2C_MODE_STANDARDSUB
;
415 iface
->transPtr
= (u8
*)&data
->word
;
417 case I2C_SMBUS_PROC_CALL
:
420 iface
->cur_mode
= TWI_I2C_MODE_COMBINED
;
421 iface
->transPtr
= (u8
*)&data
->word
;
423 case I2C_SMBUS_BLOCK_DATA
:
424 if (read_write
== I2C_SMBUS_READ
) {
426 iface
->cur_mode
= TWI_I2C_MODE_COMBINED
;
428 iface
->writeNum
= data
->block
[0] + 1;
429 iface
->cur_mode
= TWI_I2C_MODE_STANDARDSUB
;
431 iface
->transPtr
= data
->block
;
433 case I2C_SMBUS_I2C_BLOCK_DATA
:
434 if (read_write
== I2C_SMBUS_READ
) {
435 iface
->readNum
= data
->block
[0];
436 iface
->cur_mode
= TWI_I2C_MODE_COMBINED
;
438 iface
->writeNum
= data
->block
[0];
439 iface
->cur_mode
= TWI_I2C_MODE_STANDARDSUB
;
441 iface
->transPtr
= (u8
*)&data
->block
[1];
448 iface
->manual_stop
= 0;
449 iface
->read_write
= read_write
;
450 iface
->command
= command
;
451 init_completion(&(iface
->complete
));
453 /* FIFO Initiation. Data in FIFO should be discarded before
454 * start a new operation.
456 write_FIFO_CTL(iface
, 0x3);
458 write_FIFO_CTL(iface
, 0);
461 write_INT_STAT(iface
, MERR
| MCOMP
| XMTSERV
| RCVSERV
);
463 /* Set Transmit device address */
464 write_MASTER_ADDR(iface
, addr
);
467 switch (iface
->cur_mode
) {
468 case TWI_I2C_MODE_STANDARDSUB
:
469 write_XMT_DATA8(iface
, iface
->command
);
470 write_INT_MASK(iface
, MCOMP
| MERR
|
471 ((iface
->read_write
== I2C_SMBUS_READ
) ?
475 if (iface
->writeNum
+ 1 <= 255)
476 write_MASTER_CTL(iface
, (iface
->writeNum
+ 1) << 6);
478 write_MASTER_CTL(iface
, 0xff << 6);
479 iface
->manual_stop
= 1;
482 write_MASTER_CTL(iface
, read_MASTER_CTL(iface
) | MEN
|
483 ((CONFIG_I2C_BLACKFIN_TWI_CLK_KHZ
>100) ? FAST
: 0));
485 case TWI_I2C_MODE_COMBINED
:
486 write_XMT_DATA8(iface
, iface
->command
);
487 write_INT_MASK(iface
, MCOMP
| MERR
| RCVSERV
| XMTSERV
);
490 if (iface
->writeNum
> 0)
491 write_MASTER_CTL(iface
, (iface
->writeNum
+ 1) << 6);
493 write_MASTER_CTL(iface
, 0x1 << 6);
495 write_MASTER_CTL(iface
, read_MASTER_CTL(iface
) | MEN
|
496 ((CONFIG_I2C_BLACKFIN_TWI_CLK_KHZ
>100) ? FAST
: 0));
499 write_MASTER_CTL(iface
, 0);
500 if (size
!= I2C_SMBUS_QUICK
) {
501 /* Don't access xmit data register when this is a
504 if (iface
->read_write
!= I2C_SMBUS_READ
) {
505 if (iface
->writeNum
> 0) {
506 write_XMT_DATA8(iface
,
507 *(iface
->transPtr
++));
508 if (iface
->writeNum
<= 255)
509 write_MASTER_CTL(iface
,
510 iface
->writeNum
<< 6);
512 write_MASTER_CTL(iface
,
514 iface
->manual_stop
= 1;
518 write_XMT_DATA8(iface
, iface
->command
);
519 write_MASTER_CTL(iface
, 1 << 6);
522 if (iface
->readNum
> 0 && iface
->readNum
<= 255)
523 write_MASTER_CTL(iface
,
524 iface
->readNum
<< 6);
525 else if (iface
->readNum
> 255) {
526 write_MASTER_CTL(iface
, 0xff << 6);
527 iface
->manual_stop
= 1;
532 write_INT_MASK(iface
, MCOMP
| MERR
|
533 ((iface
->read_write
== I2C_SMBUS_READ
) ?
538 write_MASTER_CTL(iface
, read_MASTER_CTL(iface
) | MEN
|
539 ((iface
->read_write
== I2C_SMBUS_READ
) ? MDIR
: 0) |
540 ((CONFIG_I2C_BLACKFIN_TWI_CLK_KHZ
> 100) ? FAST
: 0));
545 while (!iface
->result
) {
546 if (!wait_for_completion_timeout(&iface
->complete
,
549 dev_err(&adap
->dev
, "smbus transfer timeout\n");
553 rc
= (iface
->result
>= 0) ? 0 : -1;
559 * Generic I2C SMBus transfer entrypoint
561 int bfin_twi_smbus_xfer(struct i2c_adapter
*adap
, u16 addr
,
562 unsigned short flags
, char read_write
,
563 u8 command
, int size
, union i2c_smbus_data
*data
)
565 return bfin_twi_do_smbus_xfer(adap
, addr
, flags
,
566 read_write
, command
, size
, data
);
570 * Return what the adapter supports
572 static u32
bfin_twi_functionality(struct i2c_adapter
*adap
)
574 return I2C_FUNC_SMBUS_QUICK
| I2C_FUNC_SMBUS_BYTE
|
575 I2C_FUNC_SMBUS_BYTE_DATA
| I2C_FUNC_SMBUS_WORD_DATA
|
576 I2C_FUNC_SMBUS_BLOCK_DATA
| I2C_FUNC_SMBUS_PROC_CALL
|
577 I2C_FUNC_I2C
| I2C_FUNC_SMBUS_I2C_BLOCK
;
580 static struct i2c_algorithm bfin_twi_algorithm
= {
581 .master_xfer
= bfin_twi_master_xfer
,
582 .smbus_xfer
= bfin_twi_smbus_xfer
,
583 .functionality
= bfin_twi_functionality
,
586 static int i2c_bfin_twi_suspend(struct platform_device
*pdev
, pm_message_t state
)
588 struct bfin_twi_iface
*iface
= platform_get_drvdata(pdev
);
590 iface
->saved_clkdiv
= read_CLKDIV(iface
);
591 iface
->saved_control
= read_CONTROL(iface
);
593 free_irq(iface
->irq
, iface
);
596 write_CONTROL(iface
, iface
->saved_control
& ~TWI_ENA
);
601 static int i2c_bfin_twi_resume(struct platform_device
*pdev
)
603 struct bfin_twi_iface
*iface
= platform_get_drvdata(pdev
);
605 int rc
= request_irq(iface
->irq
, bfin_twi_interrupt_entry
,
606 IRQF_DISABLED
, pdev
->name
, iface
);
608 dev_err(&pdev
->dev
, "Can't get IRQ %d !\n", iface
->irq
);
612 /* Resume TWI interface clock as specified */
613 write_CLKDIV(iface
, iface
->saved_clkdiv
);
616 write_CONTROL(iface
, iface
->saved_control
);
621 static int i2c_bfin_twi_probe(struct platform_device
*pdev
)
623 struct bfin_twi_iface
*iface
;
624 struct i2c_adapter
*p_adap
;
625 struct resource
*res
;
627 unsigned int clkhilow
;
629 iface
= kzalloc(sizeof(struct bfin_twi_iface
), GFP_KERNEL
);
631 dev_err(&pdev
->dev
, "Cannot allocate memory\n");
633 goto out_error_nomem
;
636 spin_lock_init(&(iface
->lock
));
638 /* Find and map our resources */
639 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
641 dev_err(&pdev
->dev
, "Cannot get IORESOURCE_MEM\n");
643 goto out_error_get_res
;
646 iface
->regs_base
= ioremap(res
->start
, resource_size(res
));
647 if (iface
->regs_base
== NULL
) {
648 dev_err(&pdev
->dev
, "Cannot map IO\n");
650 goto out_error_ioremap
;
653 iface
->irq
= platform_get_irq(pdev
, 0);
654 if (iface
->irq
< 0) {
655 dev_err(&pdev
->dev
, "No IRQ specified\n");
657 goto out_error_no_irq
;
660 p_adap
= &iface
->adap
;
661 p_adap
->nr
= pdev
->id
;
662 strlcpy(p_adap
->name
, pdev
->name
, sizeof(p_adap
->name
));
663 p_adap
->algo
= &bfin_twi_algorithm
;
664 p_adap
->algo_data
= iface
;
665 p_adap
->class = I2C_CLASS_HWMON
| I2C_CLASS_SPD
;
666 p_adap
->dev
.parent
= &pdev
->dev
;
667 p_adap
->timeout
= 5 * HZ
;
670 rc
= peripheral_request_list(pin_req
[pdev
->id
], "i2c-bfin-twi");
672 dev_err(&pdev
->dev
, "Can't setup pin mux!\n");
673 goto out_error_pin_mux
;
676 rc
= request_irq(iface
->irq
, bfin_twi_interrupt_entry
,
677 IRQF_DISABLED
, pdev
->name
, iface
);
679 dev_err(&pdev
->dev
, "Can't get IRQ %d !\n", iface
->irq
);
681 goto out_error_req_irq
;
684 /* Set TWI internal clock as 10MHz */
685 write_CONTROL(iface
, ((get_sclk() / 1000 / 1000 + 5) / 10) & 0x7F);
688 * We will not end up with a CLKDIV=0 because no one will specify
689 * 20kHz SCL or less in Kconfig now. (5 * 1000 / 20 = 250)
691 clkhilow
= ((10 * 1000 / CONFIG_I2C_BLACKFIN_TWI_CLK_KHZ
) + 1) / 2;
693 /* Set Twi interface clock as specified */
694 write_CLKDIV(iface
, (clkhilow
<< 8) | clkhilow
);
697 write_CONTROL(iface
, read_CONTROL(iface
) | TWI_ENA
);
700 rc
= i2c_add_numbered_adapter(p_adap
);
702 dev_err(&pdev
->dev
, "Can't add i2c adapter!\n");
703 goto out_error_add_adapter
;
706 platform_set_drvdata(pdev
, iface
);
708 dev_info(&pdev
->dev
, "Blackfin BF5xx on-chip I2C TWI Contoller, "
709 "regs_base@%p\n", iface
->regs_base
);
713 out_error_add_adapter
:
714 free_irq(iface
->irq
, iface
);
717 peripheral_free_list(pin_req
[pdev
->id
]);
719 iounmap(iface
->regs_base
);
727 static int i2c_bfin_twi_remove(struct platform_device
*pdev
)
729 struct bfin_twi_iface
*iface
= platform_get_drvdata(pdev
);
731 platform_set_drvdata(pdev
, NULL
);
733 i2c_del_adapter(&(iface
->adap
));
734 free_irq(iface
->irq
, iface
);
735 peripheral_free_list(pin_req
[pdev
->id
]);
736 iounmap(iface
->regs_base
);
742 static struct platform_driver i2c_bfin_twi_driver
= {
743 .probe
= i2c_bfin_twi_probe
,
744 .remove
= i2c_bfin_twi_remove
,
745 .suspend
= i2c_bfin_twi_suspend
,
746 .resume
= i2c_bfin_twi_resume
,
748 .name
= "i2c-bfin-twi",
749 .owner
= THIS_MODULE
,
753 static int __init
i2c_bfin_twi_init(void)
755 return platform_driver_register(&i2c_bfin_twi_driver
);
758 static void __exit
i2c_bfin_twi_exit(void)
760 platform_driver_unregister(&i2c_bfin_twi_driver
);
763 module_init(i2c_bfin_twi_init
);
764 module_exit(i2c_bfin_twi_exit
);
766 MODULE_AUTHOR("Bryan Wu, Sonic Zhang");
767 MODULE_DESCRIPTION("Blackfin BF5xx on-chip I2C TWI Contoller Driver");
768 MODULE_LICENSE("GPL");
769 MODULE_ALIAS("platform:i2c-bfin-twi");