mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-12 07:57:21 +00:00
a73c8b32a7
chiliSOM is a System On Module (http://http://grinn-global.com/chilisom/). It can't exists on its own, but will be used as part of other boards. Hardware specification: * TI AM335x processor * 128M, 256M or 512M DDR3 memory * up to 256M NAND We place source inside arch/arm/mach-omap2/ directory and make it possible to reuse initialization code (i.e. DDR, NAND init) for all boards that use it. Signed-off-by: Marcin Niestroj <m.niestroj@grinn-global.com> Reviewed-by: Tom Rini <trini@konsulko.com>
24 lines
524 B
Makefile
24 lines
524 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
|
|
|
|
obj-$(CONFIG_AM33XX_CHILISOM) += chilisom.o
|