85 lines
2.1 KiB
C
85 lines
2.1 KiB
C
/* 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.
|
|
*/
|
|
|
|
/* DragonEgg board configuration */
|
|
|
|
#ifndef __CROS_EC_BOARD_H
|
|
#define __CROS_EC_BOARD_H
|
|
|
|
/* Baseboard features */
|
|
#include "baseboard.h"
|
|
|
|
/* Optional features */
|
|
#define CONFIG_SYSTEM_UNLOCKED /* Allow dangerous commands while in dev. */
|
|
#define CONFIG_LOW_POWER_IDLE
|
|
#undef CONFIG_UART_TX_BUF_SIZE
|
|
#define CONFIG_UART_TX_BUF_SIZE 4096
|
|
|
|
/* EC */
|
|
#define CONFIG_BOARD_VERSION_GPIO
|
|
|
|
/* Keyboard features */
|
|
#define CONFIG_PWM_KBLIGHT
|
|
#define CONFIG_VOLUME_BUTTONS
|
|
|
|
/* USB and USBC features */
|
|
#define CONFIG_USB_PORT_POWER_SMART
|
|
#undef CONFIG_USB_PORT_POWER_SMART_PORT_COUNT
|
|
#define CONFIG_USB_PORT_POWER_SMART_PORT_COUNT 1
|
|
#define CONFIG_USB_PORT_POWER_SMART_CDP_SDP_ONLY
|
|
#define GPIO_USB1_ILIM_SEL GPIO_EN_USB_A_HIGH_POWER
|
|
|
|
/* LEDs */
|
|
#define CONFIG_LED_COMMON
|
|
#define CONFIG_LED_PWM_COUNT 1
|
|
#undef CONFIG_LED_PWM_SOC_ON_COLOR
|
|
#define CONFIG_LED_PWM_SOC_ON_COLOR EC_LED_COLOR_BLUE
|
|
#undef CONFIG_LED_PWM_SOC_SUSPEND_COLOR
|
|
#define CONFIG_LED_PWM_SOC_SUSPEND_COLOR EC_LED_COLOR_WHITE
|
|
#define CONFIG_CMD_LEDTEST
|
|
|
|
/*
|
|
* Macros for GPIO signals used in common code that don't match the
|
|
* schematic names. Signal names in gpio.inc match the schematic and are
|
|
* then redefined here to so it's more clear which signal is being used for
|
|
* which purpose.
|
|
*/
|
|
#define GPIO_PCH_RSMRST_L GPIO_EC_PCH_RSMRST_L
|
|
#define GPIO_PCH_SLP_S0_L GPIO_SLP_S0_L
|
|
#define GPIO_CPU_PROCHOT GPIO_EC_PROCHOT_ODL
|
|
#define GPIO_AC_PRESENT GPIO_ACOK_OD
|
|
#define GPIO_RSMRST_L_PGOOD GPIO_PG_EC_RSMRST_ODL
|
|
#define GPIO_PCH_SLP_S3_L GPIO_SLP_S3_L
|
|
#define GPIO_PCH_SLP_S4_L GPIO_SLP_S4_L
|
|
|
|
#ifndef __ASSEMBLER__
|
|
|
|
#include "gpio_signal.h"
|
|
#include "registers.h"
|
|
|
|
enum adc_channel {
|
|
ADC_VBUS_C0,
|
|
ADC_VBUS_C1,
|
|
ADC_CH_COUNT
|
|
};
|
|
|
|
enum pwm_channel {
|
|
PWM_CH_KBLIGHT,
|
|
PWM_CH_LED_RED,
|
|
PWM_CH_LED_GREEN,
|
|
PWM_CH_LED_BLUE,
|
|
PWM_CH_COUNT
|
|
};
|
|
|
|
/* List of possible batteries */
|
|
enum battery_type {
|
|
BATTERY_0RD,
|
|
BATTERY_TYPE_COUNT,
|
|
};
|
|
|
|
#endif /* !__ASSEMBLER__ */
|
|
|
|
#endif /* __CROS_EC_BOARD_H */
|