source: rtems/c/src/lib/libbsp/arm/gumstix/Makefile.am @ 65f868c

5
Last change on this file since 65f868c was 65f868c, checked in by Sebastian Huber <sebastian.huber@…>, on 05/23/18 at 12:17:25

Add _CPU_Counter_frequency()

Add rtems_counter_frequency() API function. Use it to initialize the
counter value converter via the new system initialization step
(RTEMS_SYSINIT_CPU_COUNTER). This decouples the counter implementation
and the counter converter. It avoids an unnecessary pull in of the
64-bit integer division from libgcc.

Update #3456.

  • Property mode set to 100644
File size: 2.5 KB
Line 
1ACLOCAL_AMFLAGS = -I ../../../../aclocal
2
3include $(top_srcdir)/../../../../automake/compile.am
4include $(top_srcdir)/../../bsp.am
5
6dist_project_lib_DATA = ../../../../../../bsps/arm/gumstix/start/bsp_specs
7
8noinst_PROGRAMS =
9
10
11start.$(OBJEXT): ../../../../../../bsps/arm/gumstix/start/start.S
12        $(CPPASCOMPILE) -o $@ -c $<
13project_lib_DATA = start.$(OBJEXT)
14
15project_lib_DATA += linkcmds
16
17project_lib_LIBRARIES = librtemsbsp.a
18
19librtemsbsp_a_SOURCES =
20librtemsbsp_a_SOURCES += ../../../../../../bsps/shared/start/bspgetworkarea-default.c
21librtemsbsp_a_SOURCES += ../../../../../../bsps/shared/start/sbrk.c
22librtemsbsp_a_SOURCES += ../../../../../../bsps/shared/dev/getentropy/getentropy-cpucounter.c
23librtemsbsp_a_SOURCES += ../../../../../../bsps/shared/start/bspfatal-default.c
24librtemsbsp_a_SOURCES += ../../../../../../bsps/arm/gumstix/start/bspstart.c
25librtemsbsp_a_SOURCES += ../../../../../../bsps/arm/gumstix/start/bspreset.c
26librtemsbsp_a_SOURCES += ../../../../../../bsps/arm/gumstix/start/memmap.c
27librtemsbsp_a_SOURCES += ../../../../../../bsps/shared/dev/cpucounter/cpucounterfrequency.c
28librtemsbsp_a_SOURCES += ../../../../../../bsps/shared/dev/cpucounter/cpucounterread.c
29librtemsbsp_a_SOURCES += ../../../../../../bsps/shared/dev/cpucounter/cpucounterdiff.c
30librtemsbsp_a_SOURCES +=../../../../../../bsps/arm/gumstix/clock/clock.c
31librtemsbsp_a_SOURCES += ../../../../../../bsps/arm/gumstix/btimer/btimer.c
32
33#console
34librtemsbsp_a_SOURCES += ../../../../../../bsps/shared/dev/serial/legacy-console.c
35librtemsbsp_a_SOURCES += ../../../../../../bsps/shared/dev/serial/legacy-console-control.c
36librtemsbsp_a_SOURCES += ../../../../../../bsps/shared/dev/serial/legacy-console-select.c
37librtemsbsp_a_SOURCES += ../../../../../../bsps/arm/gumstix/console/uarts.c
38librtemsbsp_a_SOURCES += ../../../../../../bsps/arm/gumstix/console/ffuart.c
39# IRQ
40librtemsbsp_a_SOURCES += ../../../../../../bsps/shared/irq/irq-default-handler.c
41librtemsbsp_a_SOURCES += ../../../../../../bsps/arm/gumstix/irq/irq.c
42
43# Cache
44librtemsbsp_a_SOURCES += ../../../../../../bsps/shared/cache/nocache.c
45
46if ON_SKYEYE
47librtemsbsp_a_SOURCES += ../../../../../../bsps/arm/gumstix/fb/fb.c
48if HAS_NETWORKING
49librtemsbsp_a_SOURCES += ../../../../../../bsps/arm/gumstix/net/rtl8019.c
50endif
51endif
52
53librtemsbsp_a_SOURCES += ../../../../../../bsps/arm/shared/cp15/arm920-mmu.c
54
55include $(top_srcdir)/../../../../automake/local.am
56include $(srcdir)/../../../../../../bsps/shared/irq-sources.am
57include $(srcdir)/../../../../../../bsps/shared/shared-sources.am
58include $(srcdir)/../../../../../../bsps/arm/gumstix/headers.am
Note: See TracBrowser for help on using the repository browser.