mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-06 05:04:26 +00:00
fed0509c92
As said in the SAMA5D2 datasheet, the PLLA clock must be divided by 2 by writing the PLLADIV2 bit in PMC_MCKR, if the ratio between PCK and MCK is 3 (MDIV = 3). This is the purpose of the driver. Signed-off-by: Wenyou Yang <wenyou.yang@microchip.com>
12 lines
338 B
Makefile
12 lines
338 B
Makefile
#
|
|
# Makefile for at91 specific clk
|
|
#
|
|
|
|
obj-y += pmc.o sckc.o
|
|
obj-y += clk-slow.o clk-main.o clk-plla.o clk-plladiv.o clk-master.o
|
|
obj-y += clk-system.o clk-peripheral.o
|
|
|
|
obj-$(CONFIG_AT91_UTMI) += clk-utmi.o
|
|
obj-$(CONFIG_AT91_USB_CLK) += clk-usb.o
|
|
obj-$(CONFIG_AT91_H32MX) += clk-h32mx.o
|
|
obj-$(CONFIG_AT91_GENERIC_CLK) += clk-generated.o
|