summaryrefslogtreecommitdiff
path: root/board/aleena/board.h
diff options
context:
space:
mode:
Diffstat (limited to 'board/aleena/board.h')
-rw-r--r--board/aleena/board.h43
1 files changed, 43 insertions, 0 deletions
diff --git a/board/aleena/board.h b/board/aleena/board.h
new file mode 100644
index 0000000000..53a404bd25
--- /dev/null
+++ b/board/aleena/board.h
@@ -0,0 +1,43 @@
+/* Copyright 2018 The Chromium OS Authors. All rights reserved.
+ * Use of this source code is governed by a BSD-style license that can be
+ * found in the LICENSE file.
+ */
+
+/* Aleena board configuration */
+
+#ifndef __CROS_EC_BOARD_H
+#define __CROS_EC_BOARD_H
+
+#include "baseboard.h"
+
+/*
+ * By default, enable all console messages excepted HC, ACPI and event:
+ * The sensor stack is generating a lot of activity.
+ */
+#define CC_DEFAULT (CC_ALL & ~(CC_MASK(CC_EVENTS) | CC_MASK(CC_LPC)))
+#undef CONFIG_HOSTCMD_DEBUG_MODE
+#define CONFIG_HOSTCMD_DEBUG_MODE HCDEBUG_OFF
+
+#define CONFIG_SYSTEM_UNLOCKED /* Allow dangerous commands while in dev. */
+
+#define CONFIG_LED_COMMON
+#define CONFIG_CMD_LEDTEST
+
+#ifndef __ASSEMBLER__
+
+enum pwm_channel {
+ PWM_CH_KBLIGHT = 0,
+ PWM_CH_COUNT
+};
+
+enum battery_type {
+ BATTERY_DANAPACK_COS,
+ BATTERY_DANAPACK_ATL,
+ BATTERY_DANAPACK_SDI,
+ BATTERY_SAMSUNG_SDI,
+ BATTERY_TYPE_COUNT,
+};
+
+#endif /* !__ASSEMBLER__ */
+
+#endif /* __CROS_EC_BOARD_H */