LINUX GPIO 配置说明

配置GPIO 一般会配置config(属性)和direction(方向)

方向就是分为输入输出

属性主要是说输出使能,输入使能,内部上拉,内部下拉。一般就两种类型选择:一种是选择PUE,内部上下拉;一种是选择ODE,也就是由外部电路决定GPIO的状态。

比如:NXP的S32V234 芯片GPIO说明如下

输出使能

Output Buffer Enable field
Applicable pad type: GPIO
0 Disabled
1 Enabled

ODE 模式,这种模式就是IO口的状态由外部的上下拉电阻有关

Open Drain Enable field
Applicable pad type: GPIO

0 Output is CMOS
1 Output is open drain

输入使能

Input Buffer Enable
Applicable pad type: GPIO
0 Disabled
1 Enabled

内部上下拉使能

Pull Select Field
Applicable pad type: GPIO + DDR
0 Pullup or pulldown resistors disable
1 Pullup or pulldown resistors enable

内部上下拉电阻选择

Pull Up / Down Config Field
Applicable pad type: GPIO + DDR

00 100 kOhm pulldown
01 50 kOhm pullup
10 100 kOhm pullup
11 33 kOhm pullup

    

GPIO口的驱动能力选择:

Drive strength field
Applicable pad type: GPIO + DDR
000 Output driver disabled
001 240 Ohm
010 240/2 = 120 Ohm
011 240/3 Ohm = 80 Ohm
100 240/4=60 Ohm
101 240/5 Ohm = 48 Ohm
110 240/6=40 Ohm
111 240/7 = 34 Ohm (max drive strength)


 

你可能感兴趣的:(嵌入式linux)