i need A lil help to find GPIO on the device

malop

New Member
Joined
Jun 18, 2020
Messages
5
Reaction score
0
Credits
76
hey there everyone , totaly new here.
i received not long ago a rockhip chines dev board , it came with android installed on it, and some devices attached to it , leds,sensors,thermal sensor, camera ,relay and more. most of them are connected via gpio , some usb on the board

this is a IOT-3288X

since most the devices are connected via gpios is that the weird part for example are the gpio names, for example there is a led connected to multiple place on the board 1 led 3 colors , they are all under gpio_sw in /sys/class/gpio_sw/ . so instead of having a normal such as LEDWHITE it has totaly different names for example to turn on the white led i have to
"echo 1 > /sys/devices/platform/rk3288-extern-gpio/gpio_sw/WIFI_PW/data"
which make no sense, but i guess everything is messed up

so right now i am trying to understand which gpio is turning on a relay gate ,
i did checked the hardware pins on a chines manual and it seems that the relay is connected to pin 19 and 20 , however when i exported the pins to the /sys/class/gpio/export and then tried to changed the value of it, it did not work. i am at a stage that i am sitting on it for over 16h straight trying to figuring this out without any success
note that i even exported all 264 pins , and tried to change all of them to direction out , however the device crashed and restart , i tried to minimized it to 100 (batch of 100) than minimzed to 10, it carshed all the way, i tried also to change all the values to 1 (without the direction out, so gpio that are on out should've work) it did no changes , i tried to set the value to 0 (on all pins) nothing happen aswell.

when exporting the all the pins , some did not work (all the gpios pins in sys/kernel/debug/gpio could not be exported inside the gpio folder im not sure why , pehaps they are being used or already open/mounted? so how do i use them)

there is an app on the android , which allow me to change the relay more (normaly open, normaly close) (perhaps that can help idk)

any of u have an idea how can i determine what the app is controlling ?
of figuring out what gpio is that so i can turn on and off the relay on my command/demand ?


Code:
cat /sys/kernel/debug/gpio
GPIOs 0-23, platform/pinctrl, gpio0:
gpio-1   (                    |reset               ) out hi
gpio-3   (                    |rk3288 gpio         ) out hi
gpio-5   (                    |power               ) in  hi
gpio-11  (                    |rk3288 gpio         ) out lo
gpio-12  (                    |otg_drv_gpio        ) out hi
gpio-13  (                    |rk3288 gpio         ) out lo
gpio-14  (                    |vcc_host            ) out hi
gpio-17  (                    |rk3288 gpio         ) out hi
gpio-18  (                    |rk3288 gpio         ) out lo

GPIOs 24-55, platform/pinctrl, gpio1:

GPIOs 56-87, platform/pinctrl, gpio2:

GPIOs 88-119, platform/pinctrl, gpio3:

GPIOs 120-151, platform/pinctrl, gpio4:
gpio-127 (                    |mdio-reset          ) out hi
gpio-139 (                    |bt_default_rts      ) out lo
gpio-146 (                    |bt_default_wake     ) out hi
gpio-148 (                    |reset               ) out hi
gpio-149 (                    |bt_default_reset    ) out hi
gpio-151 (                    |bt_default_wake_host) out hi

GPIOs 152-183, platform/pinctrl, gpio5:
gpio-162 (                    |wiegand_d1          ) in  hi
gpio-163 (                    |wiegand_d0          ) in  hi

GPIOs 184-215, platform/pinctrl, gpio6:

GPIOs 216-247, platform/pinctrl, gpio7:
gpio-218 (                    |rk3288 gpio         ) out lo
gpio-219 (                    |vcc_lcd             ) out lo
gpio-220 (                    |rk3288 gpio         ) out hi
gpio-221 (                    |rk3288 gpio         ) out lo
gpio-222 (                    |rk3288 gpio         ) out hi
gpio-225 (                    |vcc_wl              ) out lo
gpio-226 (                    |rk3288 gpio         ) out hi
gpio-228 (                    |rk3288 gpio         ) out hi
gpio-229 (                    |rk3288 gpio         ) out lo
gpio-230 (                    |enable              ) out hi
gpio-231 (                    |headset_gpio        ) in  lo
gpio-237 (                    |rk3288 gpio         ) out hi

GPIOs 248-263, platform/pinctrl, gpio8:
gpio-248 (                    |mpu6500             ) in  lo
gpio-249 (                    |rk3288 gpio         ) out hi
gpio-250 (                    |recovey             ) in  hi
gpio-251 (                    |rk3288 gpio         ) out lo
gpio-257 (                    |enable              ) out hi



Code:
cat /sys/kernel/debug/pinctrl/pinctrl/gpio-ranges
GPIO ranges handled:
0: gpio0 GPIOS [0 - 23] PINS [0 - 23]
1: gpio1 GPIOS [24 - 55] PINS [24 - 55]
2: gpio2 GPIOS [56 - 87] PINS [56 - 87]
3: gpio3 GPIOS [88 - 119] PINS [88 - 119]
4: gpio4 GPIOS [120 - 151] PINS [120 - 151]
5: gpio5 GPIOS [152 - 183] PINS [152 - 183]
6: gpio6 GPIOS [184 - 215] PINS [184 - 215]
7: gpio7 GPIOS [216 - 247] PINS [216 - 247]
8: gpio8 GPIOS [248 - 263] PINS [248 - 263]


Code:
ls -lha /sys/class/gpio/
gpiochip0 -> ../../devices/platform/pinctrl/gpio/gpiochip0
gpiochip120 -> ../../devices/platform/pinctrl/gpio/gpiochip120
gpiochip152 -> ../../devices/platform/pinctrl/gpio/gpiochip152
gpiochip184 -> ../../devices/platform/pinctrl/gpio/gpiochip184
gpiochip216 -> ../../devices/platform/pinctrl/gpio/gpiochip216
gpiochip24 -> ../../devices/platform/pinctrl/gpio/gpiochip24
gpiochip248 -> ../../devices/platform/pinctrl/gpio/gpiochip248
gpiochip56 -> ../../devices/platform/pinctrl/gpio/gpiochip56
gpiochip88 -> ../../devices/platform/pinctrl/gpio/gpiochip88



(P.S, there is also a thermal sensor , that speaks via i2c, which again idk on what gpio is that so i can perhaps start to communicate with it)

any how thanks for the help , and please ask me anything ! , so i can try to help myself here.
i know maybe it seems abit non organized but i am after 20h of being awake :)

maybe phrase it differently would be

i want to figure out which path in /sys/... corresponds to which GPIO pin that is connected.

please guide me .

thanks !
 
Last edited:


