mirror of
https://github.com/Telecominfraproject/OpenCellular.git
synced 2026-01-08 00:21:46 +00:00
Add i2c control module for emulation board. To rename CONFIG_ to CONFIG_IT83XX_ for IT83XX series configuration. Signed-off-by: Dino Li <dino.li@ite.com.tw> BRANCH=none BUG=none TEST=1. console command "i2cscan" found devices correctly. 2. console command "i2cxfer". 2-a. port2 + battery, i2cxfer r, r16, and rlen OK. 2-b. port1 + slave evb, i2cxfer r, r16, rlen, w, and w16 OK. Change-Id: I67165f7dcdef538ba6dd03b47f1621a73cc68379 Reviewed-on: https://chromium-review.googlesource.com/263678 Reviewed-by: Alec Berg <alecaberg@chromium.org> Commit-Queue: Dino Li <dino.li@ite.com.tw> Tested-by: Dino Li <dino.li@ite.com.tw>
94 lines
1.8 KiB
C
94 lines
1.8 KiB
C
/* 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.
|
|
*/
|
|
|
|
/* IT8380 development board configuration */
|
|
|
|
#ifndef __CROS_EC_BOARD_H
|
|
#define __CROS_EC_BOARD_H
|
|
|
|
/* Optional features */
|
|
#undef CHIP_FAMILY_IT839X
|
|
|
|
#define CONFIG_FANS 1
|
|
#undef CONFIG_IT83XX_KEYBOARD_KSI_WUC_INT
|
|
#define CONFIG_IT83XX_PECI_WITH_INTERRUPT
|
|
#define CONFIG_IT83XX_SMCLK2_ON_GPC7
|
|
#undef CONFIG_IT83XX_SPI_USE_CS1
|
|
#define CONFIG_KEYBOARD_BOARD_CONFIG
|
|
#define CONFIG_KEYBOARD_PROTOCOL_8042
|
|
#define CONFIG_PECI_TJMAX 100
|
|
#define CONFIG_POWER_BUTTON
|
|
|
|
/* Debug */
|
|
#undef CONFIG_KEYBOARD_DEBUG
|
|
#undef CONFIG_UART_TX_BUF_SIZE
|
|
#define CONFIG_UART_TX_BUF_SIZE 4096
|
|
|
|
#ifndef __ASSEMBLER__
|
|
|
|
#include "gpio_signal.h"
|
|
|
|
enum pwm_channel {
|
|
PWM_CH_FAN,
|
|
PWM_CH_1,
|
|
PWM_CH_2,
|
|
PWM_CH_3,
|
|
PWM_CH_4,
|
|
PWM_CH_5,
|
|
PWM_CH_7,
|
|
|
|
/* Number of PWM channels */
|
|
PWM_CH_COUNT
|
|
};
|
|
|
|
enum adc_channel {
|
|
ADC_CH_0,
|
|
ADC_CH_1,
|
|
ADC_CH_2,
|
|
ADC_CH_3,
|
|
ADC_CH_4,
|
|
ADC_CH_5,
|
|
ADC_CH_6,
|
|
ADC_CH_7,
|
|
|
|
/* Number of ADC channels */
|
|
ADC_CH_COUNT
|
|
};
|
|
|
|
enum ec2i_setting {
|
|
EC2I_SET_KB_LDN,
|
|
EC2I_SET_KB_IRQ,
|
|
EC2I_SET_KB_ENABLE,
|
|
EC2I_SET_MOUSE_LDN,
|
|
EC2I_SET_MOUSE_IRQ,
|
|
EC2I_SET_MOUSE_ENABLE,
|
|
EC2I_SET_PMC1_LDN,
|
|
EC2I_SET_PMC1_IRQ,
|
|
EC2I_SET_PMC1_ENABLE,
|
|
EC2I_SET_PMC2_LDN,
|
|
EC2I_SET_PMC2_BASE0_MSB,
|
|
EC2I_SET_PMC2_BASE0_LSB,
|
|
EC2I_SET_PMC2_BASE1_MSB,
|
|
EC2I_SET_PMC2_BASE1_LSB,
|
|
EC2I_SET_PMC2_IRQ,
|
|
EC2I_SET_PMC2_ENABLE,
|
|
EC2I_SET_SMFI_LDN,
|
|
EC2I_SET_SMFI_H2RAM_IO_BASE,
|
|
EC2I_SET_SMFI_H2RAM_MAP_LPC_IO,
|
|
EC2I_SET_SMFI_ENABLE,
|
|
EC2I_SET_PMC3_LDN,
|
|
EC2I_SET_PMC3_BASE0_MSB,
|
|
EC2I_SET_PMC3_BASE0_LSB,
|
|
EC2I_SET_PMC3_BASE1_MSB,
|
|
EC2I_SET_PMC3_BASE1_LSB,
|
|
EC2I_SET_PMC3_IRQ,
|
|
EC2I_SET_PMC3_ENABLE,
|
|
/* Number of EC2I settings */
|
|
EC2I_SETTING_COUNT
|
|
};
|
|
|
|
#endif /* !__ASSEMBLER__ */
|
|
#endif /* __CROS_EC_BOARD_H */
|