blob: e5cff49e11e229e717d5a7850865bdfccb7d2736 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
#include <stdlib.h>
#include <nvif/device.h>
static CAST
nv_rsys(struct nvif_device *device, u64 addr)
{
if (device->info.family >= NV_DEVICE_INFO_V0_TESLA &&
device->info.family <= NV_DEVICE_INFO_V0_MAXWELL) {
CAST data;
u32 pmem = nvif_rd32(device, 0x001700);
nvif_wr32(device, 0x001700, 0x02000000 | (addr >> 16));
data = RSYS(device, 0x700000 + (addr & 0xffffULL));
nvif_wr32(device, 0x001700, pmem);
return data;
} else {
printk("unsupported chipset\n");
exit(1);
}
}
#define READ(o) nv_rsys(device, (o))
#define ENABLE (NV_DEVICE_V0_DISABLE_MMIO | NV_DEVICE_V0_DISABLE_IDENTIFY)
#include "nv_rdfunc.h"
|