Fujitsu lifebook application panel |
Technical Details - ObsoleteAttention this page is obsolete. I discovered that the application panel is attached to the PIIX4 chip, on the system management bus. You might want to look at the new tech page. Well, the debugging is still in progress and we don't (yet) know how it works exactly, but some of what we know is shown below. The information may actually be inaccurate, so be careful when experimenting. When you discover something, please mail me. Currently, the driver uses direct outb commands, not exactly according to the information below. If you want working code and it doens't work with the following information, try copying it from the source available from the download page Enable application panel hardwareBefore the application panel hardware can be accessed, it has to be enabled. When turning on the c4110, it is enabled by default. However, when windows is shut down, the btnhnd driver disables it. It can be enabled by the following code:
enable:
Output: LED and LCDThe i/o ports that have a central place in all this are 0xff80-0xff8f. For output (lcd&led), the following commands are executed:
output:
baseport is equal to 0xff80 for the Fujitsu C-4110. The device is either 0x30 for the LED and 0x34 for the LCD. The subroutine applysub will be defined later. Below is a table with observed values obtained by debugging:
I managed to figure out some sequences for the led (device=0x30).
When minor=0x00, the blink speed of the led increases drastically and I don't know how to turn it of. minors 0x0f,0x10 and 0x02 still work. After playing with some sequences I discovered that a minor of 11 could set the blinking speed. Input: Application keysFor input, the code is somewhat different:
input:
The value device is 0x34. The value of switchpos depends on the position of the left switch you want to read. If the left switch is set on Application, the value of switchpos is 8, if the switch is set on CDPlayer, the value is 1. So you have to check the button status for both the Application and CDPlayer position. The output values are as follows:
applysubThis is called after or in the middle of every i/o operation. It needed a name, so I called it appysub. It has some VxD calls in it (in the windows driver of course), Begin_Nest_Exec, Resume_Exec and End_Nest_Exec. I have no clue what they do, so if you have, please mail me. Here is the code that I use and works for the LED:
applysub:
for loop=0 to 32
I implemented the above code in a FreeBSD driver and the led works. The keys don't work so I have to be missing something, but I'm trying to find out. |