source: rtems/cpukit/sapi/include/confdefs.h @ 133d54c5

4.115
Last change on this file since 133d54c5 was 133d54c5, checked in by Sebastian Huber <sebastian.huber@…>, on 04/09/14 at 08:33:00

score: Add scheduler name

  • Property mode set to 100644
File size: 91.6 KB
Line 
1/**
2 * @file
3 *
4 * @brief Configuration Table Template that will be Instantiated
5 * by an Application
6 *
7 * This include file contains the configuration table template that will
8 * be instantiated by an application based on the setting of a number
9 * of macros.  The macros are documented in the Configuring a System
10 * chapter of the Classic API User's Guide
11 *
12 * The model is to estimate the memory required for each configured item
13 * and sum those estimates.  The estimate can be too high or too low for
14 * a variety of reasons:
15 *
16 * Reasons estimate is too high:
17 *   + FP contexts (not all tasks are FP)
18 *
19 * Reasons estimate is too low:
20 *   + stacks greater than minimum size
21 *   + messages
22 *   + application must account for device driver resources
23 *   + application must account for add-on library resource requirements
24 *
25 * NOTE:  Eventually this may be able to take into account some of
26 *        the above.  This procedure has evolved from just enough to
27 *        support the RTEMS Test Suites into something that can be
28 *        used remarkably reliably by most applications.
29 */
30
31/*
32 *  COPYRIGHT (c) 1989-2014.
33 *  On-Line Applications Research Corporation (OAR).
34 *
35 *  The license and distribution terms for this file may be
36 *  found in the file LICENSE in this distribution or at
37 *  http://www.rtems.org/license/LICENSE.
38 */
39
40#ifndef __CONFIGURATION_TEMPLATE_h
41#define __CONFIGURATION_TEMPLATE_h
42
43/*
44 * Include the executive's configuration
45 */
46#include <rtems.h>
47#include <rtems/score/apimutex.h>
48#include <rtems/score/wkspace.h>
49
50#ifdef CONFIGURE_DISABLE_BSP_SETTINGS
51  #undef BSP_DEFAULT_UNIFIED_WORK_AREAS
52  #undef BSP_IDLE_TASK_BODY
53  #undef BSP_IDLE_TASK_STACK_SIZE
54  #undef BSP_INITIAL_EXTENSION
55  #undef BSP_INTERRUPT_STACK_SIZE
56  #undef BSP_MAXIMUM_DEVICES
57  #undef BSP_ZERO_WORKSPACE_AUTOMATICALLY
58  #undef CONFIGURE_BSP_PREREQUISITE_DRIVERS
59  #undef CONFIGURE_MALLOC_BSP_SUPPORTS_SBRK
60#else
61  #include <bsp.h>
62#endif
63
64#ifdef RTEMS_NEWLIB
65  #include <sys/reent.h>
66#endif
67
68#ifdef __cplusplus
69extern "C" {
70#endif
71
72extern rtems_initialization_tasks_table Initialization_tasks[];
73#if defined(RTEMS_MULTIPROCESSING)
74  extern rtems_multiprocessing_table      Multiprocessing_configuration;
75#endif
76#ifdef RTEMS_POSIX_API
77  extern posix_api_configuration_table    Configuration_POSIX_API;
78#endif
79
80/**
81 * This macro determines whether the RTEMS reentrancy support for
82 * the Newlib C Library is enabled.
83 */
84#ifdef RTEMS_SCHEDSIM
85  #undef RTEMS_NEWLIB
86#endif
87
88#if (defined(RTEMS_NEWLIB) && !defined(CONFIGURE_DISABLE_NEWLIB_REENTRANCY))
89  #define CONFIGURE_NEWLIB_EXTENSION 1
90#else
91  #define CONFIGURE_NEWLIB_EXTENSION 0
92#endif
93
94#ifndef RTEMS_SCHEDSIM
95#include <rtems/libio.h>
96
97#ifdef CONFIGURE_INIT
98const rtems_libio_helper rtems_libio_init_helper =
99  #ifdef CONFIGURE_APPLICATION_DISABLE_FILESYSTEM
100    rtems_libio_helper_null;
101  #else
102    rtems_libio_init;
103  #endif
104
105const rtems_libio_helper rtems_libio_post_driver_helper =
106  #ifdef CONFIGURE_APPLICATION_DISABLE_FILESYSTEM
107    rtems_libio_helper_null;
108  #else
109    rtems_libio_post_driver;
110  #endif
111
112const rtems_libio_helper rtems_libio_exit_helper =
113  #ifdef CONFIGURE_APPLICATION_DISABLE_FILESYSTEM
114    rtems_libio_helper_null;
115  #else
116    rtems_libio_exit;
117  #endif
118
119const rtems_libio_helper rtems_fs_init_helper =
120  #ifdef CONFIGURE_APPLICATION_DISABLE_FILESYSTEM
121    rtems_libio_helper_null;
122  #else
123    rtems_filesystem_initialize;
124  #endif
125#endif
126#endif
127
128/*
129 *  If the application disables the filesystem, they will not need
130 *  a mount table, so do not produce one.
131 */
132#ifdef CONFIGURE_APPLICATION_DISABLE_FILESYSTEM
133  #define CONFIGURE_HAS_OWN_MOUNT_TABLE
134#endif
135
136/**
137 * This macro defines the number of POSIX file descriptors allocated
138 * and managed by libio.  These are the "integer" file descriptors that
139 * are used by calls like open(2) and read(2).
140 */
141#ifndef CONFIGURE_LIBIO_MAXIMUM_FILE_DESCRIPTORS
142  #define CONFIGURE_LIBIO_MAXIMUM_FILE_DESCRIPTORS 3
143#endif
144
145/**
146 * Semaphore count used by the IO library.
147 */
148#define CONFIGURE_LIBIO_SEMAPHORES 1
149
150/**
151 * POSIX key count used by the IO library.
152 */
153#define CONFIGURE_LIBIO_POSIX_KEYS 1
154
155#ifdef CONFIGURE_INIT
156  /**
157   * When instantiating the configuration tables, this variable is
158   * initialized to specify the maximum number of file descriptors.
159   */
160  uint32_t rtems_libio_number_iops = CONFIGURE_LIBIO_MAXIMUM_FILE_DESCRIPTORS;
161#endif
162
163/**
164 * This macro determines if termios is disabled by this application.
165 * This only means that resources will not be reserved.  If you end
166 * up using termios, it will fail.
167 */
168#ifdef CONFIGURE_TERMIOS_DISABLED
169  #define CONFIGURE_TERMIOS_SEMAPHORES 0
170#else
171  /**
172   * This macro specifies the number of serial or PTY ports that will
173   * use termios.
174   */
175  #ifndef CONFIGURE_NUMBER_OF_TERMIOS_PORTS
176  #define CONFIGURE_NUMBER_OF_TERMIOS_PORTS 1
177  #endif
178
179  /**
180   * This macro reserves the number of semaphores required by termios
181   * based upon the number of communication ports that will use it.
182   */
183  #define CONFIGURE_TERMIOS_SEMAPHORES \
184    ((CONFIGURE_NUMBER_OF_TERMIOS_PORTS * 4) + 1)
185#endif
186
187/**
188 * This macro specifies the number of PTYs that can be concurrently
189 * active.
190 */
191#ifndef CONFIGURE_MAXIMUM_PTYS
192  #define CONFIGURE_MAXIMUM_PTYS 0
193#endif
194
195/**
196 * This variable contains the maximum number of PTYs that can be
197 * concurrently active.
198 */
199#ifdef CONFIGURE_INIT
200  int rtems_telnetd_maximum_ptys = CONFIGURE_MAXIMUM_PTYS;
201#else
202  extern int rtems_telnetd_maximum_ptys;
203#endif
204
205#if defined(RTEMS_SMP)
206  /*
207   *  If configured for SMP, then we need to know the maximum CPU cores.
208   */
209  #if !defined(CONFIGURE_SMP_APPLICATION)
210    #if !defined(CONFIGURE_SMP_MAXIMUM_PROCESSORS)
211      #define CONFIGURE_SMP_MAXIMUM_PROCESSORS 1
212    #endif
213  #else
214    #if !defined(CONFIGURE_SMP_MAXIMUM_PROCESSORS)
215      #error "CONFIGURE_SMP_MAXIMUM_PROCESSORS not specified for SMP Application"
216    #endif
217  #endif
218#endif
219
220/*
221 *  Filesystems and Mount Table Configuration.
222 *
223 *  Defines to control the file system:
224 *
225 *   CONFIGURE_APPLICATION_DISABLE_FILESYSTEM:
226 *     Disable the RTEMS filesystems. You get an empty DEVFS.
227 *
228 *   CONFIGURE_USE_DEVFS_AS_BASE_FILESYSTEM:
229 *     Use the DEVFS as the root file system. Limited functions are
230 *     provided when this is used.
231 *
232 *   CONFIGURE_FILESYSTEM_ALL:
233 *     Add file filesystems to the default filesystem table.
234 *
235 *   List of available file systems. You can define as many as you like:
236 *     CONFIGURE_FILESYSTEM_MINIIMFS - MiniIMFS, use DEVFS now
237 *     CONFIGURE_FILESYSTEM_IMFS     - In Memory File System (IMFS)
238 *     CONFIGURE_FILESYSTEM_DEVFS    - Device File System (DSVFS)
239 *     CONFIGURE_FILESYSTEM_TFTPFS   - TFTP File System, networking enabled
240 *     CONFIGURE_FILESYSTEM_FTPFS    - FTP File System, networking enabled
241 *     CONFIGURE_FILESYSTEM_NFS      - Network File System, networking enabled
242 *     CONFIGURE_FILESYSTEM_DOSFS    - DOS File System, uses libblock
243 *     CONFIGURE_FILESYSTEM_RFS      - RTEMS File System (RFS), uses libblock
244 *     CONFIGURE_FILESYSTEM_JFFS2    - Journalling Flash File System, Version 2
245 *
246 *   Combinations:
247 *
248 *    - If nothing is defined the base file system is the IMFS.
249 *
250 *    - If CONFIGURE_APPLICATION_DISABLE_FILESYSTEM is defined all filesystem
251 *      are disabled by force and an empty DEVFS is created.
252 *
253 *    - If CONFIGURE_USE_DEV_AS_BASE_FILESYSTEM is defined all filesystem
254 *      are disabled by force and DEVFS is defined.
255 */
256
257#ifdef CONFIGURE_INIT
258
259  /*
260   * Include all file systems. Do this before checking if the filesystem has
261   * been disabled.
262   */
263  #ifdef CONFIGURE_FILESYSTEM_ALL
264    #define CONFIGURE_FILESYSTEM_MINIIMFS
265    #define CONFIGURE_FILESYSTEM_IMFS
266    #define CONFIGURE_FILESYSTEM_DEVFS
267    #define CONFIGURE_FILESYSTEM_TFTPFS
268    #define CONFIGURE_FILESYSTEM_FTPFS
269    #define CONFIGURE_FILESYSTEM_NFS
270    #define CONFIGURE_FILESYSTEM_DOSFS
271    #define CONFIGURE_FILESYSTEM_RFS
272    #define CONFIGURE_FILESYSTEM_JFFS2
273  #endif
274
275  /*
276   * If disabling the file system, give a compile error if the user has
277   * configured other filesystem parameters.
278   */
279  #if defined(CONFIGURE_APPLICATION_DISABLE_FILESYSTEM)
280     #if defined(CONFIGURE_USE_DEVFS_AS_BASE_FILESYSTEM) || \
281         defined(CONFIGURE_USE_MINIIMFS_AS_BASE_FILESYSTEM)
282       #error "Filesystem disabled but a base filesystem configured."
283     #endif
284
285    #if defined(CONFIGURE_FILESYSTEM_MINIIMFS) || \
286        defined(CONFIGURE_FILESYSTEM_IMFS) || \
287        defined(CONFIGURE_FILESYSTEM_DEVFS) || \
288        defined(CONFIGURE_FILESYSTEM_TFTPFS) || \
289        defined(CONFIGURE_FILESYSTEM_FTPFS) || \
290        defined(CONFIGURE_FILESYSTEM_NFS) || \
291        defined(CONFIGURE_FILESYSTEM_DOSFS) || \
292        defined(CONFIGURE_FILESYSTEM_RFS) || \
293        defined(CONFIGURE_FILESYSTEM_JFFS2)
294        #error "Configured filesystems but root filesystem was not IMFS!"
295        #error "Filesystems could be disabled, DEVFS is root, or"
296        #error "  miniIMFS is root!"
297     #endif
298  #endif
299
300  /*
301   * If the base filesystem is DEVFS define it else define IMFS.
302   * We will have either DEVFS or IMFS defined after this.
303   */
304  #if !defined(CONFIGURE_APPLICATION_DISABLE_FILESYSTEM)
305    #if defined(CONFIGURE_USE_DEVFS_AS_BASE_FILESYSTEM)
306      #define CONFIGURE_FILESYSTEM_DEVFS
307    #elif defined(CONFIGURE_USE_MINIIMFS_AS_BASE_FILESYSTEM)
308      #define CONFIGURE_FILESYSTEM_MINIIMFS
309    #elif !defined(CONFIGURE_FILESYSTEM_IMFS)
310      #define CONFIGURE_FILESYSTEM_IMFS
311    #endif
312  #endif
313
314#endif
315
316#ifndef RTEMS_SCHEDSIM
317/**
318 * IMFS
319 */
320#include <rtems/imfs.h>
321
322/**
323 * This specifies the number of bytes per block for files within the IMFS.
324 * There are a maximum number of blocks per file so this dictates the maximum
325 * size of a file.  This has to be balanced with the unused portion of each
326 * block that might be wasted.
327 */
328#ifndef CONFIGURE_IMFS_MEMFILE_BYTES_PER_BLOCK
329  #define CONFIGURE_IMFS_MEMFILE_BYTES_PER_BLOCK \
330                    IMFS_MEMFILE_DEFAULT_BYTES_PER_BLOCK
331#endif
332
333/**
334 * This defines the miniIMFS file system table entry.
335 */
336#if !defined(CONFIGURE_FILESYSTEM_ENTRY_miniIMFS) && \
337    defined(CONFIGURE_FILESYSTEM_MINIIMFS)
338  #define CONFIGURE_FILESYSTEM_ENTRY_miniIMFS \
339    { RTEMS_FILESYSTEM_TYPE_MINIIMFS, miniIMFS_initialize }
340#endif
341#endif
342
343/**
344 * Internall it is called FIFOs not pipes
345 */
346#if defined(CONFIGURE_PIPES_ENABLED)
347  #define CONFIGURE_FIFOS_ENABLED
348#endif
349
350#ifndef RTEMS_SCHEDSIM
351/**
352 * This defines the IMFS file system table entry.
353 */
354#if !defined(CONFIGURE_FILESYSTEM_ENTRY_IMFS) && \
355    defined(CONFIGURE_FILESYSTEM_IMFS)
356  #if defined(CONFIGURE_FIFOS_ENABLED)
357    #define CONFIGURE_FILESYSTEM_ENTRY_IMFS \
358      { RTEMS_FILESYSTEM_TYPE_IMFS, fifoIMFS_initialize }
359  #else
360    #define CONFIGURE_FILESYSTEM_ENTRY_IMFS \
361      { RTEMS_FILESYSTEM_TYPE_IMFS, IMFS_initialize }
362  #endif
363#endif
364#endif
365
366/**
367 * This sets up the resources for the PIPES/FIFOs
368 */
369#if defined(CONFIGURE_FIFOS_ENABLED)
370  #if !defined(CONFIGURE_MAXIMUM_FIFOS) && !defined(CONFIGURE_MAXIMUM_PIPES)
371     #error "No FIFOs or PIPES configured"
372  #endif
373  #if !defined(CONFIGURE_MAXIMUM_FIFOS)
374    #define CONFIGURE_MAXIMUM_FIFOS 0
375  #endif
376  #if !defined(CONFIGURE_MAXIMUM_PIPES)
377    #define CONFIGURE_MAXIMUM_PIPES 0
378  #endif
379  #define CONFIGURE_BARRIERS_FOR_FIFOS \
380    (2 * (CONFIGURE_MAXIMUM_FIFOS + CONFIGURE_MAXIMUM_PIPES))
381  #define CONFIGURE_SEMAPHORES_FOR_FIFOS \
382    (1 + (CONFIGURE_MAXIMUM_FIFOS + CONFIGURE_MAXIMUM_PIPES))
383#else
384  #define CONFIGURE_BARRIERS_FOR_FIFOS   0
385  #define CONFIGURE_SEMAPHORES_FOR_FIFOS 0
386#endif
387
388/**
389 * DEVFS
390 */
391#if !defined(CONFIGURE_FILESYSTEM_ENTRY_DEVFS) && \
392    defined(CONFIGURE_FILESYSTEM_DEVFS)
393#include <rtems/devfs.h>
394  #define CONFIGURE_FILESYSTEM_ENTRY_DEVFS \
395    { RTEMS_FILESYSTEM_TYPE_DEVFS, devFS_initialize }
396#endif
397
398#ifdef RTEMS_NETWORKING
399  /**
400   * FTPFS
401   */
402  #if !defined(CONFIGURE_FILESYSTEM_ENTRY_FTPFS) && \
403      defined(CONFIGURE_FILESYSTEM_FTPFS)
404    #include <rtems/ftpfs.h>
405    #define CONFIGURE_FILESYSTEM_ENTRY_FTPFS \
406      { RTEMS_FILESYSTEM_TYPE_FTPFS, rtems_ftpfs_initialize }
407  #endif
408
409  /**
410   * TFTPFS
411   */
412  #if !defined(CONFIGURE_FILESYSTEM_ENTRY_TFTPFS) && \
413      defined(CONFIGURE_FILESYSTEM_TFTPFS)
414    #include <rtems/tftp.h>
415    #define CONFIGURE_FILESYSTEM_ENTRY_TFTPFS \
416      { RTEMS_FILESYSTEM_TYPE_TFTPFS, rtems_tftpfs_initialize }
417  #endif
418
419  /**
420   * NFS
421   */
422  #if !defined(CONFIGURE_FILESYSTEM_ENTRY_NFS) && \
423      defined(CONFIGURE_FILESYSTEM_NFS)
424    #include <librtemsNfs.h>
425    #define CONFIGURE_FILESYSTEM_ENTRY_NFS \
426      { RTEMS_FILESYSTEM_TYPE_NFS, rtems_nfs_initialize }
427  #endif
428#endif
429
430/**
431 * DOSFS
432 */
433#if !defined(CONFIGURE_FILESYSTEM_ENTRY_DOSFS) && \
434    defined(CONFIGURE_FILESYSTEM_DOSFS)
435  #include <rtems/dosfs.h>
436  #define CONFIGURE_FILESYSTEM_ENTRY_DOSFS \
437    { RTEMS_FILESYSTEM_TYPE_DOSFS, rtems_dosfs_initialize }
438#endif
439
440/**
441 * RFS
442 */
443#if !defined(CONFIGURE_FILESYSTEM_ENTRY_RFS) && \
444    defined(CONFIGURE_FILESYSTEM_RFS)
445  #include <rtems/rtems-rfs.h>
446  #define CONFIGURE_FILESYSTEM_ENTRY_RFS \
447    { RTEMS_FILESYSTEM_TYPE_RFS, rtems_rfs_rtems_initialise }
448#endif
449
450/**
451 * JFFS2
452 */
453#if !defined(CONFIGURE_FILESYSTEM_ENTRY_JFFS2) && \
454    defined(CONFIGURE_FILESYSTEM_JFFS2)
455  #include <rtems/jffs2.h>
456  #define CONFIGURE_FILESYSTEM_ENTRY_JFFS2 \
457    { RTEMS_FILESYSTEM_TYPE_JFFS2, rtems_jffs2_initialize }
458#endif
459
460#ifdef CONFIGURE_INIT
461
462  /**
463   * DEVFS variables.
464   *
465   * The number of individual devices that may be registered
466   * in the system or the CONFIGURE_MAXIMUM_DEVICES variable
467   * is defaulted to 4 when a filesystem is enabled, unless
468   * the bsp overwrides this.  In which case the value is set
469   * to BSP_MAXIMUM_DEVICES.
470   */
471  #ifdef CONFIGURE_FILESYSTEM_DEVFS
472    #ifndef CONFIGURE_MAXIMUM_DEVICES
473      #if defined(BSP_MAXIMUM_DEVICES)
474        #define CONFIGURE_MAXIMUM_DEVICES BSP_MAXIMUM_DEVICES
475      #else
476        #define CONFIGURE_MAXIMUM_DEVICES 4
477      #endif
478    #endif
479    #include <rtems/devfs.h>
480  #endif
481
482#ifndef RTEMS_SCHEDSIM
483  #if defined(CONFIGURE_FILESYSTEM_IMFS) || \
484      defined(CONFIGURE_FILESYSTEM_MINIIMFS)
485    int imfs_rq_memfile_bytes_per_block = CONFIGURE_IMFS_MEMFILE_BYTES_PER_BLOCK;
486  #endif
487#endif
488
489  /**
490   * Table termination record.
491   */
492  #define CONFIGURE_FILESYSTEM_NULL { NULL, NULL }
493
494#ifndef RTEMS_SCHEDSIM
495  /**
496   * The default file system table. Must be terminated with the NULL entry if
497   * you provide your own.
498   */
499  #ifndef CONFIGURE_HAS_OWN_FILESYSTEM_TABLE
500    const rtems_filesystem_table_t rtems_filesystem_table[] = {
501      #if defined(CONFIGURE_FILESYSTEM_MINIIMFS) && \
502          defined(CONFIGURE_FILESYSTEM_ENTRY_miniIMFS)
503        CONFIGURE_FILESYSTEM_ENTRY_miniIMFS,
504      #endif
505      #if defined(CONFIGURE_FILESYSTEM_IMFS) && \
506          defined(CONFIGURE_FILESYSTEM_ENTRY_IMFS)
507        CONFIGURE_FILESYSTEM_ENTRY_IMFS,
508      #endif
509      #if defined(CONFIGURE_FILESYSTEM_DEVFS) && \
510          defined(CONFIGURE_FILESYSTEM_ENTRY_DEVFS)
511        CONFIGURE_FILESYSTEM_ENTRY_DEVFS,
512      #endif
513      #if defined(CONFIGURE_FILESYSTEM_TFTPFS) && \
514          defined(CONFIGURE_FILESYSTEM_ENTRY_TFTPFS)
515        CONFIGURE_FILESYSTEM_ENTRY_TFTPFS,
516      #endif
517      #if defined(CONFIGURE_FILESYSTEM_FTPFS) && \
518          defined(CONFIGURE_FILESYSTEM_ENTRY_FTPFS)
519        CONFIGURE_FILESYSTEM_ENTRY_FTPFS,
520      #endif
521      #if defined(CONFIGURE_FILESYSTEM_NFS) && \
522          defined(CONFIGURE_FILESYSTEM_ENTRY_NFS)
523        CONFIGURE_FILESYSTEM_ENTRY_NFS,
524      #endif
525      #if defined(CONFIGURE_FILESYSTEM_DOSFS) && \
526          defined(CONFIGURE_FILESYSTEM_ENTRY_DOSFS)
527        CONFIGURE_FILESYSTEM_ENTRY_DOSFS,
528      #endif
529      #if defined(CONFIGURE_FILESYSTEM_RFS) && \
530          defined(CONFIGURE_FILESYSTEM_ENTRY_RFS)
531        CONFIGURE_FILESYSTEM_ENTRY_RFS,
532      #endif
533      #if defined(CONFIGURE_FILESYSTEM_JFFS2) && \
534          defined(CONFIGURE_FILESYSTEM_ENTRY_JFFS2)
535        CONFIGURE_FILESYSTEM_ENTRY_JFFS2,
536      #endif
537      CONFIGURE_FILESYSTEM_NULL
538    };
539  #endif
540
541  #ifndef CONFIGURE_HAS_OWN_MOUNT_TABLE
542    #if defined(CONFIGURE_USE_DEVFS_AS_BASE_FILESYSTEM)
543      static devFS_node devFS_root_filesystem_nodes [CONFIGURE_MAXIMUM_DEVICES];
544      static const devFS_data devFS_root_filesystem_data = {
545        devFS_root_filesystem_nodes,
546        CONFIGURE_MAXIMUM_DEVICES
547      };
548    #endif
549    const rtems_filesystem_mount_configuration
550      rtems_filesystem_root_configuration = {
551      NULL,
552      NULL,
553      #if defined(CONFIGURE_USE_DEVFS_AS_BASE_FILESYSTEM)
554        RTEMS_FILESYSTEM_TYPE_DEVFS,
555      #elif defined(CONFIGURE_USE_MINIIMFS_AS_BASE_FILESYSTEM)
556        RTEMS_FILESYSTEM_TYPE_MINIIMFS,
557      #else
558        RTEMS_FILESYSTEM_TYPE_IMFS,
559      #endif
560      RTEMS_FILESYSTEM_READ_WRITE,
561      #if defined(CONFIGURE_USE_DEVFS_AS_BASE_FILESYSTEM)
562        &devFS_root_filesystem_data
563      #else
564        NULL
565      #endif
566    };
567  #endif
568
569#endif
570#endif
571
572/*
573 *  STACK_CHECKER_ON was still available in 4.9 so give a warning for now.
574 */
575#if defined(STACK_CHECKER_ON)
576  #define CONFIGURE_STACK_CHECKER_ENABLED
577  #warning "STACK_CHECKER_ON deprecated -- use CONFIGURE_STACK_CHECKER_ENABLED"
578#endif
579
580/**
581 * This configures the stack checker user extension.
582 */
583#ifdef CONFIGURE_STACK_CHECKER_ENABLED
584  #define CONFIGURE_STACK_CHECKER_EXTENSION 1
585#else
586  #define CONFIGURE_STACK_CHECKER_EXTENSION 0
587#endif
588
589/**
590 * @brief Maximum priority configuration.
591 *
592 * This configures the maximum priority value that
593 * a task may have.
594 *
595 * The following applies to the data space requirements
596 * of the Priority Scheduler.
597 *
598 * By reducing the number of priorities in a system,
599 * the amount of RAM required by RTEMS can be significantly
600 * reduced.  RTEMS allocates a Chain_Control structure per
601 * priority and this structure contains 3 pointers.  So
602 * the default is (256 * 12) = 3K on 32-bit architectures.
603 *
604 * This must be one less than a power of 2 between
605 * 4 and 256.  Valid values along with the application
606 * priority levels and memory saved when pointers are
607 * 32-bits in size are:
608 *
609 *   + 3,  2 application priorities, 3024 bytes saved
610 *   + 7, 5 application priorities, 2976 bytes saved
611 *   + 15, 13 application priorities, 2880 bytes saved
612 *   + 31, 29 application priorities, 2688 bytes saved
613 *   + 63, 61 application priorities, 2304 bytes saved
614 *   + 127, 125 application priorities, 1536 bytes saved
615 *   + 255, 253 application priorities, 0 bytes saved
616 *
617 * It is specified in terms of Classic API priority values.
618 */
619#ifndef CONFIGURE_MAXIMUM_PRIORITY
620  #define CONFIGURE_MAXIMUM_PRIORITY PRIORITY_DEFAULT_MAXIMUM
621#endif
622
623/*
624 * Scheduler configuration.
625 *
626 * The scheduler configuration allows an application to select the
627 * scheduling policy to use.  The supported configurations are:
628 *  CONFIGURE_SCHEDULER_USER       - user provided scheduler
629 *  CONFIGURE_SCHEDULER_PRIORITY   - Deterministic Priority Scheduler
630 *  CONFIGURE_SCHEDULER_PRIORITY_SMP - Deterministic Priority SMP Scheduler
631 *  CONFIGURE_SCHEDULER_PRIORITY_AFFINITY_SMP - Deterministic Priority SMP Affinity Scheduler
632 *  CONFIGURE_SCHEDULER_SIMPLE     - Light-weight Priority Scheduler
633 *  CONFIGURE_SCHEDULER_SIMPLE_SMP - Simple SMP Priority Scheduler
634 *  CONFIGURE_SCHEDULER_EDF        - EDF Scheduler
635 *  CONFIGURE_SCHEDULER_CBS        - CBS Scheduler
636 *
637 * If no configuration is specified by the application, then
638 * CONFIGURE_SCHEDULER_PRIORITY is assumed to be the default.
639 *
640 * An application can define its own scheduling policy by defining
641 * CONFIGURE_SCHEDULER_USER and the following:
642 *    - CONFIGURE_SCHEDULER_CONTEXT
643 *    - CONFIGURE_SCHEDULER_CONTROLS
644 *    - CONFIGURE_SCHEDULER_USER_PER_THREAD
645 */
646
647/* If no scheduler is specified, the priority scheduler is default. */
648#if !defined(CONFIGURE_SCHEDULER_USER) && \
649    !defined(CONFIGURE_SCHEDULER_PRIORITY) && \
650    !defined(CONFIGURE_SCHEDULER_PRIORITY_SMP) && \
651    !defined(CONFIGURE_SCHEDULER_PRIORITY_AFFINITY_SMP) && \
652    !defined(CONFIGURE_SCHEDULER_SIMPLE) && \
653    !defined(CONFIGURE_SCHEDULER_SIMPLE_SMP) && \
654    !defined(CONFIGURE_SCHEDULER_EDF) && \
655    !defined(CONFIGURE_SCHEDULER_CBS)
656  #if defined(RTEMS_SMP) && defined(CONFIGURE_SMP_APPLICATION)
657    #define CONFIGURE_SCHEDULER_PRIORITY_SMP
658  #else
659    #define CONFIGURE_SCHEDULER_PRIORITY
660  #endif
661#endif
662
663#include <rtems/scheduler.h>
664
665/*
666 * If the Priority Scheduler is selected, then configure for it.
667 */
668#if defined(CONFIGURE_SCHEDULER_PRIORITY)
669  #if !defined(CONFIGURE_SCHEDULER_NAME)
670    #define CONFIGURE_SCHEDULER_NAME rtems_build_name('U', 'P', 'D', ' ')
671  #endif
672
673  #if !defined(CONFIGURE_SCHEDULER_CONTROLS)
674    #define CONFIGURE_SCHEDULER_CONTEXT \
675      RTEMS_SCHEDULER_CONTEXT_PRIORITY( \
676        dflt, \
677        CONFIGURE_MAXIMUM_PRIORITY + 1 \
678      )
679
680    #define CONFIGURE_SCHEDULER_CONTROLS \
681      RTEMS_SCHEDULER_CONTROL_PRIORITY(dflt, CONFIGURE_SCHEDULER_NAME)
682  #endif
683#endif
684
685/*
686 * If the Deterministic Priority SMP Scheduler is selected, then configure for
687 * it.
688 */
689#if defined(CONFIGURE_SCHEDULER_PRIORITY_SMP)
690  #if !defined(CONFIGURE_SCHEDULER_NAME)
691    #define CONFIGURE_SCHEDULER_NAME rtems_build_name('M', 'P', 'D', ' ')
692  #endif
693
694  #if !defined(CONFIGURE_SCHEDULER_CONTROLS)
695    #define CONFIGURE_SCHEDULER_CONTEXT \
696      RTEMS_SCHEDULER_CONTEXT_PRIORITY_SMP( \
697        dflt, \
698        CONFIGURE_MAXIMUM_PRIORITY + 1 \
699      )
700
701    #define CONFIGURE_SCHEDULER_CONTROLS \
702      RTEMS_SCHEDULER_CONTROL_PRIORITY_SMP(dflt, CONFIGURE_SCHEDULER_NAME)
703  #endif
704#endif
705
706/*
707 * If the Deterministic Priority Affinity SMP Scheduler is selected, then configure for
708 * it.
709 */
710#if defined(CONFIGURE_SCHEDULER_PRIORITY_AFFINITY_SMP)
711  #if !defined(CONFIGURE_SCHEDULER_NAME)
712    #define CONFIGURE_SCHEDULER_NAME rtems_build_name('M', 'P', 'A', ' ')
713  #endif
714
715  #if !defined(CONFIGURE_SCHEDULER_CONTROLS)
716    #define CONFIGURE_SCHEDULER_CONTEXT \
717      RTEMS_SCHEDULER_CONTEXT_PRIORITY_AFFINITY_SMP( \
718        dflt, \
719        CONFIGURE_MAXIMUM_PRIORITY + 1 \
720      )
721
722    #define CONFIGURE_SCHEDULER_CONTROLS \
723      RTEMS_SCHEDULER_CONTROL_PRIORITY_AFFINITY_SMP( \
724        dflt, \
725        CONFIGURE_SCHEDULER_NAME \
726      )
727  #endif
728#endif
729
730/*
731 * If the Simple Priority Scheduler is selected, then configure for it.
732 */
733#if defined(CONFIGURE_SCHEDULER_SIMPLE)
734  #if !defined(CONFIGURE_SCHEDULER_NAME)
735    #define CONFIGURE_SCHEDULER_NAME rtems_build_name('U', 'P', 'S', ' ')
736  #endif
737
738  #if !defined(CONFIGURE_SCHEDULER_CONTROLS)
739    #define CONFIGURE_SCHEDULER_CONTEXT RTEMS_SCHEDULER_CONTEXT_SIMPLE(dflt)
740
741    #define CONFIGURE_SCHEDULER_CONTROLS \
742      RTEMS_SCHEDULER_CONTROL_SIMPLE(dflt, CONFIGURE_SCHEDULER_NAME)
743  #endif
744#endif
745
746/*
747 * If the Simple SMP Priority Scheduler is selected, then configure for it.
748 */
749#if defined(CONFIGURE_SCHEDULER_SIMPLE_SMP)
750  #if !defined(CONFIGURE_SCHEDULER_NAME)
751    #define CONFIGURE_SCHEDULER_NAME rtems_build_name('M', 'P', 'S', ' ')
752  #endif
753
754  #if !defined(CONFIGURE_SCHEDULER_CONTROLS)
755    #define CONFIGURE_SCHEDULER_CONTEXT \
756      RTEMS_SCHEDULER_CONTEXT_SIMPLE_SMP(dflt)
757
758    #define CONFIGURE_SCHEDULER_CONTROLS \
759      RTEMS_SCHEDULER_CONTROL_SIMPLE_SMP(dflt, CONFIGURE_SCHEDULER_NAME)
760  #endif
761#endif
762
763/*
764 * If the EDF Scheduler is selected, then configure for it.
765 */
766#if defined(CONFIGURE_SCHEDULER_EDF)
767  #if !defined(CONFIGURE_SCHEDULER_NAME)
768    #define CONFIGURE_SCHEDULER_NAME rtems_build_name('U', 'E', 'D', 'F')
769  #endif
770
771  #if !defined(CONFIGURE_SCHEDULER_CONTROLS)
772    #define CONFIGURE_SCHEDULER_CONTEXT RTEMS_SCHEDULER_CONTEXT_EDF(dflt)
773
774    #define CONFIGURE_SCHEDULER_CONTROLS \
775      RTEMS_SCHEDULER_CONTROL_EDF(dflt, CONFIGURE_SCHEDULER_NAME)
776  #endif
777#endif
778
779/*
780 * If the CBS Scheduler is selected, then configure for it.
781 */
782#if defined(CONFIGURE_SCHEDULER_CBS)
783  #if !defined(CONFIGURE_SCHEDULER_NAME)
784    #define CONFIGURE_SCHEDULER_NAME rtems_build_name('U', 'C', 'B', 'S')
785  #endif
786
787  #if !defined(CONFIGURE_SCHEDULER_CONTROLS)
788    #define CONFIGURE_SCHEDULER_CONTEXT RTEMS_SCHEDULER_CONTEXT_CBS(dflt)
789
790    #define CONFIGURE_SCHEDULER_CONTROLS \
791      RTEMS_SCHEDULER_CONTROL_CBS(dflt, CONFIGURE_SCHEDULER_NAME)
792  #endif
793
794  #ifndef CONFIGURE_CBS_MAXIMUM_SERVERS
795    #define CONFIGURE_CBS_MAXIMUM_SERVERS CONFIGURE_MAXIMUM_TASKS
796  #endif
797
798  #ifdef CONFIGURE_INIT
799    const uint32_t _Scheduler_CBS_Maximum_servers =
800      CONFIGURE_CBS_MAXIMUM_SERVERS;
801
802    Scheduler_CBS_Server
803      _Scheduler_CBS_Server_list[ CONFIGURE_CBS_MAXIMUM_SERVERS ];
804  #endif
805#endif
806
807/*
808 * Set up the scheduler entry points table.  The scheduling code uses
809 * this code to know which scheduler is configured by the user.
810 */
811#ifdef CONFIGURE_INIT
812  #if defined(CONFIGURE_SCHEDULER_CONTEXT)
813    CONFIGURE_SCHEDULER_CONTEXT;
814  #endif
815
816  const Scheduler_Control _Scheduler_Table[] = {
817    CONFIGURE_SCHEDULER_CONTROLS
818  };
819
820  #if defined(RTEMS_SMP)
821    const size_t _Scheduler_Count =
822      RTEMS_ARRAY_SIZE( _Scheduler_Table );
823  #endif
824
825  #if defined(CONFIGURE_SCHEDULER_EDF)
826    const bool _Scheduler_FIXME_thread_priority_queues_are_broken = true;
827  #else
828    const bool _Scheduler_FIXME_thread_priority_queues_are_broken = false;
829  #endif
830#endif
831
832/*
833 *  If you said the IDLE task was going to do application initialization
834 *  and didn't override the IDLE body, then something is amiss.
835 */
836#if (defined(CONFIGURE_IDLE_TASK_INITIALIZES_APPLICATION) && \
837     !defined(CONFIGURE_IDLE_TASK_BODY))
838  #error "CONFIGURE_ERROR: You did not override the IDLE task body."
839#endif
840
841/**
842 * @brief Idle task body configuration.
843 *
844 * There is a default IDLE thread body provided by RTEMS which
845 * has the possibility of being CPU specific.  There may be a
846 * BSP specific override of the RTEMS default body and in turn,
847 * the application may override and provide its own.
848 */
849#ifndef CONFIGURE_IDLE_TASK_BODY
850  #if defined(BSP_IDLE_TASK_BODY)
851    #define CONFIGURE_IDLE_TASK_BODY BSP_IDLE_TASK_BODY
852  #elif (CPU_PROVIDES_IDLE_THREAD_BODY == TRUE)
853    #define CONFIGURE_IDLE_TASK_BODY _CPU_Thread_Idle_body
854  #else
855    /* only instantiate and compile if used */
856    #ifdef CONFIGURE_INIT
857      void *_Thread_Idle_body(uintptr_t ignored)
858      {
859        for( ; ; ) ;
860        return 0;   /* to avoid warning */
861      }
862    #endif
863    #define CONFIGURE_IDLE_TASK_BODY _Thread_Idle_body
864  #endif
865#endif
866
867/**
868 * By default, use the minimum stack size requested by this port.
869 */
870#ifndef CONFIGURE_MINIMUM_TASK_STACK_SIZE
871  #define CONFIGURE_MINIMUM_TASK_STACK_SIZE CPU_STACK_MINIMUM_SIZE
872#endif
873
874#define CONFIGURE_MINIMUM_POSIX_THREAD_STACK_SIZE \
875  (2 * CONFIGURE_MINIMUM_TASK_STACK_SIZE)
876
877/**
878 * @brief Idle task stack size configuration.
879 *
880 * By default, the IDLE task will have a stack of minimum size.
881 * The BSP or application may override this value.
882 */
883#ifndef CONFIGURE_IDLE_TASK_STACK_SIZE
884  #ifdef BSP_IDLE_TASK_STACK_SIZE
885    #define CONFIGURE_IDLE_TASK_STACK_SIZE BSP_IDLE_TASK_STACK_SIZE
886  #else
887    #define CONFIGURE_IDLE_TASK_STACK_SIZE CONFIGURE_MINIMUM_TASK_STACK_SIZE
888  #endif
889#endif
890#if CONFIGURE_IDLE_TASK_STACK_SIZE < CONFIGURE_MINIMUM_TASK_STACK_SIZE
891  #error "CONFIGURE_IDLE_TASK_STACK_SIZE less than CONFIGURE_MINIMUM_TASK_STACK_SIZE"
892#endif
893
894/**
895 * @brief Interrupt stack size configuration.
896 *
897 * By default, the interrupt stack will be of minimum size.
898 * The BSP or application may override this value.
899 */
900#ifndef CONFIGURE_INTERRUPT_STACK_SIZE
901  #ifdef BSP_INTERRUPT_STACK_SIZE
902    #define CONFIGURE_INTERRUPT_STACK_SIZE BSP_INTERRUPT_STACK_SIZE
903  #else
904    #define CONFIGURE_INTERRUPT_STACK_SIZE CONFIGURE_MINIMUM_TASK_STACK_SIZE
905  #endif
906#endif
907
908/**
909 * This reserves memory for the interrupt stack if it is to be allocated
910 * by RTEMS rather than the BSP.
911 *
912 * @todo Try to get to the point where all BSPs support allocating the
913 *       memory from the Workspace.
914 */
915#if (CPU_ALLOCATE_INTERRUPT_STACK == 0)
916  #define CONFIGURE_INTERRUPT_STACK_MEMORY 0
917#else
918  #define CONFIGURE_INTERRUPT_STACK_MEMORY \
919     _Configure_From_workspace( CONFIGURE_INTERRUPT_STACK_SIZE )
920#endif
921
922/**
923 * Configure the very much optional task stack allocator initialization
924 */
925#ifndef CONFIGURE_TASK_STACK_ALLOCATOR_INIT
926  #define CONFIGURE_TASK_STACK_ALLOCATOR_INIT NULL
927#endif
928
929/*
930 *  Configure the very much optional task stack allocator and deallocator.
931 */
932#if !defined(CONFIGURE_TASK_STACK_ALLOCATOR) \
933  && !defined(CONFIGURE_TASK_STACK_DEALLOCATOR)
934  #define CONFIGURE_TASK_STACK_ALLOCATOR _Workspace_Allocate
935  #define CONFIGURE_TASK_STACK_DEALLOCATOR _Workspace_Free
936#elif (defined(CONFIGURE_TASK_STACK_ALLOCATOR) \
937  && !defined(CONFIGURE_TASK_STACK_DEALLOCATOR)) \
938    || (!defined(CONFIGURE_TASK_STACK_ALLOCATOR) \
939      && defined(CONFIGURE_TASK_STACK_DEALLOCATOR))
940  #error "CONFIGURE_TASK_STACK_ALLOCATOR and CONFIGURE_TASK_STACK_DEALLOCATOR must be both defined or both undefined"
941#endif
942
943/**
944 * Should the RTEMS Workspace and C Program Heap be cleared automatically
945 * at system start up?
946 */
947#ifndef CONFIGURE_ZERO_WORKSPACE_AUTOMATICALLY
948  #ifdef BSP_ZERO_WORKSPACE_AUTOMATICALLY
949    #define CONFIGURE_ZERO_WORKSPACE_AUTOMATICALLY \
950            BSP_ZERO_WORKSPACE_AUTOMATICALLY
951  #else
952    #define CONFIGURE_ZERO_WORKSPACE_AUTOMATICALLY FALSE
953  #endif
954#endif
955
956/*
957 *  RTEMS Malloc configuration
958 */
959
960#include <rtems/malloc.h>
961
962#ifdef CONFIGURE_INIT
963  /**
964   * By default, RTEMS uses separate heaps for the RTEMS Workspace and
965   * the C Program Heap.  The application can choose optionally to combine
966   * these to provide one larger memory pool. This is particularly
967   * useful in combination with the unlimited objects configuration.
968   */
969  #ifdef CONFIGURE_UNIFIED_WORK_AREAS
970    Heap_Control  *RTEMS_Malloc_Heap = &_Workspace_Area;
971  #else
972    Heap_Control   RTEMS_Malloc_Area;
973    Heap_Control  *RTEMS_Malloc_Heap = &RTEMS_Malloc_Area;
974  #endif
975#endif
976
977#ifdef CONFIGURE_INIT
978  /**
979   * This configures the malloc family statistics to be available.
980   * By default only function call counts are kept.
981   */
982  rtems_malloc_statistics_functions_t *rtems_malloc_statistics_helpers =
983    #ifndef CONFIGURE_MALLOC_STATISTICS
984      NULL;
985    #else
986      &rtems_malloc_statistics_helpers_table;
987    #endif
988#endif
989
990#ifdef CONFIGURE_INIT
991  /**
992   * This configures the sbrk() support for the malloc family.
993   * By default it is assumed that the BSP provides all available
994   * RAM to the malloc family implementation so sbrk()'ing to get
995   * more memory would always fail anyway.
996   */
997  const rtems_heap_extend_handler rtems_malloc_extend_handler =
998    #ifdef CONFIGURE_MALLOC_BSP_SUPPORTS_SBRK
999      rtems_heap_extend_via_sbrk;
1000    #else
1001      rtems_heap_null_extend;
1002    #endif
1003#endif
1004
1005#ifdef CONFIGURE_INIT
1006  /**
1007   * This configures the malloc family plugin which dirties memory
1008   * allocated.  This is helpful for finding unitialized data structure
1009   * problems.
1010   */
1011  rtems_malloc_dirtier_t rtems_malloc_dirty_helper =
1012    #if defined(CONFIGURE_MALLOC_DIRTY)
1013      rtems_malloc_dirty_memory;
1014    #else
1015      NULL;
1016    #endif
1017#endif
1018
1019/**
1020 * Zero of one returns 0 if the parameter is 0 else 1 is returned.
1021 */
1022#define _Configure_Zero_or_One(_number) ((_number) ? 1 : 0)
1023
1024#define _Configure_Align_up(_val, _align) \
1025  (((_val) + (_align) - 1) & ~((_align) - 1))
1026
1027/**
1028 * This is a helper macro used in calculations in this file.  It is used
1029 * to noted when an element is allocated from the RTEMS Workspace and adds
1030 * a factor to account for heap overhead plus an alignment factor that
1031 * may be applied.
1032 */
1033#define _Configure_From_workspace(_size) \
1034   (ssize_t) (_Configure_Zero_or_One(_size) * \
1035     _Configure_Align_up((_size) + HEAP_BLOCK_HEADER_SIZE, CPU_HEAP_ALIGNMENT))
1036
1037/**
1038 * This is a helper macro used in stack space calculations in this file.  It
1039 * may be provided by the application in case a special task stack allocator
1040 * is used.  The default is allocation from the RTEMS Workspace.
1041 */
1042#ifdef CONFIGURE_TASK_STACK_FROM_ALLOCATOR
1043  #define _Configure_From_stackspace(_stack_size) \
1044    CONFIGURE_TASK_STACK_FROM_ALLOCATOR(_stack_size)
1045#else
1046  #define _Configure_From_stackspace(_stack_size) \
1047    _Configure_From_workspace(_stack_size)
1048#endif
1049
1050/**
1051 * Do not use the unlimited bit as part of the multiplication
1052 * for memory usage.
1053 */
1054#define _Configure_Max_Objects(_max) \
1055  (_Configure_Zero_or_One(_max) * rtems_resource_maximum_per_allocation(_max))
1056
1057/**
1058 * This macro accounts for how memory for a set of configured objects is
1059 * allocated from the Executive Workspace.
1060 *
1061 * NOTE: It does NOT attempt to address the more complex case of unlimited
1062 *       objects.
1063 */
1064#define _Configure_Object_RAM(_number, _size) ( \
1065    _Configure_From_workspace(_Configure_Max_Objects(_number) * (_size)) + \
1066    _Configure_From_workspace( \
1067      _Configure_Zero_or_One(_number) * ( \
1068        (_Configure_Max_Objects(_number) + 1) * sizeof(Objects_Control *) + \
1069        _Configure_Align_up(sizeof(void *), CPU_ALIGNMENT) + \
1070        _Configure_Align_up(sizeof(uint32_t), CPU_ALIGNMENT) \
1071      ) \
1072    ) \
1073  )
1074
1075/*
1076 *  Default User Initialization Task Table.  This table guarantees that
1077 *  one user initialization table is defined.
1078 */
1079
1080#ifdef CONFIGURE_RTEMS_INIT_TASKS_TABLE
1081
1082#ifdef CONFIGURE_HAS_OWN_INIT_TASK_TABLE
1083
1084/*
1085 *  The user is defining their own table information and setting the
1086 *  appropriate variables.
1087 */
1088
1089#else
1090
1091#ifndef CONFIGURE_INIT_TASK_NAME
1092  #define CONFIGURE_INIT_TASK_NAME          rtems_build_name('U', 'I', '1', ' ')
1093#endif
1094
1095#ifndef CONFIGURE_INIT_TASK_STACK_SIZE
1096  #define CONFIGURE_INIT_TASK_STACK_SIZE    CONFIGURE_MINIMUM_TASK_STACK_SIZE
1097#endif
1098
1099#ifndef CONFIGURE_INIT_TASK_PRIORITY
1100  #define CONFIGURE_INIT_TASK_PRIORITY      1
1101#endif
1102
1103#ifndef CONFIGURE_INIT_TASK_ATTRIBUTES
1104  #define CONFIGURE_INIT_TASK_ATTRIBUTES    RTEMS_DEFAULT_ATTRIBUTES
1105#endif
1106
1107#ifndef CONFIGURE_INIT_TASK_ENTRY_POINT
1108  #ifdef __cplusplus
1109  extern "C" {
1110  #endif
1111    rtems_task Init (rtems_task_argument );
1112  #ifdef __cplusplus
1113  }
1114  #endif
1115  #define CONFIGURE_INIT_TASK_ENTRY_POINT   Init
1116  extern const char* bsp_boot_cmdline;
1117  #define CONFIGURE_INIT_TASK_ARGUMENTS     ((rtems_task_argument) &bsp_boot_cmdline)
1118#endif
1119
1120#ifndef CONFIGURE_INIT_TASK_INITIAL_MODES
1121  #if defined(RTEMS_SMP) && defined(CONFIGURE_SMP_APPLICATION)
1122    #define CONFIGURE_INIT_TASK_INITIAL_MODES RTEMS_DEFAULT_MODES
1123  #else
1124    #define CONFIGURE_INIT_TASK_INITIAL_MODES RTEMS_NO_PREEMPT
1125  #endif
1126#endif
1127
1128#ifndef CONFIGURE_INIT_TASK_ARGUMENTS
1129  #define CONFIGURE_INIT_TASK_ARGUMENTS     0
1130#endif
1131
1132#ifdef CONFIGURE_INIT
1133  rtems_initialization_tasks_table Initialization_tasks[] = {
1134    { CONFIGURE_INIT_TASK_NAME,
1135      CONFIGURE_INIT_TASK_STACK_SIZE,
1136      CONFIGURE_INIT_TASK_PRIORITY,
1137      CONFIGURE_INIT_TASK_ATTRIBUTES,
1138      CONFIGURE_INIT_TASK_ENTRY_POINT,
1139      CONFIGURE_INIT_TASK_INITIAL_MODES,
1140      CONFIGURE_INIT_TASK_ARGUMENTS
1141    }
1142  };
1143#endif
1144
1145#define CONFIGURE_INIT_TASK_TABLE Initialization_tasks
1146
1147#define CONFIGURE_INIT_TASK_TABLE_SIZE \
1148  RTEMS_ARRAY_SIZE(CONFIGURE_INIT_TASK_TABLE)
1149
1150#endif    /* CONFIGURE_HAS_OWN_INIT_TASK_TABLE */
1151
1152#else     /* CONFIGURE_RTEMS_INIT_TASKS_TABLE */
1153
1154#define CONFIGURE_INIT_TASK_TABLE      NULL
1155#define CONFIGURE_INIT_TASK_TABLE_SIZE 0
1156#define CONFIGURE_INIT_TASK_STACK_SIZE 0
1157
1158#endif
1159
1160/*
1161 *  Default Device Driver Table.  Each driver needed by the test is explicitly
1162 *  choosen by that test.  There is always a null driver entry.
1163 */
1164
1165#define NULL_DRIVER_TABLE_ENTRY \
1166 { NULL, NULL, NULL, NULL, NULL, NULL }
1167
1168#ifdef CONFIGURE_APPLICATION_NEEDS_CONSOLE_DRIVER
1169  #include <rtems/console.h>
1170#endif
1171
1172#ifdef CONFIGURE_APPLICATION_NEEDS_CLOCK_DRIVER
1173  #include <rtems/clockdrv.h>
1174#endif
1175
1176#ifdef CONFIGURE_APPLICATION_NEEDS_TIMER_DRIVER
1177  #include <rtems/timerdrv.h>
1178#endif
1179
1180#ifdef CONFIGURE_APPLICATION_NEEDS_RTC_DRIVER
1181  #include <rtems/rtc.h>
1182#endif
1183
1184#ifdef CONFIGURE_APPLICATION_NEEDS_WATCHDOG_DRIVER
1185  #include <rtems/watchdogdrv.h>
1186#endif
1187
1188#ifdef CONFIGURE_APPLICATION_NEEDS_FRAME_BUFFER_DRIVER
1189  #include <rtems/framebuffer.h>
1190#endif
1191
1192#ifdef CONFIGURE_APPLICATION_NEEDS_STUB_DRIVER
1193  #include <rtems/devnull.h>
1194#endif
1195
1196#ifdef CONFIGURE_APPLICATION_NEEDS_ZERO_DRIVER
1197  #include <rtems/devzero.h>
1198#endif
1199
1200#ifdef CONFIGURE_APPLICATION_NEEDS_IDE_DRIVER
1201  /* the ide driver needs the ATA driver */
1202  #ifndef CONFIGURE_APPLICATION_NEEDS_ATA_DRIVER
1203    #define CONFIGURE_APPLICATION_NEEDS_ATA_DRIVER
1204  #endif
1205  #include <libchip/ide_ctrl.h>
1206#endif
1207
1208#ifdef CONFIGURE_APPLICATION_NEEDS_ATA_DRIVER
1209  #include <libchip/ata.h>
1210#endif
1211
1212#ifndef CONFIGURE_HAS_OWN_DEVICE_DRIVER_TABLE
1213
1214/**
1215 * This specifies the maximum number of device drivers that
1216 * can be installed in the system at one time.  It must account
1217 * for both the statically and dynamically installed drivers.
1218 */
1219#ifndef CONFIGURE_MAXIMUM_DRIVERS
1220  #define CONFIGURE_MAXIMUM_DRIVERS
1221#endif
1222
1223#ifdef CONFIGURE_INIT
1224  rtems_driver_address_table
1225    _IO_Driver_address_table[ CONFIGURE_MAXIMUM_DRIVERS ] = {
1226    #ifdef CONFIGURE_BSP_PREREQUISITE_DRIVERS
1227      CONFIGURE_BSP_PREREQUISITE_DRIVERS,
1228    #endif
1229    #ifdef CONFIGURE_APPLICATION_PREREQUISITE_DRIVERS
1230      CONFIGURE_APPLICATION_PREREQUISITE_DRIVERS,
1231    #endif
1232    #ifdef CONFIGURE_APPLICATION_NEEDS_CONSOLE_DRIVER
1233      CONSOLE_DRIVER_TABLE_ENTRY,
1234    #endif
1235    #ifdef CONFIGURE_APPLICATION_NEEDS_CLOCK_DRIVER
1236      CLOCK_DRIVER_TABLE_ENTRY,
1237    #endif
1238    #ifdef CONFIGURE_APPLICATION_NEEDS_RTC_DRIVER
1239      RTC_DRIVER_TABLE_ENTRY,
1240    #endif
1241    #ifdef CONFIGURE_APPLICATION_NEEDS_WATCHDOG_DRIVER
1242      WATCHDOG_DRIVER_TABLE_ENTRY,
1243    #endif
1244    #ifdef CONFIGURE_APPLICATION_NEEDS_STUB_DRIVER
1245      DEVNULL_DRIVER_TABLE_ENTRY,
1246    #endif
1247    #ifdef CONFIGURE_APPLICATION_NEEDS_ZERO_DRIVER
1248      DEVZERO_DRIVER_TABLE_ENTRY,
1249    #endif
1250    #ifdef CONFIGURE_APPLICATION_NEEDS_IDE_DRIVER
1251      IDE_CONTROLLER_DRIVER_TABLE_ENTRY,
1252    #endif
1253    #ifdef CONFIGURE_APPLICATION_NEEDS_ATA_DRIVER
1254      ATA_DRIVER_TABLE_ENTRY,
1255    #endif
1256    #ifdef CONFIGURE_APPLICATION_NEEDS_FRAME_BUFFER_DRIVER
1257      FRAME_BUFFER_DRIVER_TABLE_ENTRY,
1258    #endif
1259    #ifdef CONFIGURE_APPLICATION_EXTRA_DRIVERS
1260      CONFIGURE_APPLICATION_EXTRA_DRIVERS,
1261    #endif
1262    #ifdef CONFIGURE_APPLICATION_NEEDS_NULL_DRIVER
1263      NULL_DRIVER_TABLE_ENTRY
1264    #elif !defined(CONFIGURE_APPLICATION_NEEDS_CONSOLE_DRIVER) && \
1265        !defined(CONFIGURE_APPLICATION_NEEDS_CLOCK_DRIVER) && \
1266        !defined(CONFIGURE_APPLICATION_NEEDS_RTC_DRIVER) && \
1267        !defined(CONFIGURE_APPLICATION_NEEDS_STUB_DRIVER) && \
1268        !defined(CONFIGURE_APPLICATION_NEEDS_ZERO_DRIVER) && \
1269        !defined(CONFIGURE_APPLICATION_NEEDS_IDE_DRIVER) && \
1270        !defined(CONFIGURE_APPLICATION_NEEDS_ATA_DRIVER) && \
1271        !defined(CONFIGURE_APPLICATION_NEEDS_FRAME_BUFFER_DRIVER) && \
1272        !defined(CONFIGURE_APPLICATION_EXTRA_DRIVERS)
1273      NULL_DRIVER_TABLE_ENTRY
1274    #endif
1275  };
1276
1277  const size_t _IO_Number_of_drivers =
1278    RTEMS_ARRAY_SIZE( _IO_Driver_address_table );
1279#endif
1280
1281#endif  /* CONFIGURE_HAS_OWN_DEVICE_DRIVER_TABLE */
1282
1283#ifdef CONFIGURE_APPLICATION_NEEDS_ATA_DRIVER
1284  /*
1285   * configure the priority of the ATA driver task
1286   */
1287  #ifndef CONFIGURE_ATA_DRIVER_TASK_PRIORITY
1288    #define CONFIGURE_ATA_DRIVER_TASK_PRIORITY ATA_DRIVER_TASK_DEFAULT_PRIORITY
1289  #endif
1290  #ifdef CONFIGURE_INIT
1291    rtems_task_priority rtems_ata_driver_task_priority
1292      = CONFIGURE_ATA_DRIVER_TASK_PRIORITY;
1293  #endif /* CONFIGURE_INIT */
1294#endif
1295
1296/*
1297 * add bdbuf configuration and values for swapout task priority
1298 */
1299#ifdef CONFIGURE_APPLICATION_NEEDS_LIBBLOCK
1300  #include <rtems/bdbuf.h>
1301  /*
1302   * configure the bdbuf cache parameters
1303   */
1304  #ifndef CONFIGURE_BDBUF_MAX_READ_AHEAD_BLOCKS
1305    #define CONFIGURE_BDBUF_MAX_READ_AHEAD_BLOCKS \
1306                              RTEMS_BDBUF_MAX_READ_AHEAD_BLOCKS_DEFAULT
1307  #endif
1308  #ifndef CONFIGURE_BDBUF_MAX_WRITE_BLOCKS
1309    #define CONFIGURE_BDBUF_MAX_WRITE_BLOCKS \
1310                              RTEMS_BDBUF_MAX_WRITE_BLOCKS_DEFAULT
1311  #endif
1312  #ifndef CONFIGURE_SWAPOUT_TASK_PRIORITY
1313    #define CONFIGURE_SWAPOUT_TASK_PRIORITY \
1314                              RTEMS_BDBUF_SWAPOUT_TASK_PRIORITY_DEFAULT
1315  #endif
1316  #ifndef CONFIGURE_SWAPOUT_SWAP_PERIOD
1317    #define CONFIGURE_SWAPOUT_SWAP_PERIOD \
1318                              RTEMS_BDBUF_SWAPOUT_TASK_SWAP_PERIOD_DEFAULT
1319  #endif
1320  #ifndef CONFIGURE_SWAPOUT_BLOCK_HOLD
1321    #define CONFIGURE_SWAPOUT_BLOCK_HOLD \
1322                              RTEMS_BDBUF_SWAPOUT_TASK_BLOCK_HOLD_DEFAULT
1323  #endif
1324  #ifndef CONFIGURE_SWAPOUT_WORKER_TASKS
1325    #define CONFIGURE_SWAPOUT_WORKER_TASKS \
1326                              RTEMS_BDBUF_SWAPOUT_WORKER_TASKS_DEFAULT
1327  #endif
1328  #ifndef CONFIGURE_SWAPOUT_WORKER_TASK_PRIORITY
1329    #define CONFIGURE_SWAPOUT_WORKER_TASK_PRIORITY \
1330                              RTEMS_BDBUF_SWAPOUT_WORKER_TASK_PRIORITY_DEFAULT
1331  #endif
1332  #ifndef CONFIGURE_BDBUF_TASK_STACK_SIZE
1333    #define CONFIGURE_BDBUF_TASK_STACK_SIZE \
1334                              RTEMS_BDBUF_TASK_STACK_SIZE_DEFAULT
1335  #endif
1336  #ifndef CONFIGURE_BDBUF_CACHE_MEMORY_SIZE
1337    #define CONFIGURE_BDBUF_CACHE_MEMORY_SIZE \
1338                              RTEMS_BDBUF_CACHE_MEMORY_SIZE_DEFAULT
1339  #endif
1340  #ifndef CONFIGURE_BDBUF_BUFFER_MIN_SIZE
1341    #define CONFIGURE_BDBUF_BUFFER_MIN_SIZE \
1342                              RTEMS_BDBUF_BUFFER_MIN_SIZE_DEFAULT
1343  #endif
1344  #ifndef CONFIGURE_BDBUF_BUFFER_MAX_SIZE
1345    #define CONFIGURE_BDBUF_BUFFER_MAX_SIZE \
1346                              RTEMS_BDBUF_BUFFER_MAX_SIZE_DEFAULT
1347  #endif
1348  #ifndef CONFIGURE_BDBUF_READ_AHEAD_TASK_PRIORITY
1349    #define CONFIGURE_BDBUF_READ_AHEAD_TASK_PRIORITY \
1350                              RTEMS_BDBUF_READ_AHEAD_TASK_PRIORITY_DEFAULT
1351  #endif
1352  #ifdef CONFIGURE_INIT
1353    const rtems_bdbuf_config rtems_bdbuf_configuration = {
1354      CONFIGURE_BDBUF_MAX_READ_AHEAD_BLOCKS,
1355      CONFIGURE_BDBUF_MAX_WRITE_BLOCKS,
1356      CONFIGURE_SWAPOUT_TASK_PRIORITY,
1357      CONFIGURE_SWAPOUT_SWAP_PERIOD,
1358      CONFIGURE_SWAPOUT_BLOCK_HOLD,
1359      CONFIGURE_SWAPOUT_WORKER_TASKS,
1360      CONFIGURE_SWAPOUT_WORKER_TASK_PRIORITY,
1361      CONFIGURE_BDBUF_TASK_STACK_SIZE,
1362      CONFIGURE_BDBUF_CACHE_MEMORY_SIZE,
1363      CONFIGURE_BDBUF_BUFFER_MIN_SIZE,
1364      CONFIGURE_BDBUF_BUFFER_MAX_SIZE,
1365      CONFIGURE_BDBUF_READ_AHEAD_TASK_PRIORITY
1366    };
1367  #endif
1368
1369  #define CONFIGURE_LIBBLOCK_TASKS \
1370    (1 + CONFIGURE_SWAPOUT_WORKER_TASKS + \
1371    (CONFIGURE_BDBUF_MAX_READ_AHEAD_BLOCKS != 0))
1372
1373  #define CONFIGURE_LIBBLOCK_TASK_EXTRA_STACKS \
1374    (CONFIGURE_LIBBLOCK_TASKS * \
1375    (CONFIGURE_BDBUF_TASK_STACK_SIZE <= CONFIGURE_MINIMUM_TASK_STACK_SIZE ? \
1376    0 : CONFIGURE_BDBUF_TASK_STACK_SIZE - CONFIGURE_MINIMUM_TASK_STACK_SIZE))
1377
1378  /*
1379   *  Semaphores:
1380   *    o disk lock
1381   *    o bdbuf lock
1382   *    o bdbuf sync lock
1383   *    o bdbuf access condition
1384   *    o bdbuf transfer condition
1385   *    o bdbuf buffer condition
1386   */
1387  #define CONFIGURE_LIBBLOCK_SEMAPHORES 6
1388
1389  #if defined(CONFIGURE_HAS_OWN_BDBUF_TABLE) || \
1390      defined(CONFIGURE_BDBUF_BUFFER_SIZE) || \
1391      defined(CONFIGURE_BDBUF_BUFFER_COUNT)
1392    #error BDBUF Cache does not use a buffer configuration table. Please remove.
1393  #endif
1394#else
1395  #define CONFIGURE_LIBBLOCK_TASKS 0
1396  #define CONFIGURE_LIBBLOCK_TASK_EXTRA_STACKS 0
1397  #define CONFIGURE_LIBBLOCK_SEMAPHORES 0
1398#endif /* CONFIGURE_APPLICATION_NEEDS_LIBBLOCK */
1399
1400#ifndef CONFIGURE_EXTRA_MPCI_RECEIVE_SERVER_STACK
1401  #define CONFIGURE_EXTRA_MPCI_RECEIVE_SERVER_STACK 0
1402#endif
1403
1404#if defined(RTEMS_MULTIPROCESSING)
1405  /*
1406   *  Default Multiprocessing Configuration Table.  The defaults are
1407   *  appropriate for most of the RTEMS Multiprocessor Test Suite.  Each
1408   *  value may be overridden within each test to customize the environment.
1409   */
1410
1411  #ifdef CONFIGURE_MP_APPLICATION
1412    #define CONFIGURE_TIMER_FOR_SHARED_MEMORY_DRIVER 1
1413
1414    #ifndef CONFIGURE_HAS_OWN_MULTIPROCESSING_TABLE
1415
1416      #ifndef CONFIGURE_MP_NODE_NUMBER
1417        #define CONFIGURE_MP_NODE_NUMBER                NODE_NUMBER
1418      #endif
1419
1420      #ifndef CONFIGURE_MP_MAXIMUM_NODES
1421        #define CONFIGURE_MP_MAXIMUM_NODES              2
1422      #endif
1423
1424      #ifndef CONFIGURE_MP_MAXIMUM_GLOBAL_OBJECTS
1425        #define CONFIGURE_MP_MAXIMUM_GLOBAL_OBJECTS     32
1426      #endif
1427      #define CONFIGURE_MEMORY_FOR_GLOBAL_OBJECTS(_global_objects) \
1428        _Configure_Object_RAM((_global_objects), sizeof(Objects_MP_Control))
1429
1430      #ifndef CONFIGURE_MP_MAXIMUM_PROXIES
1431        #define CONFIGURE_MP_MAXIMUM_PROXIES            32
1432      #endif
1433      #define CONFIGURE_MEMORY_FOR_PROXIES(_proxies) \
1434        _Configure_Object_RAM((_proxies) + 1, sizeof(Thread_Proxy_control) )
1435
1436      #ifndef CONFIGURE_MP_MPCI_TABLE_POINTER
1437        #include <mpci.h>
1438        #define CONFIGURE_MP_MPCI_TABLE_POINTER         &MPCI_table
1439      #endif
1440
1441      #ifdef CONFIGURE_INIT
1442        rtems_multiprocessing_table Multiprocessing_configuration = {
1443          CONFIGURE_MP_NODE_NUMBER,               /* local node number */
1444          CONFIGURE_MP_MAXIMUM_NODES,             /* maximum # nodes */
1445          CONFIGURE_MP_MAXIMUM_GLOBAL_OBJECTS,    /* maximum # global objects */
1446          CONFIGURE_MP_MAXIMUM_PROXIES,           /* maximum # proxies */
1447          CONFIGURE_EXTRA_MPCI_RECEIVE_SERVER_STACK, /* MPCI stack > minimum */
1448          CONFIGURE_MP_MPCI_TABLE_POINTER         /* ptr to MPCI config table */
1449        };
1450      #endif
1451
1452      #define CONFIGURE_MULTIPROCESSING_TABLE    &Multiprocessing_configuration
1453
1454    #endif /* CONFIGURE_HAS_OWN_MULTIPROCESSING_TABLE */
1455
1456  #else
1457
1458    #define CONFIGURE_MULTIPROCESSING_TABLE    NULL
1459
1460  #endif /* CONFIGURE_MP_APPLICATION */
1461#endif /* RTEMS_MULTIPROCESSING */
1462
1463#ifndef CONFIGURE_TIMER_FOR_SHARED_MEMORY_DRIVER
1464  #define CONFIGURE_TIMER_FOR_SHARED_MEMORY_DRIVER 0
1465#endif
1466
1467
1468/**
1469 * This macro specifies that the user wants to use unlimited objects for any
1470 * classic or posix objects that have not already been given resource limits.
1471 */
1472#if defined(CONFIGURE_UNLIMITED_OBJECTS)
1473  #if !defined(CONFIGURE_UNLIMITED_ALLOCATION_SIZE)
1474  /**
1475   * This macro specifies a default allocation size for when auto-extending
1476   * unlimited objects if none was given by the user.
1477   */
1478    #define CONFIGURE_UNLIMITED_ALLOCATION_SIZE 8
1479  #endif
1480  #if !defined(CONFIGURE_MAXIMUM_TASKS)
1481    #define CONFIGURE_MAXIMUM_TASKS \
1482      rtems_resource_unlimited(CONFIGURE_UNLIMITED_ALLOCATION_SIZE)
1483  #endif
1484  #if !defined(CONFIGURE_MAXIMUM_TIMERS)
1485    #define CONFIGURE_MAXIMUM_TIMERS \
1486      rtems_resource_unlimited(CONFIGURE_UNLIMITED_ALLOCATION_SIZE)
1487  #endif
1488  #if !defined(CONFIGURE_MAXIMUM_SEMAPHORES)
1489    #define CONFIGURE_MAXIMUM_SEMAPHORES \
1490      rtems_resource_unlimited(CONFIGURE_UNLIMITED_ALLOCATION_SIZE)
1491  #endif
1492  #if !defined(CONFIGURE_MAXIMUM_MESSAGE_QUEUES)
1493    #define CONFIGURE_MAXIMUM_MESSAGE_QUEUES \
1494      rtems_resource_unlimited(CONFIGURE_UNLIMITED_ALLOCATION_SIZE)
1495  #endif
1496  #if !defined(CONFIGURE_MAXIMUM_PARTITIONS)
1497    #define CONFIGURE_MAXIMUM_PARTITIONS \
1498      rtems_resource_unlimited(CONFIGURE_UNLIMITED_ALLOCATION_SIZE)
1499  #endif
1500  #if !defined(CONFIGURE_MAXIMUM_REGIONS)
1501    #define CONFIGURE_MAXIMUM_REGIONS \
1502      rtems_resource_unlimited(CONFIGURE_UNLIMITED_ALLOCATION_SIZE)
1503  #endif
1504  #if !defined(CONFIGURE_MAXIMUM_PORTS)
1505    #define CONFIGURE_MAXIMUM_PORTS \
1506      rtems_resource_unlimited(CONFIGURE_UNLIMITED_ALLOCATION_SIZE)
1507  #endif
1508  #if !defined(CONFIGURE_MAXIMUM_PERIODS)
1509    #define CONFIGURE_MAXIMUM_PERIODS \
1510      rtems_resource_unlimited(CONFIGURE_UNLIMITED_ALLOCATION_SIZE)
1511  #endif
1512  #if !defined(CONFIGURE_MAXIMUM_BARRIERS)
1513    #define CONFIGURE_MAXIMUM_BARRIERS \
1514      rtems_resource_unlimited(CONFIGURE_UNLIMITED_ALLOCATION_SIZE)
1515  #endif
1516
1517  #ifdef RTEMS_POSIX_API
1518    #if !defined(CONFIGURE_MAXIMUM_POSIX_THREADS)
1519      #define CONFIGURE_MAXIMUM_POSIX_THREADS \
1520        rtems_resource_unlimited(CONFIGURE_UNLIMITED_ALLOCATION_SIZE)
1521    #endif
1522    #if !defined(CONFIGURE_MAXIMUM_POSIX_MUTEXES)
1523      #define CONFIGURE_MAXIMUM_POSIX_MUTEXES \
1524        rtems_resource_unlimited(CONFIGURE_UNLIMITED_ALLOCATION_SIZE)
1525    #endif
1526    #if !defined(CONFIGURE_MAXIMUM_POSIX_CONDITION_VARIABLES)
1527      #define CONFIGURE_MAXIMUM_POSIX_CONDITION_VARIABLES \
1528        rtems_resource_unlimited(CONFIGURE_UNLIMITED_ALLOCATION_SIZE)
1529    #endif
1530/*
1531    #if !defined(CONFIGURE_MAXIMUM_POSIX_KEYS)
1532      #define CONFIGURE_MAXIMUM_POSIX_KEYS \
1533        rtems_resource_unlimited(CONFIGURE_UNLIMITED_ALLOCATION_SIZE)
1534    #endif
1535*/
1536    #if !defined(CONFIGURE_MAXIMUM_POSIX_TIMERS)
1537      #define CONFIGURE_MAXIMUM_POSIX_TIMERS \
1538        rtems_resource_unlimited(CONFIGURE_UNLIMITED_ALLOCATION_SIZE)
1539    #endif
1540/*
1541    #if !defined(CONFIGURE_MAXIMUM_POSIX_QUEUED_SIGNALS)
1542      #define CONFIGURE_MAXIMUM_POSIX_QUEUED_SIGNALS \
1543        rtems_resource_unlimited(CONFIGURE_UNLIMITED_ALLOCATION_SIZE)
1544    #endif
1545*/
1546    #if !defined(CONFIGURE_MAXIMUM_POSIX_MESSAGE_QUEUES)
1547      #define CONFIGURE_MAXIMUM_POSIX_MESSAGE_QUEUES \
1548        rtems_resource_unlimited(CONFIGURE_UNLIMITED_ALLOCATION_SIZE)
1549    #endif
1550    #if !defined(CONFIGURE_MAXIMUM_POSIX_MESSAGE_QUEUE_DESCRIPTORS)
1551      #define CONFIGURE_MAXIMUM_POSIX_MESSAGE_QUEUE_DESCRIPTORS \
1552        rtems_resource_unlimited(CONFIGURE_UNLIMITED_ALLOCATION_SIZE)
1553    #endif
1554    #if !defined(CONFIGURE_MAXIMUM_POSIX_SEMAPHORES)
1555      #define CONFIGURE_MAXIMUM_POSIX_SEMAPHORES \
1556        rtems_resource_unlimited(CONFIGURE_UNLIMITED_ALLOCATION_SIZE)
1557    #endif
1558    #if !defined(CONFIGURE_MAXIMUM_POSIX_BARRIERS)
1559      #define CONFIGURE_MAXIMUM_POSIX_BARRIERS \
1560        rtems_resource_unlimited(CONFIGURE_UNLIMITED_ALLOCATION_SIZE)
1561    #endif
1562    #if !defined(CONFIGURE_MAXIMUM_POSIX_RWLOCKS)
1563      #define CONFIGURE_MAXIMUM_POSIX_RWLOCKS \
1564        rtems_resource_unlimited(CONFIGURE_UNLIMITED_ALLOCATION_SIZE)
1565    #endif
1566    #if !defined(CONFIGURE_MAXIMUM_POSIX_SPINLOCKS)
1567      #define CONFIGURE_MAXIMUM_POSIX_SPINLOCKS \
1568        rtems_resource_unlimited(CONFIGURE_UNLIMITED_ALLOCATION_SIZE)
1569    #endif
1570  #endif /* RTEMS_POSIX_API */
1571#endif /* CONFIGURE_UNLIMITED_OBJECTS */
1572
1573
1574/*
1575 *  Default Configuration Table.
1576 */
1577
1578#ifndef CONFIGURE_HAS_OWN_CONFIGURATION_TABLE
1579
1580  #ifndef CONFIGURE_MAXIMUM_TASKS
1581    #define CONFIGURE_MAXIMUM_TASKS               0
1582  #endif
1583
1584  #define CONFIGURE_TASKS \
1585    (CONFIGURE_MAXIMUM_TASKS + CONFIGURE_LIBBLOCK_TASKS)
1586
1587  #ifndef CONFIGURE_DISABLE_CLASSIC_API_NOTEPADS
1588    #define CONFIGURE_NOTEPADS_ENABLED           TRUE
1589  #else
1590    #define CONFIGURE_NOTEPADS_ENABLED           FALSE
1591  #endif
1592
1593/**
1594 * This macro calculates the memory required for task variables.
1595 *
1596 * Each task variable is individually allocated from the Workspace.
1597 * Hence, we do the multiplication on the configured size.
1598 *
1599 * @note Per-task variables are disabled for SMP configurations.
1600 */
1601#if defined(RTEMS_SMP)
1602  #ifdef CONFIGURE_MAXIMUM_TASK_VARIABLES
1603    #error "Per-Task Variables are not safe for SMP systems and disabled"
1604  #endif
1605  #define CONFIGURE_MAXIMUM_TASK_VARIABLES                     0
1606  #define CONFIGURE_MEMORY_FOR_TASK_VARIABLES(_task_variables) 0
1607#else
1608  #ifndef CONFIGURE_MAXIMUM_TASK_VARIABLES
1609    #define CONFIGURE_MAXIMUM_TASK_VARIABLES                     0
1610    #define CONFIGURE_MEMORY_FOR_TASK_VARIABLES(_task_variables) 0
1611  #else
1612    #define CONFIGURE_MEMORY_FOR_TASK_VARIABLES(_task_variables) \
1613      (_task_variables) * \
1614         _Configure_From_workspace(sizeof(rtems_task_variable_t))
1615  #endif
1616#endif
1617
1618  #ifndef CONFIGURE_MAXIMUM_TIMERS
1619    #define CONFIGURE_MAXIMUM_TIMERS             0
1620    #define CONFIGURE_MEMORY_FOR_TIMERS(_timers) 0
1621  #else
1622    #define CONFIGURE_MEMORY_FOR_TIMERS(_timers) \
1623      _Configure_Object_RAM(_timers, sizeof(Timer_Control) )
1624  #endif
1625
1626  #ifndef CONFIGURE_MAXIMUM_SEMAPHORES
1627    #define CONFIGURE_MAXIMUM_SEMAPHORES                 0
1628  #endif
1629
1630  #define CONFIGURE_SEMAPHORES \
1631    (CONFIGURE_MAXIMUM_SEMAPHORES + CONFIGURE_LIBIO_SEMAPHORES + \
1632      CONFIGURE_TERMIOS_SEMAPHORES + CONFIGURE_LIBBLOCK_SEMAPHORES + \
1633      CONFIGURE_SEMAPHORES_FOR_FIFOS)
1634
1635  /*
1636   * If there are no user or support semaphores defined, then we can assume
1637   * that no memory need be allocated at all for semaphores.
1638   */
1639  #if CONFIGURE_SEMAPHORES == 0
1640    #define CONFIGURE_MEMORY_FOR_SEMAPHORES(_semaphores) 0
1641  #else
1642    #define CONFIGURE_MEMORY_FOR_SEMAPHORES(_semaphores) \
1643      _Configure_Object_RAM(_semaphores, sizeof(Semaphore_Control) )
1644  #endif
1645
1646  #ifndef CONFIGURE_MAXIMUM_MESSAGE_QUEUES
1647    #define CONFIGURE_MAXIMUM_MESSAGE_QUEUES             0
1648    #define CONFIGURE_MEMORY_FOR_MESSAGE_QUEUES(_queues) 0
1649  #else
1650    #define CONFIGURE_MEMORY_FOR_MESSAGE_QUEUES(_queues) \
1651      _Configure_Object_RAM(_queues, sizeof(Message_queue_Control) )
1652  #endif
1653
1654  #ifndef CONFIGURE_MAXIMUM_PARTITIONS
1655    #define CONFIGURE_MAXIMUM_PARTITIONS                 0
1656    #define CONFIGURE_MEMORY_FOR_PARTITIONS(_partitions) 0
1657  #else
1658    #define CONFIGURE_MEMORY_FOR_PARTITIONS(_partitions) \
1659      _Configure_Object_RAM(_partitions, sizeof(Partition_Control) )
1660  #endif
1661
1662  #ifndef CONFIGURE_MAXIMUM_REGIONS
1663    #define CONFIGURE_MAXIMUM_REGIONS              0
1664    #define CONFIGURE_MEMORY_FOR_REGIONS(_regions) 0
1665  #else
1666    #define CONFIGURE_MEMORY_FOR_REGIONS(_regions) \
1667      _Configure_Object_RAM(_regions, sizeof(Region_Control) )
1668  #endif
1669
1670  #ifndef CONFIGURE_MAXIMUM_PORTS
1671    #define CONFIGURE_MAXIMUM_PORTS            0
1672    #define CONFIGURE_MEMORY_FOR_PORTS(_ports) 0
1673  #else
1674    #define CONFIGURE_MEMORY_FOR_PORTS(_ports) \
1675      _Configure_Object_RAM(_ports, sizeof(Dual_ported_memory_Control) )
1676  #endif
1677
1678  #ifndef CONFIGURE_MAXIMUM_PERIODS
1679    #define CONFIGURE_MAXIMUM_PERIODS              0
1680    #define CONFIGURE_MEMORY_FOR_PERIODS(_periods) 0
1681  #else
1682    #define CONFIGURE_MEMORY_FOR_PERIODS(_periods) \
1683      _Configure_Object_RAM(_periods, sizeof(Rate_monotonic_Control) )
1684  #endif
1685
1686  #ifndef CONFIGURE_MAXIMUM_BARRIERS
1687    #define CONFIGURE_MAXIMUM_BARRIERS               0
1688  #endif
1689
1690  #define CONFIGURE_BARRIERS \
1691     (CONFIGURE_MAXIMUM_BARRIERS + CONFIGURE_BARRIERS_FOR_FIFOS)
1692
1693  #if CONFIGURE_BARRIERS == 0
1694    #define CONFIGURE_MEMORY_FOR_BARRIERS(_barriers) 0
1695  #else
1696    #define CONFIGURE_MEMORY_FOR_BARRIERS(_barriers) \
1697      _Configure_Object_RAM(_barriers, sizeof(Barrier_Control) )
1698  #endif
1699
1700  #ifndef CONFIGURE_MAXIMUM_USER_EXTENSIONS
1701    #define CONFIGURE_MAXIMUM_USER_EXTENSIONS                 0
1702    #define CONFIGURE_MEMORY_FOR_USER_EXTENSIONS(_extensions) 0
1703  #else
1704    #define CONFIGURE_MEMORY_FOR_USER_EXTENSIONS(_extensions) \
1705      _Configure_Object_RAM(_extensions, sizeof(Extension_Control) )
1706  #endif
1707
1708  #ifndef CONFIGURE_MICROSECONDS_PER_TICK
1709    #define CONFIGURE_MICROSECONDS_PER_TICK \
1710            RTEMS_MILLISECONDS_TO_MICROSECONDS(10)
1711  #endif
1712
1713  #ifndef CONFIGURE_TICKS_PER_TIMESLICE
1714    #define CONFIGURE_TICKS_PER_TIMESLICE        50
1715  #endif
1716
1717/*
1718 *  Initial Extension Set
1719 */
1720
1721#ifdef CONFIGURE_INIT
1722#ifdef CONFIGURE_STACK_CHECKER_ENABLED
1723#include <rtems/stackchk.h>
1724#endif
1725#include <rtems/libcsupport.h>
1726
1727#if defined(BSP_INITIAL_EXTENSION) || \
1728    defined(CONFIGURE_INITIAL_EXTENSIONS) || \
1729    defined(CONFIGURE_STACK_CHECKER_ENABLED) || \
1730    (defined(RTEMS_NEWLIB) && !defined(CONFIGURE_DISABLE_NEWLIB_REENTRANCY))
1731  static const rtems_extensions_table Configuration_Initial_Extensions[] = {
1732    #if !defined(CONFIGURE_DISABLE_NEWLIB_REENTRANCY)
1733      RTEMS_NEWLIB_EXTENSION,
1734    #endif
1735    #if defined(CONFIGURE_STACK_CHECKER_ENABLED)
1736      RTEMS_STACK_CHECKER_EXTENSION,
1737    #endif
1738    #if defined(CONFIGURE_INITIAL_EXTENSIONS)
1739      CONFIGURE_INITIAL_EXTENSIONS,
1740    #endif
1741    #if defined(BSP_INITIAL_EXTENSION)
1742      BSP_INITIAL_EXTENSION
1743    #endif
1744  };
1745
1746  #define CONFIGURE_INITIAL_EXTENSION_TABLE Configuration_Initial_Extensions
1747  #define CONFIGURE_NUMBER_OF_INITIAL_EXTENSIONS \
1748    RTEMS_ARRAY_SIZE(Configuration_Initial_Extensions)
1749#else
1750  #define CONFIGURE_INITIAL_EXTENSION_TABLE NULL
1751  #define CONFIGURE_NUMBER_OF_INITIAL_EXTENSIONS 0
1752#endif
1753
1754#if defined(RTEMS_NEWLIB) && defined(__DYNAMIC_REENT__)
1755  struct _reent *__getreent(void)
1756  {
1757    #ifdef CONFIGURE_DISABLE_NEWLIB_REENTRANCY
1758      return _GLOBAL_REENT;
1759    #else
1760      return _Thread_Get_executing()->libc_reent;
1761    #endif
1762  }
1763#endif
1764
1765#endif
1766
1767/*
1768 *  POSIX API Configuration Parameters
1769 */
1770
1771/*
1772 *  POSIX Keys are available whether or not the POSIX API is enabled.
1773 */
1774#include <rtems/posix/key.h>
1775
1776#ifndef CONFIGURE_MAXIMUM_POSIX_KEYS
1777  #define CONFIGURE_MAXIMUM_POSIX_KEYS 0
1778#endif
1779
1780#ifndef CONFIGURE_MAXIMUM_POSIX_KEY_VALUE_PAIRS
1781  #define CONFIGURE_MAXIMUM_POSIX_KEY_VALUE_PAIRS \
1782    (CONFIGURE_MAXIMUM_POSIX_KEYS * \
1783     (CONFIGURE_MAXIMUM_POSIX_THREADS + CONFIGURE_MAXIMUM_TASKS))
1784#endif
1785
1786#define CONFIGURE_POSIX_KEYS \
1787  (CONFIGURE_MAXIMUM_POSIX_KEYS + CONFIGURE_LIBIO_POSIX_KEYS)
1788
1789#define CONFIGURE_MEMORY_FOR_POSIX_KEYS(_keys, _key_value_pairs) \
1790   (_Configure_Object_RAM(_keys, sizeof(POSIX_Keys_Control) ) \
1791    + _Configure_From_workspace( \
1792        _key_value_pairs * sizeof(POSIX_Keys_Key_value_pair)))
1793
1794/*
1795 *  The rest of the POSIX threads API features are only available when
1796 *  POSIX is enabled.
1797 */
1798
1799#ifdef RTEMS_POSIX_API
1800  #include <sys/types.h>
1801  #include <signal.h>
1802  #include <limits.h>
1803  #include <mqueue.h>
1804  #include <rtems/posix/barrier.h>
1805  #include <rtems/posix/cond.h>
1806  #include <rtems/posix/mqueue.h>
1807  #include <rtems/posix/mutex.h>
1808  #include <rtems/posix/psignal.h>
1809  #include <rtems/posix/pthread.h>
1810  #include <rtems/posix/rwlock.h>
1811  #include <rtems/posix/semaphore.h>
1812  #include <rtems/posix/spinlock.h>
1813  #include <rtems/posix/threadsup.h>
1814  #include <rtems/posix/timer.h>
1815
1816  /**
1817   * Account for the object control structures plus the name
1818   * of the object to be duplicated.
1819   */
1820  #define _Configure_POSIX_Named_Object_RAM(_number, _size) \
1821    _Configure_Object_RAM( (_number), _size ) + \
1822    (_Configure_Max_Objects(_number) * _Configure_From_workspace(NAME_MAX) )
1823
1824  #ifndef CONFIGURE_MAXIMUM_POSIX_THREADS
1825    #define CONFIGURE_MAXIMUM_POSIX_THREADS 0
1826  #endif
1827
1828  #ifndef CONFIGURE_MAXIMUM_POSIX_MUTEXES
1829    #define CONFIGURE_MAXIMUM_POSIX_MUTEXES 0
1830  #endif
1831  #define CONFIGURE_MEMORY_FOR_POSIX_MUTEXES(_mutexes) \
1832    _Configure_Object_RAM(_mutexes, sizeof(POSIX_Mutex_Control) )
1833
1834  #ifndef CONFIGURE_MAXIMUM_POSIX_CONDITION_VARIABLES
1835    #define CONFIGURE_MAXIMUM_POSIX_CONDITION_VARIABLES 0
1836  #endif
1837  #define CONFIGURE_MEMORY_FOR_POSIX_CONDITION_VARIABLES(_condvars) \
1838      _Configure_Object_RAM(_condvars, \
1839                          sizeof(POSIX_Condition_variables_Control) )
1840
1841  #ifndef CONFIGURE_MAXIMUM_POSIX_TIMERS
1842    #define CONFIGURE_MAXIMUM_POSIX_TIMERS 0
1843  #endif
1844  #define CONFIGURE_MEMORY_FOR_POSIX_TIMERS(_timers) \
1845    _Configure_Object_RAM(_timers, sizeof(POSIX_Timer_Control) )
1846
1847  #ifndef CONFIGURE_MAXIMUM_POSIX_QUEUED_SIGNALS
1848    #define CONFIGURE_MAXIMUM_POSIX_QUEUED_SIGNALS 0
1849  #endif
1850  #define CONFIGURE_MEMORY_FOR_POSIX_QUEUED_SIGNALS(_queued_signals) \
1851    _Configure_From_workspace( \
1852      (_queued_signals) * (sizeof(POSIX_signals_Siginfo_node)) )
1853
1854  #ifndef CONFIGURE_MAXIMUM_POSIX_MESSAGE_QUEUES
1855    #define CONFIGURE_MAXIMUM_POSIX_MESSAGE_QUEUES                     0
1856    #define CONFIGURE_MAXIMUM_POSIX_MESSAGE_QUEUE_DESCRIPTORS          0
1857  #else
1858    /* default to same number */
1859    #ifndef CONFIGURE_MAXIMUM_POSIX_MESSAGE_QUEUE_DESCRIPTORS
1860       #define CONFIGURE_MAXIMUM_POSIX_MESSAGE_QUEUE_DESCRIPTORS \
1861               CONFIGURE_MAXIMUM_POSIX_MESSAGE_QUEUES
1862    #endif
1863  #endif
1864
1865  #define CONFIGURE_MEMORY_FOR_POSIX_MESSAGE_QUEUES(_message_queues) \
1866    _Configure_POSIX_Named_Object_RAM( \
1867       _message_queues, sizeof(POSIX_Message_queue_Control) )
1868
1869  #define CONFIGURE_MEMORY_FOR_POSIX_MESSAGE_QUEUE_DESCRIPTORS(_mqueue_fds) \
1870    _Configure_Object_RAM( \
1871       _mqueue_fds, sizeof(POSIX_Message_queue_Control_fd) )
1872
1873  #ifndef CONFIGURE_MAXIMUM_POSIX_SEMAPHORES
1874    #define CONFIGURE_MAXIMUM_POSIX_SEMAPHORES 0
1875  #endif
1876  #define CONFIGURE_MEMORY_FOR_POSIX_SEMAPHORES(_semaphores) \
1877    _Configure_POSIX_Named_Object_RAM( \
1878       _semaphores, sizeof(POSIX_Semaphore_Control) )
1879
1880  #ifndef CONFIGURE_MAXIMUM_POSIX_BARRIERS
1881    #define CONFIGURE_MAXIMUM_POSIX_BARRIERS 0
1882  #endif
1883  #define CONFIGURE_MEMORY_FOR_POSIX_BARRIERS(_barriers) \
1884    _Configure_Object_RAM(_barriers, sizeof(POSIX_Barrier_Control) )
1885
1886  #ifndef CONFIGURE_MAXIMUM_POSIX_SPINLOCKS
1887    #define CONFIGURE_MAXIMUM_POSIX_SPINLOCKS 0
1888  #endif
1889  #define CONFIGURE_MEMORY_FOR_POSIX_SPINLOCKS(_spinlocks) \
1890    _Configure_Object_RAM(_spinlocks, sizeof(POSIX_Spinlock_Control) )
1891
1892  #ifndef CONFIGURE_MAXIMUM_POSIX_RWLOCKS
1893    #define CONFIGURE_MAXIMUM_POSIX_RWLOCKS 0
1894  #endif
1895  #define CONFIGURE_MEMORY_FOR_POSIX_RWLOCKS(_rwlocks) \
1896    _Configure_Object_RAM(_rwlocks, sizeof(POSIX_RWLock_Control) )
1897
1898  #ifdef CONFIGURE_POSIX_INIT_THREAD_TABLE
1899
1900    #ifdef CONFIGURE_POSIX_HAS_OWN_INIT_THREAD_TABLE
1901
1902      /*
1903       *  The user is defining their own table information and setting the
1904       *  appropriate variables for the POSIX Initialization Thread Table.
1905       */
1906
1907    #else
1908
1909      #ifndef CONFIGURE_POSIX_INIT_THREAD_ENTRY_POINT
1910        #define CONFIGURE_POSIX_INIT_THREAD_ENTRY_POINT   POSIX_Init
1911      #endif
1912
1913      #ifndef CONFIGURE_POSIX_INIT_THREAD_STACK_SIZE
1914        #define CONFIGURE_POSIX_INIT_THREAD_STACK_SIZE \
1915          CONFIGURE_MINIMUM_POSIX_THREAD_STACK_SIZE
1916      #endif
1917
1918      #ifdef CONFIGURE_INIT
1919        posix_initialization_threads_table POSIX_Initialization_threads[] = {
1920          { CONFIGURE_POSIX_INIT_THREAD_ENTRY_POINT, \
1921              CONFIGURE_POSIX_INIT_THREAD_STACK_SIZE }
1922        };
1923      #endif
1924
1925      #define CONFIGURE_POSIX_INIT_THREAD_TABLE_NAME \
1926              POSIX_Initialization_threads
1927
1928      #define CONFIGURE_POSIX_INIT_THREAD_TABLE_SIZE \
1929              RTEMS_ARRAY_SIZE(CONFIGURE_POSIX_INIT_THREAD_TABLE_NAME)
1930
1931    #endif    /* CONFIGURE_POSIX_HAS_OWN_INIT_TASK_TABLE */
1932
1933  #else     /* CONFIGURE_POSIX_INIT_THREAD_TABLE */
1934
1935    #define CONFIGURE_POSIX_INIT_THREAD_TABLE_NAME NULL
1936    #define CONFIGURE_POSIX_INIT_THREAD_TABLE_SIZE 0
1937
1938  #endif
1939
1940  #define CONFIGURE_MEMORY_FOR_POSIX \
1941    ( CONFIGURE_MEMORY_FOR_POSIX_MUTEXES( CONFIGURE_MAXIMUM_POSIX_MUTEXES + \
1942          CONFIGURE_MAXIMUM_GO_CHANNELS + CONFIGURE_GO_INIT_MUTEXES) + \
1943      CONFIGURE_MEMORY_FOR_POSIX_CONDITION_VARIABLES( \
1944          CONFIGURE_MAXIMUM_POSIX_CONDITION_VARIABLES + \
1945          CONFIGURE_MAXIMUM_GO_CHANNELS + CONFIGURE_GO_INIT_CONDITION_VARIABLES) + \
1946      CONFIGURE_MEMORY_FOR_POSIX_QUEUED_SIGNALS( \
1947          CONFIGURE_MAXIMUM_POSIX_QUEUED_SIGNALS ) + \
1948      CONFIGURE_MEMORY_FOR_POSIX_MESSAGE_QUEUES( \
1949          CONFIGURE_MAXIMUM_POSIX_MESSAGE_QUEUES ) + \
1950      CONFIGURE_MEMORY_FOR_POSIX_MESSAGE_QUEUE_DESCRIPTORS( \
1951          CONFIGURE_MAXIMUM_POSIX_MESSAGE_QUEUE_DESCRIPTORS ) + \
1952      CONFIGURE_MEMORY_FOR_POSIX_SEMAPHORES( \
1953          CONFIGURE_MAXIMUM_POSIX_SEMAPHORES ) + \
1954      CONFIGURE_MEMORY_FOR_POSIX_BARRIERS(CONFIGURE_MAXIMUM_POSIX_BARRIERS) + \
1955      CONFIGURE_MEMORY_FOR_POSIX_SPINLOCKS( \
1956          CONFIGURE_MAXIMUM_POSIX_SPINLOCKS ) + \
1957      CONFIGURE_MEMORY_FOR_POSIX_RWLOCKS( \
1958          CONFIGURE_MAXIMUM_POSIX_RWLOCKS ) + \
1959      CONFIGURE_MEMORY_FOR_POSIX_TIMERS( CONFIGURE_MAXIMUM_POSIX_TIMERS ) \
1960     )
1961#else
1962
1963  #define CONFIGURE_MAXIMUM_POSIX_THREADS         0
1964  #define CONFIGURE_MEMORY_FOR_POSIX              0
1965
1966#endif    /* RTEMS_POSIX_API */
1967
1968#ifndef CONFIGURE_POSIX_INIT_THREAD_STACK_SIZE
1969  #define CONFIGURE_POSIX_INIT_THREAD_STACK_SIZE    0
1970#endif
1971
1972/*
1973 *  This block of defines are for applications which use GNAT/RTEMS.
1974 *  GNAT implements each Ada task as a POSIX thread.
1975 */
1976#ifdef CONFIGURE_GNAT_RTEMS
1977
1978  /**
1979   * The GNAT run-time needs something less than (10) POSIX mutexes.
1980   * We may be able to get by with less but why bother.
1981   */
1982  #define CONFIGURE_GNAT_MUTEXES 10
1983
1984  /**
1985   * This is the maximum number of Ada tasks which can be concurrently
1986   * in existence.  Twenty (20) are required to run all tests in the
1987   * ACATS (formerly ACVC).
1988   */
1989  #ifndef CONFIGURE_MAXIMUM_ADA_TASKS
1990    #define CONFIGURE_MAXIMUM_ADA_TASKS  20
1991  #endif
1992
1993  /**
1994   * This is the number of non-Ada tasks which invoked Ada code.
1995   */
1996  #ifndef CONFIGURE_MAXIMUM_FAKE_ADA_TASKS
1997    #define CONFIGURE_MAXIMUM_FAKE_ADA_TASKS 0
1998  #endif
1999
2000#else
2001  #define CONFIGURE_GNAT_MUTEXES           0
2002  #define CONFIGURE_MAXIMUM_ADA_TASKS      0
2003  #define CONFIGURE_MAXIMUM_FAKE_ADA_TASKS 0
2004#endif
2005
2006#ifdef CONFIGURE_ENABLE_GO
2007
2008  #ifndef CONFIGURE_MAXIMUM_POSIX_THREADS
2009    #define CONFIGURE_MAXIMUM_POSIX_THREADS 1
2010  #endif
2011  #ifndef CONFIGURE_MAXIMUM_POSIX_MUTEXES
2012    #define CONFIGURE_MAXIMUM_POSIX_MUTEXES 1
2013  #endif
2014  #ifndef CONFIGURE_MAXIMUM_POSIX_CONDITION_VARIABLES
2015    #define CONFIGURE_MAXIMUM_CONDITION_VARIABLES 1
2016  #endif
2017
2018  #define CONFIGURE_GO_INIT_MUTEXES 77
2019  #define CONFIGURE_GO_INIT_CONDITION_VARIABLES 4
2020
2021  #ifndef CONFIGURE_MAXIMUM_GOROUTINES
2022    #define CONFIGURE_MAXIMUM_GOROUTINES 400
2023  #endif
2024
2025  #define CONFIGURE_GOROUTINES_TASK_VARIABLES \
2026    (2 * CONFIGURE_MAXIMUM_GOROUTINES)
2027
2028  #ifndef CONFIGURE_MAXIMUM_GO_CHANNELS
2029    #define CONFIGURE_MAXIMUM_GO_CHANNELS 500
2030  #endif
2031
2032#else
2033  #define CONFIGURE_GO_INIT_MUTEXES             0
2034  #define CONFIGURE_GO_INIT_CONDITION_VARIABLES 0
2035  #define CONFIGURE_MAXIMUM_GOROUTINES          0
2036  #define CONFIGURE_GOROUTINES_TASK_VARIABLES   0
2037  #define CONFIGURE_MAXIMUM_GO_CHANNELS         0
2038#endif
2039
2040/**
2041 * This is so we can account for tasks with stacks greater than minimum
2042 * size.  This is in bytes.
2043 */
2044#ifndef CONFIGURE_EXTRA_TASK_STACKS
2045  #define CONFIGURE_EXTRA_TASK_STACKS 0
2046#endif
2047
2048/**
2049 * This macro provides a summation of the various POSIX thread requirements.
2050 */
2051#define CONFIGURE_POSIX_THREADS \
2052   (CONFIGURE_MAXIMUM_POSIX_THREADS + \
2053     CONFIGURE_MAXIMUM_ADA_TASKS + \
2054     CONFIGURE_MAXIMUM_GOROUTINES)
2055
2056/*
2057 *  Calculate the RAM size based on the maximum number of objects configured.
2058 */
2059
2060#ifndef CONFIGURE_EXECUTIVE_RAM_SIZE
2061
2062/**
2063 * Account for allocating the following per object
2064 *   + array of object control structures
2065 *   + local pointer table -- pointer per object plus a zero'th
2066 *     entry in the local pointer table.
2067 */
2068
2069#define CONFIGURE_MEMORY_FOR_TASKS(_tasks, _number_FP_tasks) \
2070  ( \
2071    _Configure_Object_RAM(_tasks, sizeof(Configuration_Thread_control)) \
2072      + _Configure_Max_Objects(_number_FP_tasks) \
2073        * _Configure_From_workspace(CONTEXT_FP_SIZE) \
2074        * (CONTEXT_FP_SIZE != 0) \
2075  )
2076
2077/**
2078 * This defines the amount of memory configured for the multiprocessing
2079 * support required by this application.
2080 */
2081#ifdef CONFIGURE_MP_APPLICATION
2082  #define CONFIGURE_MEMORY_FOR_MP \
2083    (CONFIGURE_MEMORY_FOR_PROXIES(CONFIGURE_MP_MAXIMUM_PROXIES) + \
2084     CONFIGURE_MEMORY_FOR_GLOBAL_OBJECTS( \
2085             CONFIGURE_MP_MAXIMUM_GLOBAL_OBJECTS) + \
2086     CONFIGURE_MEMORY_FOR_TASKS(1, 1) \
2087  )
2088#else
2089  #define CONFIGURE_MEMORY_FOR_MP  0
2090#endif
2091
2092/**
2093 * The following macro is used to calculate the memory allocated by RTEMS
2094 * for the message buffers associated with a particular message queue.
2095 * There is a fixed amount of overhead per message.
2096 */
2097#define CONFIGURE_MESSAGE_BUFFERS_FOR_QUEUE(_messages, _size) \
2098    _Configure_From_workspace( \
2099      (_messages) * ((_size) + sizeof(CORE_message_queue_Buffer_control)))
2100
2101/**
2102 * This macros is set to the amount of memory required for pending message
2103 * buffers in bytes.  It should be constructed by adding together a
2104 * set of values determined by CONFIGURE_MESSAGE_BUFFERS_FOR_QUEUE.
2105 */
2106#ifndef CONFIGURE_MESSAGE_BUFFER_MEMORY
2107  #define CONFIGURE_MESSAGE_BUFFER_MEMORY 0
2108#endif
2109
2110/**
2111 * This macro is available just in case the confdefs.h file underallocates
2112 * memory for a particular application.  This lets the user add some extra
2113 * memory in case something broken and underestimates.
2114 *
2115 * It is also possible for cases where confdefs.h overallocates memory,
2116 * you could substract memory from the allocated.  The estimate is just
2117 * that, an estimate, and assumes worst case alignment and padding on
2118 * each allocated element.  So in some cases it could be too conservative.
2119 *
2120 * NOTE: Historically this was used for message buffers.
2121 */
2122#ifndef CONFIGURE_MEMORY_OVERHEAD
2123  #define CONFIGURE_MEMORY_OVERHEAD 0
2124#endif
2125
2126/**
2127 * On architectures that use Simple Vectored Interrupts, it is RTEMS
2128 * responsibility to allocate the vector table.  This avoids reserving
2129 * the memory on architectures that use the Programmable Interrupt
2130 * Controller Vectored Interrupts.
2131 */
2132#if (CPU_SIMPLE_VECTORED_INTERRUPTS == TRUE)
2133  /*
2134   *  This is a (hopefully) temporary hack.  On the mips, the number of
2135   *  vectors is NOT statically defined.  But it has to be statically
2136   *  defined for this to work.  This is an issue looking for a nice
2137   *  solution.
2138   */
2139  #if defined(__mips__)
2140    #define CONFIGURE_INTERRUPT_VECTOR_TABLE \
2141      _Configure_From_workspace( (sizeof(ISR_Handler_entry) * 256))
2142  #else
2143    #define CONFIGURE_INTERRUPT_VECTOR_TABLE \
2144      _Configure_From_workspace( \
2145        (sizeof(ISR_Handler_entry) * ISR_NUMBER_OF_VECTORS))
2146  #endif
2147#else
2148  #define CONFIGURE_INTERRUPT_VECTOR_TABLE 0
2149#endif
2150
2151/**
2152 * RTEMS uses two instance of an internal mutex class.  This accounts
2153 * for these mutexes.
2154 */
2155#define CONFIGURE_API_MUTEX_MEMORY \
2156  _Configure_Object_RAM(2, sizeof(API_Mutex_Control))
2157
2158/**
2159 * This calculates the amount of memory reserved for the IDLE tasks.
2160 * In an SMP system, each CPU core has its own idle task.
2161 */
2162#if defined(RTEMS_SMP)
2163  #define CONFIGURE_IDLE_TASKS_COUNT CONFIGURE_SMP_MAXIMUM_PROCESSORS
2164#else
2165  #define CONFIGURE_IDLE_TASKS_COUNT 1
2166#endif
2167
2168/**
2169 * This defines the formula used to compute the amount of memory
2170 * reserved for IDLE task control structures.
2171 */
2172#define CONFIGURE_MEMORY_FOR_IDLE_TASK \
2173  CONFIGURE_MEMORY_FOR_TASKS(CONFIGURE_IDLE_TASKS_COUNT, 0)
2174
2175/**
2176 * This macro accounts for general RTEMS system overhead.
2177 */
2178#define CONFIGURE_MEMORY_FOR_SYSTEM_OVERHEAD \
2179  ( CONFIGURE_MEMORY_FOR_IDLE_TASK +                /* IDLE and stack */ \
2180    CONFIGURE_INTERRUPT_VECTOR_TABLE +             /* interrupt vectors */ \
2181    CONFIGURE_INTERRUPT_STACK_MEMORY +             /* interrupt stack */ \
2182    CONFIGURE_API_MUTEX_MEMORY                     /* allocation mutex */ \
2183  )
2184
2185/**
2186 * This macro reserves the memory required by the statically configured
2187 * user extensions.
2188 */
2189#define CONFIGURE_MEMORY_FOR_STATIC_EXTENSIONS \
2190  (CONFIGURE_NUMBER_OF_INITIAL_EXTENSIONS == 0 ? 0 : \
2191    _Configure_From_workspace( \
2192      CONFIGURE_NUMBER_OF_INITIAL_EXTENSIONS \
2193        * sizeof(User_extensions_Switch_control) \
2194    ))
2195
2196/**
2197 * This macro provides a summation of the memory required by the
2198 * Classic API as configured.
2199 */
2200#define CONFIGURE_MEMORY_FOR_CLASSIC \
2201  (CONFIGURE_MEMORY_FOR_TASK_VARIABLES(CONFIGURE_MAXIMUM_TASK_VARIABLES + \
2202    CONFIGURE_GOROUTINES_TASK_VARIABLES) + \
2203   CONFIGURE_MEMORY_FOR_TIMERS(CONFIGURE_MAXIMUM_TIMERS + \
2204    CONFIGURE_TIMER_FOR_SHARED_MEMORY_DRIVER ) + \
2205   CONFIGURE_MEMORY_FOR_SEMAPHORES(CONFIGURE_SEMAPHORES) + \
2206   CONFIGURE_MEMORY_FOR_MESSAGE_QUEUES(CONFIGURE_MAXIMUM_MESSAGE_QUEUES) + \
2207   CONFIGURE_MEMORY_FOR_PARTITIONS(CONFIGURE_MAXIMUM_PARTITIONS) + \
2208   CONFIGURE_MEMORY_FOR_REGIONS( CONFIGURE_MAXIMUM_REGIONS ) + \
2209   CONFIGURE_MEMORY_FOR_PORTS(CONFIGURE_MAXIMUM_PORTS) + \
2210   CONFIGURE_MEMORY_FOR_PERIODS(CONFIGURE_MAXIMUM_PERIODS) + \
2211   CONFIGURE_MEMORY_FOR_BARRIERS(CONFIGURE_BARRIERS) + \
2212   CONFIGURE_MEMORY_FOR_USER_EXTENSIONS(CONFIGURE_MAXIMUM_USER_EXTENSIONS) \
2213  )
2214
2215#if defined(RTEMS_SMP)
2216  #define CONFIGURE_MEMORY_FOR_SMP \
2217     (CONFIGURE_SMP_MAXIMUM_PROCESSORS * \
2218      _Configure_From_workspace( CONFIGURE_INTERRUPT_STACK_SIZE ) \
2219     )
2220#else
2221  #define CONFIGURE_MEMORY_FOR_SMP 0
2222#endif
2223
2224/**
2225 * This calculates the memory required for the executive workspace.
2226 */
2227#define CONFIGURE_EXECUTIVE_RAM_SIZE \
2228(( \
2229   CONFIGURE_MEMORY_FOR_SYSTEM_OVERHEAD + \
2230   CONFIGURE_MEMORY_FOR_TASKS( \
2231     CONFIGURE_TASKS, CONFIGURE_TASKS) + \
2232   CONFIGURE_MEMORY_FOR_TASKS( \
2233     CONFIGURE_POSIX_THREADS, CONFIGURE_POSIX_THREADS) + \
2234   CONFIGURE_MEMORY_FOR_CLASSIC + \
2235   CONFIGURE_MEMORY_FOR_POSIX_KEYS( \
2236      CONFIGURE_POSIX_KEYS, \
2237      CONFIGURE_MAXIMUM_POSIX_KEY_VALUE_PAIRS ) + \
2238   CONFIGURE_MEMORY_FOR_POSIX + \
2239   CONFIGURE_MEMORY_FOR_STATIC_EXTENSIONS + \
2240   CONFIGURE_MEMORY_FOR_MP + \
2241   CONFIGURE_MEMORY_FOR_SMP + \
2242   CONFIGURE_MESSAGE_BUFFER_MEMORY + \
2243   (CONFIGURE_MEMORY_OVERHEAD * 1024) \
2244) & ~0x7)
2245
2246/*
2247 *  Now account for any extra memory that initialization tasks or threads
2248 *  may have requested.
2249 */
2250
2251/**
2252 * This accounts for any extra memory required by the Classic API
2253 * Initialization Task.
2254 */
2255#if (CONFIGURE_INIT_TASK_STACK_SIZE > CONFIGURE_MINIMUM_TASK_STACK_SIZE)
2256  #define CONFIGURE_INITIALIZATION_THREADS_STACKS_CLASSIC_PART \
2257      (CONFIGURE_INIT_TASK_STACK_SIZE - CONFIGURE_MINIMUM_TASK_STACK_SIZE)
2258#else
2259  #define CONFIGURE_INITIALIZATION_THREADS_STACKS_CLASSIC_PART 0
2260#endif
2261
2262/**
2263 * This accounts for any extra memory required by the POSIX API
2264 * Initialization Thread.
2265 */
2266#if defined(RTEMS_POSIX_API) && \
2267    (CONFIGURE_POSIX_INIT_THREAD_STACK_SIZE > \
2268      CONFIGURE_MINIMUM_POSIX_THREAD_STACK_SIZE)
2269  #define CONFIGURE_INITIALIZATION_THREADS_STACKS_POSIX_PART \
2270    (CONFIGURE_POSIX_INIT_THREAD_STACK_SIZE - \
2271      CONFIGURE_MINIMUM_POSIX_THREAD_STACK_SIZE)
2272#else
2273  #define CONFIGURE_INITIALIZATION_THREADS_STACKS_POSIX_PART 0
2274#endif
2275
2276/**
2277 * This macro provides a summation of the various initialization task
2278 * and thread stack requirements.
2279 */
2280#define CONFIGURE_INITIALIZATION_THREADS_EXTRA_STACKS \
2281    (CONFIGURE_INITIALIZATION_THREADS_STACKS_CLASSIC_PART + \
2282    CONFIGURE_INITIALIZATION_THREADS_STACKS_POSIX_PART)
2283
2284#define CONFIGURE_IDLE_TASKS_STACK \
2285  (CONFIGURE_IDLE_TASKS_COUNT * \
2286    _Configure_From_stackspace( CONFIGURE_IDLE_TASK_STACK_SIZE ) )
2287
2288#define CONFIGURE_TASKS_STACK \
2289  (_Configure_Max_Objects( CONFIGURE_TASKS ) * \
2290    _Configure_From_stackspace( CONFIGURE_MINIMUM_TASK_STACK_SIZE ) )
2291
2292#define CONFIGURE_POSIX_THREADS_STACK \
2293  (_Configure_Max_Objects( CONFIGURE_MAXIMUM_POSIX_THREADS ) * \
2294    _Configure_From_stackspace( CONFIGURE_MINIMUM_POSIX_THREAD_STACK_SIZE ) )
2295
2296#define CONFIGURE_GOROUTINES_STACK \
2297  (_Configure_Max_Objects( CONFIGURE_MAXIMUM_GOROUTINES ) * \
2298    _Configure_From_stackspace( CONFIGURE_MINIMUM_POSIX_THREAD_STACK_SIZE ) )
2299
2300#define CONFIGURE_ADA_TASKS_STACK \
2301  (_Configure_Max_Objects( CONFIGURE_MAXIMUM_ADA_TASKS ) * \
2302    _Configure_From_stackspace( CONFIGURE_MINIMUM_POSIX_THREAD_STACK_SIZE ) )
2303
2304#else /* CONFIGURE_EXECUTIVE_RAM_SIZE */
2305
2306#define CONFIGURE_IDLE_TASKS_STACK 0
2307#define CONFIGURE_INITIALIZATION_THREADS_EXTRA_STACKS 0
2308#define CONFIGURE_TASKS_STACK 0
2309#define CONFIGURE_POSIX_THREADS_STACK 0
2310#define CONFIGURE_GOROUTINES_STACK 0
2311#define CONFIGURE_ADA_TASKS_STACK 0
2312
2313#if CONFIGURE_EXTRA_MPCI_RECEIVE_SERVER_STACK != 0
2314  #error "CONFIGURE_EXECUTIVE_RAM_SIZE defined with request for CONFIGURE_EXTRA_MPCI_RECEIVE_SERVER_STACK"
2315#endif
2316
2317#if CONFIGURE_EXTRA_TASK_STACKS != 0
2318  #error "CONFIGURE_EXECUTIVE_RAM_SIZE defined with request for CONFIGURE_EXTRA_TASK_STACKS"
2319#endif
2320
2321#endif /* CONFIGURE_EXECUTIVE_RAM_SIZE */
2322
2323#define CONFIGURE_STACK_SPACE_SIZE \
2324  ( \
2325    CONFIGURE_IDLE_TASKS_STACK + \
2326    CONFIGURE_INITIALIZATION_THREADS_EXTRA_STACKS + \
2327    CONFIGURE_TASKS_STACK + \
2328    CONFIGURE_POSIX_THREADS_STACK + \
2329    CONFIGURE_GOROUTINES_STACK + \
2330    CONFIGURE_ADA_TASKS_STACK + \
2331    CONFIGURE_EXTRA_MPCI_RECEIVE_SERVER_STACK + \
2332    CONFIGURE_LIBBLOCK_TASK_EXTRA_STACKS + \
2333    CONFIGURE_EXTRA_TASK_STACKS \
2334  )
2335
2336#ifdef CONFIGURE_INIT
2337  typedef struct {
2338    Thread_Control Control;
2339    #if CONFIGURE_MAXIMUM_USER_EXTENSIONS > 0
2340      void *extensions[ CONFIGURE_MAXIMUM_USER_EXTENSIONS + 1 ];
2341    #endif
2342    union {
2343      #ifdef CONFIGURE_SCHEDULER_CBS
2344        Scheduler_CBS_Per_thread CBS;
2345      #endif
2346      #ifdef CONFIGURE_SCHEDULER_EDF
2347        Scheduler_EDF_Per_thread EDF;
2348      #endif
2349      #if defined(CONFIGURE_SCHEDULER_PRIORITY) \
2350        || defined(CONFIGURE_SCHEDULER_PRIORITY_SMP)
2351        Scheduler_priority_Per_thread Priority;
2352      #endif
2353      #ifdef CONFIGURE_SCHEDULER_PRIORITY_AFFINITY_SMP
2354        Scheduler_priority_affinity_SMP_Per_thread Priority_affinity;
2355      #endif
2356      #ifdef CONFIGURE_SCHEDULER_USER_PER_THREAD
2357        CONFIGURE_SCHEDULER_USER_PER_THREAD User;
2358      #endif
2359    } Scheduler;
2360    RTEMS_API_Control API_RTEMS;
2361    #ifndef CONFIGURE_DISABLE_CLASSIC_API_NOTEPADS
2362      uint32_t Notepads[ RTEMS_NUMBER_NOTEPADS ];
2363    #endif
2364    #ifdef RTEMS_POSIX_API
2365      POSIX_API_Control API_POSIX;
2366    #endif
2367    #if !defined(RTEMS_SCHEDSIM) \
2368      && defined(RTEMS_NEWLIB) \
2369      && !defined(CONFIGURE_DISABLE_NEWLIB_REENTRANCY)
2370      struct _reent Newlib;
2371    #else
2372      struct { /* Empty */ } Newlib;
2373    #endif
2374  } Configuration_Thread_control;
2375
2376  const size_t _Thread_Control_size = sizeof( Configuration_Thread_control );
2377
2378  const Thread_Control_add_on _Thread_Control_add_ons[] = {
2379    {
2380      offsetof( Configuration_Thread_control, Control.scheduler_info ),
2381      offsetof( Configuration_Thread_control, Scheduler )
2382    }, {
2383      offsetof(
2384        Configuration_Thread_control,
2385        Control.API_Extensions[ THREAD_API_RTEMS ]
2386      ),
2387      offsetof( Configuration_Thread_control, API_RTEMS )
2388    }, {
2389      offsetof(
2390        Configuration_Thread_control,
2391        Control.libc_reent
2392      ),
2393      offsetof( Configuration_Thread_control, Newlib )
2394    }
2395    #ifdef RTEMS_POSIX_API
2396      , {
2397        offsetof(
2398          Configuration_Thread_control,
2399          Control.API_Extensions[ THREAD_API_POSIX ]
2400        ),
2401        offsetof( Configuration_Thread_control, API_POSIX )
2402      }
2403    #endif
2404  };
2405
2406  const size_t _Thread_Control_add_on_count =
2407    RTEMS_ARRAY_SIZE( _Thread_Control_add_ons );
2408
2409  /**
2410   * This is the Classic API Configuration Table.
2411   */
2412  rtems_api_configuration_table Configuration_RTEMS_API = {
2413    CONFIGURE_TASKS,
2414    CONFIGURE_NOTEPADS_ENABLED,
2415    CONFIGURE_MAXIMUM_TIMERS + CONFIGURE_TIMER_FOR_SHARED_MEMORY_DRIVER,
2416    CONFIGURE_SEMAPHORES,
2417    CONFIGURE_MAXIMUM_MESSAGE_QUEUES,
2418    CONFIGURE_MAXIMUM_PARTITIONS,
2419    CONFIGURE_MAXIMUM_REGIONS,
2420    CONFIGURE_MAXIMUM_PORTS,
2421    CONFIGURE_MAXIMUM_PERIODS,
2422    CONFIGURE_BARRIERS,
2423    CONFIGURE_INIT_TASK_TABLE_SIZE,
2424    CONFIGURE_INIT_TASK_TABLE
2425  };
2426
2427  #ifdef RTEMS_POSIX_API
2428    /**
2429     * This is the POSIX API Configuration Table.
2430     */
2431    posix_api_configuration_table Configuration_POSIX_API = {
2432      CONFIGURE_POSIX_THREADS,
2433      CONFIGURE_MAXIMUM_POSIX_MUTEXES + CONFIGURE_GNAT_MUTEXES +
2434        CONFIGURE_MAXIMUM_ADA_TASKS + CONFIGURE_MAXIMUM_FAKE_ADA_TASKS +
2435        CONFIGURE_GO_INIT_MUTEXES + CONFIGURE_MAXIMUM_GO_CHANNELS,
2436      CONFIGURE_MAXIMUM_POSIX_CONDITION_VARIABLES +
2437        CONFIGURE_MAXIMUM_ADA_TASKS + CONFIGURE_MAXIMUM_FAKE_ADA_TASKS +
2438        CONFIGURE_GO_INIT_CONDITION_VARIABLES + CONFIGURE_MAXIMUM_GO_CHANNELS,
2439      CONFIGURE_MAXIMUM_POSIX_TIMERS,
2440      CONFIGURE_MAXIMUM_POSIX_QUEUED_SIGNALS,
2441      CONFIGURE_MAXIMUM_POSIX_MESSAGE_QUEUES,
2442      CONFIGURE_MAXIMUM_POSIX_MESSAGE_QUEUE_DESCRIPTORS,
2443      CONFIGURE_MAXIMUM_POSIX_SEMAPHORES,
2444      CONFIGURE_MAXIMUM_POSIX_BARRIERS,
2445      CONFIGURE_MAXIMUM_POSIX_RWLOCKS,
2446      CONFIGURE_MAXIMUM_POSIX_SPINLOCKS,
2447      CONFIGURE_POSIX_INIT_THREAD_TABLE_SIZE,
2448      CONFIGURE_POSIX_INIT_THREAD_TABLE_NAME
2449    };
2450  #endif
2451
2452  /**
2453   * This variable specifies the minimum stack size for tasks in an RTEMS
2454   * application.
2455   *
2456   * NOTE: This is left as a simple uint32_t so it can be externed as
2457   *       needed without requring being high enough logical to
2458   *       include the full configuration table.
2459   */
2460  uint32_t rtems_minimum_stack_size =
2461    CONFIGURE_MINIMUM_TASK_STACK_SIZE;
2462
2463  /**
2464   * This variable specifies the maximum priority value that
2465   * a task may have.  This must be a power of 2 between 4
2466   * and 256 and is specified in terms of Classic API
2467   * priority values.
2468   *
2469   * NOTE: This is left as a simple uint8_t so it can be externed as
2470   *       needed without requring being high enough logical to
2471   *       include the full configuration table.
2472   */
2473  uint8_t rtems_maximum_priority = CONFIGURE_MAXIMUM_PRIORITY;
2474
2475  /**
2476   * This is the primary Configuration Table for this application.
2477   */
2478  const rtems_configuration_table Configuration = {
2479    CONFIGURE_EXECUTIVE_RAM_SIZE,             /* required RTEMS workspace */
2480    CONFIGURE_STACK_SPACE_SIZE,               /* required stack space */
2481    CONFIGURE_MAXIMUM_USER_EXTENSIONS,        /* maximum dynamic extensions */
2482    CONFIGURE_POSIX_KEYS,                     /* POSIX keys are always */
2483    CONFIGURE_MAXIMUM_POSIX_KEY_VALUE_PAIRS,  /*   enabled */
2484    CONFIGURE_MICROSECONDS_PER_TICK,          /* microseconds per clock tick */
2485    1000 * CONFIGURE_MICROSECONDS_PER_TICK,   /* nanoseconds per clock tick */
2486    CONFIGURE_TICKS_PER_TIMESLICE,            /* ticks per timeslice quantum */
2487    CONFIGURE_IDLE_TASK_BODY,                 /* user's IDLE task */
2488    CONFIGURE_IDLE_TASK_STACK_SIZE,           /* IDLE task stack size */
2489    CONFIGURE_INTERRUPT_STACK_SIZE,           /* interrupt stack size */
2490    CONFIGURE_TASK_STACK_ALLOCATOR_INIT,      /* stack allocator init */
2491    CONFIGURE_TASK_STACK_ALLOCATOR,           /* stack allocator */
2492    CONFIGURE_TASK_STACK_DEALLOCATOR,         /* stack deallocator */
2493    CONFIGURE_ZERO_WORKSPACE_AUTOMATICALLY,   /* true to clear memory */
2494    #ifdef CONFIGURE_UNIFIED_WORK_AREAS       /* true for unified work areas */
2495      true,
2496    #else
2497      false,
2498    #endif
2499    #ifdef CONFIGURE_TASK_STACK_ALLOCATOR_AVOIDS_WORK_SPACE /* true to avoid
2500                                                 work space for thread stack
2501                                                 allocation */
2502      true,
2503    #else
2504      false,
2505    #endif
2506    #ifdef RTEMS_SMP
2507      #ifdef CONFIGURE_SMP_APPLICATION
2508        true,
2509      #else
2510        false,
2511      #endif
2512    #endif
2513    CONFIGURE_NUMBER_OF_INITIAL_EXTENSIONS,   /* number of static extensions */
2514    CONFIGURE_INITIAL_EXTENSION_TABLE,        /* pointer to static extensions */
2515    #if defined(RTEMS_MULTIPROCESSING)
2516      CONFIGURE_MULTIPROCESSING_TABLE,        /* pointer to MP config table */
2517    #endif
2518    #ifdef RTEMS_SMP
2519      CONFIGURE_SMP_MAXIMUM_PROCESSORS,
2520    #endif
2521  };
2522#endif
2523
2524#endif /* CONFIGURE_HAS_OWN_CONFIGURATION_TABLE */
2525
2526#if defined(RTEMS_SMP)
2527 /*
2528  * Instantiate the Per CPU information based upon the user configuration.
2529  */
2530 #if defined(CONFIGURE_INIT)
2531   Per_CPU_Control_envelope _Per_CPU_Information[CONFIGURE_SMP_MAXIMUM_PROCESSORS];
2532 #endif
2533
2534#endif
2535
2536/*
2537 *  If the user has configured a set of Classic API Initialization Tasks,
2538 *  then we need to install the code that runs that loop.
2539 */
2540#ifdef CONFIGURE_INIT
2541  #if defined(CONFIGURE_RTEMS_INIT_TASKS_TABLE) || \
2542      defined(CONFIGURE_HAS_OWN_INIT_TASK_TABLE)
2543    void (*_RTEMS_tasks_Initialize_user_tasks_p)(void) =
2544              _RTEMS_tasks_Initialize_user_tasks_body;
2545  #else
2546    void (*_RTEMS_tasks_Initialize_user_tasks_p)(void) = NULL;
2547  #endif
2548#endif
2549
2550/*
2551 *  If the user has configured a set of POSIX Initialization Threads,
2552 *  then we need to install the code that runs that loop.
2553 */
2554#ifdef RTEMS_POSIX_API
2555  #ifdef CONFIGURE_INIT
2556    #if defined(CONFIGURE_POSIX_INIT_THREAD_TABLE) || \
2557        defined(CONFIGURE_POSIX_HAS_OWN_INIT_THREAD_TABLE)
2558      void (*_POSIX_Threads_Initialize_user_threads_p)(void) =
2559                _POSIX_Threads_Initialize_user_threads_body;
2560    #else
2561      void (*_POSIX_Threads_Initialize_user_threads_p)(void) = NULL;
2562    #endif
2563  #endif
2564#endif
2565
2566#ifdef __cplusplus
2567}
2568#endif
2569
2570/******************************************************************
2571 ******************************************************************
2572 ******************************************************************
2573 *         CONFIGURATION WARNINGS AND ERROR CHECKING              *
2574 ******************************************************************
2575 ******************************************************************
2576 ******************************************************************
2577 */
2578
2579#if defined(CONFIGURE_CONFDEFS_DEBUG) && defined(CONFIGURE_INIT)
2580  /**
2581   * This is a debug mechanism, so if you need to, the executable will
2582   * have a structure with various partial values.  Add to this as you
2583   * need to.  Viewing this structure in gdb combined with dumping
2584   * the Configuration structures generated should help a lot in tracing
2585   * down errors and analyzing where over and under allocations are.
2586   */
2587  typedef struct {
2588    uint32_t SYSTEM_OVERHEAD;
2589    uint32_t STATIC_EXTENSIONS;
2590    uint32_t INITIALIZATION_THREADS_STACKS;
2591
2592    uint32_t PER_INTEGER_TASK;
2593    uint32_t FP_OVERHEAD;
2594    uint32_t CLASSIC;
2595    uint32_t POSIX;
2596
2597    /* System overhead pieces */
2598    uint32_t INTERRUPT_VECTOR_TABLE;
2599    uint32_t INTERRUPT_STACK_MEMORY;
2600    uint32_t MEMORY_FOR_IDLE_TASK;
2601
2602    /* Classic API Pieces */
2603    uint32_t CLASSIC_TASKS;
2604    uint32_t TASK_VARIABLES;
2605    uint32_t TIMERS;
2606    uint32_t SEMAPHORES;
2607    uint32_t MESSAGE_QUEUES;
2608    uint32_t PARTITIONS;
2609    uint32_t REGIONS;
2610    uint32_t PORTS;
2611    uint32_t PERIODS;
2612    uint32_t BARRIERS;
2613    uint32_t USER_EXTENSIONS;
2614
2615    /* POSIX API managers that are always enabled */
2616    uint32_t POSIX_KEYS;
2617
2618#ifdef RTEMS_POSIX_API
2619    /* POSIX API Pieces */
2620    uint32_t POSIX_MUTEXES;
2621    uint32_t POSIX_CONDITION_VARIABLES;
2622    uint32_t POSIX_TIMERS;
2623    uint32_t POSIX_QUEUED_SIGNALS;
2624    uint32_t POSIX_MESSAGE_QUEUES;
2625    uint32_t POSIX_SEMAPHORES;
2626    uint32_t POSIX_BARRIERS;
2627    uint32_t POSIX_SPINLOCKS;
2628    uint32_t POSIX_RWLOCKS;
2629#endif
2630
2631    /* Stack space sizes */
2632    uint32_t IDLE_TASKS_STACK;
2633    uint32_t INITIALIZATION_THREADS_EXTRA_STACKS;
2634    uint32_t TASKS_STACK;
2635    uint32_t POSIX_THREADS_STACK;
2636    uint32_t GOROUTINES_STACK;
2637    uint32_t ADA_TASKS_STACK;
2638    uint32_t EXTRA_MPCI_RECEIVE_SERVER_STACK;
2639    uint32_t EXTRA_TASK_STACKS;
2640  } Configuration_Debug_t;
2641
2642  Configuration_Debug_t Configuration_Memory_Debug = {
2643    /* General Information */
2644    CONFIGURE_MEMORY_FOR_SYSTEM_OVERHEAD,
2645    CONFIGURE_MEMORY_FOR_STATIC_EXTENSIONS,
2646    CONFIGURE_INITIALIZATION_THREADS_EXTRA_STACKS,
2647    CONFIGURE_MEMORY_FOR_TASKS(1, 0),
2648    CONFIGURE_MEMORY_FOR_TASKS(0, 1),
2649    CONFIGURE_MEMORY_FOR_CLASSIC,
2650    CONFIGURE_MEMORY_FOR_POSIX,
2651
2652    /* System overhead pieces */
2653    CONFIGURE_INTERRUPT_VECTOR_TABLE,
2654    CONFIGURE_INTERRUPT_STACK_MEMORY,
2655    CONFIGURE_MEMORY_FOR_IDLE_TASK,
2656
2657    /* Classic API Pieces */
2658    CONFIGURE_MEMORY_FOR_TASKS(CONFIGURE_MAXIMUM_TASKS, 0),
2659    CONFIGURE_MEMORY_FOR_TASK_VARIABLES(CONFIGURE_MAXIMUM_TASK_VARIABLES +
2660      CONFIGURE_GOROUTINES_TASK_VARIABLES),
2661    CONFIGURE_MEMORY_FOR_TIMERS(CONFIGURE_MAXIMUM_TIMERS),
2662    CONFIGURE_MEMORY_FOR_SEMAPHORES(CONFIGURE_SEMAPHORES),
2663    CONFIGURE_MEMORY_FOR_MESSAGE_QUEUES(CONFIGURE_MAXIMUM_MESSAGE_QUEUES),
2664    CONFIGURE_MEMORY_FOR_PARTITIONS(CONFIGURE_MAXIMUM_PARTITIONS),
2665    CONFIGURE_MEMORY_FOR_REGIONS( CONFIGURE_MAXIMUM_REGIONS ),
2666    CONFIGURE_MEMORY_FOR_PORTS(CONFIGURE_MAXIMUM_PORTS),
2667    CONFIGURE_MEMORY_FOR_PERIODS(CONFIGURE_MAXIMUM_PERIODS),
2668    CONFIGURE_MEMORY_FOR_BARRIERS(CONFIGURE_BARRIERS),
2669    CONFIGURE_MEMORY_FOR_USER_EXTENSIONS(CONFIGURE_MAXIMUM_USER_EXTENSIONS),
2670    CONFIGURE_MEMORY_FOR_POSIX_KEYS( CONFIGURE_POSIX_KEYS, \
2671                                     CONFIGURE_MAXIMUM_POSIX_KEY_VALUE_PAIRS ),
2672
2673#ifdef RTEMS_POSIX_API
2674    /* POSIX API Pieces */
2675    CONFIGURE_MEMORY_FOR_POSIX_MUTEXES( CONFIGURE_MAXIMUM_POSIX_MUTEXES +
2676      CONFIGURE_MAXIMUM_GO_CHANNELS + CONFIGURE_GO_INIT_MUTEXES),
2677    CONFIGURE_MEMORY_FOR_POSIX_CONDITION_VARIABLES(
2678      CONFIGURE_MAXIMUM_POSIX_CONDITION_VARIABLES +
2679      CONFIGURE_MAXIMUM_GO_CHANNELS + CONFIGURE_GO_INIT_CONDITION_VARIABLES),
2680    CONFIGURE_MEMORY_FOR_POSIX_QUEUED_SIGNALS(
2681      CONFIGURE_MAXIMUM_POSIX_QUEUED_SIGNALS ),
2682    CONFIGURE_MEMORY_FOR_POSIX_MESSAGE_QUEUES(
2683      CONFIGURE_MAXIMUM_POSIX_MESSAGE_QUEUES ),
2684    CONFIGURE_MEMORY_FOR_POSIX_SEMAPHORES( CONFIGURE_MAXIMUM_POSIX_SEMAPHORES ),
2685    CONFIGURE_MEMORY_FOR_POSIX_BARRIERS( CONFIGURE_MAXIMUM_POSIX_BARRIERS ),
2686    CONFIGURE_MEMORY_FOR_POSIX_SPINLOCKS( CONFIGURE_MAXIMUM_POSIX_SPINLOCKS ),
2687    CONFIGURE_MEMORY_FOR_POSIX_RWLOCKS( CONFIGURE_MAXIMUM_POSIX_RWLOCKS ),
2688    CONFIGURE_MEMORY_FOR_POSIX_TIMERS( CONFIGURE_MAXIMUM_POSIX_TIMERS ),
2689#endif
2690
2691    /* Stack space sizes */
2692    CONFIGURE_IDLE_TASKS_STACK,
2693    CONFIGURE_INITIALIZATION_THREADS_EXTRA_STACKS,
2694    CONFIGURE_TASKS_STACK,
2695    CONFIGURE_POSIX_THREADS_STACK,
2696    CONFIGURE_GOROUTINES_STACK,
2697    CONFIGURE_ADA_TASKS_STACK,
2698    CONFIGURE_EXTRA_MPCI_RECEIVE_SERVER_STACK,
2699    CONFIGURE_EXTRA_TASK_STACKS
2700  };
2701#endif
2702
2703/*
2704 *  Make sure a task/thread of some sort is configured.
2705 *
2706 *  When analyzing RTEMS to find the smallest possible of memory
2707 *  that must be allocated, you probably do want to configure 0
2708 *  tasks/threads so there is a smaller set of calls to _Workspace_Allocate
2709 *  to analyze.
2710 */
2711#if !defined(CONFIGURE_IDLE_TASK_INITIALIZES_APPLICATION)
2712  #if (CONFIGURE_MAXIMUM_TASKS == 0) && \
2713      (CONFIGURE_MAXIMUM_POSIX_THREADS == 0) && \
2714      (CONFIGURE_MAXIMUM_ADA_TASKS == 0) && \
2715      (CONFIGURE_MAXIMUM_GOROUTINES == 0)
2716    #error "CONFIGURATION ERROR: No tasks or threads configured!!"
2717  #endif
2718#endif
2719
2720#ifndef RTEMS_SCHEDSIM
2721/*
2722 *  Make sure at least one of the initialization task/thread
2723 *  tables was defined.
2724 */
2725#if !defined(CONFIGURE_RTEMS_INIT_TASKS_TABLE) && \
2726    !defined(CONFIGURE_POSIX_INIT_THREAD_TABLE) && \
2727    !defined(CONFIGURE_IDLE_TASK_INITIALIZES_APPLICATION)
2728#error "CONFIGURATION ERROR: No initialization tasks or threads configured!!"
2729#endif
2730#endif
2731
2732/*
2733 *  If the user is trying to configure a multiprocessing application and
2734 *  RTEMS was not configured and built multiprocessing, then error out.
2735 */
2736#if defined(CONFIGURE_MP_APPLICATION) && \
2737    !defined(RTEMS_MULTIPROCESSING)
2738#error "CONFIGURATION ERROR: RTEMS not configured for multiprocessing!!"
2739#endif
2740
2741/*
2742 *  If an attempt was made to configure POSIX objects and
2743 *  the POSIX API was not configured into RTEMS, error out.
2744 *
2745 *  @note POSIX Keys are always available so the parameters
2746 *        CONFIGURE_MAXIMUM_POSIX_KEYS and
2747 *        CONFIGURE_MAXIMUM_POSIX_KEY_VALUE_PAIRS  are not in this list.
2748 */
2749#if !defined(RTEMS_POSIX_API)
2750  #if ((CONFIGURE_MAXIMUM_POSIX_THREADS != 0) || \
2751       (CONFIGURE_MAXIMUM_POSIX_MUTEXES != 0) || \
2752       (CONFIGURE_MAXIMUM_POSIX_CONDITION_VARIABLES != 0) || \
2753       (CONFIGURE_MAXIMUM_POSIX_TIMERS != 0) || \
2754       (CONFIGURE_MAXIMUM_POSIX_QUEUED_SIGNALS != 0) || \
2755       (CONFIGURE_MAXIMUM_POSIX_MESSAGE_QUEUES != 0) || \
2756       (CONFIGURE_MAXIMUM_POSIX_MESSAGE_QUEUE_DESCRIPTORS != 0) || \
2757       (CONFIGURE_MAXIMUM_POSIX_SEMAPHORES != 0) || \
2758       (CONFIGURE_MAXIMUM_POSIX_BARRIERS != 0) || \
2759       (CONFIGURE_MAXIMUM_POSIX_SPINLOCKS != 0) || \
2760       (CONFIGURE_MAXIMUM_POSIX_RWLOCKS != 0) || \
2761      defined(CONFIGURE_POSIX_INIT_THREAD_TABLE))
2762  #error "CONFIGURATION ERROR: POSIX API support not configured!!"
2763  #endif
2764#endif
2765
2766#if !defined(RTEMS_SCHEDSIM)
2767  #if !defined(CONFIGURE_HAS_OWN_DEVICE_DRIVER_TABLE)
2768    /*
2769     *  You must either explicity include or exclude the clock driver.
2770     *  It is such a common newbie error to leave it out.  Maybe this
2771     *  will put an end to it.
2772     *
2773     *  NOTE: If you are using the timer driver, it is considered
2774     *        mutually exclusive with the clock driver because the
2775     *        drivers are assumed to use the same "timer" hardware
2776     *        on many boards.
2777     */
2778    #if !defined(CONFIGURE_APPLICATION_NEEDS_CLOCK_DRIVER) && \
2779        !defined(CONFIGURE_APPLICATION_DOES_NOT_NEED_CLOCK_DRIVER) && \
2780        !defined(CONFIGURE_APPLICATION_NEEDS_TIMER_DRIVER)
2781      #error "CONFIGURATION ERROR: Do you want the clock driver or not?!?"
2782     #endif
2783
2784    /*
2785     * Only one of the following three configuration parameters should be
2786     * defined at a time.
2787     */
2788    #if ((defined(CONFIGURE_APPLICATION_NEEDS_CLOCK_DRIVER) + \
2789          defined(CONFIGURE_APPLICATION_NEEDS_TIMER_DRIVER) + \
2790          defined(CONFIGURE_APPLICATION_DOES_NOT_NEED_CLOCK_DRIVER)) > 1)
2791       #error "CONFIGURATION ERROR: More than one clock/timer driver configuration parameter specified?!?"
2792    #endif
2793  #endif /* !defined(CONFIGURE_HAS_OWN_DEVICE_DRIVER_TABLE) */
2794#endif   /* !defined(RTEMS_SCHEDSIM) */
2795
2796/*
2797 *  These names have been obsoleted so make the user application stop compiling
2798 */
2799#if defined(CONFIGURE_TEST_NEEDS_TIMER_DRIVER) || \
2800    defined(CONFIGURE_TEST_NEEDS_CONSOLE_DRIVER) || \
2801    defined(CONFIGURE_TEST_NEEDS_CLOCK_DRIVER) || \
2802    defined(CONFIGURE_TEST_NEEDS_RTC_DRIVER) || \
2803    defined(CONFIGURE_TEST_NEEDS_STUB_DRIVER)
2804#error "CONFIGURATION ERROR: CONFIGURE_TEST_XXX constants are obsolete"
2805#endif
2806
2807/*
2808 *  Validate the configured maximum priority
2809 */
2810#if ((CONFIGURE_MAXIMUM_PRIORITY != 3) && \
2811     (CONFIGURE_MAXIMUM_PRIORITY != 7) && \
2812     (CONFIGURE_MAXIMUM_PRIORITY != 15) && \
2813     (CONFIGURE_MAXIMUM_PRIORITY != 31) && \
2814     (CONFIGURE_MAXIMUM_PRIORITY != 63) && \
2815     (CONFIGURE_MAXIMUM_PRIORITY != 127) && \
2816     (CONFIGURE_MAXIMUM_PRIORITY != 255))
2817  #error "Maximum priority is not 1 less than a power of 2 between 4 and 256"
2818#endif
2819
2820#if (CONFIGURE_MAXIMUM_PRIORITY > PRIORITY_DEFAULT_MAXIMUM)
2821  #error "Maximum priority configured higher than supported by target."
2822#endif
2823
2824/*
2825 *  If you have fewer POSIX Message Queue Descriptors than actual
2826 *  POSIX Message Queues, then you will not be able to open all the
2827 *  queues.
2828 */
2829#if (CONFIGURE_MAXIMUM_POSIX_MESSAGE_QUEUE_DESCRIPTORS < \
2830     CONFIGURE_MAXIMUM_POSIX_MESSAGE_QUEUES)
2831  #error "Fewer POSIX Message Queue descriptors than Queues!"
2832#endif
2833
2834/*
2835 * POSIX Key pair shouldn't be less than POSIX Key, which is highly
2836 * likely to be error.
2837 */
2838#if (CONFIGURE_MAXIMUM_POSIX_KEYS != 0) && \
2839    (CONFIGURE_MAXIMUM_POSIX_KEY_VALUE_PAIRS != 0)
2840  #if (CONFIGURE_MAXIMUM_POSIX_KEY_VALUE_PAIRS < CONFIGURE_MAXIMUM_POSIX_KEYS)
2841    #error "Fewer POSIX Key pairs than POSIX Key!"
2842  #endif
2843#endif
2844
2845#endif
2846/* end of include file */
Note: See TracBrowser for help on using the repository browser.