summaryrefslogtreecommitdiff
path: root/zephyr/projects/nissa/xivu/cbi.dts
diff options
context:
space:
mode:
authorAndrew McRae <amcrae@google.com>2022-10-25 13:49:07 +1100
committerChromeos LUCI <chromeos-scoped@luci-project-accounts.iam.gserviceaccount.com>2022-10-25 04:18:00 +0000
commitbc10b9f6aeba7a7279a43b21dedb8620ca1fdd27 (patch)
treea90d1743d2c36b8471648bc42f3a31aa9e2aeccd /zephyr/projects/nissa/xivu/cbi.dts
parent4d14f323795068c09eb41a30992a6d9af68ca265 (diff)
downloadchrome-ec-bc10b9f6aeba7a7279a43b21dedb8620ca1fdd27.tar.gz
nissa: Align DTS files to EC Zephyr structure
Align the DTS files to the proposed EC Zephyr file structure BUG=b:254097912 TEST=zmake compare-builds {all} BRANCH=none Signed-off-by: Andrew McRae <amcrae@google.com> Change-Id: I5c5f78b4421bf8a676f01786461606fe33850837 Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/3977032 Reviewed-by: Peter Marheine <pmarheine@chromium.org>
Diffstat (limited to 'zephyr/projects/nissa/xivu/cbi.dts')
-rw-r--r--zephyr/projects/nissa/xivu/cbi.dts77
1 files changed, 0 insertions, 77 deletions
diff --git a/zephyr/projects/nissa/xivu/cbi.dts b/zephyr/projects/nissa/xivu/cbi.dts
deleted file mode 100644
index 4149ea291c..0000000000
--- a/zephyr/projects/nissa/xivu/cbi.dts
+++ /dev/null
@@ -1,77 +0,0 @@
-/* Copyright 2022 The ChromiumOS Authors
- * Use of this source code is governed by a BSD-style license that can be
- * found in the LICENSE file.
- */
-
-/ {
- /* Xivu-specific fw_config fields. */
- nissa-fw-config {
- /*
- * FW_CONFIG field to enable WFC or not.
- */
- wfc {
- enum-name = "FW_WFC";
- start = <0>;
- size = <1>;
-
- wfc-mipi {
- compatible = "cros-ec,cbi-fw-config-value";
- enum-name = "FW_WFC_MIPI";
- value = <0>;
- };
- wfc-absent {
- compatible = "cros-ec,cbi-fw-config-value";
- enum-name = "FW_WFC_ABSENT";
- value = <1>;
- };
- };
-
- /*
- * FW_CONFIG field to enable stylus or not.
- */
- stylus {
- enum-name = "FW_STYLUS";
- start = <1>;
- size = <1>;
-
- stylus-present {
- compatible = "cros-ec,cbi-fw-config-value";
- enum-name = "FW_STYLUS_PRESENT";
- value = <0>;
- };
- stylus-absent {
- compatible = "cros-ec,cbi-fw-config-value";
- enum-name = "FW_STYLUS_ABSENT";
- value = <1>;
- };
- };
- /*
- * FW_CONFIG field to indicate which sub-board
- * is attached.
- */
- sub-board {
- enum-name = "FW_SUB_BOARD";
- start = <2>;
- size = <2>;
-
- sub-board-1 {
- compatible = "cros-ec,cbi-fw-config-value";
- enum-name = "FW_SUB_BOARD_1";
- value = <0>;
- };
- sub-board-2 {
- compatible = "cros-ec,cbi-fw-config-value";
- enum-name = "FW_SUB_BOARD_2";
- value = <1>;
- };
- sub-board-3 {
- compatible = "cros-ec,cbi-fw-config-value";
- enum-name = "FW_SUB_BOARD_3";
- value = <2>;
- };
- };
-
-/delete-node/ fan;
- };
-
-};