| /src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/subdev/therm/ | 
| nouveau_nvkm_subdev_therm_fannil.c | 29 #include "priv.h" 46 	struct nvkm_fan *priv;  local in function:nvkm_fannil_create
 48 	priv = kzalloc(sizeof(*priv), GFP_KERNEL);
 49 	therm->fan = priv;
 50 	if (!priv)
 53 	priv->type = "none / external";
 54 	priv->get = nvkm_fannil_get;
 55 	priv->set = nvkm_fannil_set;
 
 | 
| /src/sys/external/bsd/drm2/dist/drm/nouveau/ | 
| nouveau_nvc0_fence.c | 85 		struct nv84_fence_priv *priv = drm->fence;  local in function:nvc0_fence_create 86 		priv->base.context_new = nvc0_fence_context_new;
 
 | 
| nouveau_nv50_fence.c | 43 	struct nv10_fence_priv *priv = chan->drm->fence;  local in function:nv50_fence_context_new 45 	struct ttm_mem_reg *reg = &priv->bo->bo.mem;
 75 	struct nv10_fence_priv *priv;  local in function:nv50_fence_create
 78 	priv = drm->fence = kzalloc(sizeof(*priv), GFP_KERNEL);
 79 	if (!priv)
 82 	priv->base.dtor = nv10_fence_destroy;
 83 	priv->base.resume = nv17_fence_resume;
 84 	priv->base.context_new = nv50_fence_context_new;
 85 	priv->base.context_del = nv10_fence_context_del
 [all...]
 | 
| nouveau_nv04_fence.c | 100 	struct nv04_fence_priv *priv = drm->fence;  local in function:nv04_fence_destroy 102 	kfree(priv);
 108 	struct nv04_fence_priv *priv;  local in function:nv04_fence_create
 110 	priv = drm->fence = kzalloc(sizeof(*priv), GFP_KERNEL);
 111 	if (!priv)
 114 	priv->base.dtor = nv04_fence_destroy;
 115 	priv->base.context_new = nv04_fence_context_new;
 116 	priv->base.context_del = nv04_fence_context_del;
 
 | 
| nouveau_nv10_fence.c | 90 	struct nv10_fence_priv *priv = drm->fence;  local in function:nv10_fence_destroy 91 	nouveau_bo_unmap(priv->bo);
 92 	if (priv->bo)
 93 		nouveau_bo_unpin(priv->bo);
 94 	nouveau_bo_ref(NULL, &priv->bo);
 96 	spin_lock_destroy(&priv->lock);
 97 	kfree(priv);
 103 	struct nv10_fence_priv *priv;  local in function:nv10_fence_create
 105 	priv = drm->fence = kzalloc(sizeof(*priv), GFP_KERNEL)
 [all...]
 | 
| nouveau_nv17_fence.c | 43 	struct nv10_fence_priv *priv = chan->drm->fence;  local in function:nv17_fence_sync 51 	spin_lock(&priv->lock);
 52 	value = priv->sequence;
 53 	priv->sequence += 2;
 54 	spin_unlock(&priv->lock);
 82 	struct nv10_fence_priv *priv = chan->drm->fence;  local in function:nv17_fence_context_new
 84 	struct ttm_mem_reg *reg = &priv->bo->bo.mem;
 114 	struct nv10_fence_priv *priv = drm->fence;  local in function:nv17_fence_resume
 116 	nouveau_bo_wr32(priv->bo, 0, priv->sequence)
 122  struct nv10_fence_priv *priv;  local in function:nv17_fence_create
 [all...]
 | 
| nouveau_nv84_fence.c | 97 	struct nv84_fence_priv *priv = chan->drm->fence;  local in function:nv84_fence_read 98 	return nouveau_bo_rd32(priv->bo, chan->chid * 16/4);
 104 	struct nv84_fence_priv *priv = chan->drm->fence;  local in function:nv84_fence_context_del
 107 	nouveau_bo_wr32(priv->bo, chan->chid * 16 / 4, fctx->base.sequence);
 108 	mutex_lock(&priv->mutex);
 110 	mutex_unlock(&priv->mutex);
 119 	struct nv84_fence_priv *priv = chan->drm->fence;  local in function:nv84_fence_context_new
 135 	mutex_lock(&priv->mutex);
 136 	ret = nouveau_vma_new(priv->bo, chan->vmm, &fctx->vma);
 137 	mutex_unlock(&priv->mutex)
 147  struct nv84_fence_priv *priv = drm->fence;  local in function:nv84_fence_suspend
 162  struct nv84_fence_priv *priv = drm->fence;  local in function:nv84_fence_resume
 176  struct nv84_fence_priv *priv = drm->fence;  local in function:nv84_fence_destroy
 189  struct nv84_fence_priv *priv;  local in function:nv84_fence_create
 [all...]
 | 
