mirror of
https://github.com/edk2-porting/linux-next.git
synced 2025-01-15 17:14:00 +08:00
f090fb37de
This adds new at91 utmi clock implementation using common clk framework. This clock is a pll with a fixed factor (x40). It is used as a source for usb clock. Signed-off-by: Boris BREZILLON <b.brezillon@overkiz.com> Acked-by: Mike Turquette <mturquette@linaro.org> Signed-off-by: Nicolas Ferre <nicolas.ferre@atmel.com>
11 lines
254 B
Makefile
11 lines
254 B
Makefile
#
|
|
# Makefile for at91 specific clk
|
|
#
|
|
|
|
obj-y += pmc.o
|
|
obj-y += clk-main.o clk-pll.o clk-plldiv.o clk-master.o
|
|
obj-y += clk-system.o clk-peripheral.o
|
|
|
|
obj-$(CONFIG_AT91_PROGRAMMABLE_CLOCKS) += clk-programmable.o
|
|
obj-$(CONFIG_HAVE_AT91_UTMI) += clk-utmi.o
|