Commit eaac83e4 authored by Stelian Pop's avatar Stelian Pop Committed by Linus Torvalds

[PATCH] sonypi driver update

The most important changes are:
	* add suspend/resume support to the sonypi driver (not
	  based on driverfs however) (Florian Lohoff);
	* add "Zoom" and "Thumbphrase" buttons (Francois Gurin);
	* add camera and lid events for C1XE (Kunihiko IMAI);
	* add a mask parameter letting the user choose what kind
	  of events he wants;
	* use ACPI ec_read/ec_write when available in order to
	  play nice when latest ACPI is enabled;
	* several source cleanups.
parent d29cb98f
Sony Programmable I/O Control Device Driver Readme Sony Programmable I/O Control Device Driver Readme
-------------------------------------------------- --------------------------------------------------
Copyright (C) 2001 Stelian Pop <stelian.pop@fr.alcove.com>, Alcôve Copyright (C) 2001-2002 Stelian Pop <stelian@popies.net>
Copyright (C) 2001-2002 Alcôve <www.alcove.com>
Copyright (C) 2001 Michael Ashley <m.ashley@unsw.edu.au> Copyright (C) 2001 Michael Ashley <m.ashley@unsw.edu.au>
Copyright (C) 2001 Junichi Morita <jun1m@mars.dti.ne.jp> Copyright (C) 2001 Junichi Morita <jun1m@mars.dti.ne.jp>
Copyright (C) 2000 Takaya Kinjo <t-kinjo@tc4.so-net.ne.jp> Copyright (C) 2000 Takaya Kinjo <t-kinjo@tc4.so-net.ne.jp>
...@@ -15,14 +16,14 @@ generate, like: ...@@ -15,14 +16,14 @@ generate, like:
- capture button events (only on Vaio Picturebook series) - capture button events (only on Vaio Picturebook series)
- Fn keys - Fn keys
- bluetooth button (only on C1VR model) - bluetooth button (only on C1VR model)
- back button (PCG-GR7/K model) - programmable keys, back, help, zoom, thumbphrase buttons, etc.
- lid open/close events (Z600NE model) (when available)
Those events (see linux/sonypi.h) can be polled using the character device node Those events (see linux/sonypi.h) can be polled using the character device node
/dev/sonypi (major 10, minor auto allocated or specified as a option). /dev/sonypi (major 10, minor auto allocated or specified as a option).
A simple daemon which translates the jogdial movements into mouse wheel events A simple daemon which translates the jogdial movements into mouse wheel events
can be downloaded at: <http://www.alcove-labs.org/en/software/sonypi/> can be downloaded at: <http://popies.net/sonypi/>
This driver supports also some ioctl commands for setting the LCD screen This driver supports also some ioctl commands for setting the LCD screen
brightness and querying the batteries charge information (some more brightness and querying the batteries charge information (some more
...@@ -43,7 +44,7 @@ Several options can be passed to the sonypi driver, either by adding them ...@@ -43,7 +44,7 @@ Several options can be passed to the sonypi driver, either by adding them
to /etc/modules.conf file, when the driver is compiled as a module or by to /etc/modules.conf file, when the driver is compiled as a module or by
adding the following to the kernel command line (in your bootloader): adding the following to the kernel command line (in your bootloader):
sonypi=minor[,verbose[,fnkeyinit[,camera[,compat[,nojogdial]]]]] sonypi=minor[,verbose[,fnkeyinit[,camera[,compat[,mask]]]]]
where: where:
...@@ -64,15 +65,36 @@ where: ...@@ -64,15 +65,36 @@ where:
with it and it shouldn't be required anyway if with it and it shouldn't be required anyway if
ACPI is already enabled). ACPI is already enabled).
verbose: print unknown events from the sonypi device verbose: set to 1 to print unknown events received from the
sonypi device.
set to 2 to print all events received from the
sonypi device.
compat: uses some compatibility code for enabling the sonypi compat: uses some compatibility code for enabling the sonypi
events. If the driver worked for you in the past events. If the driver worked for you in the past
(prior to version 1.5) and does not work anymore, (prior to version 1.5) and does not work anymore,
add this option and report to the author. add this option and report to the author.
nojogdial: gives more accurate PKEY events on those Vaio models mask: event mask telling the driver what events will be
which don't have a jogdial (like the FX series). reported to the user. This parameter is required for some
Vaio models where the hardware reuses values used in
other Vaio models (like the FX series who does not
have a jogdial but reuses the jogdial events for
programmable keys events). The default event mask is
set to 0xffffffff, meaning that all possible events will be
tried. You can use the following bits to construct
your own event mask (from drivers/char/sonypi.h):
SONYPI_JOGGER_MASK 0x0001
SONYPI_CAPTURE_MASK 0x0002
SONYPI_FNKEY_MASK 0x0004
SONYPI_BLUETOOTH_MASK 0x0008
SONYPI_PKEY_MASK 0x0010
SONYPI_BACK_MASK 0x0020
SONYPI_HELP_MASK 0x0040
SONYPI_LID_MASK 0x0080
SONYPI_ZOOM_MASK 0x0100
SONYPI_THUMBPHRASE_MASK 0x0200
SONYPI_MEYE_MASK 0x0400
Module use: Module use:
----------- -----------
......
/* /*
* Sony Programmable I/O Control Device driver for VAIO * Sony Programmable I/O Control Device driver for VAIO
* *
* Copyright (C) 2001 Stelian Pop <stelian.pop@fr.alcove.com>, Alcve * Copyright (C) 2001-2002 Stelian Pop <stelian@popies.net>
*
* Copyright (C) 2001-2002 Alcve <www.alcove.com>
* *
* Copyright (C) 2001 Michael Ashley <m.ashley@unsw.edu.au> * Copyright (C) 2001 Michael Ashley <m.ashley@unsw.edu.au>
* *
...@@ -39,6 +41,7 @@ ...@@ -39,6 +41,7 @@
#include <linux/poll.h> #include <linux/poll.h>
#include <linux/delay.h> #include <linux/delay.h>
#include <linux/wait.h> #include <linux/wait.h>
#include <linux/acpi.h>
#include <asm/uaccess.h> #include <asm/uaccess.h>
#include <asm/io.h> #include <asm/io.h>
...@@ -53,7 +56,7 @@ static int verbose; /* = 0 */ ...@@ -53,7 +56,7 @@ static int verbose; /* = 0 */
static int fnkeyinit; /* = 0 */ static int fnkeyinit; /* = 0 */
static int camera; /* = 0 */ static int camera; /* = 0 */
static int compat; /* = 0 */ static int compat; /* = 0 */
static int nojogdial; /* = 0 */ static unsigned long mask = 0xffffffff;
/* Inits the queue */ /* Inits the queue */
static inline void sonypi_initq(void) { static inline void sonypi_initq(void) {
...@@ -113,29 +116,14 @@ static inline int sonypi_emptyq(void) { ...@@ -113,29 +116,14 @@ static inline int sonypi_emptyq(void) {
return result; return result;
} }
static void sonypi_ecrset(u8 addr, u8 value) { static int ec_read16(u8 addr, u16 *value) {
u8 val_lb, val_hb;
wait_on_command(1, inb_p(SONYPI_CST_IOPORT) & 3); if (ec_read(addr, &val_lb))
outb_p(0x81, SONYPI_CST_IOPORT); return -1;
wait_on_command(0, inb_p(SONYPI_CST_IOPORT) & 2); if (ec_read(addr + 1, &val_hb))
outb_p(addr, SONYPI_DATA_IOPORT); return -1;
wait_on_command(0, inb_p(SONYPI_CST_IOPORT) & 2); *value = val_lb | (val_hb << 8);
outb_p(value, SONYPI_DATA_IOPORT); return 0;
wait_on_command(0, inb_p(SONYPI_CST_IOPORT) & 2);
}
static u8 sonypi_ecrget(u8 addr) {
wait_on_command(1, inb_p(SONYPI_CST_IOPORT) & 3);
outb_p(0x80, SONYPI_CST_IOPORT);
wait_on_command(0, inb_p(SONYPI_CST_IOPORT) & 2);
outb_p(addr, SONYPI_DATA_IOPORT);
wait_on_command(0, inb_p(SONYPI_CST_IOPORT) & 2);
return inb_p(SONYPI_DATA_IOPORT);
}
static u16 sonypi_ecrget16(u8 addr) {
return sonypi_ecrget(addr) | (sonypi_ecrget(addr + 1) << 8);
} }
/* Initializes the device - this comes from the AML code in the ACPI bios */ /* Initializes the device - this comes from the AML code in the ACPI bios */
...@@ -162,9 +150,12 @@ static void __devinit sonypi_type1_srs(void) { ...@@ -162,9 +150,12 @@ static void __devinit sonypi_type1_srs(void) {
} }
static void __devinit sonypi_type2_srs(void) { static void __devinit sonypi_type2_srs(void) {
sonypi_ecrset(SONYPI_SHIB, (sonypi_device.ioport1 & 0xFF00) >> 8); if (ec_write(SONYPI_SHIB, (sonypi_device.ioport1 & 0xFF00) >> 8))
sonypi_ecrset(SONYPI_SLOB, sonypi_device.ioport1 & 0x00FF); printk(KERN_WARNING "ec_write failed\n");
sonypi_ecrset(SONYPI_SIRQ, sonypi_device.bits); if (ec_write(SONYPI_SLOB, sonypi_device.ioport1 & 0x00FF))
printk(KERN_WARNING "ec_write failed\n");
if (ec_write(SONYPI_SIRQ, sonypi_device.bits))
printk(KERN_WARNING "ec_write failed\n");
udelay(10); udelay(10);
} }
...@@ -182,15 +173,18 @@ static void __devexit sonypi_type1_dis(void) { ...@@ -182,15 +173,18 @@ static void __devexit sonypi_type1_dis(void) {
} }
static void __devexit sonypi_type2_dis(void) { static void __devexit sonypi_type2_dis(void) {
sonypi_ecrset(SONYPI_SHIB, 0); if (ec_write(SONYPI_SHIB, 0))
sonypi_ecrset(SONYPI_SLOB, 0); printk(KERN_WARNING "ec_write failed\n");
sonypi_ecrset(SONYPI_SIRQ, 0); if (ec_write(SONYPI_SLOB, 0))
printk(KERN_WARNING "ec_write failed\n");
if (ec_write(SONYPI_SIRQ, 0))
printk(KERN_WARNING "ec_write failed\n");
} }
static u8 sonypi_call1(u8 dev) { static u8 sonypi_call1(u8 dev) {
u8 v1, v2; u8 v1, v2;
wait_on_command(0, inb_p(sonypi_device.ioport2) & 2); wait_on_command(0, inb_p(sonypi_device.ioport2) & 2, ITERATIONS_LONG);
outb(dev, sonypi_device.ioport2); outb(dev, sonypi_device.ioport2);
v1 = inb_p(sonypi_device.ioport2); v1 = inb_p(sonypi_device.ioport2);
v2 = inb_p(sonypi_device.ioport1); v2 = inb_p(sonypi_device.ioport1);
...@@ -200,9 +194,9 @@ static u8 sonypi_call1(u8 dev) { ...@@ -200,9 +194,9 @@ static u8 sonypi_call1(u8 dev) {
static u8 sonypi_call2(u8 dev, u8 fn) { static u8 sonypi_call2(u8 dev, u8 fn) {
u8 v1; u8 v1;
wait_on_command(0, inb_p(sonypi_device.ioport2) & 2); wait_on_command(0, inb_p(sonypi_device.ioport2) & 2, ITERATIONS_LONG);
outb(dev, sonypi_device.ioport2); outb(dev, sonypi_device.ioport2);
wait_on_command(0, inb_p(sonypi_device.ioport2) & 2); wait_on_command(0, inb_p(sonypi_device.ioport2) & 2, ITERATIONS_LONG);
outb(fn, sonypi_device.ioport1); outb(fn, sonypi_device.ioport1);
v1 = inb_p(sonypi_device.ioport1); v1 = inb_p(sonypi_device.ioport1);
return v1; return v1;
...@@ -211,11 +205,11 @@ static u8 sonypi_call2(u8 dev, u8 fn) { ...@@ -211,11 +205,11 @@ static u8 sonypi_call2(u8 dev, u8 fn) {
static u8 sonypi_call3(u8 dev, u8 fn, u8 v) { static u8 sonypi_call3(u8 dev, u8 fn, u8 v) {
u8 v1; u8 v1;
wait_on_command(0, inb_p(sonypi_device.ioport2) & 2); wait_on_command(0, inb_p(sonypi_device.ioport2) & 2, ITERATIONS_LONG);
outb(dev, sonypi_device.ioport2); outb(dev, sonypi_device.ioport2);
wait_on_command(0, inb_p(sonypi_device.ioport2) & 2); wait_on_command(0, inb_p(sonypi_device.ioport2) & 2, ITERATIONS_LONG);
outb(fn, sonypi_device.ioport1); outb(fn, sonypi_device.ioport1);
wait_on_command(0, inb_p(sonypi_device.ioport2) & 2); wait_on_command(0, inb_p(sonypi_device.ioport2) & 2, ITERATIONS_LONG);
outb(v, sonypi_device.ioport1); outb(v, sonypi_device.ioport1);
v1 = inb_p(sonypi_device.ioport1); v1 = inb_p(sonypi_device.ioport1);
return v1; return v1;
...@@ -237,7 +231,7 @@ static u8 sonypi_read(u8 fn) { ...@@ -237,7 +231,7 @@ static u8 sonypi_read(u8 fn) {
/* Set brightness, hue etc */ /* Set brightness, hue etc */
static void sonypi_set(u8 fn, u8 v) { static void sonypi_set(u8 fn, u8 v) {
wait_on_command(0, sonypi_call3(0x90, fn, v)); wait_on_command(0, sonypi_call3(0x90, fn, v), ITERATIONS_SHORT);
} }
/* Tests if the camera is ready */ /* Tests if the camera is ready */
...@@ -311,79 +305,30 @@ static void sonypi_setbluetoothpower(u8 state) { ...@@ -311,79 +305,30 @@ static void sonypi_setbluetoothpower(u8 state) {
/* Interrupt handler: some event is available */ /* Interrupt handler: some event is available */
void sonypi_irq(int irq, void *dev_id, struct pt_regs *regs) { void sonypi_irq(int irq, void *dev_id, struct pt_regs *regs) {
u8 v1, v2, event = 0; u8 v1, v2, event = 0;
int i; int i, j;
u8 sonypi_jogger_ev, sonypi_fnkey_ev;
u8 sonypi_capture_ev, sonypi_bluetooth_ev;
u8 sonypi_pkey_ev;
if (sonypi_device.model == SONYPI_DEVICE_MODEL_TYPE2) {
sonypi_jogger_ev = SONYPI_TYPE2_JOGGER_EV;
sonypi_fnkey_ev = SONYPI_TYPE2_FNKEY_EV;
sonypi_capture_ev = SONYPI_TYPE2_CAPTURE_EV;
sonypi_bluetooth_ev = SONYPI_TYPE2_BLUETOOTH_EV;
sonypi_pkey_ev = nojogdial ? SONYPI_TYPE2_PKEY_EV
: SONYPI_TYPE1_PKEY_EV;
}
else {
sonypi_jogger_ev = SONYPI_TYPE1_JOGGER_EV;
sonypi_fnkey_ev = SONYPI_TYPE1_FNKEY_EV;
sonypi_capture_ev = SONYPI_TYPE1_CAPTURE_EV;
sonypi_bluetooth_ev = SONYPI_TYPE1_BLUETOOTH_EV;
sonypi_pkey_ev = SONYPI_TYPE1_PKEY_EV;
}
v1 = inb_p(sonypi_device.ioport1); v1 = inb_p(sonypi_device.ioport1);
v2 = inb_p(sonypi_device.ioport2); v2 = inb_p(sonypi_device.ioport2);
if ((v2 & sonypi_pkey_ev) == sonypi_pkey_ev) { if (verbose > 1)
for (i = 0; sonypi_pkeyev[i].event; i++) printk(KERN_INFO
if (sonypi_pkeyev[i].data == v1) { "sonypi: event port1=0x%02x,port2=0x%02x\n", v1, v2);
event = sonypi_pkeyev[i].event;
goto found; for (i = 0; sonypi_eventtypes[i].model; i++) {
} if (sonypi_device.model != sonypi_eventtypes[i].model)
} continue;
if ((v2 & sonypi_jogger_ev) == sonypi_jogger_ev) { if ((v2 & sonypi_eventtypes[i].data) != sonypi_eventtypes[i].data)
for (i = 0; sonypi_joggerev[i].event; i++) continue;
if (sonypi_joggerev[i].data == v1) { if (! (mask & sonypi_eventtypes[i].mask))
event = sonypi_joggerev[i].event; continue;
goto found; for (j = 0; sonypi_eventtypes[i].events[j].event; j++) {
} if (v1 == sonypi_eventtypes[i].events[j].data) {
} event = sonypi_eventtypes[i].events[j].event;
if ((v2 & sonypi_capture_ev) == sonypi_capture_ev) {
for (i = 0; sonypi_captureev[i].event; i++)
if (sonypi_captureev[i].data == v1) {
event = sonypi_captureev[i].event;
goto found;
}
}
if ((v2 & sonypi_fnkey_ev) == sonypi_fnkey_ev) {
for (i = 0; sonypi_fnkeyev[i].event; i++)
if (sonypi_fnkeyev[i].data == v1) {
event = sonypi_fnkeyev[i].event;
goto found;
}
}
if ((v2 & sonypi_bluetooth_ev) == sonypi_bluetooth_ev) {
for (i = 0; sonypi_blueev[i].event; i++)
if (sonypi_blueev[i].data == v1) {
event = sonypi_blueev[i].event;
goto found;
}
}
if ((v2 & SONYPI_BACK_EV) == SONYPI_BACK_EV) {
for (i = 0; sonypi_backev[i].event; i++)
if (sonypi_backev[i].data == v1) {
event = sonypi_backev[i].event;
goto found; goto found;
} }
} }
if ((v2 & SONYPI_LID_EV) == SONYPI_LID_EV) {
for (i = 0; sonypi_lidev[i].event; i++)
if (sonypi_lidev[i].data == v1) {
event = sonypi_lidev[i].event;
goto found;
}
} }
if (verbose) if (verbose)
printk(KERN_WARNING printk(KERN_WARNING
"sonypi: unknown event port1=0x%02x,port2=0x%02x\n",v1,v2); "sonypi: unknown event port1=0x%02x,port2=0x%02x\n",v1,v2);
...@@ -545,72 +490,77 @@ static int sonypi_misc_ioctl(struct inode *ip, struct file *fp, ...@@ -545,72 +490,77 @@ static int sonypi_misc_ioctl(struct inode *ip, struct file *fp,
down(&sonypi_device.lock); down(&sonypi_device.lock);
switch (cmd) { switch (cmd) {
case SONYPI_IOCGBRT: case SONYPI_IOCGBRT:
val8 = sonypi_ecrget(SONYPI_LCD_LIGHT); if (ec_read(SONYPI_LCD_LIGHT, &val8)) {
if (copy_to_user((u8 *)arg, &val8, sizeof(val8))) { ret = -EIO;
ret = -EFAULT; break;
goto out;
} }
if (copy_to_user((u8 *)arg, &val8, sizeof(val8)))
ret = -EFAULT;
break; break;
case SONYPI_IOCSBRT: case SONYPI_IOCSBRT:
if (copy_from_user(&val8, (u8 *)arg, sizeof(val8))) { if (copy_from_user(&val8, (u8 *)arg, sizeof(val8))) {
ret = -EFAULT; ret = -EFAULT;
goto out; break;
} }
sonypi_ecrset(SONYPI_LCD_LIGHT, val8); if (ec_write(SONYPI_LCD_LIGHT, val8))
ret = -EIO;
break; break;
case SONYPI_IOCGBAT1CAP: case SONYPI_IOCGBAT1CAP:
val16 = sonypi_ecrget16(SONYPI_BAT1_FULL); if (ec_read16(SONYPI_BAT1_FULL, &val16)) {
if (copy_to_user((u16 *)arg, &val16, sizeof(val16))) { ret = -EIO;
ret = -EFAULT; break;
goto out;
} }
if (copy_to_user((u16 *)arg, &val16, sizeof(val16)))
ret = -EFAULT;
break; break;
case SONYPI_IOCGBAT1REM: case SONYPI_IOCGBAT1REM:
val16 = sonypi_ecrget16(SONYPI_BAT1_LEFT); if (ec_read16(SONYPI_BAT1_FULL, &val16)) {
if (copy_to_user((u16 *)arg, &val16, sizeof(val16))) { ret = -EIO;
ret = -EFAULT; break;
goto out;
} }
if (copy_to_user((u16 *)arg, &val16, sizeof(val16)))
ret = -EFAULT;
break; break;
case SONYPI_IOCGBAT2CAP: case SONYPI_IOCGBAT2CAP:
val16 = sonypi_ecrget16(SONYPI_BAT2_FULL); if (ec_read16(SONYPI_BAT1_FULL, &val16)) {
if (copy_to_user((u16 *)arg, &val16, sizeof(val16))) { ret = -EIO;
ret = -EFAULT; break;
goto out;
} }
if (copy_to_user((u16 *)arg, &val16, sizeof(val16)))
ret = -EFAULT;
break; break;
case SONYPI_IOCGBAT2REM: case SONYPI_IOCGBAT2REM:
val16 = sonypi_ecrget16(SONYPI_BAT2_LEFT); if (ec_read16(SONYPI_BAT1_FULL, &val16)) {
if (copy_to_user((u16 *)arg, &val16, sizeof(val16))) { ret = -EIO;
ret = -EFAULT; break;
goto out;
} }
if (copy_to_user((u16 *)arg, &val16, sizeof(val16)))
ret = -EFAULT;
break; break;
case SONYPI_IOCGBATFLAGS: case SONYPI_IOCGBATFLAGS:
val8 = sonypi_ecrget(SONYPI_BAT_FLAGS) & 0x07; if (ec_read(SONYPI_BAT_FLAGS, &val8)) {
if (copy_to_user((u8 *)arg, &val8, sizeof(val8))) { ret = -EIO;
ret = -EFAULT; break;
goto out;
} }
val8 &= 0x07;
if (copy_to_user((u8 *)arg, &val8, sizeof(val8)))
ret = -EFAULT;
break; break;
case SONYPI_IOCGBLUE: case SONYPI_IOCGBLUE:
val8 = sonypi_device.bluetooth_power; val8 = sonypi_device.bluetooth_power;
if (copy_to_user((u8 *)arg, &val8, sizeof(val8))) { if (copy_to_user((u8 *)arg, &val8, sizeof(val8)))
ret = -EFAULT; ret = -EFAULT;
goto out;
}
break; break;
case SONYPI_IOCSBLUE: case SONYPI_IOCSBLUE:
if (copy_from_user(&val8, (u8 *)arg, sizeof(val8))) { if (copy_from_user(&val8, (u8 *)arg, sizeof(val8))) {
ret = -EFAULT; ret = -EFAULT;
goto out; break;
} }
sonypi_setbluetoothpower(val8); sonypi_setbluetoothpower(val8);
break; break;
default: default:
ret = -EINVAL; ret = -EINVAL;
} }
out:
up(&sonypi_device.lock); up(&sonypi_device.lock);
return ret; return ret;
} }
...@@ -629,6 +579,51 @@ struct miscdevice sonypi_misc_device = { ...@@ -629,6 +579,51 @@ struct miscdevice sonypi_misc_device = {
-1, "sonypi", &sonypi_misc_fops -1, "sonypi", &sonypi_misc_fops
}; };
#if CONFIG_PM
static int sonypi_pm_callback(struct pm_dev *dev, pm_request_t rqst, void *data) {
static int old_camera_power;
switch (rqst) {
case PM_SUSPEND:
sonypi_call2(0x81, 0); /* make sure we don't get any more events */
if (camera) {
old_camera_power = sonypi_device.camera_power;
sonypi_camera_off();
}
if (sonypi_device.model == SONYPI_DEVICE_MODEL_TYPE2)
sonypi_type2_dis();
else
sonypi_type1_dis();
#if !defined(CONFIG_ACPI)
/* disable ACPI mode */
if (fnkeyinit)
outb(0xf1, 0xb2);
#endif
break;
case PM_RESUME:
#if !defined(CONFIG_ACPI)
/* Enable ACPI mode to get Fn key events */
if (fnkeyinit)
outb(0xf0, 0xb2);
#endif
if (sonypi_device.model == SONYPI_DEVICE_MODEL_TYPE2)
sonypi_type2_srs();
else
sonypi_type1_srs();
sonypi_call1(0x82);
sonypi_call2(0x81, 0xff);
if (compat)
sonypi_call1(0x92);
else
sonypi_call1(0x82);
if (camera && old_camera_power)
sonypi_camera_on();
break;
}
return 0;
}
#endif
static int __devinit sonypi_probe(struct pci_dev *pcidev) { static int __devinit sonypi_probe(struct pci_dev *pcidev) {
int i, ret; int i, ret;
struct sonypi_ioport_list *ioport_list; struct sonypi_ioport_list *ioport_list;
...@@ -720,14 +715,14 @@ static int __devinit sonypi_probe(struct pci_dev *pcidev) { ...@@ -720,14 +715,14 @@ static int __devinit sonypi_probe(struct pci_dev *pcidev) {
SONYPI_DRIVER_MINORVERSION); SONYPI_DRIVER_MINORVERSION);
printk(KERN_INFO "sonypi: detected %s model, " printk(KERN_INFO "sonypi: detected %s model, "
"verbose = %s, fnkeyinit = %s, camera = %s, " "verbose = %s, fnkeyinit = %s, camera = %s, "
"compat = %s, nojogdial = %s\n", "compat = %s, mask = 0x%08lx\n",
(sonypi_device.model == SONYPI_DEVICE_MODEL_TYPE1) ? (sonypi_device.model == SONYPI_DEVICE_MODEL_TYPE1) ?
"type1" : "type2", "type1" : "type2",
verbose ? "on" : "off", verbose ? "on" : "off",
fnkeyinit ? "on" : "off", fnkeyinit ? "on" : "off",
camera ? "on" : "off", camera ? "on" : "off",
compat ? "on" : "off", compat ? "on" : "off",
nojogdial ? "on" : "off"); mask);
printk(KERN_INFO "sonypi: enabled at irq=%d, port1=0x%x, port2=0x%x\n", printk(KERN_INFO "sonypi: enabled at irq=%d, port1=0x%x, port2=0x%x\n",
sonypi_device.irq, sonypi_device.irq,
sonypi_device.ioport1, sonypi_device.ioport2); sonypi_device.ioport1, sonypi_device.ioport2);
...@@ -735,6 +730,10 @@ static int __devinit sonypi_probe(struct pci_dev *pcidev) { ...@@ -735,6 +730,10 @@ static int __devinit sonypi_probe(struct pci_dev *pcidev) {
printk(KERN_INFO "sonypi: device allocated minor is %d\n", printk(KERN_INFO "sonypi: device allocated minor is %d\n",
sonypi_misc_device.minor); sonypi_misc_device.minor);
#if CONFIG_PM
sonypi_device.pm = pm_register(PM_PCI_DEV, 0, sonypi_pm_callback);
#endif
return 0; return 0;
out3: out3:
...@@ -746,6 +745,11 @@ static int __devinit sonypi_probe(struct pci_dev *pcidev) { ...@@ -746,6 +745,11 @@ static int __devinit sonypi_probe(struct pci_dev *pcidev) {
} }
static void __devexit sonypi_remove(void) { static void __devexit sonypi_remove(void) {
#if CONFIG_PM
pm_unregister(sonypi_device.pm);
#endif
sonypi_call2(0x81, 0); /* make sure we don't get any more events */ sonypi_call2(0x81, 0); /* make sure we don't get any more events */
if (camera) if (camera)
sonypi_camera_off(); sonypi_camera_off();
...@@ -803,7 +807,7 @@ static int __init sonypi_setup(char *str) { ...@@ -803,7 +807,7 @@ static int __init sonypi_setup(char *str) {
compat = ints[5]; compat = ints[5];
if (ints[0] == 5) if (ints[0] == 5)
goto out; goto out;
nojogdial = ints[6]; mask = ints[6];
out: out:
return 1; return 1;
} }
...@@ -815,7 +819,7 @@ __setup("sonypi=", sonypi_setup); ...@@ -815,7 +819,7 @@ __setup("sonypi=", sonypi_setup);
module_init(sonypi_init_module); module_init(sonypi_init_module);
module_exit(sonypi_cleanup_module); module_exit(sonypi_cleanup_module);
MODULE_AUTHOR("Stelian Pop <stelian.pop@fr.alcove.com>"); MODULE_AUTHOR("Stelian Pop <stelian@popies.net>");
MODULE_DESCRIPTION("Sony Programmable I/O Control Device driver"); MODULE_DESCRIPTION("Sony Programmable I/O Control Device driver");
MODULE_LICENSE("GPL"); MODULE_LICENSE("GPL");
...@@ -830,7 +834,7 @@ MODULE_PARM(camera,"i"); ...@@ -830,7 +834,7 @@ MODULE_PARM(camera,"i");
MODULE_PARM_DESC(camera, "set this if you have a MotionEye camera (PictureBook series)"); MODULE_PARM_DESC(camera, "set this if you have a MotionEye camera (PictureBook series)");
MODULE_PARM(compat,"i"); MODULE_PARM(compat,"i");
MODULE_PARM_DESC(compat, "set this if you want to enable backward compatibility mode"); MODULE_PARM_DESC(compat, "set this if you want to enable backward compatibility mode");
MODULE_PARM(nojogdial, "i"); MODULE_PARM(mask, "i");
MODULE_PARM_DESC(nojogdial, "set this if you have a Vaio without a jogdial (like the fx series)"); MODULE_PARM_DESC(mask, "set this to the mask of event you want to enable (see doc)");
EXPORT_SYMBOL(sonypi_camera_command); EXPORT_SYMBOL(sonypi_camera_command);
/* /*
* Sony Programmable I/O Control Device driver for VAIO * Sony Programmable I/O Control Device driver for VAIO
* *
* Copyright (C) 2001 Stelian Pop <stelian.pop@fr.alcove.com>, Alcve * Copyright (C) 2001-2002 Stelian Pop <stelian@popies.net>
*
* Copyright (C) 2001-2002 Alcve <www.alcove.com>
* *
* Copyright (C) 2001 Michael Ashley <m.ashley@unsw.edu.au> * Copyright (C) 2001 Michael Ashley <m.ashley@unsw.edu.au>
* *
...@@ -35,10 +37,16 @@ ...@@ -35,10 +37,16 @@
#ifdef __KERNEL__ #ifdef __KERNEL__
#define SONYPI_DRIVER_MAJORVERSION 1 #define SONYPI_DRIVER_MAJORVERSION 1
#define SONYPI_DRIVER_MINORVERSION 14 #define SONYPI_DRIVER_MINORVERSION 15
#define SONYPI_DEVICE_MODEL_TYPE1 1
#define SONYPI_DEVICE_MODEL_TYPE2 2
#include <linux/config.h>
#include <linux/types.h> #include <linux/types.h>
#include <linux/pci.h> #include <linux/pci.h>
#include <linux/pm.h>
#include <linux/acpi.h>
#include "linux/sonypi.h" #include "linux/sonypi.h"
/* type1 models use those */ /* type1 models use those */
...@@ -145,25 +153,23 @@ static struct sonypi_irq_list sonypi_type2_irq_list[] = { ...@@ -145,25 +153,23 @@ static struct sonypi_irq_list sonypi_type2_irq_list[] = {
#define SONYPI_CAMERA_REVISION 8 #define SONYPI_CAMERA_REVISION 8
#define SONYPI_CAMERA_ROMVERSION 9 #define SONYPI_CAMERA_ROMVERSION 9
/* key press event data (ioport2) */ /* Event masks */
#define SONYPI_TYPE1_JOGGER_EV 0x10 #define SONYPI_JOGGER_MASK 0x00000001
#define SONYPI_TYPE2_JOGGER_EV 0x08 #define SONYPI_CAPTURE_MASK 0x00000002
#define SONYPI_TYPE1_CAPTURE_EV 0x60 #define SONYPI_FNKEY_MASK 0x00000004
#define SONYPI_TYPE2_CAPTURE_EV 0x08 #define SONYPI_BLUETOOTH_MASK 0x00000008
#define SONYPI_TYPE1_FNKEY_EV 0x20 #define SONYPI_PKEY_MASK 0x00000010
#define SONYPI_TYPE2_FNKEY_EV 0x08 #define SONYPI_BACK_MASK 0x00000020
#define SONYPI_TYPE1_BLUETOOTH_EV 0x30 #define SONYPI_HELP_MASK 0x00000040
#define SONYPI_TYPE2_BLUETOOTH_EV 0x08 #define SONYPI_LID_MASK 0x00000080
#define SONYPI_TYPE1_PKEY_EV 0x40 #define SONYPI_ZOOM_MASK 0x00000100
#define SONYPI_TYPE2_PKEY_EV 0x08 #define SONYPI_THUMBPHRASE_MASK 0x00000200
#define SONYPI_BACK_EV 0x08 #define SONYPI_MEYE_MASK 0x00000400
#define SONYPI_LID_EV 0x38
struct sonypi_event { struct sonypi_event {
u8 data; u8 data;
u8 event; u8 event;
}; };
/* The set of possible jogger events */ /* The set of possible jogger events */
static struct sonypi_event sonypi_joggerev[] = { static struct sonypi_event sonypi_joggerev[] = {
{ 0x1f, SONYPI_EVENT_JOGDIAL_UP }, { 0x1f, SONYPI_EVENT_JOGDIAL_UP },
...@@ -180,7 +186,7 @@ static struct sonypi_event sonypi_joggerev[] = { ...@@ -180,7 +186,7 @@ static struct sonypi_event sonypi_joggerev[] = {
{ 0x43, SONYPI_EVENT_JOGDIAL_VFAST_DOWN_PRESSED }, { 0x43, SONYPI_EVENT_JOGDIAL_VFAST_DOWN_PRESSED },
{ 0x40, SONYPI_EVENT_JOGDIAL_PRESSED }, { 0x40, SONYPI_EVENT_JOGDIAL_PRESSED },
{ 0x00, SONYPI_EVENT_JOGDIAL_RELEASED }, { 0x00, SONYPI_EVENT_JOGDIAL_RELEASED },
{ 0x00, 0x00 } { 0, 0 }
}; };
/* The set of possible capture button events */ /* The set of possible capture button events */
...@@ -189,7 +195,7 @@ static struct sonypi_event sonypi_captureev[] = { ...@@ -189,7 +195,7 @@ static struct sonypi_event sonypi_captureev[] = {
{ 0x07, SONYPI_EVENT_CAPTURE_PRESSED }, { 0x07, SONYPI_EVENT_CAPTURE_PRESSED },
{ 0x01, SONYPI_EVENT_CAPTURE_PARTIALRELEASED }, { 0x01, SONYPI_EVENT_CAPTURE_PARTIALRELEASED },
{ 0x00, SONYPI_EVENT_CAPTURE_RELEASED }, { 0x00, SONYPI_EVENT_CAPTURE_RELEASED },
{ 0x00, 0x00 } { 0, 0 }
}; };
/* The set of possible fnkeys events */ /* The set of possible fnkeys events */
...@@ -215,7 +221,7 @@ static struct sonypi_event sonypi_fnkeyev[] = { ...@@ -215,7 +221,7 @@ static struct sonypi_event sonypi_fnkeyev[] = {
{ 0x34, SONYPI_EVENT_FNKEY_S }, { 0x34, SONYPI_EVENT_FNKEY_S },
{ 0x35, SONYPI_EVENT_FNKEY_B }, { 0x35, SONYPI_EVENT_FNKEY_B },
{ 0x36, SONYPI_EVENT_FNKEY_ONLY }, { 0x36, SONYPI_EVENT_FNKEY_ONLY },
{ 0x00, 0x00 } { 0, 0 }
}; };
/* The set of possible program key events */ /* The set of possible program key events */
...@@ -223,7 +229,7 @@ static struct sonypi_event sonypi_pkeyev[] = { ...@@ -223,7 +229,7 @@ static struct sonypi_event sonypi_pkeyev[] = {
{ 0x01, SONYPI_EVENT_PKEY_P1 }, { 0x01, SONYPI_EVENT_PKEY_P1 },
{ 0x02, SONYPI_EVENT_PKEY_P2 }, { 0x02, SONYPI_EVENT_PKEY_P2 },
{ 0x04, SONYPI_EVENT_PKEY_P3 }, { 0x04, SONYPI_EVENT_PKEY_P3 },
{ 0x00, 0x00 } { 0, 0 }
}; };
/* The set of possible bluetooth events */ /* The set of possible bluetooth events */
...@@ -231,21 +237,74 @@ static struct sonypi_event sonypi_blueev[] = { ...@@ -231,21 +237,74 @@ static struct sonypi_event sonypi_blueev[] = {
{ 0x55, SONYPI_EVENT_BLUETOOTH_PRESSED }, { 0x55, SONYPI_EVENT_BLUETOOTH_PRESSED },
{ 0x59, SONYPI_EVENT_BLUETOOTH_ON }, { 0x59, SONYPI_EVENT_BLUETOOTH_ON },
{ 0x5a, SONYPI_EVENT_BLUETOOTH_OFF }, { 0x5a, SONYPI_EVENT_BLUETOOTH_OFF },
{ 0x00, 0x00 } { 0, 0 }
}; };
/* The set of possible back button events */ /* The set of possible back button events */
static struct sonypi_event sonypi_backev[] = { static struct sonypi_event sonypi_backev[] = {
{ 0x20, SONYPI_EVENT_BACK_PRESSED }, { 0x20, SONYPI_EVENT_BACK_PRESSED },
{ 0, 0 }
};
/* The set of possible help button events */
static struct sonypi_event sonypi_helpev[] = {
{ 0x3b, SONYPI_EVENT_HELP_PRESSED }, { 0x3b, SONYPI_EVENT_HELP_PRESSED },
{ 0x00, 0x00 } { 0, 0 }
}; };
/* The set of possible lid events */ /* The set of possible lid events */
static struct sonypi_event sonypi_lidev[] = { static struct sonypi_event sonypi_lidev[] = {
{ 0x51, SONYPI_EVENT_LID_CLOSED }, { 0x51, SONYPI_EVENT_LID_CLOSED },
{ 0x50, SONYPI_EVENT_LID_OPENED }, { 0x50, SONYPI_EVENT_LID_OPENED },
{ 0x00, 0x00 } { 0, 0 }
};
/* The set of possible zoom events */
static struct sonypi_event sonypi_zoomev[] = {
{ 0x3a, SONYPI_EVENT_ZOOM_PRESSED },
{ 0, 0 }
};
/* The set of possible thumbphrase events */
static struct sonypi_event sonypi_thumbphraseev[] = {
{ 0x3a, SONYPI_EVENT_THUMBPHRASE_PRESSED },
{ 0, 0 }
};
/* The set of possible motioneye camera events */
static struct sonypi_event sonypi_meyeev[] = {
{ 0x00, SONYPI_EVENT_MEYE_FACE },
{ 0x01, SONYPI_EVENT_MEYE_OPPOSITE },
{ 0, 0 }
};
struct sonypi_eventtypes {
int model;
u8 data;
unsigned long mask;
struct sonypi_event * events;
} sonypi_eventtypes[] = {
{ SONYPI_DEVICE_MODEL_TYPE1, 0x70, SONYPI_MEYE_MASK, sonypi_meyeev },
{ SONYPI_DEVICE_MODEL_TYPE1, 0x30, SONYPI_LID_MASK, sonypi_lidev },
{ SONYPI_DEVICE_MODEL_TYPE1, 0x60, SONYPI_CAPTURE_MASK, sonypi_captureev },
{ SONYPI_DEVICE_MODEL_TYPE1, 0x10, SONYPI_JOGGER_MASK, sonypi_joggerev },
{ SONYPI_DEVICE_MODEL_TYPE1, 0x20, SONYPI_FNKEY_MASK, sonypi_fnkeyev },
{ SONYPI_DEVICE_MODEL_TYPE1, 0x30, SONYPI_BLUETOOTH_MASK, sonypi_blueev },
{ SONYPI_DEVICE_MODEL_TYPE1, 0x40, SONYPI_PKEY_MASK, sonypi_pkeyev },
{ SONYPI_DEVICE_MODEL_TYPE2, 0x38, SONYPI_LID_MASK, sonypi_lidev },
{ SONYPI_DEVICE_MODEL_TYPE2, 0x08, SONYPI_JOGGER_MASK, sonypi_joggerev },
{ SONYPI_DEVICE_MODEL_TYPE2, 0x08, SONYPI_CAPTURE_MASK, sonypi_captureev },
{ SONYPI_DEVICE_MODEL_TYPE2, 0x08, SONYPI_FNKEY_MASK, sonypi_fnkeyev },
{ SONYPI_DEVICE_MODEL_TYPE2, 0x08, SONYPI_BLUETOOTH_MASK, sonypi_blueev },
{ SONYPI_DEVICE_MODEL_TYPE2, 0x08, SONYPI_PKEY_MASK, sonypi_pkeyev },
{ SONYPI_DEVICE_MODEL_TYPE2, 0x08, SONYPI_BACK_MASK, sonypi_backev },
{ SONYPI_DEVICE_MODEL_TYPE2, 0x08, SONYPI_HELP_MASK, sonypi_helpev },
{ SONYPI_DEVICE_MODEL_TYPE2, 0x08, SONYPI_ZOOM_MASK, sonypi_zoomev },
{ SONYPI_DEVICE_MODEL_TYPE2, 0x08, SONYPI_THUMBPHRASE_MASK, sonypi_thumbphraseev },
{ 0, 0, 0, 0 }
}; };
#define SONYPI_BUF_SIZE 128 #define SONYPI_BUF_SIZE 128
...@@ -259,9 +318,6 @@ struct sonypi_queue { ...@@ -259,9 +318,6 @@ struct sonypi_queue {
unsigned char buf[SONYPI_BUF_SIZE]; unsigned char buf[SONYPI_BUF_SIZE];
}; };
#define SONYPI_DEVICE_MODEL_TYPE1 1
#define SONYPI_DEVICE_MODEL_TYPE2 2
struct sonypi_device { struct sonypi_device {
struct pci_dev *dev; struct pci_dev *dev;
u16 irq; u16 irq;
...@@ -275,16 +331,47 @@ struct sonypi_device { ...@@ -275,16 +331,47 @@ struct sonypi_device {
struct sonypi_queue queue; struct sonypi_queue queue;
int open_count; int open_count;
int model; int model;
#if CONFIG_PM
struct pm_dev *pm;
#endif
}; };
#define wait_on_command(quiet, command) { \ #define ITERATIONS_LONG 10000
unsigned int n = 10000; \ #define ITERATIONS_SHORT 10
#define wait_on_command(quiet, command, iterations) { \
unsigned int n = iterations; \
while (--n && (command)) \ while (--n && (command)) \
udelay(1); \ udelay(1); \
if (!n && (verbose || !quiet)) \ if (!n && (verbose || !quiet)) \
printk(KERN_WARNING "sonypi command failed at %s : %s (line %d)\n", __FILE__, __FUNCTION__, __LINE__); \ printk(KERN_WARNING "sonypi command failed at %s : %s (line %d)\n", __FILE__, __FUNCTION__, __LINE__); \
} }
#if !defined(CONFIG_ACPI)
extern int verbose;
static inline int ec_write(u8 addr, u8 value) {
wait_on_command(1, inb_p(SONYPI_CST_IOPORT) & 3, ITERATIONS_LONG);
outb_p(0x81, SONYPI_CST_IOPORT);
wait_on_command(0, inb_p(SONYPI_CST_IOPORT) & 2, ITERATIONS_LONG);
outb_p(addr, SONYPI_DATA_IOPORT);
wait_on_command(0, inb_p(SONYPI_CST_IOPORT) & 2, ITERATIONS_LONG);
outb_p(value, SONYPI_DATA_IOPORT);
wait_on_command(0, inb_p(SONYPI_CST_IOPORT) & 2, ITERATIONS_LONG);
return 0;
}
static inline int ec_read(u8 addr, u8 *value) {
wait_on_command(1, inb_p(SONYPI_CST_IOPORT) & 3, ITERATIONS_LONG);
outb_p(0x80, SONYPI_CST_IOPORT);
wait_on_command(0, inb_p(SONYPI_CST_IOPORT) & 2, ITERATIONS_LONG);
outb_p(addr, SONYPI_DATA_IOPORT);
wait_on_command(0, inb_p(SONYPI_CST_IOPORT) & 2, ITERATIONS_LONG);
*value = inb_p(SONYPI_DATA_IOPORT);
return 0;
}
#endif /* !CONFIG_ACPI */
#endif /* __KERNEL__ */ #endif /* __KERNEL__ */
#endif /* _SONYPI_PRIV_H_ */ #endif /* _SONYPI_PRIV_H_ */
/* /*
* Sony Programmable I/O Control Device driver for VAIO * Sony Programmable I/O Control Device driver for VAIO
* *
* Copyright (C) 2001 Stelian Pop <stelian.pop@fr.alcove.com>, Alcve * Copyright (C) 2001-2002 Stelian Pop <stelian@popies.net>
*
* Copyright (C) 2001-2002 Alcve <www.alcove.com>
* *
* Copyright (C) 2001 Michael Ashley <m.ashley@unsw.edu.au> * Copyright (C) 2001 Michael Ashley <m.ashley@unsw.edu.au>
* *
...@@ -85,6 +87,10 @@ ...@@ -85,6 +87,10 @@
#define SONYPI_EVENT_JOGDIAL_VFAST_UP 47 #define SONYPI_EVENT_JOGDIAL_VFAST_UP 47
#define SONYPI_EVENT_JOGDIAL_VFAST_DOWN_PRESSED 48 #define SONYPI_EVENT_JOGDIAL_VFAST_DOWN_PRESSED 48
#define SONYPI_EVENT_JOGDIAL_VFAST_UP_PRESSED 49 #define SONYPI_EVENT_JOGDIAL_VFAST_UP_PRESSED 49
#define SONYPI_EVENT_ZOOM_PRESSED 50
#define SONYPI_EVENT_THUMBPHRASE_PRESSED 51
#define SONYPI_EVENT_MEYE_FACE 52
#define SONYPI_EVENT_MEYE_OPPOSITE 53
/* get/set brightness */ /* get/set brightness */
#define SONYPI_IOCGBRT _IOR('v', 0, __u8) #define SONYPI_IOCGBRT _IOR('v', 0, __u8)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment