source: rtems/cpukit/include/rtems/confdefs.h @ 337a186

5
Last change on this file since 337a186 was 337a186, checked in by Sebastian Huber <sebastian.huber@…>, on 02/21/18 at 11:40:18

Add a simple task console driver

Close #3320.

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