Skip to content

Commit 933a8c6

Browse files
scott-collyerChromeos LUCI
authored and
Chromeos LUCI
committed
rex: Enable KB8010 retimer driver
This CL enables the kb8010 retimer driver for the SKU-2 DB. Note that rework #11 is required for DP to function on SKU-2 DBs. BUG=b:267589112 TEST=verified on SKU-2 Rex device that USB3 devices enumerate in both polarities, and that DP is mode is working for CC1 polarity. LOW_COVERAGE_REASON=early-phase platform, b/247796816 Change-Id: I1cfa7a4a990d14f851ecce751a8500b4eebaad1c Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/4457871 Reviewed-by: caveh jalali <[email protected]> Commit-Queue: Scott Collyer <[email protected]> Tested-by: Scott Collyer <[email protected]>
1 parent 75e828c commit 933a8c6

File tree

4 files changed

+11
-1
lines changed

4 files changed

+11
-1
lines changed

zephyr/program/rex/rex.dtsi

+6
Original file line numberDiff line numberDiff line change
@@ -332,6 +332,12 @@
332332
frs_en_gpio = <&gpio_usb_c1_frs_en>;
333333
is-alt;
334334
};
335+
336+
usb_c1_kb8010_retimer: usb-c1-kb8010-retimer@8 {
337+
compatible = "kandou,kb8010";
338+
reg = <0x08>;
339+
reset-pin = <&gpio_usb_c1_rt_rst_r_odl>;
340+
};
335341
};
336342

337343
&i2c7_0 {

zephyr/program/rex/rex/src/usbc_config.c

+2
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,8 @@ __override bool board_is_tbt_usb4_port(int port)
5757
{
5858
if (port == USBC_PORT_C0)
5959
return true;
60+
if (port == USBC_PORT_C1 && usb_db_type != FW_USB_DB_USB3)
61+
return true;
6062

6163
return false;
6264
}

zephyr/program/rex/screebo/project.overlay

+1
Original file line numberDiff line numberDiff line change
@@ -188,6 +188,7 @@
188188
};
189189

190190
&i2c6_1 {
191+
/delete-node/ usb-c1-kb8010-retimer@8;
191192
/delete-node/ ktu1125@38;
192193
/delete-node/ ppc_syv@40;
193194

zephyr/program/rex/usbc.dtsi

+2-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,8 @@
4747
};
4848
usb_mux_chain_kb8010_port1: usb-mux-chain-1-kb8010 {
4949
compatible = "cros-ec,usb-mux-chain";
50-
usb-muxes = <&virtual_mux_c1>;
50+
usb-muxes = <&usb_c1_kb8010_retimer
51+
&virtual_mux_c1>;
5152
alternative-chain;
5253
};
5354
};

0 commit comments

Comments
 (0)