[a06aa8b] | 1 | /*
|
---|
| 2 | * Copyright (C) 2017 The Contributors
|
---|
| 3 | *
|
---|
| 4 | * This program is free software: you can redistribute it and/or modify
|
---|
| 5 | * it under the terms of the GNU General Public License as published by
|
---|
| 6 | * the Free Software Foundation, either version 3 of the License, or (at
|
---|
| 7 | * your option) any later version.
|
---|
| 8 | *
|
---|
| 9 | * This program is distributed in the hope that it will be useful, but
|
---|
| 10 | * WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
| 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
---|
| 12 | * General Public License for more details.
|
---|
| 13 | *
|
---|
| 14 | * A copy of the GNU General Public License can be found in the file
|
---|
[2147e53] | 15 | * "gpl.txt" in the top directory of this repository.
|
---|
[a06aa8b] | 16 | */
|
---|
| 17 |
|
---|
| 18 | #include <all.h>
|
---|
| 19 |
|
---|
[4c71d39] | 20 | #define ver(...) _ver(fpu_verbose, 0, __VA_ARGS__)
|
---|
| 21 | #define ver2(...) _ver(fpu_verbose, 1, __VA_ARGS__)
|
---|
| 22 | #define ver3(...) _ver(fpu_verbose, 2, __VA_ARGS__)
|
---|
[a06aa8b] | 23 |
|
---|
[4c71d39] | 24 | int32_t fpu_verbose = 0;
|
---|
[a06aa8b] | 25 |
|
---|
| 26 | void fpu_init(void)
|
---|
| 27 | {
|
---|
| 28 | ver("fpu init");
|
---|
| 29 | }
|
---|
| 30 |
|
---|
| 31 | void fpu_quit(void)
|
---|
| 32 | {
|
---|
| 33 | ver("fpu quit");
|
---|
| 34 | }
|
---|
| 35 |
|
---|
[3c30832] | 36 | bool fpu_exec(void)
|
---|
[a06aa8b] | 37 | {
|
---|
[4c71d39] | 38 | ver3("fpu exec");
|
---|
[3c30832] | 39 | return false;
|
---|
[a06aa8b] | 40 | }
|
---|
| 41 |
|
---|
| 42 | uint32_t fpu_read(uint32_t off, int32_t sz)
|
---|
| 43 | {
|
---|
[4c71d39] | 44 | ver2("fpu rd 0x%04x:%d", off, sz * 8);
|
---|
[a06aa8b] | 45 | return 0;
|
---|
| 46 | }
|
---|
| 47 |
|
---|
| 48 | void fpu_write(uint32_t off, int32_t sz, uint32_t val)
|
---|
| 49 | {
|
---|
[4c71d39] | 50 | ver2("fpu wr 0x%04x:%d 0x%0*x", off, sz * 8, sz * 2, val);
|
---|
[a06aa8b] | 51 | }
|
---|