]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/commitdiff
x86: Move PCI IO ECS code to x86/pci
authorRobert Richter <robert.richter@amd.com>
Thu, 12 Jun 2008 18:19:23 +0000 (20:19 +0200)
committerIngo Molnar <mingo@elte.hu>
Tue, 8 Jul 2008 05:47:39 +0000 (07:47 +0200)
"Form follows function". Code is now where it belongs to.

Signed-off-by: Robert Richter <robert.richter@amd.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
arch/x86/kernel/cpu/amd.c
arch/x86/kernel/cpu/amd_64.c
arch/x86/kernel/cpu/cpu.h
arch/x86/kernel/setup.c
arch/x86/pci/Makefile_32
arch/x86/pci/amd_bus.c
arch/x86/pci/direct.c
arch/x86/pci/pci.h
include/asm-x86/cpufeature.h

index acc891ae590185b5392ed9cf59988bfd4576aee9..81a07ca65d4487d7f3133619210d287238ac411c 100644 (file)
@@ -266,9 +266,6 @@ static void __cpuinit init_amd(struct cpuinfo_x86 *c)
 
        if (cpu_has_xmm2)
                set_cpu_cap(c, X86_FEATURE_MFENCE_RDTSC);
-
-       if (c->x86 == 0x10)
-               amd_enable_pci_ext_cfg(c);
 }
 
 static unsigned int __cpuinit amd_size_cache(struct cpuinfo_x86 *c, unsigned int size)
index f8d20588bde98b53b645833973f357166658468e..250bfe6064afde9691f36d7c176d64d2bed62120 100644 (file)
@@ -6,7 +6,6 @@
 #include <asm/cacheflush.h>
 
 #include <mach_apic.h>
-#include "cpu.h"
 
 extern int __cpuinit get_model_name(struct cpuinfo_x86 *c);
 extern void __cpuinit display_cacheinfo(struct cpuinfo_x86 *c);
@@ -187,9 +186,6 @@ void __cpuinit init_amd(struct cpuinfo_x86 *c)
        if (c->x86 == 0x10)
                fam10h_check_enable_mmcfg();
 
-       if (c->x86 == 0x10)
-               amd_enable_pci_ext_cfg(c);
-
        if (c == &boot_cpu_data && c->x86 >= 0xf && c->x86 <= 0x11) {
                unsigned long long tseg;
 
index f5d5bb1b554130874d3f681d1bc7173b037d7178..40ad1893fe87ec08d4a61d358c69d2e278347010 100644 (file)
@@ -39,5 +39,3 @@ extern int get_model_name(struct cpuinfo_x86 *c);
 extern void display_cacheinfo(struct cpuinfo_x86 *c);
 
 #endif /* CONFIG_X86_32 */
-
-extern void __cpuinit amd_enable_pci_ext_cfg(struct cpuinfo_x86 *c);
index 20e14dbef107dcafa94e16d4a9f7fb1a5569d996..6f80b852a1961a6b496bc2404c5194769557d97a 100644 (file)
@@ -137,16 +137,3 @@ void __init setup_per_cpu_areas(void)
 }
 
 #endif
-#define ENABLE_CF8_EXT_CFG      (1ULL << 46)
-
-void __cpuinit amd_enable_pci_ext_cfg(struct cpuinfo_x86 *c)
-{
-       u64 reg;
-       rdmsrl(MSR_AMD64_NB_CFG, reg);
-       if (!(reg & ENABLE_CF8_EXT_CFG)) {
-               reg |= ENABLE_CF8_EXT_CFG;
-               wrmsrl(MSR_AMD64_NB_CFG, reg);
-       }
-       set_cpu_cap(c, X86_FEATURE_PCI_EXT_CFG);
-}
-
index 89ec35d00efde0ebde8488f84bc491cffe8fb092..f647e7e56da4c69e653e344059cff04abe191af0 100644 (file)
@@ -22,3 +22,4 @@ pci-$(CONFIG_X86_NUMAQ)               := numa.o irq.o
 pci-$(CONFIG_NUMA)             += mp_bus_to_node.o
 
 obj-y                          += $(pci-y) common.o early.o
+obj-y                          += amd_bus.o
index 5c2799c20e47b7a48b05e1fd15cbdbc79229d86b..15f505d3a78ef99b3591d1ca7fb24d0d2c278688 100644 (file)
@@ -1,5 +1,9 @@
 #include <linux/init.h>
 #include <linux/pci.h>
+#include "pci.h"
+
+#ifdef CONFIG_X86_64
+
 #include <asm/pci-direct.h>
 #include <asm/mpspec.h>
 #include <linux/cpumask.h>
@@ -526,3 +530,31 @@ static int __init early_fill_mp_bus_info(void)
 }
 
 postcore_initcall(early_fill_mp_bus_info);
+
+#endif
+
+/* common 32/64 bit code */
+
+#define ENABLE_CF8_EXT_CFG      (1ULL << 46)
+
+static void enable_pci_io_ecs_per_cpu(void *unused)
+{
+       u64 reg;
+       rdmsrl(MSR_AMD64_NB_CFG, reg);
+       if (!(reg & ENABLE_CF8_EXT_CFG)) {
+               reg |= ENABLE_CF8_EXT_CFG;
+               wrmsrl(MSR_AMD64_NB_CFG, reg);
+       }
+}
+
+static int __init enable_pci_io_ecs(void)
+{
+       /* assume all cpus from fam10h have IO ECS */
+        if (boot_cpu_data.x86 < 0x10)
+               return 0;
+       on_each_cpu(enable_pci_io_ecs_per_cpu, NULL, 1, 1);
+       pci_probe |= PCI_HAS_IO_ECS;
+       return 0;
+}
+
+postcore_initcall(enable_pci_io_ecs);
index 27d61b63def6f0cdd9279fa0848de70c1f1c83a7..9915293500fb69ebdae0b8d80b69155f180f1274 100644 (file)
@@ -265,14 +265,16 @@ void __init pci_direct_init(int type)
                 type);
        if (type == 1) {
                raw_pci_ops = &pci_direct_conf1;
-               if (!raw_pci_ext_ops && cpu_has_pci_ext_cfg) {
-                       printk(KERN_INFO "PCI: Using configuration type 1 "
-                              "for extended access\n");
-                       raw_pci_ext_ops = &pci_direct_conf1;
-               }
-       } else {
-               raw_pci_ops = &pci_direct_conf2;
+               if (raw_pci_ext_ops)
+                       return;
+               if (!(pci_probe & PCI_HAS_IO_ECS))
+                       return;
+               printk(KERN_INFO "PCI: Using configuration type 1 "
+                      "for extended access\n");
+               raw_pci_ext_ops = &pci_direct_conf1;
+               return;
        }
+       raw_pci_ops = &pci_direct_conf2;
 }
 
 int __init pci_direct_probe(void)
index f3972b12c60a0066528e641028f3c9813e56786f..fd53db50eeeb0f6c1f5af35adf6d0163bbcf8c88 100644 (file)
@@ -27,6 +27,7 @@
 #define PCI_CAN_SKIP_ISA_ALIGN 0x8000
 #define PCI_USE__CRS           0x10000
 #define PCI_CHECK_ENABLE_AMD_MMCONF    0x20000
+#define PCI_HAS_IO_ECS         0x40000
 
 extern unsigned int pci_probe;
 extern unsigned long pirq_table_addr;
index 40fcbba00f15f81bdf7ec8ab09bdc0dda3366b9e..0d609c837a41575fe8ce75cd4140f2efa99554cb 100644 (file)
@@ -79,7 +79,6 @@
 #define X86_FEATURE_REP_GOOD   (3*32+16) /* rep microcode works well on this CPU */
 #define X86_FEATURE_MFENCE_RDTSC (3*32+17) /* Mfence synchronizes RDTSC */
 #define X86_FEATURE_LFENCE_RDTSC (3*32+18) /* Lfence synchronizes RDTSC */
-#define X86_FEATURE_PCI_EXT_CFG        (3*32+19) /* PCI extended cfg access */
 
 /* Intel-defined CPU features, CPUID level 0x00000001 (ecx), word 4 */
 #define X86_FEATURE_XMM3       (4*32+ 0) /* Streaming SIMD Extensions-3 */
@@ -188,7 +187,6 @@ extern const char * const x86_power_flags[32];
 #define cpu_has_gbpages                boot_cpu_has(X86_FEATURE_GBPAGES)
 #define cpu_has_arch_perfmon   boot_cpu_has(X86_FEATURE_ARCH_PERFMON)
 #define cpu_has_pat            boot_cpu_has(X86_FEATURE_PAT)
-#define cpu_has_pci_ext_cfg    boot_cpu_has(X86_FEATURE_PCI_EXT_CFG)
 
 #if defined(CONFIG_X86_INVLPG) || defined(CONFIG_X86_64)
 # define cpu_has_invlpg                1