diff options
author | Mark Nelson <markn@au1.ibm.com> | 2008-07-24 00:28:48 -0400 |
---|---|---|
committer | Benjamin Herrenschmidt <benh@kernel.crashing.org> | 2008-07-25 01:44:40 -0400 |
commit | 7886250e9d71b24d0205ac6798ee855fb3836318 (patch) | |
tree | f961bc97510d86aa56ab47b6154b2835c59965d8 /arch | |
parent | d6a61bfc06d6f2248f3e75f208d64e794082013c (diff) |
powerpc/cell: Fixed IOMMU mapping uses weak ordering for a pcie endpoint
At the moment the fixed mapping is by default strongly ordered (the
iommu_fixed=weak boot option must be used to make the fixed mapping weakly
ordered). If we're on a setup where the southbridge is being used in
endpoint mode (triblade and CAB boards) the default should be a weakly
ordered fixed mapping.
This adds a check so that if a node of type pcie-endpoint can be found in
the device tree the fixed mapping is set to be weak by default (but can be
overridden using iommu_fixed=strong).
Signed-off-by: Mark Nelson <markn@au1.ibm.com>
Acked-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/powerpc/platforms/cell/iommu.c | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/arch/powerpc/platforms/cell/iommu.c b/arch/powerpc/platforms/cell/iommu.c index 208005ca262c..031124a8e37b 100644 --- a/arch/powerpc/platforms/cell/iommu.c +++ b/arch/powerpc/platforms/cell/iommu.c | |||
@@ -1150,12 +1150,23 @@ static int iommu_fixed_disabled; | |||
1150 | 1150 | ||
1151 | static int __init setup_iommu_fixed(char *str) | 1151 | static int __init setup_iommu_fixed(char *str) |
1152 | { | 1152 | { |
1153 | struct device_node *pciep; | ||
1154 | |||
1153 | if (strcmp(str, "off") == 0) | 1155 | if (strcmp(str, "off") == 0) |
1154 | iommu_fixed_disabled = 1; | 1156 | iommu_fixed_disabled = 1; |
1155 | 1157 | ||
1156 | else if (strcmp(str, "weak") == 0) | 1158 | /* If we can find a pcie-endpoint in the device tree assume that |
1159 | * we're on a triblade or a CAB so by default the fixed mapping | ||
1160 | * should be set to be weakly ordered; but only if the boot | ||
1161 | * option WASN'T set for strong ordering | ||
1162 | */ | ||
1163 | pciep = of_find_node_by_type(NULL, "pcie-endpoint"); | ||
1164 | |||
1165 | if (strcmp(str, "weak") == 0 || (pciep && strcmp(str, "strong") != 0)) | ||
1157 | iommu_fixed_is_weak = 1; | 1166 | iommu_fixed_is_weak = 1; |
1158 | 1167 | ||
1168 | of_node_put(pciep); | ||
1169 | |||
1159 | return 1; | 1170 | return 1; |
1160 | } | 1171 | } |
1161 | __setup("iommu_fixed=", setup_iommu_fixed); | 1172 | __setup("iommu_fixed=", setup_iommu_fixed); |