mirror of
https://github.com/torvalds/linux.git
synced 2024-11-11 06:31:49 +00:00
3df57bcf5a
This updates the DB8500 PRCMU driver to the latest version available internally. Nominally we would update the dependent CPUfreq driver at the same time but since that is being moved around in this patch set we postpone that by simply deactivating it for the time being. This is a snapshot of the current PRCMU firmware API as it looks right now. The PRCMU firmware is still subject to change. This also updates the CPUfreq driver to a newer version that will utilize the new API. Acked-by: Samuel Ortiz <sameo@linux.intel.com> Signed-off-by: Mattias Nilsson <mattias.i.nilsson@stericsson.com> Signed-off-by: Martin Persson <martin.persson@stericsson.com> Signed-off-by: Per Fransson <per.xx.fransson@stericsson.com> Signed-off-by: Jonas Aaberg <jonas.aberg@stericsson.com> Signed-off-by: Sebastien Rault <sebastien.rault@stericsson.com> Signed-off-by: Bengt Jonsson <bengt.g.jonsson@stericsson.com> Signed-off-by: Rickard Andersson <rickard.andersson@stericsson.com> Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
21 lines
725 B
Makefile
21 lines
725 B
Makefile
#
|
|
# Makefile for the linux kernel, U8500 machine.
|
|
#
|
|
|
|
obj-y := clock.o cpu.o devices.o devices-common.o \
|
|
id.o usb.o
|
|
obj-$(CONFIG_UX500_SOC_DB5500) += cpu-db5500.o dma-db5500.o
|
|
obj-$(CONFIG_UX500_SOC_DB8500) += cpu-db8500.o devices-db8500.o
|
|
obj-$(CONFIG_MACH_U8500) += board-mop500.o board-mop500-sdi.o \
|
|
board-mop500-regulators.o \
|
|
board-mop500-uib.o board-mop500-stuib.o \
|
|
board-mop500-u8500uib.o \
|
|
board-mop500-pins.o
|
|
obj-$(CONFIG_MACH_U5500) += board-u5500.o board-u5500-sdi.o
|
|
obj-$(CONFIG_SMP) += platsmp.o headsmp.o
|
|
obj-$(CONFIG_HOTPLUG_CPU) += hotplug.o
|
|
obj-$(CONFIG_LOCAL_TIMERS) += localtimer.o
|
|
obj-$(CONFIG_U5500_MODEM_IRQ) += modem-irq-db5500.o
|
|
obj-$(CONFIG_U5500_MBOX) += mbox-db5500.o
|
|
|