cat pinmux-pins
Pinmux settings per pin
Format: pin (name): mux_owner gpio_owner hog?
pin 0 (gpio0-0): (MUX UNCLAIMED) (GPIO UNCLAIMED)
pin 1 (gpio0-1): (MUX UNCLAIMED) gpio0:1
pin 2 (gpio0-2): (MUX UNCLAIMED) (GPIO UNCLAIMED)
pin 3 (gpio0-3): (MUX UNCLAIMED) gpio0:3
pin 4 (gpio0-4): (MUX UNCLAIMED) (GPIO UNCLAIMED)
pin 5 (gpio0-5): (MUX UNCLAIMED) gpio0:5
pin 6 (gpio0-6): vcc-phy-regulator (GPIO UNCLAIMED) function eth_phy group eth-phy-pwr
pin 7 (gpio0-7): (MUX UNCLAIMED) (GPIO UNCLAIMED)
pin 8 (gpio0-8): (MUX UNCLAIMED) (GPIO UNCLAIMED)
pin 9 (gpio0-9): (MUX UNCLAIMED) (GPIO UNCLAIMED)
pin 10 (gpio0-10): ff280000.tsadc (GPIO UNCLAIMED) function tsadc group otp-gpio
pin 11 (gpio0-11): (MUX UNCLAIMED) gpio0:11
pin 12 (gpio0-12): (MUX UNCLAIMED) gpio0:12
pin 13 (gpio0-13): (MUX UNCLAIMED) gpio0:13
pin 14 (gpio0-14): vcc-host-regulator gpio0:14 function usb group host-vbus-drv
pin 15 (gpio0-15): ff650000.i2c (GPIO UNCLAIMED) function i2c0 group i2c0-xfer
pin 16 (gpio0-16): ff650000.i2c (GPIO UNCLAIMED) function i2c0 group i2c0-xfer
pin 17 (gpio0-17): (MUX UNCLAIMED) gpio0:17
pin 18 (gpio0-18): (MUX UNCLAIMED) gpio0:18
pin 19 (gpio0-19): (MUX UNCLAIMED) (GPIO UNCLAIMED)
pin 20 (gpio0-20): (MUX UNCLAIMED) (GPIO UNCLAIMED)
pin 21 (gpio0-21): (MUX UNCLAIMED) (GPIO UNCLAIMED)
pin 22 (gpio0-22): (MUX UNCLAIMED) (GPIO UNCLAIMED)
pin 23 (gpio0-23): (MUX UNCLAIMED) (GPIO UNCLAIMED)
pin 24 (gpio1-0): (MUX UNCLAIMED) (GPIO UNCLAIMED)
pin 25 (gpio1-1): (MUX UNCLAIMED) (GPIO UNCLAIMED)
pin 26 (gpio1-2): (MUX UNCLAIMED) (GPIO UNCLAIMED)
pin 27 (gpio1-3): (MUX UNCLAIMED) (GPIO UNCLAIMED)
pin 28 (gpio1-4): (MUX UNCLAIMED) (GPIO UNCLAIMED)
pin 29 (gpio1-5): (MUX UNCLAIMED) (GPIO UNCLAIMED)
pin 30 (gpio1-6): (MUX UNCLAIMED) (GPIO UNCLAIMED)
pin 31 (gpio1-7): (MUX UNCLAIMED) (GPIO UNCLAIMED)
pin 32 (gpio1-8): (MUX UNCLAIMED) (GPIO UNCLAIMED)
pin 33 (gpio1-9): (MUX UNCLAIMED) (GPIO UNCLAIMED)
pin 34 (gpio1-10): (MUX UNCLAIMED) (GPIO UNCLAIMED)
pin 35 (gpio1-11): (MUX UNCLAIMED) (GPIO UNCLAIMED)
pin 36 (gpio1-12): (MUX UNCLAIMED) (GPIO UNCLAIMED)
pin 37 (gpio1-13): (MUX UNCLAIMED) (GPIO UNCLAIMED)
pin 38 (gpio1-14): (MUX UNCLAIMED) (GPIO UNCLAIMED)
pin 39 (gpio1-15): (MUX UNCLAIMED) (GPIO UNCLAIMED)
pin 40 (gpio1-16): (MUX UNCLAIMED) (GPIO UNCLAIMED)
pin 41 (gpio1-17): (MUX UNCLAIMED) (GPIO UNCLAIMED)
pin 42 (gpio1-18): (MUX UNCLAIMED) (GPIO UNCLAIMED)
pin 43 (gpio1-19): (MUX UNCLAIMED) (GPIO UNCLAIMED)
pin 44 (gpio1-20): (MUX UNCLAIMED) (GPIO UNCLAIMED)
pin 45 (gpio1-21): (MUX UNCLAIMED) (GPIO UNCLAIMED)
pin 46 (gpio1-22): (MUX UNCLAIMED) (GPIO UNCLAIMED)
pin 47 (gpio1-23): (MUX UNCLAIMED) (GPIO UNCLAIMED)
pin 48 (gpio1-24): (MUX UNCLAIMED) (GPIO UNCLAIMED)
pin 49 (gpio1-25): (MUX UNCLAIMED) (GPIO UNCLAIMED)
pin 50 (gpio1-26): (MUX UNCLAIMED) (GPIO UNCLAIMED)
pin 51 (gpio1-27): (MUX UNCLAIMED) (GPIO UNCLAIMED)
pin 52 (gpio1-28): (MUX UNCLAIMED) (GPIO UNCLAIMED)
pin 53 (gpio1-29): (MUX UNCLAIMED) (GPIO UNCLAIMED)
pin 54 (gpio1-30): (MUX UNCLAIMED) (GPIO UNCLAIMED)
pin 55 (gpio1-31): (MUX UNCLAIMED) (GPIO UNCLAIMED)
pin 56 (gpio2-0): (MUX UNCLAIMED) (GPIO UNCLAIMED)
pin 57 (gpio2-1): (MUX UNCLAIMED) (GPIO UNCLAIMED)
pin 58 (gpio2-2): (MUX UNCLAIMED) (GPIO UNCLAIMED)
pin 59 (gpio2-3): (MUX UNCLAIMED) (GPIO UNCLAIMED)
pin 60 (gpio2-4): (MUX UNCLAIMED) (GPIO UNCLAIMED)
pin 61 (gpio2-5): (MUX UNCLAIMED) (GPIO UNCLAIMED)
pin 62 (gpio2-6): (MUX UNCLAIMED) (GPIO UNCLAIMED)
pin 63 (gpio2-7): (MUX UNCLAIMED) (GPIO UNCLAIMED)
pin 64 (gpio2-8): (MUX UNCLAIMED) (GPIO UNCLAIMED)
pin 65 (gpio2-9): (MUX UNCLAIMED) (GPIO UNCLAIMED)
pin 66 (gpio2-10): (MUX UNCLAIMED) (GPIO UNCLAIMED)
pin 67 (gpio2-11): ff910000.isp (GPIO UNCLAIMED) function isp_pin group isp-mipi
pin 68 (gpio2-12): (MUX UNCLAIMED) (GPIO UNCLAIMED)
pin 69 (gpio2-13): (MUX UNCLAIMED) (GPIO UNCLAIMED)
pin 70 (gpio2-14): (MUX UNCLAIMED) (GPIO UNCLAIMED)
pin 71 (gpio2-15): (MUX UNCLAIMED) (GPIO UNCLAIMED)
pin 72 (gpio2-16): ff150000.i2c (GPIO UNCLAIMED) function i2c3 group i2c3-xfer
pin 73 (gpio2-17): ff150000.i2c (GPIO UNCLAIMED) function i2c3 group i2c3-xfer
pin 74 (gpio2-18): (MUX UNCLAIMED) (GPIO UNCLAIMED)
pin 75 (gpio2-19): (MUX UNCLAIMED) (GPIO UNCLAIMED)
pin 76 (gpio2-20): (MUX UNCLAIMED) (GPIO UNCLAIMED)
pin 77 (gpio2-21): (MUX UNCLAIMED) (GPIO UNCLAIMED)
pin 78 (gpio2-22): (MUX UNCLAIMED) (GPIO UNCLAIMED)
pin 79 (gpio2-23): (MUX UNCLAIMED) (GPIO UNCLAIMED)
pin 80 (gpio2-24): (MUX UNCLAIMED) (GPIO UNCLAIMED)
pin 81 (gpio2-25): (MUX UNCLAIMED) (GPIO UNCLAIMED)
pin 82 (gpio2-26): (MUX UNCLAIMED) (GPIO UNCLAIMED)
pin 83 (gpio2-27): (MUX UNCLAIMED) (GPIO UNCLAIMED)
pin 84 (gpio2-28): (MUX UNCLAIMED) (GPIO UNCLAIMED)
pin 85 (gpio2-29): (MUX UNCLAIMED) (GPIO UNCLAIMED)
pin 86 (gpio2-30): (MUX UNCLAIMED) (GPIO UNCLAIMED)
pin 87 (gpio2-31): (MUX UNCLAIMED) (GPIO UNCLAIMED)
pin 88 (gpio3-0): ff0f0000.dwmmc (GPIO UNCLAIMED) function emmc group emmc-bus8
pin 89 (gpio3-1): ff0f0000.dwmmc (GPIO UNCLAIMED) function emmc group emmc-bus8
pin 90 (gpio3-2): ff0f0000.dwmmc (GPIO UNCLAIMED) function emmc group emmc-bus8
pin 91 (gpio3-3): ff0f0000.dwmmc (GPIO UNCLAIMED) function emmc group emmc-bus8
pin 92 (gpio3-4): ff0f0000.dwmmc (GPIO UNCLAIMED) function emmc group emmc-bus8
pin 93 (gpio3-5): ff0f0000.dwmmc (GPIO UNCLAIMED) function emmc group emmc-bus8
pin 94 (gpio3-6): ff0f0000.dwmmc (GPIO UNCLAIMED) function emmc group emmc-bus8
pin 95 (gpio3-7): ff0f0000.dwmmc (GPIO UNCLAIMED) function emmc group emmc-bus8
pin 96 (gpio3-8): (MUX UNCLAIMED) (GPIO UNCLAIMED)
pin 97 (gpio3-9): ff0f0000.dwmmc (GPIO UNCLAIMED) function emmc group emmc-pwr
pin 98 (gpio3-10): (MUX UNCLAIMED) (GPIO UNCLAIMED)
pin 99 (gpio3-11): (MUX UNCLAIMED) (GPIO UNCLAIMED)
pin 100 (gpio3-12): (MUX UNCLAIMED) (GPIO UNCLAIMED)
pin 101 (gpio3-13): (MUX UNCLAIMED) (GPIO UNCLAIMED)
pin 102 (gpio3-14): (MUX UNCLAIMED) (GPIO UNCLAIMED)
pin 103 (gpio3-15): (MUX UNCLAIMED) (GPIO UNCLAIMED)
pin 104 (gpio3-16): ff0f0000.dwmmc (GPIO UNCLAIMED) function emmc group emmc-cmd
pin 105 (gpio3-17): (MUX UNCLAIMED) (GPIO UNCLAIMED)
pin 106 (gpio3-18): ff0f0000.dwmmc (GPIO UNCLAIMED) function emmc group emmc-clk
pin 107 (gpio3-19): (MUX UNCLAIMED) (GPIO UNCLAIMED)
pin 108 (gpio3-20): (MUX UNCLAIMED) (GPIO UNCLAIMED)
pin 109 (gpio3-21): (MUX UNCLAIMED) (GPIO UNCLAIMED)
pin 110 (gpio3-22): (MUX UNCLAIMED) (GPIO UNCLAIMED)
pin 111 (gpio3-23): (MUX UNCLAIMED) (GPIO UNCLAIMED)
pin 112 (gpio3-24): ff290000.ethernet (GPIO UNCLAIMED) function gmac group rgmii-pins
pin 113 (gpio3-25): ff290000.ethernet (GPIO UNCLAIMED) function gmac group rgmii-pins
pin 114 (gpio3-26): ff290000.ethernet (GPIO UNCLAIMED) function gmac group rgmii-pins
pin 115 (gpio3-27): ff290000.ethernet (GPIO UNCLAIMED) function gmac group rgmii-pins
pin 116 (gpio3-28): ff290000.ethernet (GPIO UNCLAIMED) function gmac group rgmii-pins
pin 117 (gpio3-29): ff290000.ethernet (GPIO UNCLAIMED) function gmac group rgmii-pins
pin 118 (gpio3-30): ff290000.ethernet (GPIO UNCLAIMED) function gmac group rgmii-pins
pin 119 (gpio3-31): ff290000.ethernet (GPIO UNCLAIMED) function gmac group rgmii-pins
pin 120 (gpio4-0): ff290000.ethernet (GPIO UNCLAIMED) function gmac group rgmii-pins
pin 121 (gpio4-1): ff290000.ethernet (GPIO UNCLAIMED) function gmac group rgmii-pins
pin 122 (gpio4-2): (MUX UNCLAIMED) (GPIO UNCLAIMED)
pin 123 (gpio4-3): ff290000.ethernet (GPIO UNCLAIMED) function gmac group rgmii-pins
pin 124 (gpio4-4): ff290000.ethernet (GPIO UNCLAIMED) function gmac group rgmii-pins
pin 125 (gpio4-5): ff290000.ethernet (GPIO UNCLAIMED) function gmac group rgmii-pins
pin 126 (gpio4-6): ff290000.ethernet (GPIO UNCLAIMED) function gmac group rgmii-pins
pin 127 (gpio4-7): (MUX UNCLAIMED) gpio4:127
pin 128 (gpio4-8): (MUX UNCLAIMED) (GPIO UNCLAIMED)
pin 129 (gpio4-9): ff290000.ethernet (GPIO UNCLAIMED) function gmac group rgmii-pins
pin 130 (gpio4-10): (MUX UNCLAIMED) (GPIO UNCLAIMED)
pin 131 (gpio4-11): (MUX UNCLAIMED) (GPIO UNCLAIMED)
pin 132 (gpio4-12): (MUX UNCLAIMED) (GPIO UNCLAIMED)
pin 133 (gpio4-13): (MUX UNCLAIMED) (GPIO UNCLAIMED)
pin 134 (gpio4-14): (MUX UNCLAIMED) (GPIO UNCLAIMED)
pin 135 (gpio4-15): (MUX UNCLAIMED) (GPIO UNCLAIMED)
pin 136 (gpio4-16): ff180000.serial (GPIO UNCLAIMED) function uart0 group uart0-xfer
pin 137 (gpio4-17): ff180000.serial (GPIO UNCLAIMED) function uart0 group uart0-xfer
pin 138 (gpio4-18): ff180000.serial (GPIO UNCLAIMED) function uart0 group uart0-cts
pin 139 (gpio4-19): wireless-bluetooth gpio4:139 function uart0 group uart0-rts
pin 140 (gpio4-20): ff0d0000.dwmmc (GPIO UNCLAIMED) function sdio0 group sdio0-bus4
pin 141 (gpio4-21): ff0d0000.dwmmc (GPIO UNCLAIMED) function sdio0 group sdio0-bus4
pin 142 (gpio4-22): ff0d0000.dwmmc (GPIO UNCLAIMED) function sdio0 group sdio0-bus4
pin 143 (gpio4-23): ff0d0000.dwmmc (GPIO UNCLAIMED) function sdio0 group sdio0-bus4
pin 144 (gpio4-24): ff0d0000.dwmmc (GPIO UNCLAIMED) function sdio0 group sdio0-cmd
pin 145 (gpio4-25): ff0d0000.dwmmc (GPIO UNCLAIMED) function sdio0 group sdio0-clk
pin 146 (gpio4-26): (MUX UNCLAIMED) gpio4:146
pin 147 (gpio4-27): (MUX UNCLAIMED) (GPIO UNCLAIMED)
pin 148 (gpio4-28): (MUX UNCLAIMED) gpio4:148
pin 149 (gpio4-29): (MUX UNCLAIMED) gpio4:149
pin 150 (gpio4-30): ff0d0000.dwmmc (GPIO UNCLAIMED) function sdio0 group sdio0-int
pin 151 (gpio4-31): (MUX UNCLAIMED) gpio4:151
pin 152 (gpio5-0): (MUX UNCLAIMED) (GPIO UNCLAIMED)
pin 153 (gpio5-1): (MUX UNCLAIMED) (GPIO UNCLAIMED)
pin 154 (gpio5-2): (MUX UNCLAIMED) (GPIO UNCLAIMED)
pin 155 (gpio5-3): (MUX UNCLAIMED) (GPIO UNCLAIMED)
pin 156 (gpio5-4): (MUX UNCLAIMED) (GPIO UNCLAIMED)
pin 157 (gpio5-5): (MUX UNCLAIMED) (GPIO UNCLAIMED)
pin 158 (gpio5-6): (MUX UNCLAIMED) (GPIO UNCLAIMED)
pin 159 (gpio5-7): (MUX UNCLAIMED) (GPIO UNCLAIMED)
pin 160 (gpio5-8): ff190000.serial (GPIO UNCLAIMED) function uart1 group uart1-xfer
pin 161 (gpio5-9): ff190000.serial (GPIO UNCLAIMED) function uart1 group uart1-xfer
pin 162 (gpio5-10): ff190000.serial gpio5:162 function uart1 group uart1-cts
pin 163 (gpio5-11): (MUX UNCLAIMED) gpio5:163
pin 164 (gpio5-12): ff1c0000.serial (GPIO UNCLAIMED) function uart4 group uart4-cts
pin 165 (gpio5-13): (MUX UNCLAIMED) (GPIO UNCLAIMED)
pin 166 (gpio5-14): ff1c0000.serial (GPIO UNCLAIMED) function uart4 group uart4-xfer
pin 167 (gpio5-15): ff1c0000.serial (GPIO UNCLAIMED) function uart4 group uart4-xfer
pin 168 (gpio5-16): (MUX UNCLAIMED) (GPIO UNCLAIMED)
pin 169 (gpio5-17): (MUX UNCLAIMED) (GPIO UNCLAIMED)
pin 170 (gpio5-18): (MUX UNCLAIMED) (GPIO UNCLAIMED)
pin 171 (gpio5-19): (MUX UNCLAIMED) (GPIO UNCLAIMED)
pin 172 (gpio5-20): (MUX UNCLAIMED) (GPIO UNCLAIMED)
pin 173 (gpio5-21): (MUX UNCLAIMED) (GPIO UNCLAIMED)
pin 174 (gpio5-22): (MUX UNCLAIMED) (GPIO UNCLAIMED)
pin 175 (gpio5-23): (MUX UNCLAIMED) (GPIO UNCLAIMED)
pin 176 (gpio5-24): (MUX UNCLAIMED) (GPIO UNCLAIMED)
pin 177 (gpio5-25): (MUX UNCLAIMED) (GPIO UNCLAIMED)
pin 178 (gpio5-26): (MUX UNCLAIMED) (GPIO UNCLAIMED)
pin 179 (gpio5-27): (MUX UNCLAIMED) (GPIO UNCLAIMED)
pin 180 (gpio5-28): (MUX UNCLAIMED) (GPIO UNCLAIMED)
pin 181 (gpio5-29): (MUX UNCLAIMED) (GPIO UNCLAIMED)
pin 182 (gpio5-30): (MUX UNCLAIMED) (GPIO UNCLAIMED)
pin 183 (gpio5-31): (MUX UNCLAIMED) (GPIO UNCLAIMED)
pin 184 (gpio6-0): ff890000.i2s (GPIO UNCLAIMED) function i2s0 group i2s0-bus
pin 185 (gpio6-1): ff890000.i2s (GPIO UNCLAIMED) function i2s0 group i2s0-bus
pin 186 (gpio6-2): ff890000.i2s (GPIO UNCLAIMED) function i2s0 group i2s0-bus
pin 187 (gpio6-3): ff890000.i2s (GPIO UNCLAIMED) function i2s0 group i2s0-bus
pin 188 (gpio6-4): ff890000.i2s (GPIO UNCLAIMED) function i2s0 group i2s0-bus
pin 189 (gpio6-5): (MUX UNCLAIMED) (GPIO UNCLAIMED)
pin 190 (gpio6-6): (MUX UNCLAIMED) (GPIO UNCLAIMED)
pin 191 (gpio6-7): (MUX UNCLAIMED) (GPIO UNCLAIMED)
pin 192 (gpio6-8): 2-001c (GPIO UNCLAIMED) function i2s0 group i2s0-mclk
pin 193 (gpio6-9): ff660000.i2c (GPIO UNCLAIMED) function i2c2 group i2c2-xfer
pin 194 (gpio6-10): ff660000.i2c (GPIO UNCLAIMED) function i2c2 group i2c2-xfer
pin 195 (gpio6-11): (MUX UNCLAIMED) (GPIO UNCLAIMED)
pin 196 (gpio6-12): (MUX UNCLAIMED) (GPIO UNCLAIMED)
pin 197 (gpio6-13): (MUX UNCLAIMED) (GPIO UNCLAIMED)
pin 198 (gpio6-14): (MUX UNCLAIMED) (GPIO UNCLAIMED)
pin 199 (gpio6-15): (MUX UNCLAIMED) (GPIO UNCLAIMED)
pin 200 (gpio6-16): ff0c0000.dwmmc (GPIO UNCLAIMED) function sdmmc group sdmmc-bus4
pin 201 (gpio6-17): ff0c0000.dwmmc (GPIO UNCLAIMED) function sdmmc group sdmmc-bus4
pin 202 (gpio6-18): ff0c0000.dwmmc (GPIO UNCLAIMED) function sdmmc group sdmmc-bus4
pin 203 (gpio6-19): ff0c0000.dwmmc (GPIO UNCLAIMED) function sdmmc group sdmmc-bus4
pin 204 (gpio6-20): ff0c0000.dwmmc (GPIO UNCLAIMED) function sdmmc group sdmmc-clk
pin 205 (gpio6-21): ff0c0000.dwmmc (GPIO UNCLAIMED) function sdmmc group sdmmc-cmd
pin 206 (gpio6-22): ff0c0000.dwmmc (GPIO UNCLAIMED) function sdmmc group sdmmc-cd
pin 207 (gpio6-23): (MUX UNCLAIMED) (GPIO UNCLAIMED)
pin 208 (gpio6-24): (MUX UNCLAIMED) (GPIO UNCLAIMED)
pin 209 (gpio6-25): (MUX UNCLAIMED) (GPIO UNCLAIMED)
pin 210 (gpio6-26): (MUX UNCLAIMED) (GPIO UNCLAIMED)
pin 211 (gpio6-27): (MUX UNCLAIMED) (GPIO UNCLAIMED)
pin 212 (gpio6-28): (MUX UNCLAIMED) (GPIO UNCLAIMED)
pin 213 (gpio6-29): (MUX UNCLAIMED) (GPIO UNCLAIMED)
pin 214 (gpio6-30): (MUX UNCLAIMED) (GPIO UNCLAIMED)
pin 215 (gpio6-31): (MUX UNCLAIMED) (GPIO UNCLAIMED)
pin 216 (gpio7-0): ff680000.pwm (GPIO UNCLAIMED) function pwm0 group pwm0-pin
pin 217 (gpio7-1): (MUX UNCLAIMED) (GPIO UNCLAIMED)
pin 218 (gpio7-2): backlight gpio7:218 function backlight group bl-en
pin 219 (gpio7-3): vcc-lcd gpio7:219 function lcd group lcd-en
pin 220 (gpio7-4): (MUX UNCLAIMED) gpio7:220
pin 221 (gpio7-5): (MUX UNCLAIMED) gpio7:221
pin 222 (gpio7-6): (MUX UNCLAIMED) gpio7:222
pin 223 (gpio7-7): (MUX UNCLAIMED) (GPIO UNCLAIMED)
pin 224 (gpio7-8): (MUX UNCLAIMED) (GPIO UNCLAIMED)
pin 225 (gpio7-9): vcc-wl gpio7:225 function wifi group wifi-pwr
pin 226 (gpio7-10): (MUX UNCLAIMED) gpio7:226
pin 227 (gpio7-11): sdmmc-regulator (GPIO UNCLAIMED) function sdmmc group sdmmc-pwr
pin 228 (gpio7-12): (MUX UNCLAIMED) gpio7:228
pin 229 (gpio7-13): (MUX UNCLAIMED) gpio7:229
pin 230 (gpio7-14): (MUX UNCLAIMED) gpio7:230
pin 231 (gpio7-15): (MUX UNCLAIMED) gpio7:231
pin 232 (gpio7-16): (MUX UNCLAIMED) (GPIO UNCLAIMED)
pin 233 (gpio7-17): ff160000.i2c (GPIO UNCLAIMED) function i2c4 group i2c4-xfer
pin 234 (gpio7-18): ff160000.i2c (GPIO UNCLAIMED) function i2c4 group i2c4-xfer
pin 235 (gpio7-19): (MUX UNCLAIMED) (GPIO UNCLAIMED)
pin 236 (gpio7-20): (MUX UNCLAIMED) (GPIO UNCLAIMED)
pin 237 (gpio7-21): (MUX UNCLAIMED) gpio7:237
pin 238 (gpio7-22): fiq-debugger (GPIO UNCLAIMED) function uart2 group uart2-xfer
pin 239 (gpio7-23): fiq-debugger (GPIO UNCLAIMED) function uart2 group uart2-xfer
pin 240 (gpio7-24): (MUX UNCLAIMED) (GPIO UNCLAIMED)
pin 241 (gpio7-25): (MUX UNCLAIMED) (GPIO UNCLAIMED)
pin 242 (gpio7-26): (MUX UNCLAIMED) (GPIO UNCLAIMED)
pin 243 (gpio7-27): (MUX UNCLAIMED) (GPIO UNCLAIMED)
pin 244 (gpio7-28): (MUX UNCLAIMED) (GPIO UNCLAIMED)
pin 245 (gpio7-29): (MUX UNCLAIMED) (GPIO UNCLAIMED)
pin 246 (gpio7-30): (MUX UNCLAIMED) (GPIO UNCLAIMED)
pin 247 (gpio7-31): (MUX UNCLAIMED) (GPIO UNCLAIMED)
pin 248 (gpio8-0): (MUX UNCLAIMED) gpio8:248
pin 249 (gpio8-1): (MUX UNCLAIMED) gpio8:249
pin 250 (gpio8-2): (MUX UNCLAIMED) gpio8:250
pin 251 (gpio8-3): (MUX UNCLAIMED) gpio8:251
pin 252 (gpio8-4): ff140000.i2c (GPIO UNCLAIMED) function i2c1 group i2c1-xfer
pin 253 (gpio8-5): ff140000.i2c (GPIO UNCLAIMED) function i2c1 group i2c1-xfer
pin 254 (gpio8-6): (MUX UNCLAIMED) (GPIO UNCLAIMED)
pin 255 (gpio8-7): (MUX UNCLAIMED) (GPIO UNCLAIMED)
pin 256 (gpio8-8): (MUX UNCLAIMED) (GPIO UNCLAIMED)
pin 257 (gpio8-9): (MUX UNCLAIMED) gpio8:257
pin 258 (gpio8-10): (MUX UNCLAIMED) (GPIO UNCLAIMED)
pin 259 (gpio8-11): (MUX UNCLAIMED) (GPIO UNCLAIMED)
pin 260 (gpio8-12): (MUX UNCLAIMED) (GPIO UNCLAIMED)
pin 261 (gpio8-13): (MUX UNCLAIMED) (GPIO UNCLAIMED)
pin 262 (gpio8-14): (MUX UNCLAIMED) (GPIO UNCLAIMED)
pin 263 (gpio8-15): (MUX UNCLAIMED) (GPIO UNCLAIMED)
 
