]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blob - drivers/gpu/drm/nouveau/nvkm/subdev/fb/priv.h
drm/nouveau/mmu: remove old vmm frontend
[mirror_ubuntu-bionic-kernel.git] / drivers / gpu / drm / nouveau / nvkm / subdev / fb / priv.h
1 #ifndef __NVKM_FB_PRIV_H__
2 #define __NVKM_FB_PRIV_H__
3 #define nvkm_fb(p) container_of((p), struct nvkm_fb, subdev)
4 #include <subdev/fb.h>
5 struct nvkm_bios;
6
7 struct nvkm_fb_func {
8 void *(*dtor)(struct nvkm_fb *);
9 u32 (*tags)(struct nvkm_fb *);
10 int (*oneinit)(struct nvkm_fb *);
11 void (*init)(struct nvkm_fb *);
12 int (*init_page)(struct nvkm_fb *);
13 void (*init_unkn)(struct nvkm_fb *);
14 void (*intr)(struct nvkm_fb *);
15
16 struct {
17 int regions;
18 void (*init)(struct nvkm_fb *, int i, u32 addr, u32 size,
19 u32 pitch, u32 flags, struct nvkm_fb_tile *);
20 void (*comp)(struct nvkm_fb *, int i, u32 size, u32 flags,
21 struct nvkm_fb_tile *);
22 void (*fini)(struct nvkm_fb *, int i, struct nvkm_fb_tile *);
23 void (*prog)(struct nvkm_fb *, int i, struct nvkm_fb_tile *);
24 } tile;
25
26 int (*ram_new)(struct nvkm_fb *, struct nvkm_ram **);
27
28 u8 default_bigpage;
29 };
30
31 void nvkm_fb_ctor(const struct nvkm_fb_func *, struct nvkm_device *device,
32 int index, struct nvkm_fb *);
33 int nvkm_fb_new_(const struct nvkm_fb_func *, struct nvkm_device *device,
34 int index, struct nvkm_fb **);
35 int nvkm_fb_bios_memtype(struct nvkm_bios *);
36
37 void nv10_fb_tile_init(struct nvkm_fb *, int i, u32 addr, u32 size,
38 u32 pitch, u32 flags, struct nvkm_fb_tile *);
39 void nv10_fb_tile_fini(struct nvkm_fb *, int i, struct nvkm_fb_tile *);
40 void nv10_fb_tile_prog(struct nvkm_fb *, int, struct nvkm_fb_tile *);
41
42 u32 nv20_fb_tags(struct nvkm_fb *);
43 void nv20_fb_tile_init(struct nvkm_fb *, int i, u32 addr, u32 size,
44 u32 pitch, u32 flags, struct nvkm_fb_tile *);
45 void nv20_fb_tile_fini(struct nvkm_fb *, int i, struct nvkm_fb_tile *);
46 void nv20_fb_tile_prog(struct nvkm_fb *, int, struct nvkm_fb_tile *);
47
48 void nv30_fb_init(struct nvkm_fb *);
49 void nv30_fb_tile_init(struct nvkm_fb *, int i, u32 addr, u32 size,
50 u32 pitch, u32 flags, struct nvkm_fb_tile *);
51
52 void nv40_fb_tile_comp(struct nvkm_fb *, int i, u32 size, u32 flags,
53 struct nvkm_fb_tile *);
54
55 void nv41_fb_init(struct nvkm_fb *);
56 void nv41_fb_tile_prog(struct nvkm_fb *, int, struct nvkm_fb_tile *);
57
58 void nv44_fb_init(struct nvkm_fb *);
59 void nv44_fb_tile_prog(struct nvkm_fb *, int, struct nvkm_fb_tile *);
60
61 void nv46_fb_tile_init(struct nvkm_fb *, int i, u32 addr, u32 size,
62 u32 pitch, u32 flags, struct nvkm_fb_tile *);
63
64 int gf100_fb_oneinit(struct nvkm_fb *);
65 int gf100_fb_init_page(struct nvkm_fb *);
66
67 int gm200_fb_init_page(struct nvkm_fb *);
68 #endif