summaryrefslogtreecommitdiff
path: root/src/gallium/drivers/v3d/v3d_simulator_wrapper.h
diff options
context:
space:
mode:
authorAlejandro Piñeiro <apinheiro@igalia.com>2019-11-29 11:17:18 +0100
committerMarge Bot <eric+marge@anholt.net>2020-06-27 00:06:58 +0000
commit583d7d3d8d0d14d636340b0f12f72db7b0148ceb (patch)
tree23fb52b729ab39bf31160a673bb409c7c51325f0 /src/gallium/drivers/v3d/v3d_simulator_wrapper.h
parent4fccbd0ea60280fd1e9cb0728ba828783fb20b2c (diff)
v3d: moving v3d simulator to src/broadcom
So it could be used by both the OpenGL and the Vulkan driver. In addition to the move, some small changes were needed to be made on the API. For example, the simulator was receiving v3d_screen on initialization, and that code setted v3d_screen->sim_file. Now it returns the new sim_file created. Reviewed-by: Eric Anholt <eric@anholt.net> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/5666>
Diffstat (limited to 'src/gallium/drivers/v3d/v3d_simulator_wrapper.h')
-rw-r--r--src/gallium/drivers/v3d/v3d_simulator_wrapper.h45
1 files changed, 0 insertions, 45 deletions
diff --git a/src/gallium/drivers/v3d/v3d_simulator_wrapper.h b/src/gallium/drivers/v3d/v3d_simulator_wrapper.h
deleted file mode 100644
index b20ea2484b4..00000000000
--- a/src/gallium/drivers/v3d/v3d_simulator_wrapper.h
+++ /dev/null
@@ -1,45 +0,0 @@
-/*
- * Copyright © 2017 Broadcom
- *
- * Permission is hereby granted, free of charge, to any person obtaining a
- * copy of this software and associated documentation files (the "Software"),
- * to deal in the Software without restriction, including without limitation
- * the rights to use, copy, modify, merge, publish, distribute, sublicense,
- * and/or sell copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following conditions:
- *
- * The above copyright notice and this permission notice (including the next
- * paragraph) shall be included in all copies or substantial portions of the
- * Software.
- *
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
- * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
- * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
- * IN THE SOFTWARE.
- */
-
-#include <stdint.h>
-#include <stdlib.h>
-
-struct v3d_hw;
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-struct v3d_hw *v3d_hw_auto_new(void *params);
-uint32_t v3d_hw_get_mem(const struct v3d_hw *hw, size_t *size, void **p);
-bool v3d_hw_alloc_mem(struct v3d_hw *hw, size_t min_size);
-bool v3d_hw_has_gca(struct v3d_hw *hw);
-uint32_t v3d_hw_read_reg(struct v3d_hw *hw, uint32_t reg);
-void v3d_hw_write_reg(struct v3d_hw *hw, uint32_t reg, uint32_t val);
-void v3d_hw_tick(struct v3d_hw *hw);
-int v3d_hw_get_version(struct v3d_hw *hw);
-void v3d_hw_set_isr(struct v3d_hw *hw, void (*isr)(uint32_t status));
-
-#ifdef __cplusplus
-}
-#endif