summaryrefslogtreecommitdiff
path: root/shared-core/nv04_mc.c
blob: 24c1f7b392e66d7b2283d2382772ba39434d8b38 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#include "drmP.h"
#include "drm.h"
#include "nouveau_drv.h"
#include "nouveau_drm.h"

int
nv04_mc_init(struct drm_device *dev)
{
	struct drm_nouveau_private *dev_priv = dev->dev_private;

	/* Power up everything, resetting each individual unit will
	 * be done later if needed.
	 */
	NV_WRITE(NV03_PMC_ENABLE, 0xFFFFFFFF);

	return 0;
}

void
nv04_mc_takedown(struct drm_device *dev)
{
}