diff options
author | David Brownell <dbrownell@users.sourceforge.net> | 2009-05-15 23:44:08 +0200 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2009-06-12 20:39:48 +0200 |
commit | f79043681ff44bae435c06f830e51e1546db7e19 (patch) | |
tree | 6fdcb0df4f8bba05dbaafb41763e81fa92271723 /cpu/arm926ejs/davinci/Makefile | |
parent | 48ef5729555f41f51618b6a3016ac5c53c7c75dc (diff) | |
download | u-boot-imx-f79043681ff44bae435c06f830e51e1546db7e19.zip u-boot-imx-f79043681ff44bae435c06f830e51e1546db7e19.tar.gz u-boot-imx-f79043681ff44bae435c06f830e51e1546db7e19.tar.bz2 |
davinci: split out some dm644x-specific bits from psc
Split out DaVinci DM6446-specific bits from more generic bits:
- Add a CONFIG_SOC_DM644X. All current boards use DM6446 chips;
DM6443 and DM6441 chips differ in available peripherals.
- Move most DM644X-specific bits from psc.c to a new dm644x.c file,
which is conditionally built. It provides device-specific setup.
Plus minor coding style and comment updates with respect to the PSC.
Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
Diffstat (limited to 'cpu/arm926ejs/davinci/Makefile')
-rw-r--r-- | cpu/arm926ejs/davinci/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cpu/arm926ejs/davinci/Makefile b/cpu/arm926ejs/davinci/Makefile index e09874b..6052e02 100644 --- a/cpu/arm926ejs/davinci/Makefile +++ b/cpu/arm926ejs/davinci/Makefile @@ -28,6 +28,7 @@ include $(TOPDIR)/config.mk LIB = $(obj)lib$(SOC).a COBJS-y += timer.o psc.o +COBJS-$(CONFIG_SOC_DM644X) += dm644x.o COBJS-$(CONFIG_DRIVER_TI_EMAC) += ether.o lxt972.o dp83848.o SOBJS = reset.o |