source: rtems/doc/user/concepts.t @ ef47c44f

4.8
Last change on this file since ef47c44f was ef47c44f, checked in by Glenn Humphrey <glenn.humphrey@…>, on 11/28/07 at 16:24:39

2007-11-28 Glenn Humphrey <glenn.humphrey@…>

  • user/barrier.t, user/clock.t, user/concepts.t, user/conf.t, user/datatypes.t, user/dpmem.t, user/fatal.t, user/init.t, user/mp.t, user/msg.t, user/part.t, user/region.t, user/rtmon.t, user/sem.t, user/task.t, user/timer.t: Corrected various errors in the documentation.
  • Property mode set to 100644
File size: 13.3 KB
Line 
1@c
2@c  COPYRIGHT (c) 1988-2007.
3@c  On-Line Applications Research Corporation (OAR).
4@c  All rights reserved.
5@c
6@c  $Id$
7@c
8
9@c
10@c  The following figure was replaced with an ASCII equivalent.
11@c    Figure 2-1 Object ID Composition
12@c
13
14@chapter Key Concepts
15
16@section Introduction
17
18The facilities provided by RTEMS are built upon a
19foundation of very powerful concepts.  These concepts must be
20understood before the application developer can efficiently
21utilize RTEMS.  The purpose of this chapter is to familiarize
22one with these concepts.
23
24@section Objects
25
26@cindex objects
27
28RTEMS provides directives which can be used to
29dynamically create, delete, and manipulate a set of predefined
30object types.  These types include tasks, message queues,
31semaphores, memory regions, memory partitions, timers, ports,
32and rate monotonic periods.  The object-oriented nature of RTEMS
33encourages the creation of modular applications built upon
34re-usable "building block" routines.
35
36All objects are created on the local node as required
37by the application and have an RTEMS assigned ID.  All objects
38have a user-assigned name.  Although a relationship exists
39between an object's name and its RTEMS assigned ID, the name and
40ID are not identical.  Object names are completely arbitrary and
41selected by the user as a meaningful "tag" which may commonly
42reflect the object's use in the application.  Conversely, object
43IDs are designed to facilitate efficient object manipulation by
44the executive.
45
46@subsection Object Names
47
48@cindex object name
49@findex rtems_object_name
50
51An object name is an unsigned thirty-two bit entity
52associated with the object by the user.  The data type
53@code{@value{DIRPREFIX}name} is used to store object names.
54
55@findex rtems_build_name
56
57Although not required by RTEMS, object names are often
58composed of four ASCII characters which help identify that object.
59For example, a task which causes a light to blink might be
60called "LITE".  The @code{@value{DIRPREFIX}build_name} routine
61is provided to build an object name from four ASCII characters. 
62The following example illustrates this:
63
64@ifset is-C
65@example
66rtems_object_name my_name;
67
68my_name = rtems_build_name( 'L', 'I', 'T', 'E' );
69@end example
70@end ifset
71
72@ifset is-Ada
73@example
74My_Name : RTEMS.Name;
75
76My_Name = RTEMS.Build_Name( 'L', 'I', 'T', 'E' );
77@end example
78@end ifset
79
80However, it is not required that the application use ASCII
81characters to build object names.  For example, if an
82application requires one-hundred tasks, it would be difficult to
83assign meaningful ASCII names to each task.  A more convenient
84approach would be to name them the binary values one through
85one-hundred, respectively.
86
87@ifset is-C
88@findex rtems_get_object_name
89
90RTEMS provides a helper routine, @code{@value{DIRPREFIX}get_object_name},
91which can be used to obtain the name of any RTEMS object using just
92its ID.  This routine attempts to convert the name into a printable string.
93
94The following example illustrates the use of this method to print
95an object name:
96
97@example
98#include <rtems.h>
99#include <rtems/bspIo.h>
100
101void print_name(rtems_id the_object)
102@{
103  char  buffer[10];   /* name assumed to be 10 characters or less */
104  char *result;
105
106  result = rtems_get_object_name( id, sizeof(buffer), buffer );
107  printk( "ID=0x%08x name=%s\n", id, ((result) ? result : "no name") );
108@}
109@end example
110@end ifset
111
112
113@subsection Object IDs
114
115@cindex object ID
116@cindex object ID composition
117@findex rtems_id
118
119@need 3000
120
121An object ID is a unique unsigned thirty-two bit
122entity composed of three parts: object class, node, and index.
123The data type @code{@value{DIRPREFIX}id} is used to store object IDs.
124
125
126@ifset use-ascii
127@example
128@group
129     31        26 25              16 15                             0
130     +-----------+------------------+-------------------------------+
131     |           |                  |                               |
132     |   Class   |       Node       |             Index             |
133     |           |                  |                               |
134     +-----------+------------------+-------------------------------+
135@end group
136@end example
137@end ifset
138
139@ifset use-tex
140@sp 1
141@tex
142\centerline{\vbox{\offinterlineskip\halign{
143\strut#&
144\hbox to 0.50in{\enskip#}&
145\hbox to 0.50in{\enskip#}&
146#&
147\hbox to 0.50in{\enskip#}&
148\hbox to 0.50in{\enskip#}&
149#&
150\hbox to 1.00in{\enskip#}&
151\hbox to 1.00in{\enskip#}&
152#\cr
153\multispan{9}\cr
154\multispan{2}31\hfil&\multispan{2}\hfil26\enskip&
155 \multispan{1}\enskip25\hfil&\multispan{2}\hfil16\enskip&
156 \multispan{1}\enskip15\hfil&\multispan{2}\hfil0\cr
157&&&&&&&&&\cr
158}}\hfil}
159\centerline{\vbox{\offinterlineskip\halign{
160\strut\vrule#&
161\hbox to 0.50in{\enskip#}&
162\hbox to 0.50in{\enskip#}&
163\vrule#&
164\hbox to 0.50in{\enskip#}&
165\hbox to 0.50in{\enskip#}&
166\vrule#&
167\hbox to 0.50in{\enskip#}&
168\hbox to 0.50in{\enskip#}&
169\vrule#\cr
170\multispan{9}\cr
171\noalign{\hrule}
172&&&&&&&&&\cr
173&\multispan{2}\hfil Class\hfil&&
174 \multispan{2}\hfil Node\hfil&&
175 \multispan{2}\hfil Index\hfil&\cr
176&&&&&&&&&\cr
177\noalign{\hrule}
178}}\hfil}
179@end tex
180@end ifset
181
182@ifset use-html
183@html
184<CENTER>
185  <TABLE COLS=6 WIDTH="60%" BORDER=0>
186<TR><TD ALIGN=left><STRONG>31</STRONG></TD>
187    <TD ALIGN=right><STRONG>26</STRONG></TD>
188    <TD ALIGN=left><STRONG>25</STRONG></TD>
189    <TD ALIGN=right><STRONG>16</STRONG></TD>
190    <TD ALIGN=left><STRONG>15</STRONG></TD>
191    <TD ALIGN=right><STRONG>0</STRONG></TD></TR>
192  </TABLE>
193</CENTER>
194<CENTER>
195  <TABLE COLS=6 WIDTH="60%" BORDER=2>
196<TR><TD ALIGN=center COLSPAN=2>Class</TD>
197    <TD ALIGN=center COLSPAN=2>Node</TD>
198    <TD ALIGN=center COLSPAN=2>Index</TD></TD>
199  </TABLE>
200</CENTER>
201@end html
202@end ifset
203
204The most significant six bits are the object class.  The next
205ten bits are the number of the node on which this object was
206created.  The node number is always one (1) in a single
207processor system.  The least significant sixteen bits form an
208identifier within a particular object type.  This identifier,
209called the object index, ranges in value from 1 to the maximum
210number of objects configured for this object type.
211
212
213The three components of an object ID make it possible
214to quickly locate any object in even the most complicated
215multiprocessor system.  Object ID's are associated with an
216object by RTEMS when the object is created and the corresponding
217ID is returned by the appropriate object create directive.  The
218object ID is required as input to all directives involving
219objects, except those which create an object or obtain the ID of
220an object.
221
222The object identification directives can be used to
223dynamically obtain a particular object's ID given its name.
224This mapping is accomplished by searching the name table
225associated with this object type.  If the name is non-unique,
226then the ID associated with the first occurrence of the name
227will be returned to the application.  Since object IDs are
228returned when the object is created, the object identification
229directives are not necessary in a properly designed single
230processor application.
231
232In addition, services are provided to portably examine the
233three subcomponents of an RTEMS ID.  These services are
234prototyped as follows:
235
236@cindex obtaining class from object ID
237@cindex obtaining node from object ID
238@cindex obtaining index from object ID
239@cindex get class from object ID
240@cindex get node from object ID
241@cindex get index from object ID
242@findex rtems_get_class
243@findex rtems_get_node
244@findex rtems_get_index
245
246@example
247uint32_t rtems_get_class( rtems_id );
248uint32_t rtems_get_node( rtems_id );
249uint32_t rtems_get_index( rtems_id );
250@end example
251
252An object control block is a data structure defined
253by RTEMS which contains the information necessary to manage a
254particular object type.  For efficiency reasons, the format of
255each object type's control block is different.  However, many of
256the fields are similar in function.  The number of each type of
257control block is application dependent and determined by the
258values specified in the user's Configuration Table.  An object
259control block is allocated at object create time and freed when
260the object is deleted.  With the exception of user extension
261routines, object control blocks are not directly manipulated by
262user applications.
263
264@section Communication and Synchronization
265
266@cindex communication and synchronization
267
268In real-time multitasking applications, the ability
269for cooperating execution threads to communicate and synchronize
270with each other is imperative.  A real-time executive should
271provide an application with the following capabilities:
272
273@itemize @bullet
274@item Data transfer between cooperating tasks
275@item Data transfer between tasks and ISRs
276@item Synchronization of cooperating tasks
277@item Synchronization of tasks and ISRs
278@end itemize
279
280Most RTEMS managers can be used to provide some form
281of communication and/or synchronization.  However, managers
282dedicated specifically to communication and synchronization
283provide well established mechanisms which directly map to the
284application's varying needs.  This level of flexibility allows
285the application designer to match the features of a particular
286manager with the complexity of communication and synchronization
287required.  The following managers were specifically designed for
288communication and synchronization:
289
290@itemize @bullet
291@item Semaphore
292@item Message Queue
293@item Event
294@item Signal
295@end itemize
296
297The semaphore manager supports mutual exclusion
298involving the synchronization of access to one or more shared
299user resources.  Binary semaphores may utilize the optional
300priority inheritance algorithm to avoid the problem of priority
301inversion.  The message manager supports both communication and
302synchronization, while the event manager primarily provides a
303high performance synchronization mechanism.  The signal manager
304supports only asynchronous communication and is typically used
305for exception handling.
306
307@section Time
308
309@cindex time
310
311The development of responsive real-time applications
312requires an understanding of how RTEMS maintains and supports
313time-related operations.  The basic unit of time in RTEMS is
314known as a tick.  The frequency of clock ticks is completely
315application dependent and determines the granularity and
316accuracy of all interval and calendar time operations.
317
318@findex rtems_interval
319
320By tracking time in units of ticks, RTEMS is capable
321of supporting interval timing functions such as task delays,
322timeouts, timeslicing, the delayed execution of timer service
323routines, and the rate monotonic scheduling of tasks.  An
324interval is defined as a number of ticks relative to the current
325time.  For example, when a task delays for an interval of ten
326ticks, it is implied that the task will not execute until ten
327clock ticks have occurred.
328All intervals are specified using data type
329@code{@value{DIRPREFIX}interval}.
330
331A characteristic of interval timing is that the
332actual interval period may be a fraction of a tick less than the
333interval requested.  This occurs because the time at which the
334delay timer is set up occurs at some time between two clock
335ticks.  Therefore, the first countdown tick occurs in less than
336the complete time interval for a tick.  This can be a problem if
337the clock granularity is large.
338
339The rate monotonic scheduling algorithm is a hard
340real-time scheduling methodology.  This methodology provides
341rules which allows one to guarantee that a set of independent
342periodic tasks will always meet their deadlines -- even under
343transient overload conditions.  The rate monotonic manager
344provides directives built upon the Clock Manager's interval
345timer support routines.
346
347Interval timing is not sufficient for the many
348applications which require that time be kept in wall time or
349true calendar form.  Consequently, RTEMS maintains the current
350date and time.  This allows selected time operations to be
351scheduled at an actual calendar date and time.  For example, a
352task could request to delay until midnight on New Year's Eve
353before lowering the ball at Times Square.
354The data type @code{@value{DIRPREFIX}time_of_day} is used to specify
355calendar time in RTEMS services. 
356@xref{Clock Manager Time and Date Data Structures, , Time and Date Data Structures}.
357@findex rtems_time_of_day
358
359Obviously, the directives which use intervals or wall
360time cannot operate without some external mechanism which
361provides a periodic clock tick.  This clock tick is typically
362provided by a real time clock or counter/timer device.
363
364@section Memory Management
365
366@cindex memory management
367
368RTEMS memory management facilities can be grouped
369into two classes: dynamic memory allocation and address
370translation.  Dynamic memory allocation is required by
371applications whose memory requirements vary through the
372application's course of execution.  Address translation is
373needed by applications which share memory with another CPU or an
374intelligent Input/Output processor.  The following RTEMS
375managers provide facilities to manage memory:
376
377@itemize @bullet
378@item Region
379
380@item Partition
381
382@item Dual Ported Memory
383@end itemize
384
385RTEMS memory management features allow an application
386to create simple memory pools of fixed size buffers and/or more
387complex memory pools of variable size segments.  The partition
388manager provides directives to manage and maintain pools of
389fixed size entities such as resource control blocks.
390Alternatively, the region manager provides a more general
391purpose memory allocation scheme that supports variable size
392blocks of memory which are dynamically obtained and freed by the
393application.  The dual-ported memory manager provides executive
394support for address translation between internal and external
395dual-ported RAM address space.
Note: See TracBrowser for help on using the repository browser.