blob: 4ea93c9df77b06c0b2f7fb6ff176ca9f9c240745 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001# SPDX-License-Identifier: GPL-2.0
SAN People73a59c12006-01-09 17:05:41 +00002#
3# Makefile for the linux kernel.
4#
SAN People73a59c12006-01-09 17:05:41 +00005
Andrew Victor8fc5ffa2006-06-29 16:06:33 +01006# CPU-specific support
Alexandre Bellonib53cdd02015-03-12 13:07:31 +01007obj-$(CONFIG_SOC_AT91RM9200) += at91rm9200.o
Nicolas Ferrecac01722015-01-27 16:41:55 +01008obj-$(CONFIG_SOC_AT91SAM9) += at91sam9.o
9obj-$(CONFIG_SOC_SAMA5) += sama5.o
Szemző András2d4c44e2017-05-31 03:06:21 +020010obj-$(CONFIG_SOC_SAMV7) += samv7.o
Ludovic Desroches8f4b4792013-03-22 13:24:12 +000011
Andrew Victorb7b272a2008-01-23 09:23:09 +010012# Power Management
Alexandre Bellonib2f06272017-05-31 03:06:22 +020013obj-$(CONFIG_ATMEL_PM) += pm.o pm_suspend.o
Andrew Victor5c3fddc2006-06-20 19:30:20 +010014
Alexandre Belloni176a1b32015-03-19 21:14:40 +010015ifeq ($(CONFIG_CPU_V7),y)
16AFLAGS_pm_suspend.o := -march=armv7-a
17endif
Andrew Victor5c3fddc2006-06-20 19:30:20 +010018ifeq ($(CONFIG_PM_DEBUG),y)
19CFLAGS_pm.o += -DDEBUG
20endif
Alexandre Belloni65cc1a52017-01-31 18:12:57 +010021
22# Default sed regexp - multiline due to syntax constraints
23define sed-y
24 "/^->/{s:->#\(.*\):/* \1 */:; \
25 s:^->\([^ ]*\) [\$$#]*\([-0-9]*\) \(.*\):#define \1 \2 /* \3 */:; \
26 s:^->\([^ ]*\) [\$$#]*\([^ ]*\) \(.*\):#define \1 \2 /* \3 */:; \
27 s:->::; p;}"
28endef
29
30# Use filechk to avoid rebuilds when a header changes, but the resulting file
31# does not
32define filechk_offsets
33 (set -e; \
34 echo "#ifndef $2"; \
35 echo "#define $2"; \
36 echo "/*"; \
37 echo " * DO NOT MODIFY."; \
38 echo " *"; \
39 echo " * This file was generated by Kbuild"; \
40 echo " */"; \
41 echo ""; \
42 sed -ne $(sed-y); \
43 echo ""; \
44 echo "#endif" )
45endef
46
47arch/arm/mach-at91/pm_data-offsets.s: arch/arm/mach-at91/pm_data-offsets.c
48 $(call if_changed_dep,cc_s_c)
49
50include/generated/at91_pm_data-offsets.h: arch/arm/mach-at91/pm_data-offsets.s FORCE
51 $(call filechk,offsets,__PM_DATA_OFFSETS_H__)
52
53arch/arm/mach-at91/pm_suspend.o: include/generated/at91_pm_data-offsets.h