source: rtems/c/src/exec/score/cpu/i386/cpu.h @ 8b2ee37c

4.104.114.84.95
Last change on this file since 8b2ee37c was 8b2ee37c, checked in by Joel Sherrill <joel.sherrill@…>, on 08/19/98 at 20:09:59

Patch from Eric Valette <valette@…>:

  • Use the "hlt" instruction for the Idle thread,
  • Optimise interrupt PATH leadding to thread wakeup,
  • Preparation for Intel exception management that should come before the end of the week...
  • Property mode set to 100644
File size: 10.5 KB
RevLine 
[ac7d5ef0]1/*  cpu.h
2 *
3 *  This include file contains information pertaining to the Intel
4 *  i386 processor.
5 *
[60b791ad]6 *  COPYRIGHT (c) 1989-1998.
[ac7d5ef0]7 *  On-Line Applications Research Corporation (OAR).
[03f2154e]8 *  Copyright assigned to U.S. Government, 1994.
[ac7d5ef0]9 *
[98e4ebf5]10 *  The license and distribution terms for this file may be
11 *  found in the file LICENSE in this distribution or at
[03f2154e]12 *  http://www.OARcorp.com/rtems/license.html.
[ac7d5ef0]13 *
14 *  $Id$
15 */
16
17#ifndef __CPU_h
18#define __CPU_h
19
20#ifdef __cplusplus
21extern "C" {
22#endif
23
[95a1d50]24#include <rtems/score/i386.h>              /* pick up machine definitions */
[67a2288]25#include <libcpu/cpu.h>
26
[88d594a]27#ifndef ASM
[5e9b32b]28#include <rtems/score/i386types.h>
[88d594a]29#endif
[ac7d5ef0]30
31/* conditional compilation parameters */
32
33#define CPU_INLINE_ENABLE_DISPATCH       TRUE
34#define CPU_UNROLL_ENQUEUE_PRIORITY      FALSE
35
36/*
37 *  i386 has an RTEMS allocated and managed interrupt stack.
38 */
39
40#define CPU_HAS_SOFTWARE_INTERRUPT_STACK TRUE
41#define CPU_HAS_HARDWARE_INTERRUPT_STACK FALSE
42#define CPU_ALLOCATE_INTERRUPT_STACK     TRUE
43
[937a6f3c]44/*
45 *  Does the RTEMS invoke the user's ISR with the vector number and
46 *  a pointer to the saved interrupt frame (1) or just the vector
47 *  number (0)?
48 */
49
50#define CPU_ISR_PASSES_FRAME_POINTER 0
51
[ac7d5ef0]52/*
53 *  Some family members have no FP, some have an FPU such as the i387
54 *  for the i386, others have it built in (i486DX, Pentium).
55 */
56
57#if ( I386_HAS_FPU == 1 )
58#define CPU_HARDWARE_FP     TRUE    /* i387 for i386 */
59#else
60#define CPU_HARDWARE_FP     FALSE
61#endif
62
63#define CPU_ALL_TASKS_ARE_FP             FALSE
64#define CPU_IDLE_TASK_IS_FP              FALSE
65#define CPU_USE_DEFERRED_FP_SWITCH       TRUE
66
[8b2ee37c]67#define CPU_PROVIDES_IDLE_THREAD_BODY    YES
[ac7d5ef0]68#define CPU_STACK_GROWS_UP               FALSE
69#define CPU_STRUCTURE_ALIGNMENT
70
[e2d79559]71/*
72 *  Define what is required to specify how the network to host conversion
73 *  routines are handled.
74 */
75
76#define CPU_CPU_HAS_OWN_HOST_TO_NETWORK_ROUTINES FALSE
77#define CPU_BIG_ENDIAN                           FALSE
78#define CPU_LITTLE_ENDIAN                        TRUE
79
[ac7d5ef0]80/* structures */
81
82/*
83 *  Basic integer context for the i386 family.
84 */
85
86typedef struct {
87  unsigned32  eflags;   /* extended flags register                   */
88  void       *esp;      /* extended stack pointer register           */
89  void       *ebp;      /* extended base pointer register            */
90  unsigned32  ebx;      /* extended bx register                      */
91  unsigned32  esi;      /* extended source index register            */
92  unsigned32  edi;      /* extended destination index flags register */
93}   Context_Control;
94
95/*
96 *  FP context save area for the i387 numeric coprocessors.
97 */
98
99typedef struct {
100  unsigned8   fp_save_area[108];    /* context size area for I80387 */
101                                    /*  28 bytes for environment    */
102} Context_Control_fp;
103
[8b2ee37c]104
[ac7d5ef0]105/*
106 *  The following structure defines the set of information saved
[8b2ee37c]107 *  on the current stack by RTEMS upon receipt of execptions.
108 *
109 * idtIndex is either the interrupt number or the trap/exception number.
110 * faultCode is the code pushed by the processor on some exceptions.
[ac7d5ef0]111 */
112
113typedef struct {
[8b2ee37c]114
115    unsigned32      edi,
116                    esi,
117                    ebp,
118                    esp0,
119                    ebx,
120                    edx,
121                    ecx,
122                    eax,
123                    idtIndex,
124                    faultCode,
125                    eip,
126                    cs,
127                    eflags;
128}CPU_Exception_frame;
129
130/*
131 *  The following structure defines the set of information saved
132 *  on the current stack by RTEMS upon receipt of each interrupt
133 *  that will lead to re-enter the kernel to signal the thread.
134 */
135
136typedef CPU_Exception_frame CPU_Interrupt_frame;
[ac7d5ef0]137
138/*
139 *  The following table contains the information required to configure
140 *  the i386 specific parameters.
141 */
142
143typedef struct {
144  void       (*pretasking_hook)( void );
145  void       (*predriver_hook)( void );
146  void       (*postdriver_hook)( void );
147  void       (*idle_task)( void );
148  boolean      do_zero_of_workspace;
149  unsigned32   interrupt_stack_size;
[75f09e5]150  unsigned32   extra_mpci_receive_server_stack;
[f581163a]151  void *     (*stack_allocate_hook)( unsigned32 );
152  void       (*stack_free_hook)( void* );
153  /* end of fields required on all CPUs */
[ac7d5ef0]154
155  unsigned32   interrupt_table_segment;
156  void        *interrupt_table_offset;
157}   rtems_cpu_table;
158
159/*
160 *  context size area for floating point
161 *
162 *  NOTE:  This is out of place on the i386 to avoid a forward reference.
163 */
164
165#define CPU_CONTEXT_FP_SIZE sizeof( Context_Control_fp )
166
167/* variables */
168
[c627b2a3]169SCORE_EXTERN Context_Control_fp  _CPU_Null_fp_context;
170SCORE_EXTERN void               *_CPU_Interrupt_stack_low;
171SCORE_EXTERN void               *_CPU_Interrupt_stack_high;
[ac7d5ef0]172
173/* constants */
174
175/*
176 *  This defines the number of levels and the mask used to pick those
177 *  bits out of a thread mode.
178 */
179
180#define CPU_MODES_INTERRUPT_LEVEL  0x00000001 /* interrupt level in mode */
181#define CPU_MODES_INTERRUPT_MASK   0x00000001 /* interrupt level in mode */
182
183/*
[75f09e5]184 *  extra stack required by the MPCI receive server thread
[ac7d5ef0]185 */
186
[75f09e5]187#define CPU_MPCI_RECEIVE_SERVER_EXTRA_STACK 1024
[ac7d5ef0]188
189/*
190 *  i386 family supports 256 distinct vectors.
191 */
192
[9700578]193#define CPU_INTERRUPT_NUMBER_OF_VECTORS      256
194#define CPU_INTERRUPT_MAXIMUM_VECTOR_NUMBER  (CPU_INTERRUPT_NUMBER_OF_VECTORS - 1)
[ac7d5ef0]195
196/*
197 *  Minimum size of a thread's stack.
198 */
199
[3652ad35]200#define CPU_STACK_MINIMUM_SIZE          1024
[ac7d5ef0]201
202/*
203 *  i386 is pretty tolerant of alignment.  Just put things on 4 byte boundaries.
204 */
205
206#define CPU_ALIGNMENT                    4
207#define CPU_HEAP_ALIGNMENT               CPU_ALIGNMENT
208#define CPU_PARTITION_ALIGNMENT          CPU_ALIGNMENT
209
210/*
211 *  On i386 thread stacks require no further alignment after allocation
212 *  from the Workspace.
213 */
214
215#define CPU_STACK_ALIGNMENT             0
216
217/* macros */
218
219/*
220 *  ISR handler macros
221 *
222 *  These macros perform the following functions:
223 *     + disable all maskable CPU interrupts
224 *     + restore previous interrupt level (enable)
225 *     + temporarily restore interrupts (flash)
226 *     + set a particular level
227 */
228
229#define _CPU_ISR_Disable( _level ) i386_disable_interrupts( _level )
230
231#define _CPU_ISR_Enable( _level )  i386_enable_interrupts( _level )
232
233#define _CPU_ISR_Flash( _level )   i386_flash_interrupts( _level )
234
235#define _CPU_ISR_Set_level( _new_level ) \
236  { \
237    if ( _new_level ) asm volatile ( "cli" ); \
238    else              asm volatile ( "sti" ); \
239  }
240
[3a4ae6c]241unsigned32 _CPU_ISR_Get_level( void );
242
[ac7d5ef0]243/* end of ISR handler macros */
244
245/*
246 *  Context handler macros
247 *
248 *  These macros perform the following functions:
249 *     + initialize a context area
250 *     + restart the current thread
251 *     + calculate the initial pointer into a FP context area
252 *     + initialize an FP context area
253 */
254
255#define CPU_EFLAGS_INTERRUPTS_ON  0x00003202
256#define CPU_EFLAGS_INTERRUPTS_OFF 0x00003002
257
258#define _CPU_Context_Initialize( _the_context, _stack_base, _size, \
[9700578]259                                   _isr, _entry_point, _is_fp ) \
[ac7d5ef0]260  do { \
261    unsigned32 _stack; \
262    \
263    if ( (_isr) ) (_the_context)->eflags = CPU_EFLAGS_INTERRUPTS_OFF; \
264    else          (_the_context)->eflags = CPU_EFLAGS_INTERRUPTS_ON; \
265    \
266    _stack = ((unsigned32)(_stack_base)) + (_size) - 4; \
267    \
268    *((proc_ptr *)(_stack)) = (_entry_point); \
269    (_the_context)->ebp     = (void *) _stack; \
270    (_the_context)->esp     = (void *) _stack; \
271  } while (0)
272
273#define _CPU_Context_Restart_self( _the_context ) \
274   _CPU_Context_restore( (_the_context) );
275
276#define _CPU_Context_Fp_start( _base, _offset ) \
277   ( (void *) _Addresses_Add_offset( (_base), (_offset) ) )
278
279#define _CPU_Context_Initialize_fp( _fp_area ) \
280  { \
[3652ad35]281    unsigned32 *_source      = (unsigned32 *) &_CPU_Null_fp_context; \
282    unsigned32 *_destination = *(_fp_area); \
[ac7d5ef0]283    unsigned32  _index; \
284    \
285    for ( _index=0 ; _index < CPU_CONTEXT_FP_SIZE/4 ; _index++ ) \
286      *_destination++ = *_source++; \
287  }
288
289/* end of Context handler macros */
290
291/*
292 *  Fatal Error manager macros
293 *
294 *  These macros perform the following functions:
295 *    + disable interrupts and halt the CPU
296 */
297
298#define _CPU_Fatal_halt( _error ) \
299  { \
300    asm volatile ( "cli ; \
301                    movl %0,%%eax ; \
302                    hlt" \
303                    : "=r" ((_error)) : "0" ((_error)) \
304    ); \
305  }
306
307/* end of Fatal Error manager macros */
308
309/*
310 *  Bitfield handler macros
311 *
312 *  These macros perform the following functions:
313 *     + scan for the highest numbered (MSB) set in a 16 bit bitfield
314 */
315
[9700578]316#define CPU_USE_GENERIC_BITFIELD_CODE FALSE
317#define CPU_USE_GENERIC_BITFIELD_DATA FALSE
318
[ac7d5ef0]319#define _CPU_Bitfield_Find_first_bit( _value, _output ) \
320  { \
321    register unsigned16 __value_in_register = (_value); \
322    \
323    _output = 0; \
324    \
325    asm volatile ( "bsfw    %0,%1 " \
326                    : "=r" (__value_in_register), "=r" (_output) \
327                    : "0"  (__value_in_register), "1"  (_output) \
328    ); \
329  }
330
331/* end of Bitfield handler macros */
332
333/*
334 *  Priority handler macros
335 *
336 *  These macros perform the following functions:
337 *    + return a mask with the bit for this major/minor portion of
338 *      of thread priority set.
339 *    + translate the bit number returned by "Bitfield_find_first_bit"
340 *      into an index into the thread ready chain bit maps
341 */
342
343#define _CPU_Priority_Mask( _bit_number ) \
344  ( 1 << (_bit_number) )
345
[9700578]346#define _CPU_Priority_bits_index( _priority ) \
[ac7d5ef0]347  (_priority)
348
349/* functions */
350
351/*
352 *  _CPU_Initialize
353 *
354 *  This routine performs CPU dependent initialization.
355 */
356
357void _CPU_Initialize(
358  rtems_cpu_table  *cpu_table,
359  void      (*thread_dispatch)
360);
361
[637df35]362/*
363 *  _CPU_ISR_install_raw_handler
364 *
365 *  This routine installs a "raw" interrupt handler directly into the
366 *  processor's vector table.
367 */
368 
369void _CPU_ISR_install_raw_handler(
370  unsigned32  vector,
371  proc_ptr    new_handler,
372  proc_ptr   *old_handler
373);
374
[ac7d5ef0]375/*
376 *  _CPU_ISR_install_vector
377 *
378 *  This routine installs an interrupt vector.
379 */
380
381void _CPU_ISR_install_vector(
382  unsigned32  vector,
383  proc_ptr    new_handler,
384  proc_ptr   *old_handler
385);
386
387/*
388 *  _CPU_Context_switch
389 *
390 *  This routine switches from the run context to the heir context.
391 */
392
393void _CPU_Context_switch(
394  Context_Control  *run,
395  Context_Control  *heir
396);
397
398/*
399 *  _CPU_Context_restore
400 *
[77ea27fc]401 *  This routine is generally used only to restart self in an
[ac7d5ef0]402 *  efficient manner and avoid stack conflicts.
403 */
404
405void _CPU_Context_restore(
406  Context_Control *new_context
407);
408
409/*
410 *  _CPU_Context_save_fp
411 *
412 *  This routine saves the floating point context passed to it.
413 */
414
415void _CPU_Context_save_fp(
416  void **fp_context_ptr
417);
418
419/*
420 *  _CPU_Context_restore_fp
421 *
422 *  This routine restores the floating point context passed to it.
423 */
424
425void _CPU_Context_restore_fp(
426  void **fp_context_ptr
427);
428
429#ifdef __cplusplus
430}
431#endif
432
433#endif
434/* end of include file */
Note: See TracBrowser for help on using the repository browser.