1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106
|
/* $Id: lirc_serial.c,v 5.65 2005/02/19 15:13:02 lirc Exp $ */
/****************************************************************************
** lirc_serial.c ***********************************************************
****************************************************************************
*
* lirc_serial - Device driver that records pulse- and pause-lengths
* (space-lengths) between DDCD event on a serial port.
*
* Copyright (C) 1996,97 Ralph Metzler <rjkm@thp.uni-koeln.de>
* Copyright (C) 1998 Trent Piepho <xyzzy@u.washington.edu>
* Copyright (C) 1998 Ben Pfaff <blp@gnu.org>
* Copyright (C) 1999 Christoph Bartelmus <lirc@bartelmus.de>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
*/
/* Steve's changes to improve transmission fidelity:
- for systems with the rdtsc instruction and the clock counter, a
send_pule that times the pulses directly using the counter.
This means that the LIRC_SERIAL_TRANSMITTER_LATENCY fudge is
not needed. Measurement shows very stable waveform, even where
PCI activity slows the access to the UART, which trips up other
versions.
- For other system, non-integer-microsecond pulse/space lengths,
done using fixed point binary. So, much more accurate carrier
frequency.
- fine tuned transmitter latency, taking advantage of fractional
microseconds in previous change
- Fixed bug in the way transmitter latency was accounted for by
tuning the pulse lengths down - the send_pulse routine ignored
this overhead as it timed the overall pulse length - so the
pulse frequency was right but overall pulse length was too
long. Fixed by accounting for latency on each pulse/space
iteration.
Steve Davies <steve@daviesfam.org> July 2001
*/
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include <linux/version.h>
#if LINUX_VERSION_CODE < KERNEL_VERSION(2, 2, 18)
#error "**********************************************************"
#error " Sorry, this driver needs kernel version 2.2.18 or higher "
#error "**********************************************************"
#endif
#include <linux/config.h>
#if defined(CONFIG_SERIAL) || defined(CONFIG_SERIAL_8250)
#warning "******************************************"
#warning " Your serial port driver is compiled into "
#warning " the kernel. You will have to release the "
#warning " port you want to use for LIRC with: "
#warning " setserial /dev/ttySx uart none "
#warning "******************************************"
#endif
#include <linux/module.h>
#include <linux/errno.h>
#include <linux/signal.h>
#include <linux/sched.h>
#include <linux/fs.h>
#include <linux/interrupt.h>
#include <linux/ioport.h>
#include <linux/kernel.h>
#include <linux/major.h>
#include <linux/serial_reg.h>
#include <linux/time.h>
#include <linux/string.h>
#include <linux/types.h>
#include <linux/wait.h>
#include <linux/mm.h>
#include <linux/delay.h>
#include <linux/poll.h>
#include <asm/system.h>
#include <asm/segment.h>
#include <asm/io.h>
#include <asm/irq.h>
#include <asm/fcntl.h>
#include "drivers/lirc.h"
#include "drivers/kcompat.h"
#include "drivers/lirc_dev/lirc_dev.h"
#if defined(LIRC_SERIAL_SOFTCARRIER) && !defined(LIRC_SERIAL_TRANSMITTER)
#warning "Software carrier only affects transmitting"
#endif
#if defined(rdtsc)
#define USE_RDTSC
#warning "Note: using rdtsc instruction"
#endif
#ifdef LIRC_SERIAL_ANIMAX
#ifdef LIRC_SERIAL_TRANSMITTER
#warning "******************************************"
#warning " This receiver does not have a "
#warning " transmitter diode "
#warning "******************************************"
#endif
#endif
#define LIRC_DRIVER_NAME "lirc_serial"
struct lirc_serial
{
int type;
int signal_pin;
int signal_pin_change;
int on;
int off;
long (*send_pulse)(unsigned long length);
void (*send_space)(long length);
int features;
};
#define LIRC_HOMEBREW 0
#define LIRC_IRDEO 1
#define LIRC_IRDEO_REMOTE 2
#define LIRC_ANIMAX 3
#define LIRC_IGOR 4
#ifdef LIRC_SERIAL_IRDEO
static int type=LIRC_IRDEO;
#elif defined(LIRC_SERIAL_IRDEO_REMOTE)
static int type=LIRC_IRDEO_REMOTE;
#elif defined(LIRC_SERIAL_ANIMAX)
static int type=LIRC_ANIMAX;
#elif defined(LIRC_SERIAL_IGOR)
static int type=LIRC_IGOR;
#else
static int type=LIRC_HOMEBREW;
#endif
#ifdef LIRC_SERIAL_SOFTCARRIER
static int softcarrier=1;
#else
static int softcarrier=0;
#endif
static int share_irq = 0;
static int debug = 0;
#define dprintk(fmt, args...) \
do{ \
if(debug) \
printk(KERN_DEBUG LIRC_DRIVER_NAME ": " \
fmt, ## args); \
}while(0)
/* forward declarations */
static long send_pulse_irdeo(unsigned long length);
static long send_pulse_homebrew(unsigned long length);
static void send_space_irdeo(long length);
static void send_space_homebrew(long length);
static struct lirc_serial hardware[]=
{
/* home-brew receiver/transmitter */
{
LIRC_HOMEBREW,
UART_MSR_DCD,
UART_MSR_DDCD,
UART_MCR_RTS|UART_MCR_OUT2|UART_MCR_DTR,
UART_MCR_RTS|UART_MCR_OUT2,
send_pulse_homebrew,
send_space_homebrew,
(
#ifdef LIRC_SERIAL_TRANSMITTER
LIRC_CAN_SET_SEND_DUTY_CYCLE|
LIRC_CAN_SET_SEND_CARRIER|
LIRC_CAN_SEND_PULSE|
#endif
LIRC_CAN_REC_MODE2)
},
/* IRdeo classic */
{
LIRC_IRDEO,
UART_MSR_DSR,
UART_MSR_DDSR,
UART_MCR_OUT2,
UART_MCR_RTS|UART_MCR_DTR|UART_MCR_OUT2,
send_pulse_irdeo,
send_space_irdeo,
(LIRC_CAN_SET_SEND_DUTY_CYCLE|
LIRC_CAN_SEND_PULSE|
LIRC_CAN_REC_MODE2)
},
/* IRdeo remote */
{
LIRC_IRDEO_REMOTE,
UART_MSR_DSR,
UART_MSR_DDSR,
UART_MCR_RTS|UART_MCR_DTR|UART_MCR_OUT2,
UART_MCR_RTS|UART_MCR_DTR|UART_MCR_OUT2,
send_pulse_irdeo,
send_space_irdeo,
(LIRC_CAN_SET_SEND_DUTY_CYCLE|
LIRC_CAN_SEND_PULSE|
LIRC_CAN_REC_MODE2)
},
/* AnimaX */
{
LIRC_ANIMAX,
UART_MSR_DCD,
UART_MSR_DDCD,
0,
UART_MCR_RTS|UART_MCR_DTR|UART_MCR_OUT2,
NULL,
NULL,
LIRC_CAN_REC_MODE2
},
/* home-brew receiver/transmitter (Igor Cesko's variation) */
{
LIRC_HOMEBREW,
UART_MSR_DSR,
UART_MSR_DDSR,
UART_MCR_RTS|UART_MCR_OUT2|UART_MCR_DTR,
UART_MCR_RTS|UART_MCR_OUT2,
send_pulse_homebrew,
send_space_homebrew,
(
#ifdef LIRC_SERIAL_TRANSMITTER
LIRC_CAN_SET_SEND_DUTY_CYCLE|
LIRC_CAN_SET_SEND_CARRIER|
LIRC_CAN_SEND_PULSE|
#endif
LIRC_CAN_REC_MODE2)
}
};
#define RS_ISR_PASS_LIMIT 256
/* A long pulse code from a remote might take upto 300 bytes. The
daemon should read the bytes as soon as they are generated, so take
the number of keys you think you can push before the daemon runs
and multiply by 300. The driver will warn you if you overrun this
buffer. If you have a slow computer or non-busmastering IDE disks,
maybe you will need to increase this. */
/* This MUST be a power of two! It has to be larger than 1 as well. */
#define RBUF_LEN 256
#define WBUF_LEN 256
static int sense = -1; /* -1 = auto, 0 = active high, 1 = active low */
static int txsense = 0; /* 0 = active high, 1 = active low */
static int io = LIRC_PORT;
static int irq = LIRC_IRQ;
static struct timeval lasttv = {0, 0};
static struct lirc_buffer rbuf;
static lirc_t wbuf[WBUF_LEN];
static unsigned int freq = 38000;
static unsigned int duty_cycle = 50;
/* Initialized in init_timing_params() */
static unsigned long period = 0;
static unsigned long pulse_width = 0;
static unsigned long space_width = 0;
#if defined(__i386__)
/*
From:
Linux I/O port programming mini-HOWTO
Author: Riku Saikkonen <Riku.Saikkonen@hut.fi>
v, 28 December 1997
[...]
Actually, a port I/O instruction on most ports in the 0-0x3ff range
takes almost exactly 1 microsecond, so if you're, for example, using
the parallel port directly, just do additional inb()s from that port
to delay.
[...]
*/
/* transmitter latency 1.5625us 0x1.90 - this figure arrived at from
* comment above plus trimming to match actual measured frequency.
* This will be sensitive to cpu speed, though hopefully most of the 1.5us
* is spent in the uart access. Still - for reference test machine was a
* 1.13GHz Athlon system - Steve
*/
/* changed from 400 to 450 as this works better on slower machines;
faster machines will use the rdtsc code anyway */
#define LIRC_SERIAL_TRANSMITTER_LATENCY 450
#else
/* does anybody have information on other platforms ? */
/* 256 = 1<<8 */
#define LIRC_SERIAL_TRANSMITTER_LATENCY 256
#endif /* __i386__ */
static inline unsigned int sinp(int offset)
{
return inb(io + offset);
}
static inline void soutp(int offset, int value)
{
outb(value, io + offset);
}
static inline void on(void)
{
if (txsense)
{
soutp(UART_MCR,hardware[type].off);
}
else
{
soutp(UART_MCR,hardware[type].on);
}
}
static inline void off(void)
{
if (txsense)
{
soutp(UART_MCR,hardware[type].on);
}
else
{
soutp(UART_MCR,hardware[type].off);
}
}
#ifndef MAX_UDELAY_MS
#define MAX_UDELAY_US 5000
#else
#define MAX_UDELAY_US (MAX_UDELAY_MS*1000)
#endif
static inline void safe_udelay(unsigned long usecs)
{
while(usecs>MAX_UDELAY_US)
{
udelay(MAX_UDELAY_US);
usecs-=MAX_UDELAY_US;
}
udelay(usecs);
}
#ifdef USE_RDTSC
/* This is an overflow/precision juggle, complicated in that we can't
do long long divide in the kernel */
/* When we use the rdtsc instruction to measure clocks, we keep the
* pulse and space widths as clock cycles. As this is CPU speed
* dependent, the widths must be calculated in init_port and ioctl
* time
*/
/* So send_pulse can quickly convert microseconds to clocks */
static unsigned long conv_us_to_clocks = 0;
static inline int init_timing_params(unsigned int new_duty_cycle,
unsigned int new_freq)
{
unsigned long long loops_per_sec,work;
duty_cycle=new_duty_cycle;
freq=new_freq;
loops_per_sec=current_cpu_data.loops_per_jiffy;
loops_per_sec*=HZ;
/* How many clocks in a microsecond?, avoiding long long divide */
work=loops_per_sec;
work*=4295; /* 4295 = 2^32 / 1e6 */
conv_us_to_clocks=(work>>32);
/* Carrier period in clocks, approach good up to 32GHz clock,
gets carrier frequency within 8Hz */
period=loops_per_sec>>3;
period/=(freq>>3);
/* Derive pulse and space from the period */
pulse_width = period*duty_cycle/100;
space_width = period - pulse_width;
dprintk("in init_timing_params, freq=%d, duty_cycle=%d, "
"clk/jiffy=%ld, pulse=%ld, space=%ld, "
"conv_us_to_clocks=%ld\n",
freq, duty_cycle, current_cpu_data.loops_per_jiffy,
pulse_width, space_width, conv_us_to_clocks);
return 0;
}
#else /* ! USE_RDTSC */
static inline int init_timing_params(unsigned int new_duty_cycle,
unsigned int new_freq)
{
/* period, pulse/space width are kept with 8 binary places -
* IE multiplied by 256. */
if(256*1000000L/new_freq*new_duty_cycle/100<=
LIRC_SERIAL_TRANSMITTER_LATENCY) return(-EINVAL);
if(256*1000000L/new_freq*(100-new_duty_cycle)/100<=
LIRC_SERIAL_TRANSMITTER_LATENCY) return(-EINVAL);
duty_cycle=new_duty_cycle;
freq=new_freq;
period=256*1000000L/freq;
pulse_width=period*duty_cycle/100;
space_width=period-pulse_width;
dprintk("in init_timing_params, freq=%d pulse=%ld, "
"space=%ld\n", freq, pulse_width, space_width);
return 0;
}
#endif /* USE_RDTSC */
/* return value: space length delta */
static long send_pulse_irdeo(unsigned long length)
{
long rawbits;
int i;
unsigned char output;
unsigned char chunk,shifted;
/* how many bits have to be sent ? */
rawbits=length*1152/10000;
if(duty_cycle>50) chunk=3;
else chunk=1;
for(i=0,output=0x7f;rawbits>0;rawbits-=3)
{
shifted=chunk<<(i*3);
shifted>>=1;
output&=(~shifted);
i++;
if(i==3)
{
soutp(UART_TX,output);
while(!(sinp(UART_LSR) & UART_LSR_THRE));
output=0x7f;
i=0;
}
}
if(i!=0)
{
soutp(UART_TX,output);
while(!(sinp(UART_LSR) & UART_LSR_TEMT));
}
if(i==0)
{
return((-rawbits)*10000/1152);
}
else
{
return((3-i)*3*10000/1152+(-rawbits)*10000/1152);
}
}
#ifdef USE_RDTSC
/* Version that uses Pentium rdtsc instruction to measure clocks */
/* This version does sub-microsecond timing using rdtsc instruction,
* and does away with the fudged LIRC_SERIAL_TRANSMITTER_LATENCY
* Implicitly i586 architecture... - Steve
*/
static inline long send_pulse_homebrew_softcarrier(unsigned long length)
{
int flag;
unsigned long target, start, now;
/* Get going quick as we can */
rdtscl(start);on();
/* Convert length from microseconds to clocks */
length*=conv_us_to_clocks;
/* And loop till time is up - flipping at right intervals */
now=start;
target=pulse_width;
flag=1;
while((now-start)<length)
{
/* Delay till flip time */
do
{
rdtscl(now);
}
while ((now-start)<target);
/* flip */
if(flag)
{
rdtscl(now);off();
target+=space_width;
}
else
{
rdtscl(now);on();
target+=pulse_width;
}
flag=!flag;
}
rdtscl(now);
return(((now-start)-length)/conv_us_to_clocks);
}
#else /* ! USE_RDTSC */
/* Version using udelay() */
/* here we use fixed point arithmetic, with 8
fractional bits. that gets us within 0.1% or so of the right average
frequency, albeit with some jitter in pulse length - Steve */
/* To match 8 fractional bits used for pulse/space length */
static inline long send_pulse_homebrew_softcarrier(unsigned long length)
{
int flag;
unsigned long actual, target, d;
length<<=8;
actual=target=0; flag=0;
while(actual<length)
{
if(flag)
{
off();
target+=space_width;
}
else
{
on();
target+=pulse_width;
}
d=(target-actual-LIRC_SERIAL_TRANSMITTER_LATENCY+128)>>8;
/* Note - we've checked in ioctl that the pulse/space
widths are big enough so that d is > 0 */
udelay(d);
actual+=(d<<8)+LIRC_SERIAL_TRANSMITTER_LATENCY;
flag=!flag;
}
return((actual-length)>>8);
}
#endif /* USE_RDTSC */
static long send_pulse_homebrew(unsigned long length)
{
if(length<=0) return 0;
if(softcarrier)
{
return send_pulse_homebrew_softcarrier(length);
}
else
{
on();
safe_udelay(length);
return(0);
}
}
static void send_space_irdeo(long length)
{
if(length<=0) return;
safe_udelay(length);
}
static void send_space_homebrew(long length)
{
off();
if(length<=0) return;
safe_udelay(length);
}
static void inline rbwrite(lirc_t l)
{
if(lirc_buffer_full(&rbuf)) /* no new signals will be accepted */
{
dprintk("Buffer overrun\n");
return;
}
_lirc_buffer_write_1(&rbuf, (void *)&l);
}
static void inline frbwrite(lirc_t l)
{
/* simple noise filter */
static lirc_t pulse=0L,space=0L;
static unsigned int ptr=0;
if(ptr>0 && (l&PULSE_BIT))
{
pulse+=l&PULSE_MASK;
if(pulse>250)
{
rbwrite(space);
rbwrite(pulse|PULSE_BIT);
ptr=0;
pulse=0;
}
return;
}
if(!(l&PULSE_BIT))
{
if(ptr==0)
{
if(l>20000)
{
space=l;
ptr++;
return;
}
}
else
{
if(l>20000)
{
space+=pulse;
if(space>PULSE_MASK) space=PULSE_MASK;
space+=l;
if(space>PULSE_MASK) space=PULSE_MASK;
pulse=0;
return;
}
rbwrite(space);
rbwrite(pulse|PULSE_BIT);
ptr=0;
pulse=0;
}
}
rbwrite(l);
}
static irqreturn_t irq_handler(int i, void *blah, struct pt_regs *regs)
{
struct timeval tv;
int status,counter,dcd;
long deltv;
lirc_t data;
if((sinp(UART_IIR) & UART_IIR_NO_INT))
{
/* not our interrupt */
return IRQ_RETVAL(IRQ_NONE);
}
counter=0;
do{
counter++;
status=sinp(UART_MSR);
if(counter>RS_ISR_PASS_LIMIT)
{
printk(KERN_WARNING LIRC_DRIVER_NAME ": AIEEEE: "
"We're caught!\n");
break;
}
if((status&hardware[type].signal_pin_change) && sense!=-1)
{
/* get current time */
do_gettimeofday(&tv);
/* New mode, written by Trent Piepho
<xyzzy@u.washington.edu>. */
/* The old format was not very portable.
We now use the type lirc_t to pass pulses
and spaces to user space.
If PULSE_BIT is set a pulse has been
received, otherwise a space has been
received. The driver needs to know if your
receiver is active high or active low, or
the space/pulse sense could be
inverted. The bits denoted by PULSE_MASK are
the length in microseconds. Lengths greater
than or equal to 16 seconds are clamped to
PULSE_MASK. All other bits are unused.
This is a much simpler interface for user
programs, as well as eliminating "out of
phase" errors with space/pulse
autodetection. */
/* calculate time since last interrupt in
microseconds */
dcd=(status & hardware[type].signal_pin) ? 1:0;
deltv=tv.tv_sec-lasttv.tv_sec;
if(deltv>15)
{
dprintk("AIEEEE: %d %d %lx %lx %lx %lx\n",
dcd,sense,
tv.tv_sec,lasttv.tv_sec,
tv.tv_usec,lasttv.tv_usec);
data=PULSE_MASK; /* really long time */
if(!(dcd^sense)) /* sanity check */
{
/* detecting pulse while this
MUST be a space! */
sense=sense ? 0:1;
}
}
else
{
data=(lirc_t) (deltv*1000000+
tv.tv_usec-
lasttv.tv_usec);
};
if(tv.tv_sec<lasttv.tv_sec ||
(tv.tv_sec==lasttv.tv_sec &&
tv.tv_usec<lasttv.tv_usec))
{
printk(KERN_WARNING LIRC_DRIVER_NAME
": AIEEEE: your clock just jumped "
"backwards\n");
printk(KERN_WARNING LIRC_DRIVER_NAME
": %d %d %lx %lx %lx %lx\n",
dcd,sense,
tv.tv_sec,lasttv.tv_sec,
tv.tv_usec,lasttv.tv_usec);
data=PULSE_MASK;
}
frbwrite(dcd^sense ? data : (data|PULSE_BIT));
lasttv=tv;
wake_up_interruptible(&rbuf.wait_poll);
}
} while(!(sinp(UART_IIR) & UART_IIR_NO_INT)); /* still pending ? */
return IRQ_RETVAL(IRQ_HANDLED);
}
static int init_port(void)
{
unsigned long flags;
/* Reserve io region. */
if(request_region(io, 8, LIRC_DRIVER_NAME)==NULL)
{
printk(KERN_ERR LIRC_DRIVER_NAME
": port %04x already in use\n", io);
printk(KERN_WARNING LIRC_DRIVER_NAME
": use 'setserial /dev/ttySX uart none'\n");
printk(KERN_WARNING LIRC_DRIVER_NAME
": or compile the serial port driver as module and\n");
printk(KERN_WARNING LIRC_DRIVER_NAME
": make sure this module is loaded first\n");
return(-EBUSY);
}
local_irq_save(flags);
/* Set DLAB 0. */
soutp(UART_LCR, sinp(UART_LCR) & (~UART_LCR_DLAB));
/* First of all, disable all interrupts */
soutp(UART_IER, sinp(UART_IER)&
(~(UART_IER_MSI|UART_IER_RLSI|UART_IER_THRI|UART_IER_RDI)));
/* Clear registers. */
sinp(UART_LSR);
sinp(UART_RX);
sinp(UART_IIR);
sinp(UART_MSR);
/* Set line for power source */
off();
/* Clear registers again to be sure. */
sinp(UART_LSR);
sinp(UART_RX);
sinp(UART_IIR);
sinp(UART_MSR);
switch(hardware[type].type)
{
case LIRC_IRDEO:
case LIRC_IRDEO_REMOTE:
/* setup port to 7N1 @ 115200 Baud */
/* 7N1+start = 9 bits at 115200 ~ 3 bits at 38kHz */
/* Set DLAB 1. */
soutp(UART_LCR, sinp(UART_LCR) | UART_LCR_DLAB);
/* Set divisor to 1 => 115200 Baud */
soutp(UART_DLM,0);
soutp(UART_DLL,1);
/* Set DLAB 0 + 7N1 */
soutp(UART_LCR,UART_LCR_WLEN7);
/* THR interrupt already disabled at this point */
break;
default:
break;
}
local_irq_restore(flags);
/* Initialize pulse/space widths */
init_timing_params(duty_cycle, freq);
/* If pin is high, then this must be an active low receiver. */
if(sense==-1)
{
/* wait 1 sec for the power supply */
set_current_state(TASK_INTERRUPTIBLE);
schedule_timeout(HZ);
sense=(sinp(UART_MSR) & hardware[type].signal_pin) ? 1:0;
printk(KERN_INFO LIRC_DRIVER_NAME ": auto-detected active "
"%s receiver\n",sense ? "low":"high");
}
else
{
printk(KERN_INFO LIRC_DRIVER_NAME ": Manually using active "
"%s receiver\n",sense ? "low":"high");
};
return 0;
}
static int set_use_inc(void* data)
{
int result;
unsigned long flags;
/* Init read buffer. */
if (lirc_buffer_init(&rbuf, sizeof(lirc_t), RBUF_LEN) < 0)
return -ENOMEM;
/* initialize timestamp */
do_gettimeofday(&lasttv);
result=request_irq(irq,irq_handler,
SA_INTERRUPT | (share_irq ? SA_SHIRQ:0),
LIRC_DRIVER_NAME,(void *)&hardware);
switch(result)
{
case -EBUSY:
printk(KERN_ERR LIRC_DRIVER_NAME ": IRQ %d busy\n", irq);
lirc_buffer_free(&rbuf);
return -EBUSY;
case -EINVAL:
printk(KERN_ERR LIRC_DRIVER_NAME
": Bad irq number or handler\n");
lirc_buffer_free(&rbuf);
return -EINVAL;
default:
dprintk("Interrupt %d, port %04x obtained\n", irq, io);
break;
};
local_irq_save(flags);
/* Set DLAB 0. */
soutp(UART_LCR, sinp(UART_LCR) & (~UART_LCR_DLAB));
soutp(UART_IER, sinp(UART_IER)|UART_IER_MSI);
local_irq_restore(flags);
MOD_INC_USE_COUNT;
return 0;
}
static void set_use_dec(void* data)
{ unsigned long flags;
local_irq_save(flags);
/* Set DLAB 0. */
soutp(UART_LCR, sinp(UART_LCR) & (~UART_LCR_DLAB));
/* First of all, disable all interrupts */
soutp(UART_IER, sinp(UART_IER)&
(~(UART_IER_MSI|UART_IER_RLSI|UART_IER_THRI|UART_IER_RDI)));
local_irq_restore(flags);
free_irq(irq, (void *)&hardware);
dprintk("freed IRQ %d\n", irq);
lirc_buffer_free(&rbuf);
MOD_DEC_USE_COUNT;
}
static ssize_t lirc_write(struct file *file, const char *buf,
size_t n, loff_t * ppos)
{
int retval,i,count;
unsigned long flags;
long delta=0;
if(!(hardware[type].features&LIRC_CAN_SEND_PULSE))
{
return(-EBADF);
}
if(n%sizeof(lirc_t)) return(-EINVAL);
retval=verify_area(VERIFY_READ,buf,n);
if(retval) return(retval);
count=n/sizeof(lirc_t);
if(count>WBUF_LEN || count%2==0) return(-EINVAL);
copy_from_user(wbuf,buf,n);
local_irq_save(flags);
if(hardware[type].type==LIRC_IRDEO)
{
/* DTR, RTS down */
on();
}
for(i=0;i<count;i++)
{
if(i%2) hardware[type].send_space(wbuf[i]-delta);
else delta=hardware[type].send_pulse(wbuf[i]);
}
off();
local_irq_restore(flags);
return(n);
}
static int lirc_ioctl(struct inode *node,struct file *filep,unsigned int cmd,
unsigned long arg)
{
int result;
unsigned long value;
unsigned int ivalue;
switch(cmd)
{
case LIRC_GET_SEND_MODE:
if(!(hardware[type].features&LIRC_CAN_SEND_MASK))
{
return(-ENOIOCTLCMD);
}
result=put_user(LIRC_SEND2MODE
(hardware[type].features&LIRC_CAN_SEND_MASK),
(unsigned long *) arg);
if(result) return(result);
break;
case LIRC_SET_SEND_MODE:
if(!(hardware[type].features&LIRC_CAN_SEND_MASK))
{
return(-ENOIOCTLCMD);
}
result=get_user(value,(unsigned long *) arg);
if(result) return(result);
/* only LIRC_MODE_PULSE supported */
if(value!=LIRC_MODE_PULSE) return(-ENOSYS);
break;
case LIRC_GET_LENGTH:
return(-ENOSYS);
break;
case LIRC_SET_SEND_DUTY_CYCLE:
dprintk("SET_SEND_DUTY_CYCLE\n");
if(!(hardware[type].features&LIRC_CAN_SET_SEND_DUTY_CYCLE))
{
return(-ENOIOCTLCMD);
}
result=get_user(ivalue,(unsigned int *) arg);
if(result) return(result);
if(ivalue<=0 || ivalue>100) return(-EINVAL);
return init_timing_params(ivalue, freq);
break;
case LIRC_SET_SEND_CARRIER:
dprintk("SET_SEND_CARRIER\n");
if(!(hardware[type].features&LIRC_CAN_SET_SEND_CARRIER))
{
return(-ENOIOCTLCMD);
}
result=get_user(ivalue,(unsigned int *) arg);
if(result) return(result);
if(ivalue>500000 || ivalue<20000) return(-EINVAL);
return init_timing_params(duty_cycle, ivalue);
break;
default:
return(-ENOIOCTLCMD);
}
return(0);
}
static struct file_operations lirc_fops =
{
write: lirc_write,
};
static struct lirc_plugin plugin = {
name: LIRC_DRIVER_NAME,
minor: -1,
code_length: 1,
sample_rate: 0,
data: NULL,
add_to_buf: NULL,
get_queue: NULL,
rbuf: &rbuf,
set_use_inc: set_use_inc,
set_use_dec: set_use_dec,
ioctl: lirc_ioctl,
fops: &lirc_fops,
owner: THIS_MODULE,
};
#ifdef MODULE
int init_module(void)
{
int result;
switch(type)
{
case LIRC_HOMEBREW:
case LIRC_IRDEO:
case LIRC_IRDEO_REMOTE:
case LIRC_ANIMAX:
case LIRC_IGOR:
break;
default:
return(-EINVAL);
}
if(!softcarrier && hardware[type].type==LIRC_HOMEBREW)
{
hardware[type].features&=~(LIRC_CAN_SET_SEND_DUTY_CYCLE|
LIRC_CAN_SET_SEND_CARRIER);
}
if ((result = init_port()) < 0)
return result;
plugin.features = hardware[type].features;
if ((plugin.minor = lirc_register_plugin(&plugin)) < 0) {
printk(KERN_ERR LIRC_DRIVER_NAME
": register_chrdev failed!\n");
release_region(io, 8);
return -EIO;
}
return 0;
}
void cleanup_module(void)
{
release_region(io, 8);
lirc_unregister_plugin(plugin.minor);
dprintk("cleaned up module\n");
}
MODULE_DESCRIPTION("Infra-red receiver driver for serial ports.");
MODULE_AUTHOR("Ralph Metzler, Trent Piepho, Ben Pfaff, Christoph Bartelmus");
MODULE_LICENSE("GPL");
module_param(type, int, 0444);
MODULE_PARM_DESC(type, "Hardware type (0 = home-brew, 1 = IRdeo,"
" 2 = IRdeo Remote, 3 = AnimaX, 4 = IgorPlug");
module_param(io, int, 0444);
MODULE_PARM_DESC(io, "I/O address base (0x3f8 or 0x2f8)");
module_param(irq, int, 0444);
MODULE_PARM_DESC(irq, "Interrupt (4 or 3)");
module_param(share_irq, bool, 0444);
MODULE_PARM_DESC(share_irq, "Share interrupts (0 = off, 1 = on)");
module_param(sense, bool, 0444);
MODULE_PARM_DESC(sense, "Override autodetection of IR receiver circuit"
" (0 = active high, 1 = active low )");
#ifdef LIRC_SERIAL_TRANSMITTER
module_param(txsense, bool, 0444);
MODULE_PARM_DESC(txsense, "Sense of transmitter circuit"
" (0 = active high, 1 = active low )");
#endif
module_param(softcarrier, bool, 0444);
MODULE_PARM_DESC(softcarrier, "Software carrier (0 = off, 1 = on)");
module_param(debug, bool, 0644);
MODULE_PARM_DESC(debug, "Enable debugging messages");
EXPORT_NO_SYMBOLS;
#endif /* MODULE */
|