mirror of
https://github.com/torvalds/linux.git
synced 2024-12-17 08:31:39 +00:00
e3726fcf26
Add an initial driver for communicating with the Power, Reset and Clock Management Unit (PRCMU) firmware in U8500. This initial version supports AB8500 communication only. Signed-off-by: Mattias Nilsson <mattias.i.nilsson@stericsson.com> Signed-off-by: Mattias Wallin <mattias.wallin@stericsson.com> Signed-off-by: Linus Walleij <linus.walleij@stericsson.com> Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
12 lines
418 B
Makefile
12 lines
418 B
Makefile
#
|
|
# Makefile for the linux kernel, U8500 machine.
|
|
#
|
|
|
|
obj-y := clock.o cpu.o devices.o
|
|
obj-$(CONFIG_UX500_SOC_DB5500) += cpu-db5500.o devices-db5500.o
|
|
obj-$(CONFIG_UX500_SOC_DB8500) += cpu-db8500.o devices-db8500.o prcmu.o
|
|
obj-$(CONFIG_MACH_U8500_MOP) += board-mop500.o board-mop500-sdi.o
|
|
obj-$(CONFIG_MACH_U5500) += board-u5500.o
|
|
obj-$(CONFIG_SMP) += platsmp.o headsmp.o
|
|
obj-$(CONFIG_LOCAL_TIMERS) += localtimer.o
|