1 # SPDX-License-Identifier: GPL-2.0-only !! 1 # SPDX-License-Identifier: GPL-2.0 2 ifeq ($(CONFIG_CPU_HAS_CACHEV2),y) !! 2 # 3 obj-y += cachev2.o !! 3 # Makefile for the Linux/MIPS-specific parts of the memory manager. 4 CFLAGS_REMOVE_cachev2.o = $(CC_FLAGS_FTRACE) !! 4 # >> 5 >> 6 obj-y += cache.o >> 7 obj-y += context.o >> 8 obj-y += extable.o >> 9 obj-y += fault.o >> 10 obj-y += gup.o >> 11 obj-y += init.o >> 12 obj-y += mmap.o >> 13 obj-y += page.o >> 14 obj-y += page-funcs.o >> 15 obj-y += pgtable.o >> 16 obj-y += tlbex.o >> 17 obj-y += tlbex-fault.o >> 18 obj-y += tlb-funcs.o >> 19 >> 20 ifdef CONFIG_CPU_MICROMIPS >> 21 obj-y += uasm-micromips.o 5 else 22 else 6 obj-y += cachev1.o !! 23 obj-y += uasm-mips.o 7 CFLAGS_REMOVE_cachev1.o = $(CC_FLAGS_FTRACE) << 8 endif 24 endif 9 25 10 obj-y += dma-mapping.o !! 26 obj-$(CONFIG_32BIT) += ioremap.o pgtable-32.o 11 obj-y += fault.o !! 27 obj-$(CONFIG_64BIT) += pgtable-64.o 12 obj-$(CONFIG_HIGHMEM) += highmem.o !! 28 obj-$(CONFIG_HIGHMEM) += highmem.o 13 obj-y += init.o !! 29 obj-$(CONFIG_HUGETLB_PAGE) += hugetlbpage.o 14 obj-y += ioremap.o !! 30 obj-$(CONFIG_DMA_NONCOHERENT) += dma-noncoherent.o 15 obj-y += syscache.o !! 31 16 obj-y += tlb.o !! 32 obj-$(CONFIG_CPU_R4K_CACHE_TLB) += c-r4k.o cex-gen.o tlb-r4k.o 17 obj-y += asid.o !! 33 obj-$(CONFIG_CPU_R3000) += c-r3k.o tlb-r3k.o 18 obj-y += context.o !! 34 obj-$(CONFIG_CPU_R8000) += c-r4k.o cex-gen.o tlb-r8k.o 19 obj-$(CONFIG_HAVE_TCM) += tcm.o !! 35 obj-$(CONFIG_CPU_SB1) += c-r4k.o cerr-sb1.o cex-sb1.o tlb-r4k.o >> 36 obj-$(CONFIG_CPU_TX39XX) += c-tx39.o tlb-r3k.o >> 37 obj-$(CONFIG_CPU_CAVIUM_OCTEON) += c-octeon.o cex-oct.o tlb-r4k.o >> 38 >> 39 obj-$(CONFIG_IP22_CPU_SCACHE) += sc-ip22.o >> 40 obj-$(CONFIG_R5000_CPU_SCACHE) += sc-r5k.o >> 41 obj-$(CONFIG_RM7000_CPU_SCACHE) += sc-rm7k.o >> 42 obj-$(CONFIG_MIPS_CPU_SCACHE) += sc-mips.o >> 43 obj-$(CONFIG_SCACHE_DEBUGFS) += sc-debugfs.o
Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.