29 retval = LRMI_int(0x15, &r);
35 if (r.eax == 0x47534943) {
36 printf(
"BIOS supports GSIC call:\n");
37 printf(
"\tsignature: %c%c%c%c\n",
42 printf(
"\tcommand port = 0x%.4x\n",
44 printf(
"\tcommand = 0x%.4x\n",
45 (r.ebx >> 16) & 0xffff);
46 printf(
"\tevent port = 0x%.8x\n", r.ecx);
47 printf(
"\tflags = 0x%.8x\n", r.edx);
48 if (((r.ebx >> 16) & 0xffff) != 0x82) {
49 printf(
"non-default command value. If speedstep-smi "
50 "doesn't work out of the box,\nyou may want to "
51 "try out the default value by passing "
52 "smi_cmd=0x82 to the module\n ON YOUR OWN "
55 if ((r.ebx & 0xffff) != 0xb2) {
56 printf(
"non-default command port. If speedstep-smi "
57 "doesn't work out of the box,\nyou may want to "
58 "try out the default value by passing "
59 "smi_port=0x82 to the module\n ON YOUR OWN "
63 printf(
"BIOS DOES NOT support GSIC call. Dumping registers anyway:\n");
64 printf(
"eax = 0x%.8x\n", r.eax);
65 printf(
"ebx = 0x%.8x\n", r.ebx);
66 printf(
"ecx = 0x%.8x\n", r.ecx);
67 printf(
"edx = 0x%.8x\n", r.edx);
68 printf(
"Note also that some BIOS do not support the initial "
69 "GSIC call, but the newer\nspeeedstep-smi driver may "
70 "work.\nFor this, you need to pass some arguments to "
71 "the speedstep-smi driver:\n");
72 printf(
"\tsmi_cmd=0x?? smi_port=0x?? smi_sig=1\n");
73 printf(
"\nUnfortunately, you have to know what exactly are "
74 "smi_cmd and smi_port, and this\nis system "