summaryrefslogtreecommitdiff
path: root/bin/nv_init.c
diff options
context:
space:
mode:
Diffstat (limited to 'bin/nv_init.c')
-rw-r--r--bin/nv_init.c42
1 files changed, 42 insertions, 0 deletions
diff --git a/bin/nv_init.c b/bin/nv_init.c
new file mode 100644
index 000000000..0f901a4c7
--- /dev/null
+++ b/bin/nv_init.c
@@ -0,0 +1,42 @@
+#include <stdlib.h>
+#include <limits.h>
+#include <unistd.h>
+
+#include <core/os.h>
+#include <core/object.h>
+#include <core/class.h>
+
+#include <core/device.h>
+
+struct nouveau_object *client;
+struct nouveau_object *device;
+
+int
+main(int argc, char **argv)
+{
+ int ret, c;
+
+ while ((c = getopt(argc, argv, "-")) != -1) {
+ switch (c) {
+ case 1:
+ return -EINVAL;
+ }
+ }
+
+ ret = os_client_new(NULL, "trace", argc, argv, &client);
+ if (ret)
+ return ret;
+
+ ret = nouveau_object_new(client, ~0, 0, 0x0080,
+ &(struct nv_device_class) {
+ .device = ~0ULL,
+ .disable = 0ULL,
+ .debug0 = 0ULL,
+ }, sizeof(struct nv_device_class), &device);
+ if (ret)
+ return ret;
+
+ os_client_del(&client);
+ nouveau_object_debug();
+ return ret;
+}