blob: 7415f181907b854aff92fb303ea7ea391a9ce922 [file] [log] [blame]
xjb04a4022021-11-25 15:01:52 +08001# SPDX-License-Identifier: GPL-2.0
2#
3# Makefile for the linux kernel.
4#
5
6# CPU-specific support
7obj-$(CONFIG_SOC_AT91RM9200) += at91rm9200.o
8obj-$(CONFIG_SOC_AT91SAM9) += at91sam9.o
9obj-$(CONFIG_SOC_SAMA5) += sama5.o
10obj-$(CONFIG_SOC_SAMV7) += samv7.o
11
12# Power Management
13obj-$(CONFIG_ATMEL_PM) += pm.o pm_suspend.o
14
15ifeq ($(CONFIG_CPU_V7),y)
16AFLAGS_pm_suspend.o := -march=armv7-a
17endif
18ifeq ($(CONFIG_PM_DEBUG),y)
19CFLAGS_pm.o += -DDEBUG
20endif
21
22arch/arm/mach-at91/pm_data-offsets.s: arch/arm/mach-at91/pm_data-offsets.c
23 $(call if_changed_dep,cc_s_c)
24
25include/generated/at91_pm_data-offsets.h: arch/arm/mach-at91/pm_data-offsets.s FORCE
26 $(call filechk,offsets,__PM_DATA_OFFSETS_H__)
27
28arch/arm/mach-at91/pm_suspend.o: include/generated/at91_pm_data-offsets.h