From 9647f7feac36cc41c25b852eb8ecdd728b5486d1 Mon Sep 17 00:00:00 2001 From: Thomas Doerfler Date: Fri, 27 Feb 2009 11:26:44 +0000 Subject: * README: Added NCS. * Makefile.am, configure.ac, preinstall.am: Added BSP variants. * console/console-config.c, clock/clock-config.c, ssp/ssp.c: Fixed register settings. Cleanup. * include/bsp.h: Added network defines and functions. * include/lpc24xx.h: Added AHB and EMC defines. Fixed Ethernet status sizes. * include/system-clocks.h, misc/system-clocks.c: Added micro seconds delay function that uses Timer 1. Changed PLL setup. * network/network.c, startup/bspreset.c, startup/linkcmds.lpc2478, startup/linkcmds.lpc2478_ncs, startup/linkcmds.lpc2478_ncs_ram: New files. * startup/bspstart.c: Added EMC initialization. Changes for ROM boot. --- c/src/lib/libbsp/arm/lpc24xx/Makefile.am | 33 +++++++++++++++++++++++++++----- 1 file changed, 28 insertions(+), 5 deletions(-) (limited to 'c/src/lib/libbsp/arm/lpc24xx/Makefile.am') diff --git a/c/src/lib/libbsp/arm/lpc24xx/Makefile.am b/c/src/lib/libbsp/arm/lpc24xx/Makefile.am index c15e602995..0c3e6e0ee4 100644 --- a/c/src/lib/libbsp/arm/lpc24xx/Makefile.am +++ b/c/src/lib/libbsp/arm/lpc24xx/Makefile.am @@ -21,14 +21,15 @@ dist_project_lib_DATA = bsp_specs include_HEADERS = include/bsp.h -nodist_include_HEADERS = include/bspopts.h +nodist_include_HEADERS = ../../shared/include/coverhd.h \ + include/bspopts.h nodist_include_bsp_HEADERS = ../../shared/include/bootcard.h -nodist_include_HEADERS += ../../shared/include/coverhd.h include_bsp_HEADERS = include_bsp_HEADERS += ../../shared/include/utility.h include_bsp_HEADERS += ../../shared/include/irq-generic.h +include_bsp_HEADERS += ../../shared/include/irq-info.h include_bsp_HEADERS += ../../shared/tod.h include_bsp_HEADERS += ../shared/include/linker-symbols.h include_bsp_HEADERS += ../shared/include/start.h @@ -38,6 +39,7 @@ include_bsp_HEADERS += include/lpc24xx.h include_bsp_HEADERS += include/system-clocks.h include_bsp_HEADERS += include/ssp.h include_bsp_HEADERS += include/dma.h + include_HEADERS += ../../shared/include/tm27.h ############################################################################### @@ -51,7 +53,10 @@ libbspstart_a_SOURCES = ../shared/start/start.S project_lib_DATA = start.$(OBJEXT) dist_project_lib_DATA += ../shared/startup/linkcmds.base \ - startup/linkcmds + ../shared/startup/linkcmds.rom \ + startup/linkcmds.lpc2478 \ + startup/linkcmds.lpc2478_ncs \ + startup/linkcmds.lpc2478_ncs_ram ############################################################################### # LibBSP # @@ -64,7 +69,6 @@ libbsp_a_SOURCES = # Shared libbsp_a_SOURCES += ../../shared/bootcard.c \ ../../shared/bspclean.c \ - ../../shared/bspreset.c \ ../../shared/bspgetworkarea.c \ ../../shared/bsplibc.c \ ../../shared/bsppost.c \ @@ -75,11 +79,14 @@ libbsp_a_SOURCES += ../../shared/bootcard.c \ ../shared/abort/simple_abort.c # Startup -libbsp_a_SOURCES += startup/bspstart.c +libbsp_a_SOURCES += startup/bspstart.c \ + startup/bspreset.c # IRQ libbsp_a_SOURCES += ../../shared/src/irq-generic.c \ ../../shared/src/irq-legacy.c \ + ../../shared/src/irq-info.c \ + ../../shared/src/irq-shell.c \ ../shared/irq/irq_asm.S \ irq/irq.c @@ -104,6 +111,22 @@ libbsp_a_SOURCES += misc/system-clocks.c \ # SSP libbsp_a_SOURCES += ssp/ssp.c +############################################################################### +# Network # +############################################################################### + +if HAS_NETWORKING + +noinst_PROGRAMS = network.rel + +network_rel_SOURCES = network/network.c +network_rel_CPPFLAGS = $(AM_CPPFLAGS) -D__INSIDE_RTEMS_BSD_TCPIP_STACK__ -D__BSD_VISIBLE +network_rel_LDFLAGS = $(RTEMS_RELLDFLAGS) + +libbsp_a_LIBADD = network.rel + +endif + ############################################################################### # Special Rules # ############################################################################### -- cgit v1.2.3