Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | # |
| 2 | # linux/arch/arm/lib/Makefile |
| 3 | # |
| 4 | # Copyright (C) 1995-2000 Russell King |
| 5 | # |
| 6 | |
| 7 | lib-y := backtrace.o changebit.o csumipv6.o csumpartial.o \ |
| 8 | csumpartialcopy.o csumpartialcopyuser.o clearbit.o \ |
Will Deacon | d0a533b | 2012-07-06 15:47:17 +0100 | [diff] [blame] | 9 | delay.o delay-loop.o findbit.o memchr.o memcpy.o \ |
Nicolas Pitre | 7549423 | 2005-11-01 19:52:23 +0000 | [diff] [blame] | 10 | memmove.o memset.o memzero.o setbit.o \ |
Nicolas Pitre | fadab09 | 2005-11-01 19:52:24 +0000 | [diff] [blame] | 11 | strchr.o strrchr.o \ |
| 12 | testchangebit.o testclearbit.o testsetbit.o \ |
Nicolas Pitre | a0c6fdb | 2005-11-01 19:52:22 +0000 | [diff] [blame] | 13 | ashldi3.o ashrdi3.o lshrdi3.o muldi3.o \ |
Linus Torvalds | 4d44871 | 2011-08-07 14:07:03 -0700 | [diff] [blame] | 14 | ucmpdi2.o lib1funcs.o div64.o \ |
Will Deacon | 2d81f1f | 2011-06-08 15:29:00 +0100 | [diff] [blame] | 15 | io-readsb.o io-writesb.o io-readsl.o io-writesl.o \ |
Kim Phillips | 017f161 | 2013-11-06 05:15:24 +0100 | [diff] [blame] | 16 | call_with_stack.o bswapsdi2.o |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | |
Nicolas Pitre | c256303 | 2015-01-15 23:41:54 +0100 | [diff] [blame] | 18 | mmu-y := clear_user.o copy_page.o getuser.o putuser.o \ |
| 19 | copy_from_user.o copy_to_user.o |
Nicolas Pitre | fadab09 | 2005-11-01 19:52:24 +0000 | [diff] [blame] | 20 | |
Lennert Buytenhek | 39ec58f | 2009-03-09 14:30:09 -0400 | [diff] [blame] | 21 | # using lib_ here won't override already available weak symbols |
| 22 | obj-$(CONFIG_UACCESS_WITH_MEMCPY) += uaccess_with_memcpy.o |
| 23 | |
Russell King | 080fc66 | 2012-08-13 11:44:13 +0100 | [diff] [blame] | 24 | lib-$(CONFIG_MMU) += $(mmu-y) |
| 25 | |
| 26 | ifeq ($(CONFIG_CPU_32v3),y) |
| 27 | lib-y += io-readsw-armv3.o io-writesw-armv3.o |
| 28 | else |
| 29 | lib-y += io-readsw-armv4.o io-writesw-armv4.o |
| 30 | endif |
| 31 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | lib-$(CONFIG_ARCH_RPC) += ecard.o io-acorn.o floppydma.o |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 33 | |
| 34 | $(obj)/csumpartialcopy.o: $(obj)/csumpartialcopygeneric.S |
| 35 | $(obj)/csumpartialcopyuser.o: $(obj)/csumpartialcopygeneric.S |
Ard Biesheuvel | 0195659 | 2013-05-17 18:51:23 +0200 | [diff] [blame] | 36 | |
| 37 | ifeq ($(CONFIG_KERNEL_MODE_NEON),y) |
| 38 | NEON_FLAGS := -mfloat-abi=softfp -mfpu=neon |
| 39 | CFLAGS_xor-neon.o += $(NEON_FLAGS) |
Ard Biesheuvel | 9319206 | 2013-09-09 15:08:38 +0100 | [diff] [blame] | 40 | obj-$(CONFIG_XOR_BLOCKS) += xor-neon.o |
Ard Biesheuvel | 0195659 | 2013-05-17 18:51:23 +0200 | [diff] [blame] | 41 | endif |