All of lore.kernel.org
 help / color / mirror / Atom feed
From: Kenji Kaneshige <kaneshige.kenji@jp.fujitsu.com>
To: 松本博郎 <matsumoto.hiroo@jp.fujitsu.com>
Cc: Bjorn Helgaas <bhelgaas@google.com>,
	jbarnes@virtuousgeek.org, linux-pci@vger.kernel.org
Subject: Re: [RFC] pciehp: Add archdata setting
Date: Tue, 03 Apr 2012 16:53:18 +0900	[thread overview]
Message-ID: <4F7AAC6E.5070809@jp.fujitsu.com> (raw)
In-Reply-To: <4F7A9816.2080700@jp.fujitsu.com>

(2012/04/03 15:26), 松本博郎 wrote:
> Hi
> 
> 
> Thanks for your comment.
> 
> I have mistake.
> archdata.dma_ops is always NULL on x86 platform.
> On x86 platform, probe with pciehp is same as probe with initcall.
> I'm so sorry.
> 
> But archdata on powerpc platform is set with initcall.
> Call stack is as below.
> 1. pcibios_init
> 2. pcibios_scan_phb
> 3. pci_scan_child_bus
> 4. pci_scan_bridge
> 5. pci_scan_child_bus
> 6. pci_scan_bridge
> 7. pci_scan_child_bus
> 8. pcibios_setup_bus_devices
> 
> In pcibios_setup_bus_devices, archdata is set with set_dma_ops and set_dma_offset.
> But set_dma_ops and set_dma_offset are defined only at powerpc and microblaze (Why...).
> 
> Can architecture code, like arch/powerpc/kernel/pci.c, be called from pciehp ?

Hello Hiroo,

Pcidhp can call the arch specific code, but I don't think it's a good idea.
It's not pciehp specific problem. So it should be done in more generic way.
As Bjorn said, it would be nice if we could use the same code for both
devices present at boot and hot-added devices.

Regards,
Kenji Kaneshige


> 
> 
> Regards.
> 
> Hiroo MATSUMOTO (FUJITSU COMPUTER TECHNOLOGIES LIMITED)
> matsumoto.hiroo@jp.fujitsu.com
> 
>>> I'm trying to use pciehp on powerpc platform.
>>> I set e1000e card to PCI Express bridge that has PCI Express HotPlug
>>> Capability.
>>>
>>> There is problem when poweron PCI Express HotPlug slot with pciehp.
>>> e1000e driver needs dma_ops in struct dev_archdata, but archdata isn't
>>> set (dma_ops is NULL) when probe from pciehp.
>>> Then e1000e driver returns error as below.
>>>
>>> -sh-3.2# echo 1 > /sys/bus/pci/slots/1/power
>>> <snip>
>>> [ 65.493662] pci 0000:03:00.0: BAR 2: set to [io
>>> 0xff7ee000-0xff7ee01f] (PCI address [0x1000-0x101f])
>>> [ 65.502890] pcieport 0000:02:01.0: PCI bridge to [bus 03-03]
>>> [ 65.508555] pcieport 0000:02:01.0: bridge window [io
>>> 0xff7ee000-0xff7eefff]
>>> [ 65.515785] pcieport 0000:02:01.0: bridge window [mem
>>> 0xa0100000-0xa01fffff]
>>> [ 65.523015] pcieport 0000:02:01.0: bridge window [mem
>>> 0xa0200000-0xa02fffff 64bit pref]
>>> [ 65.531238] pci 0000:03:00.0: no hotplug settings from platform
>>> [ 65.538361] e1000e 0000:03:00.0: Disabling ASPM L1
>>> [ 65.543616] e1000e 0000:03:00.0: enabling device (0000 -> 0002)
>>> [ 65.549876] e1000e 0000:03:00.0: No usable DMA configuration, aborting
>>> [ 65.557194] e1000e: probe of 0000:03:00.0 failed with error -5
>>> -sh-3.2# lspci
>>> <snip>
>>> 0000:03:00.0 Ethernet controller: Intel Corporation 82572EI Gigabit
>>> Ethernet Controller (Copper) (rev 06)
>>> <snip>
>>> -sh-3.2# ifconfig -a
>>> <snip> // There is no network interface for 82572EI
>>>
>>> If archdata.dma_ops is NULL on x86 platform, e1000e will get dma_ops
>>> without archdata.
>>> So e1000e driver doesn't return error.
>>>
>>> I think that archdata should be set before driver probe (e.g pciehp).
>>> I tried to fix it (pciehp-add-archdata.patch), but I'm not good at PCI
>>> driver..., so please give better way.
>>
>> Interesting. It would be nice if we could set archdata the same way
>> for both devices present at boot and those hot-added later. Can you
>> figure out where archdata is set for devices present at boot?
>>
>> Bjorn
>>
>>> Signed-off-by: Hiroo MATSUMOTO <matsumoto.hiroo@jp.fujitsu.com>
>>> diff --git a/drivers/pci/hotplug/pciehp_pci.c b/drivers/pci/hotplug/pciehp_pci.c
>>> index a4031df..a021fbc 100644
>>> --- a/drivers/pci/hotplug/pciehp_pci.c
>>> +++ b/drivers/pci/hotplug/pciehp_pci.c
>>> @@ -89,6 +89,7 @@ int pciehp_configure_device(struct slot *p_slot)
>>> pciehp_add_bridge(dev);
>>> }
>>> pci_dev_put(dev);
>>> + dev->dev.archdata = bridge->dev.archdata;
>>> }
>>>
>>> pci_assign_unassigned_bridge_resources(bridge);
>>>
>>
> 
> 


  reply	other threads:[~2012-04-03  7:53 UTC|newest]

Thread overview: 16+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-04-02  7:42 [RFC] pciehp: Add archdata setting 松本博郎
2012-04-02 14:13 ` Bjorn Helgaas
2012-04-03  6:26   ` 松本博郎
2012-04-03  7:53     ` Kenji Kaneshige [this message]
2012-04-03  7:15   ` Kenji Kaneshige
2012-04-04  8:03     ` 松本博郎
2012-04-12  5:00       ` Hiroo Matsumoto
2012-04-12 13:12         ` Bjorn Helgaas
2012-04-12 23:59           ` Hiroo Matsumoto
2012-04-16  6:32             ` Hiroo Matsumoto
2012-04-23 17:21               ` Bjorn Helgaas
2012-04-26 10:00                 ` Hiroo Matsumoto
2012-05-10 10:38                 ` Hiroo Matsumoto
2012-05-10 12:09                   ` Kenji Kaneshige
2012-05-15 23:20                     ` Bjorn Helgaas
2012-05-23  1:33                       ` Hiroo Matsumoto

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=4F7AAC6E.5070809@jp.fujitsu.com \
    --to=kaneshige.kenji@jp.fujitsu.com \
    --cc=bhelgaas@google.com \
    --cc=jbarnes@virtuousgeek.org \
    --cc=linux-pci@vger.kernel.org \
    --cc=matsumoto.hiroo@jp.fujitsu.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.