aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/nouveau/nvkm/subdev/instmem/nv04.h
blob: 42b6c928047c100fd54bc2c4b31d527775e9200b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#ifndef __NV04_INSTMEM_H__
#define __NV04_INSTMEM_H__
#include "priv.h"

#include <core/mm.h>

extern struct nvkm_instobj_impl nv04_instobj_oclass;

struct nv04_instmem_priv {
	struct nvkm_instmem base;

	void __iomem *iomem;
	struct nvkm_mm heap;

	struct nvkm_gpuobj *vbios;
	struct nvkm_ramht  *ramht;
	struct nvkm_gpuobj *ramro;
	struct nvkm_gpuobj *ramfc;
};

static inline struct nv04_instmem_priv *
nv04_instmem(void *obj)
{
	return (void *)nvkm_instmem(obj);
}

struct nv04_instobj_priv {
	struct nvkm_instobj base;
	struct nvkm_mm_node *mem;
};

void nv04_instmem_dtor(struct nvkm_object *);

int nv04_instmem_alloc(struct nvkm_instmem *, struct nvkm_object *,
		       u32 size, u32 align, struct nvkm_object **pobject);
#endif