FUNCTION_BLOCK IoDrvGPIOBase EXTENDS IoDrvBase IMPLEMENTS ICmpIoDrvParameter
This is a rather generic FB, which is able to handle the I/Os on linux based systems. It is not fully generic, that's why it not resides in an own library. Still the configuration of the I/O pins for the different functions needs to be implemented in a specialized FB.
Every single pin is configured with the functions:
ConfigurePinDI (pin number)
ConfigurePinDO (pin number)
The configuration is done based on enums where the Parameter ID corresponds to the pin number. One special paramter (10.000) defines the total number of pins.
All registers are mapped into our address space. As we are running on linux, where we have a virtual address space, the addresses need to be converted. This allocation and convertion is done in this base driver:
UpdateConfiguration manages the regions, which are defined in g_aMemRegions[]
SetRegister* / SetBit* / Phys2Virt are using those regions
To exchange the I/Os, the physical address for the exchange is specified in the driverSpecific value in the device description for each parameter. Those addresses are converted to their virtual counterparts in UpdateConfiguration.
Furthermore, UpdateConfiguration takes care about not configured I/Os. All I/O channels which are not configured are getting a driver specific value in the device description. This is then the physical address, which is converted by UpdateConfiguration to the virtual addresses, so that ReadInputs() and WriteOutputs() can copy the data easily with the standard IoMgrCopyInputs()/-CopyOutputs() functions.