Deepti Deshatty has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/81668?usp=email )
Change subject: [DO NOT MERGE] remove pmc ipc communication ......................................................................
[DO NOT MERGE] remove pmc ipc communication
Change-Id: Iad12e8eb3f2f93dd3a64a5cd1a16f67f71618c41 --- M src/soc/intel/common/block/tcss/tcss.c 1 file changed, 4 insertions(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/68/81668/1
diff --git a/src/soc/intel/common/block/tcss/tcss.c b/src/soc/intel/common/block/tcss/tcss.c index 1c4b9b3..e4b7a22 100644 --- a/src/soc/intel/common/block/tcss/tcss.c +++ b/src/soc/intel/common/block/tcss/tcss.c @@ -69,6 +69,7 @@ static int send_pmc_req(int cmd_type, const struct pmc_ipc_buffer *req, struct pmc_ipc_buffer *res, uint32_t size) { +#if 0 uint32_t cmd_reg; uint32_t res_reg; int tries = 2; @@ -113,6 +114,9 @@
printk(BIOS_ERR, "pmc_send_ipc_cmd failed after retries\n"); return -1; +#endif + printk(BIOS_ERR, "** bypass sending pmc_send_ipc_cmd \n"); + return 0; }
static int send_pmc_disconnect_request(int port, const struct tcss_port_map *port_map)