soc/intel/common: Remove HOST_RESET_ONLY reset type support
Remove HOST_RESET_ONLY reset type of GLOBAL_RESET HECI command as it is not supported. Change-Id: I17171e1e5fe79710142369499d3d904a5ba98636 Signed-off-by: Sridhar Siricilla <sridhar.siricilla@intel.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/39149 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Rizwan Qureshi <rizwan.qureshi@intel.com> Reviewed-by: Angel Pons <th3fanbus@gmail.com>
This commit is contained in:
committed by
Patrick Georgi
parent
aaf28d2507
commit
c2a2d2ba26
@@ -609,8 +609,7 @@ uint32_t me_read_config32(int offset)
|
|||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Sends GLOBAL_RESET_REQ cmd to CSE.The reset type can be GLOBAL_RESET/
|
* Sends GLOBAL_RESET_REQ cmd to CSE.The reset type can be GLOBAL_RESET/CSE_RESET_ONLY.
|
||||||
* HOST_RESET_ONLY/CSE_RESET_ONLY.
|
|
||||||
*/
|
*/
|
||||||
int cse_request_global_reset(enum rst_req_type rst_type)
|
int cse_request_global_reset(enum rst_req_type rst_type)
|
||||||
{
|
{
|
||||||
@@ -632,8 +631,7 @@ int cse_request_global_reset(enum rst_req_type rst_type)
|
|||||||
size_t reply_size;
|
size_t reply_size;
|
||||||
|
|
||||||
printk(BIOS_DEBUG, "HECI: Global Reset(Type:%d) Command\n", rst_type);
|
printk(BIOS_DEBUG, "HECI: Global Reset(Type:%d) Command\n", rst_type);
|
||||||
if (!((rst_type == GLOBAL_RESET) ||
|
if (!(rst_type == GLOBAL_RESET || rst_type == CSE_RESET_ONLY)) {
|
||||||
(rst_type == HOST_RESET_ONLY) || (rst_type == CSE_RESET_ONLY))) {
|
|
||||||
printk(BIOS_ERR, "HECI: Unsupported reset type is requested\n");
|
printk(BIOS_ERR, "HECI: Unsupported reset type is requested\n");
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
@@ -121,7 +121,6 @@ uint8_t cse_wait_sec_override_mode(void);
|
|||||||
|
|
||||||
enum rst_req_type {
|
enum rst_req_type {
|
||||||
GLOBAL_RESET = 1,
|
GLOBAL_RESET = 1,
|
||||||
HOST_RESET_ONLY = 2,
|
|
||||||
CSE_RESET_ONLY = 3,
|
CSE_RESET_ONLY = 3,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user