RTEMS  5.0.0
All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
cpu_asm.h
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 #ifndef _RTEMS_SCORE_CPU_ASM_H
28 #define _RTEMS_SCORE_CPU_ASM_H
29 
30 #if !ASM
31 
32 #include <rtems/score/basedefs.h>
33 
34 RTEMS_INLINE_ROUTINE uint8_t inport_byte(uint16_t port)
35 {
36  uint8_t ret;
37  __asm__ volatile ( "inb %1, %0"
38  : "=a" (ret)
39  : "Nd" (port) );
40  return ret;
41 }
42 
43 RTEMS_INLINE_ROUTINE void outport_byte(uint16_t port, uint8_t val)
44 {
45  __asm__ volatile ( "outb %0, %1" : : "a" (val), "Nd" (port) );
46 }
47 
48 RTEMS_INLINE_ROUTINE uint16_t amd64_get_cs(void)
49 {
50  uint16_t segment = 0;
51 
52  __asm__ volatile ( "movw %%cs, %0" : "=r" (segment) : "0" (segment) );
53 
54  return segment;
55 }
56 
57 RTEMS_INLINE_ROUTINE void amd64_set_cr3(uint64_t segment)
58 {
59  __asm__ volatile ( "movq %0, %%cr3" : "=r" (segment) : "0" (segment) );
60 }
61 
62 RTEMS_INLINE_ROUTINE void cpuid(
63  uint32_t code, uint32_t *eax, uint32_t *ebx, uint32_t *ecx, uint32_t *edx
64 ) {
65  __asm__ volatile ( "cpuid"
66  : "=a" (*eax), "=b" (*ebx), "=c" (*ecx), "=d" (*edx)
67  : "a" (code) );
68 }
69 
70 RTEMS_INLINE_ROUTINE uint64_t rdmsr(uint32_t msr)
71 {
72  uint32_t low, high;
73  __asm__ volatile ( "rdmsr" :
74  "=a" (low), "=d" (high) :
75  "c" (msr) );
76  return low | (uint64_t) high << 32;
77 }
78 
79 RTEMS_INLINE_ROUTINE void wrmsr(uint32_t msr, uint32_t low, uint32_t high)
80 {
81  __asm__ volatile ( "wrmsr" : :
82  "a" (low), "d" (high), "c" (msr) );
83 }
84 
85 RTEMS_INLINE_ROUTINE void amd64_enable_interrupts(void)
86 {
87  __asm__ volatile ( "sti" );
88 }
89 
90 RTEMS_INLINE_ROUTINE void amd64_disable_interrupts(void)
91 {
92  __asm__ volatile ( "cli" );
93 }
94 
95 RTEMS_INLINE_ROUTINE void stub_io_wait(void)
96 {
97  /* XXX: This likely won't be required on any modern boards, but this function
98  * exists so it's easier to find all the places it may be used.
99  */
100 }
101 
102 #endif /* !ASM */
103 
104 #endif
#define RTEMS_INLINE_ROUTINE
Definition: basedefs.h:65
register struct Per_CPU_Control *_SPARC_Per_CPU_current __asm__("g6")
The pointer to the current per-CPU control is available via register g6.
Definition: inftrees.h:24
Basic Definitions.