summaryrefslogtreecommitdiffstats
path: root/cpukit/score/cpu/arm/__aeabi_read_tp.c
blob: 22acc770e38bd05118585cabe33d4d22457a2b02 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
/*
 * Copyright (c) 2014 embedded brains GmbH.  All rights reserved.
 *
 *  embedded brains GmbH
 *  Obere Lagerstr. 30
 *  82178 Puchheim
 *  Germany
 *  <rtems@embedded-brains.de>
 *
 * The license and distribution terms for this file may be
 * found in the file LICENSE in this distribution or at
 * http://www.rtems.org/license/LICENSE.
 */

#ifdef HAVE_CONFIG_H
#include "config.h"
#endif

#include <rtems/score/thread.h>
#include <rtems/score/percpu.h>

#ifndef RTEMS_SMP

void __attribute__((naked)) __aeabi_read_tp(void);

void __attribute__((naked)) __aeabi_read_tp(void)
{
  __asm__ volatile (
    "ldr r0, =_Per_CPU_Information\n"
    "ldr r0, [r0, %[executingoff]]\n"
#if defined(__thumb__) && !defined(__thumb2__)
    "add r0, %[tlsareaoff]\n"
    "ldr r0, [r0]\n"
#else
    "ldr r0, [r0, %[tlsareaoff]]\n"
#endif
    "bx lr\n"
    :
    : [executingoff] "I" (offsetof(Per_CPU_Control, executing)),
      [tlsareaoff] "I" (offsetof(Thread_Control, Start.tls_area))
  );
}

#endif /* RTEMS_SMP */