Hi TI team,
Good wishes to you. I'm currently working on the DSP + ARM L138/C674x development board using the below-mentioned SDK guide.
I want to configure a device tree to initialise some peripherals.
In the device tree, GPIOs are initialised by default. I want to set GPIO8_10 to low.
In the da850-lcdk.dts file, I have made the below changes:
&gpio {
status = "okay";
};
&gpio8 {
pinctrl-names = "default";
pinctrl-0 = <&gpio8_pins>;
status = "okay";
p10{
gpio-hog;
gpios = <10 GPIO_ACTIVE_LOW>;
output;
};
then I want to set pinmux also.
Please tell me how to set pinmux (pmx_core) in this dts file and how to mention those addresses, like,
&pmx_core {
status = "okay";
mcasp0_pins: pinmux_mcasp0_pins {
pinctrl-single,bits = <
/* AHCLKX AFSX ACLKX */
0x00 0x00101010 0x00f0f0f0
/* ARX13 ARX14 */
0x04 0x00000110 0x00000ff0
>;
};
And what are the changes I need to make?
Thanks in advance.
Regards,
Priyadharshini.