mirror of
https://gitlab.freedesktop.org/mesa/drm.git
synced 2025-12-20 18:40:09 +01:00
Also, power cycle PGRAPH when resetting AGP -- it seems to fix problems encountered by p0g on nv25
22 lines
388 B
C
22 lines
388 B
C
#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)
|
|
{
|
|
}
|