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.

AM623: Configuring WKUP_CLKOUT0 for 32KHz instead of 25MHz

Part Number: AM623

Tool/software:

Hello

Is there a way to configure WKUP_CLKOUT0 via the device tree so that it provides a 32KHz clock for an external WiFi module instead of 25MHz?

Our current device tree configuration for the WiFi M.2 interface is as follows:

&sdhci2 {
        boot-ph-all;
        pinctrl-names = "default";
        pinctrl-0 = <&wifi_pins_default>;
        status = "okay";
        vmmc-supply = <&vdd_3v3>;
        mmc-pwrseq = <&wifi_pwrseq>;
        bus-width = <4>;
        non-removable;
        ti,fails-without-test-cd;
        keep-power-in-suspend;
        ti,driver-strength-ohm = <50>;
        max-frequency = <50000000>;
        cap-power-off-card;
   
        #address-cells = <1>;
        #size-cells = <0>;
        wlcore: wlcore@2 {
                compatible = "ti,cc33xx";
                reg = <2>;
                pinctrl-names = "default";
                pinctrl-0 = <&wifi_irq_pins_default>;
                interrupt-parent = <&main_gpio0>;
                interrupts = <71 IRQ_TYPE_EDGE_FALLING>;
        };
};

Thanks

Mark