Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
linux
Commits
df56a4a6
Commit
df56a4a6
authored
Jan 27, 2005
by
Vojtech Pavlik
Browse files
Options
Browse Files
Download
Plain Diff
Merge
bk://dtor.bkbits.net/for-2.6.11
into silver.ucw.cz:/home/vojtech/bk/dmitry
parents
98563d04
048e58a4
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
31 additions
and
17 deletions
+31
-17
drivers/input/keyboard/atkbd.c
drivers/input/keyboard/atkbd.c
+2
-0
drivers/input/serio/i8042.c
drivers/input/serio/i8042.c
+22
-14
drivers/usb/input/hid-input.c
drivers/usb/input/hid-input.c
+7
-3
No files found.
drivers/input/keyboard/atkbd.c
View file @
df56a4a6
...
...
@@ -234,6 +234,7 @@ static void atkbd_report_key(struct input_dev *dev, struct pt_regs *regs, int co
input_regs
(
dev
,
regs
);
if
(
value
==
3
)
{
input_report_key
(
dev
,
code
,
1
);
input_sync
(
dev
);
input_report_key
(
dev
,
code
,
0
);
}
else
input_event
(
dev
,
EV_KEY
,
code
,
value
);
...
...
@@ -352,6 +353,7 @@ static irqreturn_t atkbd_interrupt(struct serio *serio, unsigned char data,
"to make it known.
\n
"
,
code
&
0x80
?
"e0"
:
""
,
code
&
0x7f
);
}
input_sync
(
&
atkbd
->
dev
);
break
;
case
ATKBD_SCR_1
:
scroll
=
1
-
atkbd
->
release
*
2
;
...
...
drivers/input/serio/i8042.c
View file @
df56a4a6
...
...
@@ -458,12 +458,11 @@ static irqreturn_t i8042_interrupt(int irq, void *dev_id, struct pt_regs *regs)
}
/*
* i8042_enable_mux_mode checks whether the controller has an active
* multiplexor and puts the chip into Multiplexed (as opposed to
* Legacy) mode.
* i8042_set_mux_mode checks whether the controller has an active
* multiplexor and puts the chip into Multiplexed (1) or Legacy (0) mode.
*/
static
int
i8042_
enable_mux_mode
(
struct
i8042_values
*
values
,
unsigned
char
*
mux_version
)
static
int
i8042_
set_mux_mode
(
unsigned
int
mode
,
unsigned
char
*
mux_version
)
{
unsigned
char
param
;
...
...
@@ -482,11 +481,11 @@ static int i8042_enable_mux_mode(struct i8042_values *values, unsigned char *mux
param
=
0xf0
;
if
(
i8042_command
(
&
param
,
I8042_CMD_AUX_LOOP
)
||
param
!=
0x0f
)
return
-
1
;
param
=
0x5
6
;
param
=
mode
?
0x56
:
0xf
6
;
if
(
i8042_command
(
&
param
,
I8042_CMD_AUX_LOOP
)
||
param
!=
0xa9
)
return
-
1
;
param
=
0xa4
;
if
(
i8042_command
(
&
param
,
I8042_CMD_AUX_LOOP
)
||
param
==
0x5b
)
param
=
mode
?
0xa4
:
0xa5
;
if
(
i8042_command
(
&
param
,
I8042_CMD_AUX_LOOP
)
||
param
==
(
mode
?
0x5b
:
0x5a
)
)
return
-
1
;
if
(
mux_version
)
...
...
@@ -540,11 +539,11 @@ static int __init i8042_check_mux(struct i8042_values *values)
{
unsigned
char
mux_version
;
if
(
i8042_
enable_mux_mode
(
values
,
&
mux_version
))
if
(
i8042_
set_mux_mode
(
1
,
&
mux_version
))
return
-
1
;
/* Workaround for
broken chips which seem to support MUX, but in reality don't.
*/
/*
They all report version 10.12
*/
/* Workaround for
interference with USB Legacy emulation
*/
/*
that causes a v10.12 MUX to be found.
*/
if
(
mux_version
==
0xAC
)
return
-
1
;
...
...
@@ -774,12 +773,21 @@ static int i8042_controller_init(void)
*/
void
i8042_controller_reset
(
void
)
{
if
(
i8042_reset
)
{
unsigned
char
param
;
/*
* Reset the controller if requested.
*/
if
(
i8042_reset
)
if
(
i8042_command
(
&
param
,
I8042_CMD_CTL_TEST
))
printk
(
KERN_ERR
"i8042.c: i8042 controller reset timeout.
\n
"
);
}
/*
* Disable MUX mode if present.
*/
i8042_set_mux_mode
(
0
,
NULL
);
/*
* Restore the original control register setting.
...
...
@@ -888,7 +896,7 @@ static int i8042_resume(struct device *dev, u32 level)
}
if
(
i8042_mux_present
)
if
(
i8042_
enable_mux_mode
(
&
i8042_aux_values
,
NULL
)
||
if
(
i8042_
set_mux_mode
(
1
,
NULL
)
||
i8042_enable_mux_ports
(
&
i8042_aux_values
))
{
printk
(
KERN_WARNING
"i8042: failed to resume active multiplexor, mouse won't work.
\n
"
);
}
...
...
drivers/usb/input/hid-input.c
View file @
df56a4a6
...
...
@@ -403,11 +403,12 @@ void hidinput_hid_event(struct hid_device *hid, struct hid_field *field, struct
if
(
!
input
)
return
;
input_regs
(
input
,
regs
);
input_event
(
input
,
EV_MSC
,
MSC_SCAN
,
usage
->
hid
);
if
(
!
usage
->
type
)
return
;
input_regs
(
input
,
regs
);
if
(((
hid
->
quirks
&
HID_QUIRK_2WHEEL_MOUSE_HACK_5
)
&&
(
usage
->
hid
==
0x00090005
))
||
((
hid
->
quirks
&
HID_QUIRK_2WHEEL_MOUSE_HACK_7
)
&&
(
usage
->
hid
==
0x00090007
)))
{
if
(
value
)
hid
->
quirks
|=
HID_QUIRK_2WHEEL_MOUSE_HACK_ON
;
...
...
@@ -574,6 +575,9 @@ int hidinput_connect(struct hid_device *hid)
hidinput
->
input
.
id
.
product
=
le16_to_cpu
(
dev
->
descriptor
.
idProduct
);
hidinput
->
input
.
id
.
version
=
le16_to_cpu
(
dev
->
descriptor
.
bcdDevice
);
hidinput
->
input
.
dev
=
&
hid
->
intf
->
dev
;
set_bit
(
EV_MSC
,
hidinput
->
input
.
evbit
);
set_bit
(
MSC_SCAN
,
hidinput
->
input
.
mscbit
);
}
for
(
i
=
0
;
i
<
report
->
maxfield
;
i
++
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment