mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-01-07 22:03:14 +00:00
2488bde930
Add SoC init config for sam9x7 family. Signed-off-by: Varshini Rajendran <varshini.rajendran@microchip.com> Reviewed-by: Claudiu Beznea <claudiu.beznea@tuxon.dev> Link: https://lore.kernel.org/r/20240729070705.1990557-1-varshini.rajendran@microchip.com Signed-off-by: Claudiu Beznea <claudiu.beznea@tuxon.dev>
29 lines
717 B
Makefile
29 lines
717 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
#
|
|
# Makefile for the linux kernel.
|
|
#
|
|
|
|
# CPU-specific support
|
|
obj-$(CONFIG_SOC_AT91RM9200) += at91rm9200.o
|
|
obj-$(CONFIG_SOC_AT91SAM9) += at91sam9.o
|
|
obj-$(CONFIG_SOC_SAM9X60) += sam9x60.o
|
|
obj-$(CONFIG_SOC_SAM9X7) += sam9x7.o
|
|
obj-$(CONFIG_SOC_SAMA5) += sama5.o sam_secure.o
|
|
obj-$(CONFIG_SOC_SAMA7) += sama7.o
|
|
obj-$(CONFIG_SOC_SAMV7) += samv7.o
|
|
|
|
# Power Management
|
|
obj-$(CONFIG_ATMEL_PM) += pm.o pm_suspend.o
|
|
|
|
ifeq ($(CONFIG_PM_DEBUG),y)
|
|
CFLAGS_pm.o += -DDEBUG
|
|
endif
|
|
|
|
$(obj)/pm_data-offsets.h: $(obj)/pm_data-offsets.s FORCE
|
|
$(call filechk,offsets,__PM_DATA_OFFSETS_H__)
|
|
|
|
$(obj)/pm_suspend.o: $(obj)/pm_data-offsets.h
|
|
|
|
targets += pm_data-offsets.s
|
|
clean-files += pm_data-offsets.h
|