diff --git a/dts/bindings/wifi/nordic,nrf70.yaml b/dts/bindings/wifi/nordic,nrf70.yaml index abdc7ec2cb0..eacec39eefc 100644 --- a/dts/bindings/wifi/nordic,nrf70.yaml +++ b/dts/bindings/wifi/nordic,nrf70.yaml @@ -22,3 +22,10 @@ properties: description: | GPIO of the RF Switch to control SR RF output to either SR Antenna or shared Antenna with Wi-Fi + + iovdd-power-up-delay-ms: + type: int + default: 1 + description: | + Duration to wait after enabling IOVDD before attempting communications. + Default value of 1 comes from the nRF7002 DK/EK switch (TCK106AG): ~600us diff --git a/modules/nrf_wifi/bus/rpu_hw_if.c b/modules/nrf_wifi/bus/rpu_hw_if.c index 8b9393f6f2e..5dd71a86de2 100644 --- a/modules/nrf_wifi/bus/rpu_hw_if.c +++ b/modules/nrf_wifi/bus/rpu_hw_if.c @@ -239,8 +239,8 @@ static int rpu_pwron(void) gpio_pin_set_dt(&bucken_spec, 0); return ret; } - /* Settling time for iovdd nRF7002 DK/EK - switch (TCK106AG): ~600us */ - k_msleep(1); + /* Settling time for IOVDD */ + k_msleep(DT_PROP(NRF7002_NODE, iovdd_power_up_delay_ms)); if ((bucken_spec.port == iovdd_ctrl_spec.port) && (bucken_spec.pin == iovdd_ctrl_spec.pin)) {