mirror of
https://github.com/Telecominfraproject/OpenCellular.git
synced 2026-01-15 00:56:22 +00:00
cleanup: it83xx: pull pnpcfg_settings[] to the chip-level
With this change, we don't need to declare pnpcfg_settings[] for each it83xx based board. BUG=b:76022972 BRANCH=none TEST=make buildall -j, boot to kernel on reef_it8320. Change-Id: I39eb465ba7d6191dce4ab1a39787a2c925ec3b91 Signed-off-by: Dino Li <Dino.Li@ite.com.tw> Reviewed-on: https://chromium-review.googlesource.com/1009544 Commit-Ready: Vijay P Hiremath <vijay.p.hiremath@intel.com> Tested-by: Vijay P Hiremath <vijay.p.hiremath@intel.com> Reviewed-by: Vijay P Hiremath <vijay.p.hiremath@intel.com> Reviewed-by: Jett Rink <jettrink@chromium.org>
This commit is contained in:
@@ -13,7 +13,6 @@
|
||||
#include "driver/tcpm/it83xx_pd.h"
|
||||
#include "driver/tcpm/ps8xxx.h"
|
||||
#include "driver/usb_mux_it5205.h"
|
||||
#include "ec2i_chip.h"
|
||||
#include "extpower.h"
|
||||
#include "gpio.h"
|
||||
#include "hooks.h"
|
||||
@@ -175,98 +174,6 @@ const int usb_port_enable[USB_PORT_COUNT] = {
|
||||
GPIO_EN_USB_A1_5V,
|
||||
};
|
||||
|
||||
/******************************************************************************/
|
||||
/* PNPCFG settings */
|
||||
/* TODO(b/76022972): Ensure correct and put in common chip code instead */
|
||||
const struct ec2i_t pnpcfg_settings[] = {
|
||||
/* Select logical device 06h(keyboard) */
|
||||
{HOST_INDEX_LDN, LDN_KBC_KEYBOARD},
|
||||
/* Set IRQ=01h for logical device */
|
||||
{HOST_INDEX_IRQNUMX, 0x01},
|
||||
/* Enable logical device */
|
||||
{HOST_INDEX_LDA, 0x01},
|
||||
|
||||
/* Select logical device 05h(mouse) */
|
||||
{HOST_INDEX_LDN, LDN_KBC_MOUSE},
|
||||
/* Set IRQ=0Ch for logical device */
|
||||
{HOST_INDEX_IRQNUMX, 0x0C},
|
||||
/* Enable logical device */
|
||||
{HOST_INDEX_LDA, 0x01},
|
||||
|
||||
/* Select logical device 11h(PM1 ACPI) */
|
||||
{HOST_INDEX_LDN, LDN_PMC1},
|
||||
/* Set IRQ=00h for logical device */
|
||||
{HOST_INDEX_IRQNUMX, 0x00},
|
||||
/* Enable logical device */
|
||||
{HOST_INDEX_LDA, 0x01},
|
||||
|
||||
/* Select logical device 12h(PM2) */
|
||||
{HOST_INDEX_LDN, LDN_PMC2},
|
||||
/* I/O Port Base Address 200h/204h */
|
||||
{HOST_INDEX_IOBAD0_MSB, 0x02},
|
||||
{HOST_INDEX_IOBAD0_LSB, 0x00},
|
||||
{HOST_INDEX_IOBAD1_MSB, 0x02},
|
||||
{HOST_INDEX_IOBAD1_LSB, 0x04},
|
||||
/* Set IRQ=00h for logical device */
|
||||
{HOST_INDEX_IRQNUMX, 0x00},
|
||||
/* Enable logical device */
|
||||
{HOST_INDEX_LDA, 0x01},
|
||||
|
||||
/* Select logical device 0Fh(SMFI) */
|
||||
{HOST_INDEX_LDN, LDN_SMFI},
|
||||
/* H2RAM LPC I/O cycle Dxxx */
|
||||
{HOST_INDEX_DSLDC6, 0x00},
|
||||
/* Enable H2RAM LPC I/O cycle */
|
||||
{HOST_INDEX_DSLDC7, 0x01},
|
||||
/* Enable logical device */
|
||||
{HOST_INDEX_LDA, 0x01},
|
||||
|
||||
/* Select logical device 17h(PM3) */
|
||||
{HOST_INDEX_LDN, LDN_PMC3},
|
||||
/* I/O Port Base Address 80h */
|
||||
{HOST_INDEX_IOBAD0_MSB, 0x00},
|
||||
{HOST_INDEX_IOBAD0_LSB, 0x80},
|
||||
{HOST_INDEX_IOBAD1_MSB, 0x00},
|
||||
{HOST_INDEX_IOBAD1_LSB, 0x00},
|
||||
/* Set IRQ=00h for logical device */
|
||||
{HOST_INDEX_IRQNUMX, 0x00},
|
||||
/* Enable logical device */
|
||||
{HOST_INDEX_LDA, 0x01},
|
||||
/* Select logical device 10h(RTCT) */
|
||||
{HOST_INDEX_LDN, LDN_RTCT},
|
||||
/* P80L Begin Index */
|
||||
{HOST_INDEX_DSLDC4, P80L_P80LB},
|
||||
/* P80L End Index */
|
||||
{HOST_INDEX_DSLDC5, P80L_P80LE},
|
||||
/* P80L Current Index */
|
||||
{HOST_INDEX_DSLDC6, P80L_P80LC},
|
||||
#ifdef CONFIG_UART_HOST
|
||||
/* Select logical device 2h(UART2) */
|
||||
{HOST_INDEX_LDN, LDN_UART2},
|
||||
/*
|
||||
* I/O port base address is 2F8h.
|
||||
* Host can use LPC I/O port 0x2F8 ~ 0x2FF to access UART2.
|
||||
* See specification 7.24.4 for more detial.
|
||||
*/
|
||||
{HOST_INDEX_IOBAD0_MSB, 0x02},
|
||||
{HOST_INDEX_IOBAD0_LSB, 0xF8},
|
||||
/* IRQ number is 3 */
|
||||
{HOST_INDEX_IRQNUMX, 0x03},
|
||||
/*
|
||||
* Interrupt Request Type Select
|
||||
* bit1, 0: IRQ request is buffered and applied to SERIRQ.
|
||||
* 1: IRQ request is inverted before being applied to SERIRQ.
|
||||
* bit0, 0: Edge triggered mode.
|
||||
* 1: Level triggered mode.
|
||||
*/
|
||||
{HOST_INDEX_IRQTP, 0x02},
|
||||
/* Enable logical device */
|
||||
{HOST_INDEX_LDA, 0x01},
|
||||
#endif
|
||||
};
|
||||
BUILD_ASSERT(ARRAY_SIZE(pnpcfg_settings) == EC2I_SETTING_COUNT);
|
||||
|
||||
|
||||
/* TODO(crbug.com/826441): Consolidate this logic with other impls */
|
||||
static void board_it83xx_hpd_status(int port, int hpd_lvl, int hpd_irq)
|
||||
{
|
||||
|
||||
@@ -10,7 +10,6 @@
|
||||
#include "common.h"
|
||||
#include "console.h"
|
||||
#include "it83xx_pd.h"
|
||||
#include "ec2i_chip.h"
|
||||
#include "fan.h"
|
||||
#include "gpio.h"
|
||||
#include "hooks.h"
|
||||
@@ -142,95 +141,6 @@ const struct fan_tach_t fan_tach[] = {
|
||||
};
|
||||
BUILD_ASSERT(ARRAY_SIZE(fan_tach) == PWM_HW_CH_TOTAL);
|
||||
|
||||
/* PNPCFG settings */
|
||||
const struct ec2i_t pnpcfg_settings[] = {
|
||||
/* Select logical device 06h(keyboard) */
|
||||
{HOST_INDEX_LDN, LDN_KBC_KEYBOARD},
|
||||
/* Set IRQ=01h for logical device */
|
||||
{HOST_INDEX_IRQNUMX, 0x01},
|
||||
/* Enable logical device */
|
||||
{HOST_INDEX_LDA, 0x01},
|
||||
|
||||
/* Select logical device 05h(mouse) */
|
||||
{HOST_INDEX_LDN, LDN_KBC_MOUSE},
|
||||
/* Set IRQ=0Ch for logical device */
|
||||
{HOST_INDEX_IRQNUMX, 0x0C},
|
||||
/* Enable logical device */
|
||||
{HOST_INDEX_LDA, 0x01},
|
||||
|
||||
/* Select logical device 11h(PM1 ACPI) */
|
||||
{HOST_INDEX_LDN, LDN_PMC1},
|
||||
/* Set IRQ=00h for logical device */
|
||||
{HOST_INDEX_IRQNUMX, 0x00},
|
||||
/* Enable logical device */
|
||||
{HOST_INDEX_LDA, 0x01},
|
||||
|
||||
/* Select logical device 12h(PM2) */
|
||||
{HOST_INDEX_LDN, LDN_PMC2},
|
||||
/* I/O Port Base Address 200h/204h */
|
||||
{HOST_INDEX_IOBAD0_MSB, 0x02},
|
||||
{HOST_INDEX_IOBAD0_LSB, 0x00},
|
||||
{HOST_INDEX_IOBAD1_MSB, 0x02},
|
||||
{HOST_INDEX_IOBAD1_LSB, 0x04},
|
||||
/* Set IRQ=00h for logical device */
|
||||
{HOST_INDEX_IRQNUMX, 0x00},
|
||||
/* Enable logical device */
|
||||
{HOST_INDEX_LDA, 0x01},
|
||||
|
||||
/* Select logical device 0Fh(SMFI) */
|
||||
{HOST_INDEX_LDN, LDN_SMFI},
|
||||
/* H2RAM LPC I/O cycle Dxxx */
|
||||
{HOST_INDEX_DSLDC6, 0x00},
|
||||
/* Enable H2RAM LPC I/O cycle */
|
||||
{HOST_INDEX_DSLDC7, 0x01},
|
||||
/* Enable logical device */
|
||||
{HOST_INDEX_LDA, 0x01},
|
||||
|
||||
/* Select logical device 17h(PM3) */
|
||||
{HOST_INDEX_LDN, LDN_PMC3},
|
||||
/* I/O Port Base Address 80h */
|
||||
{HOST_INDEX_IOBAD0_MSB, 0x00},
|
||||
{HOST_INDEX_IOBAD0_LSB, 0x80},
|
||||
{HOST_INDEX_IOBAD1_MSB, 0x00},
|
||||
{HOST_INDEX_IOBAD1_LSB, 0x00},
|
||||
/* Set IRQ=00h for logical device */
|
||||
{HOST_INDEX_IRQNUMX, 0x00},
|
||||
/* Enable logical device */
|
||||
{HOST_INDEX_LDA, 0x01},
|
||||
/* Select logical device 10h(RTCT) */
|
||||
{HOST_INDEX_LDN, LDN_RTCT},
|
||||
/* P80L Begin Index */
|
||||
{HOST_INDEX_DSLDC4, P80L_P80LB},
|
||||
/* P80L End Index */
|
||||
{HOST_INDEX_DSLDC5, P80L_P80LE},
|
||||
/* P80L Current Index */
|
||||
{HOST_INDEX_DSLDC6, P80L_P80LC},
|
||||
#ifdef CONFIG_UART_HOST
|
||||
/* Select logical device 2h(UART2) */
|
||||
{HOST_INDEX_LDN, LDN_UART2},
|
||||
/*
|
||||
* I/O port base address is 2F8h.
|
||||
* Host can use LPC I/O port 0x2F8 ~ 0x2FF to access UART2.
|
||||
* See specification 7.24.4 for more detial.
|
||||
*/
|
||||
{HOST_INDEX_IOBAD0_MSB, 0x02},
|
||||
{HOST_INDEX_IOBAD0_LSB, 0xF8},
|
||||
/* IRQ number is 3 */
|
||||
{HOST_INDEX_IRQNUMX, 0x03},
|
||||
/*
|
||||
* Interrupt Request Type Select
|
||||
* bit1, 0: IRQ request is buffered and applied to SERIRQ.
|
||||
* 1: IRQ request is inverted before being applied to SERIRQ.
|
||||
* bit0, 0: Edge triggered mode.
|
||||
* 1: Level triggered mode.
|
||||
*/
|
||||
{HOST_INDEX_IRQTP, 0x02},
|
||||
/* Enable logical device */
|
||||
{HOST_INDEX_LDA, 0x01},
|
||||
#endif
|
||||
};
|
||||
BUILD_ASSERT(ARRAY_SIZE(pnpcfg_settings) == EC2I_SETTING_COUNT);
|
||||
|
||||
/* Wake-up pins for hibernate */
|
||||
const enum gpio_signal hibernate_wake_pins[] = {
|
||||
GPIO_POWER_BUTTON_L, GPIO_LID_OPEN
|
||||
|
||||
@@ -18,7 +18,6 @@
|
||||
#include "driver/tcpm/it83xx_pd.h"
|
||||
#include "driver/tcpm/tcpm.h"
|
||||
#include "extpower.h"
|
||||
#include "ec2i_chip.h"
|
||||
#include "gpio.h"
|
||||
#include "hooks.h"
|
||||
#include "host_command.h"
|
||||
@@ -592,92 +591,3 @@ struct keyboard_scan_config keyscan_config = {
|
||||
0xa4, 0xff, 0xfe, 0x55, 0xfa, 0xca /* full set */
|
||||
},
|
||||
};
|
||||
|
||||
/* PNPCFG settings */
|
||||
const struct ec2i_t pnpcfg_settings[] = {
|
||||
/* Select logical device 06h(keyboard) */
|
||||
{HOST_INDEX_LDN, LDN_KBC_KEYBOARD},
|
||||
/* Set IRQ=01h for logical device */
|
||||
{HOST_INDEX_IRQNUMX, 0x01},
|
||||
/* Enable logical device */
|
||||
{HOST_INDEX_LDA, 0x01},
|
||||
|
||||
/* Select logical device 05h(mouse) */
|
||||
{HOST_INDEX_LDN, LDN_KBC_MOUSE},
|
||||
/* Set IRQ=0Ch for logical device */
|
||||
{HOST_INDEX_IRQNUMX, 0x0C},
|
||||
/* Enable logical device */
|
||||
{HOST_INDEX_LDA, 0x01},
|
||||
|
||||
/* Select logical device 11h(PM1 ACPI) */
|
||||
{HOST_INDEX_LDN, LDN_PMC1},
|
||||
/* Set IRQ=00h for logical device */
|
||||
{HOST_INDEX_IRQNUMX, 0x00},
|
||||
/* Enable logical device */
|
||||
{HOST_INDEX_LDA, 0x01},
|
||||
|
||||
/* Select logical device 12h(PM2) */
|
||||
{HOST_INDEX_LDN, LDN_PMC2},
|
||||
/* I/O Port Base Address 200h/204h */
|
||||
{HOST_INDEX_IOBAD0_MSB, 0x02},
|
||||
{HOST_INDEX_IOBAD0_LSB, 0x00},
|
||||
{HOST_INDEX_IOBAD1_MSB, 0x02},
|
||||
{HOST_INDEX_IOBAD1_LSB, 0x04},
|
||||
/* Set IRQ=00h for logical device */
|
||||
{HOST_INDEX_IRQNUMX, 0x00},
|
||||
/* Enable logical device */
|
||||
{HOST_INDEX_LDA, 0x01},
|
||||
|
||||
/* Select logical device 0Fh(SMFI) */
|
||||
{HOST_INDEX_LDN, LDN_SMFI},
|
||||
/* H2RAM LPC I/O cycle Dxxx */
|
||||
{HOST_INDEX_DSLDC6, 0x00},
|
||||
/* Enable H2RAM LPC I/O cycle */
|
||||
{HOST_INDEX_DSLDC7, 0x01},
|
||||
/* Enable logical device */
|
||||
{HOST_INDEX_LDA, 0x01},
|
||||
|
||||
/* Select logical device 17h(PM3) */
|
||||
{HOST_INDEX_LDN, LDN_PMC3},
|
||||
/* I/O Port Base Address 80h */
|
||||
{HOST_INDEX_IOBAD0_MSB, 0x00},
|
||||
{HOST_INDEX_IOBAD0_LSB, 0x80},
|
||||
{HOST_INDEX_IOBAD1_MSB, 0x00},
|
||||
{HOST_INDEX_IOBAD1_LSB, 0x00},
|
||||
/* Set IRQ=00h for logical device */
|
||||
{HOST_INDEX_IRQNUMX, 0x00},
|
||||
/* Enable logical device */
|
||||
{HOST_INDEX_LDA, 0x01},
|
||||
/* Select logical device 10h(RTCT) */
|
||||
{HOST_INDEX_LDN, LDN_RTCT},
|
||||
/* P80L Begin Index */
|
||||
{HOST_INDEX_DSLDC4, P80L_P80LB},
|
||||
/* P80L End Index */
|
||||
{HOST_INDEX_DSLDC5, P80L_P80LE},
|
||||
/* P80L Current Index */
|
||||
{HOST_INDEX_DSLDC6, P80L_P80LC},
|
||||
#ifdef CONFIG_UART_HOST
|
||||
/* Select logical device 2h(UART2) */
|
||||
{HOST_INDEX_LDN, LDN_UART2},
|
||||
/*
|
||||
* I/O port base address is 2F8h.
|
||||
* Host can use LPC I/O port 0x2F8 ~ 0x2FF to access UART2.
|
||||
* See specification 7.24.4 for more detial.
|
||||
*/
|
||||
{HOST_INDEX_IOBAD0_MSB, 0x02},
|
||||
{HOST_INDEX_IOBAD0_LSB, 0xF8},
|
||||
/* IRQ number is 3 */
|
||||
{HOST_INDEX_IRQNUMX, 0x03},
|
||||
/*
|
||||
* Interrupt Request Type Select
|
||||
* bit1, 0: IRQ request is buffered and applied to SERIRQ.
|
||||
* 1: IRQ request is inverted before being applied to SERIRQ.
|
||||
* bit0, 0: Edge triggered mode.
|
||||
* 1: Level triggered mode.
|
||||
*/
|
||||
{HOST_INDEX_IRQTP, 0x02},
|
||||
/* Enable logical device */
|
||||
{HOST_INDEX_LDA, 0x01},
|
||||
#endif
|
||||
};
|
||||
BUILD_ASSERT(ARRAY_SIZE(pnpcfg_settings) == EC2I_SETTING_COUNT);
|
||||
|
||||
@@ -11,6 +11,96 @@
|
||||
#include "registers.h"
|
||||
#include "task.h"
|
||||
#include "timer.h"
|
||||
#include "util.h"
|
||||
|
||||
/* PNPCFG settings */
|
||||
static const struct ec2i_t pnpcfg_settings[] = {
|
||||
/* Select logical device 06h(keyboard) */
|
||||
{HOST_INDEX_LDN, LDN_KBC_KEYBOARD},
|
||||
/* Set IRQ=01h for logical device */
|
||||
{HOST_INDEX_IRQNUMX, 0x01},
|
||||
/* Enable logical device */
|
||||
{HOST_INDEX_LDA, 0x01},
|
||||
|
||||
/* Select logical device 05h(mouse) */
|
||||
{HOST_INDEX_LDN, LDN_KBC_MOUSE},
|
||||
/* Set IRQ=0Ch for logical device */
|
||||
{HOST_INDEX_IRQNUMX, 0x0C},
|
||||
/* Enable logical device */
|
||||
{HOST_INDEX_LDA, 0x01},
|
||||
|
||||
/* Select logical device 11h(PM1 ACPI) */
|
||||
{HOST_INDEX_LDN, LDN_PMC1},
|
||||
/* Set IRQ=00h for logical device */
|
||||
{HOST_INDEX_IRQNUMX, 0x00},
|
||||
/* Enable logical device */
|
||||
{HOST_INDEX_LDA, 0x01},
|
||||
|
||||
/* Select logical device 12h(PM2) */
|
||||
{HOST_INDEX_LDN, LDN_PMC2},
|
||||
/* I/O Port Base Address 200h/204h */
|
||||
{HOST_INDEX_IOBAD0_MSB, 0x02},
|
||||
{HOST_INDEX_IOBAD0_LSB, 0x00},
|
||||
{HOST_INDEX_IOBAD1_MSB, 0x02},
|
||||
{HOST_INDEX_IOBAD1_LSB, 0x04},
|
||||
/* Set IRQ=00h for logical device */
|
||||
{HOST_INDEX_IRQNUMX, 0x00},
|
||||
/* Enable logical device */
|
||||
{HOST_INDEX_LDA, 0x01},
|
||||
|
||||
/* Select logical device 0Fh(SMFI) */
|
||||
{HOST_INDEX_LDN, LDN_SMFI},
|
||||
/* H2RAM LPC I/O cycle Dxxx */
|
||||
{HOST_INDEX_DSLDC6, 0x00},
|
||||
/* Enable H2RAM LPC I/O cycle */
|
||||
{HOST_INDEX_DSLDC7, 0x01},
|
||||
/* Enable logical device */
|
||||
{HOST_INDEX_LDA, 0x01},
|
||||
|
||||
/* Select logical device 17h(PM3) */
|
||||
{HOST_INDEX_LDN, LDN_PMC3},
|
||||
/* I/O Port Base Address 80h */
|
||||
{HOST_INDEX_IOBAD0_MSB, 0x00},
|
||||
{HOST_INDEX_IOBAD0_LSB, 0x80},
|
||||
{HOST_INDEX_IOBAD1_MSB, 0x00},
|
||||
{HOST_INDEX_IOBAD1_LSB, 0x00},
|
||||
/* Set IRQ=00h for logical device */
|
||||
{HOST_INDEX_IRQNUMX, 0x00},
|
||||
/* Enable logical device */
|
||||
{HOST_INDEX_LDA, 0x01},
|
||||
/* Select logical device 10h(RTCT) */
|
||||
{HOST_INDEX_LDN, LDN_RTCT},
|
||||
/* P80L Begin Index */
|
||||
{HOST_INDEX_DSLDC4, P80L_P80LB},
|
||||
/* P80L End Index */
|
||||
{HOST_INDEX_DSLDC5, P80L_P80LE},
|
||||
/* P80L Current Index */
|
||||
{HOST_INDEX_DSLDC6, P80L_P80LC},
|
||||
#ifdef CONFIG_UART_HOST
|
||||
/* Select logical device 2h(UART2) */
|
||||
{HOST_INDEX_LDN, LDN_UART2},
|
||||
/*
|
||||
* I/O port base address is 2F8h.
|
||||
* Host can use LPC I/O port 0x2F8 ~ 0x2FF to access UART2.
|
||||
* See specification 7.24.4 for more detial.
|
||||
*/
|
||||
{HOST_INDEX_IOBAD0_MSB, 0x02},
|
||||
{HOST_INDEX_IOBAD0_LSB, 0xF8},
|
||||
/* IRQ number is 3 */
|
||||
{HOST_INDEX_IRQNUMX, 0x03},
|
||||
/*
|
||||
* Interrupt Request Type Select
|
||||
* bit1, 0: IRQ request is buffered and applied to SERIRQ.
|
||||
* 1: IRQ request is inverted before being applied to SERIRQ.
|
||||
* bit0, 0: Edge triggered mode.
|
||||
* 1: Level triggered mode.
|
||||
*/
|
||||
{HOST_INDEX_IRQTP, 0x02},
|
||||
/* Enable logical device */
|
||||
{HOST_INDEX_LDA, 0x01},
|
||||
#endif
|
||||
};
|
||||
BUILD_ASSERT(ARRAY_SIZE(pnpcfg_settings) == EC2I_SETTING_COUNT);
|
||||
|
||||
/* EC2I access index/data port */
|
||||
enum ec2i_access {
|
||||
|
||||
@@ -164,8 +164,6 @@ struct ec2i_t {
|
||||
uint8_t data_port;
|
||||
};
|
||||
|
||||
extern const struct ec2i_t pnpcfg_settings[];
|
||||
|
||||
/* EC2I write */
|
||||
enum ec2i_message ec2i_write(enum host_pnpcfg_index index, uint8_t data);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user