mirror of
https://gitlab.freedesktop.org/mesa/drm.git
synced 2025-12-20 22:10:15 +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
24 lines
429 B
C
24 lines
429 B
C
#include "drmP.h"
|
|
#include "drm.h"
|
|
#include "nouveau_drv.h"
|
|
#include "nouveau_drm.h"
|
|
|
|
int
|
|
nv04_timer_init(drm_device_t *dev)
|
|
{
|
|
drm_nouveau_private_t *dev_priv = dev->dev_private;
|
|
|
|
NV_WRITE(NV04_PTIMER_INTR_EN_0, 0x00000000);
|
|
NV_WRITE(NV04_PTIMER_INTR_0, 0xFFFFFFFF);
|
|
|
|
NV_WRITE(NV04_PTIMER_NUMERATOR, 0x00000008);
|
|
NV_WRITE(NV04_PTIMER_DENOMINATOR, 0x00000003);
|
|
|
|
return 0;
|
|
}
|
|
|
|
void
|
|
nv04_timer_takedown(drm_device_t *dev)
|
|
{
|
|
}
|
|
|