| /src/sys/external/bsd/drm/dist/bsd-core/ | 
| drm_fops.c | 45 	struct drm_file *priv;  local in function:drm_find_file_by_proc 49 	TAILQ_FOREACH(priv, &dev->files, link) {
 50 		if (priv->pid == pid && priv->uid == uid)
 51 			return priv;
 62 	struct drm_file   *priv;  local in function:drm_open_helper
 72 	priv = drm_find_file_by_proc(dev, p);
 73 	if (!priv) {
 74 		priv = malloc(sizeof(*priv), DRM_MEM_FILES, M_NOWAIT | M_ZERO)
 114  struct drm_file *priv;  local in function:drm_open_helper
 [all...]
 | 
| drm_auth.c | 55 			return pt->priv; 66 static int drm_add_magic(struct drm_device *dev, struct drm_file *priv,
 81 	entry->priv  = priv;
 172 	struct drm_file *priv;  local in function:drm_authmagic
 177 	priv = drm_find_file(dev, auth->magic);
 178 	if (priv != NULL) {
 179 		priv->authenticated = 1;
 
 | 
| /src/sys/external/bsd/drm2/dist/drm/nouveau/include/nvif/ | 
| if500d.h | 19 	__u8  priv;  member in struct:nv50_vmm_map_v0 
 | 
| if900d.h | 20 	__u8  priv;  member in struct:gf100_vmm_map_v0 
 | 
| cla06f.h | 9 	__u8  priv;  member in struct:kepler_channel_gpfifo_a_v0 
 | 
| clc36f.h | 9 	__u8  priv;  member in struct:volta_channel_gpfifo_a_v0 
 | 
| ifb00d.h | 26 	__u8  priv;  member in struct:gm200_vmm_map_v0 
 | 
| ifc00d.h | 26 	__u8  priv;  member in struct:gp100_vmm_map_v0 
 | 
| /src/sbin/mount_portal/ | 
| pt_tcp.c | 59  * Key will be tcp/host/port[/"priv"] 72 	int priv = 0;  local in function:portal_tcp
 92 		if (strcmp(p, "priv") == 0) {
 94 				priv = 1;
 110 		if (priv)
 
 | 
| /src/sys/dev/fdt/ | 
| syscon.h | 33 	void		*priv;  member in struct:syscon 42 	(_syscon)->lock((_syscon)->priv)
 45 	(_syscon)->unlock((_syscon)->priv)
 48 	(_syscon)->read_4((_syscon)->priv, (_reg))
 51 	(_syscon)->write_4((_syscon)->priv, (_reg), (_val))
 
 | 
| /src/sys/dev/hdmicec/ | 
| hdmicec_if.h | 44 	void *priv;  member in struct:hdmicec_attach_args 
 | 
| /src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/subdev/bios/ | 
| nouveau_nvkm_subdev_bios_shadowof.c | 28 #include "priv.h" 37 struct priv {  struct
 45 	struct priv *priv = data;  local in function:of_read
 46 	if (offset < priv->size) {
 47 		length = min_t(u32, length, priv->size - offset);
 48 		memcpy_fromio(bios->data + offset, priv->data + offset, length);
 57 	struct priv *priv = data;  local in function:of_size
 58 	return priv->size
 67  struct priv *priv;  local in function:of_init
 [all...]
 | 
| nouveau_nvkm_subdev_bios_shadowpci.c | 28 #include "priv.h" 36 struct priv {  struct
 45 	struct priv *priv = data;  local in function:pcirom_read
 46 	if (offset + length <= priv->size) {
 47 		memcpy_fromio(bios->data + offset, priv->rom + offset, length);
 56 	struct priv *priv = data;  local in function:pcirom_fini
 57 	pci_unmap_rom(priv->pdev, priv->rom)
 66  struct priv *priv = NULL;  local in function:pcirom_init
 105  struct priv *priv;  local in function:platform_init
 [all...]
 | 
| nouveau_nvkm_subdev_bios_shadowramin.c | 28 #include "priv.h" 30 struct priv {  struct
 51 	struct priv *priv = data;  local in function:pramin_fini
 52 	if (priv) {
 53 		struct nvkm_device *device = priv->bios->subdev.device;
 54 		nvkm_wr32(device, 0x001700, priv->bar0);
 55 		kfree(priv);
 64 	struct priv *priv = NULL  local in function:pramin_init
 [all...]
 | 
| /src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/subdev/mmu/ | 
| umem.h | 13 	bool priv:1;  member in struct:nvkm_umem 
 | 
| /src/sys/dev/clk/ | 
| clk_backend.h | 40 	void *priv;  member in struct:clk_domain 
 | 
| /src/sys/dev/ | 
| led.c | 46 	void			*priv;  member in struct:led_device 110 	state = led->getstate(led->priv);
 118 	led->setstate(led->priv, state);
 126 led_attach(const char *name, void *priv, led_getstate_fn getstate,
 141 	led->priv = priv;
 
 | 
| /src/sys/external/bsd/drm2/dist/drm/nouveau/include/nvkm/core/ | 
| oclass.h | 23 	const void *priv;  member in struct:nvkm_oclass 
 |