summaryrefslogtreecommitdiff
path: root/lib/mesa/src/gallium/targets/pipe-loader/pipe_r300.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/mesa/src/gallium/targets/pipe-loader/pipe_r300.c')
-rw-r--r--lib/mesa/src/gallium/targets/pipe-loader/pipe_r300.c40
1 files changed, 40 insertions, 0 deletions
diff --git a/lib/mesa/src/gallium/targets/pipe-loader/pipe_r300.c b/lib/mesa/src/gallium/targets/pipe-loader/pipe_r300.c
new file mode 100644
index 000000000..368b8c223
--- /dev/null
+++ b/lib/mesa/src/gallium/targets/pipe-loader/pipe_r300.c
@@ -0,0 +1,40 @@
+#include "target-helpers/inline_debug_helper.h"
+#include "state_tracker/drm_driver.h"
+#include "radeon/drm/radeon_drm_public.h"
+#include "radeon/radeon_winsys.h"
+#include "r300/r300_public.h"
+
+static struct pipe_screen *
+create_screen(int fd)
+{
+ struct radeon_winsys *sws;
+
+ sws = radeon_drm_winsys_create(fd, r300_screen_create);
+ return sws ? debug_screen_wrap(sws->screen) : NULL;
+}
+
+static const struct drm_conf_ret throttle_ret = {
+ .type = DRM_CONF_INT,
+ .val.val_int = 2,
+};
+
+static const struct drm_conf_ret share_fd_ret = {
+ .type = DRM_CONF_BOOL,
+ .val.val_int = true,
+};
+
+static const struct drm_conf_ret *drm_configuration(enum drm_conf conf)
+{
+ switch (conf) {
+ case DRM_CONF_THROTTLE:
+ return &throttle_ret;
+ case DRM_CONF_SHARE_FD:
+ return &share_fd_ret;
+ default:
+ break;
+ }
+ return NULL;
+}
+
+PUBLIC
+DRM_DRIVER_DESCRIPTOR("r300", "radeon", create_screen, drm_configuration)