From: "David Härdeman" <david@hardeman.nu>
To: Jesse Barnes <jesse.barnes@intel.com>
Cc: "linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
alan@lxorguk.ukuu.org.uk, linux-acpi@vger.kernel.org
Subject: Re: [RFC/PATCH] Winbond CIR driver for the WPCD376I chip (ACPI/PNP id WEC1022)
Date: Thu, 25 Jun 2009 13:46:01 +0200 (CEST) [thread overview]
Message-ID: <461dbc08f8573008440a03b9618bce94.squirrel@www.hardeman.nu> (raw)
In-Reply-To: <20090624151335.0f73907c@jbarnes-g45>
On Thu, June 25, 2009 00:13, Jesse Barnes wrote:
> On Wed, 24 Jun 2009 14:36:45 -0700
> David Härdeman <david@hardeman.nu> wrote:
>
>> I've written a driver for the
...
>> Winbond WPCD376I chipset
>
> Yay, glad I could get these released for you. I just did a quick scan
> of the driver (notes below)
Two more things that Intel could provide:
a) Publish the datasheet (I know you mentioned doing this but
I can't find it on the Intel website)
b) Make the hardware needed to actually use the CIR functionality
available for purchase. http://www.easy-cir.com seems to be more
or less dead (which is curious since an ad for the website
seems to be included with every CIR-enabled Intel motherboard).
I had to solder my own IR receiver in order to write the driver.
>> I'd appreciate having the driver reviewed...and in addition I have
>> some questions for the list:
>>
>> 1) SuperI/O concurrency
>> ...
>
> Yeah, often multifunction devices like this have higher level "bus
> drivers" that take care of managing the global parts, and drivers that
> attach to it to manage individual functions. If you were feeling
> really ambitious you could do that for the superio chip and port any
> sub-drivers... :)
My ambitions are more directed towards some kind of IR-subsystem into the
kernel at the moment :) Besides, the Intel mainboards doesn't actually
seem to use any of the other logical devices (which are mostly supported
by existing drivers anyway).
>> Where should this driver go in the tree? drivers/platform/x86/?
>
> drivers/char is probably fine.
I'm leaning towards drivers/input/misc now...
>> #define dprintk(fmt, arg...) \
>> do { \
>> if (debug) \
>> printk(KERN_DEBUG DRVNAME fmt , ## arg); \
>> } while (0)
>
> Maybe you could use the generic debug functions instead (pr_debug iirc)?
Yes
> ...
> There are a few magic numbers above here you could possibly make into
> #defines just to make things more readable.
I'll try
> The key up/down timeout handling seems like a pretty general problem,
> maybe the input layer has some helpers for it? Dunno.
drivers/media/common/ir-functions.c is the closest thing I could find
while writing the driver. The functions there aren't usable because they
do not properly implement the toggle/repeat handling and it forces the use
of a small, fixed-size keymap. The same problem existed when I improved
the IR functionality in drivers/media/dvb/ttpci/budget-ci.c by the way, so
a generic version could probably be added to ir-functions in the future.
>> static ssize_t
>> wbcir_show_last_scancode(struct device *dev,
>> struct device_attribute *attr, char *buf)
>> {
>> struct acpi_device *device = container_of(dev, struct
>> acpi_device, dev); struct wbcir_data *data = acpi_driver_data(device);
>> return sprintf(buf, "0x%08X\n", data->last_scancode);
>> }
>>
>> static struct device_attribute dev_attr_last_scancode = {
>> .attr = {
>> .name = "last_scancode",
>> .mode = 0444,
>> },
>> .show = wbcir_show_last_scancode,
>> .store = NULL,
>>
>> };
>>
>> static struct attribute *wbcir_attributes[] = {
>> &dev_attr_last_scancode.attr,
>> NULL,
>> };
>>
>> static struct attribute_group wbcir_attribute_group = {
>> .attrs = wbcir_attributes,
>> };
>
> Are these just for debugging? If so, you could put them in debugfs
> instead...
No, they are there to help the user when generating a keymap for an
unknown remote. Press key on remote, read value from
/sys/.../last_scancode, add line saying "0x12345678 = KEY_EXPLODE" to
keymap file, repeat...there aren't any user-friendly tools for this yet
though.
(Dropped Terry from the CC, I just saw that he had requested a driver for
this chip earlier but I'm not sure he's that interested in the rest of the
discussion)
--
David Härdeman
next prev parent reply other threads:[~2009-06-25 11:46 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <20090624213645.GA18843@hardeman.nu>
2009-06-24 22:13 ` [RFC/PATCH] Winbond CIR driver for the WPCD376I chip (ACPI/PNP id WEC1022) Jesse Barnes
2009-06-25 11:46 ` David Härdeman [this message]
2009-06-25 16:20 ` Jesse Barnes
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=461dbc08f8573008440a03b9618bce94.squirrel@www.hardeman.nu \
--to=david@hardeman.nu \
--cc=alan@lxorguk.ukuu.org.uk \
--cc=jesse.barnes@intel.com \
--cc=linux-acpi@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox