diff options
| -rw-r--r-- | arch/x86/Kconfig | 4 | ||||
| -rw-r--r-- | arch/x86/include/asm/amd_nb.h (renamed from arch/x86/include/asm/k8.h) | 8 | ||||
| -rw-r--r-- | arch/x86/kernel/Makefile | 2 | ||||
| -rw-r--r-- | arch/x86/kernel/amd_nb.c (renamed from arch/x86/kernel/k8.c) | 2 | ||||
| -rw-r--r-- | arch/x86/kernel/aperture_64.c | 2 | ||||
| -rw-r--r-- | arch/x86/kernel/cpu/intel_cacheinfo.c | 10 | ||||
| -rw-r--r-- | arch/x86/kernel/pci-gart_64.c | 2 | ||||
| -rw-r--r-- | arch/x86/kernel/setup.c | 2 | ||||
| -rw-r--r-- | arch/x86/mm/k8topology_64.c | 2 | ||||
| -rw-r--r-- | arch/x86/mm/numa_64.c | 2 | ||||
| -rw-r--r-- | drivers/char/agp/Kconfig | 2 | ||||
| -rw-r--r-- | drivers/char/agp/amd64-agp.c | 2 | ||||
| -rw-r--r-- | drivers/edac/Kconfig | 2 | ||||
| -rw-r--r-- | drivers/edac/amd64_edac.c | 2 |
14 files changed, 22 insertions, 22 deletions
diff --git a/arch/x86/Kconfig b/arch/x86/Kconfig index cea0cd9a316f..7fd41f0d7542 100644 --- a/arch/x86/Kconfig +++ b/arch/x86/Kconfig | |||
| @@ -670,7 +670,7 @@ config GART_IOMMU | |||
| 670 | bool "GART IOMMU support" if EMBEDDED | 670 | bool "GART IOMMU support" if EMBEDDED |
| 671 | default y | 671 | default y |
| 672 | select SWIOTLB | 672 | select SWIOTLB |
| 673 | depends on X86_64 && PCI && K8_NB | 673 | depends on X86_64 && PCI && AMD_NB |
| 674 | ---help--- | 674 | ---help--- |
| 675 | Support for full DMA access of devices with 32bit memory access only | 675 | Support for full DMA access of devices with 32bit memory access only |
| 676 | on systems with more than 3GB. This is usually needed for USB, | 676 | on systems with more than 3GB. This is usually needed for USB, |
| @@ -2076,7 +2076,7 @@ config OLPC_OPENFIRMWARE | |||
| 2076 | 2076 | ||
| 2077 | endif # X86_32 | 2077 | endif # X86_32 |
| 2078 | 2078 | ||
| 2079 | config K8_NB | 2079 | config AMD_NB |
| 2080 | def_bool y | 2080 | def_bool y |
| 2081 | depends on CPU_SUP_AMD && PCI | 2081 | depends on CPU_SUP_AMD && PCI |
| 2082 | 2082 | ||
diff --git a/arch/x86/include/asm/k8.h b/arch/x86/include/asm/amd_nb.h index 9cee145dcace..c8517f81b21e 100644 --- a/arch/x86/include/asm/k8.h +++ b/arch/x86/include/asm/amd_nb.h | |||
| @@ -1,5 +1,5 @@ | |||
| 1 | #ifndef _ASM_X86_K8_H | 1 | #ifndef _ASM_X86_AMD_NB_H |
| 2 | #define _ASM_X86_K8_H | 2 | #define _ASM_X86_AMD_NB_H |
| 3 | 3 | ||
| 4 | #include <linux/pci.h> | 4 | #include <linux/pci.h> |
| 5 | 5 | ||
| @@ -20,7 +20,7 @@ struct k8_northbridge_info { | |||
| 20 | }; | 20 | }; |
| 21 | extern struct k8_northbridge_info k8_northbridges; | 21 | extern struct k8_northbridge_info k8_northbridges; |
| 22 | 22 | ||
| 23 | #ifdef CONFIG_K8_NB | 23 | #ifdef CONFIG_AMD_NB |
| 24 | 24 | ||
| 25 | static inline struct pci_dev *node_to_k8_nb_misc(int node) | 25 | static inline struct pci_dev *node_to_k8_nb_misc(int node) |
| 26 | { | 26 | { |
| @@ -36,4 +36,4 @@ static inline struct pci_dev *node_to_k8_nb_misc(int node) | |||
| 36 | #endif | 36 | #endif |
| 37 | 37 | ||
| 38 | 38 | ||
| 39 | #endif /* _ASM_X86_K8_H */ | 39 | #endif /* _ASM_X86_AMD_NB_H */ |
diff --git a/arch/x86/kernel/Makefile b/arch/x86/kernel/Makefile index 0925676266bd..25dc82d3e76d 100644 --- a/arch/x86/kernel/Makefile +++ b/arch/x86/kernel/Makefile | |||
| @@ -87,7 +87,7 @@ obj-$(CONFIG_EARLY_PRINTK) += early_printk.o | |||
| 87 | obj-$(CONFIG_HPET_TIMER) += hpet.o | 87 | obj-$(CONFIG_HPET_TIMER) += hpet.o |
| 88 | obj-$(CONFIG_APB_TIMER) += apb_timer.o | 88 | obj-$(CONFIG_APB_TIMER) += apb_timer.o |
| 89 | 89 | ||
| 90 | obj-$(CONFIG_K8_NB) += k8.o | 90 | obj-$(CONFIG_AMD_NB) += amd_nb.o |
| 91 | obj-$(CONFIG_DEBUG_RODATA_TEST) += test_rodata.o | 91 | obj-$(CONFIG_DEBUG_RODATA_TEST) += test_rodata.o |
| 92 | obj-$(CONFIG_DEBUG_NX_TEST) += test_nx.o | 92 | obj-$(CONFIG_DEBUG_NX_TEST) += test_nx.o |
| 93 | 93 | ||
diff --git a/arch/x86/kernel/k8.c b/arch/x86/kernel/amd_nb.c index 5de1b6b39639..4ffc38df7ac5 100644 --- a/arch/x86/kernel/k8.c +++ b/arch/x86/kernel/amd_nb.c | |||
| @@ -8,7 +8,7 @@ | |||
| 8 | #include <linux/errno.h> | 8 | #include <linux/errno.h> |
| 9 | #include <linux/module.h> | 9 | #include <linux/module.h> |
| 10 | #include <linux/spinlock.h> | 10 | #include <linux/spinlock.h> |
| 11 | #include <asm/k8.h> | 11 | #include <asm/amd_nb.h> |
| 12 | 12 | ||
| 13 | static u32 *flush_words; | 13 | static u32 *flush_words; |
| 14 | 14 | ||
diff --git a/arch/x86/kernel/aperture_64.c b/arch/x86/kernel/aperture_64.c index a2e0caf26e17..e91e042a5c8b 100644 --- a/arch/x86/kernel/aperture_64.c +++ b/arch/x86/kernel/aperture_64.c | |||
| @@ -27,7 +27,7 @@ | |||
| 27 | #include <asm/gart.h> | 27 | #include <asm/gart.h> |
| 28 | #include <asm/pci-direct.h> | 28 | #include <asm/pci-direct.h> |
| 29 | #include <asm/dma.h> | 29 | #include <asm/dma.h> |
| 30 | #include <asm/k8.h> | 30 | #include <asm/amd_nb.h> |
| 31 | #include <asm/x86_init.h> | 31 | #include <asm/x86_init.h> |
| 32 | 32 | ||
| 33 | int gart_iommu_aperture; | 33 | int gart_iommu_aperture; |
diff --git a/arch/x86/kernel/cpu/intel_cacheinfo.c b/arch/x86/kernel/cpu/intel_cacheinfo.c index 6fdfb0b20f8c..12cd823c8d03 100644 --- a/arch/x86/kernel/cpu/intel_cacheinfo.c +++ b/arch/x86/kernel/cpu/intel_cacheinfo.c | |||
| @@ -17,7 +17,7 @@ | |||
| 17 | 17 | ||
| 18 | #include <asm/processor.h> | 18 | #include <asm/processor.h> |
| 19 | #include <linux/smp.h> | 19 | #include <linux/smp.h> |
| 20 | #include <asm/k8.h> | 20 | #include <asm/amd_nb.h> |
| 21 | #include <asm/smp.h> | 21 | #include <asm/smp.h> |
| 22 | 22 | ||
| 23 | #define LVL_1_INST 1 | 23 | #define LVL_1_INST 1 |
| @@ -306,7 +306,7 @@ struct _cache_attr { | |||
| 306 | ssize_t (*store)(struct _cpuid4_info *, const char *, size_t count); | 306 | ssize_t (*store)(struct _cpuid4_info *, const char *, size_t count); |
| 307 | }; | 307 | }; |
| 308 | 308 | ||
| 309 | #ifdef CONFIG_K8_NB | 309 | #ifdef CONFIG_AMD_NB |
| 310 | 310 | ||
| 311 | /* | 311 | /* |
| 312 | * L3 cache descriptors | 312 | * L3 cache descriptors |
| @@ -556,12 +556,12 @@ static struct _cache_attr cache_disable_0 = __ATTR(cache_disable_0, 0644, | |||
| 556 | static struct _cache_attr cache_disable_1 = __ATTR(cache_disable_1, 0644, | 556 | static struct _cache_attr cache_disable_1 = __ATTR(cache_disable_1, 0644, |
| 557 | show_cache_disable_1, store_cache_disable_1); | 557 | show_cache_disable_1, store_cache_disable_1); |
| 558 | 558 | ||
| 559 | #else /* CONFIG_K8_NB */ | 559 | #else /* CONFIG_AMD_NB */ |
| 560 | static void __cpuinit | 560 | static void __cpuinit |
| 561 | amd_check_l3_disable(struct _cpuid4_info_regs *this_leaf, int index) | 561 | amd_check_l3_disable(struct _cpuid4_info_regs *this_leaf, int index) |
| 562 | { | 562 | { |
| 563 | }; | 563 | }; |
| 564 | #endif /* CONFIG_K8_NB */ | 564 | #endif /* CONFIG_AMD_NB */ |
| 565 | 565 | ||
| 566 | static int | 566 | static int |
| 567 | __cpuinit cpuid4_cache_lookup_regs(int index, | 567 | __cpuinit cpuid4_cache_lookup_regs(int index, |
| @@ -1000,7 +1000,7 @@ static struct attribute *default_attrs[] = { | |||
| 1000 | 1000 | ||
| 1001 | static struct attribute *default_l3_attrs[] = { | 1001 | static struct attribute *default_l3_attrs[] = { |
| 1002 | DEFAULT_SYSFS_CACHE_ATTRS, | 1002 | DEFAULT_SYSFS_CACHE_ATTRS, |
| 1003 | #ifdef CONFIG_K8_NB | 1003 | #ifdef CONFIG_AMD_NB |
| 1004 | &cache_disable_0.attr, | 1004 | &cache_disable_0.attr, |
| 1005 | &cache_disable_1.attr, | 1005 | &cache_disable_1.attr, |
| 1006 | #endif | 1006 | #endif |
diff --git a/arch/x86/kernel/pci-gart_64.c b/arch/x86/kernel/pci-gart_64.c index 8f214a2643fa..67e5665ce42c 100644 --- a/arch/x86/kernel/pci-gart_64.c +++ b/arch/x86/kernel/pci-gart_64.c | |||
| @@ -39,7 +39,7 @@ | |||
| 39 | #include <asm/cacheflush.h> | 39 | #include <asm/cacheflush.h> |
| 40 | #include <asm/swiotlb.h> | 40 | #include <asm/swiotlb.h> |
| 41 | #include <asm/dma.h> | 41 | #include <asm/dma.h> |
| 42 | #include <asm/k8.h> | 42 | #include <asm/amd_nb.h> |
| 43 | #include <asm/x86_init.h> | 43 | #include <asm/x86_init.h> |
| 44 | 44 | ||
| 45 | static unsigned long iommu_bus_base; /* GART remapping area (physical) */ | 45 | static unsigned long iommu_bus_base; /* GART remapping area (physical) */ |
diff --git a/arch/x86/kernel/setup.c b/arch/x86/kernel/setup.c index c3a4fbb2b996..77eea0362a49 100644 --- a/arch/x86/kernel/setup.c +++ b/arch/x86/kernel/setup.c | |||
| @@ -107,7 +107,7 @@ | |||
| 107 | #include <asm/percpu.h> | 107 | #include <asm/percpu.h> |
| 108 | #include <asm/topology.h> | 108 | #include <asm/topology.h> |
| 109 | #include <asm/apicdef.h> | 109 | #include <asm/apicdef.h> |
| 110 | #include <asm/k8.h> | 110 | #include <asm/amd_nb.h> |
| 111 | #ifdef CONFIG_X86_64 | 111 | #ifdef CONFIG_X86_64 |
| 112 | #include <asm/numa_64.h> | 112 | #include <asm/numa_64.h> |
| 113 | #endif | 113 | #endif |
diff --git a/arch/x86/mm/k8topology_64.c b/arch/x86/mm/k8topology_64.c index 970ed579d4e4..ab75b181812f 100644 --- a/arch/x86/mm/k8topology_64.c +++ b/arch/x86/mm/k8topology_64.c | |||
| @@ -22,7 +22,7 @@ | |||
| 22 | #include <asm/numa.h> | 22 | #include <asm/numa.h> |
| 23 | #include <asm/mpspec.h> | 23 | #include <asm/mpspec.h> |
| 24 | #include <asm/apic.h> | 24 | #include <asm/apic.h> |
| 25 | #include <asm/k8.h> | 25 | #include <asm/amd_nb.h> |
| 26 | 26 | ||
| 27 | static struct bootnode __initdata nodes[8]; | 27 | static struct bootnode __initdata nodes[8]; |
| 28 | static nodemask_t __initdata nodes_parsed = NODE_MASK_NONE; | 28 | static nodemask_t __initdata nodes_parsed = NODE_MASK_NONE; |
diff --git a/arch/x86/mm/numa_64.c b/arch/x86/mm/numa_64.c index a7bcc23ef96c..4962f1aeda6f 100644 --- a/arch/x86/mm/numa_64.c +++ b/arch/x86/mm/numa_64.c | |||
| @@ -18,7 +18,7 @@ | |||
| 18 | #include <asm/dma.h> | 18 | #include <asm/dma.h> |
| 19 | #include <asm/numa.h> | 19 | #include <asm/numa.h> |
| 20 | #include <asm/acpi.h> | 20 | #include <asm/acpi.h> |
| 21 | #include <asm/k8.h> | 21 | #include <asm/amd_nb.h> |
| 22 | 22 | ||
| 23 | struct pglist_data *node_data[MAX_NUMNODES] __read_mostly; | 23 | struct pglist_data *node_data[MAX_NUMNODES] __read_mostly; |
| 24 | EXPORT_SYMBOL(node_data); | 24 | EXPORT_SYMBOL(node_data); |
diff --git a/drivers/char/agp/Kconfig b/drivers/char/agp/Kconfig index 4b66c69eaf57..5ddf67e76f8b 100644 --- a/drivers/char/agp/Kconfig +++ b/drivers/char/agp/Kconfig | |||
| @@ -57,7 +57,7 @@ config AGP_AMD | |||
| 57 | 57 | ||
| 58 | config AGP_AMD64 | 58 | config AGP_AMD64 |
| 59 | tristate "AMD Opteron/Athlon64 on-CPU GART support" | 59 | tristate "AMD Opteron/Athlon64 on-CPU GART support" |
| 60 | depends on AGP && X86 && K8_NB | 60 | depends on AGP && X86 && AMD_NB |
| 61 | help | 61 | help |
| 62 | This option gives you AGP support for the GLX component of | 62 | This option gives you AGP support for the GLX component of |
| 63 | X using the on-CPU northbridge of the AMD Athlon64/Opteron CPUs. | 63 | X using the on-CPU northbridge of the AMD Athlon64/Opteron CPUs. |
diff --git a/drivers/char/agp/amd64-agp.c b/drivers/char/agp/amd64-agp.c index bdf00d583d79..4d6087c9ec9d 100644 --- a/drivers/char/agp/amd64-agp.c +++ b/drivers/char/agp/amd64-agp.c | |||
| @@ -15,7 +15,7 @@ | |||
| 15 | #include <linux/mmzone.h> | 15 | #include <linux/mmzone.h> |
| 16 | #include <asm/page.h> /* PAGE_SIZE */ | 16 | #include <asm/page.h> /* PAGE_SIZE */ |
| 17 | #include <asm/e820.h> | 17 | #include <asm/e820.h> |
| 18 | #include <asm/k8.h> | 18 | #include <asm/amd_nb.h> |
| 19 | #include <asm/gart.h> | 19 | #include <asm/gart.h> |
| 20 | #include "agp.h" | 20 | #include "agp.h" |
| 21 | 21 | ||
diff --git a/drivers/edac/Kconfig b/drivers/edac/Kconfig index 70bb350de996..734e2e062374 100644 --- a/drivers/edac/Kconfig +++ b/drivers/edac/Kconfig | |||
| @@ -66,7 +66,7 @@ config EDAC_MCE | |||
| 66 | 66 | ||
| 67 | config EDAC_AMD64 | 67 | config EDAC_AMD64 |
| 68 | tristate "AMD64 (Opteron, Athlon64) K8, F10h, F11h" | 68 | tristate "AMD64 (Opteron, Athlon64) K8, F10h, F11h" |
| 69 | depends on EDAC_MM_EDAC && K8_NB && X86_64 && PCI && EDAC_DECODE_MCE | 69 | depends on EDAC_MM_EDAC && AMD_NB && X86_64 && PCI && EDAC_DECODE_MCE |
| 70 | help | 70 | help |
| 71 | Support for error detection and correction on the AMD 64 | 71 | Support for error detection and correction on the AMD 64 |
| 72 | Families of Memory Controllers (K8, F10h and F11h) | 72 | Families of Memory Controllers (K8, F10h and F11h) |
diff --git a/drivers/edac/amd64_edac.c b/drivers/edac/amd64_edac.c index 5babf6f48058..09fcc5282327 100644 --- a/drivers/edac/amd64_edac.c +++ b/drivers/edac/amd64_edac.c | |||
| @@ -1,5 +1,5 @@ | |||
| 1 | #include "amd64_edac.h" | 1 | #include "amd64_edac.h" |
| 2 | #include <asm/k8.h> | 2 | #include <asm/amd_nb.h> |
| 3 | 3 | ||
| 4 | static struct edac_pci_ctl_info *amd64_ctl_pci; | 4 | static struct edac_pci_ctl_info *amd64_ctl_pci; |
| 5 | 5 | ||
