sparc32: remove calls to sun4c dummy mm inits functions
[firefly-linux-kernel-4.4.55.git] / arch / sparc / mm / loadmmu.c
1 /*
2  * loadmmu.c:  This code loads up all the mm function pointers once the
3  *             machine type has been determined.  It also sets the static
4  *             mmu values such as PAGE_NONE, etc.
5  *
6  * Copyright (C) 1995 David S. Miller (davem@caip.rutgers.edu)
7  * Copyright (C) 1998 Jakub Jelinek (jj@sunsite.mff.cuni.cz)
8  */
9
10 #include <linux/kernel.h>
11 #include <linux/mm.h>
12 #include <linux/init.h>
13
14 #include <asm/page.h>
15 #include <asm/pgtable.h>
16 #include <asm/mmu_context.h>
17 #include <asm/oplib.h>
18
19 struct ctx_list *ctx_list_pool;
20 struct ctx_list ctx_free;
21 struct ctx_list ctx_used;
22
23 extern void ld_mmu_srmmu(void);
24
25 void __init load_mmu(void)
26 {
27         switch(sparc_cpu_model) {
28         case sun4m:
29         case sun4d:
30         case sparc_leon:
31                 ld_mmu_srmmu();
32                 break;
33         default:
34                 prom_printf("load_mmu: %d unsupported\n", (int)sparc_cpu_model);
35                 prom_halt();
36         }
37         btfixup();
38 }