GUI: Fix Tomato RAF theme for all builds. Compilation typo.
[tomato.git] / release / src-rt-6.x.4708 / linux / linux-2.6.36 / drivers / net / irda / sh_irda.c
blob7491e7f3fdaea616fd80eb58d2f644e8ba954967
1 /*
2 * SuperH IrDA Driver
4 * Copyright (C) 2010 Renesas Solutions Corp.
5 * Kuninori Morimoto <morimoto.kuninori@renesas.com>
7 * Based on sh_sir.c
8 * Copyright (C) 2009 Renesas Solutions Corp.
9 * Copyright 2006-2009 Analog Devices Inc.
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License version 2 as
13 * published by the Free Software Foundation.
17 * CAUTION
19 * This driver is very simple.
20 * So, it doesn't have below support now
21 * - MIR/FIR support
22 * - DMA transfer support
23 * - FIFO mode support
25 #include <linux/module.h>
26 #include <linux/platform_device.h>
27 #include <linux/clk.h>
28 #include <net/irda/wrapper.h>
29 #include <net/irda/irda_device.h>
31 #define DRIVER_NAME "sh_irda"
33 #if defined(CONFIG_ARCH_SH7367) || defined(CONFIG_ARCH_SH7377)
34 #define __IRDARAM_LEN 0x13FF
35 #else
36 #define __IRDARAM_LEN 0x1039
37 #endif
39 #define IRTMR 0x1F00 /* Transfer mode */
40 #define IRCFR 0x1F02 /* Configuration */
41 #define IRCTR 0x1F04 /* IR control */
42 #define IRTFLR 0x1F20 /* Transmit frame length */
43 #define IRTCTR 0x1F22 /* Transmit control */
44 #define IRRFLR 0x1F40 /* Receive frame length */
45 #define IRRCTR 0x1F42 /* Receive control */
46 #define SIRISR 0x1F60 /* SIR-UART mode interrupt source */
47 #define SIRIMR 0x1F62 /* SIR-UART mode interrupt mask */
48 #define SIRICR 0x1F64 /* SIR-UART mode interrupt clear */
49 #define SIRBCR 0x1F68 /* SIR-UART mode baud rate count */
50 #define MFIRISR 0x1F70 /* MIR/FIR mode interrupt source */
51 #define MFIRIMR 0x1F72 /* MIR/FIR mode interrupt mask */
52 #define MFIRICR 0x1F74 /* MIR/FIR mode interrupt clear */
53 #define CRCCTR 0x1F80 /* CRC engine control */
54 #define CRCIR 0x1F86 /* CRC engine input data */
55 #define CRCCR 0x1F8A /* CRC engine calculation */
56 #define CRCOR 0x1F8E /* CRC engine output data */
57 #define FIFOCP 0x1FC0 /* FIFO current pointer */
58 #define FIFOFP 0x1FC2 /* FIFO follow pointer */
59 #define FIFORSMSK 0x1FC4 /* FIFO receive status mask */
60 #define FIFORSOR 0x1FC6 /* FIFO receive status OR */
61 #define FIFOSEL 0x1FC8 /* FIFO select */
62 #define FIFORS 0x1FCA /* FIFO receive status */
63 #define FIFORFL 0x1FCC /* FIFO receive frame length */
64 #define FIFORAMCP 0x1FCE /* FIFO RAM current pointer */
65 #define FIFORAMFP 0x1FD0 /* FIFO RAM follow pointer */
66 #define BIFCTL 0x1FD2 /* BUS interface control */
67 #define IRDARAM 0x0000 /* IrDA buffer RAM */
68 #define IRDARAM_LEN __IRDARAM_LEN /* - 8/16/32 (read-only for 32) */
70 /* IRTMR */
71 #define TMD_MASK (0x3 << 14) /* Transfer Mode */
72 #define TMD_SIR (0x0 << 14)
73 #define TMD_MIR (0x3 << 14)
74 #define TMD_FIR (0x2 << 14)
76 #define FIFORIM (1 << 8) /* FIFO receive interrupt mask */
77 #define MIM (1 << 4) /* MIR/FIR Interrupt Mask */
78 #define SIM (1 << 0) /* SIR Interrupt Mask */
79 #define xIM_MASK (FIFORIM | MIM | SIM)
81 /* IRCFR */
82 #define RTO_SHIFT 8 /* shift for Receive Timeout */
83 #define RTO (0x3 << RTO_SHIFT)
85 /* IRTCTR */
86 #define ARMOD (1 << 15) /* Auto-Receive Mode */
87 #define TE (1 << 0) /* Transmit Enable */
89 /* IRRFLR */
90 #define RFL_MASK (0x1FFF) /* mask for Receive Frame Length */
92 /* IRRCTR */
93 #define RE (1 << 0) /* Receive Enable */
96 * SIRISR, SIRIMR, SIRICR,
97 * MFIRISR, MFIRIMR, MFIRICR
99 #define FRE (1 << 15) /* Frame Receive End */
100 #define TROV (1 << 11) /* Transfer Area Overflow */
101 #define xIR_9 (1 << 9)
102 #define TOT xIR_9 /* for SIR Timeout */
103 #define ABTD xIR_9 /* for MIR/FIR Abort Detection */
104 #define xIR_8 (1 << 8)
105 #define FER xIR_8 /* for SIR Framing Error */
106 #define CRCER xIR_8 /* for MIR/FIR CRC error */
107 #define FTE (1 << 7) /* Frame Transmit End */
108 #define xIR_MASK (FRE | TROV | xIR_9 | xIR_8 | FTE)
110 /* SIRBCR */
111 #define BRC_MASK (0x3F) /* mask for Baud Rate Count */
113 /* CRCCTR */
114 #define CRC_RST (1 << 15) /* CRC Engine Reset */
115 #define CRC_CT_MASK 0x0FFF /* mask for CRC Engine Input Data Count */
117 /* CRCIR */
118 #define CRC_IN_MASK 0x0FFF /* mask for CRC Engine Input Data */
120 /************************************************************************
123 enum / structure
126 ************************************************************************/
127 enum sh_irda_mode {
128 SH_IRDA_NONE = 0,
129 SH_IRDA_SIR,
130 SH_IRDA_MIR,
131 SH_IRDA_FIR,
134 struct sh_irda_self;
135 struct sh_irda_xir_func {
136 int (*xir_fre) (struct sh_irda_self *self);
137 int (*xir_trov) (struct sh_irda_self *self);
138 int (*xir_9) (struct sh_irda_self *self);
139 int (*xir_8) (struct sh_irda_self *self);
140 int (*xir_fte) (struct sh_irda_self *self);
143 struct sh_irda_self {
144 void __iomem *membase;
145 unsigned int irq;
146 struct clk *clk;
148 struct net_device *ndev;
150 struct irlap_cb *irlap;
151 struct qos_info qos;
153 iobuff_t tx_buff;
154 iobuff_t rx_buff;
156 enum sh_irda_mode mode;
157 spinlock_t lock;
159 struct sh_irda_xir_func *xir_func;
162 /************************************************************************
165 common function
168 ************************************************************************/
169 static void sh_irda_write(struct sh_irda_self *self, u32 offset, u16 data)
171 unsigned long flags;
173 spin_lock_irqsave(&self->lock, flags);
174 iowrite16(data, self->membase + offset);
175 spin_unlock_irqrestore(&self->lock, flags);
178 static u16 sh_irda_read(struct sh_irda_self *self, u32 offset)
180 unsigned long flags;
181 u16 ret;
183 spin_lock_irqsave(&self->lock, flags);
184 ret = ioread16(self->membase + offset);
185 spin_unlock_irqrestore(&self->lock, flags);
187 return ret;
190 static void sh_irda_update_bits(struct sh_irda_self *self, u32 offset,
191 u16 mask, u16 data)
193 unsigned long flags;
194 u16 old, new;
196 spin_lock_irqsave(&self->lock, flags);
197 old = ioread16(self->membase + offset);
198 new = (old & ~mask) | data;
199 if (old != new)
200 iowrite16(data, self->membase + offset);
201 spin_unlock_irqrestore(&self->lock, flags);
204 /************************************************************************
207 mode function
210 ************************************************************************/
211 /*=====================================
213 * common
215 *=====================================*/
216 static void sh_irda_rcv_ctrl(struct sh_irda_self *self, int enable)
218 struct device *dev = &self->ndev->dev;
220 sh_irda_update_bits(self, IRRCTR, RE, enable ? RE : 0);
221 dev_dbg(dev, "recv %s\n", enable ? "enable" : "disable");
224 static int sh_irda_set_timeout(struct sh_irda_self *self, int interval)
226 struct device *dev = &self->ndev->dev;
228 if (SH_IRDA_SIR != self->mode)
229 interval = 0;
231 if (interval < 0 || interval > 2) {
232 dev_err(dev, "unsupported timeout interval\n");
233 return -EINVAL;
236 sh_irda_update_bits(self, IRCFR, RTO, interval << RTO_SHIFT);
237 return 0;
240 static int sh_irda_set_baudrate(struct sh_irda_self *self, int baudrate)
242 struct device *dev = &self->ndev->dev;
243 u16 val;
245 if (baudrate < 0)
246 return 0;
248 if (SH_IRDA_SIR != self->mode) {
249 dev_err(dev, "it is not SIR mode\n");
250 return -EINVAL;
254 * Baud rate (bits/s) =
255 * (48 MHz / 26) / (baud rate counter value + 1) x 16
257 val = (48000000 / 26 / 16 / baudrate) - 1;
258 dev_dbg(dev, "baudrate = %d, val = 0x%02x\n", baudrate, val);
260 sh_irda_update_bits(self, SIRBCR, BRC_MASK, val);
262 return 0;
265 static int xir_get_rcv_length(struct sh_irda_self *self)
267 return RFL_MASK & sh_irda_read(self, IRRFLR);
270 /*=====================================
272 * NONE MODE
274 *=====================================*/
275 static int xir_fre(struct sh_irda_self *self)
277 struct device *dev = &self->ndev->dev;
278 dev_err(dev, "none mode: frame recv\n");
279 return 0;
282 static int xir_trov(struct sh_irda_self *self)
284 struct device *dev = &self->ndev->dev;
285 dev_err(dev, "none mode: buffer ram over\n");
286 return 0;
289 static int xir_9(struct sh_irda_self *self)
291 struct device *dev = &self->ndev->dev;
292 dev_err(dev, "none mode: time over\n");
293 return 0;
296 static int xir_8(struct sh_irda_self *self)
298 struct device *dev = &self->ndev->dev;
299 dev_err(dev, "none mode: framing error\n");
300 return 0;
303 static int xir_fte(struct sh_irda_self *self)
305 struct device *dev = &self->ndev->dev;
306 dev_err(dev, "none mode: frame transmit end\n");
307 return 0;
310 static struct sh_irda_xir_func xir_func = {
311 .xir_fre = xir_fre,
312 .xir_trov = xir_trov,
313 .xir_9 = xir_9,
314 .xir_8 = xir_8,
315 .xir_fte = xir_fte,
318 /*=====================================
320 * MIR/FIR MODE
322 * MIR/FIR are not supported now
323 *=====================================*/
324 static struct sh_irda_xir_func mfir_func = {
325 .xir_fre = xir_fre,
326 .xir_trov = xir_trov,
327 .xir_9 = xir_9,
328 .xir_8 = xir_8,
329 .xir_fte = xir_fte,
332 /*=====================================
334 * SIR MODE
336 *=====================================*/
337 static int sir_fre(struct sh_irda_self *self)
339 struct device *dev = &self->ndev->dev;
340 u16 data16;
341 u8 *data = (u8 *)&data16;
342 int len = xir_get_rcv_length(self);
343 int i, j;
345 if (len > IRDARAM_LEN)
346 len = IRDARAM_LEN;
348 dev_dbg(dev, "frame recv length = %d\n", len);
350 for (i = 0; i < len; i++) {
351 j = i % 2;
352 if (!j)
353 data16 = sh_irda_read(self, IRDARAM + i);
355 async_unwrap_char(self->ndev, &self->ndev->stats,
356 &self->rx_buff, data[j]);
358 self->ndev->last_rx = jiffies;
360 sh_irda_rcv_ctrl(self, 1);
362 return 0;
365 static int sir_trov(struct sh_irda_self *self)
367 struct device *dev = &self->ndev->dev;
369 dev_err(dev, "buffer ram over\n");
370 sh_irda_rcv_ctrl(self, 1);
371 return 0;
374 static int sir_tot(struct sh_irda_self *self)
376 struct device *dev = &self->ndev->dev;
378 dev_err(dev, "time over\n");
379 sh_irda_set_baudrate(self, 9600);
380 sh_irda_rcv_ctrl(self, 1);
381 return 0;
384 static int sir_fer(struct sh_irda_self *self)
386 struct device *dev = &self->ndev->dev;
388 dev_err(dev, "framing error\n");
389 sh_irda_rcv_ctrl(self, 1);
390 return 0;
393 static int sir_fte(struct sh_irda_self *self)
395 struct device *dev = &self->ndev->dev;
397 dev_dbg(dev, "frame transmit end\n");
398 netif_wake_queue(self->ndev);
400 return 0;
403 static struct sh_irda_xir_func sir_func = {
404 .xir_fre = sir_fre,
405 .xir_trov = sir_trov,
406 .xir_9 = sir_tot,
407 .xir_8 = sir_fer,
408 .xir_fte = sir_fte,
411 static void sh_irda_set_mode(struct sh_irda_self *self, enum sh_irda_mode mode)
413 struct device *dev = &self->ndev->dev;
414 struct sh_irda_xir_func *func;
415 const char *name;
416 u16 data;
418 switch (mode) {
419 case SH_IRDA_SIR:
420 name = "SIR";
421 data = TMD_SIR;
422 func = &sir_func;
423 break;
424 case SH_IRDA_MIR:
425 name = "MIR";
426 data = TMD_MIR;
427 func = &mfir_func;
428 break;
429 case SH_IRDA_FIR:
430 name = "FIR";
431 data = TMD_FIR;
432 func = &mfir_func;
433 break;
434 default:
435 name = "NONE";
436 data = 0;
437 func = &xir_func;
438 break;
441 self->mode = mode;
442 self->xir_func = func;
443 sh_irda_update_bits(self, IRTMR, TMD_MASK, data);
445 dev_dbg(dev, "switch to %s mode", name);
448 /************************************************************************
451 irq function
454 ************************************************************************/
455 static void sh_irda_set_irq_mask(struct sh_irda_self *self)
457 u16 tmr_hole;
458 u16 xir_reg;
460 /* set all mask */
461 sh_irda_update_bits(self, IRTMR, xIM_MASK, xIM_MASK);
462 sh_irda_update_bits(self, SIRIMR, xIR_MASK, xIR_MASK);
463 sh_irda_update_bits(self, MFIRIMR, xIR_MASK, xIR_MASK);
465 /* clear irq */
466 sh_irda_update_bits(self, SIRICR, xIR_MASK, xIR_MASK);
467 sh_irda_update_bits(self, MFIRICR, xIR_MASK, xIR_MASK);
469 switch (self->mode) {
470 case SH_IRDA_SIR:
471 tmr_hole = SIM;
472 xir_reg = SIRIMR;
473 break;
474 case SH_IRDA_MIR:
475 case SH_IRDA_FIR:
476 tmr_hole = MIM;
477 xir_reg = MFIRIMR;
478 break;
479 default:
480 tmr_hole = 0;
481 xir_reg = 0;
482 break;
485 /* open mask */
486 if (xir_reg) {
487 sh_irda_update_bits(self, IRTMR, tmr_hole, 0);
488 sh_irda_update_bits(self, xir_reg, xIR_MASK, 0);
492 static irqreturn_t sh_irda_irq(int irq, void *dev_id)
494 struct sh_irda_self *self = dev_id;
495 struct sh_irda_xir_func *func = self->xir_func;
496 u16 isr = sh_irda_read(self, SIRISR);
498 /* clear irq */
499 sh_irda_write(self, SIRICR, isr);
501 if (isr & FRE)
502 func->xir_fre(self);
503 if (isr & TROV)
504 func->xir_trov(self);
505 if (isr & xIR_9)
506 func->xir_9(self);
507 if (isr & xIR_8)
508 func->xir_8(self);
509 if (isr & FTE)
510 func->xir_fte(self);
512 return IRQ_HANDLED;
515 /************************************************************************
518 CRC function
521 ************************************************************************/
522 static void sh_irda_crc_reset(struct sh_irda_self *self)
524 sh_irda_write(self, CRCCTR, CRC_RST);
527 static void sh_irda_crc_add(struct sh_irda_self *self, u16 data)
529 sh_irda_write(self, CRCIR, data & CRC_IN_MASK);
532 static u16 sh_irda_crc_cnt(struct sh_irda_self *self)
534 return CRC_CT_MASK & sh_irda_read(self, CRCCTR);
537 static u16 sh_irda_crc_out(struct sh_irda_self *self)
539 return sh_irda_read(self, CRCOR);
542 static int sh_irda_crc_init(struct sh_irda_self *self)
544 struct device *dev = &self->ndev->dev;
545 int ret = -EIO;
546 u16 val;
548 sh_irda_crc_reset(self);
550 sh_irda_crc_add(self, 0xCC);
551 sh_irda_crc_add(self, 0xF5);
552 sh_irda_crc_add(self, 0xF1);
553 sh_irda_crc_add(self, 0xA7);
555 val = sh_irda_crc_cnt(self);
556 if (4 != val) {
557 dev_err(dev, "CRC count error %x\n", val);
558 goto crc_init_out;
561 val = sh_irda_crc_out(self);
562 if (0x51DF != val) {
563 dev_err(dev, "CRC result error%x\n", val);
564 goto crc_init_out;
567 ret = 0;
569 crc_init_out:
571 sh_irda_crc_reset(self);
572 return ret;
575 /************************************************************************
578 iobuf function
581 ************************************************************************/
582 static void sh_irda_remove_iobuf(struct sh_irda_self *self)
584 kfree(self->rx_buff.head);
586 self->tx_buff.head = NULL;
587 self->tx_buff.data = NULL;
588 self->rx_buff.head = NULL;
589 self->rx_buff.data = NULL;
592 static int sh_irda_init_iobuf(struct sh_irda_self *self, int rxsize, int txsize)
594 if (self->rx_buff.head ||
595 self->tx_buff.head) {
596 dev_err(&self->ndev->dev, "iobuff has already existed.");
597 return -EINVAL;
600 /* rx_buff */
601 self->rx_buff.head = kmalloc(rxsize, GFP_KERNEL);
602 if (!self->rx_buff.head)
603 return -ENOMEM;
605 self->rx_buff.truesize = rxsize;
606 self->rx_buff.in_frame = FALSE;
607 self->rx_buff.state = OUTSIDE_FRAME;
608 self->rx_buff.data = self->rx_buff.head;
610 /* tx_buff */
611 self->tx_buff.head = self->membase + IRDARAM;
612 self->tx_buff.truesize = IRDARAM_LEN;
614 return 0;
617 /************************************************************************
620 net_device_ops function
623 ************************************************************************/
624 static int sh_irda_hard_xmit(struct sk_buff *skb, struct net_device *ndev)
626 struct sh_irda_self *self = netdev_priv(ndev);
627 struct device *dev = &self->ndev->dev;
628 int speed = irda_get_next_speed(skb);
629 int ret;
631 dev_dbg(dev, "hard xmit\n");
633 netif_stop_queue(ndev);
634 sh_irda_rcv_ctrl(self, 0);
636 ret = sh_irda_set_baudrate(self, speed);
637 if (ret < 0)
638 return ret;
640 self->tx_buff.len = 0;
641 if (skb->len) {
642 unsigned long flags;
644 spin_lock_irqsave(&self->lock, flags);
645 self->tx_buff.len = async_wrap_skb(skb,
646 self->tx_buff.head,
647 self->tx_buff.truesize);
648 spin_unlock_irqrestore(&self->lock, flags);
650 if (self->tx_buff.len > self->tx_buff.truesize)
651 self->tx_buff.len = self->tx_buff.truesize;
653 sh_irda_write(self, IRTFLR, self->tx_buff.len);
654 sh_irda_write(self, IRTCTR, ARMOD | TE);
657 dev_kfree_skb(skb);
659 return 0;
662 static int sh_irda_ioctl(struct net_device *ndev, struct ifreq *ifreq, int cmd)
664 return 0;
667 static struct net_device_stats *sh_irda_stats(struct net_device *ndev)
669 struct sh_irda_self *self = netdev_priv(ndev);
671 return &self->ndev->stats;
674 static int sh_irda_open(struct net_device *ndev)
676 struct sh_irda_self *self = netdev_priv(ndev);
677 int err;
679 clk_enable(self->clk);
680 err = sh_irda_crc_init(self);
681 if (err)
682 goto open_err;
684 sh_irda_set_mode(self, SH_IRDA_SIR);
685 sh_irda_set_timeout(self, 2);
686 sh_irda_set_baudrate(self, 9600);
688 self->irlap = irlap_open(ndev, &self->qos, DRIVER_NAME);
689 if (!self->irlap) {
690 err = -ENODEV;
691 goto open_err;
694 netif_start_queue(ndev);
695 sh_irda_rcv_ctrl(self, 1);
696 sh_irda_set_irq_mask(self);
698 dev_info(&ndev->dev, "opened\n");
700 return 0;
702 open_err:
703 clk_disable(self->clk);
705 return err;
708 static int sh_irda_stop(struct net_device *ndev)
710 struct sh_irda_self *self = netdev_priv(ndev);
712 /* Stop IrLAP */
713 if (self->irlap) {
714 irlap_close(self->irlap);
715 self->irlap = NULL;
718 netif_stop_queue(ndev);
720 dev_info(&ndev->dev, "stoped\n");
722 return 0;
725 static const struct net_device_ops sh_irda_ndo = {
726 .ndo_open = sh_irda_open,
727 .ndo_stop = sh_irda_stop,
728 .ndo_start_xmit = sh_irda_hard_xmit,
729 .ndo_do_ioctl = sh_irda_ioctl,
730 .ndo_get_stats = sh_irda_stats,
733 /************************************************************************
736 platform_driver function
739 ************************************************************************/
740 static int __devinit sh_irda_probe(struct platform_device *pdev)
742 struct net_device *ndev;
743 struct sh_irda_self *self;
744 struct resource *res;
745 int irq;
746 int err = -ENOMEM;
748 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
749 irq = platform_get_irq(pdev, 0);
750 if (!res || irq < 0) {
751 dev_err(&pdev->dev, "Not enough platform resources.\n");
752 goto exit;
755 ndev = alloc_irdadev(sizeof(*self));
756 if (!ndev)
757 goto exit;
759 self = netdev_priv(ndev);
760 self->membase = ioremap_nocache(res->start, resource_size(res));
761 if (!self->membase) {
762 err = -ENXIO;
763 dev_err(&pdev->dev, "Unable to ioremap.\n");
764 goto err_mem_1;
767 err = sh_irda_init_iobuf(self, IRDA_SKB_MAX_MTU, IRDA_SIR_MAX_FRAME);
768 if (err)
769 goto err_mem_2;
771 self->clk = clk_get(&pdev->dev, NULL);
772 if (IS_ERR(self->clk)) {
773 dev_err(&pdev->dev, "cannot get irda clock\n");
774 goto err_mem_3;
777 irda_init_max_qos_capabilies(&self->qos);
779 ndev->netdev_ops = &sh_irda_ndo;
780 ndev->irq = irq;
782 self->ndev = ndev;
783 self->qos.baud_rate.bits &= IR_9600;
784 self->qos.min_turn_time.bits = 1; /* 10 ms or more */
785 spin_lock_init(&self->lock);
787 irda_qos_bits_to_value(&self->qos);
789 err = register_netdev(ndev);
790 if (err)
791 goto err_mem_4;
793 platform_set_drvdata(pdev, ndev);
795 if (request_irq(irq, sh_irda_irq, IRQF_DISABLED, "sh_irda", self)) {
796 dev_warn(&pdev->dev, "Unable to attach sh_irda interrupt\n");
797 goto err_mem_4;
800 dev_info(&pdev->dev, "SuperH IrDA probed\n");
802 goto exit;
804 err_mem_4:
805 clk_put(self->clk);
806 err_mem_3:
807 sh_irda_remove_iobuf(self);
808 err_mem_2:
809 iounmap(self->membase);
810 err_mem_1:
811 free_netdev(ndev);
812 exit:
813 return err;
816 static int __devexit sh_irda_remove(struct platform_device *pdev)
818 struct net_device *ndev = platform_get_drvdata(pdev);
819 struct sh_irda_self *self = netdev_priv(ndev);
821 if (!self)
822 return 0;
824 unregister_netdev(ndev);
825 clk_put(self->clk);
826 sh_irda_remove_iobuf(self);
827 iounmap(self->membase);
828 free_netdev(ndev);
829 platform_set_drvdata(pdev, NULL);
831 return 0;
834 static struct platform_driver sh_irda_driver = {
835 .probe = sh_irda_probe,
836 .remove = __devexit_p(sh_irda_remove),
837 .driver = {
838 .name = DRIVER_NAME,
842 static int __init sh_irda_init(void)
844 return platform_driver_register(&sh_irda_driver);
847 static void __exit sh_irda_exit(void)
849 platform_driver_unregister(&sh_irda_driver);
852 module_init(sh_irda_init);
853 module_exit(sh_irda_exit);
855 MODULE_AUTHOR("Kuninori Morimoto <morimoto.kuninori@renesas.com>");
856 MODULE_DESCRIPTION("SuperH IrDA driver");
857 MODULE_LICENSE("GPL");