aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/nouveau/core/subdev/pwr/priv.h
blob: 3814a341db3282474732ebc9a8a96242d139e1e1 (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
37
38
39
40
41
42
43
44
#ifndef __NVKM_PWR_PRIV_H__
#define __NVKM_PWR_PRIV_H__

#include <subdev/pwr.h>
#include <subdev/pwr/fuc/os.h>

#define nouveau_pwr_create(p, e, o, d)                                         \
	nouveau_pwr_create_((p), (e), (o), sizeof(**d), (void **)d)
#define nouveau_pwr_destroy(p)                                                 \
	nouveau_subdev_destroy(&(p)->base)
#define nouveau_pwr_init(p) ({                                                 \
	struct nouveau_pwr *_ppwr = (p);                                       \
	_nouveau_pwr_init(nv_object(_ppwr));                                   \
})
#define nouveau_pwr_fini(p,s) ({                                               \
	struct nouveau_pwr *_ppwr = (p);                                       \
	_nouveau_pwr_fini(nv_object(_ppwr), (s));                              \
})

int nouveau_pwr_create_(struct nouveau_object *, struct nouveau_object *,
			struct nouveau_oclass *, int, void **);

int _nouveau_pwr_ctor(struct nouveau_object *, struct nouveau_object *,
		      struct nouveau_oclass *, void *, u32,
		      struct nouveau_object **);
#define _nouveau_pwr_dtor _nouveau_subdev_dtor
int _nouveau_pwr_init(struct nouveau_object *);
int _nouveau_pwr_fini(struct nouveau_object *, bool);

struct nvkm_pwr_impl {
	struct nouveau_oclass base;
	struct {
		u32 *data;
		u32  size;
	} code;
	struct {
		u32 *data;
		u32  size;
	} data;

	void (*pgob)(struct nouveau_pwr *, bool);
};

#endif