diff options
author | Jonathan Herman <hermanjl@cs.unc.edu> | 2013-01-22 10:38:37 -0500 |
---|---|---|
committer | Jonathan Herman <hermanjl@cs.unc.edu> | 2013-01-22 10:38:37 -0500 |
commit | fcc9d2e5a6c89d22b8b773a64fb4ad21ac318446 (patch) | |
tree | a57612d1888735a2ec7972891b68c1ac5ec8faea /drivers/gpu/drm/nouveau/nv04_fb.c | |
parent | 8dea78da5cee153b8af9c07a2745f6c55057fe12 (diff) |
Diffstat (limited to 'drivers/gpu/drm/nouveau/nv04_fb.c')
-rw-r--r-- | drivers/gpu/drm/nouveau/nv04_fb.c | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/drivers/gpu/drm/nouveau/nv04_fb.c b/drivers/gpu/drm/nouveau/nv04_fb.c new file mode 100644 index 00000000000..638cf601c42 --- /dev/null +++ b/drivers/gpu/drm/nouveau/nv04_fb.c | |||
@@ -0,0 +1,21 @@ | |||
1 | #include "drmP.h" | ||
2 | #include "drm.h" | ||
3 | #include "nouveau_drv.h" | ||
4 | #include "nouveau_drm.h" | ||
5 | |||
6 | int | ||
7 | nv04_fb_init(struct drm_device *dev) | ||
8 | { | ||
9 | /* This is what the DDX did for NV_ARCH_04, but a mmio-trace shows | ||
10 | * nvidia reading PFB_CFG_0, then writing back its original value. | ||
11 | * (which was 0x701114 in this case) | ||
12 | */ | ||
13 | |||
14 | nv_wr32(dev, NV04_PFB_CFG0, 0x1114); | ||
15 | return 0; | ||
16 | } | ||
17 | |||
18 | void | ||
19 | nv04_fb_takedown(struct drm_device *dev) | ||
20 | { | ||
21 | } | ||