Tool/software: Linux
Hi,
i set gpio output, high level on the uboot, and i test it is high on the uboot, but run to the kernel ,the gpio is low, where init the kernel.
the uboot set:
Regards,
Cesar
This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
Hi Cesar,
The same can be achieved by adding below two properties to gpio<x> node in Kernel dts. This is better than modifying the hwmod file directly.
Example below for gpio7:
&gpio7 {
ti,no-reset-on-init;
ti,no-idle-on-init;
};
Regards,
Vishal