Hi,
I'm trying to configure this gpio LSIO_GPIO1_IO07 through the custom dts file as shown below,
pinctrl_buzzer: buzzer {
fsl,pins = <
SC_P_SPI0_CS1_LSIO_GPIO1_IO07 0x26000000
>;
};
and node
buzzer_control {
compatible = "CEP-1110 buzzer";
status = "okay";
pinctrl-names = "default";
pinctrl-0 = <&pinctrl_buzzer>;
En-gpios = <&gpio1 7 GPIO_ACTIVE_HIGH>;
};
When probed the pin, the voltage is low. I'm not able to figure out what is wrong. Any suggestion would be helpful.