226 lines
6.1 KiB
C
226 lines
6.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.
|
||
|
*/
|
||
|
|
||
|
/* Cheza board configuration */
|
||
|
|
||
|
#ifndef __CROS_EC_BOARD_H
|
||
|
#define __CROS_EC_BOARD_H
|
||
|
|
||
|
/* TODO(waihong): Remove the following bringup features */
|
||
|
#define CONFIG_BRINGUP
|
||
|
#define CONFIG_SYSTEM_UNLOCKED /* Allow dangerous commands. */
|
||
|
#define CONFIG_USB_PD_DEBUG_LEVEL 3
|
||
|
#define CONFIG_CMD_AP_RESET_LOG
|
||
|
#define CONFIG_HOSTCMD_AP_RESET
|
||
|
|
||
|
/*
|
||
|
* By default, enable all console messages excepted event and HC:
|
||
|
* The sensor stack is generating a lot of activity.
|
||
|
* They can be enabled through the console command 'chan'.
|
||
|
*/
|
||
|
#define CC_DEFAULT (CC_ALL & ~(CC_MASK(CC_EVENTS) | CC_MASK(CC_HOSTCMD)))
|
||
|
|
||
|
/* NPCX7 config */
|
||
|
#define NPCX_UART_MODULE2 1 /* GPIO64/65 are used as UART pins. */
|
||
|
#define NPCX_TACH_SEL2 0 /* No tach. */
|
||
|
#define NPCX7_PWM1_SEL 0 /* GPIO C2 is not used as PWM1. */
|
||
|
|
||
|
/* Internal SPI flash on NPCX7 */
|
||
|
#define CONFIG_FLASH_SIZE (1024 * 1024) /* 1MB internal spi flash */
|
||
|
#define CONFIG_SPI_FLASH_REGS
|
||
|
#define CONFIG_SPI_FLASH_W25Q80 /* Internal SPI flash type. */
|
||
|
#define CONFIG_HOSTCMD_FLASH_SPI_INFO
|
||
|
|
||
|
/* EC Modules */
|
||
|
#define CONFIG_I2C
|
||
|
#define CONFIG_I2C_MASTER
|
||
|
#define CONFIG_LED_COMMON
|
||
|
#define CONFIG_LOW_POWER_IDLE
|
||
|
#define CONFIG_ADC
|
||
|
#define CONFIG_BACKLIGHT_LID
|
||
|
#define CONFIG_FPU
|
||
|
#define CONFIG_PWM
|
||
|
#define CONFIG_PWM_DISPLIGHT
|
||
|
|
||
|
#define CONFIG_VBOOT_HASH
|
||
|
|
||
|
#define CONFIG_DETACHABLE_BASE
|
||
|
|
||
|
#undef CONFIG_PECI
|
||
|
|
||
|
#define CONFIG_HOSTCMD_SPS
|
||
|
#define CONFIG_HOST_COMMAND_STATUS
|
||
|
#define CONFIG_HOSTCMD_SECTION_SORTED /* Host commands are sorted. */
|
||
|
#define CONFIG_MKBP_EVENT
|
||
|
#define CONFIG_KEYBOARD_PROTOCOL_MKBP
|
||
|
#define CONFIG_MKBP_USE_GPIO
|
||
|
|
||
|
#define CONFIG_BOARD_VERSION_GPIO
|
||
|
#define CONFIG_POWER_BUTTON
|
||
|
#define CONFIG_VOLUME_BUTTONS
|
||
|
#define CONFIG_BUTTON_TRIGGERED_RECOVERY
|
||
|
#define CONFIG_EMULATED_SYSRQ
|
||
|
#define CONFIG_CMD_BUTTON
|
||
|
#define CONFIG_SWITCH
|
||
|
#define CONFIG_LID_SWITCH
|
||
|
#define CONFIG_EXTPOWER_GPIO
|
||
|
|
||
|
#define CONFIG_TABLET_MODE
|
||
|
#define CONFIG_TABLET_MODE_SWITCH
|
||
|
|
||
|
/* Battery */
|
||
|
#define CONFIG_BATTERY_CUT_OFF
|
||
|
#define CONFIG_BATTERY_PRESENT_GPIO GPIO_BATT_PRES_ODL
|
||
|
#define CONFIG_BATTERY_SMART
|
||
|
|
||
|
/* Charger */
|
||
|
#define CONFIG_CHARGER
|
||
|
#define CONFIG_CHARGE_MANAGER
|
||
|
#define CONFIG_CHARGER_ISL9238
|
||
|
#define CONFIG_CHARGE_RAMP_HW
|
||
|
#define CONFIG_USB_CHARGER
|
||
|
#define CONFIG_CMD_CHARGER_ADC_AMON_BMON
|
||
|
#define CONFIG_CHARGER_PSYS
|
||
|
#define CONFIG_CHARGER_PSYS_READ
|
||
|
#define CONFIG_CHARGER_DISCHARGE_ON_AC
|
||
|
|
||
|
#define CONFIG_CHARGER_INPUT_CURRENT 512
|
||
|
#define CONFIG_CHARGER_MIN_BAT_PCT_FOR_POWER_ON 2
|
||
|
#define CONFIG_CHARGER_MIN_POWER_MW_FOR_POWER_ON 7500
|
||
|
#define CONFIG_CHARGER_SENSE_RESISTOR 10
|
||
|
#define CONFIG_CHARGER_SENSE_RESISTOR_AC 20
|
||
|
|
||
|
/* BC 1.2 Charger */
|
||
|
#define CONFIG_BC12_DETECT_PI3USB9281
|
||
|
#define CONFIG_BC12_DETECT_PI3USB9281_CHIP_COUNT 2
|
||
|
|
||
|
/* USB */
|
||
|
#define CONFIG_USB_POWER_DELIVERY
|
||
|
#define CONFIG_CMD_PD_CONTROL
|
||
|
#define CONFIG_USB_PD_ALT_MODE
|
||
|
#define CONFIG_USB_PD_ALT_MODE_DFP
|
||
|
#define CONFIG_USB_PD_DISCHARGE_PPC
|
||
|
#define CONFIG_USB_PD_DUAL_ROLE
|
||
|
#define CONFIG_USB_PD_DUAL_ROLE_AUTO_TOGGLE
|
||
|
#define CONFIG_USB_PD_LOGGING
|
||
|
#define CONFIG_USB_PD_MAX_SINGLE_SOURCE_CURRENT TYPEC_RP_3A0
|
||
|
#define CONFIG_USB_PD_PORT_COUNT 2
|
||
|
#define CONFIG_USB_PD_TCPC_LOW_POWER
|
||
|
#define CONFIG_USB_PD_TCPM_ANX3429
|
||
|
#define CONFIG_USB_PD_TCPM_PS8751
|
||
|
#define CONFIG_USB_PD_TCPM_MUX
|
||
|
#define CONFIG_USB_PD_TCPM_TCPCI
|
||
|
#define CONFIG_USB_PD_TRY_SRC
|
||
|
#define CONFIG_USB_PD_VBUS_DETECT_CHARGER
|
||
|
#define CONFIG_USB_PD_5V_EN_CUSTOM
|
||
|
#define CONFIG_USB_MUX_VIRTUAL
|
||
|
#define CONFIG_USBC_PPC_SN5S330
|
||
|
#define CONFIG_USBC_SS_MUX
|
||
|
#define CONFIG_USBC_VCONN
|
||
|
#define CONFIG_USBC_VCONN_SWAP
|
||
|
|
||
|
/* RTC */
|
||
|
#define CONFIG_CMD_RTC
|
||
|
#define CONFIG_HOSTCMD_RTC
|
||
|
|
||
|
/* Sensors */
|
||
|
#define CONFIG_ACCELGYRO_BMI160
|
||
|
#define CONFIG_ACCEL_INTERRUPTS
|
||
|
#define CONFIG_ACCELGYRO_BMI160_INT_EVENT \
|
||
|
TASK_EVENT_MOTION_SENSOR_INTERRUPT(LID_ACCEL)
|
||
|
/* Enable sensor fifo, must also define the _SIZE and _THRES */
|
||
|
#define CONFIG_ACCEL_FIFO
|
||
|
/* FIFO size is a power of 2. */
|
||
|
#define CONFIG_ACCEL_FIFO_SIZE 256
|
||
|
/* Depends on how fast the AP boots and typical ODRs. */
|
||
|
#define CONFIG_ACCEL_FIFO_THRES (CONFIG_ACCEL_FIFO_SIZE / 3)
|
||
|
#define CONFIG_CMD_ACCELS
|
||
|
#define CONFIG_CMD_ACCEL_INFO
|
||
|
#define CONFIG_ALS
|
||
|
#define CONFIG_ALS_OPT3001
|
||
|
#define ALS_COUNT 1
|
||
|
#define OPT3001_I2C_ADDR_FLAGS OPT3001_I2C_ADDR1_FLAGS
|
||
|
|
||
|
/* PD */
|
||
|
#define PD_POWER_SUPPLY_TURN_ON_DELAY 30000 /* us */
|
||
|
#define PD_POWER_SUPPLY_TURN_OFF_DELAY 250000 /* us */
|
||
|
#define PD_VCONN_SWAP_DELAY 5000 /* us */
|
||
|
|
||
|
#define PD_OPERATING_POWER_MW 15000
|
||
|
#define PD_MAX_POWER_MW ((PD_MAX_VOLTAGE_MV * PD_MAX_CURRENT_MA) / 1000)
|
||
|
#define PD_MAX_CURRENT_MA 3000
|
||
|
#define PD_MAX_VOLTAGE_MV 20000
|
||
|
|
||
|
/* Chipset */
|
||
|
#define CONFIG_CHIPSET_SDM845
|
||
|
#define CONFIG_CHIPSET_RESET_HOOK
|
||
|
#define CONFIG_POWER_COMMON
|
||
|
#define CONFIG_POWER_PP5000_CONTROL
|
||
|
|
||
|
/* NPCX Features */
|
||
|
#define CONFIG_HIBERNATE_PSL
|
||
|
|
||
|
/* I2C Ports */
|
||
|
#define I2C_PORT_BATTERY I2C_PORT_POWER
|
||
|
#define I2C_PORT_CHARGER I2C_PORT_POWER
|
||
|
#define I2C_PORT_ACCEL I2C_PORT_SENSOR
|
||
|
#define I2C_PORT_POWER NPCX_I2C_PORT0_0
|
||
|
#define I2C_PORT_TCPC0 NPCX_I2C_PORT1_0
|
||
|
#define I2C_PORT_TCPC1 NPCX_I2C_PORT2_0
|
||
|
#define I2C_PORT_EEPROM NPCX_I2C_PORT5_0
|
||
|
#define I2C_PORT_SENSOR NPCX_I2C_PORT7_0
|
||
|
|
||
|
#ifndef __ASSEMBLER__
|
||
|
|
||
|
#include "gpio_signal.h"
|
||
|
#include "registers.h"
|
||
|
|
||
|
enum power_signal {
|
||
|
SDM845_AP_RST_ASSERTED = 0,
|
||
|
SDM845_PS_HOLD,
|
||
|
SDM845_PMIC_FAULT_L,
|
||
|
SDM845_POWER_GOOD,
|
||
|
SDM845_WARM_RESET,
|
||
|
/* Number of power signals */
|
||
|
POWER_SIGNAL_COUNT
|
||
|
};
|
||
|
|
||
|
enum adc_channel {
|
||
|
ADC_BASE_DET,
|
||
|
ADC_VBUS,
|
||
|
ADC_AMON_BMON,
|
||
|
ADC_PSYS,
|
||
|
ADC_CH_COUNT
|
||
|
};
|
||
|
|
||
|
/* Motion sensors */
|
||
|
enum sensor_id {
|
||
|
LID_ACCEL = 0,
|
||
|
LID_GYRO,
|
||
|
LID_ALS,
|
||
|
SENSOR_COUNT,
|
||
|
};
|
||
|
|
||
|
enum pwm_channel {
|
||
|
PWM_CH_DISPLIGHT,
|
||
|
PWM_CH_COUNT
|
||
|
};
|
||
|
|
||
|
/* Custom function to indicate if sourcing VBUS */
|
||
|
int board_is_sourcing_vbus(int port);
|
||
|
/* Enable VBUS sink for a given port */
|
||
|
int board_vbus_sink_enable(int port, int enable);
|
||
|
/* Reset all TCPCs. */
|
||
|
void board_reset_pd_mcu(void);
|
||
|
/* Base detection interrupt handler */
|
||
|
void base_detect_interrupt(enum gpio_signal signal);
|
||
|
|
||
|
/* Sensors without hardware FIFO are in forced mode */
|
||
|
#define CONFIG_ACCEL_FORCE_MODE_MASK BIT(LID_ALS)
|
||
|
|
||
|
#endif /* !defined(__ASSEMBLER__) */
|
||
|
|
||
|
#endif /* __CROS_EC_BOARD_H */
|