Appendix-B Gpio - WynMax WMIX-D5256 User Manual

Intel atom d525
Table of Contents

Advertisement

Appendix-B GPIO

The System Board provides 4 dedicated output ports and 4 programmable I/O ports
that can be individually configured to perform a simple I/O function. Users can
configure 4 programmable I/O ports to become an input or output port by
programming register bit of I/O Selection .To invert port value, the setting of Inversion
Register has to be made
Register.
Note : Only 4 programmable I/O ports support.
Additionally, 4 Digital Output ports amplified signals from GPIO ports. There are
open-drain buffers, which can offer greater driving capacity up to 100mA.
For more information about GPIO, please refer to Winbond W83627EHF data sheet.
The related Control Registers of GPIO are all included in the following sample
program that is written in C language. To ensure a successful accessing to the
content of desired Control Register, the sequence of following program codes should
be step-by-step run again when each register is accessed.
There are two PnP I/O port addresses that can be used to configure GPIO ports,
1) 0x2E - EFER (Extended Function Enable Register, for entering Extended Function
Mode)
- EFIR (Extended Function Index Register, for identifying CR index number)
2) 0x2F - EFDR (Extended Function Data Register, for accessing desired CR)
Below are some example codes, which demonstrate the use of GPIOs.
// Enter Extended Function Mode
outp(0x002E, 0x87);
outp(0x002E, 0x87);
// Assign Pin121-128 to be GPIO port
outp(0x002E, 0x29);
outp(0x002F, inp(0x002F) | 0x01);
. Port values can be set to read or write through Data
(Note)
56

Advertisement

Table of Contents
loading

Table of Contents