Difference between revisions of "RockpiS/hardware/gpio"
(→26-pin Header 1) |
|||
Line 192: | Line 192: | ||
| 12 || || || I2C1_SCL || GPIO0_B4 || style="background:green; color:white"| 5 || || style="background:black; color:white"| 6 || GND || || || || | | 12 || || || I2C1_SCL || GPIO0_B4 || style="background:green; color:white"| 5 || || style="background:black; color:white"| 6 || GND || || || || | ||
|- | |- | ||
− | | 68 || || PDM_CLK_M_M2 || I2S0_8CH_MCLK || GPIO2_A4 || style="background:green; color:white"| 7 || || style="background:green; color:white"| 8 || GPIO2_A1 || style="background:orange"|UART0_TX || | + | | 68 || || PDM_CLK_M_M2 || I2S0_8CH_MCLK || GPIO2_A4 || style="background:green; color:white"| 7 || || style="background:green; color:white"| 8 || GPIO2_A1 || style="background:orange"|UART0_TX || || || 65 |
|- | |- | ||
− | | || || || || GND || style="background:black; color:white"| 9 || || style="background:green; color:white"|10 || GPIO2_A0 || style="background:orange"|UART0_RX || | + | | || || || || GND || style="background:black; color:white"| 9 || || style="background:green; color:white"|10 || GPIO2_A0 || style="background:orange"|UART0_RX || || || 64 |
|- | |- | ||
| 15 || || I2C3_SDA_M0 || PWM2 || GPIO0_B7 || style="background:green; color:white"|11 || || style="background:green; color:white"|12 || GPIO2_A5 || I2S0_8CH_SCLK_TX || || || 69 | | 15 || || I2C3_SDA_M0 || PWM2 || GPIO0_B7 || style="background:green; color:white"|11 || || style="background:green; color:white"|12 || GPIO2_A5 || I2S0_8CH_SCLK_TX || || || 69 |
Revision as of 03:20, 9 January 2020
ROCK Pi S > Hardware > GPIO
General purpose input-output (GPIO) connector
ROCK Pi S has two 26-pin expansion header. Each pin is distinguished by color.
Hardware V10
26-pin Header 1
GPIO number | Func4 | Func3 | Func2 | Func1 | Pin# | Pin# | Func1 | Func2 | Func3 | Func4 | [Expand] GPIO number |
---|
Warning
- Pin#8 and Pin#10 cannot be used as GPIO, UART function pins since they are the data pins of SDMMC.
26-pin Header 2
GPIO number | Func3 | Func2 | Func1 | Pin# | Pin# | Func1 | Func2 | Func3 | [Expand] GPIO number |
---|
More details about V10 Headers
- Pins marked with color orange are designed for default debug console.
- PWM: x3, PWM1/PWM2/PWM3
- SPI: x2, SPI0/SPI2
- I2C: x4, I2C0/I2C1/I2C2/I2C3
- UART: x3, UART0/UART1/UART2
More details about V11 Headers
- Pins marked with color orange are designed for default debug console.
- PWM: x3, PWM1/PWM2/PWM3
- SPI: x2, SPI0/SPI2
- I2C: x4, I2C0/I2C1/I2C2/I2C3
- UART: x3, UART0/UART1/UART2
- ADC: x1, ADC_IN0
More details about V12 Headers
- Pins marked with color orange are designed for default debug console.
- PWM: x2, PWM2/PWM3
- SPI: x1, SPI2
- I2C: x3, I2C0/I2C1/I2C3
- UART: x3, UART0/UART1/UART2
- ADC: x1, ADC_IN0
IO Voltage
RK3308 have two IO voltages, 1.8V/3.3V. For ROCK Pi S, the voltage level of GPIOs showed in the tables above are 3.3V and tolerance of those are 3.63V.
GPIO number
Rockchip RK3308 GPIO has 5 banks, GPIO0 to GPIO4, each bank has 32pins, naming as below:
GPIO0_A0 ~ A7 GPIO0_B0 ~ B7 GPIO0_C0 ~ C7 GPIO0_D0 ~ D7 GPIO1_A0 ~ A7 .... GPIO1_D0 ~ D7
For Rockchip 4.4 kernel, the GPIO number can be calculated as below, take GPIO4_D3(PIN8 on 26PIN GPIO) as an example:
GPIO4_D3 = 32*4 + 8*3 + 3 = 155
To set GPIO4_D3 output
cd /sys/class/gpio echo 155 > export cd gpio155 echo out > direction echo 1 > value # output high echo 0 > value # output low