source: rtems/make/custom/mbx8xx.cfg @ 4383f3a

4.104.114.84.95
Last change on this file since 4383f3a was 4383f3a, checked in by Joel Sherrill <joel.sherrill@…>, on 11/27/01 at 12:09:48

2001-11-26 Ralf Corsepius <corsepiu@…>

  • custom/gen405.cfg: Remove PPC_VECTOR_FILE_BASE, PPC_USE_SPRG; Remove make-target-options.
  • custom/helas403.cfg: Remove PPC_VECTOR_FILE_BASE, PPC_USE_SPRG; Remove make-target-options.
  • custom/mbx8xx.cfg: Remove INSTRUCTION_CACHE_ENABLE, DATA_CACHE_ENABLE.
  • custom/mbx860_005b.cfg: Remove INSTRUCTION_CACHE_ENABLE, DATA_CACHE_ENABLE.
  • custom/mpc8260ads.cfg: Remove INSTRUCTION_CACHE_ENABLE, DATA_CACHE_ENABLE.
  • Property mode set to 100644
File size: 4.2 KB
Line 
1#
2#  Config file for a PowerPC MPC821- or MPC860-based MBX card
3#
4#  This file is derived from:
5#
6#  Config file for a PowerPC 403 based helas403 card
7#  Config file for MPC860 based Ethernet Comm Board
8#
9
10include $(RTEMS_ROOT)/make/custom/default.cfg
11
12RTEMS_CPU=powerpc
13RTEMS_CPU_MODEL=mpc8xx
14
15# This is the actual bsp directory used during the build process.
16RTEMS_BSP_FAMILY=mbx8xx
17
18# The value assigned to RTEMS_CPU, RTEMS_CPU_MODEL and RTEMS_BSP get
19# #defined in targopts.h. Source code can switch on these values with #ifdef
20# to select what code to compile for a specific CPU family member and specific
21# board. The RTEMS_CPU_MODEL is also used as the name of the libcpu directory,
22# while the RTEMS_BSP_FAMILY is used as the name of the libbsp directory.
23# For the MBX860 and MBX821, the boards and processors are sufficiently
24# similar that the ports are unified and use RTEMS_CPU_MODEL=mpc8xx and
25# RTEMS_BSP_FAMILY=mbx8xx. Because there are minor differences in the CPUs
26# and the boards, it is necessary to specify them fully during the build.
27# Do a "make RTEMS_BSP=<your_board> <target>" See below for a list of valid
28# values for <your_board>.
29
30ifeq ($(findstring mbx821,$(RTEMS_MBX_MODEL)),mbx821)
31CPU_TYPE=821
32else
33ifeq ($(findstring mbx860,$(RTEMS_MBX_MODEL)),mbx860)
34CPU_TYPE=860
35else
36RTEMS_BSP = mbx860_002
37RTEMS_MBX_MODEL = mbx860_002
38TARGET_ARCH=o-mbx860_002
39CPU_TYPE=860
40endif # mbx860
41endif # mbx821
42
43#  This section makes the target dependent options file.
44#
45#  Note that RTEMS_BSP matches the RTEMS_MBX_MODEL. Its value must be
46#  defined in targopts.h, so the few places that require different code
47#  for different MBX models can be distinguished. The value of
48#  RTEMS_BSP is already defined in targopts.h and is one of:
49#     mbx860_001    mbx821_001
50#     mbx860_002    mbx821_002
51#     mbx860_003    mbx821_003
52#     mbx860_004    mbx821_004
53#     mbx860_005    mbx821_005
54#     mbx860_001b   mbx821_001b
55#     mbx860_002b   mbx821_002b
56#     mbx860_003b   mbx821_003b
57#     mbx860_004b   mbx821_004b
58#     mbx860_005b   mbx821_005b
59#     mbx860_006b   mbx821_006b
60
61#  The specific CPU model is defined, so the few places that require
62#  different code for the MPC860 and MPC821 can be distinguished.
63#  Either mpc860 or mpc821 is defined.
64#
65#  MBX8xx-specific options:
66#
67
68define make-target-options
69        @echo "#ifdef mpc$(CPU_TYPE)"                       >>$@
70        @echo "#undef mpc$(CPU_TYPE)"                       >>$@
71        @echo "#endif"                                      >>$@
72        @echo "#define mpc$(CPU_TYPE) 1"                    >>$@
73        @echo                                               >>$@
74endef
75
76#  This contains the compiler options necessary to select the CPU model
77#  and (hopefully) optimize for it.
78#
79CPU_CFLAGS = -mcpu=$(CPU_TYPE)
80
81CFLAGS_DEBUG_V += -ggdb
82CXXFLAGS_DEBUG_V += -ggdb
83
84# optimize flag: typically -O, could use -O4 or -fast
85# -O4 is ok for RTEMS
86# NOTE: some level of -O may be actually required by inline assembler
87# CFLAGS_OPTIMIZE_V=-O4 -fno-keep-inline-functions
88CFLAGS_OPTIMIZE_V=-O4 -fno-keep-inline-functions
89CXXFLAGS_OPTIMIZE_V=-O4
90
91# The following are definitions of make-exe which will work using ld as
92# is currently required.  It is expected that as of gcc 2.8, the end user
93# will be able to override parts of the compilers specs and link using gcc.
94
95ifeq ($(RTEMS_USE_GCC272),yes)
96# The --defsym arguments define arguments which are required by the linkcmds
97# file which is designed for gcc 2.8
98define make-exe
99        $(LD) $(XLDFLAGS) -T $(LINKCMDS) -o $(basename $@)_sym.exe \
100            --defsym __fini=0 --defsym __init=0 \
101            -u atexit -u __vectors -u start \
102            $(START_FILE) $(LINK_OBJS) --start-group $(LINK_LIBS) --end-group
103        $(NM) -g -n $(basename $@)_sym.exe> $(basename $@).nm
104        cp $(basename $@)_sym.exe $(basename $@).exe
105        $(STRIP) $(basename $@).exe
106        $(SIZE) $(basename $@)_sym.exe
107endef
108else
109define make-exe
110        $(LINK.c) $(AM_CFLAGS) $(AM_LDFLAGS) $(MBX8xx_LDFLAGS) \
111            -o $(basename $@)_sym.exe $(LINK_OBJS) $(LINK_LIBS)
112        $(NM) -g -n $(basename $@)_sym.exe > $(basename $@).nm
113        cp $(basename $@)_sym.exe $(basename $@).exe
114        $(STRIP) $(basename $@).exe
115        $(SIZE) $(basename $@)_sym.exe
116endef
117endif
118
119# Miscellaneous additions go here
120
121# Override default start file
122START_BASE=
123
Note: See TracBrowser for help on using the repository browser.