source: rtems/make/custom/mbx8xx.cfg @ 380b5227

4.104.114.84.95
Last change on this file since 380b5227 was 380b5227, checked in by Joel Sherrill <joel.sherrill@…>, on 08/10/00 at 16:25:46

2000-08-10 Charles-Antoine Gauthier <charles.gauthier@…>

  • mbx8xx.cfg: Support for shared printk and no termios.

2000-08-10 John Cotton <john.cotton@…>

  • mbx8xx.cfg: Support added for dejagnu test harness.
  • Property mode set to 100644
File size: 8.3 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#  UARTS_USE_TERMIOS
68#    Define to 1 if you want termios support for every port.
69#    Termios support is independent of the choice of UART I/O mode.
70#
71#  CONSOLE_MINOR (BSP--console driver)
72#    Must be defined to be one of SMC1_MINOR, SMC2_MINOR, SCC2_MINOR,
73#    SCC3_MINOR, or SCC4_MINOR. Determines which device will be registered
74#    as /dev/console.
75#
76#  UARTS_IO_MODE (BSP--console driver)
77#    Define to 0 if you want polled I/O performed by RTEMS.
78#    Define to 1 if you want interrupt-driven performed by RTEMS.
79#    Define to 2 if you want polled I/O performed by EPPCBug.
80#    There is no provision to have a mix of interrupt-driven and polled I/O
81#    ports, except that the printk port may use a different mode from the
82#    other ports. If this is done, do not open the printk port from an RTEMS
83#    application. With EPPCBug 1.1, if mode 2 is selected, CONSOLE_MINOR must
84#    be set to SMC1_MINOR. This is a deficiency of the firmware: it does not
85#    perform serial I/O on any port other than its default debug port, which
86#    must be SMC1.
87#
88#  PRINTK_MINOR (BSP--console driver)
89#    Must be defined to be one of SMC1_MINOR, SMC2_MINOR, SCC2_MINOR,
90#    SCC3_MINOR, or SCC4_MINOR. Determines which device is used for output
91#    by printk(). If the port that printk() uses is also used for other I/O
92#    (e.g. if  PRINTK_MINOR == CONSOLE_MINOR), then both ports should use
93#    the same type of I/O, otherwise the drivers will likely conflict with
94#    each other.
95#
96#  PRINTK_IO_MODE (BSP--console driver)
97#    Define to 0 if you want polled I/O performed by RTEMS.
98#    Define to 1 if you want interrupt-driven I/O performed by RTEMS.
99#    Define to 2 if you want polled I/O performed by EPPCBug.
100#    The printk() port is not configured to termios. The only way to
101#    use printk() with interrupt-driven I/O, which always uses termios,
102#    is to open the printk port from an RTEMS application. One way to
103#    do this is to have PRINTK_MINOR == CONSOLE_MINOR. With EPPCBug 1.1,
104#    if mode 2 is selected, PRINTK_MINOR must be set to SMC1_MINOR.
105#    This is a deficiency of the firmware: it does not perform serial I/O
106#    on any port other than its default debug port, which must be SMC1.
107#
108#  EPPCBUG_SMC1 (BSP--console driver)
109#    If defined, SMC1 is in use by EPPC-Bug. The console driver will not
110#    re-initialize that port.
111#
112#  EPPCBUG_VECTORS (BSP--RTEMS)
113#    If defined, vectors branch to EPPCBug, except the following:
114#    0x500 (external interrupt), 0x900 (decrementer).
115#
116#  INSTRUCTION_CACHE_ENABLE (BSP--RTEMS)
117#    If defined, the instruction cache will be enabled after address translation
118#    is turned on.
119#
120#  DATA_CACHE_ENABLE (BSP--RTEMS)
121#    If defined, the data cache will be enabled after address translation
122#    is turned on.
123#   
124#  PowerPC-specific options:
125#       
126#  PPC_USE_SPRG (RTEMS PowerPC port)
127#     If defined (=1), then the PowerPC specific code in RTEMS will use some
128#     of the special purpose registers to slightly optimize interrupt
129#     response time.  The use of these registers can conflict with
130#     other tools like debuggers.  This should be 0 when using EPPCBug
131#     because its uses most SPRGs (don't believe the documentation!).
132#
133#  PPC_USE_DATA_CACHE (RTEMS PowerPC port)
134#     If defined, then the PowerPC specific code in RTEMS will use
135#     data cache instructions to optimize the context switch code.
136#     This code can conflict with debuggers or emulators.
137
138define make-target-options
139        @echo "#ifdef mpc$(CPU_TYPE)"                       >>$@
140        @echo "#undef mpc$(CPU_TYPE)"                       >>$@
141        @echo "#endif"                                      >>$@
142        @echo "#define mpc$(CPU_TYPE) 1"                    >>$@
143        @echo                                               >>$@
144        @echo "#define UARTS_USE_TERMIOS 1"                 >>$@
145        @echo "#define CONSOLE_MINOR SMC2_MINOR"            >>$@
146        @echo "#define UARTS_IO_MODE 0"                     >>$@
147        @echo "#define PRINTK_MINOR SMC2_MINOR"             >>$@
148  @echo "#define PRINTK_IO_MODE 0"                    >>$@
149        @echo "#define EPPCBUG_SMC1 1"                      >>$@
150        @echo "#define EPPCBUG_VECTORS 1"                   >>$@
151        @echo "#define INSTRUCTION_CACHE_ENABLE 1"          >>$@
152        @echo "#define DATA_CACHE_ENABLE 1"                 >>$@
153        @echo                                               >>$@
154        @echo "#define PPC_VECTOR_FILE_BASE 0x0000"         >>$@
155        @echo "#define PPC_USE_SPRG 0"                      >>$@
156        @echo "#define PPC_USE_DATA_CACHE 1"                >>$@
157        @echo                                               >>$@
158endef
159
160#  This contains the compiler options necessary to select the CPU model
161#  and (hopefully) optimize for it.
162#
163CPU_CFLAGS = -mcpu=$(CPU_TYPE)
164
165CFLAGS_DEBUG_V += -ggdb
166CXXFLAGS_DEBUG_V += -ggdb
167
168# optimize flag: typically -O, could use -O4 or -fast
169# -O4 is ok for RTEMS
170# NOTE: some level of -O may be actually required by inline assembler
171# CFLAGS_OPTIMIZE_V=-O4 -fno-keep-inline-functions
172CFLAGS_OPTIMIZE_V=-O4 -fno-keep-inline-functions
173CXXFLAGS_OPTIMIZE_V=-O4
174
175# The following are definitions of make-exe which will work using ld as
176# is currently required.  It is expected that as of gcc 2.8, the end user
177# will be able to override parts of the compilers specs and link using gcc.
178
179ifeq ($(RTEMS_USE_GCC272),yes)
180# The --defsym arguments define arguments which are required by the linkcmds
181# file which is designed for gcc 2.8
182define make-exe
183        $(LD) $(XLDFLAGS) -T $(LINKCMDS) -o $(basename $@)_sym.exe \
184            --defsym __fini=0 --defsym __init=0 \
185            -u atexit -u __vectors -u start \
186            $(START_FILE) $(LINK_OBJS) --start-group $(LINK_LIBS) --end-group
187        $(NM) -g -n $(basename $@)_sym.exe> $(basename $@).nm
188        $(STRIP) -o $(basename $@).exe $(basename $@)_sym-exe
189        $(SIZE) $(basename $@)_sym.exe
190endef
191else
192define make-exe
193        $(LINK.c) $(AM_CFLAGS) $(AM_LDFLAGS) $(MBX8xx_LDFLAGS) \
194            -o $(basename $@)_sym.exe $(LINK_OBJS) $(LINK_LIBS)
195        $(NM) -g -n $(basename $@)_sym.exe > $(basename $@).nm
196        $(STRIP) -o $(basename $@).exe $(basename $@)_sym.exe
197        $(SIZE) $(basename $@)_sym.exe
198endef
199endif
200
201# Miscellaneous additions go here
202
203# Override default start file
204START_BASE=
205
Note: See TracBrowser for help on using the repository browser.