void __init load_mmu(void) { if (cpu_has_4ktlb) { #if defined(CONFIG_CPU_R4X00) || defined(CONFIG_CPU_VR41XX) || \ defined(CONFIG_CPU_R4300) || defined(CONFIG_CPU_R5000) || \ defined(CONFIG_CPU_NEVADA) || defined(CONFIG_CPU_R5432) || \ defined(CONFIG_CPU_R5500) || defined(CONFIG_CPU_MIPS32) || \ defined(CONFIG_CPU_MIPS64) || defined(CONFIG_CPU_TX49XX) || \ defined(CONFIG_CPU_RM7000) || defined(CONFIG_CPU_RM9000) ld_mmu_r4xx0(); r4k_tlb_init(); #endif } else switch (current_cpu_data.cputype) { #ifdef CONFIG_CPU_R3000 case CPU_R2000: case CPU_R3000: case CPU_R3000A: case CPU_R3081E: ld_mmu_r23000(); r3k_tlb_init(); break; #endif #ifdef CONFIG_CPU_TX39XX case CPU_TX3912: case CPU_TX3922: case CPU_TX3927: ld_mmu_tx39(); r3k_tlb_init(); break; #endif #ifdef CONFIG_CPU_R10000 case CPU_R10000: case CPU_R12000: ld_mmu_r4xx0(); andes_tlb_init(); break; #endif #ifdef CONFIG_CPU_SB1 case CPU_SB1: ld_mmu_sb1(); sb1_tlb_init(); break; #endif case CPU_R8000: panic("R8000 is unsupported"); break; default: panic("Yeee, unsupported mmu/cache architecture."); } }
void __init loadmmu(void) { if (mips_cpu.options & MIPS_CPU_4KTLB) { #if defined(CONFIG_CPU_R4X00) || defined(CONFIG_CPU_VR41XX) || \ defined(CONFIG_CPU_R4300) || defined(CONFIG_CPU_R5000) || \ defined(CONFIG_CPU_NEVADA) ld_mmu_r4xx0(); r4k_tlb_init(); #endif #if defined(CONFIG_CPU_RM7000) ld_mmu_rm7k(); r4k_tlb_init(); #endif #if defined(CONFIG_CPU_R5432) || defined(CONFIG_CPU_R5500) ld_mmu_r5432(); r4k_tlb_init(); #endif #if defined(CONFIG_CPU_TX49XX) ld_mmu_tx49(); r4k_tlb_init(); #endif #if defined(CONFIG_CPU_MIPS32) || defined(CONFIG_CPU_MIPS64) ld_mmu_mips32(); r4k_tlb_init(); #endif } else switch(mips_cpu.cputype) { #ifdef CONFIG_CPU_R3000 case CPU_R2000: case CPU_R3000: case CPU_R3000A: case CPU_R3081E: ld_mmu_r23000(); r3k_tlb_init(); break; case CPU_TX3912: case CPU_TX3922: case CPU_TX3927: case CPU_TX39XX: ld_mmu_tx39(); r3k_tlb_init(); break; #endif #ifdef CONFIG_CPU_TX39XX case CPU_TX3912: case CPU_TX3922: case CPU_TX3927: case CPU_TX39XX: ld_mmu_tx39(); r3k_tlb_init(); break; #endif #ifdef CONFIG_CPU_R10000 case CPU_R10000: ld_mmu_andes(); r4k_tlb_init(); break; #endif #ifdef CONFIG_CPU_SB1 case CPU_SB1: ld_mmu_sb1(); sb1_tlb_init(); break; #endif default: panic("Yeee, unsupported mmu/cache architecture."); } }
void __init load_mmu(void) { #ifdef CONFIG_BCM4710 if (mips_cpu.cputype == CPU_BCM4710 && (mips_cpu.processor_id & PRID_REV_MASK) == 0) { printk("Loading BCM4710 MMU routines.\n"); ld_mmu_bcm4710(); r4k_tlb_init(); } else #endif if (cpu_has_4ktlb) { #if defined(CONFIG_CPU_R4X00) || defined(CONFIG_CPU_VR41XX) || \ defined(CONFIG_CPU_R4300) || defined(CONFIG_CPU_R5000) || \ defined(CONFIG_CPU_NEVADA) || defined(CONFIG_CPU_R5432) || \ defined(CONFIG_CPU_R5500) || defined(CONFIG_CPU_MIPS32) || \ defined(CONFIG_CPU_MIPS64) || defined(CONFIG_CPU_TX49XX) || \ defined(CONFIG_CPU_RM7000) ld_mmu_r4xx0(); r4k_tlb_init(); #endif } else switch (current_cpu_data.cputype) { #ifdef CONFIG_CPU_R3000 case CPU_R2000: case CPU_R3000: case CPU_R3000A: case CPU_R3081E: ld_mmu_r23000(); r3k_tlb_init(); break; #endif #ifdef CONFIG_CPU_TX39XX case CPU_TX3912: case CPU_TX3922: case CPU_TX3927: ld_mmu_tx39(); r3k_tlb_init(); break; #endif #ifdef CONFIG_CPU_LX4189: case CPU_LX4189: printk("Loading LX4189 MMU routines.\n"); ld_mmu_lx4189(); lx4189_tlb_init(); break; #endif #ifdef CONFIG_CPU_R10000 case CPU_R10000: case CPU_R12000: ld_mmu_r4xx0(); andes_tlb_init(); break; #endif #ifdef CONFIG_CPU_SB1 case CPU_SB1: ld_mmu_sb1(); sb1_tlb_init(); break; #endif case CPU_R8000: panic("R8000 is unsupported"); break; default: panic("Yeee, unsupported mmu/cache architecture."); } }