blob: 0b5a2e2a7be454654cf59213fdabb4ec1222a5a5 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/drivers/net/irda/sa1100_ir.c
3 *
4 * Copyright (C) 2000-2001 Russell King
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
9 *
10 * Infra-red driver for the StrongARM SA1100 embedded microprocessor
11 *
12 * Note that we don't have to worry about the SA1111's DMA bugs in here,
13 * so we use the straight forward dma_map_* functions with a null pointer.
14 *
15 * This driver takes one kernel command line parameter, sa1100ir=, with
16 * the following options:
17 * max_rate:baudrate - set the maximum baud rate
Russell King15877e92012-01-08 12:04:05 +000018 * power_level:level - set the transmitter power level
Linus Torvalds1da177e2005-04-16 15:20:36 -070019 * tx_lpm:0|1 - set transmit low power mode
20 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include <linux/module.h>
22#include <linux/moduleparam.h>
23#include <linux/types.h>
24#include <linux/init.h>
25#include <linux/errno.h>
26#include <linux/netdevice.h>
27#include <linux/slab.h>
28#include <linux/rtnetlink.h>
29#include <linux/interrupt.h>
30#include <linux/delay.h>
Russell Kingd052d1b2005-10-29 19:07:23 +010031#include <linux/platform_device.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include <linux/dma-mapping.h>
33
34#include <net/irda/irda.h>
35#include <net/irda/wrapper.h>
36#include <net/irda/irda_device.h>
37
Russell Kingd281bc92008-12-01 23:01:19 +000038#include <mach/dma.h>
Russell Kinga09e64f2008-08-05 16:14:15 +010039#include <mach/hardware.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070040#include <asm/mach/irda.h>
41
42static int power_level = 3;
43static int tx_lpm;
44static int max_rate = 4000000;
45
Russell King885767c2012-01-08 12:53:22 +000046struct sa1100_buf {
47 struct sk_buff *skb;
48 dma_addr_t dma;
49 dma_regs_t *regs;
50};
51
Linus Torvalds1da177e2005-04-16 15:20:36 -070052struct sa1100_irda {
53 unsigned char hscr0;
54 unsigned char utcr4;
55 unsigned char power;
56 unsigned char open;
57
58 int speed;
59 int newspeed;
60
Russell King885767c2012-01-08 12:53:22 +000061 struct sa1100_buf dma_rx;
62 struct sa1100_buf dma_tx;
Linus Torvalds1da177e2005-04-16 15:20:36 -070063
Linus Torvalds1da177e2005-04-16 15:20:36 -070064 struct device *dev;
65 struct irda_platform_data *pdata;
66 struct irlap_cb *irlap;
67 struct qos_info qos;
68
69 iobuff_t tx_buff;
70 iobuff_t rx_buff;
Russell King3d26db12012-01-08 16:16:39 +000071
72 int (*tx_start)(struct sk_buff *, struct net_device *, struct sa1100_irda *);
Russell King374f7732012-01-08 16:26:15 +000073 irqreturn_t (*irq)(struct net_device *, struct sa1100_irda *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070074};
75
Russell King0e888ee2012-01-08 16:30:44 +000076static int sa1100_irda_set_speed(struct sa1100_irda *, int);
77
Linus Torvalds1da177e2005-04-16 15:20:36 -070078#define IS_FIR(si) ((si)->speed >= 4000000)
79
80#define HPSIR_MAX_RXLEN 2047
81
82/*
83 * Allocate and map the receive buffer, unless it is already allocated.
84 */
85static int sa1100_irda_rx_alloc(struct sa1100_irda *si)
86{
Russell King885767c2012-01-08 12:53:22 +000087 if (si->dma_rx.skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 return 0;
89
Russell King885767c2012-01-08 12:53:22 +000090 si->dma_rx.skb = alloc_skb(HPSIR_MAX_RXLEN + 1, GFP_ATOMIC);
91 if (!si->dma_rx.skb) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 printk(KERN_ERR "sa1100_ir: out of memory for RX SKB\n");
93 return -ENOMEM;
94 }
95
96 /*
97 * Align any IP headers that may be contained
98 * within the frame.
99 */
Russell King885767c2012-01-08 12:53:22 +0000100 skb_reserve(si->dma_rx.skb, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101
Russell King885767c2012-01-08 12:53:22 +0000102 si->dma_rx.dma = dma_map_single(si->dev, si->dma_rx.skb->data,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 HPSIR_MAX_RXLEN,
104 DMA_FROM_DEVICE);
Russell King885767c2012-01-08 12:53:22 +0000105 if (dma_mapping_error(si->dev, si->dma_rx.dma)) {
106 dev_kfree_skb_any(si->dma_rx.skb);
Russell King22f0bf92012-01-08 13:55:23 +0000107 return -ENOMEM;
108 }
109
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 return 0;
111}
112
113/*
114 * We want to get here as soon as possible, and get the receiver setup.
115 * We use the existing buffer.
116 */
117static void sa1100_irda_rx_dma_start(struct sa1100_irda *si)
118{
Russell King885767c2012-01-08 12:53:22 +0000119 if (!si->dma_rx.skb) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 printk(KERN_ERR "sa1100_ir: rx buffer went missing\n");
121 return;
122 }
123
124 /*
125 * First empty receive FIFO
126 */
127 Ser2HSCR0 = si->hscr0 | HSCR0_HSSP;
128
129 /*
130 * Enable the DMA, receiver and receive interrupt.
131 */
Russell King885767c2012-01-08 12:53:22 +0000132 sa1100_clear_dma(si->dma_rx.regs);
133 sa1100_start_dma(si->dma_rx.regs, si->dma_rx.dma, HPSIR_MAX_RXLEN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 Ser2HSCR0 = si->hscr0 | HSCR0_HSSP | HSCR0_RXE;
135}
136
Russell King0e888ee2012-01-08 16:30:44 +0000137static void sa1100_irda_check_speed(struct sa1100_irda *si)
138{
139 if (si->newspeed) {
140 sa1100_irda_set_speed(si, si->newspeed);
141 si->newspeed = 0;
142 }
143}
144
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145/*
Russell King3d26db12012-01-08 16:16:39 +0000146 * HP-SIR format support.
147 */
148static int sa1100_irda_sir_tx_start(struct sk_buff *skb, struct net_device *dev,
149 struct sa1100_irda *si)
150{
151 si->tx_buff.data = si->tx_buff.head;
152 si->tx_buff.len = async_wrap_skb(skb, si->tx_buff.data,
153 si->tx_buff.truesize);
154
155 /*
156 * Set the transmit interrupt enable. This will fire off an
157 * interrupt immediately. Note that we disable the receiver
158 * so we won't get spurious characters received.
159 */
160 Ser2UTCR3 = UTCR3_TIE | UTCR3_TXE;
161
162 dev_kfree_skb(skb);
163
164 return NETDEV_TX_OK;
165}
166
Russell Kinga6b2ea62012-01-08 17:10:01 +0000167static irqreturn_t sa1100_irda_sir_irq(struct net_device *dev, struct sa1100_irda *si)
168{
169 int status;
170
171 status = Ser2UTSR0;
172
173 /*
174 * Deal with any receive errors first. The bytes in error may be
175 * the only bytes in the receive FIFO, so we do this first.
176 */
177 while (status & UTSR0_EIF) {
178 int stat, data;
179
180 stat = Ser2UTSR1;
181 data = Ser2UTDR;
182
183 if (stat & (UTSR1_FRE | UTSR1_ROR)) {
184 dev->stats.rx_errors++;
185 if (stat & UTSR1_FRE)
186 dev->stats.rx_frame_errors++;
187 if (stat & UTSR1_ROR)
188 dev->stats.rx_fifo_errors++;
189 } else
190 async_unwrap_char(dev, &dev->stats, &si->rx_buff, data);
191
192 status = Ser2UTSR0;
193 }
194
195 /*
196 * We must clear certain bits.
197 */
198 Ser2UTSR0 = status & (UTSR0_RID | UTSR0_RBB | UTSR0_REB);
199
200 if (status & UTSR0_RFS) {
201 /*
202 * There are at least 4 bytes in the FIFO. Read 3 bytes
203 * and leave the rest to the block below.
204 */
205 async_unwrap_char(dev, &dev->stats, &si->rx_buff, Ser2UTDR);
206 async_unwrap_char(dev, &dev->stats, &si->rx_buff, Ser2UTDR);
207 async_unwrap_char(dev, &dev->stats, &si->rx_buff, Ser2UTDR);
208 }
209
210 if (status & (UTSR0_RFS | UTSR0_RID)) {
211 /*
212 * Fifo contains more than 1 character.
213 */
214 do {
215 async_unwrap_char(dev, &dev->stats, &si->rx_buff,
216 Ser2UTDR);
217 } while (Ser2UTSR1 & UTSR1_RNE);
218
219 }
220
221 if (status & UTSR0_TFS && si->tx_buff.len) {
222 /*
223 * Transmitter FIFO is not full
224 */
225 do {
226 Ser2UTDR = *si->tx_buff.data++;
227 si->tx_buff.len -= 1;
228 } while (Ser2UTSR1 & UTSR1_TNF && si->tx_buff.len);
229
230 if (si->tx_buff.len == 0) {
231 dev->stats.tx_packets++;
232 dev->stats.tx_bytes += si->tx_buff.data -
233 si->tx_buff.head;
234
235 /*
236 * We need to ensure that the transmitter has
237 * finished.
238 */
239 do
240 rmb();
241 while (Ser2UTSR1 & UTSR1_TBY);
242
243 /*
244 * Ok, we've finished transmitting. Now enable
245 * the receiver. Sometimes we get a receive IRQ
246 * immediately after a transmit...
247 */
248 Ser2UTSR0 = UTSR0_REB | UTSR0_RBB | UTSR0_RID;
249 Ser2UTCR3 = UTCR3_RIE | UTCR3_RXE | UTCR3_TXE;
250
251 sa1100_irda_check_speed(si);
252
253 /* I'm hungry! */
254 netif_wake_queue(dev);
255 }
256 }
257
258 return IRQ_HANDLED;
259}
260
Russell King3d26db12012-01-08 16:16:39 +0000261/*
262 * FIR format support.
263 */
Russell King26f2bee2012-01-08 17:48:02 +0000264static void sa1100_irda_firtxdma_irq(void *id)
265{
266 struct net_device *dev = id;
267 struct sa1100_irda *si = netdev_priv(dev);
268 struct sk_buff *skb;
269
270 /*
271 * Wait for the transmission to complete. Unfortunately,
272 * the hardware doesn't give us an interrupt to indicate
273 * "end of frame".
274 */
275 do
276 rmb();
277 while (!(Ser2HSSR0 & HSSR0_TUR) || Ser2HSSR1 & HSSR1_TBY);
278
279 /*
280 * Clear the transmit underrun bit.
281 */
282 Ser2HSSR0 = HSSR0_TUR;
283
284 /*
285 * Do we need to change speed? Note that we're lazy
286 * here - we don't free the old dma_rx.skb. We don't need
287 * to allocate a buffer either.
288 */
289 sa1100_irda_check_speed(si);
290
291 /*
292 * Start reception. This disables the transmitter for
293 * us. This will be using the existing RX buffer.
294 */
295 sa1100_irda_rx_dma_start(si);
296
297 /* Account and free the packet. */
298 skb = si->dma_tx.skb;
299 if (skb) {
300 dma_unmap_single(si->dev, si->dma_tx.dma, skb->len,
301 DMA_TO_DEVICE);
302 dev->stats.tx_packets ++;
303 dev->stats.tx_bytes += skb->len;
304 dev_kfree_skb_irq(skb);
305 si->dma_tx.skb = NULL;
306 }
307
308 /*
309 * Make sure that the TX queue is available for sending
310 * (for retries). TX has priority over RX at all times.
311 */
312 netif_wake_queue(dev);
313}
314
Russell King3d26db12012-01-08 16:16:39 +0000315static int sa1100_irda_fir_tx_start(struct sk_buff *skb, struct net_device *dev,
316 struct sa1100_irda *si)
317{
318 int mtt = irda_get_mtt(skb);
319
320 si->dma_tx.skb = skb;
321 si->dma_tx.dma = dma_map_single(si->dev, skb->data, skb->len,
322 DMA_TO_DEVICE);
323 if (dma_mapping_error(si->dev, si->dma_tx.dma)) {
324 si->dma_tx.skb = NULL;
325 netif_wake_queue(dev);
326 dev->stats.tx_dropped++;
327 dev_kfree_skb(skb);
328 return NETDEV_TX_OK;
329 }
330
331 sa1100_start_dma(si->dma_tx.regs, si->dma_tx.dma, skb->len);
332
333 /*
334 * If we have a mean turn-around time, impose the specified
335 * specified delay. We could shorten this by timing from
336 * the point we received the packet.
337 */
338 if (mtt)
339 udelay(mtt);
340
341 Ser2HSCR0 = si->hscr0 | HSCR0_HSSP | HSCR0_TXE;
342
343 return NETDEV_TX_OK;
344}
345
Russell Kinga6b2ea62012-01-08 17:10:01 +0000346static void sa1100_irda_fir_error(struct sa1100_irda *si, struct net_device *dev)
347{
348 struct sk_buff *skb = si->dma_rx.skb;
349 dma_addr_t dma_addr;
350 unsigned int len, stat, data;
351
352 if (!skb) {
353 printk(KERN_ERR "sa1100_ir: SKB is NULL!\n");
354 return;
355 }
356
357 /*
358 * Get the current data position.
359 */
360 dma_addr = sa1100_get_dma_pos(si->dma_rx.regs);
361 len = dma_addr - si->dma_rx.dma;
362 if (len > HPSIR_MAX_RXLEN)
363 len = HPSIR_MAX_RXLEN;
364 dma_unmap_single(si->dev, si->dma_rx.dma, len, DMA_FROM_DEVICE);
365
366 do {
367 /*
368 * Read Status, and then Data.
369 */
370 stat = Ser2HSSR1;
371 rmb();
372 data = Ser2HSDR;
373
374 if (stat & (HSSR1_CRE | HSSR1_ROR)) {
375 dev->stats.rx_errors++;
376 if (stat & HSSR1_CRE)
377 dev->stats.rx_crc_errors++;
378 if (stat & HSSR1_ROR)
379 dev->stats.rx_frame_errors++;
380 } else
381 skb->data[len++] = data;
382
383 /*
384 * If we hit the end of frame, there's
385 * no point in continuing.
386 */
387 if (stat & HSSR1_EOF)
388 break;
389 } while (Ser2HSSR0 & HSSR0_EIF);
390
391 if (stat & HSSR1_EOF) {
392 si->dma_rx.skb = NULL;
393
394 skb_put(skb, len);
395 skb->dev = dev;
396 skb_reset_mac_header(skb);
397 skb->protocol = htons(ETH_P_IRDA);
398 dev->stats.rx_packets++;
399 dev->stats.rx_bytes += len;
400
401 /*
402 * Before we pass the buffer up, allocate a new one.
403 */
404 sa1100_irda_rx_alloc(si);
405
406 netif_rx(skb);
407 } else {
408 /*
409 * Remap the buffer - it was previously mapped, and we
410 * hope that this succeeds.
411 */
412 si->dma_rx.dma = dma_map_single(si->dev, si->dma_rx.skb->data,
413 HPSIR_MAX_RXLEN,
414 DMA_FROM_DEVICE);
415 }
416}
417
418/*
419 * We only have to handle RX events here; transmit events go via the TX
420 * DMA handler. We disable RX, process, and the restart RX.
421 */
422static irqreturn_t sa1100_irda_fir_irq(struct net_device *dev, struct sa1100_irda *si)
423{
424 /*
425 * Stop RX DMA
426 */
427 sa1100_stop_dma(si->dma_rx.regs);
428
429 /*
430 * Framing error - we throw away the packet completely.
431 * Clearing RXE flushes the error conditions and data
432 * from the fifo.
433 */
434 if (Ser2HSSR0 & (HSSR0_FRE | HSSR0_RAB)) {
435 dev->stats.rx_errors++;
436
437 if (Ser2HSSR0 & HSSR0_FRE)
438 dev->stats.rx_frame_errors++;
439
440 /*
441 * Clear out the DMA...
442 */
443 Ser2HSCR0 = si->hscr0 | HSCR0_HSSP;
444
445 /*
446 * Clear selected status bits now, so we
447 * don't miss them next time around.
448 */
449 Ser2HSSR0 = HSSR0_FRE | HSSR0_RAB;
450 }
451
452 /*
453 * Deal with any receive errors. The any of the lowest
454 * 8 bytes in the FIFO may contain an error. We must read
455 * them one by one. The "error" could even be the end of
456 * packet!
457 */
458 if (Ser2HSSR0 & HSSR0_EIF)
459 sa1100_irda_fir_error(si, dev);
460
461 /*
462 * No matter what happens, we must restart reception.
463 */
464 sa1100_irda_rx_dma_start(si);
465
466 return IRQ_HANDLED;
467}
Russell King3d26db12012-01-08 16:16:39 +0000468
469/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 * Set the IrDA communications speed.
471 */
472static int sa1100_irda_set_speed(struct sa1100_irda *si, int speed)
473{
474 unsigned long flags;
475 int brd, ret = -EINVAL;
476
477 switch (speed) {
478 case 9600: case 19200: case 38400:
479 case 57600: case 115200:
480 brd = 3686400 / (16 * speed) - 1;
481
482 /*
483 * Stop the receive DMA.
484 */
485 if (IS_FIR(si))
Russell King885767c2012-01-08 12:53:22 +0000486 sa1100_stop_dma(si->dma_rx.regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487
488 local_irq_save(flags);
489
490 Ser2UTCR3 = 0;
491 Ser2HSCR0 = HSCR0_UART;
492
493 Ser2UTCR1 = brd >> 8;
494 Ser2UTCR2 = brd;
495
496 /*
497 * Clear status register
498 */
499 Ser2UTSR0 = UTSR0_REB | UTSR0_RBB | UTSR0_RID;
500 Ser2UTCR3 = UTCR3_RIE | UTCR3_RXE | UTCR3_TXE;
501
502 if (si->pdata->set_speed)
503 si->pdata->set_speed(si->dev, speed);
504
505 si->speed = speed;
Russell King3d26db12012-01-08 16:16:39 +0000506 si->tx_start = sa1100_irda_sir_tx_start;
Russell King374f7732012-01-08 16:26:15 +0000507 si->irq = sa1100_irda_sir_irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508
509 local_irq_restore(flags);
510 ret = 0;
511 break;
512
513 case 4000000:
514 local_irq_save(flags);
515
516 si->hscr0 = 0;
517
518 Ser2HSSR0 = 0xff;
519 Ser2HSCR0 = si->hscr0 | HSCR0_HSSP;
520 Ser2UTCR3 = 0;
521
522 si->speed = speed;
Russell King3d26db12012-01-08 16:16:39 +0000523 si->tx_start = sa1100_irda_fir_tx_start;
Russell King374f7732012-01-08 16:26:15 +0000524 si->irq = sa1100_irda_fir_irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525
526 if (si->pdata->set_speed)
527 si->pdata->set_speed(si->dev, speed);
528
529 sa1100_irda_rx_alloc(si);
530 sa1100_irda_rx_dma_start(si);
531
532 local_irq_restore(flags);
533
534 break;
535
536 default:
537 break;
538 }
539
540 return ret;
541}
542
543/*
544 * Control the power state of the IrDA transmitter.
545 * State:
546 * 0 - off
547 * 1 - short range, lowest power
548 * 2 - medium range, medium power
549 * 3 - maximum range, high power
550 *
551 * Currently, only assabet is known to support this.
552 */
553static int
554__sa1100_irda_set_power(struct sa1100_irda *si, unsigned int state)
555{
556 int ret = 0;
557 if (si->pdata->set_power)
558 ret = si->pdata->set_power(si->dev, state);
559 return ret;
560}
561
562static inline int
563sa1100_set_power(struct sa1100_irda *si, unsigned int state)
564{
565 int ret;
566
567 ret = __sa1100_irda_set_power(si, state);
568 if (ret == 0)
569 si->power = state;
570
571 return ret;
572}
573
David Howells7d12e782006-10-05 14:55:46 +0100574static irqreturn_t sa1100_irda_irq(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575{
576 struct net_device *dev = dev_id;
Russell King374f7732012-01-08 16:26:15 +0000577 struct sa1100_irda *si = netdev_priv(dev);
578
579 return si->irq(dev, si);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580}
581
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582static int sa1100_irda_hard_xmit(struct sk_buff *skb, struct net_device *dev)
583{
Wang Chen4cf16532008-11-12 23:38:14 -0800584 struct sa1100_irda *si = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 int speed = irda_get_next_speed(skb);
586
587 /*
588 * Does this packet contain a request to change the interface
589 * speed? If so, remember it until we complete the transmission
590 * of this frame.
591 */
592 if (speed != si->speed && speed != -1)
593 si->newspeed = speed;
594
Russell King3d26db12012-01-08 16:16:39 +0000595 /* If this is an empty frame, we can bypass a lot. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 if (skb->len == 0) {
Russell King0e888ee2012-01-08 16:30:44 +0000597 sa1100_irda_check_speed(si);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 dev_kfree_skb(skb);
Patrick McHardy6ed10652009-06-23 06:03:08 +0000599 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 }
601
Russell King3d26db12012-01-08 16:16:39 +0000602 netif_stop_queue(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603
Russell King3d26db12012-01-08 16:16:39 +0000604 /* We must not already have a skb to transmit... */
605 BUG_ON(si->dma_tx.skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606
Russell King3d26db12012-01-08 16:16:39 +0000607 return si->tx_start(skb, dev, si);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608}
609
610static int
611sa1100_irda_ioctl(struct net_device *dev, struct ifreq *ifreq, int cmd)
612{
613 struct if_irda_req *rq = (struct if_irda_req *)ifreq;
Wang Chen4cf16532008-11-12 23:38:14 -0800614 struct sa1100_irda *si = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 int ret = -EOPNOTSUPP;
616
617 switch (cmd) {
618 case SIOCSBANDWIDTH:
619 if (capable(CAP_NET_ADMIN)) {
620 /*
621 * We are unable to set the speed if the
622 * device is not running.
623 */
624 if (si->open) {
625 ret = sa1100_irda_set_speed(si,
626 rq->ifr_baudrate);
627 } else {
628 printk("sa1100_irda_ioctl: SIOCSBANDWIDTH: !netif_running\n");
629 ret = 0;
630 }
631 }
632 break;
633
634 case SIOCSMEDIABUSY:
635 ret = -EPERM;
636 if (capable(CAP_NET_ADMIN)) {
637 irda_device_set_media_busy(dev, TRUE);
638 ret = 0;
639 }
640 break;
641
642 case SIOCGRECEIVING:
643 rq->ifr_receiving = IS_FIR(si) ? 0
644 : si->rx_buff.state != OUTSIDE_FRAME;
645 break;
646
647 default:
648 break;
649 }
650
651 return ret;
652}
653
Russell Kingcbe1d242012-01-08 16:40:07 +0000654static int sa1100_irda_startup(struct sa1100_irda *si)
655{
656 int ret;
657
658 /*
659 * Ensure that the ports for this device are setup correctly.
660 */
661 if (si->pdata->startup) {
662 ret = si->pdata->startup(si->dev);
663 if (ret)
664 return ret;
665 }
666
667 /*
668 * Configure PPC for IRDA - we want to drive TXD2 low.
669 * We also want to drive this pin low during sleep.
670 */
671 PPSR &= ~PPC_TXD2;
672 PSDR &= ~PPC_TXD2;
673 PPDR |= PPC_TXD2;
674
675 /*
676 * Enable HP-SIR modulation, and ensure that the port is disabled.
677 */
678 Ser2UTCR3 = 0;
679 Ser2HSCR0 = HSCR0_UART;
680 Ser2UTCR4 = si->utcr4;
681 Ser2UTCR0 = UTCR0_8BitData;
682 Ser2HSCR2 = HSCR2_TrDataH | HSCR2_RcDataL;
683
684 /*
685 * Clear status register
686 */
687 Ser2UTSR0 = UTSR0_REB | UTSR0_RBB | UTSR0_RID;
688
689 ret = sa1100_irda_set_speed(si, si->speed = 9600);
690 if (ret) {
691 Ser2UTCR3 = 0;
692 Ser2HSCR0 = 0;
693
694 if (si->pdata->shutdown)
695 si->pdata->shutdown(si->dev);
696 }
697
698 return ret;
699}
700
701static void sa1100_irda_shutdown(struct sa1100_irda *si)
702{
703 /*
704 * Stop all DMA activity.
705 */
706 sa1100_stop_dma(si->dma_rx.regs);
707 sa1100_stop_dma(si->dma_tx.regs);
708
709 /* Disable the port. */
710 Ser2UTCR3 = 0;
711 Ser2HSCR0 = 0;
712
713 if (si->pdata->shutdown)
714 si->pdata->shutdown(si->dev);
715}
716
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717static int sa1100_irda_start(struct net_device *dev)
718{
Wang Chen4cf16532008-11-12 23:38:14 -0800719 struct sa1100_irda *si = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 int err;
721
722 si->speed = 9600;
723
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 err = sa1100_request_dma(DMA_Ser2HSSPRd, "IrDA receive",
Russell King885767c2012-01-08 12:53:22 +0000725 NULL, NULL, &si->dma_rx.regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 if (err)
727 goto err_rx_dma;
728
729 err = sa1100_request_dma(DMA_Ser2HSSPWr, "IrDA transmit",
Russell King26f2bee2012-01-08 17:48:02 +0000730 sa1100_irda_firtxdma_irq, dev,
731 &si->dma_tx.regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732 if (err)
733 goto err_tx_dma;
734
735 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 * Setup the serial port for the specified speed.
737 */
738 err = sa1100_irda_startup(si);
739 if (err)
740 goto err_startup;
741
742 /*
743 * Open a new IrLAP layer instance.
744 */
745 si->irlap = irlap_open(dev, &si->qos, "sa1100");
746 err = -ENOMEM;
747 if (!si->irlap)
748 goto err_irlap;
749
Russell King374f7732012-01-08 16:26:15 +0000750 err = request_irq(dev->irq, sa1100_irda_irq, 0, dev->name, dev);
751 if (err)
752 goto err_irq;
753
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 /*
755 * Now enable the interrupt and start the queue
756 */
757 si->open = 1;
758 sa1100_set_power(si, power_level); /* low power mode */
Russell King374f7732012-01-08 16:26:15 +0000759
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 netif_start_queue(dev);
761 return 0;
762
Russell King374f7732012-01-08 16:26:15 +0000763err_irq:
764 irlap_close(si->irlap);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765err_irlap:
766 si->open = 0;
767 sa1100_irda_shutdown(si);
768err_startup:
Russell King885767c2012-01-08 12:53:22 +0000769 sa1100_free_dma(si->dma_tx.regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770err_tx_dma:
Russell King885767c2012-01-08 12:53:22 +0000771 sa1100_free_dma(si->dma_rx.regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772err_rx_dma:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 return err;
774}
775
776static int sa1100_irda_stop(struct net_device *dev)
777{
Wang Chen4cf16532008-11-12 23:38:14 -0800778 struct sa1100_irda *si = netdev_priv(dev);
Russell Kingba845252012-01-08 15:38:15 +0000779 struct sk_buff *skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780
Russell King374f7732012-01-08 16:26:15 +0000781 netif_stop_queue(dev);
782
783 si->open = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 sa1100_irda_shutdown(si);
785
786 /*
Russell Kingba845252012-01-08 15:38:15 +0000787 * If we have been doing any DMA activity, make sure we
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 * tidy that up cleanly.
789 */
Russell Kingba845252012-01-08 15:38:15 +0000790 skb = si->dma_rx.skb;
791 if (skb) {
Russell King885767c2012-01-08 12:53:22 +0000792 dma_unmap_single(si->dev, si->dma_rx.dma, HPSIR_MAX_RXLEN,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 DMA_FROM_DEVICE);
Russell Kingba845252012-01-08 15:38:15 +0000794 dev_kfree_skb(skb);
Russell King885767c2012-01-08 12:53:22 +0000795 si->dma_rx.skb = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 }
797
Russell Kingba845252012-01-08 15:38:15 +0000798 skb = si->dma_tx.skb;
799 if (skb) {
800 dma_unmap_single(si->dev, si->dma_tx.dma, skb->len,
801 DMA_TO_DEVICE);
802 dev_kfree_skb(skb);
803 si->dma_tx.skb = NULL;
804 }
805
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 /* Stop IrLAP */
807 if (si->irlap) {
808 irlap_close(si->irlap);
809 si->irlap = NULL;
810 }
811
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 /*
813 * Free resources
814 */
Russell King885767c2012-01-08 12:53:22 +0000815 sa1100_free_dma(si->dma_tx.regs);
816 sa1100_free_dma(si->dma_rx.regs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 free_irq(dev->irq, dev);
818
819 sa1100_set_power(si, 0);
820
821 return 0;
822}
823
824static int sa1100_irda_init_iobuf(iobuff_t *io, int size)
825{
826 io->head = kmalloc(size, GFP_KERNEL | GFP_DMA);
827 if (io->head != NULL) {
828 io->truesize = size;
829 io->in_frame = FALSE;
830 io->state = OUTSIDE_FRAME;
831 io->data = io->head;
832 }
833 return io->head ? 0 : -ENOMEM;
834}
835
Alexander Beregalova1de9662009-04-15 12:52:42 +0000836static const struct net_device_ops sa1100_irda_netdev_ops = {
837 .ndo_open = sa1100_irda_start,
838 .ndo_stop = sa1100_irda_stop,
839 .ndo_start_xmit = sa1100_irda_hard_xmit,
840 .ndo_do_ioctl = sa1100_irda_ioctl,
Alexander Beregalova1de9662009-04-15 12:52:42 +0000841};
842
Russell King3ae5eae2005-11-09 22:32:44 +0000843static int sa1100_irda_probe(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 struct net_device *dev;
846 struct sa1100_irda *si;
847 unsigned int baudrate_mask;
Russell Kinge556fdb2012-01-08 12:02:17 +0000848 int err, irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849
850 if (!pdev->dev.platform_data)
851 return -EINVAL;
852
Russell Kinge556fdb2012-01-08 12:02:17 +0000853 irq = platform_get_irq(pdev, 0);
854 if (irq <= 0)
855 return irq < 0 ? irq : -ENXIO;
856
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857 err = request_mem_region(__PREG(Ser2UTCR0), 0x24, "IrDA") ? 0 : -EBUSY;
858 if (err)
859 goto err_mem_1;
860 err = request_mem_region(__PREG(Ser2HSCR0), 0x1c, "IrDA") ? 0 : -EBUSY;
861 if (err)
862 goto err_mem_2;
863 err = request_mem_region(__PREG(Ser2HSCR2), 0x04, "IrDA") ? 0 : -EBUSY;
864 if (err)
865 goto err_mem_3;
866
867 dev = alloc_irdadev(sizeof(struct sa1100_irda));
868 if (!dev)
869 goto err_mem_4;
870
Russell Kingd3238602012-01-08 12:07:24 +0000871 SET_NETDEV_DEV(dev, &pdev->dev);
872
Wang Chen4cf16532008-11-12 23:38:14 -0800873 si = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874 si->dev = &pdev->dev;
875 si->pdata = pdev->dev.platform_data;
876
877 /*
878 * Initialise the HP-SIR buffers
879 */
880 err = sa1100_irda_init_iobuf(&si->rx_buff, 14384);
881 if (err)
882 goto err_mem_5;
883 err = sa1100_irda_init_iobuf(&si->tx_buff, 4000);
884 if (err)
885 goto err_mem_5;
886
Alexander Beregalova1de9662009-04-15 12:52:42 +0000887 dev->netdev_ops = &sa1100_irda_netdev_ops;
Russell Kinge556fdb2012-01-08 12:02:17 +0000888 dev->irq = irq;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889
890 irda_init_max_qos_capabilies(&si->qos);
891
892 /*
893 * We support original IRDA up to 115k2. (we don't currently
894 * support 4Mbps). Min Turn Time set to 1ms or greater.
895 */
896 baudrate_mask = IR_9600;
897
898 switch (max_rate) {
899 case 4000000: baudrate_mask |= IR_4000000 << 8;
900 case 115200: baudrate_mask |= IR_115200;
901 case 57600: baudrate_mask |= IR_57600;
902 case 38400: baudrate_mask |= IR_38400;
903 case 19200: baudrate_mask |= IR_19200;
904 }
905
906 si->qos.baud_rate.bits &= baudrate_mask;
907 si->qos.min_turn_time.bits = 7;
908
909 irda_qos_bits_to_value(&si->qos);
910
911 si->utcr4 = UTCR4_HPSIR;
912 if (tx_lpm)
913 si->utcr4 |= UTCR4_Z1_6us;
914
915 /*
916 * Initially enable HP-SIR modulation, and ensure that the port
917 * is disabled.
918 */
919 Ser2UTCR3 = 0;
920 Ser2UTCR4 = si->utcr4;
921 Ser2HSCR0 = HSCR0_UART;
922
923 err = register_netdev(dev);
924 if (err == 0)
Russell King3ae5eae2005-11-09 22:32:44 +0000925 platform_set_drvdata(pdev, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926
927 if (err) {
928 err_mem_5:
929 kfree(si->tx_buff.head);
930 kfree(si->rx_buff.head);
931 free_netdev(dev);
932 err_mem_4:
933 release_mem_region(__PREG(Ser2HSCR2), 0x04);
934 err_mem_3:
935 release_mem_region(__PREG(Ser2HSCR0), 0x1c);
936 err_mem_2:
937 release_mem_region(__PREG(Ser2UTCR0), 0x24);
938 }
939 err_mem_1:
940 return err;
941}
942
Russell King3ae5eae2005-11-09 22:32:44 +0000943static int sa1100_irda_remove(struct platform_device *pdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944{
Russell King3ae5eae2005-11-09 22:32:44 +0000945 struct net_device *dev = platform_get_drvdata(pdev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946
947 if (dev) {
Wang Chen4cf16532008-11-12 23:38:14 -0800948 struct sa1100_irda *si = netdev_priv(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949 unregister_netdev(dev);
950 kfree(si->tx_buff.head);
951 kfree(si->rx_buff.head);
952 free_netdev(dev);
953 }
954
955 release_mem_region(__PREG(Ser2HSCR2), 0x04);
956 release_mem_region(__PREG(Ser2HSCR0), 0x1c);
957 release_mem_region(__PREG(Ser2UTCR0), 0x24);
958
959 return 0;
960}
961
Russell Kingcbe1d242012-01-08 16:40:07 +0000962#ifdef CONFIG_PM
963/*
964 * Suspend the IrDA interface.
965 */
966static int sa1100_irda_suspend(struct platform_device *pdev, pm_message_t state)
967{
968 struct net_device *dev = platform_get_drvdata(pdev);
969 struct sa1100_irda *si;
970
971 if (!dev)
972 return 0;
973
974 si = netdev_priv(dev);
975 if (si->open) {
976 /*
977 * Stop the transmit queue
978 */
979 netif_device_detach(dev);
980 disable_irq(dev->irq);
981 sa1100_irda_shutdown(si);
982 __sa1100_irda_set_power(si, 0);
983 }
984
985 return 0;
986}
987
988/*
989 * Resume the IrDA interface.
990 */
991static int sa1100_irda_resume(struct platform_device *pdev)
992{
993 struct net_device *dev = platform_get_drvdata(pdev);
994 struct sa1100_irda *si;
995
996 if (!dev)
997 return 0;
998
999 si = netdev_priv(dev);
1000 if (si->open) {
1001 /*
1002 * If we missed a speed change, initialise at the new speed
1003 * directly. It is debatable whether this is actually
1004 * required, but in the interests of continuing from where
1005 * we left off it is desirable. The converse argument is
1006 * that we should re-negotiate at 9600 baud again.
1007 */
1008 if (si->newspeed) {
1009 si->speed = si->newspeed;
1010 si->newspeed = 0;
1011 }
1012
1013 sa1100_irda_startup(si);
1014 __sa1100_irda_set_power(si, si->power);
1015 enable_irq(dev->irq);
1016
1017 /*
1018 * This automatically wakes up the queue
1019 */
1020 netif_device_attach(dev);
1021 }
1022
1023 return 0;
1024}
1025#else
1026#define sa1100_irda_suspend NULL
1027#define sa1100_irda_resume NULL
1028#endif
1029
Russell King3ae5eae2005-11-09 22:32:44 +00001030static struct platform_driver sa1100ir_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031 .probe = sa1100_irda_probe,
1032 .remove = sa1100_irda_remove,
1033 .suspend = sa1100_irda_suspend,
1034 .resume = sa1100_irda_resume,
Russell King3ae5eae2005-11-09 22:32:44 +00001035 .driver = {
1036 .name = "sa11x0-ir",
Kay Sievers72abb462008-04-18 13:50:44 -07001037 .owner = THIS_MODULE,
Russell King3ae5eae2005-11-09 22:32:44 +00001038 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039};
1040
1041static int __init sa1100_irda_init(void)
1042{
1043 /*
1044 * Limit power level a sensible range.
1045 */
1046 if (power_level < 1)
1047 power_level = 1;
1048 if (power_level > 3)
1049 power_level = 3;
1050
Russell King3ae5eae2005-11-09 22:32:44 +00001051 return platform_driver_register(&sa1100ir_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052}
1053
1054static void __exit sa1100_irda_exit(void)
1055{
Russell King3ae5eae2005-11-09 22:32:44 +00001056 platform_driver_unregister(&sa1100ir_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057}
1058
1059module_init(sa1100_irda_init);
1060module_exit(sa1100_irda_exit);
1061module_param(power_level, int, 0);
1062module_param(tx_lpm, int, 0);
1063module_param(max_rate, int, 0);
1064
1065MODULE_AUTHOR("Russell King <rmk@arm.linux.org.uk>");
1066MODULE_DESCRIPTION("StrongARM SA1100 IrDA driver");
1067MODULE_LICENSE("GPL");
1068MODULE_PARM_DESC(power_level, "IrDA power level, 1 (low) to 3 (high)");
1069MODULE_PARM_DESC(tx_lpm, "Enable transmitter low power (1.6us) mode");
1070MODULE_PARM_DESC(max_rate, "Maximum baud rate (4000000, 115200, 57600, 38400, 19200, 9600)");
Kay Sievers72abb462008-04-18 13:50:44 -07001071MODULE_ALIAS("platform:sa11x0-ir");