提交 88f94c7f 编写于 作者: B Boqun Feng 提交者: Lorenzo Pieralisi

PCI: hv: Turn on the host bridge probing on ARM64

Now we have everything we need, just provide a proper sysdata type for
the bus to use on ARM64 and everything else works.

Link: https://lore.kernel.org/r/20210726180657.142727-9-boqun.feng@gmail.comSigned-off-by: NBoqun Feng <boqun.feng@gmail.com>
Signed-off-by: NLorenzo Pieralisi <lorenzo.pieralisi@arm.com>
上级 9e7f9178
...@@ -40,6 +40,7 @@ ...@@ -40,6 +40,7 @@
#include <linux/kernel.h> #include <linux/kernel.h>
#include <linux/module.h> #include <linux/module.h>
#include <linux/pci.h> #include <linux/pci.h>
#include <linux/pci-ecam.h>
#include <linux/delay.h> #include <linux/delay.h>
#include <linux/semaphore.h> #include <linux/semaphore.h>
#include <linux/irqdomain.h> #include <linux/irqdomain.h>
...@@ -448,7 +449,11 @@ enum hv_pcibus_state { ...@@ -448,7 +449,11 @@ enum hv_pcibus_state {
}; };
struct hv_pcibus_device { struct hv_pcibus_device {
#ifdef CONFIG_X86
struct pci_sysdata sysdata; struct pci_sysdata sysdata;
#elif defined(CONFIG_ARM64)
struct pci_config_window sysdata;
#endif
struct pci_host_bridge *bridge; struct pci_host_bridge *bridge;
struct fwnode_handle *fwnode; struct fwnode_handle *fwnode;
/* Protocol version negotiated with the host */ /* Protocol version negotiated with the host */
...@@ -3075,7 +3080,9 @@ static int hv_pci_probe(struct hv_device *hdev, ...@@ -3075,7 +3080,9 @@ static int hv_pci_probe(struct hv_device *hdev,
dom_req, dom); dom_req, dom);
hbus->bridge->domain_nr = dom; hbus->bridge->domain_nr = dom;
#ifdef CONFIG_X86
hbus->sysdata.domain = dom; hbus->sysdata.domain = dom;
#endif
hbus->hdev = hdev; hbus->hdev = hdev;
INIT_LIST_HEAD(&hbus->children); INIT_LIST_HEAD(&hbus->children);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册