mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-19 09:56:46 +07:00
7b9afb86b6
The sparc64 code is mostly equivalent to the generic one, minus various bugfixes and two arch overrides that this patch adds to pgtable.h. Link: http://lkml.kernel.org/r/20190625143715.1689-10-hch@lst.de Signed-off-by: Christoph Hellwig <hch@lst.de> Reviewed-by: Khalid Aziz <khalid.aziz@oracle.com> Cc: David Miller <davem@davemloft.net> Cc: Andrey Konovalov <andreyknvl@google.com> Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org> Cc: James Hogan <jhogan@kernel.org> Cc: Jason Gunthorpe <jgg@mellanox.com> Cc: Michael Ellerman <mpe@ellerman.id.au> Cc: Nicholas Piggin <npiggin@gmail.com> Cc: Paul Burton <paul.burton@mips.com> Cc: Paul Mackerras <paulus@samba.org> Cc: Ralf Baechle <ralf@linux-mips.org> Cc: Rich Felker <dalias@libc.org> Cc: Yoshinori Sato <ysato@users.sourceforge.jp> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
21 lines
618 B
Makefile
21 lines
618 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
# Makefile for the linux Sparc-specific parts of the memory manager.
|
|
#
|
|
|
|
asflags-y := -ansi
|
|
ccflags-y := -Werror
|
|
|
|
obj-$(CONFIG_SPARC64) += ultra.o tlb.o tsb.o
|
|
obj-y += fault_$(BITS).o
|
|
obj-y += init_$(BITS).o
|
|
obj-$(CONFIG_SPARC32) += extable.o srmmu.o iommu.o io-unit.o
|
|
obj-$(CONFIG_SPARC32) += srmmu_access.o
|
|
obj-$(CONFIG_SPARC32) += hypersparc.o viking.o tsunami.o swift.o
|
|
obj-$(CONFIG_SPARC32) += leon_mm.o
|
|
|
|
# Only used by sparc64
|
|
obj-$(CONFIG_HUGETLB_PAGE) += hugetlbpage.o
|
|
|
|
# Only used by sparc32
|
|
obj-$(CONFIG_HIGHMEM) += highmem.o
|