|
@@ -24,10 +24,8 @@
|
|
#include <subdev/vga.h>
|
|
#include <subdev/vga.h>
|
|
|
|
|
|
u8
|
|
u8
|
|
-nv_rdport(void *obj, int head, u16 port)
|
|
|
|
|
|
+nvkm_rdport(struct nvkm_device *device, int head, u16 port)
|
|
{
|
|
{
|
|
- struct nvkm_device *device = nv_device(obj);
|
|
|
|
-
|
|
|
|
if (device->card_type >= NV_50)
|
|
if (device->card_type >= NV_50)
|
|
return nvkm_rd08(device, 0x601000 + port);
|
|
return nvkm_rd08(device, 0x601000 + port);
|
|
|
|
|
|
@@ -48,10 +46,8 @@ nv_rdport(void *obj, int head, u16 port)
|
|
}
|
|
}
|
|
|
|
|
|
void
|
|
void
|
|
-nv_wrport(void *obj, int head, u16 port, u8 data)
|
|
|
|
|
|
+nvkm_wrport(struct nvkm_device *device, int head, u16 port, u8 data)
|
|
{
|
|
{
|
|
- struct nvkm_device *device = nv_device(obj);
|
|
|
|
-
|
|
|
|
if (device->card_type >= NV_50)
|
|
if (device->card_type >= NV_50)
|
|
nvkm_wr08(device, 0x601000 + port, data);
|
|
nvkm_wr08(device, 0x601000 + port, data);
|
|
else
|
|
else
|
|
@@ -70,78 +66,76 @@ nv_wrport(void *obj, int head, u16 port, u8 data)
|
|
}
|
|
}
|
|
|
|
|
|
u8
|
|
u8
|
|
-nv_rdvgas(void *obj, int head, u8 index)
|
|
|
|
|
|
+nvkm_rdvgas(struct nvkm_device *device, int head, u8 index)
|
|
{
|
|
{
|
|
- nv_wrport(obj, head, 0x03c4, index);
|
|
|
|
- return nv_rdport(obj, head, 0x03c5);
|
|
|
|
|
|
+ nvkm_wrport(device, head, 0x03c4, index);
|
|
|
|
+ return nvkm_rdport(device, head, 0x03c5);
|
|
}
|
|
}
|
|
|
|
|
|
void
|
|
void
|
|
-nv_wrvgas(void *obj, int head, u8 index, u8 value)
|
|
|
|
|
|
+nvkm_wrvgas(struct nvkm_device *device, int head, u8 index, u8 value)
|
|
{
|
|
{
|
|
- nv_wrport(obj, head, 0x03c4, index);
|
|
|
|
- nv_wrport(obj, head, 0x03c5, value);
|
|
|
|
|
|
+ nvkm_wrport(device, head, 0x03c4, index);
|
|
|
|
+ nvkm_wrport(device, head, 0x03c5, value);
|
|
}
|
|
}
|
|
|
|
|
|
u8
|
|
u8
|
|
-nv_rdvgag(void *obj, int head, u8 index)
|
|
|
|
|
|
+nvkm_rdvgag(struct nvkm_device *device, int head, u8 index)
|
|
{
|
|
{
|
|
- nv_wrport(obj, head, 0x03ce, index);
|
|
|
|
- return nv_rdport(obj, head, 0x03cf);
|
|
|
|
|
|
+ nvkm_wrport(device, head, 0x03ce, index);
|
|
|
|
+ return nvkm_rdport(device, head, 0x03cf);
|
|
}
|
|
}
|
|
|
|
|
|
void
|
|
void
|
|
-nv_wrvgag(void *obj, int head, u8 index, u8 value)
|
|
|
|
|
|
+nvkm_wrvgag(struct nvkm_device *device, int head, u8 index, u8 value)
|
|
{
|
|
{
|
|
- nv_wrport(obj, head, 0x03ce, index);
|
|
|
|
- nv_wrport(obj, head, 0x03cf, value);
|
|
|
|
|
|
+ nvkm_wrport(device, head, 0x03ce, index);
|
|
|
|
+ nvkm_wrport(device, head, 0x03cf, value);
|
|
}
|
|
}
|
|
|
|
|
|
u8
|
|
u8
|
|
-nv_rdvgac(void *obj, int head, u8 index)
|
|
|
|
|
|
+nvkm_rdvgac(struct nvkm_device *device, int head, u8 index)
|
|
{
|
|
{
|
|
- nv_wrport(obj, head, 0x03d4, index);
|
|
|
|
- return nv_rdport(obj, head, 0x03d5);
|
|
|
|
|
|
+ nvkm_wrport(device, head, 0x03d4, index);
|
|
|
|
+ return nvkm_rdport(device, head, 0x03d5);
|
|
}
|
|
}
|
|
|
|
|
|
void
|
|
void
|
|
-nv_wrvgac(void *obj, int head, u8 index, u8 value)
|
|
|
|
|
|
+nvkm_wrvgac(struct nvkm_device *device, int head, u8 index, u8 value)
|
|
{
|
|
{
|
|
- nv_wrport(obj, head, 0x03d4, index);
|
|
|
|
- nv_wrport(obj, head, 0x03d5, value);
|
|
|
|
|
|
+ nvkm_wrport(device, head, 0x03d4, index);
|
|
|
|
+ nvkm_wrport(device, head, 0x03d5, value);
|
|
}
|
|
}
|
|
|
|
|
|
u8
|
|
u8
|
|
-nv_rdvgai(void *obj, int head, u16 port, u8 index)
|
|
|
|
|
|
+nvkm_rdvgai(struct nvkm_device *device, int head, u16 port, u8 index)
|
|
{
|
|
{
|
|
- if (port == 0x03c4) return nv_rdvgas(obj, head, index);
|
|
|
|
- if (port == 0x03ce) return nv_rdvgag(obj, head, index);
|
|
|
|
- if (port == 0x03d4) return nv_rdvgac(obj, head, index);
|
|
|
|
|
|
+ if (port == 0x03c4) return nvkm_rdvgas(device, head, index);
|
|
|
|
+ if (port == 0x03ce) return nvkm_rdvgag(device, head, index);
|
|
|
|
+ if (port == 0x03d4) return nvkm_rdvgac(device, head, index);
|
|
return 0x00;
|
|
return 0x00;
|
|
}
|
|
}
|
|
|
|
|
|
void
|
|
void
|
|
-nv_wrvgai(void *obj, int head, u16 port, u8 index, u8 value)
|
|
|
|
|
|
+nvkm_wrvgai(struct nvkm_device *device, int head, u16 port, u8 index, u8 value)
|
|
{
|
|
{
|
|
- if (port == 0x03c4) nv_wrvgas(obj, head, index, value);
|
|
|
|
- else if (port == 0x03ce) nv_wrvgag(obj, head, index, value);
|
|
|
|
- else if (port == 0x03d4) nv_wrvgac(obj, head, index, value);
|
|
|
|
|
|
+ if (port == 0x03c4) nvkm_wrvgas(device, head, index, value);
|
|
|
|
+ else if (port == 0x03ce) nvkm_wrvgag(device, head, index, value);
|
|
|
|
+ else if (port == 0x03d4) nvkm_wrvgac(device, head, index, value);
|
|
}
|
|
}
|
|
|
|
|
|
bool
|
|
bool
|
|
-nv_lockvgac(void *obj, bool lock)
|
|
|
|
|
|
+nvkm_lockvgac(struct nvkm_device *device, bool lock)
|
|
{
|
|
{
|
|
- struct nvkm_device *device = nv_device(obj);
|
|
|
|
-
|
|
|
|
- bool locked = !nv_rdvgac(obj, 0, 0x1f);
|
|
|
|
|
|
+ bool locked = !nvkm_rdvgac(device, 0, 0x1f);
|
|
u8 data = lock ? 0x99 : 0x57;
|
|
u8 data = lock ? 0x99 : 0x57;
|
|
if (device->card_type < NV_50)
|
|
if (device->card_type < NV_50)
|
|
- nv_wrvgac(obj, 0, 0x1f, data);
|
|
|
|
|
|
+ nvkm_wrvgac(device, 0, 0x1f, data);
|
|
else
|
|
else
|
|
- nv_wrvgac(obj, 0, 0x3f, data);
|
|
|
|
|
|
+ nvkm_wrvgac(device, 0, 0x3f, data);
|
|
if (device->chipset == 0x11) {
|
|
if (device->chipset == 0x11) {
|
|
if (!(nvkm_rd32(device, 0x001084) & 0x10000000))
|
|
if (!(nvkm_rd32(device, 0x001084) & 0x10000000))
|
|
- nv_wrvgac(obj, 1, 0x1f, data);
|
|
|
|
|
|
+ nvkm_wrvgac(device, 1, 0x1f, data);
|
|
}
|
|
}
|
|
return locked;
|
|
return locked;
|
|
}
|
|
}
|
|
@@ -165,17 +159,16 @@ nv_lockvgac(void *obj, bool lock)
|
|
* other values are treated as literal values to set
|
|
* other values are treated as literal values to set
|
|
*/
|
|
*/
|
|
u8
|
|
u8
|
|
-nv_rdvgaowner(void *obj)
|
|
|
|
|
|
+nvkm_rdvgaowner(struct nvkm_device *device)
|
|
{
|
|
{
|
|
- struct nvkm_device *device = nv_device(obj);
|
|
|
|
if (device->card_type < NV_50) {
|
|
if (device->card_type < NV_50) {
|
|
- if (nv_device(obj)->chipset == 0x11) {
|
|
|
|
|
|
+ if (device->chipset == 0x11) {
|
|
u32 tied = nvkm_rd32(device, 0x001084) & 0x10000000;
|
|
u32 tied = nvkm_rd32(device, 0x001084) & 0x10000000;
|
|
if (tied == 0) {
|
|
if (tied == 0) {
|
|
- u8 slA = nv_rdvgac(obj, 0, 0x28) & 0x80;
|
|
|
|
- u8 tvA = nv_rdvgac(obj, 0, 0x33) & 0x01;
|
|
|
|
- u8 slB = nv_rdvgac(obj, 1, 0x28) & 0x80;
|
|
|
|
- u8 tvB = nv_rdvgac(obj, 1, 0x33) & 0x01;
|
|
|
|
|
|
+ u8 slA = nvkm_rdvgac(device, 0, 0x28) & 0x80;
|
|
|
|
+ u8 tvA = nvkm_rdvgac(device, 0, 0x33) & 0x01;
|
|
|
|
+ u8 slB = nvkm_rdvgac(device, 1, 0x28) & 0x80;
|
|
|
|
+ u8 tvB = nvkm_rdvgac(device, 1, 0x33) & 0x01;
|
|
if (slA && !tvA) return 0x00;
|
|
if (slA && !tvA) return 0x00;
|
|
if (slB && !tvB) return 0x03;
|
|
if (slB && !tvB) return 0x03;
|
|
if (slA) return 0x00;
|
|
if (slA) return 0x00;
|
|
@@ -185,28 +178,28 @@ nv_rdvgaowner(void *obj)
|
|
return 0x04;
|
|
return 0x04;
|
|
}
|
|
}
|
|
|
|
|
|
- return nv_rdvgac(obj, 0, 0x44);
|
|
|
|
|
|
+ return nvkm_rdvgac(device, 0, 0x44);
|
|
}
|
|
}
|
|
|
|
|
|
return 0x00;
|
|
return 0x00;
|
|
}
|
|
}
|
|
|
|
|
|
void
|
|
void
|
|
-nv_wrvgaowner(void *obj, u8 select)
|
|
|
|
|
|
+nvkm_wrvgaowner(struct nvkm_device *device, u8 select)
|
|
{
|
|
{
|
|
- if (nv_device(obj)->card_type < NV_50) {
|
|
|
|
|
|
+ if (device->card_type < NV_50) {
|
|
u8 owner = (select == 1) ? 3 : select;
|
|
u8 owner = (select == 1) ? 3 : select;
|
|
- if (nv_device(obj)->chipset == 0x11) {
|
|
|
|
|
|
+ if (device->chipset == 0x11) {
|
|
/* workaround hw lockup bug */
|
|
/* workaround hw lockup bug */
|
|
- nv_rdvgac(obj, 0, 0x1f);
|
|
|
|
- nv_rdvgac(obj, 1, 0x1f);
|
|
|
|
|
|
+ nvkm_rdvgac(device, 0, 0x1f);
|
|
|
|
+ nvkm_rdvgac(device, 1, 0x1f);
|
|
}
|
|
}
|
|
|
|
|
|
- nv_wrvgac(obj, 0, 0x44, owner);
|
|
|
|
|
|
+ nvkm_wrvgac(device, 0, 0x44, owner);
|
|
|
|
|
|
- if (nv_device(obj)->chipset == 0x11) {
|
|
|
|
- nv_wrvgac(obj, 0, 0x2e, owner);
|
|
|
|
- nv_wrvgac(obj, 0, 0x2e, owner);
|
|
|
|
|
|
+ if (device->chipset == 0x11) {
|
|
|
|
+ nvkm_wrvgac(device, 0, 0x2e, owner);
|
|
|
|
+ nvkm_wrvgac(device, 0, 0x2e, owner);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|