image_state       668 drivers/misc/cxl/pci.c 	u8 image_state;
image_state       675 drivers/misc/cxl/pci.c 	if ((rc = CXL_READ_VSEC_IMAGE_STATE(dev, vsec, &image_state))) {
image_state       681 drivers/misc/cxl/pci.c 		image_state |= CXL_VSEC_PERST_LOADS_IMAGE;
image_state       683 drivers/misc/cxl/pci.c 		image_state &= ~CXL_VSEC_PERST_LOADS_IMAGE;
image_state       686 drivers/misc/cxl/pci.c 		image_state |= CXL_VSEC_PERST_SELECT_USER;
image_state       688 drivers/misc/cxl/pci.c 		image_state &= ~CXL_VSEC_PERST_SELECT_USER;
image_state       690 drivers/misc/cxl/pci.c 	if ((rc = CXL_WRITE_VSEC_IMAGE_STATE(dev, vsec, image_state))) {
image_state      1293 drivers/misc/cxl/pci.c 	u8 image_state;
image_state      1311 drivers/misc/cxl/pci.c 	CXL_READ_VSEC_IMAGE_STATE(dev, vsec, &image_state);
image_state      1312 drivers/misc/cxl/pci.c 	adapter->user_image_loaded = !!(image_state & CXL_VSEC_USER_IMAGE_LOADED);
image_state      1313 drivers/misc/cxl/pci.c 	adapter->perst_select_user = !!(image_state & CXL_VSEC_USER_IMAGE_LOADED);
image_state      1314 drivers/misc/cxl/pci.c 	adapter->perst_loads_image = !!(image_state & CXL_VSEC_PERST_LOADS_IMAGE);