2 * Copyright 2007 Nouveau Project
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
11 * The above copyright notice and this permission notice shall be included in
12 * all copies or substantial portions of the Software.
14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
17 * THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
18 * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF
19 * OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
27 #include "nouveau_private.h"
29 #if NOUVEAU_DRM_HEADER_PATCHLEVEL != 12
30 #error nouveau_drm.h does not match expected patchlevel, update libdrm.
34 nouveau_device_open_existing(struct nouveau_device
**dev
, int close
,
35 int fd
, drm_context_t ctx
)
37 struct nouveau_device_priv
*nvdev
;
45 ver
= drmGetVersion(fd
);
46 if (!ver
|| ver
->version_patchlevel
!= NOUVEAU_DRM_HEADER_PATCHLEVEL
)
50 nvdev
= calloc(1, sizeof(*nvdev
));
55 nvdev
->needs_close
= close
;
57 ret
= drmCommandNone(nvdev
->fd
, DRM_NOUVEAU_CARD_INIT
);
59 nouveau_device_close((void *)&nvdev
);
63 ret
= nouveau_device_get_param(&nvdev
->base
,
64 NOUVEAU_GETPARAM_MM_ENABLED
, &value
);
66 nouveau_device_close((void *)&nvdev
);
69 nvdev
->mm_enabled
= value
;
71 ret
= nouveau_device_get_param(&nvdev
->base
,
72 NOUVEAU_GETPARAM_VM_VRAM_BASE
, &value
);
74 nouveau_device_close((void *)&nvdev
);
77 nvdev
->base
.vm_vram_base
= value
;
79 ret
= nouveau_device_get_param(&nvdev
->base
,
80 NOUVEAU_GETPARAM_FB_SIZE
, &value
);
82 nouveau_device_close((void *)&nvdev
);
85 nvdev
->vram_aper_size
= value
;
87 ret
= nouveau_device_get_param(&nvdev
->base
,
88 NOUVEAU_GETPARAM_AGP_SIZE
, &value
);
90 nouveau_device_close((void *)&nvdev
);
93 nvdev
->gart_aper_size
= value
;
95 ret
= nouveau_bo_init(&nvdev
->base
);
97 nouveau_device_close((void *)&nvdev
);
101 ret
= nouveau_device_get_param(&nvdev
->base
,
102 NOUVEAU_GETPARAM_CHIPSET_ID
, &value
);
104 nouveau_device_close((void *)&nvdev
);
107 nvdev
->base
.chipset
= value
;
114 nouveau_device_open(struct nouveau_device
**dev
, const char *busid
)
122 fd
= drmOpen("nouveau", busid
);
126 ret
= drmCreateContext(fd
, &ctx
);
132 ret
= nouveau_device_open_existing(dev
, 1, fd
, ctx
);
134 drmDestroyContext(fd
, ctx
);
143 nouveau_device_close(struct nouveau_device
**dev
)
145 struct nouveau_device_priv
*nvdev
;
149 nvdev
= nouveau_device(*dev
);
152 nouveau_bo_takedown(&nvdev
->base
);
154 if (nvdev
->needs_close
) {
155 drmDestroyContext(nvdev
->fd
, nvdev
->ctx
);
162 nouveau_device_get_param(struct nouveau_device
*dev
,
163 uint64_t param
, uint64_t *value
)
165 struct nouveau_device_priv
*nvdev
= nouveau_device(dev
);
166 struct drm_nouveau_getparam g
;
169 if (!nvdev
|| !value
)
173 ret
= drmCommandWriteRead(nvdev
->fd
, DRM_NOUVEAU_GETPARAM
,
183 nouveau_device_set_param(struct nouveau_device
*dev
,
184 uint64_t param
, uint64_t value
)
186 struct nouveau_device_priv
*nvdev
= nouveau_device(dev
);
187 struct drm_nouveau_setparam s
;
195 ret
= drmCommandWriteRead(nvdev
->fd
, DRM_NOUVEAU_SETPARAM
,