| [8ff9484] | 1 | /*
|
|---|
| 2 | * Copyright (c) 2012 Jan Vesely
|
|---|
| 3 | * All rights reserved.
|
|---|
| 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 | *
|
|---|
| 9 | * - Redistributions of source code must retain the above copyright
|
|---|
| 10 | * notice, this list of conditions and the following disclaimer.
|
|---|
| 11 | * - Redistributions in binary form must reproduce the above copyright
|
|---|
| 12 | * notice, this list of conditions and the following disclaimer in the
|
|---|
| 13 | * documentation and/or other materials provided with the distribution.
|
|---|
| 14 | * - The name of the author may not be used to endorse or promote products
|
|---|
| 15 | * derived from this software without specific prior written permission.
|
|---|
| 16 | *
|
|---|
| 17 | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
|---|
| 18 | * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
|---|
| 19 | * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
|---|
| 20 | * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|---|
| 21 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
|---|
| 22 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|---|
| 23 | * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|---|
| 24 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|---|
| 25 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
|---|
| 26 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|---|
| 27 | */
|
|---|
| 28 |
|
|---|
| [c5429fe] | 29 | /** @addtogroup kernel_arm32
|
|---|
| [8ff9484] | 30 | * @{
|
|---|
| 31 | */
|
|---|
| 32 | /** @file
|
|---|
| 33 | * @brief arm32 FPU context
|
|---|
| 34 | */
|
|---|
| 35 |
|
|---|
| 36 | #include <fpu_context.h>
|
|---|
| 37 | #include <arch.h>
|
|---|
| [ce60be1] | 38 | #include <arch/types.h>
|
|---|
| [6a6ebde] | 39 | #include <arch/security_ext.h>
|
|---|
| [7e87436] | 40 | #include <arch/cp15.h>
|
|---|
| [8ff9484] | 41 | #include <cpu.h>
|
|---|
| 42 |
|
|---|
| 43 | #define FPSID_IMPLEMENTER(r) ((r) >> 24)
|
|---|
| 44 | #define FPSID_SW_ONLY_FLAG (1 << 23)
|
|---|
| 45 | #define FPSID_SUBACHITECTURE(r) (((r) >> 16) & 0x7f)
|
|---|
| 46 | #define FPSID_PART_NUMBER(r) (((r) >> 8) & 0xff)
|
|---|
| 47 | #define FPSID_VARIANT(r) (((r) >> 4) 0xf)
|
|---|
| 48 | #define FPSID_REVISION(r) (((r) >> 0) 0xf)
|
|---|
| [ce60be1] | 49 |
|
|---|
| [8ff9484] | 50 | enum {
|
|---|
| 51 | FPU_VFPv1 = 0x00,
|
|---|
| 52 | FPU_VFPv2_COMMONv1 = 0x01,
|
|---|
| [0237380] | 53 | FPU_VFPv3_COMMONv2 = 0x02,
|
|---|
| [ce60be1] | 54 | FPU_VFPv3_NO_COMMON = 0x3, /* Does not support fpu exc. traps */
|
|---|
| [0237380] | 55 | FPU_VFPv3_COMMONv3 = 0x4,
|
|---|
| [8ff9484] | 56 | };
|
|---|
| 57 |
|
|---|
| [b9f72b97] | 58 | extern uint32_t fpsid_read(void);
|
|---|
| 59 | extern uint32_t mvfr0_read(void);
|
|---|
| 60 |
|
|---|
| [0237380] | 61 | enum {
|
|---|
| [ce60be1] | 62 | FPEXC_EX_FLAG = (1 << 31),
|
|---|
| 63 | FPEXC_ENABLED_FLAG = (1 << 30),
|
|---|
| 64 | };
|
|---|
| [b9f72b97] | 65 | extern uint32_t fpexc_read(void);
|
|---|
| 66 | extern void fpexc_write(uint32_t);
|
|---|
| [ce60be1] | 67 |
|
|---|
| 68 | /** ARM Architecture Reference Manual ch. B4.1.58, p. B$-1551 */
|
|---|
| 69 | enum {
|
|---|
| 70 | FPSCR_N_FLAG = (1 << 31),
|
|---|
| 71 | FPSCR_Z_FLAG = (1 << 30),
|
|---|
| 72 | FPSCR_C_FLAG = (1 << 29),
|
|---|
| 73 | FPSCR_V_FLAG = (1 << 28),
|
|---|
| 74 | FPSCR_QC_FLAG = (1 << 27),
|
|---|
| 75 | FPSCR_AHP_FLAG = (1 << 26),
|
|---|
| 76 | FPSCR_DN_FLAG = (1 << 25),
|
|---|
| 77 | FPSCR_FZ_FLAG = (1 << 24),
|
|---|
| 78 | FPSCR_ROUND_MODE_MASK = (0x3 << 22),
|
|---|
| 79 | FPSCR_ROUND_TO_NEAREST = (0x0 << 22),
|
|---|
| 80 | FPSCR_ROUND_TO_POS_INF = (0x1 << 22),
|
|---|
| 81 | FPSCR_ROUND_TO_NEG_INF = (0x2 << 22),
|
|---|
| 82 | FPSCR_ROUND_TO_ZERO = (0x3 << 22),
|
|---|
| 83 | FPSCR_STRIDE_MASK = (0x3 << 20),
|
|---|
| 84 | FPSCR_STRIDE_SHIFT = 20,
|
|---|
| 85 | FPSCR_LEN_MASK = (0x7 << 16),
|
|---|
| 86 | FPSCR_LEN_SHIFT = 16,
|
|---|
| 87 | FPSCR_DENORMAL_EN_FLAG = (1 << 15),
|
|---|
| 88 | FPSCR_INEXACT_EN_FLAG = (1 << 12),
|
|---|
| 89 | FPSCR_UNDERFLOW_EN_FLAG = (1 << 11),
|
|---|
| 90 | FPSCR_OVERFLOW_EN_FLAG = (1 << 10),
|
|---|
| 91 | FPSCR_ZERO_DIV_EN_FLAG = (1 << 9),
|
|---|
| 92 | FPSCR_INVALID_OP_EN_FLAG = (1 << 8),
|
|---|
| 93 | FPSCR_DENORMAL_FLAG = (1 << 7),
|
|---|
| 94 | FPSCR_INEXACT_FLAG = (1 << 4),
|
|---|
| 95 | FPSCR_UNDERFLOW_FLAG = (1 << 3),
|
|---|
| 96 | FPSCR_OVERLOW_FLAG = (1 << 2),
|
|---|
| 97 | FPSCR_DIV_ZERO_FLAG = (1 << 1),
|
|---|
| 98 | FPSCR_INVALID_OP_FLAG = (1 << 0),
|
|---|
| 99 |
|
|---|
| 100 | FPSCR_EN_ALL = FPSCR_DENORMAL_EN_FLAG | FPSCR_INEXACT_EN_FLAG | FPSCR_UNDERFLOW_EN_FLAG | FPSCR_OVERFLOW_EN_FLAG | FPSCR_ZERO_DIV_EN_FLAG | FPSCR_INVALID_OP_EN_FLAG,
|
|---|
| [0237380] | 101 | };
|
|---|
| [193d280c] | 102 |
|
|---|
| [de36fdd] | 103 | extern uint32_t fpscr_read(void);
|
|---|
| 104 | extern void fpscr_write(uint32_t);
|
|---|
| [0237380] | 105 |
|
|---|
| [de36fdd] | 106 | extern void fpu_context_save_s32(fpu_context_t *);
|
|---|
| 107 | extern void fpu_context_restore_s32(fpu_context_t *);
|
|---|
| 108 | extern void fpu_context_save_d16(fpu_context_t *);
|
|---|
| 109 | extern void fpu_context_restore_d16(fpu_context_t *);
|
|---|
| 110 | extern void fpu_context_save_d32(fpu_context_t *);
|
|---|
| 111 | extern void fpu_context_restore_d32(fpu_context_t *);
|
|---|
| [0237380] | 112 |
|
|---|
| [8ff9484] | 113 | static void (*save_context)(fpu_context_t *ctx);
|
|---|
| 114 | static void (*restore_context)(fpu_context_t *ctx);
|
|---|
| 115 |
|
|---|
| [193d280c] | 116 | static int fpu_have_coprocessor_access(void)
|
|---|
| [8ff9484] | 117 | {
|
|---|
| [6ff23ff] | 118 | /*
|
|---|
| 119 | * The register containing the information (CPACR) is not available
|
|---|
| 120 | * on armv6-. Rely on user decision to use CONFIG_FPU.
|
|---|
| 121 | */
|
|---|
| [5c4356b] | 122 | #ifdef PROCESSOR_ARCH_armv7_a
|
|---|
| [97718a5] | 123 | const uint32_t cpacr = CPACR_read();
|
|---|
| [6ff23ff] | 124 | /*
|
|---|
| 125 | * FPU needs access to coprocessor 10 and 11.
|
|---|
| 126 | * Moreover, they need to have same access enabled
|
|---|
| 127 | */
|
|---|
| [7e87436] | 128 | if (((cpacr & CPACR_CP_MASK(10)) != CPACR_CP_FULL_ACCESS(10)) &&
|
|---|
| [1433ecda] | 129 | ((cpacr & CPACR_CP_MASK(11)) != CPACR_CP_FULL_ACCESS(11))) {
|
|---|
| [7e87436] | 130 | printf("No access to CP10 and CP11: %" PRIx32 "\n", cpacr);
|
|---|
| 131 | return 0;
|
|---|
| 132 | }
|
|---|
| 133 | #endif
|
|---|
| [6ff23ff] | 134 |
|
|---|
| [7e87436] | 135 | return 1;
|
|---|
| [8ff9484] | 136 | }
|
|---|
| 137 |
|
|---|
| [61b5cf0c] | 138 | /** Enable coprocessor access. Turn both non-secure mode bit and generic access.
|
|---|
| 139 | * Cortex A8 Manual says:
|
|---|
| 140 | * "You must execute an Instruction Memory Barrier (IMB) sequence immediately
|
|---|
| 141 | * after an update of the Coprocessor Access Control Register, see Memory
|
|---|
| 142 | * Barriers in the ARM Architecture Reference Manual. You must not attempt to
|
|---|
| 143 | * execute any instructions that are affected by the change of access rights
|
|---|
| 144 | * between the IMB sequence and the register update."
|
|---|
| 145 | * Cortex a8 TRM ch. 3.2.27. c1, Coprocessor Access Control Register
|
|---|
| 146 | *
|
|---|
| 147 | * @note do we need to call secure monitor here?
|
|---|
| [8ff9484] | 148 | */
|
|---|
| [193d280c] | 149 | static void fpu_enable_coprocessor_access(void)
|
|---|
| [8ff9484] | 150 | {
|
|---|
| [6ff23ff] | 151 | /*
|
|---|
| 152 | * The register containing the information (CPACR) is not available
|
|---|
| 153 | * on armv6-. Rely on user decision to use CONFIG_FPU.
|
|---|
| 154 | */
|
|---|
| [bafd198] | 155 | #ifdef PROCESSOR_ARCH_armv7_a
|
|---|
| [61b5cf0c] | 156 | /* Allow coprocessor access */
|
|---|
| [97718a5] | 157 | uint32_t cpacr = CPACR_read();
|
|---|
| [6ff23ff] | 158 | /*
|
|---|
| 159 | * FPU needs access to coprocessor 10 and 11.
|
|---|
| 160 | * Moreover, they need to have same access enabled
|
|---|
| 161 | */
|
|---|
| [97718a5] | 162 | cpacr &= ~(CPACR_CP_MASK(10) | CPACR_CP_MASK(11));
|
|---|
| [07d62a9] | 163 | cpacr |= (CPACR_CP_FULL_ACCESS(10) | CPACR_CP_FULL_ACCESS(11));
|
|---|
| [97718a5] | 164 | CPACR_write(cpacr);
|
|---|
| [bafd198] | 165 | #endif
|
|---|
| [8ff9484] | 166 | }
|
|---|
| 167 |
|
|---|
| 168 | void fpu_init(void)
|
|---|
| [36e5eb3] | 169 | {
|
|---|
| [7e87436] | 170 | /* Check if we have access */
|
|---|
| [664fd6d5] | 171 | if (!fpu_have_coprocessor_access())
|
|---|
| 172 | return;
|
|---|
| 173 |
|
|---|
| [0237380] | 174 | /* Clear all fpu flags */
|
|---|
| 175 | fpexc_write(0);
|
|---|
| [957ce9a5] | 176 | fpu_enable();
|
|---|
| [6ff23ff] | 177 | /*
|
|---|
| 178 | * Mask all exception traps,
|
|---|
| [ce60be1] | 179 | * The bits are RAZ/WI on archs that don't support fpu exc traps.
|
|---|
| 180 | */
|
|---|
| 181 | fpscr_write(fpscr_read() & ~FPSCR_EN_ALL);
|
|---|
| [36e5eb3] | 182 | }
|
|---|
| 183 |
|
|---|
| 184 | void fpu_setup(void)
|
|---|
| [8ff9484] | 185 | {
|
|---|
| [338d54a7] | 186 | uint32_t mvfr0;
|
|---|
| 187 |
|
|---|
| [7e87436] | 188 | /* Enable coprocessor access*/
|
|---|
| 189 | fpu_enable_coprocessor_access();
|
|---|
| 190 |
|
|---|
| 191 | /* Check if we succeeded */
|
|---|
| [664fd6d5] | 192 | if (!fpu_have_coprocessor_access())
|
|---|
| 193 | return;
|
|---|
| 194 |
|
|---|
| [de36fdd] | 195 | const uint32_t fpsid = fpsid_read();
|
|---|
| [65871bb] | 196 | if (fpsid & FPSID_SW_ONLY_FLAG) {
|
|---|
| 197 | printf("No FPU avaiable\n");
|
|---|
| 198 | return;
|
|---|
| 199 | }
|
|---|
| [15b6715] | 200 | switch (FPSID_SUBACHITECTURE(fpsid)) {
|
|---|
| [8ff9484] | 201 | case FPU_VFPv1:
|
|---|
| [36e5eb3] | 202 | printf("Detected VFPv1\n");
|
|---|
| [8ff9484] | 203 | save_context = fpu_context_save_s32;
|
|---|
| 204 | restore_context = fpu_context_restore_s32;
|
|---|
| 205 | break;
|
|---|
| 206 | case FPU_VFPv2_COMMONv1:
|
|---|
| [36e5eb3] | 207 | printf("Detected VFPv2\n");
|
|---|
| [8ff9484] | 208 | save_context = fpu_context_save_d16;
|
|---|
| 209 | restore_context = fpu_context_restore_d16;
|
|---|
| 210 | break;
|
|---|
| 211 | case FPU_VFPv3_COMMONv2:
|
|---|
| [0237380] | 212 | case FPU_VFPv3_NO_COMMON:
|
|---|
| [338d54a7] | 213 | case FPU_VFPv3_COMMONv3:
|
|---|
| 214 | mvfr0 = mvfr0_read();
|
|---|
| [8ff9484] | 215 | /* See page B4-1637 */
|
|---|
| 216 | if ((mvfr0 & 0xf) == 0x1) {
|
|---|
| [36e5eb3] | 217 | printf("Detected VFPv3+ with 16 regs\n");
|
|---|
| [8ff9484] | 218 | save_context = fpu_context_save_d16;
|
|---|
| 219 | restore_context = fpu_context_restore_d16;
|
|---|
| [0237380] | 220 | } else {
|
|---|
| 221 | printf("Detected VFPv3+ with 32 regs\n");
|
|---|
| 222 | save_context = fpu_context_save_d32;
|
|---|
| 223 | restore_context = fpu_context_restore_d32;
|
|---|
| [8ff9484] | 224 | }
|
|---|
| 225 | break;
|
|---|
| [36e5eb3] | 226 | }
|
|---|
| [8ff9484] | 227 | }
|
|---|
| 228 |
|
|---|
| [0237380] | 229 | bool handle_if_fpu_exception(void)
|
|---|
| 230 | {
|
|---|
| [664fd6d5] | 231 | /* Check if we have access */
|
|---|
| 232 | if (!fpu_have_coprocessor_access())
|
|---|
| 233 | return false;
|
|---|
| 234 |
|
|---|
| [0237380] | 235 | const uint32_t fpexc = fpexc_read();
|
|---|
| 236 | if (fpexc & FPEXC_ENABLED_FLAG) {
|
|---|
| [ce60be1] | 237 | const uint32_t fpscr = fpscr_read();
|
|---|
| 238 | printf("FPU exception\n"
|
|---|
| 239 | "\tFPEXC: %" PRIx32 " FPSCR: %" PRIx32 "\n", fpexc, fpscr);
|
|---|
| [0237380] | 240 | return false;
|
|---|
| 241 | }
|
|---|
| 242 | #ifdef CONFIG_FPU_LAZY
|
|---|
| 243 | scheduler_fpu_lazy_request();
|
|---|
| 244 | return true;
|
|---|
| 245 | #else
|
|---|
| 246 | return false;
|
|---|
| 247 | #endif
|
|---|
| 248 | }
|
|---|
| 249 |
|
|---|
| [8ff9484] | 250 | void fpu_enable(void)
|
|---|
| 251 | {
|
|---|
| [664fd6d5] | 252 | /* Check if we have access */
|
|---|
| 253 | if (!fpu_have_coprocessor_access())
|
|---|
| 254 | return;
|
|---|
| [8ff9484] | 255 | /* Enable FPU instructions */
|
|---|
| [0237380] | 256 | fpexc_write(fpexc_read() | FPEXC_ENABLED_FLAG);
|
|---|
| [8ff9484] | 257 | }
|
|---|
| 258 |
|
|---|
| 259 | void fpu_disable(void)
|
|---|
| 260 | {
|
|---|
| [664fd6d5] | 261 | /* Check if we have access */
|
|---|
| 262 | if (!fpu_have_coprocessor_access())
|
|---|
| 263 | return;
|
|---|
| [8ff9484] | 264 | /* Disable FPU instructions */
|
|---|
| [0237380] | 265 | fpexc_write(fpexc_read() & ~FPEXC_ENABLED_FLAG);
|
|---|
| [8ff9484] | 266 | }
|
|---|
| 267 |
|
|---|
| 268 | void fpu_context_save(fpu_context_t *ctx)
|
|---|
| 269 | {
|
|---|
| [bedd81b] | 270 | /* This is only necessary if we enable fpu exceptions. */
|
|---|
| 271 | #if 0
|
|---|
| [4f843ded] | 272 | const uint32_t fpexc = fpexc_read();
|
|---|
| 273 |
|
|---|
| 274 | if (fpexc & FPEXC_EX_FLAG) {
|
|---|
| 275 | printf("EX FPU flag is on, things will fail\n");
|
|---|
| 276 | //TODO implement common subarch context saving
|
|---|
| 277 | }
|
|---|
| [bedd81b] | 278 | #endif
|
|---|
| [65871bb] | 279 | if (save_context)
|
|---|
| 280 | save_context(ctx);
|
|---|
| [8ff9484] | 281 | }
|
|---|
| 282 |
|
|---|
| 283 | void fpu_context_restore(fpu_context_t *ctx)
|
|---|
| 284 | {
|
|---|
| [65871bb] | 285 | if (restore_context)
|
|---|
| 286 | restore_context(ctx);
|
|---|
| [8ff9484] | 287 | }
|
|---|