mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-16 00:56:49 +07:00
a5cf68b04b
The point is to share more code between the PFB/PGRAPH tile region hooks, and give the hardware specific functions a chance to allocate per-region resources. Signed-off-by: Francisco Jerez <currojerez@riseup.net> Signed-off-by: Ben Skeggs <bskeggs@redhat.com>
72 lines
1.8 KiB
C
72 lines
1.8 KiB
C
#include "drmP.h"
|
|
#include "drm.h"
|
|
#include "nouveau_drv.h"
|
|
#include "nouveau_drm.h"
|
|
|
|
void
|
|
nv40_fb_set_tile_region(struct drm_device *dev, int i)
|
|
{
|
|
struct drm_nouveau_private *dev_priv = dev->dev_private;
|
|
struct nouveau_tile_reg *tile = &dev_priv->tile.reg[i];
|
|
|
|
switch (dev_priv->chipset) {
|
|
case 0x40:
|
|
nv_wr32(dev, NV10_PFB_TLIMIT(i), tile->limit);
|
|
nv_wr32(dev, NV10_PFB_TSIZE(i), tile->pitch);
|
|
nv_wr32(dev, NV10_PFB_TILE(i), tile->addr);
|
|
break;
|
|
|
|
default:
|
|
nv_wr32(dev, NV40_PFB_TLIMIT(i), tile->limit);
|
|
nv_wr32(dev, NV40_PFB_TSIZE(i), tile->pitch);
|
|
nv_wr32(dev, NV40_PFB_TILE(i), tile->addr);
|
|
break;
|
|
}
|
|
}
|
|
|
|
int
|
|
nv40_fb_init(struct drm_device *dev)
|
|
{
|
|
struct drm_nouveau_private *dev_priv = dev->dev_private;
|
|
struct nouveau_fb_engine *pfb = &dev_priv->engine.fb;
|
|
uint32_t tmp;
|
|
int i;
|
|
|
|
/* This is strictly a NV4x register (don't know about NV5x). */
|
|
/* The blob sets these to all kinds of values, and they mess up our setup. */
|
|
/* I got value 0x52802 instead. For some cards the blob even sets it back to 0x1. */
|
|
/* Note: the blob doesn't read this value, so i'm pretty sure this is safe for all cards. */
|
|
/* Any idea what this is? */
|
|
nv_wr32(dev, NV40_PFB_UNK_800, 0x1);
|
|
|
|
switch (dev_priv->chipset) {
|
|
case 0x40:
|
|
case 0x45:
|
|
tmp = nv_rd32(dev, NV10_PFB_CLOSE_PAGE2);
|
|
nv_wr32(dev, NV10_PFB_CLOSE_PAGE2, tmp & ~(1 << 15));
|
|
pfb->num_tiles = NV10_PFB_TILE__SIZE;
|
|
break;
|
|
case 0x46: /* G72 */
|
|
case 0x47: /* G70 */
|
|
case 0x49: /* G71 */
|
|
case 0x4b: /* G73 */
|
|
case 0x4c: /* C51 (G7X version) */
|
|
pfb->num_tiles = NV40_PFB_TILE__SIZE_1;
|
|
break;
|
|
default:
|
|
pfb->num_tiles = NV40_PFB_TILE__SIZE_0;
|
|
break;
|
|
}
|
|
|
|
/* Turn all the tiling regions off. */
|
|
for (i = 0; i < pfb->num_tiles; i++)
|
|
pfb->set_tile_region(dev, i);
|
|
|
|
return 0;
|
|
}
|
|
|
|
void
|
|
nv40_fb_takedown(struct drm_device *dev)
|
|
{
|
|
}
|