summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/nouveau/nouveau_software.h
blob: 2105a9eef52c28857b3895035285ebe556c186f1 (plain)
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
#ifndef __NOUVEAU_SOFTWARE_H__
#define __NOUVEAU_SOFTWARE_H__

#include "nouveau_fence.h"

struct nouveau_software_priv {
	struct nouveau_exec_engine base;
	struct list_head vblank;
	spinlock_t peephole_lock;
};

struct nouveau_software_chan {
	int (*flip)(void *data);
	void *flip_data;

	struct {
		struct list_head list;
		u32 channel;
		u32 ctxdma;
		u32 offset;
		u32 value;
		u32 head;
	} vblank;
};

static inline void
nouveau_software_context_new(struct nouveau_channel *chan,
			     struct nouveau_software_chan *pch)
{
	pch->flip = nouveau_flip_complete;
	pch->flip_data = chan;
}

static inline void
nouveau_software_create(struct nouveau_software_priv *psw)
{
	INIT_LIST_HEAD(&psw->vblank);
	spin_lock_init(&psw->peephole_lock);
}

static inline u16
nouveau_software_class(struct drm_device *dev)
{
	struct drm_nouveau_private *dev_priv = dev->dev_private;
	if (dev_priv->card_type <= NV_04)
		return 0x006e;
	if (dev_priv->card_type <= NV_40)
		return 0x016e;
	if (dev_priv->card_type <= NV_50)
		return 0x506e;
	if (dev_priv->card_type <= NV_E0)
		return 0x906e;
	return 0x0000;
}

int nv04_software_create(struct drm_device *);
int nv50_software_create(struct drm_device *);
int nvc0_software_create(struct drm_device *);

#endif