cat /sys/kernel/debug/pinctrl/pinctrl/pinconf-pins
Pin config settings per pin
Format: pin (name): configs
pin 0 (gpio0-0): input bias pull down output drive strength (8 mA) pin output (0 level)
pin 1 (gpio0-1): input bias pull down output drive strength (8 mA) pin output (1 level)
pin 2 (gpio0-2): input bias pull up output drive strength (4 mA) pin output (0 level)
pin 3 (gpio0-3): input bias pull up output drive strength (4 mA) pin output (1 level)
pin 4 (gpio0-4): input bias pull up output drive strength (4 mA) pin output (1 level)
pin 5 (gpio0-5): input bias pull up output drive strength (4 mA) pin output (1 level)
pin 6 (gpio0-6): input bias disabled output drive strength (4 mA) pin output (0 level)
pin 7 (gpio0-7): input bias pull up output drive strength (4 mA) pin output (1 level)
pin 8 (gpio0-8): input bias pull up output drive strength (4 mA) pin output (1 level)
pin 9 (gpio0-9): input bias pull up output drive strength (4 mA) pin output (1 level)
pin 10 (gpio0-10): input bias disabled output drive strength (4 mA) pin output (0 level)
pin 11 (gpio0-11): input bias pull down output drive strength (4 mA) pin output (0 level)
pin 12 (gpio0-12): input bias pull down output drive strength (4 mA) pin output (1 level)
pin 13 (gpio0-13): input bias pull down output drive strength (4 mA) pin output (0 level)
pin 14 (gpio0-14): input bias disabled output drive strength (4 mA) pin output (1 level)
pin 15 (gpio0-15): input bias disabled output drive strength (4 mA)
pin 16 (gpio0-16): input bias disabled output drive strength (4 mA)
pin 17 (gpio0-17): input bias pull down output drive strength (4 mA) pin output (1 level)
pin 18 (gpio0-18): input bias pull up output drive strength (4 mA) pin output (0 level)
pin 19 (gpio0-19): input bias disabled output drive strength (2 mA) pin output (0 level)
pin 20 (gpio0-20): input bias disabled output drive strength (2 mA) pin output (0 level)
pin 21 (gpio0-21): input bias disabled output drive strength (2 mA) pin output (0 level)
pin 22 (gpio0-22): input bias disabled output drive strength (2 mA) pin output (0 level)
pin 23 (gpio0-23): input bias disabled output drive strength (2 mA) pin output (0 level)
pin 24 (gpio1-0): input bias pull down output drive strength (4 mA)
pin 25 (gpio1-1): input bias pull down output drive strength (4 mA)
pin 26 (gpio1-2): input bias pull down output drive strength (4 mA)
pin 27 (gpio1-3): input bias pull down output drive strength (4 mA)
pin 28 (gpio1-4): input bias pull down output drive strength (4 mA)
pin 29 (gpio1-5): input bias pull down output drive strength (4 mA)
pin 30 (gpio1-6): input bias pull down output drive strength (4 mA)
pin 31 (gpio1-7): input bias pull down output drive strength (4 mA)
pin 32 (gpio1-8): input bias pull down output drive strength (4 mA)
pin 33 (gpio1-9): input bias pull down output drive strength (4 mA)
pin 34 (gpio1-10): input bias pull down output drive strength (4 mA)
pin 35 (gpio1-11): input bias pull down output drive strength (4 mA)
pin 36 (gpio1-12): input bias pull down output drive strength (4 mA)
pin 37 (gpio1-13): input bias pull down output drive strength (4 mA)
pin 38 (gpio1-14): input bias pull down output drive strength (4 mA)
pin 39 (gpio1-15): input bias pull down output drive strength (4 mA)
pin 40 (gpio1-16): input bias pull down output drive strength (4 mA)
pin 41 (gpio1-17): input bias pull down output drive strength (4 mA)
pin 42 (gpio1-18): input bias pull down output drive strength (4 mA)
pin 43 (gpio1-19): input bias pull down output drive strength (4 mA)
pin 44 (gpio1-20): input bias pull down output drive strength (4 mA)
pin 45 (gpio1-21): input bias pull down output drive strength (4 mA)
pin 46 (gpio1-22): input bias pull down output drive strength (4 mA)
pin 47 (gpio1-23): input bias pull down output drive strength (4 mA)
pin 48 (gpio1-24): input bias pull down output drive strength (8 mA) pin output (0 level)
pin 49 (gpio1-25): input bias pull down output drive strength (8 mA) pin output (0 level)
pin 50 (gpio1-26): input bias pull down output drive strength (8 mA) pin output (0 level)
pin 51 (gpio1-27): input bias pull down output drive strength (8 mA) pin output (0 level)
pin 52 (gpio1-28): input bias pull down output drive strength (4 mA) pin output (0 level)
pin 53 (gpio1-29): input bias pull down output drive strength (4 mA) pin output (0 level)
pin 54 (gpio1-30): input bias pull down output drive strength (4 mA) pin output (0 level)
pin 55 (gpio1-31): input bias pull down output drive strength (4 mA) pin output (0 level)
pin 56 (gpio2-0): input bias pull down output drive strength (8 mA) pin output (0 level)
pin 57 (gpio2-1): input bias pull down output drive strength (8 mA) pin output (0 level)
pin 58 (gpio2-2): input bias pull down output drive strength (8 mA) pin output (0 level)
pin 59 (gpio2-3): input bias pull down output drive strength (8 mA) pin output (0 level)
pin 60 (gpio2-4): input bias pull down output drive strength (8 mA) pin output (0 level)
pin 61 (gpio2-5): input bias pull down output drive strength (8 mA) pin output (0 level)
pin 62 (gpio2-6): input bias pull down output drive strength (8 mA) pin output (0 level)
pin 63 (gpio2-7): input bias pull down output drive strength (8 mA) pin output (0 level)
pin 64 (gpio2-8): input bias pull down output drive strength (8 mA) pin output (0 level)
pin 65 (gpio2-9): input bias pull down output drive strength (8 mA) pin output (0 level)
pin 66 (gpio2-10): input bias pull down output drive strength (8 mA) pin output (0 level)
pin 67 (gpio2-11): input bias disabled output drive strength (8 mA)
pin 68 (gpio2-12): input bias pull down output drive strength (8 mA) pin output (0 level)
pin 69 (gpio2-13): input bias pull down output drive strength (8 mA) pin output (0 level)
pin 70 (gpio2-14): input bias pull down output drive strength (8 mA) pin output (0 level)
pin 71 (gpio2-15): input bias pull down output drive strength (8 mA) pin output (0 level)
pin 72 (gpio2-16): input bias disabled output drive strength (4 mA)
pin 73 (gpio2-17): input bias disabled output drive strength (4 mA)
pin 74 (gpio2-18): input bias pull down output drive strength (4 mA) pin output (0 level)
pin 75 (gpio2-19): input bias pull down output drive strength (4 mA) pin output (0 level)
pin 76 (gpio2-20): input bias pull down output drive strength (4 mA) pin output (0 level)
pin 77 (gpio2-21): input bias pull down output drive strength (4 mA) pin output (0 level)
pin 78 (gpio2-22): input bias pull down output drive strength (4 mA) pin output (0 level)
pin 79 (gpio2-23): input bias pull down output drive strength (4 mA) pin output (0 level)
pin 80 (gpio2-24): input bias pull down output drive strength (4 mA)
pin 81 (gpio2-25): input bias pull down output drive strength (4 mA)
pin 82 (gpio2-26): input bias pull down output drive strength (4 mA)
pin 83 (gpio2-27): input bias pull down output drive strength (4 mA)
pin 84 (gpio2-28): input bias pull down output drive strength (4 mA)
pin 85 (gpio2-29): input bias pull down output drive strength (4 mA)
pin 86 (gpio2-30): input bias pull down output drive strength (4 mA)
pin 87 (gpio2-31): input bias pull down output drive strength (4 mA)
pin 88 (gpio3-0): input bias pull up output drive strength (8 mA)
pin 89 (gpio3-1): input bias pull up output drive strength (8 mA)
pin 90 (gpio3-2): input bias pull up output drive strength (8 mA)
pin 91 (gpio3-3): input bias pull up output drive strength (8 mA)
pin 92 (gpio3-4): input bias pull up output drive strength (8 mA)
pin 93 (gpio3-5): input bias pull up output drive strength (8 mA)
pin 94 (gpio3-6): input bias pull up output drive strength (8 mA)
pin 95 (gpio3-7): input bias pull up output drive strength (8 mA)
pin 96 (gpio3-8): input bias pull up output drive strength (4 mA)
pin 97 (gpio3-9): input bias pull up output drive strength (4 mA)
pin 98 (gpio3-10): input bias pull up output drive strength (4 mA)
pin 99 (gpio3-11): input bias pull down output drive strength (4 mA)
pin 100 (gpio3-12): input bias pull down output drive strength (4 mA)
pin 101 (gpio3-13): input bias pull up output drive strength (8 mA)
pin 102 (gpio3-14): input bias pull up output drive strength (4 mA)
pin 103 (gpio3-15): input bias pull up output drive strength (4 mA)
pin 104 (gpio3-16): input bias pull up output drive strength (4 mA)
pin 105 (gpio3-17): input bias pull up output drive strength (4 mA)
pin 106 (gpio3-18): input bias disabled output drive strength (8 mA)
pin 107 (gpio3-19): input bias pull down output drive strength (4 mA) pin output (0 level)
pin 108 (gpio3-20): input bias pull down output drive strength (4 mA) pin output (0 level)
pin 109 (gpio3-21): input bias pull down output drive strength (4 mA) pin output (0 level)
pin 110 (gpio3-22): input bias pull down output drive strength (4 mA) pin output (0 level)
pin 111 (gpio3-23): input bias pull down output drive strength (4 mA) pin output (0 level)
pin 112 (gpio3-24): input bias disabled output drive strength (12 mA)
pin 113 (gpio3-25): input bias disabled output drive strength (12 mA)
pin 114 (gpio3-26): input bias disabled output drive strength (8 mA)
pin 115 (gpio3-27): input bias disabled output drive strength (8 mA)
pin 116 (gpio3-28): input bias disabled output drive strength (12 mA)
pin 117 (gpio3-29): input bias disabled output drive strength (12 mA)
pin 118 (gpio3-30): input bias disabled output drive strength (8 mA)
pin 119 (gpio3-31): input bias disabled output drive strength (8 mA)
pin 120 (gpio4-0): input bias disabled output drive strength (4 mA)
pin 121 (gpio4-1): input bias disabled output drive strength (4 mA)
pin 122 (gpio4-2): input bias pull up output drive strength (4 mA)
pin 123 (gpio4-3): input bias disabled output drive strength (4 mA)
pin 124 (gpio4-4): input bias disabled output drive strength (12 mA)
pin 125 (gpio4-5): input bias disabled output drive strength (8 mA)
pin 126 (gpio4-6): input bias disabled output drive strength (4 mA)
pin 127 (gpio4-7): input bias pull up output drive strength (4 mA) pin output (1 level)
pin 128 (gpio4-8): input bias pull up output drive strength (8 mA)
pin 129 (gpio4-9): input bias disabled output drive strength (12 mA)
pin 130 (gpio4-10): input bias pull down output drive strength (4 mA) pin output (0 level)
pin 131 (gpio4-11): input bias pull down output drive strength (4 mA) pin output (0 level)
pin 132 (gpio4-12): input bias pull down output drive strength (4 mA) pin output (0 level)
pin 133 (gpio4-13): input bias pull down output drive strength (4 mA) pin output (0 level)
pin 134 (gpio4-14): input bias pull down output drive strength (4 mA) pin output (0 level)
pin 135 (gpio4-15): input bias pull down output drive strength (4 mA) pin output (0 level)
pin 136 (gpio4-16): input bias pull up output drive strength (4 mA)
pin 137 (gpio4-17): input bias disabled output drive strength (4 mA)
pin 138 (gpio4-18): input bias pull up output drive strength (4 mA)
pin 139 (gpio4-19): input bias disabled output drive strength (4 mA)
pin 140 (gpio4-20): input bias pull up output drive strength (4 mA)
pin 141 (gpio4-21): input bias pull up output drive strength (4 mA)
pin 142 (gpio4-22): input bias pull up output drive strength (4 mA)
pin 143 (gpio4-23): input bias pull up output drive strength (4 mA)
pin 144 (gpio4-24): input bias pull up output drive strength (4 mA)
pin 145 (gpio4-25): input bias disabled output drive strength (4 mA)
pin 146 (gpio4-26): input bias pull up output drive strength (4 mA) pin output (1 level)
pin 147 (gpio4-27): input bias pull down output drive strength (4 mA) pin output (0 level)
pin 148 (gpio4-28): input bias pull down output drive strength (4 mA) pin output (1 level)
pin 149 (gpio4-29): input bias pull down output drive strength (4 mA) pin output (1 level)
pin 150 (gpio4-30): input bias pull up output drive strength (4 mA) pin output (0 level)
pin 151 (gpio4-31): input bias pull up output drive strength (4 mA) pin output (1 level)
pin 152 (gpio5-0): input bias pull down output drive strength (4 mA)
pin 153 (gpio5-1): input bias pull down output drive strength (4 mA)
pin 154 (gpio5-2): input bias pull down output drive strength (4 mA)
pin 155 (gpio5-3): input bias pull down output drive strength (4 mA)
pin 156 (gpio5-4): input bias pull down output drive strength (4 mA)
pin 157 (gpio5-5): input bias pull down output drive strength (4 mA)
pin 158 (gpio5-6): input bias pull down output drive strength (4 mA)
pin 159 (gpio5-7): input bias pull down output drive strength (4 mA)
pin 160 (gpio5-8): input bias pull up output drive strength (4 mA)
pin 161 (gpio5-9): input bias disabled output drive strength (4 mA)
pin 162 (gpio5-10): input bias pull up output drive strength (4 mA) pin output (1 level)
pin 163 (gpio5-11): input bias pull up output drive strength (4 mA) pin output (1 level)
pin 164 (gpio5-12): input bias pull up output drive strength (4 mA)
pin 165 (gpio5-13): input bias pull up output drive strength (4 mA) pin output (0 level)
pin 166 (gpio5-14): input bias disabled output drive strength (4 mA)
pin 167 (gpio5-15): input bias pull up output drive strength (4 mA)
pin 168 (gpio5-16): input bias pull up output drive strength (4 mA) pin output (1 level)
pin 169 (gpio5-17): input bias pull down output drive strength (4 mA) pin output (0 level)
pin 170 (gpio5-18): input bias pull down output drive strength (4 mA) pin output (0 level)
pin 171 (gpio5-19): input bias pull down output drive strength (4 mA) pin output (0 level)
pin 172 (gpio5-20): input bias pull down output drive strength (4 mA) pin output (0 level)
pin 173 (gpio5-21): input bias pull down output drive strength (4 mA) pin output (0 level)
pin 174 (gpio5-22): input bias pull down output drive strength (4 mA) pin output (0 level)
pin 175 (gpio5-23): input bias pull down output drive strength (4 mA) pin output (0 level)
pin 176 (gpio5-24): input bias pull down output drive strength (4 mA)
pin 177 (gpio5-25): input bias pull down output drive strength (4 mA)
pin 178 (gpio5-26): input bias pull down output drive strength (4 mA)
pin 179 (gpio5-27): input bias pull down output drive strength (4 mA)
pin 180 (gpio5-28): input bias pull down output drive strength (4 mA)
pin 181 (gpio5-29): input bias pull down output drive strength (4 mA)
pin 182 (gpio5-30): input bias pull down output drive strength (4 mA)
pin 183 (gpio5-31): input bias pull down output drive strength (4 mA)
pin 184 (gpio6-0): input bias disabled output drive strength (4 mA)
pin 185 (gpio6-1): input bias disabled output drive strength (4 mA)
pin 186 (gpio6-2): input bias disabled output drive strength (4 mA)
pin 187 (gpio6-3): input bias disabled output drive strength (4 mA)
pin 188 (gpio6-4): input bias disabled output drive strength (4 mA)
pin 189 (gpio6-5): input bias pull down output drive strength (4 mA) pin output (0 level)
pin 190 (gpio6-6): input bias pull down output drive strength (4 mA) pin output (0 level)
pin 191 (gpio6-7): input bias pull down output drive strength (4 mA) pin output (0 level)
pin 192 (gpio6-8): input bias disabled output drive strength (4 mA)
pin 193 (gpio6-9): input bias disabled output drive strength (4 mA)
pin 194 (gpio6-10): input bias disabled output drive strength (4 mA)
pin 195 (gpio6-11): input bias pull down output drive strength (4 mA) pin output (0 level)
pin 196 (gpio6-12): input bias pull down output drive strength (4 mA) pin output (0 level)
pin 197 (gpio6-13): input bias pull down output drive strength (4 mA) pin output (0 level)
pin 198 (gpio6-14): input bias pull down output drive strength (4 mA) pin output (0 level)
pin 199 (gpio6-15): input bias pull down output drive strength (4 mA) pin output (0 level)
pin 200 (gpio6-16): input bias pull up output drive strength (8 mA)
pin 201 (gpio6-17): input bias pull up output drive strength (8 mA)
pin 202 (gpio6-18): input bias pull up output drive strength (8 mA)
pin 203 (gpio6-19): input bias pull up output drive strength (8 mA)
pin 204 (gpio6-20): input bias pull down output drive strength (8 mA)
pin 205 (gpio6-21): input bias pull up output drive strength (8 mA)
pin 206 (gpio6-22): input bias pull up output drive strength (4 mA)
pin 207 (gpio6-23): input bias pull up output drive strength (4 mA)
pin 208 (gpio6-24): input bias pull down output drive strength (4 mA)
pin 209 (gpio6-25): input bias pull down output drive strength (4 mA)
pin 210 (gpio6-26): input bias pull down output drive strength (4 mA)
pin 211 (gpio6-27): input bias pull down output drive strength (4 mA)
pin 212 (gpio6-28): input bias pull down output drive strength (4 mA)
pin 213 (gpio6-29): input bias pull down output drive strength (4 mA)
pin 214 (gpio6-30): input bias pull down output drive strength (4 mA)
pin 215 (gpio6-31): input bias pull down output drive strength (4 mA)
pin 216 (gpio7-0): input bias disabled output drive strength (4 mA)
pin 217 (gpio7-1): input bias pull down output drive strength (4 mA) pin output (0 level)
pin 218 (gpio7-2): input bias disabled output drive strength (4 mA) pin output (0 level)
pin 219 (gpio7-3): input bias disabled output drive strength (4 mA) pin output (0 level)
pin 220 (gpio7-4): input bias pull up output drive strength (4 mA) pin output (1 level)
pin 221 (gpio7-5): input bias pull down output drive strength (4 mA) pin output (0 level)
pin 222 (gpio7-6): input bias pull up output drive strength (4 mA) pin output (1 level)
pin 223 (gpio7-7): input bias pull up output drive strength (4 mA)
pin 224 (gpio7-8): input bias disabled output drive strength (4 mA)
pin 225 (gpio7-9): input bias disabled output drive strength (4 mA) pin output (0 level)
pin 226 (gpio7-10): input bias pull up output drive strength (4 mA) pin output (1 level)
pin 227 (gpio7-11): input bias disabled output drive strength (4 mA) pin output (1 level)
pin 228 (gpio7-12): input bias pull down output drive strength (4 mA) pin output (1 level)
pin 229 (gpio7-13): input bias pull up output drive strength (4 mA) pin output (0 level)
pin 230 (gpio7-14): input bias pull down output drive strength (4 mA) pin output (1 level)
pin 231 (gpio7-15): input bias pull down output drive strength (4 mA) pin output (0 level)
pin 232 (gpio7-16): input bias pull up output drive strength (4 mA) pin output (1 level)
pin 233 (gpio7-17): input bias disabled output drive strength (4 mA)
pin 234 (gpio7-18): input bias disabled output drive strength (4 mA)
pin 235 (gpio7-19): input bias pull up output drive strength (4 mA) pin output (1 level)
pin 236 (gpio7-20): input bias pull up output drive strength (4 mA) pin output (1 level)
pin 237 (gpio7-21): input bias pull down output drive strength (4 mA) pin output (1 level)
pin 238 (gpio7-22): input bias pull up output drive strength (4 mA)
pin 239 (gpio7-23): input bias disabled output drive strength (4 mA)
pin 240 (gpio7-24): input bias pull down output drive strength (4 mA)
pin 241 (gpio7-25): input bias pull down output drive strength (4 mA)
pin 242 (gpio7-26): input bias pull down output drive strength (4 mA)
pin 243 (gpio7-27): input bias pull down output drive strength (4 mA)
pin 244 (gpio7-28): input bias pull down output drive strength (4 mA)
pin 245 (gpio7-29): input bias pull down output drive strength (4 mA)
pin 246 (gpio7-30): input bias pull down output drive strength (4 mA)
pin 247 (gpio7-31): input bias pull down output drive strength (4 mA)
pin 248 (gpio8-0): input bias disabled output drive strength (4 mA) pin output (0 level)
pin 249 (gpio8-1): input bias pull up output drive strength (4 mA) pin output (1 level)
pin 250 (gpio8-2): input bias pull up output drive strength (4 mA) pin output (1 level)
pin 251 (gpio8-3): input bias pull up output drive strength (4 mA) pin output (0 level)
pin 252 (gpio8-4): input bias disabled output drive strength (4 mA)
pin 253 (gpio8-5): input bias disabled output drive strength (4 mA)
pin 254 (gpio8-6): input bias pull down output drive strength (4 mA) pin output (0 level)
pin 255 (gpio8-7): input bias pull up output drive strength (4 mA) pin output (1 level)
pin 256 (gpio8-8): input bias pull down output drive strength (4 mA) pin output (0 level)
pin 257 (gpio8-9): input bias pull down output drive strength (4 mA) pin output (1 level)
pin 258 (gpio8-10): input bias pull down output drive strength (4 mA) pin output (0 level)
pin 259 (gpio8-11): input bias pull down output drive strength (4 mA) pin output (0 level)
pin 260 (gpio8-12): input bias pull down output drive strength (4 mA) pin output (0 level)
pin 261 (gpio8-13): input bias pull down output drive strength (4 mA) pin output (0 level)
pin 262 (gpio8-14): input bias pull down output drive strength (4 mA) pin output (0 level)
pin 263 (gpio8-15): input bias pull down output drive strength (4 mA) pin output (0 level)
 
I know this is Late. I was looking for some information on this board also and found a spec sheet.
I converted it from Chinese to English see attached. The Original can be found at Iot-3288x Spec Sheet.

Hope this helps.
 

Attachments

  • Iot-3288x v1-2 Spec sheet - English.pdf
    2.9 MB · Views: 993

Members online


Latest posts

Top