summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Schwarzott <zzam@gentoo.org>2007-01-03 18:17:15 +0000
committerMatthias Schwarzott <zzam@gentoo.org>2007-01-03 18:17:15 +0000
commitb57d17a324df1e66a75f5294d7950207495e76b4 (patch)
treeca43c9c2a286658da1f7c1073e37c32cc1b3fe5f /app-misc/lirc/files
parentStable on ppc wrt bug 159293 (diff)
downloadhistorical-b57d17a324df1e66a75f5294d7950207495e76b4.tar.gz
historical-b57d17a324df1e66a75f5294d7950207495e76b4.tar.bz2
historical-b57d17a324df1e66a75f5294d7950207495e76b4.zip
Added a pre-release as it contains a lot of fixes, thanks to mcummings for noticing. Use newer xbox-patch that can unconditionally be applied.
Package-Manager: portage-2.1.2_rc4-r5
Diffstat (limited to 'app-misc/lirc/files')
-rw-r--r--app-misc/lirc/files/digest-lirc-0.8.1_pre53
-rw-r--r--app-misc/lirc/files/lirc-0.8.1-atiusb-xbox.diff198
-rw-r--r--app-misc/lirc/files/lirc-0.8.1-imon-pad2keys.patch213
3 files changed, 414 insertions, 0 deletions
diff --git a/app-misc/lirc/files/digest-lirc-0.8.1_pre5 b/app-misc/lirc/files/digest-lirc-0.8.1_pre5
new file mode 100644
index 000000000000..cca23c7dc719
--- /dev/null
+++ b/app-misc/lirc/files/digest-lirc-0.8.1_pre5
@@ -0,0 +1,3 @@
+MD5 9a00b010ef4869173c9f8f91257ffe20 lirc-0.8.1pre5.tar.bz2 604662
+RMD160 8ddfed06374178e15b8fcd16d79887cce70fb35b lirc-0.8.1pre5.tar.bz2 604662
+SHA256 0ab1e5a6ba72fe0564ea52cf743aff720333f1eb030b165acc346fe00f2c9050 lirc-0.8.1pre5.tar.bz2 604662
diff --git a/app-misc/lirc/files/lirc-0.8.1-atiusb-xbox.diff b/app-misc/lirc/files/lirc-0.8.1-atiusb-xbox.diff
new file mode 100644
index 000000000000..515c26838d8b
--- /dev/null
+++ b/app-misc/lirc/files/lirc-0.8.1-atiusb-xbox.diff
@@ -0,0 +1,198 @@
+--- ../../lirc-modules.orig/lirc/drivers/lirc_atiusb/lirc_atiusb.c 2006-09-18 16:39:16.000000000 +0300
++++ drivers/lirc_atiusb/lirc_atiusb.c 2006-12-16 20:46:04.000000000 +0200
+@@ -11,6 +11,10 @@
+ * "USB StreamZap remote driver" (LIRC)
+ * Artur Lipowski <alipowski@kki.net.pl>'s 2002
+ * "lirc_dev" and "lirc_gpio" LIRC modules
++ * Michael Wojciechowski
++ * initial xbox support
++ * Vassilis Virvilis <vasvir@iit.demokritos.gr> 2006
++ * reworked the patch for lirc submission
+ *
+ * $Id: lirc-0.8.1-atiusb-xbox.diff,v 1.1 2007/01/03 18:17:15 zzam Exp $
+ */
+@@ -64,9 +68,9 @@
+ #define DRIVER_DESC "USB remote driver for LIRC"
+ #define DRIVER_NAME "lirc_atiusb"
+
+-#define CODE_LENGTH 5
+-#define CODE_LENGTH_ATI2 3
+-#define CODE_MIN_LENGTH 3
++#define CODE_LENGTH code_length[ir->remote_type]
++#define CODE_MIN_LENGTH code_min_length[ir->remote_type]
++#define DECODE_LENGTH decode_length[ir->remote_type]
+
+ #define RW2_MODENAV_KEYCODE 0x3F
+ #define RW2_NULL_MODE 0xFF
+@@ -89,6 +93,14 @@
+ if(debug) printk(KERN_DEBUG fmt, ## args); \
+ }while(0)
+
++// ATI, ATI2, XBOX
++static const int code_length[] = {5, 3, 6};
++static const int code_min_length[] = {3, 3, 6};
++static const int decode_length[] = {5, 3, 1};
++// USB_BUFF_LEN must be the maximum value of the code_length array.
++// It is used for static arrays.
++#define USB_BUFF_LEN 6
++
+ static int mask = 0xFFFF; // channel acceptance bit mask
+ static int unique = 0; // enable channel-specific codes
+ static int repeat = 10; // repeat time in 1/100 sec
+@@ -120,6 +132,8 @@
+
+ #define VENDOR_ATI1 0x0bc7
+ #define VENDOR_ATI2 0x0471
++#define VENDOR_MS1 0x040b
++#define VENDOR_MS2 0x045e
+
+ static struct usb_device_id usb_remote_table [] = {
+ { USB_DEVICE(VENDOR_ATI1, 0x0002) }, /* X10 USB Firecracker Interface */
+@@ -140,6 +154,8 @@
+ { USB_DEVICE(VENDOR_ATI2, 0x0602) }, /* ATI Remote Wonder 2: Input Device */
+ { USB_DEVICE(VENDOR_ATI2, 0x0603) }, /* ATI Remote Wonder 2: Controller (???) */
+
++ { USB_DEVICE(VENDOR_MS1, 0x6521) }, /* Gamester Xbox DVD Movie Playback Kit IR */
++ { USB_DEVICE(VENDOR_MS2, 0x0284) }, /* Microsoft Xbox DVD Movie Playback Kit IR */
+ { } /* Terminating entry */
+ };
+
+@@ -168,7 +184,7 @@
+ #endif
+
+ /* handle repeats */
+- unsigned char old[CODE_LENGTH];
++ unsigned char old[USB_BUFF_LEN];
+ unsigned long old_jiffies;
+ };
+
+@@ -206,7 +222,8 @@
+ /* remote type based on usb_device_id tables */
+ enum {
+ ATI1_COMPATIBLE,
+- ATI2_COMPATIBLE
++ ATI2_COMPATIBLE,
++ XBOX_COMPATIBLE
+ } remote_type;
+
+ /* rw2 current mode (mirror's remote's state) */
+@@ -369,13 +386,14 @@
+
+ static void print_data(struct in_endpt *iep, char *buf, int len)
+ {
+- char codes[CODE_LENGTH*3 + 1];
++ const int clen = code_length[iep->ir->remote_type];
++ char codes[clen * 3 + 1];
+ int i;
+
+ if (len <= 0)
+ return;
+
+- for (i = 0; i < len && i < CODE_LENGTH; i++) {
++ for (i = 0; i < len && i < clen; i++) {
+ snprintf(codes+i*3, 4, "%02x ", buf[i] & 0xFF);
+ }
+ printk(DRIVER_NAME "[%d]: data received %s (ep=0x%x length=%d)\n",
+@@ -506,7 +524,7 @@
+ int mode, i;
+ char *buf = iep->buf;
+
+- if (len != CODE_LENGTH_ATI2) {
++ if (len != CODE_LENGTH) {
+ dprintk(DRIVER_NAME
+ "[%d]: Huh? Abnormal length (%d) buffer recieved.\n",
+ ir->devnum, len);
+@@ -598,6 +616,37 @@
+ return SUCCESS;
+ }
+
++static int code_check_xbox(struct in_endpt *iep, int len)
++{
++ struct irctl *ir = iep->ir;
++ const int clen = CODE_LENGTH;
++
++ if (len != clen)
++ {
++ dprintk(DRIVER_NAME ": We got %d instead of %d bytes from xbox ir.. ?\n", len, clen);
++ return -1;
++ }
++
++ /* check for repeats */
++ if (memcmp(iep->old, iep->buf, len) == 0)
++ {
++ if (iep->old_jiffies + repeat_jiffies > jiffies)
++ {
++ return -1;
++ }
++ }
++ else
++ {
++ // the third byte of xbox ir packet seems to contain key info
++ // the last two bytes are.. some kind of clock?
++ iep->buf[0] = iep->buf[2];
++ memset(iep->buf + 1, 0, len - 1);
++ memcpy(iep->old, iep->buf, len);
++ }
++ iep->old_jiffies = jiffies;
++
++ return SUCCESS;
++}
+
+ #ifdef KERNEL_2_5
+ static void usb_remote_recv(struct urb *urb, struct pt_regs *regs)
+@@ -606,7 +655,7 @@
+ #endif
+ {
+ struct in_endpt *iep;
+- int len, result;
++ int len, result = -1;
+
+ if (!urb)
+ return;
+@@ -630,6 +679,9 @@
+ case SUCCESS:
+
+ switch (iep->ir->remote_type) {
++ case XBOX_COMPATIBLE:
++ result = code_check_xbox(iep, len);
++ break;
+ case ATI2_COMPATIBLE:
+ result = code_check_ati2(iep, len);
+ break;
+@@ -946,6 +998,10 @@
+ case VENDOR_ATI2:
+ type = ATI2_COMPATIBLE;
+ break;
++ case VENDOR_MS1:
++ case VENDOR_MS2:
++ type = XBOX_COMPATIBLE;
++ break;
+ default:
+ dprintk(DRIVER_NAME "[%d]: unknown type\n", devnum);
+ return NULL;
+@@ -957,6 +1013,8 @@
+ if ( !(ir = kmalloc(sizeof(*ir), GFP_KERNEL)) ) {
+ mem_failure = 1;
+ } else {
++ // at this stage we cannot use the macro [DE]CODE_LENGTH: ir is not yet setup
++ const int dclen = decode_length[type];
+ memset(ir, 0, sizeof(*ir));
+ /* add this infrared remote struct to remote_list, keeping track of
+ * the number of drivers registered. */
+@@ -968,13 +1026,13 @@
+ mem_failure = 2;
+ } else if (!(rbuf = kmalloc(sizeof(*rbuf), GFP_KERNEL))) {
+ mem_failure = 3;
+- } else if (lirc_buffer_init(rbuf, CODE_LENGTH, 1)) {
++ } else if (lirc_buffer_init(rbuf, dclen, 1)) {
+ mem_failure = 4;
+ } else {
+ memset(plugin, 0, sizeof(*plugin));
+ strcpy(plugin->name, DRIVER_NAME " ");
+ plugin->minor = -1;
+- plugin->code_length = CODE_LENGTH*8;
++ plugin->code_length = dclen * 8;
+ plugin->features = LIRC_CAN_REC_LIRCCODE;
+ plugin->data = ir;
+ plugin->rbuf = rbuf;
+
diff --git a/app-misc/lirc/files/lirc-0.8.1-imon-pad2keys.patch b/app-misc/lirc/files/lirc-0.8.1-imon-pad2keys.patch
new file mode 100644
index 000000000000..f0b04516ff27
--- /dev/null
+++ b/app-misc/lirc/files/lirc-0.8.1-imon-pad2keys.patch
@@ -0,0 +1,213 @@
+diff -ruN lirc-0.8.1pre5-orig/drivers/lirc_imon/lirc_imon.c lirc-0.8.1pre5/drivers/lirc_imon/lirc_imon.c
+--- lirc-0.8.1pre5-orig/drivers/lirc_imon/lirc_imon.c 2007-01-03 18:54:57.000000000 +0100
++++ lirc-0.8.1pre5/drivers/lirc_imon/lirc_imon.c 2007-01-03 18:55:03.000000000 +0100
+@@ -64,10 +64,27 @@
+ #include "drivers/lirc_dev/lirc_dev.h"
+
+
++// imon pad2keys patch
++//
++// make PAD and mouse buttons available for use with VDR,
++// based on pad-mouse-emu patch from venky's forum
++//
++// M.Brakemeier 2006-03-31
++//
++// generated PAD key codes:
++// Mouse_N 0x690281B7
++// Mouse_S 0x688291B7
++// Mouse_W 0x6A8281B7
++// Mouse_E 0x688A81B7
++//
++// mouse buttons (non-synthetic):
++// MouseRightClick 0x688481B7
++// MouseLeftClick 0x688301B7
++
+ #define MOD_AUTHOR "Venky Raju <dev@venky.ws>"
+-#define MOD_DESC "Driver for Soundgraph iMON MultiMedian IR/VFD"
++#define MOD_DESC "Driver for Soundgraph iMON MultiMedian IR/VFD w/imon pad2keys patch"
+ #define MOD_NAME "lirc_imon"
+-#define MOD_VERSION "0.3"
++#define MOD_VERSION "0.3p2k"
+
+ #define VFD_MINOR_BASE 144 /* Same as LCD */
+ #define DEVFS_MODE S_IFCHR | S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP | S_IROTH
+@@ -82,6 +99,7 @@
+ #define TRUE 1
+ #define FALSE 0
+
++#define CURSOR_LIMIT 16
+
+ /* ------------------------------------------------------------
+ * P R O T O T Y P E S
+@@ -160,6 +178,10 @@
+ atomic_t busy; /* write in progress */
+ int status; /* status of tx completion */
+ } tx;
++
++ int key_x;
++ int key_y;
++ int last_count; /* number of times pressed */
+ };
+
+ #define LOCK_CONTEXT down (&context ->sem)
+@@ -250,6 +272,7 @@
+
+ MODULE_AUTHOR (MOD_AUTHOR);
+ MODULE_DESCRIPTION (MOD_DESC);
++MODULE_VERSION(MOD_VERSION); /* MBr: was missing */
+ MODULE_LICENSE ("GPL");
+ module_param (debug, int, 0);
+ MODULE_PARM_DESC (debug, "Debug messages: 0=no, 1=yes (default: no)");
+@@ -574,6 +597,11 @@
+ context ->rx.initial_space = 1;
+ context ->rx.prev_bit = 0;
+
++ /* init pad context */
++ context ->key_x = 0;
++ context ->key_y = 0;
++ context ->last_count = 0;
++
+ usb_fill_int_urb (context ->rx_urb, context ->dev,
+ usb_rcvintpipe (context ->dev,
+ context ->rx_endpoint-> bEndpointAddress),
+@@ -704,6 +732,76 @@
+
+ /* The signals have been decoded onboard the iMON controller */
+
++ /* encode mouse pad as key events */
++ /* we like pad events, not mouse button events*/
++ if((buf[0] & 0x40) &&
++ !(buf[1] & 0x01 || buf[1] >> 2 & 0x01))
++ {
++ int rel_x = (buf[1] & 0x08) | (buf[1] & 0x10) >> 2 | (buf[1] & 0x20) >> 4 | (buf[1] & 0x40) >> 6;
++ int rel_y = (buf[2] & 0x08) | (buf[2] & 0x10) >> 2 | (buf[2] & 0x20) >> 4 | (buf[2] & 0x40) >> 6;
++
++ if(buf[0] & 0x02)
++ rel_x |= ~0x10+1;
++ if(buf[0] & 0x01)
++ rel_y |= ~0x10+1;
++
++ /* keyboard direction key emulation */
++ if( context->last_count > 32 )
++ { /* Hopefully eliminate drift*/
++ context->last_count=0;
++ context->key_y=0;
++ context->key_x=0;
++ }
++ context->last_count++;
++
++ /* limit decoded events */
++ if(abs(context->key_x) > CURSOR_LIMIT || abs(context->key_y) > CURSOR_LIMIT )
++ {
++ if(abs(context->key_y ) > abs(context->key_x))
++ { /* mouse s/n */
++ if(context->key_y > 0 && rel_y > 0)
++ { /* mouse s */
++ buf[0] = 0x68;
++ buf[1] = 0x82;
++ buf[2] = 0x91;
++ }
++ else if(context->key_y < 0 && rel_y < 0)
++ { /* mouse n */
++ buf[0] = 0x69;
++ buf[1] = 0x02;
++ buf[2] = 0x81;
++ }
++ }
++ else
++ { /* mouse e/w*/
++ if(context->key_x > 0 && rel_x > 0 )
++ { /* mouse e */
++ buf[0] = 0x68;
++ buf[1] = 0x8A;
++ buf[2] = 0x81;
++ }
++ else if(context->key_x < 0 && rel_x < 0 )
++ { /* mouse w */
++ buf[0] = 0x6A;
++ buf[1] = 0x82;
++ buf[2] = 0x81;
++ }
++ }
++ }
++ else
++ {
++ context->key_x += rel_x;
++ context->key_y += rel_y;
++
++ return; /* discard those key codes */
++ }
++ }
++
++ /* a key was pressed, reset count */
++ context->key_x = 0;
++ context->key_y = 0;
++ context->last_count = 0;
++
+ lirc_buffer_write_1 (context ->plugin ->rbuf, buf);
+ wake_up (&context ->plugin ->rbuf ->wait_poll);
+ return;
+diff -ruN lirc-0.8.1pre5-orig/remotes/imon/lircd.conf.imon-pad lirc-0.8.1pre5/remotes/imon/lircd.conf.imon-pad
+--- lirc-0.8.1pre5-orig/remotes/imon/lircd.conf.imon-pad 2007-01-03 18:54:57.000000000 +0100
++++ lirc-0.8.1pre5/remotes/imon/lircd.conf.imon-pad 2007-01-03 18:55:03.000000000 +0100
+@@ -1,10 +1,10 @@
+ #
+ # this config file was automatically generated
+-# using lirc-0.7.1pre2(imon) on Tue Mar 1 23:15:44 2005
++# using lirc-0.8.0(imon_pad) on Mon Jan 23 20:22:11 2006
+ #
+-# contributed by Venky Raju
++# contributed by M.Brakemeier
+ #
+-# brand: iMON-New
++# brand: SoundGraph
+ # model no. of remote control: iMON-PAD
+ # devices being controlled by this remote:
+ #
+@@ -22,12 +22,12 @@
+ min_repeat 1
+ toggle_bit 0
+
+-
+ begin codes
+ AppExit 0x288195B7
++ Power 0x289115B7
+ Record 0x298115B7
+ Play 0x2A8115B7
+- SlowMotion 0x29B195B7
++ Open 0x29B1D5B7
+ Rewind 0x2A8195B7
+ Pause 0x2A9115B7
+ FastForward 0x2B8115B7
+@@ -57,15 +57,15 @@
+ 0 0x2BA595B7
+ ShiftTab 0x28B515B7
+ Tab 0x29A115B7
+- MyMovie 0x2B8515B7
+- MyMusic 0x299195B7
+- MyPhoto 0x2BA115B7
+- MyTV 0x28A515B7
++ Red 0x2B8515B7 # MyMovie
++ Green 0x299195B7 # MyMusic
++ Blue 0x2BA115B7 # MyPhoto
++ Yellow 0x28A515B7 # MyTV
+ Bookmark 0x288515B7
+ Thumbnail 0x2AB715B7
+ AspectRatio 0x29A595B7
+ FullScreen 0x2AA395B7
+- MyDVD 0x29A295B7
++ Purple 0x29A295B7 # MyDVD
+ Menu 0x2BA385B7
+ Caption 0x298595B7
+ Language 0x2B8595B7
+@@ -84,6 +84,10 @@
+ Down 0x6F9ECBB7
+ Right 0x69A281B7
+
++ Mouse_N 0x690281B7
++ Mouse_S 0x688291B7
++ Mouse_W 0x6A8281B7
++ Mouse_E 0x688A81B7
+ end codes
+
+ end remote