yes true, we have AP6330 chip.
>
> Your device tree is missing that. Typically we specify that clock
> in the pwrseq node. See the bindings for that. The source would depend
> on your board design.
Yes, I've tried few already with using exiting binding from
sun50i-a64.dtsi and specifying explicitly like these
wifi_pwrseq: wifi_pwrseq {
compatible = "mmc-pwrseq-simple";
reset-gpios = <&r_pio 0 2 GPIO_ACTIVE_LOW>; /* WL-PMU-EN: PL2 */
clocks = <&osc32k>;
clock-names = "xin32k";
};
And
wifi_osc32k: wifi-osc32k {
#clock-cells = <0>;
compatible = "fixed-clock";
clock-frequency = <32768>;
};
wifi_pwrseq: wifi_pwrseq {
compatible = "mmc-pwrseq-simple";
reset-gpios = <&r_pio 0 2 GPIO_ACTIVE_LOW>; /* WL-PMU-EN: PL2 */
clocks = <&wifi_osc32k>;
clock-names = "xin32k";
};
Jagan.