-
Notifications
You must be signed in to change notification settings - Fork 1
/
probook_ec.pl
executable file
·341 lines (313 loc) · 8.97 KB
/
probook_ec.pl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
#!/usr/bin/perl -w
# Copyright (C) 2007 Michael Kurz michi.kurz (at) googlemail.com
# Copyright (C) 2007 Petr Tomasek tomasek (#) etf,cuni,cz
# Copyright (C) 2007 Carlos Corbacho cathectic (at) gmail.com
#
# Version 0.6.1 (2007-11-08)
#
# 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; either version 3
# of the License, or (at your option) any later version.
#
# 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.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
require 5.004;
use strict;
use Fcntl;
use POSIX;
use File::Basename;
sub initialize_ioports
{
sysopen (IOPORTS, "/dev/port", O_RDWR)
or die "/dev/port: $!\n";
binmode IOPORTS;
}
sub close_ioports
{
close (IOPORTS)
or print "Warning: $!\n";
}
sub inb
{
my ($res,$nrchars);
sysseek IOPORTS, $_[0], 0 or return -1;
$nrchars = sysread IOPORTS, $res, 1;
return -1 if not defined $nrchars or $nrchars != 1;
$res = unpack "C",$res ;
return $res;
}
# $_[0]: value to write
# $_[1]: port to write
# Returns: -1 on failure, 0 on success.
sub outb
{
if ($_[0] > 0xff)
{
my ($package, $filename, $line, $sub) = caller(1);
print "\n*** Called outb with value=$_[1] from line $line\n",
"*** (in $sub). PLEASE REPORT!\n",
"*** Terminating.\n";
exit(-1);
}
my $towrite = pack "C", $_[0];
sysseek IOPORTS, $_[1], 0 or return -1;
my $nrchars = syswrite IOPORTS, $towrite, 1;
return -1 if not defined $nrchars or $nrchars != 1;
return 0;
}
sub wait_write
{
my $i = 0;
while ((inb($_[0]) & 0x02) && ($i < 10000)) {
sleep(0.01);
$i++;
}
return -($i == 10000);
}
sub wait_read
{
my $i = 0;
while (!(inb($_[0]) & 0x01) && ($i < 10000)) {
sleep(0.01);
$i++;
}
return -($i == 10000);
}
sub wait_write_ec
{
wait_write(0x66);
}
sub wait_read_ec
{
wait_read(0x66);
}
sub send_ec
{
if (!wait_write_ec()) { outb($_[0], 0x66); }
if (!wait_write_ec()) { outb($_[1], 0x62); }
}
sub write_ec
{
if (!wait_write_ec()) { outb(0x81, 0x66 ); }
if (!wait_write_ec()) { outb($_[0], 0x62); }
if (!wait_write_ec()) { outb($_[1], 0x62); }
}
sub read_ec
{
if (!wait_write_ec()) { outb(0x80, 0x66 ); }
if (!wait_write_ec()) { outb($_[0], 0x62); }
if (!wait_read_ec()) { inb(0x62); }
}
sub write_kc
{
if (!wait_write(0x64)) { outb($_[0], 0x64); }
if (!wait_write(0x64)) { outb($_[1], 0x60); }
}
sub print_regs
{
initialize_ioports();
my @arr = ("00","10","20","30","40","50","60","70","80","90","A0","B0","C0","D0","E0","F0", "");
my $i = 0;
my $t = 0;
print "\n \t00\t01\t02\t03\t04\t05\t06\t07\t|\t08\t09\t0A\t0B\t0C\t0D\t0E\t0F\n";
print " \t__\t__\t__\t__\t__\t__\t__\t__\t|\t__\t__\t__\t__\t__\t__\t__\t__\n";
print "00 |\t";
for ($i = 0; $i < 256; $i++)
{
$t = read_ec($i);
print $t;
print "\t";
if ((($i + 1) % 8) == 0){
if ((($i + 1) % 16) == 0) {
if ($i != 255) { print "\n$arr[(($i-(($i + 1) % 16)) / 16) + 1] |\t"; }
} else {
print "|\t";
}
}
}
print "\n";
close_ioports();
}
sub write_temp
{
initialize_ioports();
write_ec($_[0],$_[1]);
close_ioports();
}
sub testnum
{
my $i;
for ($i = 0; $i<256;$i++) {
if ($_[0] eq "$i") { return 1 };
}
return 0;
}
my $ii;
if (!$ARGV[0]){
print "wrong arguments!\n";
print "usage:\n";
print "\'probook_ec regs\' \t\t\t\tdumps all ec registers\n";
print "\'probook_ec ledon\' \t\t\t\tswitch on 'mail LED' (WMID)\n";
print "\'probook_ec ledoff\' \t\t\t\tswitch off 'mail LED' (WMID)\n";
print "\'probook_ec getled\' \t\t\t\tget 'mail LED' status (WMID)\n";
print "\'probook_ec getled2\' \t\t\t\tget 'mail LED' status(AMW0)\n";
print "\'probook_ec getwireless\' \t\t\t\tget 'wireless' status (AMW0)\n";
print "\'probook_ec gettouch\' \t\t\t\tis the touchpad disabled?\n";
print "\'probook_ec setfanthresh <temp>\' \t\t\t\tset temperature threshhold to <temp>, DANGEROUS!\n";
print "\'probook_ec getfanthresh\' \t\t\t\tget temperature threshhold\n";
print "\'probook_ec <temp-number> <temperature>\' \tfor setting a temperature\n";
print "where <temp-number> is from 0-7, and <temperture> is from 0-255\n";
print "\'probook_ec ?= <reg>\' \t\tQuery register's value\n";
print "\'probook_ec := <reg> <val>\' \tSet register's value\n";
print "\'probook_ec +f <reg> <val>\' \tOr register's value with val (to set flags)\n";
print "\'probook_ec -f <reg> <val>\' \tAnd register's value with ~val (to clear flags)\n";
print "\'forcekc\' \tTry all possible values on writeable RAM of keyboard controller\n";
print "\'kcw <cmd> <val>\' \tWrite a command and a value to the keyboard controller\n";
} elsif ($ARGV[0] eq "regs") {
print_regs();
} elsif ($ARGV[0] eq "getled") {
# TM2490 only (WMID)
initialize_ioports();
if (read_ec(0x9f)&0x01) {
print "Mail LED on\n";
} else {
print "Mail LED off\n"; }
close_ioports();
} elsif ($ARGV[0] eq "getled2") {
# Aspire 5020 only (AMW0)
initialize_ioports();
if (read_ec(0x0A)&0x80) {
print "Mail LED on\n";
} else {
print "Mail LED off\n"; }
close_ioports();
} elsif ($ARGV[0] eq "getwireless") {
# Aspire 5020 only (AMW0)
initialize_ioports();
if (read_ec(0x0A)&0x4) {
print "Wireless on\n";
} else {
print "Wireless off\n"; }
close_ioports();
} elsif ($ARGV[0] eq "gettouch") {
# TM2490 only - needs testing
initialize_ioports();
if (read_ec(0x9e)&0x08) {
print "touchpad disabled\n";
} else {
print "touchpad enabled\n"; }
close_ioports();
} elsif ($ARGV[0] eq "?=") {
initialize_ioports();
my $r = hex($ARGV[1]);
printf("REG[0x%02x] == 0x%02x\n", $r, read_ec($r));
close_ioports();
} elsif ($ARGV[0] eq ":=") {
initialize_ioports();
my $r = hex($ARGV[1]);
my $f = hex($ARGV[2]);
my $val = read_ec($r);
#printf("REG[0x%02x] == 0x%02x\n", $r, $val);
#printf("REG[0x%02x] := 0x%02x\n", $r, $f);
write_ec( $r, $f);
#printf("REG[0x%02x] == 0x%02x\n", $r, read_ec($r));
#echo "$r:$f\n" >> regs_set
close_ioports();
} elsif ($ARGV[0] eq "FANCTL") {
initialize_ioports();
write_ec(0x22,1);
write_ec(0x26,0x1F);
#write_ec(0x2F,0xFF);
#printf("REG[0x%02x] == 0x%02x\n", 0x1E, read_ec(0x1E));
close_ioports();
#`notify-send FANOFF`;
} elsif ($ARGV[0] eq "FANOFF") {
initialize_ioports();
write_ec(0x22,1);
write_ec(0x26,0x1F);
write_ec(0x2F,0xFF);
#printf("REG[0x%02x] == 0x%02x\n", 0x1E, read_ec(0x1E));
close_ioports();
#`notify-send FANOFF`;
} elsif ($ARGV[0] eq "FANRST") {
initialize_ioports();
write_ec(0x22,0x01);
write_ec(0x26,0x00);
#printf("REG[0x%02x] == 0x%02x\n", 0x22, read_ec(0x22));
close_ioports();
} elsif ($ARGV[0] eq "+f") {
initialize_ioports();
my $r = hex($ARGV[1]);
my $f = hex($ARGV[2]);
my $val = read_ec($r);
printf("REG[0x%02x] == 0x%02x\n", $r, $val);
printf("REG[0x%02x] := 0x%02x\n", $r, $val | $f);
write_ec( $r, $val | $f);
printf("REG[0x%02x] == 0x%02x\n", $r, read_ec($r));
close_ioports();
} elsif ($ARGV[0] eq "-f") {
initialize_ioports();
my $r = hex($ARGV[1]);
my $f = hex($ARGV[2]);
my $val = read_ec($r);
printf("REG[0x%02x] == 0x%02x\n", $r, $val);
printf("REG[0x%02x] := 0x%02x\n", $r, $val & ~$f);
write_ec( $r, $val & ~$f);
printf("REG[0x%02x] == 0x%02x\n", $r, read_ec($r));
close_ioports();
} elsif ($ARGV[0] eq "ledon") {
# TM2490 only - needs testing
initialize_ioports();
if (!wait_write(0x64)) { outb(0x59, 0x64); }
if (!wait_write(0x64)) { outb(0x92, 0x60); }
close_ioports();
} elsif ($ARGV[0] eq "ledoff") {
# TM2490 only - needs testing
initialize_ioports();
if (!wait_write(0x64)) { outb(0x59, 0x64); }
if (!wait_write(0x64)) { outb(0x93, 0x60); }
close_ioports();
} elsif ($ARGV[0] eq "getfanthresh") {
initialize_ioports();
$ii=read_ec(0xa9);
close_ioports();
print "Temperature threshhold: $ii (celsius)\n";
} elsif (($ARGV[0] eq "setfanthresh") && testnum($ARGV[1])) {
write_temp(0xA9,$ARGV[1]);
} elsif ($ARGV[0] eq "setbright") {
# Aspire 5020 only (AMW0)
if ($ARGV[1] >= 0 && $ARGV[1] <= 15) {
write_temp(0x83, $ARGV[1]);
} else {
print "second argument must be a number between 0 and 15\n";
}
} elsif ($ARGV[0] eq "forcekc") {
# Be smart - we only send the commands for writing to keyboard RAM
initialize_ioports();
my ($kbdata, $cont, $kbreg);
for ($kbreg = 0x40; $kbreg <= 0x5f; $kbreg++) {
for ($kbdata = 0; $kbdata < 256; $kbdata++) {
write_kc($kbreg, $kbdata);
print sprintf("%0#4x", $kbreg), ", ", sprintf("%0#4x", $kbdata), "\n";
print "Continue? y/n: ";
$cont = <STDIN>;
if ($cont eq "n") {
last;
}
}
}
close_ioports();
} elsif ($ARGV[0] eq "kcw") {
initialize_ioports();
write_kc($ARGV[1], $ARGV[2]);
close_ioports();
} else {
print "wrong arguments!\n";
}