| /* Copyright (c) 2013 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. |
| */ |
| |
| /* Emulator board configuration */ |
| |
| #ifndef __BOARD_H |
| #define __BOARD_H |
| |
| /* Optional features */ |
| #undef CONFIG_ACCEL_CALIBRATE |
| #define CONFIG_EXTPOWER_GPIO |
| #undef CONFIG_FMAP |
| #define CONFIG_POWER_BUTTON |
| #undef CONFIG_WATCHDOG |
| #define CONFIG_SWITCH |
| #define CONFIG_INDUCTIVE_CHARGING |
| |
| #undef CONFIG_CONSOLE_HISTORY |
| #define CONFIG_CONSOLE_HISTORY 4 |
| |
| #define CONFIG_WP_ACTIVE_HIGH |
| |
| #include "gpio_signal.h" |
| |
| enum temp_sensor_id { |
| TEMP_SENSOR_CPU = 0, |
| TEMP_SENSOR_BOARD, |
| TEMP_SENSOR_CASE, |
| TEMP_SENSOR_BATTERY, |
| |
| TEMP_SENSOR_COUNT |
| }; |
| |
| enum adc_channel { |
| ADC_CH_CHARGER_CURRENT, |
| ADC_AC_ADAPTER_ID_VOLTAGE, |
| |
| ADC_CH_COUNT |
| }; |
| |
| /* Identifiers for each accelerometer used. */ |
| enum accel_id { |
| ACCEL_BASE, |
| ACCEL_LID, |
| |
| /* Number of accelerometers. */ |
| ACCEL_COUNT |
| }; |
| |
| #endif /* __BOARD_H */ |