diff options
author | Paul Mackerras <paulus@samba.org> | 2005-10-10 08:52:26 -0400 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2005-10-10 08:52:26 -0400 |
commit | 76f9f87fa51c9fb62c17986e2066ed467ac2da05 (patch) | |
tree | 7e9d351fe87d543b4054a2869718d4b6370b6a29 /arch | |
parent | 40ef8cbc6d360e564573eb19582249c35d8ba330 (diff) |
powerpc: Get iseries to compile with ARCH=powerpc
This moves the Device_List member from struct device_node to
struct pci_dn, which cleans up the device_node and makes the code
a little simpler.
Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/powerpc/platforms/iseries/hvcall.S | 1 | ||||
-rw-r--r-- | arch/powerpc/platforms/iseries/iommu.c | 7 | ||||
-rw-r--r-- | arch/powerpc/platforms/iseries/pci.c | 15 |
3 files changed, 10 insertions, 13 deletions
diff --git a/arch/powerpc/platforms/iseries/hvcall.S b/arch/powerpc/platforms/iseries/hvcall.S index 9901c0ec1415..07ae6ad5f49f 100644 --- a/arch/powerpc/platforms/iseries/hvcall.S +++ b/arch/powerpc/platforms/iseries/hvcall.S | |||
@@ -10,6 +10,7 @@ | |||
10 | 10 | ||
11 | #include <asm/ppc_asm.h> | 11 | #include <asm/ppc_asm.h> |
12 | #include <asm/processor.h> | 12 | #include <asm/processor.h> |
13 | #include <asm/ptrace.h> /* XXX for STACK_FRAME_OVERHEAD */ | ||
13 | 14 | ||
14 | .text | 15 | .text |
15 | 16 | ||
diff --git a/arch/powerpc/platforms/iseries/iommu.c b/arch/powerpc/platforms/iseries/iommu.c index 9ac735d5b817..e40c50b7cefc 100644 --- a/arch/powerpc/platforms/iseries/iommu.c +++ b/arch/powerpc/platforms/iseries/iommu.c | |||
@@ -89,11 +89,10 @@ static void tce_free_iSeries(struct iommu_table *tbl, long index, long npages) | |||
89 | */ | 89 | */ |
90 | static struct iommu_table *iommu_table_find(struct iommu_table * tbl) | 90 | static struct iommu_table *iommu_table_find(struct iommu_table * tbl) |
91 | { | 91 | { |
92 | struct device_node *dp; | 92 | struct pci_dn *pdn; |
93 | |||
94 | list_for_each_entry(dp, &iSeries_Global_Device_List, Device_List) { | ||
95 | struct iommu_table *it = PCI_DN(dp)->iommu_table; | ||
96 | 93 | ||
94 | list_for_each_entry(pdn, &iSeries_Global_Device_List, Device_List) { | ||
95 | struct iommu_table *it = pdn->iommu_table; | ||
97 | if ((it != NULL) && | 96 | if ((it != NULL) && |
98 | (it->it_type == TCE_PCI) && | 97 | (it->it_type == TCE_PCI) && |
99 | (it->it_offset == tbl->it_offset) && | 98 | (it->it_offset == tbl->it_offset) && |
diff --git a/arch/powerpc/platforms/iseries/pci.c b/arch/powerpc/platforms/iseries/pci.c index 70185dec940b..46879d7de925 100644 --- a/arch/powerpc/platforms/iseries/pci.c +++ b/arch/powerpc/platforms/iseries/pci.c | |||
@@ -220,7 +220,7 @@ static struct device_node *build_device_node(HvBusNumber Bus, | |||
220 | return NULL; | 220 | return NULL; |
221 | } | 221 | } |
222 | node->data = pdn; | 222 | node->data = pdn; |
223 | list_add_tail(&node->Device_List, &iSeries_Global_Device_List); | 223 | list_add_tail(&pdn->Device_List, &iSeries_Global_Device_List); |
224 | #if 0 | 224 | #if 0 |
225 | pdn->DsaAddr = ((u64)Bus << 48) + ((u64)SubBus << 40) + ((u64)0x10 << 32); | 225 | pdn->DsaAddr = ((u64)Bus << 48) + ((u64)SubBus << 40) + ((u64)0x10 << 32); |
226 | #endif | 226 | #endif |
@@ -549,15 +549,12 @@ EXPORT_SYMBOL(iSeries_memcpy_fromio); | |||
549 | */ | 549 | */ |
550 | static struct device_node *find_Device_Node(int bus, int devfn) | 550 | static struct device_node *find_Device_Node(int bus, int devfn) |
551 | { | 551 | { |
552 | struct list_head *pos; | 552 | struct pci_dn *pdn; |
553 | |||
554 | list_for_each(pos, &iSeries_Global_Device_List) { | ||
555 | struct device_node *node = | ||
556 | list_entry(pos, struct device_node, Device_List); | ||
557 | 553 | ||
558 | if ((bus == ISERIES_BUS(node)) && | 554 | list_for_each_entry(pdn, &iSeries_Global_Device_List, Device_List) { |
559 | (devfn == PCI_DN(node)->devfn)) | 555 | if ((bus == pdn->DsaAddr.Dsa.busNumber) && |
560 | return node; | 556 | (devfn == pdn->devfn)) |
557 | return pdn->node; | ||
561 | } | 558 | } |
562 | return NULL; | 559 | return NULL; |
563 | } | 560 | } |