source: rtems/cpukit/score/cpu/x86_64/x86_64-context-initialize.c @ 6869321

5
Last change on this file since 6869321 was 6869321, checked in by Amaan Cheval <amaan.cheval@…>, on 08/13/18 at 10:50:38

bsps/x86_64: Add support for RTEMS interrupts

Updates #2898.

  • Property mode set to 100644
File size: 3.4 KB
Line 
1/*
2 * Copyright (c) 2018.
3 * Amaan Cheval <amaan.cheval@gmail.com>
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright
9 *    notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 *    notice, this list of conditions and the following disclaimer in the
12 *    documentation and/or other materials provided with the distribution.
13 *
14 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17 * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24 * SUCH DAMAGE.
25 */
26
27#include <rtems/score/cpu.h>
28#include <rtems/score/tls.h>
29
30/*
31 * Stack alignment note:
32 *
33 * Per the x86-64 SysV ABI, the stack frame layout is as follows:
34 *       optional args
35 *       ------        (16-byte alignment boundary)
36 * RSP-> return_addr   (RSP is moved lower as needed for this frame)
37 *
38 * Per the ABI:
39 *
40 *  > The end of the input argument area shall be aligned on a 16 (32 or 64, if
41 *    __m256 or __m512 is passed on stack) byte boundary.
42 *
43 *  > In other words, the value (%rsp + 8) is always a multiple of 16 (32 or 64)
44 *    when control is transferred to the function entry point.
45 *
46 * We want the stack to look to the '_entry_point' routine
47 * like an ordinary stack frame as if '_entry_point' was
48 * called from C-code.
49 * Note that '_entry_point' is jumped-to by the 'ret'
50 * instruction returning from _CPU_Context_switch() or
51 * _CPU_Context_restore() thus popping the _entry_point
52 * from the stack.
53 *
54 * Hence we must initialize the stack as follows
55 *
56 *         [arg0 (aligned)]:  n/a
57 *         [ret. addr     ]:  NULL
58 * RSP->   [jump-target   ]:  _entry_point
59 *
60 * When Context_switch returns it pops the _entry_point from
61 * the stack which then finds a standard layout.
62 */
63void _CPU_Context_Initialize(
64  Context_Control *the_context,
65  void *stack_area_begin,
66  size_t stack_area_size,
67  uint32_t new_level,
68  void (*entry_point)( void ),
69  bool is_fp,
70  void *tls_area
71)
72{
73  uintptr_t _stack;
74
75  /* avoid warning for being unused */
76  (void) is_fp;
77
78  // XXX: Should be used in the future
79  (void) tls_area;
80
81  if ( new_level ) {
82    the_context->rflags = CPU_EFLAGS_INTERRUPTS_OFF;
83  }
84  else {
85    the_context->rflags = CPU_EFLAGS_INTERRUPTS_ON;
86  }
87
88  _stack  = ((uintptr_t) stack_area_begin) + stack_area_size;
89  _stack &= ~(CPU_STACK_ALIGNMENT - 1);
90  _stack -= sizeof(uintptr_t); /* fake return address for entry_point's frame;
91                                * this allows rsp+8 to be an aligned boundary */
92  *((proc_ptr *) _stack) = entry_point;
93
94  the_context->rbp     = (void *) 0;
95  the_context->rsp     = (void *) _stack;
96
97  // XXX: Initialize thread-local storage area (TLS / TCB)
98}
Note: See TracBrowser for help on using the repository browser.