summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMathew King <mathewk@chromium.org>2019-02-26 15:04:21 -0700
committerchrome-bot <chrome-bot@chromium.org>2019-03-01 19:50:20 -0800
commit4dd4b3153b2f067e5ee9efbcb4852c424be57348 (patch)
treef7e3d8b132926acc1bdb919e7344fbbc86ac2580
parent7f6fdc5240618d7000ab1526b24f6e242adf1ac3 (diff)
downloadchrome-ec-4dd4b3153b2f067e5ee9efbcb4852c424be57348.tar.gz
ec: Cleanup ish config options
Remove all ISH related CONFIG_* options except for: CONFIG_HOSTCMD_HECI: This will be used to enable the host command interface using HECI. Similar to CONFIG_HOSTCMD_LPC or CONFIG_HOSTCMD_ESPI. arcada_ish uses this config. CONFIG_HID_HECI: This will be used to enable a HID interface using HECI. It is compatible with the intel-ish-hid kernel driver. atlas_ish uses this config. Also remove ipc.c the functionality it has been superceded by ipc_heci.c. BUG=b:123634700 TEST=Built and tested on a arcada device Verified that atlas_ish builds BRANCH=none Change-Id: I9d97693e2beca1c9fec8c4f17bd3706b0ea8e795 Signed-off-by: Mathew King <mathewk@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/1490551 Commit-Ready: ChromeOS CL Exonerator Bot <chromiumos-cl-exonerator@appspot.gserviceaccount.com> Reviewed-by: Jett Rink <jettrink@chromium.org>
-rw-r--r--board/arcada_ish/board.c16
-rw-r--r--board/arcada_ish/board.h4
-rw-r--r--board/atlas_ish/board.c14
-rw-r--r--board/atlas_ish/board.h6
-rw-r--r--chip/ish/build.mk7
-rw-r--r--chip/ish/config_chip.h3
-rw-r--r--chip/ish/ipc.c392
-rw-r--r--chip/ish/ipc.h97
-rw-r--r--include/config.h12
9 files changed, 6 insertions, 545 deletions
diff --git a/board/arcada_ish/board.c b/board/arcada_ish/board.c
index 0c0fabc86e..3cddfa393a 100644
--- a/board/arcada_ish/board.c
+++ b/board/arcada_ish/board.c
@@ -86,19 +86,3 @@ int board_idle_task(void *unused)
while (1)
task_wait_event(-1);
}
-
-/*
- * Dummy functions to remove 'undefined' symbol link error for acpi.o
- * due to CONFIG_LPC flag
- * TODO(b/123634700): clean this up when implement EC->AP communication
- */
-#ifdef CONFIG_HOSTCMD_LPC
-int lpc_query_host_event_state(void)
-{
- return 0;
-}
-
-void lpc_set_acpi_status_mask(uint8_t mask)
-{
-}
-#endif
diff --git a/board/arcada_ish/board.h b/board/arcada_ish/board.h
index 119b63ce9a..0956d1620e 100644
--- a/board/arcada_ish/board.h
+++ b/board/arcada_ish/board.h
@@ -35,10 +35,6 @@
/* TODO(b/123634700): This is temporary until FIFO is supported */
#define CONFIG_ACCEL_FORCE_MODE_MASK (1 << BASE_ACCEL)
-/* HECI Support*/
-#define CONFIG_HECI
-/* ISH IPC (over HECI) */
-#define CONFIG_ISH_IPC
/* Host command over HECI */
#define CONFIG_HOSTCMD_HECI
diff --git a/board/atlas_ish/board.c b/board/atlas_ish/board.c
index ad6bfd18fa..066767638c 100644
--- a/board/atlas_ish/board.c
+++ b/board/atlas_ish/board.c
@@ -24,17 +24,3 @@ const struct i2c_port_t i2c_ports[] = {
GPIO_I2C_PORT_TP_SCL, GPIO_I2C_PORT_TP_SDA},
};
const unsigned int i2c_ports_used = ARRAY_SIZE(i2c_ports);
-
-/* dummy functions to remove 'undefined' symbol link error for acpi.o
- * due to CONFIG_LPC flag
- */
-#ifdef CONFIG_HOSTCMD_LPC
-int lpc_query_host_event_state(void)
-{
- return 0;
-}
-
-void lpc_set_acpi_status_mask(uint8_t mask)
-{
-}
-#endif
diff --git a/board/atlas_ish/board.h b/board/atlas_ish/board.h
index b3bc256897..e4d1453cb5 100644
--- a/board/atlas_ish/board.h
+++ b/board/atlas_ish/board.h
@@ -31,12 +31,8 @@
#define CONFIG_I2C
#define CONFIG_I2C_MASTER
-/* ISH IPC */
-#define CONFIG_ISH_IPC
-/* HECI */
-#define CONFIG_HECI
/* HID subsystem */
-#define CONFIG_HID_SUBSYS
+#define CONFIG_HID_HECI
/* I2C ports */
#define I2C_PORT_TP ISH_I2C0
diff --git a/chip/ish/build.mk b/chip/ish/build.mk
index dbdbe2eda6..7ae315c505 100644
--- a/chip/ish/build.mk
+++ b/chip/ish/build.mk
@@ -20,12 +20,11 @@ endif
chip-y+=clock.o gpio.o system.o hwtimer.o uart.o flash.o
chip-y+=reset_prep_wr.o
chip-$(CONFIG_I2C)+=i2c.o
-chip-$(CONFIG_HOSTCMD_LPC)+=ipc.o
-chip-$(CONFIG_ISH_IPC)+=ipc_heci.o
-chip-$(CONFIG_HECI)+=heci.o system_state_subsys.o
-chip-$(CONFIG_HID_SUBSYS)+=hid_subsys.o
chip-$(CONFIG_WATCHDOG)+=watchdog.o
chip-$(CONFIG_HOSTCMD_HECI)+=host_command_heci.o
+chip-$(CONFIG_HOSTCMD_HECI)+=heci.o system_state_subsys.o ipc_heci.o
+chip-$(CONFIG_HID_HECI)+=hid_subsys.o
+chip-$(CONFIG_HID_HECI)+=heci.o system_state_subsys.o ipc_heci.o
# location of the scripts and keys used to pack the SPI flash image
SCRIPTDIR:=./chip/${CHIP}/util
diff --git a/chip/ish/config_chip.h b/chip/ish/config_chip.h
index e83e9fc065..c595e825b9 100644
--- a/chip/ish/config_chip.h
+++ b/chip/ish/config_chip.h
@@ -71,9 +71,6 @@
/* Customize the build */
/* Optional features present on this chip */
-/* Note: ISH does not use the LPC bus but the protocol. */
-/* #define CONFIG_HOSTCMD_LPC */
-
/* Macro used with gpio.inc, ISH only has port 0 */
#define GPIO_PIN(index) 0, (1 << (index))
#define GPIO_PIN_MASK(m) .port = 0, .mask = (m)
diff --git a/chip/ish/ipc.c b/chip/ish/ipc.c
deleted file mode 100644
index 3a504d479d..0000000000
--- a/chip/ish/ipc.c
+++ /dev/null
@@ -1,392 +0,0 @@
-/* Copyright 2016 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.
- */
-
-/* IPC module for ISH */
-
-/**
- * IPC - Inter Processor Communication
- * -----------------------------------
- *
- * IPC is a bi-directional doorbell based message passing interface sans
- * session and transport layers, between hardware blocks. ISH uses IPC to
- * communicate with the Host, PMC (Power Management Controller), CSME
- * (Converged Security and Manageability Engine), Audio, Graphics and ISP.
- *
- * Both the initiator and target ends each have a 32-bit doorbell register and
- * 128-byte message regions. In addition, the following register pairs help in
- * synchronizing IPC.
- *
- * - Peripheral Interrupt Status Register (PISR)
- * - Peripheral Interrupt Mask Register (PIMR)
- * - Doorbell Clear Status Register (DB CSR)
- */
-
-#include "registers.h"
-#include "console.h"
-#include "hooks.h"
-#include "host_command.h"
-#include "lpc.h"
-#include "task.h"
-#include "timer.h"
-#include "util.h"
-#include "ipc.h"
-
-#define CPUTS(outstr) cputs(CC_LPC, outstr)
-#define CPRINTS(format, args...) cprints(CC_LPC, format, ## args)
-#define CPRINTF(format, args...) cprintf(CC_LPC, format, ## args)
-
-static struct host_packet ipc_packet; /* For host command processing */
-static struct host_cmd_handler_args host_cmd_args;
-static uint8_t host_cmd_flags; /* Flags from host command */
-static uint8_t params_copy[EC_LPC_HOST_PACKET_SIZE] __aligned(4);
-static uint8_t mem_mapped[0x200] __attribute__ ((section(".bss.big_align")));
-static struct ec_lpc_host_args *const ipc_host_args =
- (struct ec_lpc_host_args *)mem_mapped;
-
-/* Array of peer contexts */
-struct ipc_if_ctx ipc_peer_ctxs[IPC_PEERS_COUNT] = {
- [IPC_PEER_HOST_ID] = {
- .in_msg_reg = IPC_HOST2ISH_MSG_REGS,
- .out_msg_reg = IPC_ISH2HOST_MSG_REGS,
- .in_drbl_reg = IPC_HOST2ISH_DOORBELL,
- .out_drbl_reg = IPC_ISH2HOST_DOORBELL,
- .clr_bit = IPC_INT_ISH2HOST_CLR_BIT,
- .irq_in = ISH_IPC_HOST2ISH_IRQ,
- .irq_clr = ISH_IPC_ISH2HOST_CLR_IRQ,
- },
- /* Other peers (PMC, CSME, etc) to be added when required */
-};
-
-/* Peripheral Interrupt Mask Register bits */
-static uint8_t pimr_bit_array[IPC_PEERS_COUNT][3] = {
- {
- IPC_PIMR_HOST2ISH_OFFS,
- IPC_PIMR_HOST2ISH_OFFS,
- IPC_PIMR_ISH2HOST_CLR_OFFS
- },
-};
-
-/* Get protocol information */
-static int ipc_get_protocol_info(struct host_cmd_handler_args *args)
-{
- struct ec_response_get_protocol_info *r = args->response;
-
- memset(r, 0, sizeof(*r));
- r->protocol_versions = (1 << 3);
- r->max_request_packet_size = EC_LPC_HOST_PACKET_SIZE;
- r->max_response_packet_size = EC_LPC_HOST_PACKET_SIZE;
- r->flags = 0;
-
- args->response_size = sizeof(*r);
-
- return EC_SUCCESS;
-}
-DECLARE_HOST_COMMAND(EC_CMD_GET_PROTOCOL_INFO, ipc_get_protocol_info,
- EC_VER_MASK(0));
-
-/* Set/un-set PIMR bits */
-static void ipc_set_pimr(uint8_t peer_id, int set,
- enum pimr_signal_type signal_type)
-{
- uint32_t new_pimr_val;
-
- new_pimr_val = (1 << (pimr_bit_array[peer_id][signal_type]));
-
- interrupt_disable();
-
- if (set)
- REG32(IPC_PIMR) |= new_pimr_val;
- else
- REG32(IPC_PIMR) &= ~new_pimr_val;
-
- interrupt_enable();
-}
-
-/**
- * ipc_read: Host -> ISH communication
- *
- * 1. Host SW checks HOST2ISH doorbell bit[31] to ensure it is cleared.
- * 2. Host SW writes data to HOST2ISH message registers (upto 128 bytes).
- * 3. Host SW writes to HOST2ISH doorbell register, setting bit [31].
- * 4. ISH FW recieves interrupt, checks PISR[0] to realize the event.
- * 5. After reading data, ISH FW clears HOST2ISH DB bit[31].
- * 6. Host SW recieves interrupt, reads Host PISR bit[8] to realize
- * the message was consumed by ISH FW.
- */
-static int ipc_read(uint8_t peer_id, void *out_buff, uint32_t buff_size)
-{
-#ifdef ISH_DEBUG
- int i;
-#endif
- struct ipc_if_ctx *ctx;
- int retval = EC_SUCCESS;
-
- ctx = &ipc_peer_ctxs[peer_id];
-
- if (buff_size > IPC_MSG_MAX_SIZE)
- retval = IPC_FAILURE;
-
- if (retval >= 0) {
- /* Copy message to out buffer. */
- memcpy(out_buff, (const uint32_t *)ctx->in_msg_reg, buff_size);
- retval = buff_size;
-
-#ifdef ISH_DEBUG
- CPRINTF("ipc_read, len=0x%0x [", buff_size);
- for (i = 0; i < buff_size; i++)
- CPRINTF("0x%0x ", (uint8_t) ((char *)out_buff)[i]);
- CPUTS("]\n");
-#endif
- }
-
- REG32(ctx->in_drbl_reg) = 0;
- ipc_set_pimr(peer_id, SET_PIMR, PIMR_SIGNAL_IN);
-
- return retval;
-}
-
-static int ipc_wait_until_msg_consumed(struct ipc_if_ctx *ctx, int timeout)
-{
- int wait_sts = 0;
- uint32_t drbl;
-
- drbl = REG32(ctx->out_drbl_reg);
- if (!(drbl & IPC_DRBL_BUSY_BIT)) {
- /* doorbell is already cleared. we can continue */
- return 0;
- }
-
- while (1) {
- wait_sts = task_wait_event_mask(EVENT_FLAG_BIT_WRITE_IPC,
- timeout);
- drbl = REG32(ctx->out_drbl_reg);
-
- if (!(drbl & IPC_DRBL_BUSY_BIT)) {
- return 0;
- } else if (wait_sts != 0) {
- /* timeout */
- return wait_sts;
- }
- }
-}
-
-/**
- * ipc_write: ISH -> Host Communication
- *
- * 1. ISH FW ensures ISH2HOST doorbell busy bit [31] is cleared.
- * 2. ISH FW writes data (upto 128 bytes) to ISH2HOST message registers.
- * 3. ISH FW writes to ISH2HOST doorbell, busy bit (31) is set.
- * 4. Host SW receives interrupt, reads host PISR[0] to realize event.
- * 5. Upon reading data, Host driver clears ISH2HOST doorbell busy bit. This
- * de-asserts the interrupt.
- * 6. ISH FW also receieves an interrupt for the clear event.
- */
-static int ipc_write(uint8_t peer_id, void *buff, uint32_t buff_size)
-{
- struct ipc_if_ctx *ctx;
- uint32_t drbl_val = 0;
-#ifdef ISH_DEBUG
- int i;
-#endif
-
- ctx = &ipc_peer_ctxs[peer_id];
-
- if (ipc_wait_until_msg_consumed(ctx, IPC_TIMEOUT)) {
- /* timeout */
- return IPC_FAILURE;
- }
-#ifdef ISH_DEBUG
- CPRINTF("ipc_write, len=0x%0x [", buff_size);
- for (i = 0; i < buff_size; i++)
- CPRINTF("0x%0x ", (uint8_t) ((char *)buff)[i]);
- CPUTS("]\n");
-#endif
-
- /* write message */
- if (buff_size <= IPC_MSG_MAX_SIZE) {
- /* write to message register */
- memcpy((uint32_t *) ctx->out_msg_reg, buff, buff_size);
- drbl_val = IPC_BUILD_HEADER(buff_size, IPC_PROTOCOL_ECP,
- SET_BUSY);
- } else {
- return IPC_FAILURE;
- }
-
- /* write doorbell */
- REG32(ctx->out_drbl_reg) = drbl_val;
-
- return EC_SUCCESS;
-}
-
-uint8_t *lpc_get_memmap_range(void)
-{
- return mem_mapped + 0x100;
-}
-
-static uint8_t *ipc_get_hostcmd_data_range(void)
-{
- return mem_mapped;
-}
-
-static void ipc_send_response_packet(struct host_packet *pkt)
-{
- ipc_write(IPC_PEER_HOST_ID, pkt->response, pkt->response_size);
-}
-
-void lpc_update_host_event_status(void)
-{
-}
-
-void lpc_clear_acpi_status_mask(uint8_t mask)
-{
-}
-
-/**
- * IPC interrupts are recieved by the FW when a) Host SW rings doorbell and
- * b) when Host SW clears doorbell busy bit [31].
- *
- * Doorbell Register (DB) bits
- * ----+-------+--------+-----------+--------+------------+--------------------
- * 31 | 30 29 | 28-20 |19 18 17 16| 15 14 | 13 12 11 10| 9 8 7 6 5 4 3 2 1 0
- * ----+-------+--------+-----------+--------+------------+--------------------
- * Busy|Options|Reserved| Command |Reserved| Protocol | Message Length
- * ----+-------+--------+-----------+--------+------------+--------------------
- *
- * ISH Peripheral Interrupt Status Register:
- * Bit 0 - If set, indicates interrupt was caused by setting Host2ISH DB
- *
- * ISH Peripheral Interrupt Mask Register
- * Bit 0 - If set, mask interrupt caused by Host2ISH DB
- *
- * ISH Peripheral DB Clear Status Register
- * Bit 0 - If set, indicates interrupt was caused by clearing Host2ISH DB
- */
-static void ipc_interrupt_handler(void)
-{
- uint32_t pisr = REG32(IPC_PISR);
- uint32_t pimr = REG32(IPC_PIMR);
- uint32_t busy_clear = REG32(IPC_BUSY_CLEAR);
- uint32_t drbl = REG32(IPC_ISH2HOST_MSG_REGS);
- uint8_t proto, cmd;
-
- if ((pisr & IPC_PISR_HOST2ISH_BIT)
- && (pimr & IPC_PIMR_HOST2ISH_BIT)) {
-
- /* New message arrived */
- ipc_set_pimr(IPC_PEER_HOST_ID, UNSET_PIMR, PIMR_SIGNAL_IN);
- task_set_event(TASK_ID_IPC_COMM, EVENT_FLAG_BIT_READ_IPC, 0);
- proto = IPC_HEADER_GET_PROTOCOL(drbl);
- cmd = IPC_HEADER_GET_MNG_CMD(drbl);
-
- if ((proto == IPC_PROTOCOL_MNG) && (cmd == MNG_TIME_UPDATE))
- /* Ignoring time update from host */
- ;
- }
-
- if ((busy_clear & IPC_INT_ISH2HOST_CLR_BIT)
- && (pimr & IPC_PIMR_ISH2HOST_CLR_MASK_BIT)) {
- /* Written message cleared */
- REG32(IPC_BUSY_CLEAR) = IPC_ISH_FWSTS;
- task_set_event(TASK_ID_IPC_COMM, EVENT_FLAG_BIT_WRITE_IPC, 0);
- }
-}
-DECLARE_IRQ(ISH_IPC_HOST2ISH_IRQ, ipc_interrupt_handler);
-
-/* Task that listens for incomming IPC messages from Host and initiate host
- * command processing.
- */
-void ipc_comm_task(void)
-{
- int ret = 0;
- uint32_t out_drbl, pkt_len;
-
- for (;;) {
-
- ret = task_wait_event_mask(EVENT_FLAG_BIT_READ_IPC
- | EVENT_FLAG_BIT_WRITE_IPC, -1);
-
- if ((ret & EVENT_FLAG_BIT_WRITE_IPC))
- continue;
- else if (!(ret & EVENT_FLAG_BIT_READ_IPC))
- continue;
-
- /* Read the command byte. This clears the FRMH bit in
- * the status byte.
- */
- out_drbl = REG32(IPC_HOST2ISH_DOORBELL);
- pkt_len = out_drbl & IPC_HEADER_LENGTH_MASK;
-
- ret = ipc_read(IPC_PEER_HOST_ID, ipc_host_args, pkt_len);
- host_cmd_args.command = EC_COMMAND_PROTOCOL_3;
-
- host_cmd_args.result = EC_RES_SUCCESS;
- host_cmd_flags = ipc_host_args->flags;
-
- /* We only support new style command (v3) now */
- if (host_cmd_args.command == EC_COMMAND_PROTOCOL_3) {
- ipc_packet.send_response = ipc_send_response_packet;
-
- ipc_packet.request =
- (const void *)ipc_get_hostcmd_data_range();
- ipc_packet.request_temp = params_copy;
- ipc_packet.request_max = sizeof(params_copy);
- /* Don't know the request size so pass in
- * the entire buffer
- */
- ipc_packet.request_size = EC_LPC_HOST_PACKET_SIZE;
-
- ipc_packet.response =
- (void *)ipc_get_hostcmd_data_range();
- ipc_packet.response_max = EC_LPC_HOST_PACKET_SIZE;
- ipc_packet.response_size = 0;
-
- ipc_packet.driver_result = EC_RES_SUCCESS;
- host_packet_receive(&ipc_packet);
- usleep(10); /* To force yield */
-
- continue;
- } else {
- /* Old style command unsupported */
- host_cmd_args.result = EC_RES_INVALID_COMMAND;
- }
-
- /* Hand off to host command handler */
- host_command_received(&host_cmd_args);
- }
-}
-
-static void setup_ipc(void)
-{
-
- task_enable_irq(ISH_IPC_HOST2ISH_IRQ);
- task_enable_irq(ISH_IPC_ISH2HOST_CLR_IRQ);
-
- ipc_set_pimr(IPC_PEER_HOST_ID, SET_PIMR, PIMR_SIGNAL_IN);
- ipc_set_pimr(IPC_PEER_HOST_ID, SET_PIMR, PIMR_SIGNAL_CLR);
-}
-DECLARE_HOOK(HOOK_CHIPSET_STARTUP, setup_ipc, HOOK_PRIO_FIRST);
-
-static void ipc_init(void)
-{
- CPRINTS("ipc_init");
-
- /* Initialize host args and memory map to all zero */
- memset(ipc_host_args, 0, sizeof(*ipc_host_args));
- memset(lpc_get_memmap_range(), 0, EC_MEMMAP_SIZE);
-
- setup_ipc();
-
- CPUTS("*** MNG Host Command FW ready ****\n");
- REG32(IPC_ISH2HOST_DOORBELL) = IPC_BUILD_MNG_MSG(MNG_HC_FW_READY, 1);
-}
-DECLARE_HOOK(HOOK_INIT, ipc_init, HOOK_PRIO_INIT_LPC);
-
-/* On boards without a host, this command is used to set up IPC */
-static int ipc_command_init(int argc, char **argv)
-{
- ipc_init();
- return EC_SUCCESS;
-}
-DECLARE_CONSOLE_COMMAND(ipcinit, ipc_command_init, NULL, NULL);
diff --git a/chip/ish/ipc.h b/chip/ish/ipc.h
deleted file mode 100644
index 027079131e..0000000000
--- a/chip/ish/ipc.h
+++ /dev/null
@@ -1,97 +0,0 @@
-/* Copyright 2016 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.
- */
-
-/* IPC module for ISH */
-
-#ifndef __CROS_EC_IPC_H
-#define __CROS_ECIPC_H
-
-#define IPC_FAILURE -1
-#define IPC_TIMEOUT -1
-#define UNSET_PIMR 0
-#define SET_PIMR 1
-#define SET_BUSY 1
-
-#define IPC_PROTOCOL_MNG 3 /* Management protocol */
-#define IPC_PROTOCOL_ECP 4 /* EC protocol */
-#define MNG_TIME_UPDATE 5
-#define MNG_HC_FW_READY 3 /* host command ready */
-
-#define EVENT_FLAG_BIT_READ_IPC (1<<0)
-#define EVENT_FLAG_BIT_WRITE_IPC (1<<2)
-
-#define IPC_PIMR_HOST2ISH_OFFS (0)
-#define IPC_PIMR_HOST2ISH_OFFS (0)
-#define IPC_PIMR_ISH2HOST_CLR_OFFS (11)
-#define IPC_INT_ISH2HOST_CLR_OFFS (0)
-#define IPC_PISR_HOST2ISH_OFFS IPC_PIMR_HOST2ISH_OFFS
-#define IPC_MSG_MAX_SIZE 0x80
-#define IPC_DRBL_BUSY_OFFS (31)
-#define IPC_HEADER_PROTOCOL_OFFSET 10
-#define IPC_HEADER_PROTOCOL_MASK (0x0F)
-#define IPC_HEADER_MNG_CMD_MASK (0x0F)
-#define IPC_HEADER_LENGTH_MASK (0x03FF)
-#define IPC_HEADER_MNG_CMD_OFFSET 16
-#define IPC_HEADER_LENGTH_OFFSET 0
-#define IPC_OOB_MSG_OFFS (30)
-
-#define IPC_PIMR_HOST2ISH_BIT (1 << IPC_PIMR_HOST2ISH_OFFS)
-#define IPC_PIMR_ISH2HOST_CLR_MASK_BIT (1 << IPC_PIMR_ISH2HOST_CLR_OFFS)
-#define IPC_PIMR_HOST2ISH_BIT (1 << IPC_PIMR_HOST2ISH_OFFS)
-#define IPC_INT_ISH2HOST_CLR_BIT (1 << IPC_INT_ISH2HOST_CLR_OFFS)
-#define IPC_PISR_HOST2ISH_BIT (1 << IPC_PISR_HOST2ISH_OFFS)
-#define IPC_OOB_MSG_BIT (1 << IPC_OOB_MSG_OFFS)
-#define IPC_DRBL_BUSY_BIT (1 << IPC_DRBL_BUSY_OFFS)
-
-#define IPC_IS_BUSY(drbl_reg) \
- ((drbl_reg & IPC_DRBL_BUSY_BIT) == ((uint32_t) IPC_DRBL_BUSY_BIT))
-
-#define IPC_HEADER_GET_PROTOCOL(drbl_reg) \
- ((drbl_reg >> IPC_HEADER_PROTOCOL_OFFSET) & IPC_HEADER_PROTOCOL_MASK)
-
-#define IPC_HEADER_GET_MNG_CMD(drbl_reg) \
- ((drbl_reg >> IPC_HEADER_MNG_CMD_OFFSET) & IPC_HEADER_MNG_CMD_MASK)
-
-#define IPC_HEADER_GET_LENGTH(drbl_reg) \
- ((drbl_reg >> IPC_HEADER_LENGTH_OFFSET) & IPC_HEADER_LENGTH_MASK)
-
-#define IPC_BUILD_HEADER(length, protocol, busy) \
- ((busy << IPC_DRBL_BUSY_OFFS) \
- | (protocol << IPC_HEADER_PROTOCOL_OFFSET) \
- | (length << IPC_HEADER_LENGTH_OFFSET))
-
-#define IPC_BUILD_MNG_MSG(cmd, length) \
- ((1 << IPC_DRBL_BUSY_OFFS)\
- | (IPC_PROTOCOL_MNG << IPC_HEADER_PROTOCOL_OFFSET) \
- | (cmd << IPC_HEADER_MNG_CMD_OFFSET)\
- | (length << IPC_HEADER_LENGTH_OFFSET))
-
-struct ipc_if_ctx {
- uint32_t in_msg_reg;
- uint32_t out_msg_reg;
- uint32_t in_drbl_reg;
- uint32_t out_drbl_reg;
- uint32_t clr_bit;
- uint8_t irq_in;
- uint8_t irq_clr;
-};
-
-struct ipc_oob_msg {
- uint32_t address;
- uint32_t length;
-};
-
-enum pimr_signal_type {
- PIMR_SIGNAL_IN = 0,
- PIMR_SIGNAL_OUT = 1,
- PIMR_SIGNAL_CLR = 2,
-};
-
-enum {
- IPC_PEER_HOST_ID = 0,
- IPC_PEERS_COUNT,
-};
-
-#endif /* __CROS_ECIPC_H */
diff --git a/include/config.h b/include/config.h
index 595971203c..122523a5e9 100644
--- a/include/config.h
+++ b/include/config.h
@@ -2398,17 +2398,9 @@
#undef CONFIG_LOW_POWER_S0
/*
- * Enable Host Embedded Controller Interface protocol. ISH (Intel Sensor Hub)
- * Uses this protocol for the basis of communication.
+ * Enable HID subsystem using HECI on Intel ISH (Integrated Sensor Hub)
*/
-#undef CONFIG_HECI
-
-/*
- * Enable inter-processor communication between ISH (Intel Sensor Hub) and
- * other modules in Intel SoC(listed below).
- * - HOST(x64), CSME, PMC, cAVS, and ISP
- */
-#undef CONFIG_ISH_IPC
+#undef CONFIG_HID_HECI
/* Support host command interface over HECI */
#undef CONFIG_HOSTCMD_HECI