hc
2024-11-01 2f529f9b558ca1c1bd74be7437a84e4711743404
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
/*
 * Copyright (C) 2006 Gilles Chanteperdrix <gilles.chanteperdrix@xenomai.org>.
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA.
 */
#ifndef _COBALT_ARM_ASM_UAPI_FPTEST_H
#define _COBALT_ARM_ASM_UAPI_FPTEST_H
 
#define __COBALT_HAVE_VFP  0x1
 
static inline void fp_regs_set(int features, unsigned int val)
{
   unsigned long long e[16];
   unsigned int i;
 
   if (features & __COBALT_HAVE_VFP) {
       for (i = 0; i < 16; i++)
           e[i] = val;
 
       /* vldm %0!, {d0-d15},
          AKA fldmiax %0!, {d0-d15} */
       __asm__ __volatile__("ldc p11, cr0, [%0],#32*4":
                    "=r"(i)
                    : "0"(&e[0])
                    : "d0", "d1", "d2", "d3", "d4", "d5",
                      "d6", "d7", "d8", "d9", "d10", "d11",
                      "d12", "d13", "d14", "d15",
                      "memory");
   }
}
 
static inline unsigned int fp_regs_check(int features, unsigned int val,
                    int (*report)(const char *fmt, ...))
{
   unsigned int result = val, i;
   unsigned long long e[16];
 
   if (features & __COBALT_HAVE_VFP) {
       /* vstm %0!, {d0-d15},
          AKA fstmiax %0!, {d0-d15} */
       __asm__ __volatile__("stc p11, cr0, [%0],#32*4":
                    "=r"(i): "0"(&e[0]): "memory");
 
       for (i = 0; i < 16; i++)
           if (e[i] != val) {
               report("d%d: %llu != %u\n", i, e[i], val);
               result = e[i];
           }
   }
 
   return result;
}
 
#endif /* !_COBALT_ARM_ASM_UAPI_FPTEST_H */