mirror of
https://github.com/torvalds/linux.git
synced 2024-11-14 08:02:07 +00:00
0865805d82
This new clock driver set allows to have a fractional divided clock that would generate a precise clock particularly suitable for audio applications. The main audio pll clock has two children clocks: one that is connected to the PMC, the other that can directly drive a pad. As these two routes have different enable bits and different dividers and divider formulas, they are handled by two different drivers. Each of them could modify the rate of the main audio pll parent. The main audio pll clock can output 620MHz to 700MHz. Signed-off-by: Nicolas Ferre <nicolas.ferre@atmel.com> Signed-off-by: Quentin Schulz <quentin.schulz@free-electrons.com> Acked-by: Boris Brezillon <boris.brezillon@free-electrons.com> Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
15 lines
474 B
Makefile
15 lines
474 B
Makefile
#
|
|
# Makefile for at91 specific clk
|
|
#
|
|
|
|
obj-y += pmc.o sckc.o
|
|
obj-y += clk-slow.o clk-main.o clk-pll.o clk-plldiv.o clk-master.o
|
|
obj-y += clk-system.o clk-peripheral.o clk-programmable.o
|
|
|
|
obj-$(CONFIG_HAVE_AT91_AUDIO_PLL) += clk-audio-pll.o
|
|
obj-$(CONFIG_HAVE_AT91_UTMI) += clk-utmi.o
|
|
obj-$(CONFIG_HAVE_AT91_USB_CLK) += clk-usb.o
|
|
obj-$(CONFIG_HAVE_AT91_SMD) += clk-smd.o
|
|
obj-$(CONFIG_HAVE_AT91_H32MX) += clk-h32mx.o
|
|
obj-$(CONFIG_HAVE_AT91_GENERATED_CLK) += clk-generated.o
|