source: trunk/hal/x86_64/hal_remote.c @ 48

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

Put panics everywhere

File size: 2.7 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,
29                    char     data )
30{
[48]31        x86_panic((char *)__func__);
[25]32}
33
34void hal_remote_sw( xptr_t    xp,
35                    uint32_t  data )
36{
[48]37        x86_panic((char *)__func__);
[25]38}
39
40void hal_remote_swd( xptr_t    xp,
41                     uint64_t  data )
42{
[48]43        x86_panic((char *)__func__);
[25]44}
45
46void hal_remote_spt( xptr_t      xp,
47                     void *      pt )
48{
[48]49        x86_panic((char *)__func__);
[25]50}
51
52char hal_remote_lb( xptr_t  xp )
53{
[48]54        x86_panic((char *)__func__);
[25]55        return 0;
56}
57
58uint32_t hal_remote_lw( xptr_t  xp )
59{
[48]60        x86_panic((char *)__func__);
[25]61        return 0;
62}
63
64uint64_t hal_remote_lwd( xptr_t  xp )
65{
[48]66        x86_panic((char *)__func__);
[25]67        return 0;
68}
69
70void * hal_remote_lpt( xptr_t    xp,
71                       void *    pt )
72{
[48]73        x86_panic((char *)__func__);
[25]74        return NULL;
75}
76
77uint32_t hal_remote_lw_unc( xptr_t  xp )
78{
[48]79        x86_panic((char *)__func__);
[25]80        return 0;
81}
82
83bool_t hal_remote_atomic_cas( xptr_t    xp,
84                              uint32_t  old,
85                              uint32_t  new )
86{
[48]87        x86_panic((char *)__func__);
[25]88        return 0;
89}
90
91uint32_t hal_remote_atomic_add( xptr_t   xp, 
92                                uint32_t incr )
[48]93{
94        x86_panic((char *)__func__);
[25]95        return 0;
96}
97
98uint32_t hal_remote_atomic_and( xptr_t   xp, 
99                                uint32_t mask )
[48]100{
101        x86_panic((char *)__func__);
[25]102        return 0;
103}
104
105uint32_t hal_remote_atomic_or( xptr_t   xp, 
106                               uint32_t mask )
[48]107{
108        x86_panic((char *)__func__);
[25]109        return 0;
110}
111
112error_t hal_remote_atomic_try_add( xptr_t     xp,
113                                   uint32_t   incr,
114                                   uint32_t * old )
115{
[48]116        x86_panic((char *)__func__);
[25]117        return 0;
118}
119
120void hal_remote_memcpy( xptr_t   dst,
121                        xptr_t   src,
122                        uint32_t size )
123{
[48]124        x86_panic((char *)__func__);
[25]125}
126
Note: See TracBrowser for help on using the repository browser.