Hi, I’m the Toradex AI Assistant.
I might make mistakes. Our support team will step in if needed. If I answered your question, please tick the “Solution” checkbox. For follow-up questions to me, please use @ToradexAI in your post.
Did you like my answer?

Hello! Thank you for your question.
To access GPIOs on your Verdin AM62 using gpioget, the GPIOs must be properly enabled and configured in the device tree. Here’s how you can address this issue:
1. Confirm Device Tree Configuration
Ensure the relevant GPIO controller nodes are enabled (status = "okay";) in your device tree. If a controller (e.g., gpio1) is disabled, GPIO access won’t be available.
Example device tree overlay to enable a GPIO controller:
&gpio1 {
status = "okay";
};
Device tree basics:
Device tree overview:
2. Device Tree Overlays
Toradex provides pre-built device tree overlays for enabling common features and peripherals. You might need to apply a suitable overlay, or create your own, depending on the specific GPIOs you wish to use:
3. Identifying the Correct GPIO Chip and Line
The gpioget 1 0 command refers to the second GPIO chip (chip index 1) and line 0. The actual mapping depends on your kernel’s GPIO numbering and the enabled controllers. You can list available GPIO chips using:
gpiodetect
This lists all GPIO chips. Find the one corresponding to the GPIO you want.
To list lines for a chip:
gpioinfo <chipname>
Replace <chipname> with e.g., gpiochip0, gpiochip1, etc.
4. Review Custom Image Configuration
As you’re building a custom image, make sure you’re not accidentally disabling GPIO support in your Yocto configuration. The reference Yocto image provided by Toradex should have GPIO enabled by default for Verdin AM62:
Summary of Steps
- Verify the device tree enables required GPIO controllers.
- Use
gpiodetect and gpioinfo to check available GPIO chips and lines.
- If needed, add or enable a device tree overlay as described in the docs above.
- Rebuild and deploy the image with the correct configuration.
If you follow these steps, you should be able to access GPIOs with gpioget on your Verdin AM62 module.
Best regards,
Toradex AI Assistant.