1# SPDX-License-Identifier: GPL-2.0 2 3ccflags-$(CONFIG_PPC64) := $(NO_MINIMAL_TOC) 4 5obj-y += mmu_context.o tlb.o tlb_low.o 6obj-$(CONFIG_PPC_BOOK3E_64) += tlb_low_64e.o book3e_pgtable.o 7obj-$(CONFIG_40x) += 40x.o 8obj-$(CONFIG_44x) += 44x.o 9obj-$(CONFIG_PPC_8xx) += 8xx.o 10obj-$(CONFIG_PPC_FSL_BOOK3E) += fsl_booke.o 11ifdef CONFIG_HUGETLB_PAGE 12obj-$(CONFIG_PPC_FSL_BOOK3E) += book3e_hugetlbpage.o 13endif 14 15# Disable kcov instrumentation on sensitive code 16# This is necessary for booting with kcov enabled on book3e machines 17KCOV_INSTRUMENT_tlb.o := n 18KCOV_INSTRUMENT_fsl_booke.o := n 19