mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-14 17:07:38 +00:00
0a0f0e737b
Implement sam9x60 USB clock driver. This clock has three parents: PLLA, UPLL and MAINXTAL. The driver is aware of the three possible parents with the help of the two mux tables provied to the driver during the registration of the clock. Signed-off-by: Sergiu Moga <sergiu.moga@microchip.com> Reviewed-by: Claudiu Beznea <claudiu.beznea@microchip.com> Signed-off-by: Claudiu Beznea <claudiu.beznea@microchip.com>
17 lines
456 B
Makefile
17 lines
456 B
Makefile
#
|
|
# Makefile for at91 specific clk
|
|
#
|
|
|
|
ifdef CONFIG_CLK_CCF
|
|
obj-y += pmc.o sckc.o clk-main.o clk-master.o clk-programmable.o clk-system.o
|
|
obj-y += clk-peripheral.o
|
|
|
|
obj-$(CONFIG_AT91_GENERIC_CLK) += clk-generic.o
|
|
obj-$(CONFIG_AT91_UTMI) += clk-utmi.o
|
|
obj-$(CONFIG_AT91_SAM9X60_PLL) += clk-sam9x60-pll.o
|
|
obj-$(CONFIG_AT91_SAM9X60_USB) += clk-sam9x60-usb.o
|
|
obj-$(CONFIG_SAMA7G5) += sama7g5.o
|
|
obj-$(CONFIG_SAM9X60) += sam9x60.o
|
|
else
|
|
obj-y += compat.o
|
|
endif
|