source: trunk/hal/x86_64/core/hal_special.c @ 101

Last change on this file since 101 was 101, checked in by alain, 7 years ago

euh...

File size: 2.9 KB
RevLine 
[25]1/*
[46]2 * hal_special.c - implementation of TLS API for x86_64
[71]3 *
[46]4 * Copyright (c) 2017 Maxime Villard
[71]5 *
[46]6 * This file is part of ALMOS-MKH.
[25]7 *
[46]8 * ALMOS-MKH is free software; you can redistribute it and/or modify it
[25]9 * under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; version 2.0 of the License.
11 *
[46]12 * ALMOS-MKH is distributed in the hope that it will be useful, but
[25]13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15 * General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with ALMOS-MKH.; if not, write to the Free Software Foundation,
19 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
20 */
21
22#include <hal_types.h>
[82]23#include <hal_apic.h>
[25]24#include <hal_special.h>
[46]25#include <hal_register.h>
26#include <hal_internal.h>
[25]27
28struct thread_s;
29
[46]30typedef struct cpu_info {
31        void *ci_self;
32        uint32_t ci_gid;
33        uint32_t ci_lid;
34        struct thread_s *ci_thr;
35} cpu_info_t;
36
37cpu_info_t cpu0 __in_kdata;
38
39cpu_info_t *curcpu()
40{
41        cpu_info_t *ci;
42
43        __asm volatile("movq %%gs:%1, %0" :
44            "=r" (ci) :
45            "m"
46            (*(cpu_info_t * const *)offsetof(cpu_info_t, ci_self)));
47        return ci;
48}
49
50static void hal_tls_load_cpu(cpu_info_t *ci)
51{
52        wrmsr(MSR_FSBASE, 0);
53        wrmsr(MSR_GSBASE, (uint64_t)ci);
54        wrmsr(MSR_KERNELGSBASE, 0);
55}
56
57void hal_tls_init_cpu0()
58{
59        cpu_info_t *ci = &cpu0;
60
61        memset(ci, 0, sizeof(cpu_info_t));
62
63        ci->ci_self = ci;
64        ci->ci_gid = hal_lapic_gid();
65        ci->ci_lid = 0; /* XXX */
66
67        hal_tls_load_cpu(ci);
68}
69
[25]70gid_t hal_get_gid()
71{
[46]72        return curcpu()->ci_gid;
[25]73}
74
[101]75uint32_t hal_get_cycles()
[25]76{
[94]77        return (uint32_t)rdtsc(); // XXX will be fixed soon
[25]78}
79
80struct thread_s * hal_get_current_thread()
81{
[46]82        return curcpu()->ci_thr;
[25]83}
84
85void hal_set_current_thread( struct thread_s * thread )
[71]86{
[46]87        curcpu()->ci_thr = thread;
[25]88}
89
[46]90/* -------------------------------------------------------------------------- */
91
[25]92void hal_fpu_enable()
93{
[46]94        x86_panic((char *)__func__);
[25]95}
96
97void hal_fpu_disable()
98{
[46]99        x86_panic((char *)__func__);
[25]100}
101
102uint32_t hal_get_stack()
103{
[46]104        x86_panic((char *)__func__);
[25]105        return 0;
106}
107
108uint32_t hal_set_stack( void * new_val )
109{
[46]110        x86_panic((char *)__func__);
[25]111        return 0;
112}
113
114uint32_t hal_get_bad_vaddr()
115{
[46]116        x86_panic((char *)__func__);
[25]117        return 0;
118}
119
120uint32_t hal_uncached_read( uint32_t * ptr )
121{
[46]122        x86_panic((char *)__func__);
[25]123        return 0;
124}
125
126void hal_invalid_dcache_line( void * ptr )
127{
[46]128        x86_panic((char *)__func__);
[25]129}
130
131void hal_wbflush()
132{
[46]133        x86_panic((char *)__func__);
[25]134}
135
136void hal_rdbar()
137{
[46]138        x86_panic((char *)__func__);
[25]139}
140
141void hal_core_sleep()
142{
[46]143        x86_panic((char *)__func__);
[25]144}
145
146void hal_fixed_delay( uint32_t delay )
[71]147{
[46]148        x86_panic((char *)__func__);
[25]149}
150
151void hal_get_mmu_excp( intptr_t * mmu_ins_excp_code,
152                       intptr_t * mmu_ins_bad_vaddr,
153                       intptr_t * mmu_dat_excp_code,
154                       intptr_t * mmu_dat_bad_vaddr )
155{
[46]156        x86_panic((char *)__func__);
[25]157}
Note: See TracBrowser for help on using the repository browser.