mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-01-17 18:36:00 +00:00
mei: bus-fixup: change pxp mode only if message was sent
Move PXP mode state machine to SETUP mode only if memory ready message sent successfully to the firmware. Leave it in INIT mode otherwise to allow try to send message later. Signed-off-by: Alexander Usyskin <alexander.usyskin@intel.com> Link: https://lore.kernel.org/r/20221116124735.2493847-3-alexander.usyskin@intel.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
83f47eea74
commit
0ef77698b8
@ -266,12 +266,13 @@ static void mei_gsc_mkhi_fix_ver(struct mei_cl_device *cldev)
|
||||
|
||||
if (cldev->bus->pxp_mode == MEI_DEV_PXP_INIT) {
|
||||
ret = mei_gfx_memory_ready(cldev);
|
||||
if (ret < 0)
|
||||
if (ret < 0) {
|
||||
dev_err(&cldev->dev, "memory ready command failed %d\n", ret);
|
||||
else
|
||||
} else {
|
||||
dev_dbg(&cldev->dev, "memory ready command sent\n");
|
||||
cldev->bus->pxp_mode = MEI_DEV_PXP_SETUP;
|
||||
}
|
||||
/* we go to reset after that */
|
||||
cldev->bus->pxp_mode = MEI_DEV_PXP_SETUP;
|
||||
goto out;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user