76 lines
1.9 KiB
C
76 lines
1.9 KiB
C
/* Copyright 2019 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.
|
|
*/
|
|
|
|
/* Treeya board configuration */
|
|
|
|
#ifndef __CROS_EC_BOARD_H
|
|
#define __CROS_EC_BOARD_H
|
|
|
|
#define VARIANT_GRUNT_TCPC_0_ANX3447
|
|
|
|
#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
|
|
|
|
/* Power and battery LEDs */
|
|
#define CONFIG_LED_COMMON
|
|
#define CONFIG_CMD_LEDTEST
|
|
#define CONFIG_LED_POWER_LED
|
|
|
|
#define CONFIG_LED_ONOFF_STATES
|
|
|
|
/* Disable keyboard backlight */
|
|
#undef CONFIG_PWM
|
|
#undef CONFIG_PWM_KBLIGHT
|
|
|
|
#define CONFIG_MKBP_USE_GPIO
|
|
|
|
/* Motion sensing drivers */
|
|
#define CONFIG_ACCELGYRO_BMI160
|
|
#define CONFIG_ACCELGYRO_BMI160_INT_EVENT \
|
|
TASK_EVENT_MOTION_SENSOR_INTERRUPT(BASE_ACCEL)
|
|
#define CONFIG_ACCEL_INTERRUPTS
|
|
#define CONFIG_ACCEL_KX022
|
|
#define CONFIG_CMD_ACCELS
|
|
#define CONFIG_CMD_ACCEL_INFO
|
|
#define CONFIG_TABLET_MODE
|
|
#define CONFIG_LID_ANGLE
|
|
#define CONFIG_LID_ANGLE_UPDATE
|
|
#define CONFIG_LID_ANGLE_SENSOR_BASE BASE_ACCEL
|
|
#define CONFIG_LID_ANGLE_SENSOR_LID LID_ACCEL
|
|
/*
|
|
* Slew rate on the PP1800_SENSOR load switch requires a short delay on startup.
|
|
*/
|
|
#undef CONFIG_MOTION_SENSE_RESUME_DELAY_US
|
|
#define CONFIG_MOTION_SENSE_RESUME_DELAY_US (10 * MSEC)
|
|
|
|
/* Second set of sensor drivers */
|
|
#define CONFIG_ACCELGYRO_LSM6DSM
|
|
#define CONFIG_ACCEL_LSM6DSM_INT_EVENT \
|
|
TASK_EVENT_MOTION_SENSOR_INTERRUPT(BASE_ACCEL)
|
|
#define CONFIG_ACCEL_LIS2DWL
|
|
|
|
#ifndef __ASSEMBLER__
|
|
|
|
|
|
enum battery_type {
|
|
BATTERY_SMP,
|
|
BATTERY_LGC,
|
|
BATTERY_SUNWODA,
|
|
BATTERY_TYPE_COUNT,
|
|
};
|
|
|
|
void board_bmi160_lsm6dsm_interrupt(enum gpio_signal signal);
|
|
|
|
#endif /* !__ASSEMBLER__ */
|
|
|
|
#endif /* __CROS_EC_BOARD_H */
|