source: rtems/cpukit/include/rtems/confdefs.h @ e44ae80

5
Last change on this file since e44ae80 was e44ae80, checked in by Sebastian Huber <sebastian.huber@…>, on 02/02/20 at 10:00:05

config: Add CONFIGURE_VERBOSE_SYSTEM_INITIALIZATION

Update #3861.

  • Property mode set to 100644
File size: 98.4 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
13/*
14 *  COPYRIGHT (c) 1989-2015.
15 *  On-Line Applications Research Corporation (OAR).
16 *
17 *  The license and distribution terms for this file may be
18 *  found in the file LICENSE in this distribution or at
19 *  http://www.rtems.org/license/LICENSE.
20 */
21
22#ifndef __CONFIGURATION_TEMPLATE_h
23#define __CONFIGURATION_TEMPLATE_h
24
25/*
26 * Include the executive's configuration
27 */
28#include <rtems.h>
29#include <rtems/extensiondata.h>
30#include <rtems/ioimpl.h>
31#include <rtems/sysinit.h>
32#include <rtems/score/apimutex.h>
33#include <rtems/score/percpu.h>
34#include <rtems/score/userextimpl.h>
35#include <rtems/score/wkspace.h>
36#include <rtems/rtems/barrierdata.h>
37#include <rtems/rtems/dpmemdata.h>
38#include <rtems/rtems/messagedata.h>
39#include <rtems/rtems/partdata.h>
40#include <rtems/rtems/ratemondata.h>
41#include <rtems/rtems/regiondata.h>
42#include <rtems/rtems/semdata.h>
43#include <rtems/rtems/tasksdata.h>
44#include <rtems/rtems/timerdata.h>
45#include <rtems/posix/key.h>
46#include <rtems/posix/mqueue.h>
47#include <rtems/posix/psignal.h>
48#include <rtems/posix/pthread.h>
49#include <rtems/posix/semaphore.h>
50#include <rtems/posix/shm.h>
51#include <rtems/posix/timer.h>
52
53#include <limits.h>
54
55#ifdef CONFIGURE_DISABLE_BSP_SETTINGS
56  #undef BSP_DEFAULT_UNIFIED_WORK_AREAS
57  #undef BSP_IDLE_TASK_BODY
58  #undef BSP_IDLE_TASK_STACK_SIZE
59  #undef BSP_INITIAL_EXTENSION
60  #undef BSP_INTERRUPT_STACK_SIZE
61  #undef BSP_MAXIMUM_DEVICES
62  #undef BSP_ZERO_WORKSPACE_AUTOMATICALLY
63  #undef CONFIGURE_BSP_PREREQUISITE_DRIVERS
64  #undef CONFIGURE_MALLOC_BSP_SUPPORTS_SBRK
65#else
66  #include <bsp.h>
67#endif
68
69#ifdef RTEMS_NEWLIB
70  #include <sys/reent.h>
71#endif
72
73#ifdef __cplusplus
74extern "C" {
75#endif
76
77/*
78 * Internal defines must be prefixed with _CONFIGURE to distinguish them from
79 * user-provided options which use a CONFIGURE prefix.
80 */
81
82/**
83 * @defgroup Configuration RTEMS Configuration
84 *
85 * This module contains all RTEMS Configuration parameters.
86 *
87 * The model is to estimate the memory required for each configured item
88 * and sum those estimates.  The estimate can be too high or too low for
89 * a variety of reasons:
90 *
91 * Reasons estimate is too high:
92 *   + FP contexts (not all tasks are FP)
93 *
94 * Reasons estimate is too low:
95 *   + stacks greater than minimum size
96 *   + messages
97 *   + application must account for device driver resources
98 *   + application must account for add-on library resource requirements
99 *
100 * NOTE:  Eventually this may be able to take into account some of
101 *        the above.  This procedure has evolved from just enough to
102 *        support the RTEMS Test Suites into something that can be
103 *        used remarkably reliably by most applications.
104 */
105
106/**
107 * This is the Classic API initialization tasks table.
108 */
109extern rtems_initialization_tasks_table Initialization_tasks[];
110
111#if defined(RTEMS_MULTIPROCESSING)
112  /**
113   * This it the distributed multiprocessing configuration table.
114   */
115  extern rtems_multiprocessing_table      Multiprocessing_configuration;
116#endif
117
118/**
119 * This macro determines whether the RTEMS reentrancy support for
120 * the Newlib C Library is enabled.
121 */
122#ifdef RTEMS_SCHEDSIM
123  #undef RTEMS_NEWLIB
124#endif
125
126#if (defined(RTEMS_NEWLIB) && !defined(CONFIGURE_DISABLE_NEWLIB_REENTRANCY))
127  #define _CONFIGURE_NEWLIB_EXTENSION 1
128#else
129  #define _CONFIGURE_NEWLIB_EXTENSION 0
130#endif
131
132#ifndef RTEMS_SCHEDSIM
133#include <rtems/libio_.h>
134
135#ifdef CONFIGURE_INIT
136  #ifndef CONFIGURE_APPLICATION_DISABLE_FILESYSTEM
137    RTEMS_SYSINIT_ITEM(
138      rtems_filesystem_initialize,
139      RTEMS_SYSINIT_ROOT_FILESYSTEM,
140      RTEMS_SYSINIT_ORDER_MIDDLE
141    );
142  #endif
143#endif
144#endif
145
146#ifdef CONFIGURE_LIBIO_MAXIMUM_FILE_DESCRIPTORS
147  #warning "CONFIGURE_LIBIO_MAXIMUM_FILE_DESCRIPTORS has been renamed to CONFIGURE_MAXIMUM_FILE_DESCRIPTORS since RTEMS 5.1"
148  #define CONFIGURE_MAXIMUM_FILE_DESCRIPTORS CONFIGURE_LIBIO_MAXIMUM_FILE_DESCRIPTORS
149#endif
150
151/**
152 * This macro defines the number of POSIX file descriptors allocated
153 * and managed by libio.  These are the "integer" file descriptors that
154 * are used by calls like open(2) and read(2).
155 */
156#ifndef CONFIGURE_MAXIMUM_FILE_DESCRIPTORS
157  #define CONFIGURE_MAXIMUM_FILE_DESCRIPTORS 3
158#endif
159
160/*
161 * POSIX key count used by the IO library.
162 */
163#define _CONFIGURE_LIBIO_POSIX_KEYS 1
164
165#ifdef CONFIGURE_INIT
166  rtems_libio_t rtems_libio_iops[CONFIGURE_MAXIMUM_FILE_DESCRIPTORS];
167
168  /**
169   * When instantiating the configuration tables, this variable is
170   * initialized to specify the maximum number of file descriptors.
171   */
172  const uint32_t rtems_libio_number_iops = RTEMS_ARRAY_SIZE(rtems_libio_iops);
173#endif
174
175#ifdef CONFIGURE_SMP_MAXIMUM_PROCESSORS
176  #warning "CONFIGURE_SMP_MAXIMUM_PROCESSORS has been renamed to CONFIGURE_MAXIMUM_PROCESSORS since RTEMS 5.1"
177  #define CONFIGURE_MAXIMUM_PROCESSORS CONFIGURE_SMP_MAXIMUM_PROCESSORS
178#endif
179
180/* Ensure that _CONFIGURE_MAXIMUM_PROCESSORS > 1 only in SMP configurations */
181#if defined(CONFIGURE_MAXIMUM_PROCESSORS) && defined(RTEMS_SMP)
182  #define _CONFIGURE_MAXIMUM_PROCESSORS CONFIGURE_MAXIMUM_PROCESSORS
183#else
184  #define _CONFIGURE_MAXIMUM_PROCESSORS 1
185#endif
186
187/*
188 * An internal define to indicate that this is an SMP application
189 * configuration.
190 */
191#ifdef RTEMS_SMP
192  #if !defined(CONFIGURE_DISABLE_SMP_CONFIGURATION)
193    #define _CONFIGURE_SMP_APPLICATION
194  #elif _CONFIGURE_MAXIMUM_PROCESSORS > 1
195    #error "CONFIGURE_DISABLE_SMP_CONFIGURATION and CONFIGURE_MAXIMUM_PROCESSORS > 1 makes no sense"
196  #endif
197#endif
198
199#ifdef CONFIGURE_SMP_APPLICATION
200  #warning "CONFIGURE_SMP_APPLICATION is obsolete since RTEMS 5.1"
201#endif
202
203/*
204 * This sets up the resources for the FIFOs/pipes.
205 */
206
207/**
208 * This is specified to configure the maximum number of POSIX FIFOs.
209 */
210#ifdef CONFIGURE_MAXIMUM_FIFOS
211  #warning "CONFIGURE_MAXIMUM_FIFOS is obsolete since RTEMS 5.1; use CONFIGURE_IMFS_ENABLE_MKFIFO instead"
212  #if CONFIGURE_MAXIMUM_FIFOS > 0
213    #define CONFIGURE_IMFS_ENABLE_MKFIFO
214  #endif
215#endif
216
217/**
218 * This is specified to configure the maximum number of POSIX named pipes.
219 */
220#ifdef CONFIGURE_MAXIMUM_PIPES
221  #warning "CONFIGURE_MAXIMUM_PIPES is obsolete since RTEMS 5.1; use CONFIGURE_IMFS_ENABLE_MKFIFO instead"
222  #if CONFIGURE_MAXIMUM_PIPES > 0
223    #define CONFIGURE_IMFS_ENABLE_MKFIFO
224  #endif
225#endif
226
227/**
228 *  @defgroup ConfigFilesystems Filesystems and Mount Table Configuration
229 *
230 *  @ingroup Configuration
231 *
232 *  Defines to control the file system:
233 *
234 *   - CONFIGURE_APPLICATION_DISABLE_FILESYSTEM:
235 *     Disable the RTEMS filesystems. You get an empty DEVFS.
236 *
237 *   - CONFIGURE_USE_DEVFS_AS_BASE_FILESYSTEM:
238 *     Use the DEVFS as the root file system. Limited functions are
239 *     provided when this is used.
240 *
241 *   - CONFIGURE_FILESYSTEM_ALL:
242 *     Add file filesystems to the default filesystem table.
243 *
244 *   List of available file systems. You can define as many as you like:
245 *     - CONFIGURE_FILESYSTEM_IMFS   - In Memory File System (IMFS)
246 *     - CONFIGURE_FILESYSTEM_DEVFS  - Device File System (DSVFS)
247 *     - CONFIGURE_FILESYSTEM_TFTPFS - TFTP File System, networking enabled
248 *     - CONFIGURE_FILESYSTEM_FTPFS  - FTP File System, networking enabled
249 *     - CONFIGURE_FILESYSTEM_NFS    - Network File System, networking enabled
250 *     - CONFIGURE_FILESYSTEM_DOSFS  - DOS File System, uses libblock
251 *     - CONFIGURE_FILESYSTEM_RFS    - RTEMS File System (RFS), uses libblock
252 *     - CONFIGURE_FILESYSTEM_JFFS2  - Journalling Flash File System, Version 2
253 *
254 *   Combinations:
255 *
256 *    - If nothing is defined the base file system is the IMFS.
257 *
258 *    - If CONFIGURE_APPLICATION_DISABLE_FILESYSTEM is defined all filesystems
259 *      are disabled by force.
260 *
261 *    - If CONFIGURE_USE_DEVFS_AS_BASE_FILESYSTEM is defined all filesystems
262 *      are disabled by force and DEVFS is defined.
263 */
264/**@{*/
265
266#ifdef CONFIGURE_INIT
267
268  /*
269   * Include all file systems. Do this before checking if the filesystem has
270   * been disabled.
271   */
272  #ifdef CONFIGURE_FILESYSTEM_ALL
273    #define CONFIGURE_FILESYSTEM_IMFS
274    #define CONFIGURE_FILESYSTEM_DEVFS
275    #define CONFIGURE_FILESYSTEM_TFTPFS
276    #define CONFIGURE_FILESYSTEM_FTPFS
277    #define CONFIGURE_FILESYSTEM_NFS
278    #define CONFIGURE_FILESYSTEM_DOSFS
279    #define CONFIGURE_FILESYSTEM_RFS
280    #define CONFIGURE_FILESYSTEM_JFFS2
281  #endif
282
283  /*
284   * If disabling the file system, give a compile error if the user has
285   * configured other filesystem parameters.
286   */
287  #if defined(CONFIGURE_APPLICATION_DISABLE_FILESYSTEM)
288     #if defined(CONFIGURE_USE_DEVFS_AS_BASE_FILESYSTEM)
289       #error "Filesystem disabled and a base filesystem configured."
290     #endif
291
292     #if defined(CONFIGURE_FILESYSTEM_IMFS) || \
293       defined(CONFIGURE_FILESYSTEM_DEVFS) || \
294       defined(CONFIGURE_FILESYSTEM_TFTPFS) || \
295       defined(CONFIGURE_FILESYSTEM_FTPFS) || \
296       defined(CONFIGURE_FILESYSTEM_NFS) || \
297       defined(CONFIGURE_FILESYSTEM_DOSFS) || \
298       defined(CONFIGURE_FILESYSTEM_RFS) || \
299       defined(CONFIGURE_FILESYSTEM_JFFS2)
300       #error "Filesystem disabled and a filesystem configured."
301     #endif
302  #endif
303
304  /*
305   * If the base filesystem is DEVFS define it else define IMFS.
306   * We will have either DEVFS or IMFS defined after this.
307   */
308  #if !defined(CONFIGURE_APPLICATION_DISABLE_FILESYSTEM)
309    #if defined(CONFIGURE_USE_DEVFS_AS_BASE_FILESYSTEM)
310      #define CONFIGURE_FILESYSTEM_DEVFS
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 IMFS file system table entry.
335 */
336#if !defined(CONFIGURE_FILESYSTEM_ENTRY_IMFS) && \
337  defined(CONFIGURE_FILESYSTEM_IMFS)
338  #define CONFIGURE_FILESYSTEM_ENTRY_IMFS \
339    { RTEMS_FILESYSTEM_TYPE_IMFS, IMFS_initialize }
340#endif
341#endif
342
343#ifdef CONFIGURE_USE_MINIIMFS_AS_BASE_FILESYSTEM
344  #define CONFIGURE_IMFS_DISABLE_CHMOD
345  #define CONFIGURE_IMFS_DISABLE_CHOWN
346  #define CONFIGURE_IMFS_DISABLE_UTIME
347  #define CONFIGURE_IMFS_DISABLE_LINK
348  #define CONFIGURE_IMFS_DISABLE_SYMLINK
349  #define CONFIGURE_IMFS_DISABLE_READLINK
350  #define CONFIGURE_IMFS_DISABLE_RENAME
351  #define CONFIGURE_IMFS_DISABLE_UNMOUNT
352#endif
353
354/**
355 * DEVFS
356 */
357#if !defined(CONFIGURE_FILESYSTEM_ENTRY_DEVFS) && \
358    defined(CONFIGURE_FILESYSTEM_DEVFS)
359#include <rtems/devfs.h>
360  #define CONFIGURE_FILESYSTEM_ENTRY_DEVFS \
361    { RTEMS_FILESYSTEM_TYPE_DEVFS, devFS_initialize }
362#endif
363
364/**
365 * FTPFS
366 */
367#if !defined(CONFIGURE_FILESYSTEM_ENTRY_FTPFS) && \
368    defined(CONFIGURE_FILESYSTEM_FTPFS)
369  #include <rtems/ftpfs.h>
370  #define CONFIGURE_FILESYSTEM_ENTRY_FTPFS \
371    { RTEMS_FILESYSTEM_TYPE_FTPFS, rtems_ftpfs_initialize }
372#endif
373
374/**
375 * TFTPFS
376 */
377#if !defined(CONFIGURE_FILESYSTEM_ENTRY_TFTPFS) && \
378    defined(CONFIGURE_FILESYSTEM_TFTPFS)
379  #include <rtems/tftp.h>
380  #define CONFIGURE_FILESYSTEM_ENTRY_TFTPFS \
381    { RTEMS_FILESYSTEM_TYPE_TFTPFS, rtems_tftpfs_initialize }
382#endif
383
384/**
385 * NFS
386 */
387#if !defined(CONFIGURE_FILESYSTEM_ENTRY_NFS) && \
388    defined(CONFIGURE_FILESYSTEM_NFS)
389  #include <librtemsNfs.h>
390  #define CONFIGURE_FILESYSTEM_ENTRY_NFS \
391    { RTEMS_FILESYSTEM_TYPE_NFS, rtems_nfs_initialize }
392#endif
393
394/**
395 * DOSFS
396 */
397#if !defined(CONFIGURE_FILESYSTEM_ENTRY_DOSFS) && \
398    defined(CONFIGURE_FILESYSTEM_DOSFS)
399  #include <rtems/dosfs.h>
400  #define CONFIGURE_FILESYSTEM_ENTRY_DOSFS \
401    { RTEMS_FILESYSTEM_TYPE_DOSFS, rtems_dosfs_initialize }
402#endif
403
404/**
405 * RFS
406 */
407#if !defined(CONFIGURE_FILESYSTEM_ENTRY_RFS) && \
408    defined(CONFIGURE_FILESYSTEM_RFS)
409  #include <rtems/rtems-rfs.h>
410  #define CONFIGURE_FILESYSTEM_ENTRY_RFS \
411    { RTEMS_FILESYSTEM_TYPE_RFS, rtems_rfs_rtems_initialise }
412#endif
413
414/**
415 * JFFS2
416 */
417#if !defined(CONFIGURE_FILESYSTEM_ENTRY_JFFS2) && \
418    defined(CONFIGURE_FILESYSTEM_JFFS2)
419  #include <rtems/jffs2.h>
420  #define CONFIGURE_FILESYSTEM_ENTRY_JFFS2 \
421    { RTEMS_FILESYSTEM_TYPE_JFFS2, rtems_jffs2_initialize }
422#endif
423
424#ifdef CONFIGURE_INIT
425
426  /**
427   * DEVFS variables.
428   *
429   * The number of individual devices that may be registered
430   * in the system or the CONFIGURE_MAXIMUM_DEVICES variable
431   * is defaulted to 4 when a filesystem is enabled, unless
432   * the bsp overwrides this.  In which case the value is set
433   * to BSP_MAXIMUM_DEVICES.
434   */
435  #ifdef CONFIGURE_FILESYSTEM_DEVFS
436    #ifndef CONFIGURE_MAXIMUM_DEVICES
437      #if defined(BSP_MAXIMUM_DEVICES)
438        #define CONFIGURE_MAXIMUM_DEVICES BSP_MAXIMUM_DEVICES
439      #else
440        #define CONFIGURE_MAXIMUM_DEVICES 4
441      #endif
442    #endif
443    #include <rtems/devfs.h>
444  #endif
445
446  /**
447   * Table termination record.
448   */
449  #define CONFIGURE_FILESYSTEM_NULL { NULL, NULL }
450
451#ifndef RTEMS_SCHEDSIM
452  #if !defined(CONFIGURE_APPLICATION_DISABLE_FILESYSTEM) && \
453    !defined(CONFIGURE_USE_DEVFS_AS_BASE_FILESYSTEM)
454    int imfs_rq_memfile_bytes_per_block =
455      CONFIGURE_IMFS_MEMFILE_BYTES_PER_BLOCK;
456  #endif
457
458  /**
459   * The default file system table. Must be terminated with the NULL entry if
460   * you provide your own.
461   */
462  #ifndef CONFIGURE_APPLICATION_DISABLE_FILESYSTEM
463    const rtems_filesystem_table_t rtems_filesystem_table[] = {
464      #if !defined(CONFIGURE_USE_DEVFS_AS_BASE_FILESYSTEM)
465        { "/", IMFS_initialize_support },
466      #endif
467      #if defined(CONFIGURE_FILESYSTEM_IMFS) && \
468          defined(CONFIGURE_FILESYSTEM_ENTRY_IMFS)
469        CONFIGURE_FILESYSTEM_ENTRY_IMFS,
470      #endif
471      #if defined(CONFIGURE_FILESYSTEM_DEVFS) && \
472          defined(CONFIGURE_FILESYSTEM_ENTRY_DEVFS)
473        CONFIGURE_FILESYSTEM_ENTRY_DEVFS,
474      #endif
475      #if defined(CONFIGURE_FILESYSTEM_TFTPFS) && \
476          defined(CONFIGURE_FILESYSTEM_ENTRY_TFTPFS)
477        CONFIGURE_FILESYSTEM_ENTRY_TFTPFS,
478      #endif
479      #if defined(CONFIGURE_FILESYSTEM_FTPFS) && \
480          defined(CONFIGURE_FILESYSTEM_ENTRY_FTPFS)
481        CONFIGURE_FILESYSTEM_ENTRY_FTPFS,
482      #endif
483      #if defined(CONFIGURE_FILESYSTEM_NFS) && \
484          defined(CONFIGURE_FILESYSTEM_ENTRY_NFS)
485        CONFIGURE_FILESYSTEM_ENTRY_NFS,
486      #endif
487      #if defined(CONFIGURE_FILESYSTEM_DOSFS) && \
488          defined(CONFIGURE_FILESYSTEM_ENTRY_DOSFS)
489        CONFIGURE_FILESYSTEM_ENTRY_DOSFS,
490      #endif
491      #if defined(CONFIGURE_FILESYSTEM_RFS) && \
492          defined(CONFIGURE_FILESYSTEM_ENTRY_RFS)
493        CONFIGURE_FILESYSTEM_ENTRY_RFS,
494      #endif
495      #if defined(CONFIGURE_FILESYSTEM_JFFS2) && \
496          defined(CONFIGURE_FILESYSTEM_ENTRY_JFFS2)
497        CONFIGURE_FILESYSTEM_ENTRY_JFFS2,
498      #endif
499      CONFIGURE_FILESYSTEM_NULL
500    };
501
502    #if defined(CONFIGURE_USE_DEVFS_AS_BASE_FILESYSTEM)
503      static devFS_node devFS_root_filesystem_nodes [CONFIGURE_MAXIMUM_DEVICES];
504      static const devFS_data devFS_root_filesystem_data = {
505        devFS_root_filesystem_nodes,
506        CONFIGURE_MAXIMUM_DEVICES
507      };
508    #else
509      static IMFS_fs_info_t _Configure_IMFS_fs_info;
510
511      static const rtems_filesystem_operations_table _Configure_IMFS_ops = {
512        rtems_filesystem_default_lock,
513        rtems_filesystem_default_unlock,
514        IMFS_eval_path,
515        #ifdef CONFIGURE_IMFS_DISABLE_LINK
516          rtems_filesystem_default_link,
517        #else
518          IMFS_link,
519        #endif
520        rtems_filesystem_default_are_nodes_equal,
521        #ifdef CONFIGURE_IMFS_DISABLE_MKNOD
522          rtems_filesystem_default_mknod,
523        #else
524          IMFS_mknod,
525        #endif
526        #ifdef CONFIGURE_IMFS_DISABLE_RMNOD
527          rtems_filesystem_default_rmnod,
528        #else
529          IMFS_rmnod,
530        #endif
531        #ifdef CONFIGURE_IMFS_DISABLE_CHMOD
532          rtems_filesystem_default_fchmod,
533        #else
534          IMFS_fchmod,
535        #endif
536        #ifdef CONFIGURE_IMFS_DISABLE_CHOWN
537          rtems_filesystem_default_chown,
538        #else
539          IMFS_chown,
540        #endif
541        IMFS_node_clone,
542        IMFS_node_free,
543        #ifdef CONFIGURE_IMFS_DISABLE_MOUNT
544          rtems_filesystem_default_mount,
545        #else
546          IMFS_mount,
547        #endif
548        #ifdef CONFIGURE_IMFS_DISABLE_UNMOUNT
549          rtems_filesystem_default_unmount,
550        #else
551          IMFS_unmount,
552        #endif
553        rtems_filesystem_default_fsunmount,
554        #ifdef CONFIGURE_IMFS_DISABLE_UTIME
555          rtems_filesystem_default_utime,
556        #else
557          IMFS_utime,
558        #endif
559        #ifdef CONFIGURE_IMFS_DISABLE_SYMLINK
560          rtems_filesystem_default_symlink,
561        #else
562          IMFS_symlink,
563        #endif
564        #ifdef CONFIGURE_IMFS_DISABLE_READLINK
565          rtems_filesystem_default_readlink,
566        #else
567          IMFS_readlink,
568        #endif
569        #ifdef CONFIGURE_IMFS_DISABLE_RENAME
570          rtems_filesystem_default_rename,
571        #else
572          IMFS_rename,
573        #endif
574        rtems_filesystem_default_statvfs
575      };
576
577      static const IMFS_mknod_controls _Configure_IMFS_mknod_controls = {
578        #ifdef CONFIGURE_IMFS_DISABLE_READDIR
579          &IMFS_mknod_control_dir_minimal,
580        #else
581          &IMFS_mknod_control_dir_default,
582        #endif
583        &IMFS_mknod_control_device,
584        #ifdef CONFIGURE_IMFS_DISABLE_MKNOD_FILE
585          &IMFS_mknod_control_enosys,
586        #else
587          &IMFS_mknod_control_memfile,
588        #endif
589        #ifdef CONFIGURE_IMFS_ENABLE_MKFIFO
590          &IMFS_mknod_control_fifo
591        #else
592          &IMFS_mknod_control_enosys
593        #endif
594      };
595
596      static const IMFS_mount_data _Configure_IMFS_mount_data = {
597        &_Configure_IMFS_fs_info,
598        &_Configure_IMFS_ops,
599        &_Configure_IMFS_mknod_controls
600      };
601    #endif
602
603    const rtems_filesystem_mount_configuration
604      rtems_filesystem_root_configuration = {
605      NULL,
606      NULL,
607      #if defined(CONFIGURE_USE_DEVFS_AS_BASE_FILESYSTEM)
608        RTEMS_FILESYSTEM_TYPE_DEVFS,
609      #else
610        "/",
611      #endif
612      RTEMS_FILESYSTEM_READ_WRITE,
613      #if defined(CONFIGURE_USE_DEVFS_AS_BASE_FILESYSTEM)
614        &devFS_root_filesystem_data
615      #else
616        &_Configure_IMFS_mount_data
617      #endif
618    };
619  #endif
620
621#endif
622#endif
623/**@}*/ /* end of file system group */
624
625/*
626 *  STACK_CHECKER_ON was still available in 4.9 so give a warning for now.
627 */
628#if defined(STACK_CHECKER_ON)
629  #define CONFIGURE_STACK_CHECKER_ENABLED
630  #warning "STACK_CHECKER_ON deprecated -- use CONFIGURE_STACK_CHECKER_ENABLED"
631#endif
632
633/**
634 * This configures the stack checker user extension.
635 */
636#ifdef CONFIGURE_STACK_CHECKER_ENABLED
637  #define _CONFIGURE_STACK_CHECKER_EXTENSION 1
638#else
639  #define _CONFIGURE_STACK_CHECKER_EXTENSION 0
640#endif
641
642/**
643 * @brief Maximum priority configuration.
644 *
645 * This configures the maximum priority value that
646 * a task may have.
647 *
648 * The following applies to the data space requirements
649 * of the Priority Scheduler.
650 *
651 * By reducing the number of priorities in a system,
652 * the amount of RAM required by RTEMS can be significantly
653 * reduced.  RTEMS allocates a Chain_Control structure per
654 * priority and this structure contains 3 pointers.  So
655 * the default is (256 * 12) = 3K on 32-bit architectures.
656 *
657 * This must be one less than a power of 2 between
658 * 4 and 256.  Valid values along with the application
659 * priority levels and memory saved when pointers are
660 * 32-bits in size are:
661 *
662 *   + 3,  2 application priorities, 3024 bytes saved
663 *   + 7, 5 application priorities, 2976 bytes saved
664 *   + 15, 13 application priorities, 2880 bytes saved
665 *   + 31, 29 application priorities, 2688 bytes saved
666 *   + 63, 61 application priorities, 2304 bytes saved
667 *   + 127, 125 application priorities, 1536 bytes saved
668 *   + 255, 253 application priorities, 0 bytes saved
669 *
670 * It is specified in terms of Classic API priority values.
671 */
672#ifndef CONFIGURE_MAXIMUM_PRIORITY
673  #define CONFIGURE_MAXIMUM_PRIORITY PRIORITY_DEFAULT_MAXIMUM
674#endif
675
676/**
677 *  @defgroup ConfigScheduler Scheduler configuration
678 *
679 *  @ingroup Configuration
680 *
681 * The scheduler configuration allows an application to select the
682 * scheduling policy to use.  The supported configurations are:
683 *
684 *  - CONFIGURE_SCHEDULER_PRIORITY - Deterministic Priority Scheduler
685 *  - CONFIGURE_SCHEDULER_PRIORITY_SMP - Deterministic Priority SMP Scheduler
686 *  - CONFIGURE_SCHEDULER_PRIORITY_AFFINITY_SMP - Deterministic
687 *    Priority SMP Affinity Scheduler
688 *  - CONFIGURE_SCHEDULER_STRONG_APA - Strong APA Scheduler
689 *  - CONFIGURE_SCHEDULER_SIMPLE - Light-weight Priority Scheduler
690 *  - CONFIGURE_SCHEDULER_SIMPLE_SMP - Simple SMP Priority Scheduler
691 *  - CONFIGURE_SCHEDULER_EDF - EDF Scheduler
692 *  - CONFIGURE_SCHEDULER_EDF_SMP - EDF SMP Scheduler
693 *  - CONFIGURE_SCHEDULER_CBS - CBS Scheduler
694 *  - CONFIGURE_SCHEDULER_USER  - user provided scheduler
695 *
696 * If no configuration is specified by the application in a uniprocessor
697 * configuration, then CONFIGURE_SCHEDULER_PRIORITY is the default.
698 *
699 * If no configuration is specified by the application in SMP
700 * configuration, then CONFIGURE_SCHEDULER_PRIORITY_SMP is the default.
701 *
702 * An application can define its own scheduling policy by defining
703 * CONFIGURE_SCHEDULER_USER and the following:
704 *
705 *    - CONFIGURE_SCHEDULER
706 *    - CONFIGURE_SCHEDULER_TABLE_ENTRIES
707 *    - CONFIGURE_SCHEDULER_USER_PER_THREAD
708 */
709
710#ifdef CONFIGURE_SCHEDULER_CONTEXT
711  #warning "CONFIGURE_SCHEDULER_CONTEXT has been renamed to CONFIGURE_SCHEDULER since RTEMS 5.1"
712  #define CONFIGURE_SCHEDULER CONFIGURE_SCHEDULER_CONTEXT
713#endif
714
715#ifdef CONFIGURE_SCHEDULER_CONTROLS
716  #warning "CONFIGURE_SCHEDULER_CONTROLS has been renamed to CONFIGURE_SCHEDULER_TABLE_ENTRIES since RTEMS 5.1"
717  #define CONFIGURE_SCHEDULER_TABLE_ENTRIES CONFIGURE_SCHEDULER_CONTROLS
718#endif
719
720#ifdef CONFIGURE_SMP_SCHEDULER_ASSIGNMENTS
721  #warning "CONFIGURE_SMP_SCHEDULER_ASSIGNMENTS has been renamed to CONFIGURE_SCHEDULER_ASSIGNMENTS since RTEMS 5.1"
722  #define CONFIGURE_SCHEDULER_ASSIGNMENTS CONFIGURE_SMP_SCHEDULER_ASSIGNMENTS
723#endif
724
725#if !defined(CONFIGURE_SCHEDULER_USER) && \
726    !defined(CONFIGURE_SCHEDULER_PRIORITY) && \
727    !defined(CONFIGURE_SCHEDULER_PRIORITY_SMP) && \
728    !defined(CONFIGURE_SCHEDULER_PRIORITY_AFFINITY_SMP) && \
729    !defined(CONFIGURE_SCHEDULER_STRONG_APA) && \
730    !defined(CONFIGURE_SCHEDULER_SIMPLE) && \
731    !defined(CONFIGURE_SCHEDULER_SIMPLE_SMP) && \
732    !defined(CONFIGURE_SCHEDULER_EDF) && \
733    !defined(CONFIGURE_SCHEDULER_EDF_SMP) && \
734    !defined(CONFIGURE_SCHEDULER_CBS)
735  #if defined(RTEMS_SMP) && _CONFIGURE_MAXIMUM_PROCESSORS > 1
736    /**
737     * If no scheduler is specified in an SMP configuration, the
738     * EDF scheduler is default.
739     */
740    #define CONFIGURE_SCHEDULER_EDF_SMP
741  #else
742    /**
743     * If no scheduler is specified in a uniprocessor configuration, the
744     * priority scheduler is default.
745     */
746    #define CONFIGURE_SCHEDULER_PRIORITY
747  #endif
748#endif
749
750#include <rtems/scheduler.h>
751
752/*
753 * If the Priority Scheduler is selected, then configure for it.
754 */
755#if defined(CONFIGURE_SCHEDULER_PRIORITY)
756  #if !defined(CONFIGURE_SCHEDULER_NAME)
757    /** Configure the name of the scheduler instance */
758    #define CONFIGURE_SCHEDULER_NAME rtems_build_name('U', 'P', 'D', ' ')
759  #endif
760
761  #if !defined(CONFIGURE_SCHEDULER_TABLE_ENTRIES)
762    /** Configure the context needed by the scheduler instance */
763    #define CONFIGURE_SCHEDULER \
764      RTEMS_SCHEDULER_PRIORITY( \
765        dflt, \
766        CONFIGURE_MAXIMUM_PRIORITY + 1 \
767      )
768
769    /** Configure the controls for this scheduler instance */
770    #define CONFIGURE_SCHEDULER_TABLE_ENTRIES \
771      RTEMS_SCHEDULER_TABLE_PRIORITY(dflt, CONFIGURE_SCHEDULER_NAME)
772  #endif
773#endif
774
775/*
776 * If the Deterministic Priority SMP Scheduler is selected, then configure for
777 * it.
778 */
779#if defined(CONFIGURE_SCHEDULER_PRIORITY_SMP)
780  #if !defined(CONFIGURE_SCHEDULER_NAME)
781    /** Configure the name of the scheduler instance */
782    #define CONFIGURE_SCHEDULER_NAME rtems_build_name('M', 'P', 'D', ' ')
783  #endif
784
785  #if !defined(CONFIGURE_SCHEDULER_TABLE_ENTRIES)
786    /** Configure the context needed by the scheduler instance */
787    #define CONFIGURE_SCHEDULER \
788      RTEMS_SCHEDULER_PRIORITY_SMP( \
789        dflt, \
790        CONFIGURE_MAXIMUM_PRIORITY + 1 \
791      )
792
793    /** Configure the controls for this scheduler instance */
794    #define CONFIGURE_SCHEDULER_TABLE_ENTRIES \
795      RTEMS_SCHEDULER_TABLE_PRIORITY_SMP(dflt, CONFIGURE_SCHEDULER_NAME)
796  #endif
797#endif
798
799/*
800 * If the Deterministic Priority Affinity SMP Scheduler is selected, then configure for
801 * it.
802 */
803#if defined(CONFIGURE_SCHEDULER_PRIORITY_AFFINITY_SMP)
804  #if !defined(CONFIGURE_SCHEDULER_NAME)
805    /** Configure the name of the scheduler instance */
806    #define CONFIGURE_SCHEDULER_NAME rtems_build_name('M', 'P', 'A', ' ')
807  #endif
808
809  #if !defined(CONFIGURE_SCHEDULER_TABLE_ENTRIES)
810    /** Configure the context needed by the scheduler instance */
811    #define CONFIGURE_SCHEDULER \
812      RTEMS_SCHEDULER_PRIORITY_AFFINITY_SMP( \
813        dflt, \
814        CONFIGURE_MAXIMUM_PRIORITY + 1 \
815      )
816
817    /** Configure the controls for this scheduler instance */
818    #define CONFIGURE_SCHEDULER_TABLE_ENTRIES \
819      RTEMS_SCHEDULER_TABLE_PRIORITY_AFFINITY_SMP( \
820        dflt, \
821        CONFIGURE_SCHEDULER_NAME \
822      )
823  #endif
824#endif
825
826/*
827 * If the Strong APA Scheduler is selected, then configure for
828 * it.
829 */
830#if defined(CONFIGURE_SCHEDULER_STRONG_APA)
831  #if !defined(CONFIGURE_SCHEDULER_NAME)
832    /** Configure the name of the scheduler instance */
833    #define CONFIGURE_SCHEDULER_NAME rtems_build_name('M', 'A', 'P', 'A')
834  #endif
835
836  #if !defined(CONFIGURE_SCHEDULER_TABLE_ENTRIES)
837    /** Configure the context needed by the scheduler instance */
838    #define CONFIGURE_SCHEDULER \
839      RTEMS_SCHEDULER_STRONG_APA( \
840        dflt, \
841        CONFIGURE_MAXIMUM_PRIORITY + 1 \
842      )
843
844    /** Configure the controls for this scheduler instance */
845    #define CONFIGURE_SCHEDULER_TABLE_ENTRIES \
846      RTEMS_SCHEDULER_TABLE_STRONG_APA(dflt, CONFIGURE_SCHEDULER_NAME)
847  #endif
848#endif
849
850/*
851 * If the Simple Priority Scheduler is selected, then configure for it.
852 */
853#if defined(CONFIGURE_SCHEDULER_SIMPLE)
854  #if !defined(CONFIGURE_SCHEDULER_NAME)
855    /** Configure the name of the scheduler instance */
856    #define CONFIGURE_SCHEDULER_NAME rtems_build_name('U', 'P', 'S', ' ')
857  #endif
858
859  #if !defined(CONFIGURE_SCHEDULER_TABLE_ENTRIES)
860    /** Configure the context needed by the scheduler instance */
861    #define CONFIGURE_SCHEDULER RTEMS_SCHEDULER_SIMPLE(dflt)
862
863    /** Configure the controls for this scheduler instance */
864    #define CONFIGURE_SCHEDULER_TABLE_ENTRIES \
865      RTEMS_SCHEDULER_TABLE_SIMPLE(dflt, CONFIGURE_SCHEDULER_NAME)
866  #endif
867#endif
868
869/*
870 * If the Simple SMP Priority Scheduler is selected, then configure for it.
871 */
872#if defined(CONFIGURE_SCHEDULER_SIMPLE_SMP)
873  #if !defined(CONFIGURE_SCHEDULER_NAME)
874    /** Configure the name of the scheduler instance */
875    #define CONFIGURE_SCHEDULER_NAME rtems_build_name('M', 'P', 'S', ' ')
876  #endif
877
878  #if !defined(CONFIGURE_SCHEDULER_TABLE_ENTRIES)
879    /** Configure the context needed by the scheduler instance */
880    #define CONFIGURE_SCHEDULER \
881      RTEMS_SCHEDULER_SIMPLE_SMP(dflt)
882
883    /** Configure the controls for this scheduler instance */
884    #define CONFIGURE_SCHEDULER_TABLE_ENTRIES \
885      RTEMS_SCHEDULER_TABLE_SIMPLE_SMP(dflt, CONFIGURE_SCHEDULER_NAME)
886  #endif
887#endif
888
889/*
890 * If the EDF Scheduler is selected, then configure for it.
891 */
892#if defined(CONFIGURE_SCHEDULER_EDF)
893  #if !defined(CONFIGURE_SCHEDULER_NAME)
894    /** Configure the name of the scheduler instance */
895    #define CONFIGURE_SCHEDULER_NAME rtems_build_name('U', 'E', 'D', 'F')
896  #endif
897
898  #if !defined(CONFIGURE_SCHEDULER_TABLE_ENTRIES)
899    /** Configure the context needed by the scheduler instance */
900    #define CONFIGURE_SCHEDULER RTEMS_SCHEDULER_EDF(dflt)
901
902    /** Configure the controls for this scheduler instance */
903    #define CONFIGURE_SCHEDULER_TABLE_ENTRIES \
904      RTEMS_SCHEDULER_TABLE_EDF(dflt, CONFIGURE_SCHEDULER_NAME)
905  #endif
906#endif
907
908/*
909 * If the EDF SMP Scheduler is selected, then configure for it.
910 */
911#if defined(CONFIGURE_SCHEDULER_EDF_SMP)
912  #if !defined(CONFIGURE_SCHEDULER_NAME)
913    /** Configure the name of the scheduler instance */
914    #define CONFIGURE_SCHEDULER_NAME rtems_build_name('M', 'E', 'D', 'F')
915  #endif
916
917  #if !defined(CONFIGURE_SCHEDULER_TABLE_ENTRIES)
918    /** Configure the context needed by the scheduler instance */
919    #define CONFIGURE_SCHEDULER RTEMS_SCHEDULER_EDF_SMP(dflt)
920
921    /** Configure the controls for this scheduler instance */
922    #define CONFIGURE_SCHEDULER_TABLE_ENTRIES \
923      RTEMS_SCHEDULER_TABLE_EDF_SMP(dflt, CONFIGURE_SCHEDULER_NAME)
924  #endif
925#endif
926
927/*
928 * If the CBS Scheduler is selected, then configure for it.
929 */
930#if defined(CONFIGURE_SCHEDULER_CBS)
931  #if !defined(CONFIGURE_SCHEDULER_NAME)
932    /** Configure the name of the scheduler instance */
933    #define CONFIGURE_SCHEDULER_NAME rtems_build_name('U', 'C', 'B', 'S')
934  #endif
935
936  #if !defined(CONFIGURE_SCHEDULER_TABLE_ENTRIES)
937    /** Configure the context needed by the scheduler instance */
938    #define CONFIGURE_SCHEDULER RTEMS_SCHEDULER_CBS(dflt)
939
940    /** Configure the controls for this scheduler instance */
941    #define CONFIGURE_SCHEDULER_TABLE_ENTRIES \
942      RTEMS_SCHEDULER_TABLE_CBS(dflt, CONFIGURE_SCHEDULER_NAME)
943  #endif
944
945  #ifndef CONFIGURE_CBS_MAXIMUM_SERVERS
946    #define CONFIGURE_CBS_MAXIMUM_SERVERS CONFIGURE_MAXIMUM_TASKS
947  #endif
948
949  #ifdef CONFIGURE_INIT
950    const uint32_t _Scheduler_CBS_Maximum_servers =
951      CONFIGURE_CBS_MAXIMUM_SERVERS;
952
953    Scheduler_CBS_Server
954      _Scheduler_CBS_Server_list[ CONFIGURE_CBS_MAXIMUM_SERVERS ];
955  #endif
956#endif
957
958/*
959 * Set up the scheduler entry points table.  The scheduling code uses
960 * this code to know which scheduler is configured by the user.
961 */
962#ifdef CONFIGURE_INIT
963  #if defined(CONFIGURE_SCHEDULER)
964    CONFIGURE_SCHEDULER;
965  #endif
966
967  const Scheduler_Control _Scheduler_Table[] = {
968    CONFIGURE_SCHEDULER_TABLE_ENTRIES
969  };
970
971  #define _CONFIGURE_SCHEDULER_COUNT RTEMS_ARRAY_SIZE( _Scheduler_Table )
972
973  #if defined(RTEMS_SMP)
974    const size_t _Scheduler_Count = _CONFIGURE_SCHEDULER_COUNT;
975
976    const Scheduler_Assignment _Scheduler_Initial_assignments[] = {
977      #if defined(CONFIGURE_SCHEDULER_ASSIGNMENTS)
978        CONFIGURE_SCHEDULER_ASSIGNMENTS
979      #else
980        #define _CONFIGURE_SCHEDULER_ASSIGN \
981          RTEMS_SCHEDULER_ASSIGN( \
982            0, \
983            RTEMS_SCHEDULER_ASSIGN_PROCESSOR_OPTIONAL \
984          )
985        _CONFIGURE_SCHEDULER_ASSIGN
986        #if _CONFIGURE_MAXIMUM_PROCESSORS >= 2
987          , _CONFIGURE_SCHEDULER_ASSIGN
988        #endif
989        #if _CONFIGURE_MAXIMUM_PROCESSORS >= 3
990          , _CONFIGURE_SCHEDULER_ASSIGN
991        #endif
992        #if _CONFIGURE_MAXIMUM_PROCESSORS >= 4
993          , _CONFIGURE_SCHEDULER_ASSIGN
994        #endif
995        #if _CONFIGURE_MAXIMUM_PROCESSORS >= 5
996          , _CONFIGURE_SCHEDULER_ASSIGN
997        #endif
998        #if _CONFIGURE_MAXIMUM_PROCESSORS >= 6
999          , _CONFIGURE_SCHEDULER_ASSIGN
1000        #endif
1001        #if _CONFIGURE_MAXIMUM_PROCESSORS >= 7
1002          , _CONFIGURE_SCHEDULER_ASSIGN
1003        #endif
1004        #if _CONFIGURE_MAXIMUM_PROCESSORS >= 8
1005          , _CONFIGURE_SCHEDULER_ASSIGN
1006        #endif
1007        #if _CONFIGURE_MAXIMUM_PROCESSORS >= 9
1008          , _CONFIGURE_SCHEDULER_ASSIGN
1009        #endif
1010        #if _CONFIGURE_MAXIMUM_PROCESSORS >= 10
1011          , _CONFIGURE_SCHEDULER_ASSIGN
1012        #endif
1013        #if _CONFIGURE_MAXIMUM_PROCESSORS >= 11
1014          , _CONFIGURE_SCHEDULER_ASSIGN
1015        #endif
1016        #if _CONFIGURE_MAXIMUM_PROCESSORS >= 12
1017          , _CONFIGURE_SCHEDULER_ASSIGN
1018        #endif
1019        #if _CONFIGURE_MAXIMUM_PROCESSORS >= 13
1020          , _CONFIGURE_SCHEDULER_ASSIGN
1021        #endif
1022        #if _CONFIGURE_MAXIMUM_PROCESSORS >= 14
1023          , _CONFIGURE_SCHEDULER_ASSIGN
1024        #endif
1025        #if _CONFIGURE_MAXIMUM_PROCESSORS >= 15
1026          , _CONFIGURE_SCHEDULER_ASSIGN
1027        #endif
1028        #if _CONFIGURE_MAXIMUM_PROCESSORS >= 16
1029          , _CONFIGURE_SCHEDULER_ASSIGN
1030        #endif
1031        #if _CONFIGURE_MAXIMUM_PROCESSORS >= 17
1032          , _CONFIGURE_SCHEDULER_ASSIGN
1033        #endif
1034        #if _CONFIGURE_MAXIMUM_PROCESSORS >= 18
1035          , _CONFIGURE_SCHEDULER_ASSIGN
1036        #endif
1037        #if _CONFIGURE_MAXIMUM_PROCESSORS >= 19
1038          , _CONFIGURE_SCHEDULER_ASSIGN
1039        #endif
1040        #if _CONFIGURE_MAXIMUM_PROCESSORS >= 20
1041          , _CONFIGURE_SCHEDULER_ASSIGN
1042        #endif
1043        #if _CONFIGURE_MAXIMUM_PROCESSORS >= 21
1044          , _CONFIGURE_SCHEDULER_ASSIGN
1045        #endif
1046        #if _CONFIGURE_MAXIMUM_PROCESSORS >= 22
1047          , _CONFIGURE_SCHEDULER_ASSIGN
1048        #endif
1049        #if _CONFIGURE_MAXIMUM_PROCESSORS >= 23
1050          , _CONFIGURE_SCHEDULER_ASSIGN
1051        #endif
1052        #if _CONFIGURE_MAXIMUM_PROCESSORS >= 24
1053          , _CONFIGURE_SCHEDULER_ASSIGN
1054        #endif
1055        #if _CONFIGURE_MAXIMUM_PROCESSORS >= 25
1056          , _CONFIGURE_SCHEDULER_ASSIGN
1057        #endif
1058        #if _CONFIGURE_MAXIMUM_PROCESSORS >= 26
1059          , _CONFIGURE_SCHEDULER_ASSIGN
1060        #endif
1061        #if _CONFIGURE_MAXIMUM_PROCESSORS >= 27
1062          , _CONFIGURE_SCHEDULER_ASSIGN
1063        #endif
1064        #if _CONFIGURE_MAXIMUM_PROCESSORS >= 28
1065          , _CONFIGURE_SCHEDULER_ASSIGN
1066        #endif
1067        #if _CONFIGURE_MAXIMUM_PROCESSORS >= 29
1068          , _CONFIGURE_SCHEDULER_ASSIGN
1069        #endif
1070        #if _CONFIGURE_MAXIMUM_PROCESSORS >= 30
1071          , _CONFIGURE_SCHEDULER_ASSIGN
1072        #endif
1073        #if _CONFIGURE_MAXIMUM_PROCESSORS >= 31
1074          , _CONFIGURE_SCHEDULER_ASSIGN
1075        #endif
1076        #if _CONFIGURE_MAXIMUM_PROCESSORS >= 32
1077          , _CONFIGURE_SCHEDULER_ASSIGN
1078        #endif
1079        #undef _CONFIGURE_SCHEDULER_ASSIGN
1080      #endif
1081    };
1082
1083    RTEMS_STATIC_ASSERT(
1084      _CONFIGURE_MAXIMUM_PROCESSORS
1085        == RTEMS_ARRAY_SIZE( _Scheduler_Initial_assignments ),
1086      _Scheduler_Initial_assignments
1087    );
1088  #endif
1089#endif
1090/**@}*/ /* end of Scheduler Configuration */
1091
1092/**
1093 * @defgroup ConfigurationIdle IDLE Thread Configuration
1094 *
1095 * @addtogroup Configuration
1096 *
1097 * This module contains configuration parameters related to the
1098 * set of IDLE threads. On a uniprocessor system, there is one
1099 * IDLE thread. On an SMP system, there is one for each core.
1100 */
1101
1102/*
1103 *  If you said the IDLE task was going to do application initialization
1104 *  and didn't override the IDLE body, then something is amiss.
1105 */
1106#if (defined(CONFIGURE_IDLE_TASK_INITIALIZES_APPLICATION) && \
1107     !defined(CONFIGURE_IDLE_TASK_BODY))
1108  #error "CONFIGURE_ERROR: You did not override the IDLE task body."
1109#endif
1110
1111/**
1112 * @brief Idle task body configuration.
1113 *
1114 * There is a default IDLE thread body provided by RTEMS which
1115 * has the possibility of being CPU specific.  There may be a
1116 * BSP specific override of the RTEMS default body and in turn,
1117 * the application may override and provide its own.
1118 */
1119#ifndef CONFIGURE_IDLE_TASK_BODY
1120  #if defined(BSP_IDLE_TASK_BODY)
1121    #define CONFIGURE_IDLE_TASK_BODY BSP_IDLE_TASK_BODY
1122  #else
1123    #define CONFIGURE_IDLE_TASK_BODY _CPU_Thread_Idle_body
1124  #endif
1125#endif
1126/**@}*/ /* end of IDLE thread configuration */
1127
1128/**
1129 * @defgroup ConfigurationStackSize Configuration Thread Stack Size
1130 *
1131 * @addtogroup Configuration
1132 *
1133 * This module contains parameters related to thread and interrupt stacks.
1134 */
1135
1136/**
1137 * By default, use the minimum stack size requested by this port.
1138 */
1139#ifndef CONFIGURE_MINIMUM_TASK_STACK_SIZE
1140  #define CONFIGURE_MINIMUM_TASK_STACK_SIZE CPU_STACK_MINIMUM_SIZE
1141#endif
1142
1143/**
1144 * This specifies the default POSIX thread stack size. By default, it is
1145 * twice that recommended for the port.
1146 */
1147#ifndef CONFIGURE_MINIMUM_POSIX_THREAD_STACK_SIZE
1148#define CONFIGURE_MINIMUM_POSIX_THREAD_STACK_SIZE \
1149  (2 * CONFIGURE_MINIMUM_TASK_STACK_SIZE)
1150#endif
1151
1152/**
1153 * @brief Idle task stack size configuration.
1154 *
1155 * By default, the IDLE task will have a stack of minimum size.
1156 * The BSP or application may override this value.
1157 */
1158#ifndef CONFIGURE_IDLE_TASK_STACK_SIZE
1159  #ifdef BSP_IDLE_TASK_STACK_SIZE
1160    #define CONFIGURE_IDLE_TASK_STACK_SIZE BSP_IDLE_TASK_STACK_SIZE
1161  #else
1162    #define CONFIGURE_IDLE_TASK_STACK_SIZE CONFIGURE_MINIMUM_TASK_STACK_SIZE
1163  #endif
1164#endif
1165#if CONFIGURE_IDLE_TASK_STACK_SIZE < CONFIGURE_MINIMUM_TASK_STACK_SIZE
1166  #error "CONFIGURE_IDLE_TASK_STACK_SIZE less than CONFIGURE_MINIMUM_TASK_STACK_SIZE"
1167#endif
1168
1169/*
1170 * Interrupt stack configuration.
1171 *
1172 * By default, the interrupt stack will be of minimum size.
1173 * The BSP or application may override this value.
1174 */
1175
1176#ifndef CONFIGURE_INTERRUPT_STACK_SIZE
1177  #ifdef BSP_INTERRUPT_STACK_SIZE
1178    #define CONFIGURE_INTERRUPT_STACK_SIZE BSP_INTERRUPT_STACK_SIZE
1179  #else
1180    #define CONFIGURE_INTERRUPT_STACK_SIZE CPU_STACK_MINIMUM_SIZE
1181  #endif
1182#endif
1183
1184#if CONFIGURE_INTERRUPT_STACK_SIZE % CPU_INTERRUPT_STACK_ALIGNMENT != 0
1185  #error "CONFIGURE_INTERRUPT_STACK_SIZE fails to meet the CPU port interrupt stack alignment"
1186#endif
1187
1188#ifdef CONFIGURE_INIT
1189  RTEMS_DEFINE_GLOBAL_SYMBOL(
1190    _ISR_Stack_size,
1191    CONFIGURE_INTERRUPT_STACK_SIZE
1192  );
1193
1194  char _ISR_Stack_area_begin[
1195    _CONFIGURE_MAXIMUM_PROCESSORS * CONFIGURE_INTERRUPT_STACK_SIZE
1196  ] RTEMS_ALIGNED( CPU_INTERRUPT_STACK_ALIGNMENT )
1197  RTEMS_SECTION( ".rtemsstack.interrupt.begin" );
1198
1199  RTEMS_DEFINE_GLOBAL_SYMBOL_IN_SECTION(
1200    _ISR_Stack_area_end,
1201    ".rtemsstack.interrupt.end"
1202  );
1203#endif
1204
1205/**
1206 * Configure the very much optional task stack allocator initialization
1207 */
1208#ifndef CONFIGURE_TASK_STACK_ALLOCATOR_INIT
1209  #define CONFIGURE_TASK_STACK_ALLOCATOR_INIT NULL
1210#endif
1211
1212/*
1213 *  Configure the very much optional task stack allocator and deallocator.
1214 */
1215#if !defined(CONFIGURE_TASK_STACK_ALLOCATOR) \
1216  && !defined(CONFIGURE_TASK_STACK_DEALLOCATOR)
1217  /**
1218   * This specifies the task stack allocator method.
1219   */
1220  #define CONFIGURE_TASK_STACK_ALLOCATOR _Workspace_Allocate
1221  /**
1222   * This specifies the task stack deallocator method.
1223   */
1224  #define CONFIGURE_TASK_STACK_DEALLOCATOR _Workspace_Free
1225#elif (defined(CONFIGURE_TASK_STACK_ALLOCATOR) \
1226  && !defined(CONFIGURE_TASK_STACK_DEALLOCATOR)) \
1227    || (!defined(CONFIGURE_TASK_STACK_ALLOCATOR) \
1228      && defined(CONFIGURE_TASK_STACK_DEALLOCATOR))
1229  #error "CONFIGURE_TASK_STACK_ALLOCATOR and CONFIGURE_TASK_STACK_DEALLOCATOR must be both defined or both undefined"
1230#endif
1231/**@}*/ /* end of thread/interrupt stack configuration */
1232
1233/**
1234 * @addtogroup Configuration
1235 */
1236/**@{*/
1237
1238/**
1239 * Should the RTEMS Workspace and C Program Heap be cleared automatically
1240 * at system start up?
1241 */
1242#ifndef CONFIGURE_ZERO_WORKSPACE_AUTOMATICALLY
1243  #ifdef BSP_ZERO_WORKSPACE_AUTOMATICALLY
1244    #define CONFIGURE_ZERO_WORKSPACE_AUTOMATICALLY \
1245            BSP_ZERO_WORKSPACE_AUTOMATICALLY
1246  #else
1247    #define CONFIGURE_ZERO_WORKSPACE_AUTOMATICALLY FALSE
1248  #endif
1249#endif
1250/**@}*/ /* end of add to group Configuration */
1251
1252/**
1253 * @defgroup ConfigurationMalloc RTEMS Malloc configuration
1254 *
1255 * This module contains parameters related to configuration of the RTEMS
1256 * Malloc implementation.
1257 */
1258/**@{*/
1259#include <rtems/malloc.h>
1260
1261#ifdef CONFIGURE_INIT
1262  /**
1263   * This configures the sbrk() support for the malloc family.
1264   * By default it is assumed that the BSP provides all available
1265   * RAM to the malloc family implementation so sbrk()'ing to get
1266   * more memory would always fail anyway.
1267   */
1268  const rtems_heap_extend_handler rtems_malloc_extend_handler =
1269    #ifdef CONFIGURE_MALLOC_BSP_SUPPORTS_SBRK
1270      rtems_heap_extend_via_sbrk;
1271    #else
1272      rtems_heap_null_extend;
1273    #endif
1274#endif
1275
1276#ifdef CONFIGURE_INIT
1277  /**
1278   * This configures the malloc family plugin which dirties memory
1279   * allocated.  This is helpful for finding unitialized data structure
1280   * problems.
1281   */
1282  rtems_malloc_dirtier_t rtems_malloc_dirty_helper =
1283    #if defined(CONFIGURE_MALLOC_DIRTY)
1284      rtems_malloc_dirty_memory;
1285    #else
1286      NULL;
1287    #endif
1288#endif
1289/**@}*/  /* end of Malloc Configuration */
1290
1291/**
1292 * @defgroup ConfigurationHelpers Configuration Helpers
1293 *
1294 * @ingroup Configuration
1295 *
1296 * This module contains items which are used internally to ease
1297 * the configuration calculations.
1298 */
1299/**@{*/
1300
1301/**
1302 * Zero of one returns 0 if the parameter is 0 else 1 is returned.
1303 */
1304#define _Configure_Zero_or_One(_number) ((_number) != 0 ? 1 : 0)
1305
1306/**
1307 * General helper to align up a value.
1308 */
1309#define _Configure_Align_up(_val, _align) \
1310  (((_val) + (_align) - 1) - ((_val) + (_align) - 1) % (_align))
1311
1312#define _CONFIGURE_HEAP_MIN_BLOCK_SIZE \
1313  _Configure_Align_up(sizeof(Heap_Block), CPU_HEAP_ALIGNMENT)
1314
1315/**
1316 * This is a helper macro used in calculations in this file.  It is used
1317 * to noted when an element is allocated from the RTEMS Workspace and adds
1318 * a factor to account for heap overhead plus an alignment factor that
1319 * may be applied.
1320 */
1321#define _Configure_From_workspace(_size) \
1322  (ssize_t) (_Configure_Zero_or_One(_size) * \
1323    _Configure_Align_up(_size + HEAP_BLOCK_HEADER_SIZE, \
1324      _CONFIGURE_HEAP_MIN_BLOCK_SIZE))
1325
1326/**
1327 * This is a helper macro used in stack space calculations in this file.  It
1328 * may be provided by the application in case a special task stack allocator
1329 * is used.  The default is allocation from the RTEMS Workspace.
1330 */
1331#ifdef CONFIGURE_TASK_STACK_FROM_ALLOCATOR
1332  #define _Configure_From_stackspace(_stack_size) \
1333    CONFIGURE_TASK_STACK_FROM_ALLOCATOR(_stack_size)
1334#else
1335  #define _Configure_From_stackspace(_stack_size) \
1336    _Configure_From_workspace(_stack_size)
1337#endif
1338
1339/**
1340 * Do not use the unlimited bit as part of the multiplication
1341 * for memory usage.
1342 */
1343#define _Configure_Max_Objects(_max) \
1344  (_Configure_Zero_or_One(_max) * rtems_resource_maximum_per_allocation(_max))
1345/**@}*/
1346
1347/**
1348 * @defgroup ConfigurationInitTasksTable Initialization Tasks Configuration
1349 *
1350 * @addtogroup Configuration
1351 *
1352 * This group contains the elements needed to define the Classic API
1353 * Initialization Tasks Table.
1354 *
1355 * Default User Initialization Task Table.  This table guarantees that
1356 * one user initialization table is defined.
1357 *
1358 *  WHEN CONFIGURE_HAS_OWN_INIT_TASK_TABLE is defined, the user is
1359 *  responsible for defining their own table information and setting the
1360 *  appropriate variables.
1361 */
1362#if defined(CONFIGURE_RTEMS_INIT_TASKS_TABLE) && \
1363    !defined(CONFIGURE_HAS_OWN_INIT_TASK_TABLE)
1364
1365/**
1366 * When using the default Classic API Initialization Tasks Table, this is
1367 * used to specify the name of the single Classic API task.
1368 */
1369#ifndef CONFIGURE_INIT_TASK_NAME
1370  #define CONFIGURE_INIT_TASK_NAME          rtems_build_name('U', 'I', '1', ' ')
1371#endif
1372
1373/**
1374 * When using the default Classic API Initialization Tasks Table, this is
1375 * used to specify the stack size of the single Classic API task.
1376 */
1377#ifndef CONFIGURE_INIT_TASK_STACK_SIZE
1378  #define CONFIGURE_INIT_TASK_STACK_SIZE    CONFIGURE_MINIMUM_TASK_STACK_SIZE
1379#endif
1380
1381/**
1382 * When using the default Classic API Initialization Tasks Table, this is
1383 * used to specify the priority of the single Classic API task.
1384 */
1385#ifndef CONFIGURE_INIT_TASK_PRIORITY
1386  #define CONFIGURE_INIT_TASK_PRIORITY      1
1387#endif
1388
1389/**
1390 * When using the default Classic API Initialization Tasks Table, this is
1391 * used to specify the attributes size of the single Classic API task.
1392 */
1393#ifndef CONFIGURE_INIT_TASK_ATTRIBUTES
1394  #define CONFIGURE_INIT_TASK_ATTRIBUTES    RTEMS_DEFAULT_ATTRIBUTES
1395#endif
1396
1397/**
1398 * When using the default Classic API Initialization Tasks Table, this is
1399 * used to specify the entry point of the single Classic API task.
1400 */
1401#ifndef CONFIGURE_INIT_TASK_ENTRY_POINT
1402  #ifdef __cplusplus
1403  extern "C" {
1404  #endif
1405    rtems_task Init (rtems_task_argument );
1406  #ifdef __cplusplus
1407  }
1408  #endif
1409  #define CONFIGURE_INIT_TASK_ENTRY_POINT   Init
1410  extern const char* bsp_boot_cmdline;
1411  #define CONFIGURE_INIT_TASK_ARGUMENTS     ((rtems_task_argument) &bsp_boot_cmdline)
1412#endif
1413
1414/**
1415 * When using the default Classic API Initialization Tasks Table, this is
1416 * used to specify the initial execution mode of the single Classic API task.
1417 */
1418#ifndef CONFIGURE_INIT_TASK_INITIAL_MODES
1419  #ifdef _CONFIGURE_SMP_APPLICATION
1420    #define CONFIGURE_INIT_TASK_INITIAL_MODES RTEMS_DEFAULT_MODES
1421  #else
1422    #define CONFIGURE_INIT_TASK_INITIAL_MODES RTEMS_NO_PREEMPT
1423  #endif
1424#endif
1425
1426/**
1427 * When using the default Classic API Initialization Tasks Table, this is
1428 * used to specify the initial argument to the single Classic API task.
1429 */
1430#ifndef CONFIGURE_INIT_TASK_ARGUMENTS
1431  #define CONFIGURE_INIT_TASK_ARGUMENTS     0
1432#endif
1433
1434#ifdef CONFIGURE_INIT
1435  rtems_initialization_tasks_table Initialization_tasks[] = {
1436    { CONFIGURE_INIT_TASK_NAME,
1437      CONFIGURE_INIT_TASK_STACK_SIZE,
1438      CONFIGURE_INIT_TASK_PRIORITY,
1439      CONFIGURE_INIT_TASK_ATTRIBUTES,
1440      CONFIGURE_INIT_TASK_ENTRY_POINT,
1441      CONFIGURE_INIT_TASK_INITIAL_MODES,
1442      CONFIGURE_INIT_TASK_ARGUMENTS
1443    }
1444  };
1445#endif
1446
1447/**
1448 * This is the name of the Initialization Tasks Table generated.
1449 */
1450#define CONFIGURE_INIT_TASK_TABLE Initialization_tasks
1451
1452/*
1453 * This is the size of the Initialization Tasks Table generated.
1454 */
1455#define CONFIGURE_INIT_TASK_TABLE_SIZE \
1456  RTEMS_ARRAY_SIZE(CONFIGURE_INIT_TASK_TABLE)
1457
1458#else     /* CONFIGURE_RTEMS_INIT_TASKS_TABLE */
1459#ifdef CONFIGURE_HAS_OWN_INIT_TASK_TABLE
1460
1461/*
1462 * The user application is responsible for defining everything
1463 * when CONFIGURE_HAS_OWN_INIT_TABLE is defined.
1464 */
1465#else     /* not using standard or providing own Init Task Table */
1466
1467/*
1468 * This is the name of the Initialization Task when none is configured.
1469 */
1470#define CONFIGURE_INIT_TASK_TABLE      NULL
1471
1472/*
1473 * This is the size of the Initialization Task when none is configured.
1474 */
1475#define CONFIGURE_INIT_TASK_TABLE_SIZE 0
1476
1477/*
1478 * This is the stack size of the Initialization Task when none is configured.
1479 */
1480#define CONFIGURE_INIT_TASK_STACK_SIZE 0
1481
1482#endif    /* CONFIGURE_HAS_OWN_INIT_TASK_TABLE */
1483
1484#endif
1485/**@}*/  /* end of Classic API Initialization Tasks Table */
1486
1487/**
1488 * @defgroup ConfigurationDriverTable Device Driver Table Configuration
1489 *
1490 * @addtogroup Configuration
1491 *
1492 * This group contains parameters related to generating a Device Driver
1493 * Table.
1494 *
1495 * Default Device Driver Table.  Each driver needed by the test is explicitly
1496 * chosen by the application.  There is always a null driver entry.
1497 */
1498/**@{*/
1499
1500/**
1501 * This is an empty device driver slot.
1502 */
1503#define NULL_DRIVER_TABLE_ENTRY \
1504 { NULL, NULL, NULL, NULL, NULL, NULL }
1505
1506#if (defined(CONFIGURE_APPLICATION_NEEDS_CONSOLE_DRIVER) && \
1507    defined(CONFIGURE_APPLICATION_NEEDS_SIMPLE_CONSOLE_DRIVER)) || \
1508  (defined(CONFIGURE_APPLICATION_NEEDS_CONSOLE_DRIVER) && \
1509    defined(CONFIGURE_APPLICATION_NEEDS_SIMPLE_TASK_CONSOLE_DRIVER)) || \
1510  (defined(CONFIGURE_APPLICATION_NEEDS_SIMPLE_CONSOLE_DRIVER) && \
1511    defined(CONFIGURE_APPLICATION_NEEDS_SIMPLE_TASK_CONSOLE_DRIVER))
1512#error "CONFIGURE_APPLICATION_NEEDS_CONSOLE_DRIVER, CONFIGURE_APPLICATION_NEEDS_SIMPLE_CONSOLE_DRIVER, and CONFIGURE_APPLICATION_NEEDS_SIMPLE_TASK_CONSOLE_DRIVER are mutually exclusive"
1513#endif
1514
1515#ifdef CONFIGURE_APPLICATION_NEEDS_CONSOLE_DRIVER
1516  #include <rtems/console.h>
1517#endif
1518
1519#ifdef CONFIGURE_APPLICATION_NEEDS_SIMPLE_CONSOLE_DRIVER
1520  #include <rtems/console.h>
1521
1522  #ifdef CONFIGURE_INIT
1523    RTEMS_SYSINIT_ITEM(
1524      _Console_simple_Initialize,
1525      RTEMS_SYSINIT_DEVICE_DRIVERS,
1526      RTEMS_SYSINIT_ORDER_SECOND
1527    );
1528  #endif
1529#endif
1530
1531#ifdef CONFIGURE_APPLICATION_NEEDS_SIMPLE_TASK_CONSOLE_DRIVER
1532  #include <rtems/console.h>
1533
1534  #ifdef CONFIGURE_INIT
1535    RTEMS_SYSINIT_ITEM(
1536      _Console_simple_task_Initialize,
1537      RTEMS_SYSINIT_DEVICE_DRIVERS,
1538      RTEMS_SYSINIT_ORDER_SECOND
1539    );
1540  #endif
1541#endif
1542
1543#ifdef CONFIGURE_APPLICATION_NEEDS_CLOCK_DRIVER
1544  #include <rtems/clockdrv.h>
1545
1546  #ifdef CONFIGURE_INIT
1547    RTEMS_SYSINIT_ITEM(
1548      _Clock_Initialize,
1549      RTEMS_SYSINIT_DEVICE_DRIVERS,
1550      RTEMS_SYSINIT_ORDER_THIRD
1551    );
1552  #endif
1553#endif
1554
1555#ifdef CONFIGURE_APPLICATION_NEEDS_TIMER_DRIVER
1556  #include <rtems/btimer.h>
1557#endif
1558
1559#ifdef CONFIGURE_APPLICATION_NEEDS_RTC_DRIVER
1560  #include <rtems/rtc.h>
1561#endif
1562
1563#ifdef CONFIGURE_APPLICATION_NEEDS_WATCHDOG_DRIVER
1564  #include <rtems/watchdogdrv.h>
1565#endif
1566
1567#ifdef CONFIGURE_APPLICATION_NEEDS_FRAME_BUFFER_DRIVER
1568  #include <rtems/framebuffer.h>
1569#endif
1570
1571#ifdef CONFIGURE_APPLICATION_NEEDS_STUB_DRIVER
1572  #include <rtems/devnull.h>
1573#endif
1574
1575#ifdef CONFIGURE_APPLICATION_NEEDS_ZERO_DRIVER
1576  #include <rtems/devzero.h>
1577#endif
1578
1579#ifdef CONFIGURE_APPLICATION_NEEDS_IDE_DRIVER
1580  /* the ide driver needs the ATA driver */
1581  #ifndef CONFIGURE_APPLICATION_NEEDS_ATA_DRIVER
1582    #define CONFIGURE_APPLICATION_NEEDS_ATA_DRIVER
1583  #endif
1584  #include <libchip/ide_ctrl.h>
1585#endif
1586
1587#ifdef CONFIGURE_APPLICATION_NEEDS_ATA_DRIVER
1588  #include <libchip/ata.h>
1589#endif
1590
1591/**
1592 * This specifies the maximum number of device drivers that
1593 * can be installed in the system at one time.  It must account
1594 * for both the statically and dynamically installed drivers.
1595 */
1596#ifndef CONFIGURE_MAXIMUM_DRIVERS
1597  #define CONFIGURE_MAXIMUM_DRIVERS
1598#endif
1599
1600#ifdef CONFIGURE_INIT
1601  rtems_driver_address_table
1602    _IO_Driver_address_table[ CONFIGURE_MAXIMUM_DRIVERS ] = {
1603    #ifdef CONFIGURE_BSP_PREREQUISITE_DRIVERS
1604      CONFIGURE_BSP_PREREQUISITE_DRIVERS,
1605    #endif
1606    #ifdef CONFIGURE_APPLICATION_PREREQUISITE_DRIVERS
1607      CONFIGURE_APPLICATION_PREREQUISITE_DRIVERS,
1608    #endif
1609    #ifdef CONFIGURE_APPLICATION_NEEDS_CONSOLE_DRIVER
1610      CONSOLE_DRIVER_TABLE_ENTRY,
1611    #endif
1612    #ifdef CONFIGURE_APPLICATION_NEEDS_RTC_DRIVER
1613      RTC_DRIVER_TABLE_ENTRY,
1614    #endif
1615    #ifdef CONFIGURE_APPLICATION_NEEDS_WATCHDOG_DRIVER
1616      WATCHDOG_DRIVER_TABLE_ENTRY,
1617    #endif
1618    #ifdef CONFIGURE_APPLICATION_NEEDS_STUB_DRIVER
1619      DEVNULL_DRIVER_TABLE_ENTRY,
1620    #endif
1621    #ifdef CONFIGURE_APPLICATION_NEEDS_ZERO_DRIVER
1622      DEVZERO_DRIVER_TABLE_ENTRY,
1623    #endif
1624    #ifdef CONFIGURE_APPLICATION_NEEDS_IDE_DRIVER
1625      IDE_CONTROLLER_DRIVER_TABLE_ENTRY,
1626    #endif
1627    #ifdef CONFIGURE_APPLICATION_NEEDS_ATA_DRIVER
1628      ATA_DRIVER_TABLE_ENTRY,
1629    #endif
1630    #ifdef CONFIGURE_APPLICATION_NEEDS_FRAME_BUFFER_DRIVER
1631      FRAME_BUFFER_DRIVER_TABLE_ENTRY,
1632    #endif
1633    #ifdef CONFIGURE_APPLICATION_EXTRA_DRIVERS
1634      CONFIGURE_APPLICATION_EXTRA_DRIVERS,
1635    #endif
1636    #ifdef CONFIGURE_APPLICATION_NEEDS_NULL_DRIVER
1637      NULL_DRIVER_TABLE_ENTRY
1638    #elif !defined(CONFIGURE_APPLICATION_NEEDS_CONSOLE_DRIVER) && \
1639        !defined(CONFIGURE_APPLICATION_NEEDS_RTC_DRIVER) && \
1640        !defined(CONFIGURE_APPLICATION_NEEDS_STUB_DRIVER) && \
1641        !defined(CONFIGURE_APPLICATION_NEEDS_ZERO_DRIVER) && \
1642        !defined(CONFIGURE_APPLICATION_NEEDS_IDE_DRIVER) && \
1643        !defined(CONFIGURE_APPLICATION_NEEDS_ATA_DRIVER) && \
1644        !defined(CONFIGURE_APPLICATION_NEEDS_FRAME_BUFFER_DRIVER) && \
1645        !defined(CONFIGURE_APPLICATION_EXTRA_DRIVERS)
1646      NULL_DRIVER_TABLE_ENTRY
1647    #endif
1648  };
1649
1650  const size_t _IO_Number_of_drivers =
1651    RTEMS_ARRAY_SIZE( _IO_Driver_address_table );
1652#endif
1653
1654#ifdef CONFIGURE_APPLICATION_NEEDS_ATA_DRIVER
1655  /*
1656   * configure the priority of the ATA driver task
1657   */
1658  #ifndef CONFIGURE_ATA_DRIVER_TASK_PRIORITY
1659    #define CONFIGURE_ATA_DRIVER_TASK_PRIORITY ATA_DRIVER_TASK_DEFAULT_PRIORITY
1660  #endif
1661  #ifdef CONFIGURE_INIT
1662    rtems_task_priority rtems_ata_driver_task_priority
1663      = CONFIGURE_ATA_DRIVER_TASK_PRIORITY;
1664  #endif /* CONFIGURE_INIT */
1665#endif
1666/**@}*/ /* end of Device Driver Table Configuration */
1667
1668/**
1669 * @defgroup ConfigurationLibBlock Configuration of LIBBLOCK
1670 *
1671 * @addtogroup Configuration
1672 *
1673 * This module contains parameters related to the LIBBLOCK buffering
1674 * and caching subsystem. It requires tasks to swap out data to be
1675 * written to non-volatile storage.
1676 */
1677/**@{*/
1678#ifdef CONFIGURE_APPLICATION_NEEDS_LIBBLOCK
1679  #include <rtems/bdbuf.h>
1680  /*
1681   * configure the bdbuf cache parameters
1682   */
1683  #ifndef CONFIGURE_BDBUF_MAX_READ_AHEAD_BLOCKS
1684    #define CONFIGURE_BDBUF_MAX_READ_AHEAD_BLOCKS \
1685                              RTEMS_BDBUF_MAX_READ_AHEAD_BLOCKS_DEFAULT
1686  #endif
1687  #ifndef CONFIGURE_BDBUF_MAX_WRITE_BLOCKS
1688    #define CONFIGURE_BDBUF_MAX_WRITE_BLOCKS \
1689                              RTEMS_BDBUF_MAX_WRITE_BLOCKS_DEFAULT
1690  #endif
1691  #ifndef CONFIGURE_SWAPOUT_TASK_PRIORITY
1692    #define CONFIGURE_SWAPOUT_TASK_PRIORITY \
1693                              RTEMS_BDBUF_SWAPOUT_TASK_PRIORITY_DEFAULT
1694  #endif
1695  #ifndef CONFIGURE_SWAPOUT_SWAP_PERIOD
1696    #define CONFIGURE_SWAPOUT_SWAP_PERIOD \
1697                              RTEMS_BDBUF_SWAPOUT_TASK_SWAP_PERIOD_DEFAULT
1698  #endif
1699  #ifndef CONFIGURE_SWAPOUT_BLOCK_HOLD
1700    #define CONFIGURE_SWAPOUT_BLOCK_HOLD \
1701                              RTEMS_BDBUF_SWAPOUT_TASK_BLOCK_HOLD_DEFAULT
1702  #endif
1703  #ifndef CONFIGURE_SWAPOUT_WORKER_TASKS
1704    #define CONFIGURE_SWAPOUT_WORKER_TASKS \
1705                              RTEMS_BDBUF_SWAPOUT_WORKER_TASKS_DEFAULT
1706  #endif
1707  #ifndef CONFIGURE_SWAPOUT_WORKER_TASK_PRIORITY
1708    #define CONFIGURE_SWAPOUT_WORKER_TASK_PRIORITY \
1709                              RTEMS_BDBUF_SWAPOUT_WORKER_TASK_PRIORITY_DEFAULT
1710  #endif
1711  #ifndef CONFIGURE_BDBUF_TASK_STACK_SIZE
1712    #define CONFIGURE_BDBUF_TASK_STACK_SIZE \
1713                              RTEMS_BDBUF_TASK_STACK_SIZE_DEFAULT
1714  #endif
1715  #ifndef CONFIGURE_BDBUF_CACHE_MEMORY_SIZE
1716    #define CONFIGURE_BDBUF_CACHE_MEMORY_SIZE \
1717                              RTEMS_BDBUF_CACHE_MEMORY_SIZE_DEFAULT
1718  #endif
1719  #ifndef CONFIGURE_BDBUF_BUFFER_MIN_SIZE
1720    #define CONFIGURE_BDBUF_BUFFER_MIN_SIZE \
1721                              RTEMS_BDBUF_BUFFER_MIN_SIZE_DEFAULT
1722  #endif
1723  #ifndef CONFIGURE_BDBUF_BUFFER_MAX_SIZE
1724    #define CONFIGURE_BDBUF_BUFFER_MAX_SIZE \
1725                              RTEMS_BDBUF_BUFFER_MAX_SIZE_DEFAULT
1726  #endif
1727  #ifndef CONFIGURE_BDBUF_READ_AHEAD_TASK_PRIORITY
1728    #define CONFIGURE_BDBUF_READ_AHEAD_TASK_PRIORITY \
1729                              RTEMS_BDBUF_READ_AHEAD_TASK_PRIORITY_DEFAULT
1730  #endif
1731  #ifdef CONFIGURE_INIT
1732    const rtems_bdbuf_config rtems_bdbuf_configuration = {
1733      CONFIGURE_BDBUF_MAX_READ_AHEAD_BLOCKS,
1734      CONFIGURE_BDBUF_MAX_WRITE_BLOCKS,
1735      CONFIGURE_SWAPOUT_TASK_PRIORITY,
1736      CONFIGURE_SWAPOUT_SWAP_PERIOD,
1737      CONFIGURE_SWAPOUT_BLOCK_HOLD,
1738      CONFIGURE_SWAPOUT_WORKER_TASKS,
1739      CONFIGURE_SWAPOUT_WORKER_TASK_PRIORITY,
1740      CONFIGURE_BDBUF_TASK_STACK_SIZE,
1741      CONFIGURE_BDBUF_CACHE_MEMORY_SIZE,
1742      CONFIGURE_BDBUF_BUFFER_MIN_SIZE,
1743      CONFIGURE_BDBUF_BUFFER_MAX_SIZE,
1744      CONFIGURE_BDBUF_READ_AHEAD_TASK_PRIORITY
1745    };
1746  #endif
1747
1748  #define _CONFIGURE_LIBBLOCK_TASKS \
1749    (1 + CONFIGURE_SWAPOUT_WORKER_TASKS + \
1750    (CONFIGURE_BDBUF_MAX_READ_AHEAD_BLOCKS != 0))
1751
1752  #define _CONFIGURE_LIBBLOCK_TASK_EXTRA_STACKS \
1753    (_CONFIGURE_LIBBLOCK_TASKS * \
1754    (CONFIGURE_BDBUF_TASK_STACK_SIZE <= CONFIGURE_MINIMUM_TASK_STACK_SIZE ? \
1755    0 : CONFIGURE_BDBUF_TASK_STACK_SIZE - CONFIGURE_MINIMUM_TASK_STACK_SIZE))
1756
1757  #if defined(CONFIGURE_HAS_OWN_BDBUF_TABLE) || \
1758      defined(CONFIGURE_BDBUF_BUFFER_SIZE) || \
1759      defined(CONFIGURE_BDBUF_BUFFER_COUNT)
1760    #error BDBUF Cache does not use a buffer configuration table. Please remove.
1761  #endif
1762#else
1763  /** This specifies the number of libblock tasks. */
1764  #define _CONFIGURE_LIBBLOCK_TASKS 0
1765  /** This specifies the extra stack space configured for libblock tasks. */
1766  #define _CONFIGURE_LIBBLOCK_TASK_EXTRA_STACKS 0
1767  /** This specifies the number of Classic API semaphores needed by libblock. */
1768#endif /* CONFIGURE_APPLICATION_NEEDS_LIBBLOCK */
1769/**@}*/
1770
1771/**
1772 * @defgroup ConfigurationMultiprocessing Multiprocessing Configuration
1773 *
1774 * @addtogroup Configuration
1775 *
1776 * This module contains the parameters related to the Multiprocessing
1777 * configuration of RTEMS.
1778 *
1779 * In a single processor or SMP configuration, only two parameters are
1780 * needed and they are defaulted. The user should not have to specify
1781 * any parameters.
1782 */
1783/**@{*/
1784
1785/**
1786 * This defines the extra stack space required for the MPCI server thread.
1787 */
1788#ifndef CONFIGURE_EXTRA_MPCI_RECEIVE_SERVER_STACK
1789  #define CONFIGURE_EXTRA_MPCI_RECEIVE_SERVER_STACK 0
1790#endif
1791
1792#if defined(RTEMS_MULTIPROCESSING)
1793  /*
1794   *  Default Multiprocessing Configuration Table.  The defaults are
1795   *  appropriate for most of the RTEMS Multiprocessor Test Suite.  Each
1796   *  value may be overridden within each test to customize the environment.
1797   */
1798
1799  #ifdef CONFIGURE_MP_APPLICATION
1800    #ifndef CONFIGURE_MP_NODE_NUMBER
1801      #define CONFIGURE_MP_NODE_NUMBER                NODE_NUMBER
1802    #endif
1803
1804    #ifndef CONFIGURE_MP_MAXIMUM_NODES
1805      #define CONFIGURE_MP_MAXIMUM_NODES              2
1806    #endif
1807
1808    #ifndef CONFIGURE_MP_MAXIMUM_GLOBAL_OBJECTS
1809      #define CONFIGURE_MP_MAXIMUM_GLOBAL_OBJECTS     32
1810    #endif
1811
1812    #ifndef CONFIGURE_MP_MAXIMUM_PROXIES
1813      #define CONFIGURE_MP_MAXIMUM_PROXIES            32
1814    #endif
1815
1816    #ifndef CONFIGURE_MP_MPCI_TABLE_POINTER
1817      #include <mpci.h>
1818      #define CONFIGURE_MP_MPCI_TABLE_POINTER         &MPCI_table
1819    #endif
1820
1821    #ifdef CONFIGURE_INIT
1822      #if CONFIGURE_MP_NODE_NUMBER < 1
1823        #error "CONFIGURE_MP_NODE_NUMBER must be greater than or equal to one"
1824      #endif
1825
1826      #if CONFIGURE_MP_NODE_NUMBER > CONFIGURE_MP_MAXIMUM_NODES
1827        #error "CONFIGURE_MP_NODE_NUMBER must be less than or equal to CONFIGURE_MP_MAXIMUM_NODES"
1828      #endif
1829
1830      Objects_MP_Control _Objects_MP_Controls[
1831        CONFIGURE_MP_MAXIMUM_GLOBAL_OBJECTS
1832      ];
1833
1834      struct Thread_Configured_proxy_control {
1835        Thread_Proxy_control Control;
1836        Thread_queue_Configured_heads Heads;
1837      };
1838
1839      static Thread_Configured_proxy_control _Thread_MP_Configured_proxies[
1840        CONFIGURE_MP_MAXIMUM_PROXIES
1841      ];
1842
1843      Thread_Configured_proxy_control * const _Thread_MP_Proxies =
1844        &_Thread_MP_Configured_proxies[ 0 ];
1845
1846      const MPCI_Configuration _MPCI_Configuration = {
1847        CONFIGURE_MP_NODE_NUMBER,               /* local node number */
1848        CONFIGURE_MP_MAXIMUM_NODES,             /* maximum # nodes */
1849        CONFIGURE_MP_MAXIMUM_GLOBAL_OBJECTS,    /* maximum # global objects */
1850        CONFIGURE_MP_MAXIMUM_PROXIES,           /* maximum # proxies */
1851        CONFIGURE_EXTRA_MPCI_RECEIVE_SERVER_STACK, /* MPCI stack > minimum */
1852        CONFIGURE_MP_MPCI_TABLE_POINTER         /* ptr to MPCI config table */
1853      };
1854    #endif
1855
1856    #define _CONFIGURE_MPCI_RECEIVE_SERVER_COUNT 1
1857  #else
1858    #define _CONFIGURE_MPCI_RECEIVE_SERVER_COUNT 0
1859  #endif /* CONFIGURE_MP_APPLICATION */
1860#else
1861  #define _CONFIGURE_MPCI_RECEIVE_SERVER_COUNT 0
1862#endif /* RTEMS_MULTIPROCESSING */
1863/**@}*/ /* end of Multiprocessing Configuration */
1864
1865/**
1866 * This macro specifies that the user wants to use unlimited objects for any
1867 * classic or posix objects that have not already been given resource limits.
1868 */
1869#if defined(CONFIGURE_UNLIMITED_OBJECTS)
1870  #if !defined(CONFIGURE_UNIFIED_WORK_AREAS) && \
1871     !defined(CONFIGURE_EXECUTIVE_RAM_SIZE) && \
1872     !defined(CONFIGURE_MEMORY_OVERHEAD)
1873     #error "CONFIGURE_UNLIMITED_OBJECTS requires a unified work area, an executive RAM size, or a defined workspace memory overhead"
1874  #endif
1875
1876  #if !defined(CONFIGURE_UNLIMITED_ALLOCATION_SIZE)
1877  /**
1878   * This macro specifies a default allocation size for when auto-extending
1879   * unlimited objects if none was given by the user.
1880   */
1881    #define CONFIGURE_UNLIMITED_ALLOCATION_SIZE 8
1882  #endif
1883  #if !defined(CONFIGURE_MAXIMUM_TASKS)
1884    #define CONFIGURE_MAXIMUM_TASKS \
1885      rtems_resource_unlimited(CONFIGURE_UNLIMITED_ALLOCATION_SIZE)
1886  #endif
1887  #if !defined(CONFIGURE_MAXIMUM_TIMERS)
1888    #define CONFIGURE_MAXIMUM_TIMERS \
1889      rtems_resource_unlimited(CONFIGURE_UNLIMITED_ALLOCATION_SIZE)
1890  #endif
1891  #if !defined(CONFIGURE_MAXIMUM_SEMAPHORES)
1892    #define CONFIGURE_MAXIMUM_SEMAPHORES \
1893      rtems_resource_unlimited(CONFIGURE_UNLIMITED_ALLOCATION_SIZE)
1894  #endif
1895  #if !defined(CONFIGURE_MAXIMUM_MESSAGE_QUEUES)
1896    #define CONFIGURE_MAXIMUM_MESSAGE_QUEUES \
1897      rtems_resource_unlimited(CONFIGURE_UNLIMITED_ALLOCATION_SIZE)
1898  #endif
1899  #if !defined(CONFIGURE_MAXIMUM_PARTITIONS)
1900    #define CONFIGURE_MAXIMUM_PARTITIONS \
1901      rtems_resource_unlimited(CONFIGURE_UNLIMITED_ALLOCATION_SIZE)
1902  #endif
1903  #if !defined(CONFIGURE_MAXIMUM_REGIONS)
1904    #define CONFIGURE_MAXIMUM_REGIONS \
1905      rtems_resource_unlimited(CONFIGURE_UNLIMITED_ALLOCATION_SIZE)
1906  #endif
1907  #if !defined(CONFIGURE_MAXIMUM_PORTS)
1908    #define CONFIGURE_MAXIMUM_PORTS \
1909      rtems_resource_unlimited(CONFIGURE_UNLIMITED_ALLOCATION_SIZE)
1910  #endif
1911  #if !defined(CONFIGURE_MAXIMUM_PERIODS)
1912    #define CONFIGURE_MAXIMUM_PERIODS \
1913      rtems_resource_unlimited(CONFIGURE_UNLIMITED_ALLOCATION_SIZE)
1914  #endif
1915  #if !defined(CONFIGURE_MAXIMUM_BARRIERS)
1916    #define CONFIGURE_MAXIMUM_BARRIERS \
1917      rtems_resource_unlimited(CONFIGURE_UNLIMITED_ALLOCATION_SIZE)
1918  #endif
1919  #if !defined(CONFIGURE_MAXIMUM_POSIX_KEYS)
1920    #define CONFIGURE_MAXIMUM_POSIX_KEYS \
1921      rtems_resource_unlimited(CONFIGURE_UNLIMITED_ALLOCATION_SIZE)
1922  #endif
1923  #if !defined(CONFIGURE_MAXIMUM_POSIX_KEY_VALUE_PAIRS)
1924    #define CONFIGURE_MAXIMUM_POSIX_KEY_VALUE_PAIRS \
1925      rtems_resource_unlimited(CONFIGURE_UNLIMITED_ALLOCATION_SIZE)
1926  #endif
1927  #if !defined(CONFIGURE_MAXIMUM_POSIX_MESSAGE_QUEUES)
1928    #define CONFIGURE_MAXIMUM_POSIX_MESSAGE_QUEUES \
1929      rtems_resource_unlimited(CONFIGURE_UNLIMITED_ALLOCATION_SIZE)
1930  #endif
1931  #if !defined(CONFIGURE_MAXIMUM_POSIX_SEMAPHORES)
1932    #define CONFIGURE_MAXIMUM_POSIX_SEMAPHORES \
1933      rtems_resource_unlimited(CONFIGURE_UNLIMITED_ALLOCATION_SIZE)
1934  #endif
1935  #if !defined(CONFIGURE_MAXIMUM_POSIX_SHMS)
1936    #define CONFIGURE_MAXIMUM_POSIX_SHMS \
1937      rtems_resource_unlimited(CONFIGURE_UNLIMITED_ALLOCATION_SIZE)
1938  #endif
1939  #if !defined(CONFIGURE_MAXIMUM_POSIX_THREADS)
1940    #define CONFIGURE_MAXIMUM_POSIX_THREADS \
1941      rtems_resource_unlimited(CONFIGURE_UNLIMITED_ALLOCATION_SIZE)
1942  #endif
1943
1944  #ifdef RTEMS_POSIX_API
1945    #if !defined(CONFIGURE_MAXIMUM_POSIX_TIMERS)
1946      #define CONFIGURE_MAXIMUM_POSIX_TIMERS \
1947        rtems_resource_unlimited(CONFIGURE_UNLIMITED_ALLOCATION_SIZE)
1948    #endif
1949  #endif /* RTEMS_POSIX_API */
1950#endif /* CONFIGURE_UNLIMITED_OBJECTS */
1951
1952
1953/**
1954 * @defgroup ConfigurationClassicAPI Classic API Configuration
1955 *
1956 * @ingroup Configuration
1957 *
1958 * This module contains the parameters related to configuration
1959 * of the Classic API services.
1960 */
1961/**@{*/
1962
1963/** This configures the maximum number of Classic API tasks. */
1964#ifndef CONFIGURE_MAXIMUM_TASKS
1965  #define CONFIGURE_MAXIMUM_TASKS               0
1966#endif
1967
1968/*
1969 * This is calculated to account for the maximum number of Classic API
1970 * tasks used by the application and configured RTEMS capabilities.
1971 */
1972#define _CONFIGURE_TASKS \
1973  (CONFIGURE_MAXIMUM_TASKS + _CONFIGURE_LIBBLOCK_TASKS)
1974
1975#ifndef CONFIGURE_MAXIMUM_TIMERS
1976  /** This specifies the maximum number of Classic API timers. */
1977  #define CONFIGURE_MAXIMUM_TIMERS             0
1978#endif
1979
1980#ifndef CONFIGURE_MAXIMUM_SEMAPHORES
1981  /** This specifies the maximum number of Classic API semaphores. */
1982  #define CONFIGURE_MAXIMUM_SEMAPHORES                 0
1983#endif
1984
1985#ifndef CONFIGURE_MAXIMUM_MESSAGE_QUEUES
1986  /**
1987   * This configuration parameter specifies the maximum number of
1988   * Classic API Message Queues.
1989   */
1990  #define CONFIGURE_MAXIMUM_MESSAGE_QUEUES             0
1991#endif
1992
1993#ifndef CONFIGURE_MAXIMUM_PARTITIONS
1994  /**
1995   * This configuration parameter specifies the maximum number of
1996   * Classic API Partitions.
1997   */
1998  #define CONFIGURE_MAXIMUM_PARTITIONS                 0
1999#endif
2000
2001#ifndef CONFIGURE_MAXIMUM_REGIONS
2002  /**
2003   * This configuration parameter specifies the maximum number of
2004   * Classic API Regions.
2005   */
2006  #define CONFIGURE_MAXIMUM_REGIONS              0
2007#endif
2008
2009#ifndef CONFIGURE_MAXIMUM_PORTS
2010  /**
2011   * This configuration parameter specifies the maximum number of
2012   * Classic API Dual-Ported Memory Ports.
2013   */
2014  #define CONFIGURE_MAXIMUM_PORTS            0
2015#endif
2016
2017#ifndef CONFIGURE_MAXIMUM_PERIODS
2018  /**
2019   * This configuration parameter specifies the maximum number of
2020   * Classic API Rate Monotonic Periods.
2021   */
2022  #define CONFIGURE_MAXIMUM_PERIODS              0
2023#endif
2024
2025/**
2026 * This configuration parameter specifies the maximum number of
2027 * Classic API Barriers.
2028 */
2029#ifndef CONFIGURE_MAXIMUM_BARRIERS
2030  #define CONFIGURE_MAXIMUM_BARRIERS               0
2031#endif
2032
2033#ifndef CONFIGURE_MAXIMUM_USER_EXTENSIONS
2034  /**
2035   * This configuration parameter specifies the maximum number of
2036   * Classic API User Extensions.
2037   */
2038  #define CONFIGURE_MAXIMUM_USER_EXTENSIONS                 0
2039#endif
2040
2041/**@}*/ /* end of Classic API Configuration */
2042
2043/**
2044 * @defgroup ConfigurationGeneral General System Configuration
2045 *
2046 * @ingroup Configuration
2047 *
2048 * This module contains configuration parameters that are independent
2049 * of any API but impact general system configuration.
2050 */
2051/**@{*/
2052
2053/** The configures the number of microseconds per clock tick. */
2054#ifndef CONFIGURE_MICROSECONDS_PER_TICK
2055  #define CONFIGURE_MICROSECONDS_PER_TICK \
2056          RTEMS_MILLISECONDS_TO_MICROSECONDS(10)
2057#endif
2058
2059#if 1000000 % CONFIGURE_MICROSECONDS_PER_TICK != 0
2060  #warning "The clock ticks per second is not an integer"
2061#endif
2062
2063#if CONFIGURE_MICROSECONDS_PER_TICK <= 0
2064  #error "The CONFIGURE_MICROSECONDS_PER_TICK must be positive"
2065#endif
2066
2067#define _CONFIGURE_TICKS_PER_SECOND (1000000 / CONFIGURE_MICROSECONDS_PER_TICK)
2068
2069/** The configures the number of clock ticks per timeslice. */
2070#ifndef CONFIGURE_TICKS_PER_TIMESLICE
2071  #define CONFIGURE_TICKS_PER_TIMESLICE        50
2072#endif
2073
2074/**@}*/ /* end of General Configuration */
2075
2076/*
2077 *  Initial Extension Set
2078 */
2079
2080#ifdef CONFIGURE_INIT
2081#if CONFIGURE_RECORD_PER_PROCESSOR_ITEMS > 0
2082#include <rtems/record.h>
2083#endif
2084#ifdef CONFIGURE_STACK_CHECKER_ENABLED
2085#include <rtems/stackchk.h>
2086#endif
2087
2088#include <rtems/libcsupport.h>
2089
2090#if defined(BSP_INITIAL_EXTENSION) || \
2091    defined(CONFIGURE_INITIAL_EXTENSIONS) || \
2092    defined(CONFIGURE_STACK_CHECKER_ENABLED) || \
2093    (defined(RTEMS_NEWLIB) && !defined(CONFIGURE_DISABLE_NEWLIB_REENTRANCY))
2094  const User_extensions_Table _User_extensions_Initial_extensions[] = {
2095    #if CONFIGURE_RECORD_PER_PROCESSOR_ITEMS > 0 && \
2096      defined(CONFIGURE_RECORD_EXTENSIONS_ENABLED)
2097      RECORD_EXTENSION,
2098    #endif
2099    #if !defined(CONFIGURE_DISABLE_NEWLIB_REENTRANCY)
2100      RTEMS_NEWLIB_EXTENSION,
2101    #endif
2102    #if defined(CONFIGURE_STACK_CHECKER_ENABLED)
2103      RTEMS_STACK_CHECKER_EXTENSION,
2104    #endif
2105    #if defined(CONFIGURE_INITIAL_EXTENSIONS)
2106      CONFIGURE_INITIAL_EXTENSIONS,
2107    #endif
2108    #if defined(BSP_INITIAL_EXTENSION)
2109      BSP_INITIAL_EXTENSION
2110    #endif
2111  };
2112
2113  const size_t _User_extensions_Initial_count =
2114    RTEMS_ARRAY_SIZE( _User_extensions_Initial_extensions );
2115
2116  User_extensions_Switch_control _User_extensions_Initial_switch_controls[
2117    RTEMS_ARRAY_SIZE( _User_extensions_Initial_extensions )
2118  ];
2119
2120  RTEMS_SYSINIT_ITEM(
2121    _User_extensions_Handler_initialization,
2122    RTEMS_SYSINIT_INITIAL_EXTENSIONS,
2123    RTEMS_SYSINIT_ORDER_MIDDLE
2124  );
2125#endif
2126
2127#if defined(RTEMS_NEWLIB) && !defined(CONFIGURE_DISABLE_NEWLIB_REENTRANCY)
2128struct _reent *__getreent(void)
2129{
2130  return _Thread_Get_executing()->libc_reent;
2131}
2132#endif
2133
2134#endif
2135
2136/**
2137 * @defgroup ConfigurationPOSIXAPI POSIX API Configuration Parameters
2138 *
2139 * This module contains the parameters related to configuration
2140 * of the POSIX API services.
2141 */
2142/**@{*/
2143
2144/**
2145 * This configuration parameter specifies the maximum number of
2146 * POSIX API keys.
2147 *
2148 * POSIX Keys are available whether or not the POSIX API is enabled.
2149 */
2150#ifndef CONFIGURE_MAXIMUM_POSIX_KEYS
2151  #define CONFIGURE_MAXIMUM_POSIX_KEYS 0
2152#endif
2153
2154/*
2155 * This macro is calculated to specify the memory required for
2156 * POSIX API key/value pairs.
2157 */
2158#ifndef CONFIGURE_MAXIMUM_POSIX_KEY_VALUE_PAIRS
2159  #define CONFIGURE_MAXIMUM_POSIX_KEY_VALUE_PAIRS \
2160    (CONFIGURE_MAXIMUM_POSIX_KEYS * \
2161     (CONFIGURE_MAXIMUM_POSIX_THREADS + CONFIGURE_MAXIMUM_TASKS))
2162#endif
2163
2164/*
2165 * This macro is calculated to specify the total number of
2166 * POSIX API keys required by the application and configured
2167 * system capabilities.
2168 */
2169#define _CONFIGURE_POSIX_KEYS \
2170  (CONFIGURE_MAXIMUM_POSIX_KEYS + _CONFIGURE_LIBIO_POSIX_KEYS)
2171
2172/**
2173 * This configuration parameter specifies the maximum number of
2174 * POSIX API threads.
2175 */
2176#ifndef CONFIGURE_MAXIMUM_POSIX_THREADS
2177  #define CONFIGURE_MAXIMUM_POSIX_THREADS 0
2178#endif
2179
2180/*
2181 * Account for the object control structures plus the name
2182 * of the object to be duplicated.
2183 */
2184#define _Configure_POSIX_Named_Object_RAM(_number, _size) \
2185  (_Configure_Max_Objects(_number) \
2186    * _Configure_From_workspace(_POSIX_PATH_MAX + 1))
2187
2188/**
2189 * This configuration parameter specifies the maximum number of
2190 * POSIX API message queues.
2191 */
2192#ifndef CONFIGURE_MAXIMUM_POSIX_MESSAGE_QUEUES
2193  #define CONFIGURE_MAXIMUM_POSIX_MESSAGE_QUEUES 0
2194#endif
2195
2196/*
2197 * This macro is calculated to specify the memory required for
2198 * POSIX API message queues.
2199 */
2200#define _CONFIGURE_MEMORY_FOR_POSIX_MESSAGE_QUEUES(_message_queues) \
2201  _Configure_POSIX_Named_Object_RAM( \
2202     _message_queues, sizeof(POSIX_Message_queue_Control) )
2203
2204/**
2205 * This configuration parameter specifies the maximum number of
2206 * POSIX API semaphores.
2207 */
2208#ifndef CONFIGURE_MAXIMUM_POSIX_SEMAPHORES
2209  #define CONFIGURE_MAXIMUM_POSIX_SEMAPHORES 0
2210#endif
2211
2212/*
2213 * This macro is calculated to specify the memory required for
2214 * POSIX API semaphores.
2215 */
2216#define _CONFIGURE_MEMORY_FOR_POSIX_SEMAPHORES(_semaphores) \
2217  _Configure_POSIX_Named_Object_RAM( \
2218     _semaphores, sizeof(POSIX_Semaphore_Control) )
2219
2220/**
2221 * Configure the maximum number of POSIX shared memory objects.
2222 */
2223#ifndef CONFIGURE_MAXIMUM_POSIX_SHMS
2224  #define CONFIGURE_MAXIMUM_POSIX_SHMS 0
2225#endif
2226
2227/*
2228 * This macro is calculated to specify the memory required for
2229 * POSIX API shared memory.
2230 */
2231#define _CONFIGURE_MEMORY_FOR_POSIX_SHMS(_shms) \
2232  _Configure_POSIX_Named_Object_RAM(_shms, sizeof(POSIX_Shm_Control) )
2233
2234/**
2235 * This configuration parameter specifies the maximum number of
2236 * POSIX API timers.
2237 */
2238#ifndef CONFIGURE_MAXIMUM_POSIX_TIMERS
2239  #define CONFIGURE_MAXIMUM_POSIX_TIMERS 0
2240#endif
2241
2242#if !defined(RTEMS_POSIX_API) && CONFIGURE_MAXIMUM_POSIX_TIMERS != 0
2243  #error "CONFIGURE_MAXIMUM_POSIX_TIMERS must be zero if POSIX API is disabled"
2244#endif
2245
2246/**
2247 * This configuration parameter specifies the maximum number of
2248 * POSIX API queued signals.
2249 */
2250#ifndef CONFIGURE_MAXIMUM_POSIX_QUEUED_SIGNALS
2251  #define CONFIGURE_MAXIMUM_POSIX_QUEUED_SIGNALS 0
2252#endif
2253
2254#if !defined(RTEMS_POSIX_API) && CONFIGURE_MAXIMUM_POSIX_QUEUED_SIGNALS != 0
2255  #error "CONFIGURE_MAXIMUM_POSIX_QUEUED_SIGNALS must be zero if POSIX API is disabled"
2256#endif
2257
2258#if CONFIGURE_MAXIMUM_POSIX_QUEUED_SIGNALS > 0
2259  #define _CONFIGURE_MEMORY_FOR_POSIX_QUEUED_SIGNALS \
2260    _Configure_From_workspace( (CONFIGURE_MAXIMUM_POSIX_QUEUED_SIGNALS) * \
2261      sizeof( POSIX_signals_Siginfo_node ) )
2262#else
2263  #define _CONFIGURE_MEMORY_FOR_POSIX_QUEUED_SIGNALS 0
2264#endif
2265
2266#ifdef CONFIGURE_POSIX_INIT_THREAD_TABLE
2267  #ifndef CONFIGURE_POSIX_HAS_OWN_INIT_THREAD_TABLE
2268    #ifndef CONFIGURE_POSIX_INIT_THREAD_ENTRY_POINT
2269      #define CONFIGURE_POSIX_INIT_THREAD_ENTRY_POINT   POSIX_Init
2270    #endif
2271
2272    #ifndef CONFIGURE_POSIX_INIT_THREAD_STACK_SIZE
2273      #define CONFIGURE_POSIX_INIT_THREAD_STACK_SIZE \
2274        CONFIGURE_MINIMUM_POSIX_THREAD_STACK_SIZE
2275    #endif
2276
2277    #ifdef CONFIGURE_INIT
2278      posix_initialization_threads_table POSIX_Initialization_threads[] = {
2279        { CONFIGURE_POSIX_INIT_THREAD_ENTRY_POINT,
2280          CONFIGURE_POSIX_INIT_THREAD_STACK_SIZE }
2281      };
2282    #endif
2283
2284    #define CONFIGURE_POSIX_INIT_THREAD_TABLE_NAME \
2285      POSIX_Initialization_threads
2286
2287    #define CONFIGURE_POSIX_INIT_THREAD_TABLE_SIZE \
2288      RTEMS_ARRAY_SIZE(CONFIGURE_POSIX_INIT_THREAD_TABLE_NAME)
2289  #endif /* !CONFIGURE_POSIX_HAS_OWN_INIT_TASK_TABLE */
2290#else /* !CONFIGURE_POSIX_INIT_THREAD_TABLE */
2291  #define CONFIGURE_POSIX_INIT_THREAD_TABLE_NAME NULL
2292  #define CONFIGURE_POSIX_INIT_THREAD_TABLE_SIZE 0
2293#endif /* CONFIGURE_POSIX_INIT_THREAD_TABLE */
2294
2295/**
2296 * This configuration parameter specifies the stack size of the
2297 * POSIX API Initialization thread (if used).
2298 */
2299#ifndef CONFIGURE_POSIX_INIT_THREAD_STACK_SIZE
2300  #define CONFIGURE_POSIX_INIT_THREAD_STACK_SIZE    0
2301#endif
2302/**@}*/  /* end of POSIX API Configuration */
2303
2304/**
2305 * This is so we can account for tasks with stacks greater than minimum
2306 * size.  This is in bytes.
2307 */
2308#ifndef CONFIGURE_EXTRA_TASK_STACKS
2309  #define CONFIGURE_EXTRA_TASK_STACKS 0
2310#endif
2311
2312/*
2313 * We must be able to split the free block used for the second last allocation
2314 * into two parts so that we have a free block for the last allocation.  See
2315 * _Heap_Block_split().
2316 */
2317#define _CONFIGURE_HEAP_HANDLER_OVERHEAD \
2318  _Configure_Align_up( HEAP_BLOCK_HEADER_SIZE, CPU_HEAP_ALIGNMENT )
2319
2320/**
2321 * This calculates the amount of memory reserved for the IDLE tasks.
2322 * In an SMP system, each CPU core has its own idle task.
2323 */
2324#define _CONFIGURE_IDLE_TASKS_COUNT _CONFIGURE_MAXIMUM_PROCESSORS
2325
2326/*
2327 *  Calculate the RAM size based on the maximum number of objects configured.
2328 */
2329#ifndef CONFIGURE_EXECUTIVE_RAM_SIZE
2330
2331/*
2332 * Account for allocating the following per object
2333 *   + array of object control structures
2334 *   + local pointer table -- pointer per object plus a zero'th
2335 *     entry in the local pointer table.
2336 */
2337#define _CONFIGURE_MEMORY_FOR_TASKS(_tasks, _number_FP_tasks) \
2338  (_Configure_Max_Objects(_number_FP_tasks) \
2339    * _Configure_From_workspace(CONTEXT_FP_SIZE))
2340
2341/**
2342 * The following macro is used to calculate the memory allocated by RTEMS
2343 * for the message buffers associated with a particular message queue.
2344 * There is a fixed amount of overhead per message.
2345 */
2346#define CONFIGURE_MESSAGE_BUFFERS_FOR_QUEUE(_messages, _size) \
2347    _Configure_From_workspace( \
2348      (_messages) * (_Configure_Align_up(_size, sizeof(uintptr_t)) \
2349        + sizeof(CORE_message_queue_Buffer_control)))
2350
2351/*
2352 * This macro is set to the amount of memory required for pending message
2353 * buffers in bytes.  It should be constructed by adding together a
2354 * set of values determined by CONFIGURE_MESSAGE_BUFFERS_FOR_QUEUE.
2355 */
2356#ifndef CONFIGURE_MESSAGE_BUFFER_MEMORY
2357  #define CONFIGURE_MESSAGE_BUFFER_MEMORY 0
2358#endif
2359
2360/**
2361 * This macro is available just in case the confdefs.h file underallocates
2362 * memory for a particular application.  This lets the user add some extra
2363 * memory in case something broken and underestimates.
2364 *
2365 * It is also possible for cases where confdefs.h overallocates memory,
2366 * you could substract memory from the allocated.  The estimate is just
2367 * that, an estimate, and assumes worst case alignment and padding on
2368 * each allocated element.  So in some cases it could be too conservative.
2369 *
2370 * NOTE: Historically this was used for message buffers.
2371 */
2372#ifndef CONFIGURE_MEMORY_OVERHEAD
2373  #define CONFIGURE_MEMORY_OVERHEAD 0
2374#endif
2375
2376/**
2377 * This defines the formula used to compute the amount of memory
2378 * reserved for internal task control structures.
2379 */
2380#if CPU_IDLE_TASK_IS_FP == TRUE
2381  #define _CONFIGURE_MEMORY_FOR_INTERNAL_TASKS \
2382    _CONFIGURE_MEMORY_FOR_TASKS( \
2383      _CONFIGURE_IDLE_TASKS_COUNT + _CONFIGURE_MPCI_RECEIVE_SERVER_COUNT, \
2384      _CONFIGURE_IDLE_TASKS_COUNT + _CONFIGURE_MPCI_RECEIVE_SERVER_COUNT \
2385    )
2386#else
2387  #define _CONFIGURE_MEMORY_FOR_INTERNAL_TASKS \
2388    _CONFIGURE_MEMORY_FOR_TASKS( \
2389      _CONFIGURE_IDLE_TASKS_COUNT + _CONFIGURE_MPCI_RECEIVE_SERVER_COUNT, \
2390      _CONFIGURE_MPCI_RECEIVE_SERVER_COUNT \
2391    )
2392#endif
2393
2394/**
2395 * This macro accounts for general RTEMS system overhead.
2396 */
2397#define _CONFIGURE_MEMORY_FOR_SYSTEM_OVERHEAD \
2398  _CONFIGURE_MEMORY_FOR_INTERNAL_TASKS
2399
2400/**
2401 * This calculates the memory required for the executive workspace.
2402 *
2403 * This is an internal parameter.
2404 */
2405#define CONFIGURE_EXECUTIVE_RAM_SIZE \
2406( \
2407   _CONFIGURE_MEMORY_FOR_SYSTEM_OVERHEAD + \
2408   _CONFIGURE_MEMORY_FOR_TASKS( \
2409     _CONFIGURE_TASKS, _CONFIGURE_TASKS) + \
2410   _CONFIGURE_MEMORY_FOR_TASKS( \
2411     CONFIGURE_MAXIMUM_POSIX_THREADS, CONFIGURE_MAXIMUM_POSIX_THREADS) + \
2412   _CONFIGURE_MEMORY_FOR_POSIX_MESSAGE_QUEUES( \
2413     CONFIGURE_MAXIMUM_POSIX_MESSAGE_QUEUES) + \
2414   _CONFIGURE_MEMORY_FOR_POSIX_SEMAPHORES( \
2415     CONFIGURE_MAXIMUM_POSIX_SEMAPHORES) + \
2416   _CONFIGURE_MEMORY_FOR_POSIX_SHMS( \
2417     CONFIGURE_MAXIMUM_POSIX_SHMS) + \
2418   _CONFIGURE_MEMORY_FOR_POSIX_QUEUED_SIGNALS + \
2419   CONFIGURE_MESSAGE_BUFFER_MEMORY + \
2420   (CONFIGURE_MEMORY_OVERHEAD * 1024) + \
2421   _CONFIGURE_HEAP_HANDLER_OVERHEAD \
2422)
2423
2424/*
2425 *  Now account for any extra memory that initialization tasks or threads
2426 *  may have requested.
2427 */
2428
2429/*
2430 * This accounts for any extra memory required by the Classic API
2431 * Initialization Task.
2432 */
2433#if (CONFIGURE_INIT_TASK_STACK_SIZE > CONFIGURE_MINIMUM_TASK_STACK_SIZE)
2434  #define _CONFIGURE_INITIALIZATION_THREADS_STACKS_CLASSIC_PART \
2435      (CONFIGURE_INIT_TASK_STACK_SIZE - CONFIGURE_MINIMUM_TASK_STACK_SIZE)
2436#else
2437  #define _CONFIGURE_INITIALIZATION_THREADS_STACKS_CLASSIC_PART 0
2438#endif
2439
2440/*
2441 * This accounts for any extra memory required by the POSIX API
2442 * Initialization Thread.
2443 */
2444#if (CONFIGURE_POSIX_INIT_THREAD_STACK_SIZE > \
2445      CONFIGURE_MINIMUM_POSIX_THREAD_STACK_SIZE)
2446  #define _CONFIGURE_INITIALIZATION_THREADS_STACKS_POSIX_PART \
2447    (CONFIGURE_POSIX_INIT_THREAD_STACK_SIZE - \
2448      CONFIGURE_MINIMUM_POSIX_THREAD_STACK_SIZE)
2449#else
2450  #define _CONFIGURE_INITIALIZATION_THREADS_STACKS_POSIX_PART 0
2451#endif
2452
2453/*
2454 * This macro provides a summation of the various initialization task
2455 * and thread stack requirements.
2456 */
2457#define _CONFIGURE_INITIALIZATION_THREADS_EXTRA_STACKS \
2458    (_CONFIGURE_INITIALIZATION_THREADS_STACKS_CLASSIC_PART + \
2459    _CONFIGURE_INITIALIZATION_THREADS_STACKS_POSIX_PART)
2460
2461/*
2462 * This macro is calculated to specify the memory required for
2463 * the Idle tasks(s) stack.
2464 */
2465#define _CONFIGURE_IDLE_TASKS_STACK \
2466  (_CONFIGURE_IDLE_TASKS_COUNT * \
2467    _Configure_From_stackspace( CONFIGURE_IDLE_TASK_STACK_SIZE ) )
2468
2469/*
2470 * This macro is calculated to specify the stack memory required for the MPCI
2471 * task.
2472 */
2473#define _CONFIGURE_MPCI_RECEIVE_SERVER_STACK \
2474  (_CONFIGURE_MPCI_RECEIVE_SERVER_COUNT * \
2475    _Configure_From_stackspace(CONFIGURE_MINIMUM_TASK_STACK_SIZE))
2476
2477/*
2478 * This macro is calculated to specify the memory required for
2479 * the stacks of all tasks.
2480 */
2481#define _CONFIGURE_TASKS_STACK \
2482  (_Configure_Max_Objects( _CONFIGURE_TASKS ) * \
2483    _Configure_From_stackspace( CONFIGURE_MINIMUM_TASK_STACK_SIZE ) )
2484
2485/*
2486 * This macro is calculated to specify the memory required for
2487 * the stacks of all POSIX threads.
2488 */
2489#define _CONFIGURE_POSIX_THREADS_STACK \
2490  (_Configure_Max_Objects( CONFIGURE_MAXIMUM_POSIX_THREADS ) * \
2491    _Configure_From_stackspace( CONFIGURE_MINIMUM_POSIX_THREAD_STACK_SIZE ) )
2492
2493#else /* CONFIGURE_EXECUTIVE_RAM_SIZE */
2494
2495#define _CONFIGURE_IDLE_TASKS_STACK 0
2496#define _CONFIGURE_MPCI_RECEIVE_SERVER_STACK 0
2497#define _CONFIGURE_INITIALIZATION_THREADS_EXTRA_STACKS 0
2498#define _CONFIGURE_TASKS_STACK 0
2499#define _CONFIGURE_POSIX_THREADS_STACK 0
2500
2501#if CONFIGURE_EXTRA_MPCI_RECEIVE_SERVER_STACK != 0
2502  #error "CONFIGURE_EXECUTIVE_RAM_SIZE defined with request for CONFIGURE_EXTRA_MPCI_RECEIVE_SERVER_STACK"
2503#endif
2504
2505#if CONFIGURE_EXTRA_TASK_STACKS != 0
2506  #error "CONFIGURE_EXECUTIVE_RAM_SIZE defined with request for CONFIGURE_EXTRA_TASK_STACKS"
2507#endif
2508
2509#endif /* CONFIGURE_EXECUTIVE_RAM_SIZE */
2510
2511/*
2512 * This macro is calculated to specify the memory required for
2513 * all tasks and threads of all varieties.
2514 */
2515#define _CONFIGURE_STACK_SPACE_SIZE \
2516  ( \
2517    _CONFIGURE_IDLE_TASKS_STACK + \
2518    _CONFIGURE_MPCI_RECEIVE_SERVER_STACK + \
2519    _CONFIGURE_INITIALIZATION_THREADS_EXTRA_STACKS + \
2520    _CONFIGURE_TASKS_STACK + \
2521    _CONFIGURE_POSIX_THREADS_STACK + \
2522    CONFIGURE_EXTRA_MPCI_RECEIVE_SERVER_STACK + \
2523    _CONFIGURE_LIBBLOCK_TASK_EXTRA_STACKS + \
2524    CONFIGURE_EXTRA_TASK_STACKS + \
2525    _CONFIGURE_HEAP_HANDLER_OVERHEAD \
2526  )
2527
2528#ifndef CONFIGURE_MAXIMUM_THREAD_NAME_SIZE
2529  #define CONFIGURE_MAXIMUM_THREAD_NAME_SIZE THREAD_DEFAULT_MAXIMUM_NAME_SIZE
2530#endif
2531
2532#ifdef CONFIGURE_INIT
2533  typedef union {
2534    Scheduler_Node Base;
2535    #ifdef CONFIGURE_SCHEDULER_CBS
2536      Scheduler_CBS_Node CBS;
2537    #endif
2538    #ifdef CONFIGURE_SCHEDULER_EDF
2539      Scheduler_EDF_Node EDF;
2540    #endif
2541    #ifdef CONFIGURE_SCHEDULER_EDF_SMP
2542      Scheduler_EDF_SMP_Node EDF_SMP;
2543    #endif
2544    #ifdef CONFIGURE_SCHEDULER_PRIORITY
2545      Scheduler_priority_Node Priority;
2546    #endif
2547    #ifdef CONFIGURE_SCHEDULER_SIMPLE_SMP
2548      Scheduler_SMP_Node Simple_SMP;
2549    #endif
2550    #ifdef CONFIGURE_SCHEDULER_PRIORITY_SMP
2551      Scheduler_priority_SMP_Node Priority_SMP;
2552    #endif
2553    #ifdef CONFIGURE_SCHEDULER_PRIORITY_AFFINITY_SMP
2554      Scheduler_priority_affinity_SMP_Node Priority_affinity_SMP;
2555    #endif
2556    #ifdef CONFIGURE_SCHEDULER_STRONG_APA
2557      Scheduler_strong_APA_Node Strong_APA;
2558    #endif
2559    #ifdef CONFIGURE_SCHEDULER_USER_PER_THREAD
2560      CONFIGURE_SCHEDULER_USER_PER_THREAD User;
2561    #endif
2562  } Configuration_Scheduler_node;
2563
2564  #ifdef RTEMS_SMP
2565    const size_t _Scheduler_Node_size = sizeof( Configuration_Scheduler_node );
2566  #endif
2567
2568  const size_t _Thread_Maximum_name_size = CONFIGURE_MAXIMUM_THREAD_NAME_SIZE;
2569
2570  struct Thread_Configured_control {
2571    Thread_Control Control;
2572    #if CONFIGURE_MAXIMUM_USER_EXTENSIONS > 0
2573      void *extensions[ CONFIGURE_MAXIMUM_USER_EXTENSIONS + 1 ];
2574    #endif
2575    Configuration_Scheduler_node Scheduler_nodes[ _CONFIGURE_SCHEDULER_COUNT ];
2576    RTEMS_API_Control API_RTEMS;
2577    #ifdef RTEMS_POSIX_API
2578      POSIX_API_Control API_POSIX;
2579    #endif
2580    #if CONFIGURE_MAXIMUM_THREAD_NAME_SIZE > 1
2581      char name[ CONFIGURE_MAXIMUM_THREAD_NAME_SIZE ];
2582    #endif
2583    #if !defined(RTEMS_SCHEDSIM) \
2584      && defined(RTEMS_NEWLIB) \
2585      && !defined(CONFIGURE_DISABLE_NEWLIB_REENTRANCY)
2586      struct _reent Newlib;
2587    #else
2588      struct { /* Empty */ } Newlib;
2589    #endif
2590  };
2591
2592  const Thread_Control_add_on _Thread_Control_add_ons[] = {
2593    {
2594      offsetof( Thread_Configured_control, Control.Scheduler.nodes ),
2595      offsetof( Thread_Configured_control, Scheduler_nodes )
2596    }, {
2597      offsetof(
2598        Thread_Configured_control,
2599        Control.API_Extensions[ THREAD_API_RTEMS ]
2600      ),
2601      offsetof( Thread_Configured_control, API_RTEMS )
2602    }, {
2603      offsetof(
2604        Thread_Configured_control,
2605        Control.libc_reent
2606      ),
2607      offsetof( Thread_Configured_control, Newlib )
2608    }
2609    #if CONFIGURE_MAXIMUM_THREAD_NAME_SIZE > 1
2610      , {
2611        offsetof(
2612          Thread_Configured_control,
2613          Control.Join_queue.Queue.name
2614        ),
2615        offsetof( Thread_Configured_control, name )
2616      }
2617    #endif
2618    #ifdef RTEMS_POSIX_API
2619      , {
2620        offsetof(
2621          Thread_Configured_control,
2622          Control.API_Extensions[ THREAD_API_POSIX ]
2623        ),
2624        offsetof( Thread_Configured_control, API_POSIX )
2625      }
2626    #endif
2627  };
2628
2629  const size_t _Thread_Control_add_on_count =
2630    RTEMS_ARRAY_SIZE( _Thread_Control_add_ons );
2631
2632  #if defined(RTEMS_SMP)
2633    struct Thread_queue_Configured_heads {
2634      Thread_queue_Heads Heads;
2635        Thread_queue_Priority_queue Priority[ _CONFIGURE_SCHEDULER_COUNT ];
2636    };
2637
2638    const size_t _Thread_queue_Heads_size =
2639      sizeof( Thread_queue_Configured_heads );
2640  #endif
2641
2642  const uint32_t _Watchdog_Nanoseconds_per_tick =
2643    (uint32_t) 1000 * CONFIGURE_MICROSECONDS_PER_TICK;
2644
2645  const uint32_t _Watchdog_Ticks_per_second = _CONFIGURE_TICKS_PER_SECOND;
2646
2647  const size_t _Thread_Initial_thread_count = _CONFIGURE_IDLE_TASKS_COUNT +
2648    _CONFIGURE_MPCI_RECEIVE_SERVER_COUNT +
2649    rtems_resource_maximum_per_allocation( _CONFIGURE_TASKS ) +
2650    rtems_resource_maximum_per_allocation( CONFIGURE_MAXIMUM_POSIX_THREADS );
2651
2652  THREAD_INFORMATION_DEFINE(
2653    _Thread,
2654    OBJECTS_INTERNAL_API,
2655    OBJECTS_INTERNAL_THREADS,
2656    _CONFIGURE_IDLE_TASKS_COUNT + _CONFIGURE_MPCI_RECEIVE_SERVER_COUNT
2657  );
2658
2659  #if CONFIGURE_MAXIMUM_BARRIERS > 0
2660    BARRIER_INFORMATION_DEFINE( CONFIGURE_MAXIMUM_BARRIERS );
2661  #endif
2662
2663  #if CONFIGURE_MAXIMUM_MESSAGE_QUEUES > 0
2664    MESSAGE_QUEUE_INFORMATION_DEFINE( CONFIGURE_MAXIMUM_MESSAGE_QUEUES );
2665  #endif
2666
2667  #if CONFIGURE_MAXIMUM_PARTITIONS > 0
2668    PARTITION_INFORMATION_DEFINE( CONFIGURE_MAXIMUM_PARTITIONS );
2669  #endif
2670
2671  #if CONFIGURE_MAXIMUM_PERIODS > 0
2672    RATE_MONOTONIC_INFORMATION_DEFINE( CONFIGURE_MAXIMUM_PERIODS );
2673  #endif
2674
2675  #if CONFIGURE_MAXIMUM_PORTS > 0
2676    DUAL_PORTED_MEMORY_INFORMATION_DEFINE( CONFIGURE_MAXIMUM_PORTS );
2677  #endif
2678
2679  #if CONFIGURE_MAXIMUM_REGIONS > 0
2680    REGION_INFORMATION_DEFINE( CONFIGURE_MAXIMUM_REGIONS );
2681  #endif
2682
2683  #if CONFIGURE_MAXIMUM_SEMAPHORES > 0
2684    SEMAPHORE_INFORMATION_DEFINE(
2685      CONFIGURE_MAXIMUM_SEMAPHORES,
2686      _CONFIGURE_SCHEDULER_COUNT
2687    );
2688  #endif
2689
2690  #if CONFIGURE_MAXIMUM_TIMERS > 0
2691    TIMER_INFORMATION_DEFINE( CONFIGURE_MAXIMUM_TIMERS );
2692  #endif
2693
2694  #if _CONFIGURE_TASKS > 0
2695    THREAD_INFORMATION_DEFINE(
2696      _RTEMS_tasks,
2697      OBJECTS_CLASSIC_API,
2698      OBJECTS_RTEMS_TASKS,
2699      _CONFIGURE_TASKS
2700    );
2701  #endif
2702
2703  #if CONFIGURE_MAXIMUM_USER_EXTENSIONS > 0
2704    EXTENSION_INFORMATION_DEFINE( CONFIGURE_MAXIMUM_USER_EXTENSIONS );
2705  #endif
2706
2707  /**
2708   * This is the Classic API Configuration Table.
2709   */
2710  rtems_api_configuration_table Configuration_RTEMS_API = {
2711    CONFIGURE_INIT_TASK_TABLE_SIZE,
2712    CONFIGURE_INIT_TASK_TABLE
2713  };
2714
2715  #if CONFIGURE_MAXIMUM_POSIX_KEY_VALUE_PAIRS > 0
2716    POSIX_Keys_Key_value_pair _POSIX_Keys_Key_value_pairs[
2717      rtems_resource_maximum_per_allocation(
2718        CONFIGURE_MAXIMUM_POSIX_KEY_VALUE_PAIRS
2719      )
2720    ];
2721
2722    const uint32_t _POSIX_Keys_Key_value_pair_maximum =
2723      CONFIGURE_MAXIMUM_POSIX_KEY_VALUE_PAIRS;
2724  #endif
2725
2726  #if _CONFIGURE_POSIX_KEYS > 0
2727    POSIX_KEYS_INFORMATION_DEFINE( _CONFIGURE_POSIX_KEYS );
2728  #endif
2729
2730  #if CONFIGURE_MAXIMUM_POSIX_MESSAGE_QUEUES > 0
2731    POSIX_MESSAGE_QUEUE_INFORMATION_DEFINE(
2732      CONFIGURE_MAXIMUM_POSIX_MESSAGE_QUEUES
2733    );
2734  #endif
2735
2736  #if CONFIGURE_MAXIMUM_POSIX_SEMAPHORES > 0
2737    POSIX_SEMAPHORE_INFORMATION_DEFINE( CONFIGURE_MAXIMUM_POSIX_SEMAPHORES );
2738  #endif
2739
2740  #if CONFIGURE_MAXIMUM_POSIX_SHMS > 0
2741    POSIX_SHM_INFORMATION_DEFINE( CONFIGURE_MAXIMUM_POSIX_SHMS );
2742  #endif
2743
2744  #if CONFIGURE_MAXIMUM_POSIX_THREADS > 0
2745    THREAD_INFORMATION_DEFINE(
2746      _POSIX_Threads,
2747      OBJECTS_POSIX_API,
2748      OBJECTS_POSIX_THREADS,
2749      CONFIGURE_MAXIMUM_POSIX_THREADS
2750    );
2751  #endif
2752
2753  #ifdef RTEMS_POSIX_API
2754    #if CONFIGURE_MAXIMUM_POSIX_QUEUED_SIGNALS > 0
2755      const uint32_t _POSIX_signals_Maximum_queued_signals =
2756        CONFIGURE_MAXIMUM_POSIX_QUEUED_SIGNALS;
2757
2758      POSIX_signals_Siginfo_node _POSIX_signals_Siginfo_nodes[
2759        CONFIGURE_MAXIMUM_POSIX_QUEUED_SIGNALS
2760      ];
2761    #endif
2762
2763    #if CONFIGURE_MAXIMUM_POSIX_TIMERS > 0
2764      POSIX_TIMER_INFORMATION_DEFINE( CONFIGURE_MAXIMUM_POSIX_TIMERS );
2765    #endif
2766  #endif
2767
2768  const size_t _POSIX_Threads_Minimum_stack_size =
2769    CONFIGURE_MINIMUM_POSIX_THREAD_STACK_SIZE;
2770
2771  /**
2772   * This variable specifies the minimum stack size for tasks in an RTEMS
2773   * application.
2774   *
2775   * NOTE: This is left as a simple uint32_t so it can be externed as
2776   *       needed without requring being high enough logical to
2777   *       include the full configuration table.
2778   */
2779  uint32_t rtems_minimum_stack_size =
2780    CONFIGURE_MINIMUM_TASK_STACK_SIZE;
2781
2782  /**
2783   * This is the primary Configuration Table for this application.
2784   */
2785  const rtems_configuration_table Configuration = {
2786    CONFIGURE_EXECUTIVE_RAM_SIZE,             /* required RTEMS workspace */
2787    _CONFIGURE_STACK_SPACE_SIZE,               /* required stack space */
2788    CONFIGURE_MAXIMUM_USER_EXTENSIONS,        /* maximum dynamic extensions */
2789    CONFIGURE_MICROSECONDS_PER_TICK,          /* microseconds per clock tick */
2790    CONFIGURE_TICKS_PER_TIMESLICE,            /* ticks per timeslice quantum */
2791    CONFIGURE_IDLE_TASK_BODY,                 /* user's IDLE task */
2792    CONFIGURE_IDLE_TASK_STACK_SIZE,           /* IDLE task stack size */
2793    CONFIGURE_TASK_STACK_ALLOCATOR_INIT,      /* stack allocator init */
2794    CONFIGURE_TASK_STACK_ALLOCATOR,           /* stack allocator */
2795    CONFIGURE_TASK_STACK_DEALLOCATOR,         /* stack deallocator */
2796    CONFIGURE_ZERO_WORKSPACE_AUTOMATICALLY,   /* true to clear memory */
2797    #ifdef CONFIGURE_UNIFIED_WORK_AREAS       /* true for unified work areas */
2798      true,
2799    #else
2800      false,
2801    #endif
2802    #ifdef CONFIGURE_TASK_STACK_ALLOCATOR_AVOIDS_WORK_SPACE /* true to avoid
2803                                                 work space for thread stack
2804                                                 allocation */
2805      true,
2806    #else
2807      false,
2808    #endif
2809    #ifdef RTEMS_SMP
2810      #ifdef _CONFIGURE_SMP_APPLICATION
2811        true,
2812      #else
2813        false,
2814      #endif
2815    #endif
2816    #ifdef RTEMS_SMP
2817      _CONFIGURE_MAXIMUM_PROCESSORS,
2818    #endif
2819  };
2820
2821  #if CONFIGURE_RECORD_PER_PROCESSOR_ITEMS > 0
2822    #if (CONFIGURE_RECORD_PER_PROCESSOR_ITEMS & (CONFIGURE_RECORD_PER_PROCESSOR_ITEMS - 1)) != 0
2823      #error "CONFIGURE_RECORD_PER_PROCESSOR_ITEMS must be a power of two"
2824    #endif
2825
2826    #if CONFIGURE_RECORD_PER_PROCESSOR_ITEMS < 16
2827      #error "CONFIGURE_RECORD_PER_PROCESSOR_ITEMS must be at least 16"
2828    #endif
2829
2830    typedef struct {
2831      Record_Control    Control;
2832      rtems_record_item Items[ CONFIGURE_RECORD_PER_PROCESSOR_ITEMS ];
2833    } Record_Configured_control;
2834
2835    static Record_Configured_control _Record_Controls[ _CONFIGURE_MAXIMUM_PROCESSORS ];
2836
2837    const Record_Configuration _Record_Configuration = {
2838      CONFIGURE_RECORD_PER_PROCESSOR_ITEMS,
2839      &_Record_Controls[ 0 ].Control
2840    };
2841
2842    RTEMS_SYSINIT_ITEM(
2843      _Record_Initialize,
2844      RTEMS_SYSINIT_RECORD,
2845      RTEMS_SYSINIT_ORDER_MIDDLE
2846    );
2847  #endif
2848
2849  #ifdef CONFIGURE_VERBOSE_SYSTEM_INITIALIZATION
2850    RTEMS_SYSINIT_ITEM(
2851      _Sysinit_Verbose,
2852      RTEMS_SYSINIT_RECORD,
2853      RTEMS_SYSINIT_ORDER_LAST
2854    );
2855  #endif
2856#endif
2857
2858#if defined(RTEMS_SMP)
2859 /*
2860  * Instantiate the Per CPU information based upon the user configuration.
2861  */
2862 #if defined(CONFIGURE_INIT)
2863   Per_CPU_Control_envelope _Per_CPU_Information[_CONFIGURE_MAXIMUM_PROCESSORS];
2864 #endif
2865
2866#endif
2867
2868/*
2869 *  If the user has configured a set of Classic API Initialization Tasks,
2870 *  then we need to install the code that runs that loop.
2871 */
2872#ifdef CONFIGURE_INIT
2873  #if defined(CONFIGURE_RTEMS_INIT_TASKS_TABLE) || \
2874      defined(CONFIGURE_HAS_OWN_INIT_TASK_TABLE)
2875    RTEMS_SYSINIT_ITEM(
2876      _RTEMS_tasks_Initialize_user_tasks_body,
2877      RTEMS_SYSINIT_CLASSIC_USER_TASKS,
2878      RTEMS_SYSINIT_ORDER_MIDDLE
2879    );
2880  #endif
2881#endif
2882
2883/*
2884 *  If the user has configured a set of POSIX Initialization Threads,
2885 *  then we need to install the code that runs that loop.
2886 */
2887#ifdef CONFIGURE_INIT
2888  #if defined(CONFIGURE_POSIX_INIT_THREAD_TABLE) || \
2889      defined(CONFIGURE_POSIX_HAS_OWN_INIT_THREAD_TABLE)
2890    posix_initialization_threads_table * const
2891      _Configuration_POSIX_Initialization_threads =
2892        CONFIGURE_POSIX_INIT_THREAD_TABLE_NAME;
2893
2894    const size_t _Configuration_POSIX_Initialization_thread_count =
2895      CONFIGURE_POSIX_INIT_THREAD_TABLE_SIZE;
2896
2897    RTEMS_SYSINIT_ITEM(
2898      _POSIX_Threads_Initialize_user_threads_body,
2899      RTEMS_SYSINIT_POSIX_USER_THREADS,
2900      RTEMS_SYSINIT_ORDER_MIDDLE
2901    );
2902  #endif
2903#endif
2904
2905/*
2906 *  Select PCI Configuration Library
2907 */
2908#ifdef RTEMS_PCI_CONFIG_LIB
2909  #ifdef CONFIGURE_INIT
2910    #define PCI_LIB_NONE 0
2911    #define PCI_LIB_AUTO 1
2912    #define PCI_LIB_STATIC 2
2913    #define PCI_LIB_READ 3
2914    #define PCI_LIB_PERIPHERAL 4
2915    #if CONFIGURE_PCI_LIB == PCI_LIB_AUTO
2916      #define PCI_CFG_AUTO_LIB
2917      #include <pci/cfg.h>
2918      struct pci_bus pci_hb;
2919      #define PCI_LIB_INIT pci_config_auto
2920      #define PCI_LIB_CONFIG pci_config_auto_register
2921    #elif CONFIGURE_PCI_LIB == PCI_LIB_STATIC
2922      #define PCI_CFG_STATIC_LIB
2923      #include <pci/cfg.h>
2924      #define PCI_LIB_INIT pci_config_static
2925      #define PCI_LIB_CONFIG NULL
2926      /* Let user define PCI configuration (struct pci_bus pci_hb) */
2927    #elif CONFIGURE_PCI_LIB == PCI_LIB_READ
2928      #define PCI_CFG_READ_LIB
2929      #include <pci/cfg.h>
2930      #define PCI_LIB_INIT pci_config_read
2931      #define PCI_LIB_CONFIG NULL
2932      struct pci_bus pci_hb;
2933    #elif CONFIGURE_PCI_LIB == PCI_LIB_PERIPHERAL
2934      #define PCI_LIB_INIT pci_config_peripheral
2935      #define PCI_LIB_CONFIG NULL
2936      /* Let user define PCI configuration (struct pci_bus pci_hb) */
2937    #elif CONFIGURE_PCI_LIB == PCI_LIB_NONE
2938      #define PCI_LIB_INIT NULL
2939      #define PCI_LIB_CONFIG NULL
2940      /* No PCI Configuration at all, user can use/debug access routines */
2941    #else
2942      #error NO PCI LIBRARY DEFINED
2943    #endif
2944
2945    const int pci_config_lib_type = CONFIGURE_PCI_LIB;
2946    int (*pci_config_lib_init)(void) = PCI_LIB_INIT;
2947    void (*pci_config_lib_register)(void *config) = PCI_LIB_CONFIG;
2948  #endif
2949#endif
2950
2951#ifdef __cplusplus
2952}
2953#endif
2954
2955/******************************************************************
2956 ******************************************************************
2957 ******************************************************************
2958 *         CONFIGURATION WARNINGS AND ERROR CHECKING              *
2959 ******************************************************************
2960 ******************************************************************
2961 ******************************************************************
2962 */
2963
2964/*
2965 *  Make sure a task/thread of some sort is configured.
2966 *
2967 *  When analyzing RTEMS to find the smallest possible of memory
2968 *  that must be allocated, you probably do want to configure 0
2969 *  tasks/threads so there is a smaller set of calls to _Workspace_Allocate
2970 *  to analyze.
2971 */
2972#if !defined(CONFIGURE_IDLE_TASK_INITIALIZES_APPLICATION) \
2973  && CONFIGURE_MAXIMUM_TASKS == 0 \
2974  && CONFIGURE_MAXIMUM_POSIX_THREADS == 0
2975  #error "CONFIGURATION ERROR: No tasks or threads configured!!"
2976#endif
2977
2978#ifndef RTEMS_SCHEDSIM
2979/*
2980 *  Make sure at least one of the initialization task/thread
2981 *  tables was defined.
2982 */
2983#if !defined(CONFIGURE_RTEMS_INIT_TASKS_TABLE) && \
2984    !defined(CONFIGURE_POSIX_INIT_THREAD_TABLE) && \
2985    !defined(CONFIGURE_IDLE_TASK_INITIALIZES_APPLICATION)
2986#error "CONFIGURATION ERROR: No initialization tasks or threads configured!!"
2987#endif
2988#endif
2989
2990/*
2991 *  If the user is trying to configure a multiprocessing application and
2992 *  RTEMS was not configured and built multiprocessing, then error out.
2993 */
2994#if defined(CONFIGURE_MP_APPLICATION) && \
2995    !defined(RTEMS_MULTIPROCESSING)
2996#error "CONFIGURATION ERROR: RTEMS not configured for multiprocessing!!"
2997#endif
2998
2999#if !defined(RTEMS_SCHEDSIM)
3000/*
3001 *  You must either explicitly include or exclude the clock driver.
3002 *  It is such a common newbie error to leave it out.  Maybe this
3003 *  will put an end to it.
3004 *
3005 *  NOTE: If you are using the timer driver, it is considered
3006 *        mutually exclusive with the clock driver because the
3007 *        drivers are assumed to use the same "timer" hardware
3008 *        on many boards.
3009 */
3010#if !defined(CONFIGURE_APPLICATION_NEEDS_CLOCK_DRIVER) && \
3011    !defined(CONFIGURE_APPLICATION_DOES_NOT_NEED_CLOCK_DRIVER) && \
3012    !defined(CONFIGURE_APPLICATION_NEEDS_TIMER_DRIVER)
3013  #error "CONFIGURATION ERROR: Do you want the clock driver or not?!?"
3014 #endif
3015
3016/*
3017 * Only one of the following three configuration parameters should be
3018 * defined at a time.
3019 */
3020#if ((defined(CONFIGURE_APPLICATION_NEEDS_CLOCK_DRIVER) + \
3021      defined(CONFIGURE_APPLICATION_NEEDS_TIMER_DRIVER) + \
3022      defined(CONFIGURE_APPLICATION_DOES_NOT_NEED_CLOCK_DRIVER)) > 1)
3023   #error "CONFIGURATION ERROR: More than one clock/timer driver configuration parameter specified?!?"
3024#endif
3025#endif   /* !defined(RTEMS_SCHEDSIM) */
3026
3027/*
3028 *  These names have been obsoleted so make the user application stop compiling
3029 */
3030#if defined(CONFIGURE_TEST_NEEDS_TIMER_DRIVER) || \
3031    defined(CONFIGURE_TEST_NEEDS_CONSOLE_DRIVER) || \
3032    defined(CONFIGURE_TEST_NEEDS_CLOCK_DRIVER) || \
3033    defined(CONFIGURE_TEST_NEEDS_RTC_DRIVER) || \
3034    defined(CONFIGURE_TEST_NEEDS_STUB_DRIVER)
3035#error "CONFIGURATION ERROR: CONFIGURE_TEST_XXX constants are obsolete"
3036#endif
3037
3038/*
3039 *  Validate the configured maximum priority
3040 */
3041#if ((CONFIGURE_MAXIMUM_PRIORITY != 3) && \
3042     (CONFIGURE_MAXIMUM_PRIORITY != 7) && \
3043     (CONFIGURE_MAXIMUM_PRIORITY != 15) && \
3044     (CONFIGURE_MAXIMUM_PRIORITY != 31) && \
3045     (CONFIGURE_MAXIMUM_PRIORITY != 63) && \
3046     (CONFIGURE_MAXIMUM_PRIORITY != 127) && \
3047     (CONFIGURE_MAXIMUM_PRIORITY != 255))
3048  #error "Maximum priority is not 1 less than a power of 2 between 4 and 256"
3049#endif
3050
3051#if (CONFIGURE_MAXIMUM_PRIORITY > PRIORITY_DEFAULT_MAXIMUM)
3052  #error "Maximum priority configured higher than supported by target."
3053#endif
3054
3055#ifdef CONFIGURE_HAS_OWN_CONFIGURATION_TABLE
3056  #warning "The CONFIGURE_HAS_OWN_CONFIGURATION_TABLE configuration option is obsolete since RTEMS 5.1"
3057#endif
3058
3059#ifdef CONFIGURE_HAS_OWN_DEVICE_DRIVER_TABLE
3060  #warning "The CONFIGURE_HAS_OWN_DEVICE_DRIVER_TABLE configuration option is obsolete since RTEMS 5.1"
3061#endif
3062
3063#ifdef CONFIGURE_HAS_OWN_FILESYSTEM_TABLE
3064  #warning "The CONFIGURE_HAS_OWN_FILESYSTEM_TABLE configuration option is obsolete since RTEMS 5.1"
3065#endif
3066
3067#ifdef CONFIGURE_HAS_OWN_MOUNT_TABLE
3068  #warning "The CONFIGURE_HAS_OWN_MOUNT_TABLE configuration option is obsolete since RTEMS 5.1"
3069#endif
3070
3071#ifdef CONFIGURE_HAS_OWN_MULTIPROCESSING_TABLE
3072  #warning "The CONFIGURE_HAS_OWN_MOUNT_TABLE configuration option is obsolete since RTEMS 5.1"
3073#endif
3074
3075#ifdef CONFIGURE_NUMBER_OF_TERMIOS_PORTS
3076  #warning "The CONFIGURE_NUMBER_OF_TERMIOS_PORTS configuration option is obsolete since RTEMS 5.1"
3077#endif
3078
3079#ifdef CONFIGURE_MAXIMUM_ADA_TASKS
3080  #warning "The CONFIGURE_MAXIMUM_ADA_TASKS configuration option is obsolete since RTEMS 5.1"
3081#endif
3082
3083#ifdef CONFIGURE_MAXIMUM_FAKE_ADA_TASKS
3084  #warning "The CONFIGURE_MAXIMUM_FAKE_ADA_TASKS configuration option is obsolete since RTEMS 5.1"
3085#endif
3086
3087#ifdef CONFIGURE_MAXIMUM_MRSP_SEMAPHORES
3088  #warning "The CONFIGURE_MAXIMUM_MRSP_SEMAPHORES configuration option is obsolete since RTEMS 5.1"
3089#endif
3090
3091#ifdef CONFIGURE_MAXIMUM_POSIX_BARRIERS
3092  #warning "The CONFIGURE_MAXIMUM_POSIX_BARRIERS configuration option is obsolete since RTEMS 5.1"
3093#endif
3094
3095#ifdef CONFIGURE_MAXIMUM_POSIX_CONDITION_VARIABLES
3096  #warning "The CONFIGURE_MAXIMUM_POSIX_CONDITION_VARIABLES configuration option is obsolete since RTEMS 5.1"
3097#endif
3098
3099#ifdef CONFIGURE_MAXIMUM_POSIX_MESSAGE_QUEUE_DESCRIPTORS
3100  #warning "The CONFIGURE_MAXIMUM_POSIX_MESSAGE_QUEUE_DESCRIPTORS configuration option is obsolete since RTEMS 5.1"
3101#endif
3102
3103#ifdef CONFIGURE_MAXIMUM_POSIX_MUTEXES
3104  #warning "The CONFIGURE_MAXIMUM_POSIX_MUTEXES configuration option is obsolete since RTEMS 5.1"
3105#endif
3106
3107#ifdef CONFIGURE_MAXIMUM_POSIX_RWLOCKS
3108  #warning "The CONFIGURE_MAXIMUM_POSIX_RWLOCKS configuration option is obsolete since RTEMS 5.1"
3109#endif
3110
3111#ifdef CONFIGURE_MAXIMUM_POSIX_SPINLOCKS
3112  #warning "The CONFIGURE_MAXIMUM_POSIX_SPINLOCKS configuration option is obsolete since RTEMS 5.1"
3113#endif
3114
3115#ifdef CONFIGURE_MAXIMUM_PTYS
3116  #warning "The CONFIGURE_MAXIMUM_PTYS configuration option is obsolete since RTEMS 5.1"
3117#endif
3118
3119#ifdef CONFIGURE_TERMIOS_DISABLED
3120  #warning "The CONFIGURE_TERMIOS_DISABLED configuration option is obsolete since RTEMS 5.1"
3121#endif
3122
3123/*
3124 * POSIX Key pair shouldn't be less than POSIX Key, which is highly
3125 * likely to be error.
3126 */
3127#if (CONFIGURE_MAXIMUM_POSIX_KEYS != 0) && \
3128    (CONFIGURE_MAXIMUM_POSIX_KEY_VALUE_PAIRS != 0)
3129  #if (CONFIGURE_MAXIMUM_POSIX_KEY_VALUE_PAIRS < CONFIGURE_MAXIMUM_POSIX_KEYS)
3130    #error "Fewer POSIX Key pairs than POSIX Key!"
3131  #endif
3132#endif
3133
3134/*
3135 * IMFS block size for in memory files (memfiles) must be a power of
3136 * two between 16 and 512 inclusive.
3137 */
3138#if ((CONFIGURE_IMFS_MEMFILE_BYTES_PER_BLOCK != 16) && \
3139     (CONFIGURE_IMFS_MEMFILE_BYTES_PER_BLOCK != 32) && \
3140     (CONFIGURE_IMFS_MEMFILE_BYTES_PER_BLOCK != 64) && \
3141     (CONFIGURE_IMFS_MEMFILE_BYTES_PER_BLOCK != 128) && \
3142     (CONFIGURE_IMFS_MEMFILE_BYTES_PER_BLOCK != 256) && \
3143     (CONFIGURE_IMFS_MEMFILE_BYTES_PER_BLOCK != 512))
3144  #error "IMFS Memfile block size must be a power of 2 between 16 and 512"
3145#endif
3146
3147#ifdef CONFIGURE_ENABLE_GO
3148  #warning "The CONFIGURE_ENABLE_GO configuration option is obsolete since RTEMS 5.1"
3149#endif
3150
3151#ifdef CONFIGURE_GNAT_RTEMS
3152  #warning "The CONFIGURE_GNAT_RTEMS configuration option is obsolete since RTEMS 5.1"
3153#endif
3154
3155#ifdef CONFIGURE_MAXIMUM_GOROUTINES
3156  #warning "The CONFIGURE_MAXIMUM_GOROUTINES configuration option is obsolete since RTEMS 5.1"
3157#endif
3158
3159#ifdef CONFIGURE_MAXIMUM_GO_CHANNELS
3160  #warning "The CONFIGURE_MAXIMUM_GO_CHANNELS configuration option is obsolete since RTEMS 5.1"
3161#endif
3162
3163#endif
3164/* end of include file */
Note: See TracBrowser for help on using the repository browser.