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
Kirill Smelkov
linux
Commits
a9e3f964
Commit
a9e3f964
authored
Oct 09, 2002
by
Vojtech Pavlik
Browse files
Options
Browse Files
Download
Plain Diff
Bk manual merge.
parents
1b5dd0c2
2888d733
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
9 deletions
+11
-9
drivers/input/keyboard/atkbd.c
drivers/input/keyboard/atkbd.c
+1
-1
drivers/input/serio/i8042.c
drivers/input/serio/i8042.c
+10
-8
No files found.
drivers/input/keyboard/atkbd.c
View file @
a9e3f964
...
@@ -44,7 +44,7 @@ static unsigned char atkbd_set2_keycode[512] = {
...
@@ -44,7 +44,7 @@ static unsigned char atkbd_set2_keycode[512] = {
0
,
49
,
48
,
35
,
34
,
21
,
7
,
0
,
0
,
0
,
50
,
36
,
22
,
8
,
9
,
0
,
0
,
49
,
48
,
35
,
34
,
21
,
7
,
0
,
0
,
0
,
50
,
36
,
22
,
8
,
9
,
0
,
0
,
51
,
37
,
23
,
24
,
11
,
10
,
0
,
0
,
52
,
53
,
38
,
39
,
25
,
12
,
0
,
0
,
51
,
37
,
23
,
24
,
11
,
10
,
0
,
0
,
52
,
53
,
38
,
39
,
25
,
12
,
0
,
122
,
89
,
40
,
120
,
26
,
13
,
0
,
0
,
58
,
54
,
28
,
27
,
0
,
43
,
0
,
0
,
122
,
89
,
40
,
120
,
26
,
13
,
0
,
0
,
58
,
54
,
28
,
27
,
0
,
43
,
0
,
0
,
85
,
86
,
90
,
91
,
92
,
93
,
14
,
94
,
95
,
79
,
4
3
,
75
,
71
,
121
,
0
,
123
,
85
,
86
,
90
,
91
,
92
,
93
,
14
,
94
,
95
,
79
,
18
3
,
75
,
71
,
121
,
0
,
123
,
82
,
83
,
80
,
76
,
77
,
72
,
1
,
69
,
87
,
78
,
81
,
74
,
55
,
73
,
70
,
99
,
82
,
83
,
80
,
76
,
77
,
72
,
1
,
69
,
87
,
78
,
81
,
74
,
55
,
73
,
70
,
99
,
252
,
0
,
0
,
65
,
99
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
252
,
0
,
0
,
65
,
99
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
0
,
...
...
drivers/input/serio/i8042.c
View file @
a9e3f964
...
@@ -654,24 +654,26 @@ static int __init i8042_check_aux(struct i8042_values *values)
...
@@ -654,24 +654,26 @@ static int __init i8042_check_aux(struct i8042_values *values)
i8042_flush
();
i8042_flush
();
/*
/*
* Internal loopback test - filters out AT-type i8042's
* Internal loopback test - filters out AT-type i8042's. Unfortunately
* SiS screwed up and their 5597 doesn't support the LOOP command even
* though it has an AUX port.
*/
*/
param
=
0x5a
;
param
=
0x5a
;
if
(
i8042_command
(
&
param
,
I8042_CMD_AUX_LOOP
)
||
param
!=
0xa5
)
if
(
i8042_command
(
&
param
,
I8042_CMD_AUX_LOOP
)
||
param
!=
0xa5
)
{
return
-
1
;
/*
/*
* External connection test - filters out AT-soldered PS/2 i8042's
* External connection test - filters out AT-soldered PS/2 i8042's
* 0x00 - no error, 0x01-0x03 - clock/data stuck, 0xff - general error
* 0x00 - no error, 0x01-0x03 - clock/data stuck, 0xff - general error
* 0xfa - no error on some notebooks which ignore the spec
* 0xfa - no error on some notebooks which ignore the spec
*
We ignore general error, since some chips report it even under normal
*
Because it's common for chipsets to return error on perfectly functioning
*
operation
.
*
AUX ports, we test for this only when the LOOP command failed
.
*/
*/
if
(
i8042_command
(
&
param
,
I8042_CMD_AUX_TEST
)
if
(
i8042_command
(
&
param
,
I8042_CMD_AUX_TEST
)
||
(
param
&&
param
!=
0xfa
&&
param
!=
0xff
))
||
(
param
&&
param
!=
0xfa
&&
param
!=
0xff
))
return
-
1
;
return
-
1
;
}
/*
/*
* Bit assignment test - filters out PS/2 i8042's in AT mode
* Bit assignment test - filters out PS/2 i8042's in AT mode
...
...
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