source: trunk/hal/x86_64/core/hal_remote.c @ 92

Last change on this file since 92 was 92, checked in by max@…, 7 years ago

fix the definition of hal_remote_spt, and add the *pt ops on
x86_64

File size: 2.6 KB
RevLine 
[25]1/*
2 * hal_remote.c - implementation of Generic Remote Access API for TSAR-MIPS32
3 *
4 * Authors : Mohammed Karaoui (2015)
5 *           Alain Greiner    (2016)
6 *
7 * Copyright (c) UPMC Sorbonne Universites
8 *
9 * This file is part of ALMOS-MKH..
10 *
11 * ALMOS-MKH. is free software; you can redistribute it and/or modify it
12 * under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; version 2.0 of the License.
14 *
15 * ALMOS-MKH. is distributed in the hope that it will be useful, but
16 * WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
18 * General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with ALMOS-MKH.; if not, write to the Free Software Foundation,
22 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
23 */
24
25#include <hal_types.h>
[48]26#include <hal_internal.h>
[25]27
28void hal_remote_sb( xptr_t   xp,
[69]29                    uint8_t  data )
[25]30{
[72]31        *(uint8_t *)xp = data;
[25]32}
33
34void hal_remote_sw( xptr_t    xp,
35                    uint32_t  data )
36{
[72]37        *(uint32_t *)xp = data;
[25]38}
39
40void hal_remote_swd( xptr_t    xp,
41                     uint64_t  data )
42{
[72]43        *(uint64_t *)xp = data;
[25]44}
45
46void hal_remote_spt( xptr_t      xp,
47                     void *      pt )
48{
[92]49        hal_remote_swd( xp , (uint64_t)pt );
[25]50}
51
[72]52uint8_t hal_remote_lb( xptr_t  xp )
[25]53{
[72]54        return *(uint8_t *)xp;
[25]55}
56
57uint32_t hal_remote_lw( xptr_t  xp )
58{
[72]59        return *(uint32_t *)xp;
[25]60}
61
62uint64_t hal_remote_lwd( xptr_t  xp )
63{
[72]64        return *(uint64_t *)xp;
[25]65}
66
[92]67void *hal_remote_lpt( xptr_t    xp )
[25]68{
[92]69        return (void *)hal_remote_lwd( xp );
[25]70}
71
72uint32_t hal_remote_lw_unc( xptr_t  xp )
73{
[48]74        x86_panic((char *)__func__);
[25]75        return 0;
76}
77
78bool_t hal_remote_atomic_cas( xptr_t    xp,
79                              uint32_t  old,
80                              uint32_t  new )
81{
[48]82        x86_panic((char *)__func__);
[25]83        return 0;
84}
85
86uint32_t hal_remote_atomic_add( xptr_t   xp, 
87                                uint32_t incr )
[48]88{
89        x86_panic((char *)__func__);
[25]90        return 0;
91}
92
93uint32_t hal_remote_atomic_and( xptr_t   xp, 
94                                uint32_t mask )
[48]95{
96        x86_panic((char *)__func__);
[25]97        return 0;
98}
99
100uint32_t hal_remote_atomic_or( xptr_t   xp, 
101                               uint32_t mask )
[48]102{
103        x86_panic((char *)__func__);
[25]104        return 0;
105}
106
107error_t hal_remote_atomic_try_add( xptr_t     xp,
108                                   uint32_t   incr,
109                                   uint32_t * old )
110{
[48]111        x86_panic((char *)__func__);
[25]112        return 0;
113}
114
115void hal_remote_memcpy( xptr_t   dst,
116                        xptr_t   src,
117                        uint32_t size )
118{
[48]119        x86_panic((char *)__func__);
[25]120}
121
Note: See TracBrowser for help on using the repository browser.