summaryrefslogtreecommitdiff
path: root/zephyr/test/krabby/common.dts
diff options
context:
space:
mode:
Diffstat (limited to 'zephyr/test/krabby/common.dts')
-rw-r--r--zephyr/test/krabby/common.dts71
1 files changed, 70 insertions, 1 deletions
diff --git a/zephyr/test/krabby/common.dts b/zephyr/test/krabby/common.dts
index b8f1eb0733..9e94392561 100644
--- a/zephyr/test/krabby/common.dts
+++ b/zephyr/test/krabby/common.dts
@@ -31,17 +31,34 @@
reg = <0>;
chg = <&charger>;
tcpc = <&tcpci_emul>;
+ ppc = <&ppc0_emul>;
+ usb-mux-chain-0 {
+ compatible = "cros-ec,usb-mux-chain";
+ usb-muxes = <&virtual_mux_0>;
+ };
+ };
+ port0-muxes {
+ virtual_mux_0: virtual-mux-0 {
+ compatible = "cros-ec,usbc-mux-virtual";
+ };
};
port1@1 {
compatible = "named-usbc-port";
status = "okay";
reg = <1>;
+ tcpc = <&tcpci_emul>;
+ ppc = <&ppc1_emul>;
usb-mux-chain-1 {
compatible = "cros-ec,usb-mux-chain";
usb-muxes = <&tusb1064_mux_1>;
};
};
+ port1-muxes {
+ virtual_mux_1: virtual-mux-1 {
+ compatible = "cros-ec,usbc-mux-virtual";
+ };
+ };
};
batteries {
@@ -49,6 +66,33 @@
compatible = "lgc,ac17a8m", "battery-smart";
};
};
+
+ named-adc-channels {
+ compatible = "named-adc-channels";
+
+ adc_vbus_c0 {
+ enum-name = "ADC_VBUS_C0";
+ io-channels = <&adc0 0>;
+ mul = <10>;
+ };
+ adc_board_id0 {
+ enum-name = "ADC_BOARD_ID_0";
+ io-channels = <&adc0 1>;
+ };
+ adc_board_id1 {
+ enum-name = "ADC_BOARD_ID_1";
+ io-channels = <&adc0 2>;
+ };
+ adc_vbus_c1 {
+ enum-name = "ADC_VBUS_C1";
+ io-channels = <&adc0 7>;
+ mul = <10>;
+ };
+ adc_charger: charger {
+ enum-name = "ADC_TEMP_SENSOR_CHARGER";
+ io-channels = <&adc0 5>;
+ };
+ };
};
&i2c_ctrl0 {
@@ -61,7 +105,7 @@
};
battery: sb@b {
- compatible = "zephyr,smart-battery";
+ compatible = "zephyr,smart-battery-emul";
reg = <0xb>;
cycle-count = <99>;
version = "BATTERY_SPEC_VER_1_1_WITH_PEC";
@@ -77,6 +121,31 @@
status = "okay";
reg = <0x82>;
};
+
+ ppc0_emul: syv682x@42 {
+ compatible = "zephyr,syv682x-emul";
+ status = "okay";
+ reg = <0x42>;
+ frs_en_gpio = <&gpio_ec_x_gpio1>;
+ alert_gpio = <&gpio_x_ec_gpio2>;
+ };
+
+ ppc1_emul: syv682x@43 {
+ compatible = "zephyr,syv682x-emul";
+ status = "okay";
+ reg = <0x43>;
+ /*
+ * the gpio pins are intentionally reused in both ppc emuls, to
+ * avoid handling different frs-en pin names on krabby and
+ * tentacruel.
+ */
+ frs_en_gpio = <&gpio_ec_x_gpio1>;
+ alert_gpio = <&gpio_x_ec_gpio2>;
+ };
+};
+
+&adc0 {
+ status = "okay";
};
&i2c_ctrl4 {