Hi Mani, On Thu, 31 Dec 2020 at 08:18, Manivannan Sadhasivam <manivannan.sadhasivam@xxxxxxxxxx> wrote: > > On Tue, Dec 29, 2020 at 09:43:48AM +0100, Loic Poulain wrote: > > In AER capable root complex, errors are reported to the host which > > can then act accordingly and perform PCI recovering procedure. > > > > This patch enables error reporting and implements error_detected, > > slot_reset and resume callbacks. > > > > Signed-off-by: Loic Poulain <loic.poulain@xxxxxxxxxx> > > Reviewed-by Hemant Kumar <hemantk@xxxxxxxxxxxxxx> > > --- > > drivers/bus/mhi/pci_generic.c | 50 +++++++++++++++++++++++++++++++++++++++++++ > > 1 file changed, 50 insertions(+) > > +static pci_ers_result_t mhi_pci_slot_reset(struct pci_dev *pdev) > > +{ > > + if (pci_enable_device(pdev)) { > > + dev_err(&pdev->dev, "Cannot re-enable PCI device after reset.\n"); > > + return PCI_ERS_RESULT_DISCONNECT; > > + } > > + > > This callback will be called after PCI slot reset, so we should also be resetting > the device after enabling it. Yes, but that is done in mhi_pci_io_resume. >From the PCI error recovery documentation, "drivers should not restart normal I/O processing operations at this point (in slot_reset) If all device drivers report success on this callback, the platform will call resume() to complete the sequence, and let the driver restart normal I/O processing." The actual MHI PCI/recovery is then done in resume (mhi_pci_io_resume). Regards, Loic