2010-04-15 15:46:35 -06:00
|
|
|
/* ir-sysfs.c - sysfs interface for RC devices (/sys/class/rc)
|
2009-12-13 12:00:08 -07:00
|
|
|
*
|
2010-03-24 17:47:53 -06:00
|
|
|
* Copyright (C) 2009-2010 by Mauro Carvalho Chehab <mchehab@redhat.com>
|
2009-12-13 12:00:08 -07:00
|
|
|
*
|
|
|
|
* 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 version 2 of the License.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
include cleanup: Update gfp.h and slab.h includes to prepare for breaking implicit slab.h inclusion from percpu.h
percpu.h is included by sched.h and module.h and thus ends up being
included when building most .c files. percpu.h includes slab.h which
in turn includes gfp.h making everything defined by the two files
universally available and complicating inclusion dependencies.
percpu.h -> slab.h dependency is about to be removed. Prepare for
this change by updating users of gfp and slab facilities include those
headers directly instead of assuming availability. As this conversion
needs to touch large number of source files, the following script is
used as the basis of conversion.
http://userweb.kernel.org/~tj/misc/slabh-sweep.py
The script does the followings.
* Scan files for gfp and slab usages and update includes such that
only the necessary includes are there. ie. if only gfp is used,
gfp.h, if slab is used, slab.h.
* When the script inserts a new include, it looks at the include
blocks and try to put the new include such that its order conforms
to its surrounding. It's put in the include block which contains
core kernel includes, in the same order that the rest are ordered -
alphabetical, Christmas tree, rev-Xmas-tree or at the end if there
doesn't seem to be any matching order.
* If the script can't find a place to put a new include (mostly
because the file doesn't have fitting include block), it prints out
an error message indicating which .h file needs to be added to the
file.
The conversion was done in the following steps.
1. The initial automatic conversion of all .c files updated slightly
over 4000 files, deleting around 700 includes and adding ~480 gfp.h
and ~3000 slab.h inclusions. The script emitted errors for ~400
files.
2. Each error was manually checked. Some didn't need the inclusion,
some needed manual addition while adding it to implementation .h or
embedding .c file was more appropriate for others. This step added
inclusions to around 150 files.
3. The script was run again and the output was compared to the edits
from #2 to make sure no file was left behind.
4. Several build tests were done and a couple of problems were fixed.
e.g. lib/decompress_*.c used malloc/free() wrappers around slab
APIs requiring slab.h to be added manually.
5. The script was run on all .h files but without automatically
editing them as sprinkling gfp.h and slab.h inclusions around .h
files could easily lead to inclusion dependency hell. Most gfp.h
inclusion directives were ignored as stuff from gfp.h was usually
wildly available and often used in preprocessor macros. Each
slab.h inclusion directive was examined and added manually as
necessary.
6. percpu.h was updated not to include slab.h.
7. Build test were done on the following configurations and failures
were fixed. CONFIG_GCOV_KERNEL was turned off for all tests (as my
distributed build env didn't work with gcov compiles) and a few
more options had to be turned off depending on archs to make things
build (like ipr on powerpc/64 which failed due to missing writeq).
* x86 and x86_64 UP and SMP allmodconfig and a custom test config.
* powerpc and powerpc64 SMP allmodconfig
* sparc and sparc64 SMP allmodconfig
* ia64 SMP allmodconfig
* s390 SMP allmodconfig
* alpha SMP allmodconfig
* um on x86_64 SMP allmodconfig
8. percpu.h modifications were reverted so that it could be applied as
a separate patch and serve as bisection point.
Given the fact that I had only a couple of failures from tests on step
6, I'm fairly confident about the coverage of this conversion patch.
If there is a breakage, it's likely to be something in one of the arch
headers which should be easily discoverable easily on most builds of
the specific arch.
Signed-off-by: Tejun Heo <tj@kernel.org>
Guess-its-ok-by: Christoph Lameter <cl@linux-foundation.org>
Cc: Ingo Molnar <mingo@redhat.com>
Cc: Lee Schermerhorn <Lee.Schermerhorn@hp.com>
2010-03-24 02:04:11 -06:00
|
|
|
#include <linux/slab.h>
|
2009-12-13 12:00:08 -07:00
|
|
|
#include <linux/input.h>
|
|
|
|
#include <linux/device.h>
|
2010-04-08 12:10:27 -06:00
|
|
|
#include "ir-core-priv.h"
|
2009-12-13 12:00:08 -07:00
|
|
|
|
|
|
|
#define IRRCV_NUM_DEVICES 256
|
|
|
|
|
2009-12-13 22:55:03 -07:00
|
|
|
/* bit array to represent IR sysfs device number */
|
|
|
|
static unsigned long ir_core_dev_number;
|
2009-12-13 12:00:08 -07:00
|
|
|
|
V4L/DVB: ir-core: rename sysfs remote controller class from ir to rc
IR is an alias for Infrared Remote, while RC is an alias for Remote
Controller.
While currently all implementations are with Infrared Remote Controller,
this subsystem is not meant to be used only by IR type of RC's. So,
as discussed on both linux-media and linux-input, the better is to
rename the subsystem as Remote Controller.
While, currently, the only application that uses the /sys/class/irrcv is
ir-keytable application, and its sysfs support works only with the
current linux-next code, it is still possible to change the userspace API
without the risk of breaking applications. So, better to rename this
sooner than later.
Later patches will be needed to rename the files and to move them away
from drivers/media, but this is not a critical issue. So, for now,
let's just change the name of the sysfs class/nodes.
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
2010-03-26 19:45:16 -06:00
|
|
|
/* class for /sys/class/rc */
|
2010-03-11 08:41:56 -07:00
|
|
|
static char *ir_devnode(struct device *dev, mode_t *mode)
|
|
|
|
{
|
V4L/DVB: ir-core: rename sysfs remote controller class from ir to rc
IR is an alias for Infrared Remote, while RC is an alias for Remote
Controller.
While currently all implementations are with Infrared Remote Controller,
this subsystem is not meant to be used only by IR type of RC's. So,
as discussed on both linux-media and linux-input, the better is to
rename the subsystem as Remote Controller.
While, currently, the only application that uses the /sys/class/irrcv is
ir-keytable application, and its sysfs support works only with the
current linux-next code, it is still possible to change the userspace API
without the risk of breaking applications. So, better to rename this
sooner than later.
Later patches will be needed to rename the files and to move them away
from drivers/media, but this is not a critical issue. So, for now,
let's just change the name of the sysfs class/nodes.
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
2010-03-26 19:45:16 -06:00
|
|
|
return kasprintf(GFP_KERNEL, "rc/%s", dev_name(dev));
|
2010-03-11 08:41:56 -07:00
|
|
|
}
|
|
|
|
|
2010-03-24 17:47:53 -06:00
|
|
|
static struct class ir_input_class = {
|
V4L/DVB: ir-core: rename sysfs remote controller class from ir to rc
IR is an alias for Infrared Remote, while RC is an alias for Remote
Controller.
While currently all implementations are with Infrared Remote Controller,
this subsystem is not meant to be used only by IR type of RC's. So,
as discussed on both linux-media and linux-input, the better is to
rename the subsystem as Remote Controller.
While, currently, the only application that uses the /sys/class/irrcv is
ir-keytable application, and its sysfs support works only with the
current linux-next code, it is still possible to change the userspace API
without the risk of breaking applications. So, better to rename this
sooner than later.
Later patches will be needed to rename the files and to move them away
from drivers/media, but this is not a critical issue. So, for now,
let's just change the name of the sysfs class/nodes.
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
2010-03-26 19:45:16 -06:00
|
|
|
.name = "rc",
|
2010-03-11 08:41:56 -07:00
|
|
|
.devnode = ir_devnode,
|
|
|
|
};
|
2009-12-13 12:00:08 -07:00
|
|
|
|
2010-06-28 09:37:13 -06:00
|
|
|
static struct {
|
|
|
|
u64 type;
|
|
|
|
char *name;
|
|
|
|
} proto_names[] = {
|
|
|
|
{ IR_TYPE_UNKNOWN, "unknown" },
|
2010-06-28 09:43:25 -06:00
|
|
|
{ IR_TYPE_RC5, "rc-5" },
|
2010-06-28 09:37:13 -06:00
|
|
|
{ IR_TYPE_NEC, "nec" },
|
2010-06-28 09:43:25 -06:00
|
|
|
{ IR_TYPE_RC6, "rc-6" },
|
2010-06-28 09:37:13 -06:00
|
|
|
{ IR_TYPE_JVC, "jvc" },
|
|
|
|
{ IR_TYPE_SONY, "sony" },
|
V4L/DVB: IR/streamzap: functional in-kernel decoding
This patch makes in-kernel decoding with the stock Streamzap PC Remote
work out of the box. There are quite a few things going on in this
patch, all related to getting this working:
1) I had to enable reporting of a long space at the end of each signal,
or I had weird buffering and keybounce issues.
2) The keymap has been reworked slightly to match actual decoded values,
the first edition was missing the pre-data bits present in the lirc
config file for this remote.
3) There's a whole new decoder included, specifically for the
not-quite-RC5 15-bit protocol variant used by the Streamzap PC
Remote. The decoder, while usable with other recievers (tested with
an mceusb receiver), will only be loaded by the streamzap driver, as
its likely not of use in almost all other situations. This can be
revisited if/when all keytable loading (and disabling of unneeded
protocol decoder engines) is moved to userspace, but for now, I think
this makes the most sense.
Note that I did try to enable handling the streamzap RC5-ish protocol in
the current RC5 decoder, but there's no particularly easy way to tell if
its 14-bit RC5 or 15-bit Streamzap until we see bit 14, and even then,
in testing an attempted decoder merge, only 2/3 of the keys were
properly recognized as being the 15-bit variant and decoded correctly,
the rest were close enough to compliant with 14-bit that they were
decoded as such (but they have overlap with one another, and thus we
can't just shrug and use the 14-bit decoded values).
Also of note in this patch is the removal of the streamzap driver's
internal delay buffer. Per discussion w/Christoph, it shouldn't be
needed by lirc any longer anyway, and it doesn't seem to make any
difference to the in-kernel decoder engine. That being the case, I'm
yanking it all out, as it greatly simplifies the driver code.
Signed-off-by: Jarod Wilson <jarod@redhat.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
2010-08-07 10:31:40 -06:00
|
|
|
{ IR_TYPE_RC5_SZ, "rc-5-sz" },
|
2010-07-02 22:07:53 -06:00
|
|
|
{ IR_TYPE_LIRC, "lirc" },
|
2010-06-28 09:37:13 -06:00
|
|
|
};
|
|
|
|
|
2010-06-28 09:58:48 -06:00
|
|
|
#define PROTO_NONE "none"
|
|
|
|
|
2009-12-13 22:55:03 -07:00
|
|
|
/**
|
2010-06-13 14:29:31 -06:00
|
|
|
* show_protocols() - shows the current IR protocol(s)
|
2009-12-13 22:55:03 -07:00
|
|
|
* @d: the device descriptor
|
|
|
|
* @mattr: the device attribute struct (unused)
|
|
|
|
* @buf: a pointer to the output buffer
|
|
|
|
*
|
2010-06-13 14:29:31 -06:00
|
|
|
* This routine is a callback routine for input read the IR protocol type(s).
|
|
|
|
* it is trigged by reading /sys/class/rc/rc?/protocols.
|
|
|
|
* It returns the protocol names of supported protocols.
|
|
|
|
* Enabled protocols are printed in brackets.
|
2009-12-13 22:55:03 -07:00
|
|
|
*/
|
2010-06-13 14:29:31 -06:00
|
|
|
static ssize_t show_protocols(struct device *d,
|
|
|
|
struct device_attribute *mattr, char *buf)
|
2009-12-13 22:16:36 -07:00
|
|
|
{
|
|
|
|
struct ir_input_dev *ir_dev = dev_get_drvdata(d);
|
2010-06-13 14:29:31 -06:00
|
|
|
u64 allowed, enabled;
|
|
|
|
char *tmp = buf;
|
2010-06-28 09:37:13 -06:00
|
|
|
int i;
|
2010-06-13 14:29:31 -06:00
|
|
|
|
2010-10-14 09:23:56 -06:00
|
|
|
/* Device is being removed */
|
|
|
|
if (!ir_dev)
|
|
|
|
return -EINVAL;
|
|
|
|
|
2010-09-22 05:06:43 -06:00
|
|
|
if (ir_dev->props && ir_dev->props->driver_type == RC_DRIVER_SCANCODE) {
|
2010-06-13 14:29:31 -06:00
|
|
|
enabled = ir_dev->rc_tab.ir_type;
|
|
|
|
allowed = ir_dev->props->allowed_protos;
|
2010-09-22 05:06:43 -06:00
|
|
|
} else if (ir_dev->raw) {
|
2010-06-13 14:29:31 -06:00
|
|
|
enabled = ir_dev->raw->enabled_protocols;
|
|
|
|
allowed = ir_raw_get_allowed_protocols();
|
2010-09-22 05:06:43 -06:00
|
|
|
} else
|
|
|
|
return sprintf(tmp, "[builtin]\n");
|
2009-12-13 22:16:36 -07:00
|
|
|
|
2010-06-13 14:29:31 -06:00
|
|
|
IR_dprintk(1, "allowed - 0x%llx, enabled - 0x%llx\n",
|
|
|
|
(long long)allowed,
|
|
|
|
(long long)enabled);
|
|
|
|
|
2010-06-28 09:37:13 -06:00
|
|
|
for (i = 0; i < ARRAY_SIZE(proto_names); i++) {
|
|
|
|
if (allowed & enabled & proto_names[i].type)
|
|
|
|
tmp += sprintf(tmp, "[%s] ", proto_names[i].name);
|
|
|
|
else if (allowed & proto_names[i].type)
|
|
|
|
tmp += sprintf(tmp, "%s ", proto_names[i].name);
|
|
|
|
}
|
2010-06-13 14:29:31 -06:00
|
|
|
|
|
|
|
if (tmp != buf)
|
|
|
|
tmp--;
|
|
|
|
*tmp = '\n';
|
|
|
|
return tmp + 1 - buf;
|
2009-12-13 22:16:36 -07:00
|
|
|
}
|
|
|
|
|
2009-12-13 22:55:03 -07:00
|
|
|
/**
|
2010-06-13 14:29:31 -06:00
|
|
|
* store_protocols() - changes the current IR protocol(s)
|
2009-12-13 22:55:03 -07:00
|
|
|
* @d: the device descriptor
|
|
|
|
* @mattr: the device attribute struct (unused)
|
|
|
|
* @buf: a pointer to the input buffer
|
|
|
|
* @len: length of the input buffer
|
|
|
|
*
|
|
|
|
* This routine is a callback routine for changing the IR protocol type.
|
2010-06-13 14:29:31 -06:00
|
|
|
* It is trigged by writing to /sys/class/rc/rc?/protocols.
|
|
|
|
* Writing "+proto" will add a protocol to the list of enabled protocols.
|
|
|
|
* Writing "-proto" will remove a protocol from the list of enabled protocols.
|
|
|
|
* Writing "proto" will enable only "proto".
|
2010-06-28 09:58:48 -06:00
|
|
|
* Writing "none" will disable all protocols.
|
2010-06-13 14:29:31 -06:00
|
|
|
* Returns -EINVAL if an invalid protocol combination or unknown protocol name
|
|
|
|
* is used, otherwise @len.
|
2009-12-13 22:55:03 -07:00
|
|
|
*/
|
2010-06-13 14:29:31 -06:00
|
|
|
static ssize_t store_protocols(struct device *d,
|
|
|
|
struct device_attribute *mattr,
|
|
|
|
const char *data,
|
|
|
|
size_t len)
|
2009-12-13 22:46:42 -07:00
|
|
|
{
|
|
|
|
struct ir_input_dev *ir_dev = dev_get_drvdata(d);
|
2010-06-13 14:29:31 -06:00
|
|
|
bool enable, disable;
|
|
|
|
const char *tmp;
|
|
|
|
u64 type;
|
|
|
|
u64 mask;
|
2010-06-28 10:52:07 -06:00
|
|
|
int rc, i, count = 0;
|
2009-12-13 22:56:15 -07:00
|
|
|
unsigned long flags;
|
2010-06-13 14:29:31 -06:00
|
|
|
|
2010-10-14 09:23:56 -06:00
|
|
|
/* Device is being removed */
|
|
|
|
if (!ir_dev)
|
|
|
|
return -EINVAL;
|
|
|
|
|
2010-09-22 05:06:43 -06:00
|
|
|
if (ir_dev->props && ir_dev->props->driver_type == RC_DRIVER_SCANCODE)
|
2010-06-28 10:52:07 -06:00
|
|
|
type = ir_dev->rc_tab.ir_type;
|
2010-09-22 05:06:43 -06:00
|
|
|
else if (ir_dev->raw)
|
2010-06-28 10:52:07 -06:00
|
|
|
type = ir_dev->raw->enabled_protocols;
|
2010-09-22 05:06:43 -06:00
|
|
|
else {
|
|
|
|
IR_dprintk(1, "Protocol switching not supported\n");
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
2009-12-13 22:46:42 -07:00
|
|
|
|
2010-06-28 10:52:07 -06:00
|
|
|
while ((tmp = strsep((char **) &data, " \n")) != NULL) {
|
|
|
|
if (!*tmp)
|
|
|
|
break;
|
|
|
|
|
|
|
|
if (*tmp == '+') {
|
|
|
|
enable = true;
|
|
|
|
disable = false;
|
|
|
|
tmp++;
|
|
|
|
} else if (*tmp == '-') {
|
|
|
|
enable = false;
|
|
|
|
disable = true;
|
|
|
|
tmp++;
|
|
|
|
} else {
|
|
|
|
enable = false;
|
|
|
|
disable = false;
|
|
|
|
}
|
2010-06-28 09:58:48 -06:00
|
|
|
|
2010-06-28 10:52:07 -06:00
|
|
|
if (!enable && !disable && !strncasecmp(tmp, PROTO_NONE, sizeof(PROTO_NONE))) {
|
|
|
|
tmp += sizeof(PROTO_NONE);
|
|
|
|
mask = 0;
|
|
|
|
count++;
|
|
|
|
} else {
|
|
|
|
for (i = 0; i < ARRAY_SIZE(proto_names); i++) {
|
|
|
|
if (!strncasecmp(tmp, proto_names[i].name, strlen(proto_names[i].name))) {
|
|
|
|
tmp += strlen(proto_names[i].name);
|
|
|
|
mask = proto_names[i].type;
|
|
|
|
break;
|
|
|
|
}
|
2010-06-28 09:58:48 -06:00
|
|
|
}
|
2010-06-28 10:52:07 -06:00
|
|
|
if (i == ARRAY_SIZE(proto_names)) {
|
|
|
|
IR_dprintk(1, "Unknown protocol: '%s'\n", tmp);
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
count++;
|
2010-06-28 09:58:48 -06:00
|
|
|
}
|
2010-06-28 10:52:07 -06:00
|
|
|
|
|
|
|
if (enable)
|
|
|
|
type |= mask;
|
|
|
|
else if (disable)
|
|
|
|
type &= ~mask;
|
|
|
|
else
|
|
|
|
type = mask;
|
2009-12-13 22:46:42 -07:00
|
|
|
}
|
|
|
|
|
2010-06-28 10:52:07 -06:00
|
|
|
if (!count) {
|
|
|
|
IR_dprintk(1, "Protocol not specified\n");
|
2009-12-13 22:46:42 -07:00
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
2010-06-13 14:29:31 -06:00
|
|
|
if (ir_dev->props && ir_dev->props->change_protocol) {
|
|
|
|
rc = ir_dev->props->change_protocol(ir_dev->props->priv,
|
|
|
|
type);
|
|
|
|
if (rc < 0) {
|
|
|
|
IR_dprintk(1, "Error setting protocols to 0x%llx\n",
|
|
|
|
(long long)type);
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
}
|
2009-12-13 22:46:42 -07:00
|
|
|
|
2010-09-22 05:06:43 -06:00
|
|
|
if (ir_dev->props && ir_dev->props->driver_type == RC_DRIVER_SCANCODE) {
|
2010-06-13 14:29:31 -06:00
|
|
|
spin_lock_irqsave(&ir_dev->rc_tab.lock, flags);
|
|
|
|
ir_dev->rc_tab.ir_type = type;
|
|
|
|
spin_unlock_irqrestore(&ir_dev->rc_tab.lock, flags);
|
|
|
|
} else {
|
|
|
|
ir_dev->raw->enabled_protocols = type;
|
|
|
|
}
|
2010-04-07 22:02:49 -06:00
|
|
|
|
2010-06-13 14:29:31 -06:00
|
|
|
IR_dprintk(1, "Current protocol(s): 0x%llx\n",
|
|
|
|
(long long)type);
|
2010-04-07 22:02:49 -06:00
|
|
|
|
2010-06-13 14:29:31 -06:00
|
|
|
return len;
|
2010-04-07 22:02:49 -06:00
|
|
|
}
|
2010-03-12 07:50:17 -07:00
|
|
|
|
|
|
|
#define ADD_HOTPLUG_VAR(fmt, val...) \
|
|
|
|
do { \
|
|
|
|
int err = add_uevent_var(env, fmt, val); \
|
|
|
|
if (err) \
|
|
|
|
return err; \
|
|
|
|
} while (0)
|
|
|
|
|
2010-06-13 14:29:31 -06:00
|
|
|
static int rc_dev_uevent(struct device *device, struct kobj_uevent_env *env)
|
2010-03-12 07:50:17 -07:00
|
|
|
{
|
|
|
|
struct ir_input_dev *ir_dev = dev_get_drvdata(device);
|
|
|
|
|
|
|
|
if (ir_dev->rc_tab.name)
|
2010-04-10 20:43:39 -06:00
|
|
|
ADD_HOTPLUG_VAR("NAME=%s", ir_dev->rc_tab.name);
|
2010-03-12 17:18:14 -07:00
|
|
|
if (ir_dev->driver_name)
|
2010-04-10 20:43:39 -06:00
|
|
|
ADD_HOTPLUG_VAR("DRV_NAME=%s", ir_dev->driver_name);
|
2010-03-12 07:50:17 -07:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-12-13 22:55:03 -07:00
|
|
|
/*
|
|
|
|
* Static device attribute struct with the sysfs attributes for IR's
|
|
|
|
*/
|
2010-06-13 14:29:31 -06:00
|
|
|
static DEVICE_ATTR(protocols, S_IRUGO | S_IWUSR,
|
|
|
|
show_protocols, store_protocols);
|
2010-04-07 22:02:49 -06:00
|
|
|
|
2010-06-13 14:29:31 -06:00
|
|
|
static struct attribute *rc_dev_attrs[] = {
|
|
|
|
&dev_attr_protocols.attr,
|
2009-12-29 11:48:04 -07:00
|
|
|
NULL,
|
2009-12-13 12:00:08 -07:00
|
|
|
};
|
|
|
|
|
2010-06-13 14:29:31 -06:00
|
|
|
static struct attribute_group rc_dev_attr_grp = {
|
|
|
|
.attrs = rc_dev_attrs,
|
2010-03-11 08:41:56 -07:00
|
|
|
};
|
|
|
|
|
2010-06-13 14:29:31 -06:00
|
|
|
static const struct attribute_group *rc_dev_attr_groups[] = {
|
|
|
|
&rc_dev_attr_grp,
|
2010-03-11 08:41:56 -07:00
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
2010-04-06 20:21:46 -06:00
|
|
|
static struct device_type rc_dev_type = {
|
2010-06-13 14:29:31 -06:00
|
|
|
.groups = rc_dev_attr_groups,
|
|
|
|
.uevent = rc_dev_uevent,
|
2010-03-11 08:41:56 -07:00
|
|
|
};
|
|
|
|
|
2009-12-13 22:55:03 -07:00
|
|
|
/**
|
2010-03-28 15:38:49 -06:00
|
|
|
* ir_register_class() - creates the sysfs for /sys/class/rc/rc?
|
2009-12-13 22:55:03 -07:00
|
|
|
* @input_dev: the struct input_dev descriptor of the device
|
|
|
|
*
|
|
|
|
* This routine is used to register the syfs code for IR class
|
|
|
|
*/
|
2009-12-13 12:00:08 -07:00
|
|
|
int ir_register_class(struct input_dev *input_dev)
|
|
|
|
{
|
|
|
|
struct ir_input_dev *ir_dev = input_get_drvdata(input_dev);
|
|
|
|
int devno = find_first_zero_bit(&ir_core_dev_number,
|
|
|
|
IRRCV_NUM_DEVICES);
|
|
|
|
|
|
|
|
if (unlikely(devno < 0))
|
|
|
|
return devno;
|
|
|
|
|
2010-06-13 14:29:31 -06:00
|
|
|
ir_dev->dev.type = &rc_dev_type;
|
2010-09-06 15:26:07 -06:00
|
|
|
ir_dev->devno = devno;
|
2010-04-06 20:21:46 -06:00
|
|
|
|
2010-03-11 08:41:56 -07:00
|
|
|
ir_dev->dev.class = &ir_input_class;
|
|
|
|
ir_dev->dev.parent = input_dev->dev.parent;
|
2010-09-06 15:26:07 -06:00
|
|
|
input_dev->dev.parent = &ir_dev->dev;
|
2010-03-28 15:38:49 -06:00
|
|
|
dev_set_name(&ir_dev->dev, "rc%d", devno);
|
2010-03-12 07:50:17 -07:00
|
|
|
dev_set_drvdata(&ir_dev->dev, ir_dev);
|
2010-09-06 15:26:07 -06:00
|
|
|
return device_register(&ir_dev->dev);
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* ir_register_input - registers ir input device with input subsystem
|
|
|
|
* @input_dev: the struct input_dev descriptor of the device
|
|
|
|
*/
|
|
|
|
|
|
|
|
int ir_register_input(struct input_dev *input_dev)
|
|
|
|
{
|
|
|
|
struct ir_input_dev *ir_dev = input_get_drvdata(input_dev);
|
|
|
|
int rc;
|
|
|
|
const char *path;
|
2010-03-11 08:41:56 -07:00
|
|
|
|
|
|
|
|
|
|
|
rc = input_register_device(input_dev);
|
|
|
|
if (rc < 0) {
|
|
|
|
device_del(&ir_dev->dev);
|
|
|
|
return rc;
|
2009-12-13 12:00:08 -07:00
|
|
|
}
|
|
|
|
|
2010-03-11 08:41:56 -07:00
|
|
|
__module_get(THIS_MODULE);
|
|
|
|
|
2010-03-12 07:50:17 -07:00
|
|
|
path = kobject_get_path(&ir_dev->dev.kobj, GFP_KERNEL);
|
|
|
|
printk(KERN_INFO "%s: %s as %s\n",
|
2010-03-11 08:41:56 -07:00
|
|
|
dev_name(&ir_dev->dev),
|
|
|
|
input_dev->name ? input_dev->name : "Unspecified device",
|
|
|
|
path ? path : "N/A");
|
|
|
|
kfree(path);
|
|
|
|
|
2010-09-06 15:26:07 -06:00
|
|
|
set_bit(ir_dev->devno, &ir_core_dev_number);
|
2009-12-13 12:00:08 -07:00
|
|
|
return 0;
|
2010-09-06 15:26:07 -06:00
|
|
|
}
|
2009-12-13 12:00:08 -07:00
|
|
|
|
2009-12-13 22:55:03 -07:00
|
|
|
/**
|
|
|
|
* ir_unregister_class() - removes the sysfs for sysfs for
|
2010-03-28 15:38:49 -06:00
|
|
|
* /sys/class/rc/rc?
|
2009-12-13 22:55:03 -07:00
|
|
|
* @input_dev: the struct input_dev descriptor of the device
|
|
|
|
*
|
|
|
|
* This routine is used to unregister the syfs code for IR class
|
|
|
|
*/
|
2009-12-13 12:00:08 -07:00
|
|
|
void ir_unregister_class(struct input_dev *input_dev)
|
|
|
|
{
|
|
|
|
struct ir_input_dev *ir_dev = input_get_drvdata(input_dev);
|
|
|
|
|
2010-10-14 09:23:56 -06:00
|
|
|
input_set_drvdata(input_dev, NULL);
|
2009-12-13 12:00:08 -07:00
|
|
|
clear_bit(ir_dev->devno, &ir_core_dev_number);
|
2010-03-11 08:41:56 -07:00
|
|
|
input_unregister_device(input_dev);
|
|
|
|
device_del(&ir_dev->dev);
|
2009-12-13 12:00:08 -07:00
|
|
|
|
2010-03-11 08:41:56 -07:00
|
|
|
module_put(THIS_MODULE);
|
2009-12-13 12:00:08 -07:00
|
|
|
}
|
|
|
|
|
2009-12-13 22:55:03 -07:00
|
|
|
/*
|
V4L/DVB: ir-core: rename sysfs remote controller class from ir to rc
IR is an alias for Infrared Remote, while RC is an alias for Remote
Controller.
While currently all implementations are with Infrared Remote Controller,
this subsystem is not meant to be used only by IR type of RC's. So,
as discussed on both linux-media and linux-input, the better is to
rename the subsystem as Remote Controller.
While, currently, the only application that uses the /sys/class/irrcv is
ir-keytable application, and its sysfs support works only with the
current linux-next code, it is still possible to change the userspace API
without the risk of breaking applications. So, better to rename this
sooner than later.
Later patches will be needed to rename the files and to move them away
from drivers/media, but this is not a critical issue. So, for now,
let's just change the name of the sysfs class/nodes.
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
2010-03-26 19:45:16 -06:00
|
|
|
* Init/exit code for the module. Basically, creates/removes /sys/class/rc
|
2009-12-13 22:55:03 -07:00
|
|
|
*/
|
|
|
|
|
2009-12-13 12:00:08 -07:00
|
|
|
static int __init ir_core_init(void)
|
|
|
|
{
|
2010-03-11 08:41:56 -07:00
|
|
|
int rc = class_register(&ir_input_class);
|
|
|
|
if (rc) {
|
V4L/DVB: ir-core: rename sysfs remote controller class from ir to rc
IR is an alias for Infrared Remote, while RC is an alias for Remote
Controller.
While currently all implementations are with Infrared Remote Controller,
this subsystem is not meant to be used only by IR type of RC's. So,
as discussed on both linux-media and linux-input, the better is to
rename the subsystem as Remote Controller.
While, currently, the only application that uses the /sys/class/irrcv is
ir-keytable application, and its sysfs support works only with the
current linux-next code, it is still possible to change the userspace API
without the risk of breaking applications. So, better to rename this
sooner than later.
Later patches will be needed to rename the files and to move them away
from drivers/media, but this is not a critical issue. So, for now,
let's just change the name of the sysfs class/nodes.
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
2010-03-26 19:45:16 -06:00
|
|
|
printk(KERN_ERR "ir_core: unable to register rc class\n");
|
2010-03-11 08:41:56 -07:00
|
|
|
return rc;
|
2009-12-13 12:00:08 -07:00
|
|
|
}
|
|
|
|
|
2010-04-02 17:01:00 -06:00
|
|
|
/* Initialize/load the decoders/keymap code that will be used */
|
2010-03-24 17:47:53 -06:00
|
|
|
ir_raw_init();
|
2010-07-31 08:59:21 -06:00
|
|
|
ir_rcmap_init();
|
2010-03-24 17:47:53 -06:00
|
|
|
|
2009-12-13 12:00:08 -07:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void __exit ir_core_exit(void)
|
|
|
|
{
|
2010-03-11 08:41:56 -07:00
|
|
|
class_unregister(&ir_input_class);
|
2010-07-31 08:59:21 -06:00
|
|
|
ir_rcmap_cleanup();
|
2009-12-13 12:00:08 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
module_init(ir_core_init);
|
|
|
|
module_exit(ir_core_exit);
|