While migrating my project to use the new pinctrl mechanism in I ran into an issue where the I2C communication on some busses was not working. Further investigation revealed that I needed to add the `nordic,drive-mode = <NRF_DRIVE_S0D1>;` property to my pinctrl definitions for the relevant signals. This makes sense since the TWIM driver no longer forces any configuration of the pins, but this discovery made me wonder...
Why is the `nordic,drive-mode` not set to S0D1 for all of the I2C signals in the devkit pinctrl files like `nrf5340_cpuapp_common-pinctrl.dtsi`? Wouldn't any I2C pin really want/need to be configured for that drive mode?