diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/config.h | 15 | ||||
-rw-r--r-- | include/console_channel.inc | 3 |
2 files changed, 18 insertions, 0 deletions
diff --git a/include/config.h b/include/config.h index 39f7048ca9..16326ae7c7 100644 --- a/include/config.h +++ b/include/config.h @@ -2018,6 +2018,21 @@ #undef CONFIG_I2C_MULTI_PORT_CONTROLLER /*****************************************************************************/ +/* IPI configuration. Support mt_scp only for now. */ + +/* EC support Inter-Processor Interrupt. */ +#undef CONFIG_IPI + +/* + * IPC0/IPI shared object address. This is the starting address of the send + * object and the receive object. Each object contains a buffer. + */ +#undef CONFIG_IPC_SHARED_OBJ_ADDR + +/* "buffer" size of ipc_shared_obj. */ +#undef CONFIG_IPC_SHARED_OBJ_BUF_SIZE + +/*****************************************************************************/ /* Current/Power monitor */ /* diff --git a/include/console_channel.inc b/include/console_channel.inc index a299292d89..0f931e88f7 100644 --- a/include/console_channel.inc +++ b/include/console_channel.inc @@ -49,6 +49,9 @@ CONSOLE_CHANNEL(CC_HOSTCMD, "hostcmd") #ifdef CONFIG_I2C CONSOLE_CHANNEL(CC_I2C, "i2c") #endif +#ifdef CONFIG_IPI +CONSOLE_CHANNEL(CC_IPI, "ipi") +#endif CONSOLE_CHANNEL(CC_KEYBOARD, "keyboard") #ifdef HAS_TASK_KEYSCAN CONSOLE_CHANNEL(CC_KEYSCAN, "keyscan") |