summaryrefslogtreecommitdiff
path: root/board/felwinter/fw_config.h
diff options
context:
space:
mode:
Diffstat (limited to 'board/felwinter/fw_config.h')
-rw-r--r--board/felwinter/fw_config.h35
1 files changed, 13 insertions, 22 deletions
diff --git a/board/felwinter/fw_config.h b/board/felwinter/fw_config.h
index 5f5f956b61..2a8a175efd 100644
--- a/board/felwinter/fw_config.h
+++ b/board/felwinter/fw_config.h
@@ -1,4 +1,4 @@
-/* Copyright 2021 The Chromium OS Authors. All rights reserved.
+/* Copyright 2021 The ChromiumOS Authors
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
@@ -14,37 +14,28 @@
* Source of truth is the project/brya/felwinter/config.star configuration file.
*/
-enum ec_cfg_usb_db_type {
- DB_USB3_PS8815 = 1,
- DB_USB4_NCT3807 = 2
-};
+enum ec_cfg_usb_db_type { DB_USB3_PS8815 = 1, DB_USB4_NCT3807 = 2 };
enum ec_cfg_keyboard_backlight_type {
KEYBOARD_BACKLIGHT_DISABLED = 0,
KEYBOARD_BACKLIGHT_ENABLED = 1
};
-enum ec_cfg_usb_mb_type {
- MB_USB4_TBT = 0,
- MB_USB3_NON_TBT = 1
-};
+enum ec_cfg_usb_mb_type { MB_USB4_TBT = 0, MB_USB3_NON_TBT = 1 };
-enum ec_cfg_stylus_type {
- STYLUS_ABSENT = 0,
- STYLUS_PRSENT = 1
-};
+enum ec_cfg_stylus_type { STYLUS_ABSENT = 0, STYLUS_PRSENT = 1 };
union brya_cbi_fw_config {
struct {
- enum ec_cfg_usb_db_type usb_db : 3;
- uint32_t wifi : 2;
- enum ec_cfg_stylus_type stylus : 1;
- enum ec_cfg_keyboard_backlight_type kb_bl : 1;
- uint32_t audio : 3;
- uint32_t thermal : 2;
- uint32_t table_mode : 1;
- enum ec_cfg_usb_mb_type usb_mb : 3;
- uint32_t reserved_1 : 16;
+ enum ec_cfg_usb_db_type usb_db : 3;
+ uint32_t wifi : 2;
+ enum ec_cfg_stylus_type stylus : 1;
+ enum ec_cfg_keyboard_backlight_type kb_bl : 1;
+ uint32_t audio : 3;
+ uint32_t thermal : 2;
+ uint32_t table_mode : 1;
+ enum ec_cfg_usb_mb_type usb_mb : 3;
+ uint32_t reserved_1 : 16;
};
uint32_t raw_value;
};