]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - drivers/gpu/drm/nouveau/include/nvkm/core/client.h
drm/nouveau/mmu: remove old vmm frontend
[mirror_ubuntu-bionic-kernel.git] / drivers / gpu / drm / nouveau / include / nvkm / core / client.h
CommitLineData
5025407b
BS
1#ifndef __NVKM_CLIENT_H__
2#define __NVKM_CLIENT_H__
03295eab 3#define nvkm_client(p) container_of((p), struct nvkm_client, object)
24bd0930 4#include <core/object.h>
9274f4a9 5
5025407b 6struct nvkm_client {
24bd0930 7 struct nvkm_object object;
a2896ced 8 char name[32];
24bd0930 9 u64 device;
9274f4a9 10 u32 debug;
24bd0930 11
86d7442b 12 struct nvkm_client_notify *notify[32];
24bd0930
BS
13 struct rb_root objroot;
14
8ec2a6ec
BS
15 bool super;
16 void *data;
8ec2a6ec 17 int (*ntfy)(const void *, u32, const void *, u32);
bf81df9b 18
c83c4097
BS
19 struct list_head umem;
20 spinlock_t lock;
9274f4a9
BS
21};
22
76ecea5b 23int nvkm_client_new(const char *name, u64 device, const char *cfg,
7c413feb
BS
24 const char *dbg,
25 int (*)(const void *, u32, const void *, u32),
26 struct nvkm_client **);
04b88677 27struct nvkm_client *nvkm_client_search(struct nvkm_client *, u64 handle);
9274f4a9 28
5025407b 29int nvkm_client_notify_new(struct nvkm_object *, struct nvkm_event *,
8ec2a6ec 30 void *data, u32 size);
5025407b
BS
31int nvkm_client_notify_del(struct nvkm_client *, int index);
32int nvkm_client_notify_get(struct nvkm_client *, int index);
33int nvkm_client_notify_put(struct nvkm_client *, int index);
6594363b
BS
34
35/* logging for client-facing objects */
36#define nvif_printk(o,l,p,f,a...) do { \
c1fcb148
AC
37 const struct nvkm_object *_object = (o); \
38 const struct nvkm_client *_client = _object->client; \
6594363b 39 if (_client->debug >= NV_DBG_##l) \
fbd58ebd
BS
40 printk(KERN_##p "nouveau: %s:%08x:%08x: "f, _client->name, \
41 _object->handle, _object->oclass, ##a); \
6594363b 42} while(0)
fbd58ebd 43#define nvif_fatal(o,f,a...) nvif_printk((o), FATAL, CRIT, f, ##a)
6594363b
BS
44#define nvif_error(o,f,a...) nvif_printk((o), ERROR, ERR, f, ##a)
45#define nvif_debug(o,f,a...) nvif_printk((o), DEBUG, INFO, f, ##a)
46#define nvif_trace(o,f,a...) nvif_printk((o), TRACE, INFO, f, ##a)
fbd58ebd 47#define nvif_info(o,f,a...) nvif_printk((o), INFO, INFO, f, ##a)
6594363b 48#define nvif_ioctl(o,f,a...) nvif_trace((o), "ioctl: "f, ##a)
9274f4a9 49#endif