mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-12 16:07:30 +00:00
3164f3c689
The CDCE913 and CDCEL913 devices are modular PLL-based, low cost, high performance , programmable clock synthesizers. They generate upto 3 output clocks from a single input frequency. Each output can be programmed for any clock-frequency. Adding support for the same. Reviewed-by: Tom Rini <trini@konsulko.com> Signed-off-by: Lokesh Vutla <lokeshvutla@ti.com>
22 lines
479 B
Makefile
22 lines
479 B
Makefile
#
|
|
# Copyright (C) 2011, Texas Instruments, Incorporated - http://www.ti.com/
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
|
|
obj-$(CONFIG_AM33XX) += clock_am33xx.o
|
|
obj-$(CONFIG_TI814X) += clock_ti814x.o
|
|
obj-$(CONFIG_AM43XX) += clock_am43xx.o
|
|
|
|
ifneq ($(CONFIG_AM43XX)$(CONFIG_AM33XX),)
|
|
obj-y += clock.o
|
|
endif
|
|
|
|
obj-$(CONFIG_TI816X) += clock_ti816x.o
|
|
obj-y += sys_info.o
|
|
obj-y += ddr.o
|
|
obj-y += emif4.o
|
|
obj-y += board.o
|
|
obj-y += mux.o
|
|
|
|
obj-$(CONFIG_CLOCK_SYNTHESIZER) += clk_synthesizer.o
|