mirror of
https://gitlab.freedesktop.org/mesa/drm.git
synced 2025-12-20 19:50:12 +01:00
The PGRAPH init for the various cards will need cleaning up at some point, a lot of the values written there are per-context state left over from the all the hardcoding done in the ddx. It's possible some cards get broken by this commit, let me know. Tested on: NV5, NV18, NV28, NV35, NV40, NV4E
36 lines
578 B
C
36 lines
578 B
C
#include "drmP.h"
|
|
#include "drm.h"
|
|
#include "nouveau_drv.h"
|
|
#include "nouveau_drm.h"
|
|
|
|
int
|
|
nv40_mc_init(drm_device_t *dev)
|
|
{
|
|
drm_nouveau_private_t *dev_priv = dev->dev_private;
|
|
uint32_t tmp;
|
|
|
|
NV_WRITE(NV03_PMC_INTR_EN_0, 0);
|
|
|
|
switch (dev_priv->chipset) {
|
|
case 0x44:
|
|
case 0x46: /* G72 */
|
|
case 0x4e:
|
|
case 0x4c: /* C51_G7X */
|
|
tmp = NV_READ(NV40_PFB_020C);
|
|
NV_WRITE(NV40_PMC_1700, tmp);
|
|
NV_WRITE(NV40_PMC_1704, 0);
|
|
NV_WRITE(NV40_PMC_1708, 0);
|
|
NV_WRITE(NV40_PMC_170C, tmp);
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
void
|
|
nv40_mc_takedown(drm_device_t *dev)
|
|
{
|
|
}
|
|
|