Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 1 | # SPDX-License-Identifier: GPL-2.0 |
| 2 | # |
| 3 | # Makefile for the linux ppc-specific parts of the memory manager. |
| 4 | # |
| 5 | |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 6 | ccflags-$(CONFIG_PPC64) := $(NO_MINIMAL_TOC) |
| 7 | |
| 8 | obj-y := fault.o mem.o pgtable.o mmap.o \ |
| 9 | init_$(BITS).o pgtable_$(BITS).o \ |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame^] | 10 | pgtable-frag.o ioremap.o ioremap_$(BITS).o \ |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 11 | init-common.o mmu_context.o drmem.o |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame^] | 12 | obj-$(CONFIG_PPC_MMU_NOHASH) += nohash/ |
| 13 | obj-$(CONFIG_PPC_BOOK3S_32) += book3s32/ |
| 14 | obj-$(CONFIG_PPC_BOOK3S_64) += book3s64/ |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 15 | obj-$(CONFIG_NEED_MULTIPLE_NODES) += numa.o |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 16 | obj-$(CONFIG_PPC_MM_SLICES) += slice.o |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame^] | 17 | obj-$(CONFIG_HUGETLB_PAGE) += hugetlbpage.o |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 18 | obj-$(CONFIG_NOT_COHERENT_CACHE) += dma-noncoherent.o |
| 19 | obj-$(CONFIG_HIGHMEM) += highmem.o |
| 20 | obj-$(CONFIG_PPC_COPRO_BASE) += copro_fault.o |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame^] | 21 | obj-$(CONFIG_PPC_PTDUMP) += ptdump/ |
| 22 | obj-$(CONFIG_KASAN) += kasan/ |