Commit ea8b4a38 authored by Ben Skeggs's avatar Ben Skeggs

drm/nve0/fb/gddr5: found LP3 setting

Signed-off-by: default avatarBen Skeggs <bskeggs@redhat.com>
parent 971372ea
...@@ -29,7 +29,7 @@ int ...@@ -29,7 +29,7 @@ int
nouveau_gddr5_calc(struct nouveau_ram *ram, bool nuts) nouveau_gddr5_calc(struct nouveau_ram *ram, bool nuts)
{ {
struct nouveau_bios *bios = nouveau_bios(ram); struct nouveau_bios *bios = nouveau_bios(ram);
int pd, lf, xd, vh, vr, vo; int pd, lf, xd, vh, vr, vo, l3;
int WL, CL, WR, at[2], dt, ds; int WL, CL, WR, at[2], dt, ds;
int rq = ram->freq < 1000000; /* XXX */ int rq = ram->freq < 1000000; /* XXX */
...@@ -41,6 +41,7 @@ nouveau_gddr5_calc(struct nouveau_ram *ram, bool nuts) ...@@ -41,6 +41,7 @@ nouveau_gddr5_calc(struct nouveau_ram *ram, bool nuts)
vh = (nv_ro08(bios, ram->ramcfg.data + 0x02) & 0x10) >> 4; vh = (nv_ro08(bios, ram->ramcfg.data + 0x02) & 0x10) >> 4;
vr = (nv_ro08(bios, ram->ramcfg.data + 0x02) & 0x04) >> 2; vr = (nv_ro08(bios, ram->ramcfg.data + 0x02) & 0x04) >> 2;
vo = nv_ro08(bios, ram->ramcfg.data + 0x06) & 0xff; vo = nv_ro08(bios, ram->ramcfg.data + 0x06) & 0xff;
l3 = !(nv_ro08(bios, ram->ramcfg.data + 0x07) & 0x02);
break; break;
default: default:
return -ENOSYS; return -ENOSYS;
...@@ -88,8 +89,8 @@ nouveau_gddr5_calc(struct nouveau_ram *ram, bool nuts) ...@@ -88,8 +89,8 @@ nouveau_gddr5_calc(struct nouveau_ram *ram, bool nuts)
ram->mr[3] &= ~0x020; ram->mr[3] &= ~0x020;
ram->mr[3] |= (rq & 0x01) << 5; ram->mr[3] |= (rq & 0x01) << 5;
/*XXX: LP3, where's the bit? Let's hardcode to off for now */
ram->mr[5] &= ~0x004; ram->mr[5] &= ~0x004;
ram->mr[5] |= (l3 << 2);
if (!vo) if (!vo)
vo = (ram->mr[6] & 0xff0) >> 4; vo = (ram->mr[6] & 0xff0) >> 4;
......
...@@ -638,16 +638,16 @@ nve0_ram_calc_gddr5(struct nouveau_fb *pfb, u32 freq) ...@@ -638,16 +638,16 @@ nve0_ram_calc_gddr5(struct nouveau_fb *pfb, u32 freq)
data = 0xa40e0000; data = 0xa40e0000;
} }
nve0_ram_train(fuc, 0xbc0f0000, data); nve0_ram_train(fuc, 0xbc0f0000, data);
ram_nsec(fuc, 1000); if (1) /* XXX: not always? */
ram_nsec(fuc, 1000);
if (ram->mode == 2) { /*XXX*/ if (ram->mode == 2) { /*XXX*/
ram_mask(fuc, 0x10f800, 0x00000004, 0x00000004); ram_mask(fuc, 0x10f800, 0x00000004, 0x00000004);
} }
/* MR5: (re)enable LP3 if necessary /* LP3 */
* XXX: need to find the switch, keeping off for now if (ram_mask(fuc, mr[5], 0x004, ram->base.mr[5]) != ram->base.mr[5])
*/ ram_nsec(fuc, 1000);
ram_mask(fuc, mr[5], 0xfff, ram->base.mr[5]);
if (ram->mode != 2) { if (ram->mode != 2) {
ram_mask(fuc, 0x10f830, 0x01000000, 0x01000000); ram_mask(fuc, 0x10f830, 0x01000000, 0x01000000);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment