Linux Audio

Check our new training course

Yocto / OpenEmbedded training

Feb 10-13, 2025
Register
Loading...
Note: File does not exist in v6.2.
 1// SPDX-License-Identifier: GPL-2.0-only
 2
 3&msmgpio {
 4	i2c3_default_state: i2c3-default-state {
 5		i2c3-pins {
 6			pins = "gpio16", "gpio17";
 7			function = "gsbi3";
 8			drive-strength = <8>;
 9			bias-disable;
10		};
11	};
12
13	i2c3_sleep_state: i2c3-sleep-state {
14		i2c3-pins {
15			pins = "gpio16", "gpio17";
16			function = "gpio";
17			drive-strength = <2>;
18			bias-bus-hold;
19		};
20	};
21};