#include "drmP.h" #include "drm.h" #include "nouveau_drv.h" #include "nouveau_drm.h" int nv40_fb_init(struct drm_device *dev) { struct drm_nouveau_private *dev_priv = dev->dev_private; uint32_t fb_bar_size, tmp; int num_tiles; int i; /* This is strictly a NV4x register (don't know about NV5x). */ /* The blob sets these to all kinds of values, and they mess up our setup. */ /* I got value 0x52802 instead. For some cards the blob even sets it back to 0x1. */ /* Note: the blob doesn't read this value, so i'm pretty sure this is safe for all cards. */ /* Any idea what this is? */ NV_WRITE(NV40_PFB_UNK_800, 0x1); switch (dev_priv->chipset) { case 0x40: case 0x45: tmp = NV_READ(NV10_PFB_CLOSE_PAGE2); NV_WRITE(NV10_PFB_CLOSE_PAGE2, tmp & ~(1<<15)); num_tiles = NV10_PFB_TILE__SIZE; break; case 0x46: /* G72 */ case 0x47: /* G70 */ case 0x49: /* G71 */ case 0x4b: /* G73 */ case 0x4c: /* C51 (G7X version) */ num_tiles = NV40_PFB_TILE__SIZE_1; break; default: num_tiles = NV40_PFB_TILE__SIZE_0; break; } fb_bar_size = drm_get_resource_len(dev, 0) - 1; switch (dev_priv->chipset) { case 0x40: for (i=0; itreecommitdiff
path: root/README
blob: 40f7e1146670a310a0c666e4adc7596acc4a5429 (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
61
62
63
64
65
66
67
68
69