lkml.org 
[lkml]   [2013]   [Jul]   [10]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
From
Date
SubjectRe: [PATCH 2/2] PCI,pciehp: avoid add a device already exist during pciehp_resume
On Tue, Jul 9, 2013 at 9:00 PM, Yijing Wang <wangyijing@huawei.com> wrote:
> Hi Bjorn,
> Thanks for your review and comments!
>
>>> We can use PCIe Device Serial Number to identify the device if
>>> device support DSN.
>>
>> I think I like the idea of this, especially because the Microsoft PCI
>> Hardware Compliance Test apparently requires DSN for hot-pluggable
>> PCIe devices [1], so it should be pretty universal.
>>
>> [1] http://www.techtalkz.com/microsoft-device-drivers-dtm/341362-dtm-pcihct-test-violates-pci-express-base-specification-revision-1-a.html
>>
>>> currently:
>>> 1. slot is empty before suspend, insert card during suspend.
>>> In this case, is safe, pciehp will add device by check adapter
>>> status register in pciehp_resume.
>>
>> Your patch doesn't change anything here.
>
> Yes, I only to make some changes for case 3/4.
>
>>
>>> 2. slot is non empty before suspend, remove card during suspend.
>>> Also be safe, pciehp will remove device by check adapter
>>> status register in pciehp_resume.
>>
>> Your patch doesn't change anything here. (But I think the driver
>> .remove() method will try to poke at the non-existent device; see
>> below.)
>
> I'm not sure the result of driver .remove() method to poke at the non-existent device.
> If driver .remove() method cannot detect the real device, remove action will be block ?
> If the slot support surprise hot remove, this action maybe safe. right?

If there's no device, config space accesses performed by .remove()
will fail (reads will return -1 data or error; writes will be
dropped). MMIO or I/O port accesses may fail with machine checks or
similar bad things. But I don't see a way around that except by
fixing drivers as we encounter issues like that.

Since you're not changing anything here, I don't think we should worry
about it for now.

> If the slot does not support surprise hot remove, but the device was already removed,
> we seem to have no other way to clean the stale data related to the old device.
>
> Now if we check adapter status in slot and found adapter is non existent, pciehp resume
> call pciehp_disable_slot() , in pciehp_disable_slot() function, we will check latch status,
> I guess this case latch is open(because slot is empty), this action will abort.
> But I have no platform to test it.
>
>>
>>> 3. slot is non empty before suspend, remove card during suspend
>>> and insert a new card.
>>> Now pciehp just call pciehp_enable_slot() roughly. We should
>>> remove the old card firstly, then add the new card.
>>
>> With your patch, I think we'll call the old driver's .remove() method
>> on the new device. This seems bad; see below.
>
> Ah, this is issue.
> What about power off slot first, then call the old driver's remove() method
> will not touch the new physical device. After the old driver's remove() cleanup,
> we call pciehp_enable_slot() to power on and enable the new device.

Turning off power to the slot seems like a reasonable approach. Then
we can run the old .remove() method in basically the same way we would
in case 2.

>> With your patch, if we remove and reinsert the same device while
>> suspended, we do nothing because the DSN didn't change. Previously we
>> called pciehp_enable_slot(). I don't know if we need to do anything
>> here or not.
>
> Mainly to avoid the redundant device add, the same like the changes for case 4

I don't know whether it's redundant or not. Obviously if we remove
and reinsert a device, we lose *all* state that was in the device. If
we lose everything even if the card stayed inserted the whole time we
were suspended, we must already deal with that and the "add" would be
redundant. But if the state of the card is different if it got pulled
and reinserted, the "add" would be necessary.

>>> 4. slot is non empty before suspend, no action during suspend.
>>> We should do nothing in pciehp_resume, but we call
>>> pciehp_enable_slot(), so some uncomfortable messages show like above.
>>> In this case, we can improve it a little by add a guard
>>> if (!list_empty(bus->devices)).
>>
>> This is the common case. Previously we called pciehp_enable_slot(),
>> and with your patch we do nothing. I think that seems sensible, but
>> this part should be split into a separate patch. That way we can keep
>> the benefit of this change even if we trip over something with the
>> other changes.
>
> OK, I will split this changes into a new patch.

Actually, without your DSN changes, I don't think we can distinguish
this from case 3. So I doubt it really could be split out.


\
 
 \ /
  Last update: 2013-07-11 00:07    [W:0.090 / U:0.060 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site