diff options
-rw-r--r-- | arch/sparc/include/asm/pgtable_64.h | 1 | ||||
-rw-r--r-- | arch/sparc/kernel/vmlinux.lds.S | 5 | ||||
-rw-r--r-- | arch/sparc/mm/init_64.c | 25 |
3 files changed, 5 insertions, 26 deletions
diff --git a/arch/sparc/include/asm/pgtable_64.h b/arch/sparc/include/asm/pgtable_64.h index c0939228e4b1..bfeb626085ac 100644 --- a/arch/sparc/include/asm/pgtable_64.h +++ b/arch/sparc/include/asm/pgtable_64.h | |||
@@ -927,7 +927,6 @@ static inline void __set_pte_at(struct mm_struct *mm, unsigned long addr, | |||
927 | #endif | 927 | #endif |
928 | 928 | ||
929 | extern pgd_t swapper_pg_dir[PTRS_PER_PGD]; | 929 | extern pgd_t swapper_pg_dir[PTRS_PER_PGD]; |
930 | extern pmd_t swapper_low_pmd_dir[PTRS_PER_PMD]; | ||
931 | 930 | ||
932 | void paging_init(void); | 931 | void paging_init(void); |
933 | unsigned long find_ecache_flush_span(unsigned long size); | 932 | unsigned long find_ecache_flush_span(unsigned long size); |
diff --git a/arch/sparc/kernel/vmlinux.lds.S b/arch/sparc/kernel/vmlinux.lds.S index 0bacceb19150..09243057cb0b 100644 --- a/arch/sparc/kernel/vmlinux.lds.S +++ b/arch/sparc/kernel/vmlinux.lds.S | |||
@@ -35,8 +35,9 @@ jiffies = jiffies_64; | |||
35 | 35 | ||
36 | SECTIONS | 36 | SECTIONS |
37 | { | 37 | { |
38 | /* swapper_low_pmd_dir is sparc64 only */ | 38 | #ifdef CONFIG_SPARC64 |
39 | swapper_low_pmd_dir = 0x0000000000402000; | 39 | swapper_pg_dir = 0x0000000000402000; |
40 | #endif | ||
40 | . = INITIAL_ADDRESS; | 41 | . = INITIAL_ADDRESS; |
41 | .text TEXTSTART : | 42 | .text TEXTSTART : |
42 | { | 43 | { |
diff --git a/arch/sparc/mm/init_64.c b/arch/sparc/mm/init_64.c index 0ead74b2b9e3..2d91c62f7f5f 100644 --- a/arch/sparc/mm/init_64.c +++ b/arch/sparc/mm/init_64.c | |||
@@ -87,7 +87,7 @@ extern struct tsb swapper_tsb[KERNEL_TSB_NENTRIES]; | |||
87 | 87 | ||
88 | static unsigned long cpu_pgsz_mask; | 88 | static unsigned long cpu_pgsz_mask; |
89 | 89 | ||
90 | #define MAX_BANKS 32 | 90 | #define MAX_BANKS 1024 |
91 | 91 | ||
92 | static struct linux_prom64_registers pavail[MAX_BANKS]; | 92 | static struct linux_prom64_registers pavail[MAX_BANKS]; |
93 | static int pavail_ents; | 93 | static int pavail_ents; |
@@ -1943,12 +1943,6 @@ static void __init sun4v_linear_pte_xor_finalize(void) | |||
1943 | 1943 | ||
1944 | static unsigned long last_valid_pfn; | 1944 | static unsigned long last_valid_pfn; |
1945 | 1945 | ||
1946 | /* These must be page aligned in order to not trigger the | ||
1947 | * alignment tests of pgd_bad() and pud_bad(). | ||
1948 | */ | ||
1949 | pgd_t swapper_pg_dir[PTRS_PER_PGD] __attribute__ ((aligned (PAGE_SIZE))); | ||
1950 | static pud_t swapper_pud_dir[PTRS_PER_PUD] __attribute__ ((aligned (PAGE_SIZE))); | ||
1951 | |||
1952 | static void sun4u_pgprot_init(void); | 1946 | static void sun4u_pgprot_init(void); |
1953 | static void sun4v_pgprot_init(void); | 1947 | static void sun4v_pgprot_init(void); |
1954 | 1948 | ||
@@ -2002,8 +1996,6 @@ void __init paging_init(void) | |||
2002 | { | 1996 | { |
2003 | unsigned long end_pfn, shift, phys_base; | 1997 | unsigned long end_pfn, shift, phys_base; |
2004 | unsigned long real_end, i; | 1998 | unsigned long real_end, i; |
2005 | pud_t *pud; | ||
2006 | pmd_t *pmd; | ||
2007 | int node; | 1999 | int node; |
2008 | 2000 | ||
2009 | setup_page_offset(); | 2001 | setup_page_offset(); |
@@ -2099,20 +2091,7 @@ void __init paging_init(void) | |||
2099 | */ | 2091 | */ |
2100 | init_mm.pgd += ((shift) / (sizeof(pgd_t))); | 2092 | init_mm.pgd += ((shift) / (sizeof(pgd_t))); |
2101 | 2093 | ||
2102 | memset(swapper_low_pmd_dir, 0, sizeof(swapper_low_pmd_dir)); | 2094 | memset(swapper_pg_dir, 0, sizeof(swapper_pg_dir)); |
2103 | |||
2104 | /* The kernel page tables we publish into what the rest of the | ||
2105 | * world sees must be adjusted so that they see the PAGE_OFFSET | ||
2106 | * address of these in-kerenel data structures. However right | ||
2107 | * here we must access them from the kernel image side, because | ||
2108 | * the trap tables haven't been taken over and therefore we cannot | ||
2109 | * take TLB misses in the PAGE_OFFSET linear mappings yet. | ||
2110 | */ | ||
2111 | pud = swapper_pud_dir + (shift / sizeof(pud_t)); | ||
2112 | pgd_set(&swapper_pg_dir[0], pud); | ||
2113 | |||
2114 | pmd = swapper_low_pmd_dir + (shift / sizeof(pmd_t)); | ||
2115 | pud_set(&swapper_pud_dir[0], pmd); | ||
2116 | 2095 | ||
2117 | inherit_prom_mappings(); | 2096 | inherit_prom_mappings(); |
2118 | 2097 | ||