summaryrefslogtreecommitdiff
path: root/shared-core/nv04_fb.c
blob: 06b1c99451baada0edbab64e890ad97dedd9a6c3 (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
#include "drmP.h"
#include "drm.h"
#include "nouveau_drv.h"
#include "nouveau_drm.h"

int
nv04_fb_init(drm_device_t *dev)
{
	drm_nouveau_private_t *dev_priv = dev->dev_private;

	/* This is what the DDX did for NV_ARCH_04, but a mmio-trace shows
	 * nvidia reading PFB_CFG_0, then writing back its original value.
	 * (which was 0x701114 in this case)
	 */
	NV_WRITE(NV04_PFB_CFG0, 0x1114);

	return 0;
}

void
nv04_fb_takedown(drm_device_t *dev)
{
}