Searched refs:bit_P (Results 1 – 10 of 10) sorted by relevance
/drivers/gpu/drm/nouveau/core/subdev/bios/ |
D | therm.c | 32 struct bit_entry bit_P; in therm_table() local 35 if (!bit_entry(bios, 'P', &bit_P)) { in therm_table() 36 if (bit_P.version == 1) in therm_table() 37 therm = nv_ro16(bios, bit_P.offset + 12); in therm_table() 38 else if (bit_P.version == 2) in therm_table() 39 therm = nv_ro16(bios, bit_P.offset + 16); in therm_table() 43 bit_P.version); in therm_table()
|
D | fan.c | 32 struct bit_entry bit_P; in nvbios_fan_table() local 35 if (!bit_entry(bios, 'P', &bit_P)) { in nvbios_fan_table() 36 if (bit_P.version == 2 && bit_P.length >= 0x5a) in nvbios_fan_table() 37 fan = nv_ro16(bios, bit_P.offset + 0x58); in nvbios_fan_table()
|
D | volt.c | 32 struct bit_entry bit_P; in nvbios_volt_table() local 35 if (!bit_entry(bios, 'P', &bit_P)) { in nvbios_volt_table() 36 if (bit_P.version == 2) in nvbios_volt_table() 37 volt = nv_ro16(bios, bit_P.offset + 0x0c); in nvbios_volt_table() 39 if (bit_P.version == 1) in nvbios_volt_table() 40 volt = nv_ro16(bios, bit_P.offset + 0x10); in nvbios_volt_table()
|
D | P0260.c | 34 struct bit_entry bit_P; in nvbios_P0260Te() local 37 if (!bit_entry(bios, 'P', &bit_P)) { in nvbios_P0260Te() 38 if (bit_P.version == 2 && bit_P.length > 0x63) in nvbios_P0260Te() 39 data = nv_ro32(bios, bit_P.offset + 0x60); in nvbios_P0260Te()
|
D | timing.c | 34 struct bit_entry bit_P; in nvbios_timingTe() local 37 if (!bit_entry(bios, 'P', &bit_P)) { in nvbios_timingTe() 38 if (bit_P.version == 1) in nvbios_timingTe() 39 timing = nv_ro16(bios, bit_P.offset + 4); in nvbios_timingTe() 41 if (bit_P.version == 2) in nvbios_timingTe() 42 timing = nv_ro16(bios, bit_P.offset + 8); in nvbios_timingTe()
|
D | vmap.c | 32 struct bit_entry bit_P; in nvbios_vmap_table() local 35 if (!bit_entry(bios, 'P', &bit_P)) { in nvbios_vmap_table() 36 if (bit_P.version == 2) { in nvbios_vmap_table() 37 vmap = nv_ro16(bios, bit_P.offset + 0x20); in nvbios_vmap_table()
|
D | cstep.c | 33 struct bit_entry bit_P; in nvbios_cstepTe() local 36 if (!bit_entry(bios, 'P', &bit_P)) { in nvbios_cstepTe() 37 if (bit_P.version == 2) in nvbios_cstepTe() 38 cstep = nv_ro16(bios, bit_P.offset + 0x34); in nvbios_cstepTe()
|
D | boost.c | 33 struct bit_entry bit_P; in nvbios_boostTe() local 36 if (!bit_entry(bios, 'P', &bit_P)) { in nvbios_boostTe() 37 if (bit_P.version == 2) in nvbios_boostTe() 38 boost = nv_ro16(bios, bit_P.offset + 0x30); in nvbios_boostTe()
|
D | perf.c | 33 struct bit_entry bit_P; in nvbios_perf_table() local 36 if (!bit_entry(bios, 'P', &bit_P)) { in nvbios_perf_table() 37 if (bit_P.version <= 2) { in nvbios_perf_table() 38 perf = nv_ro16(bios, bit_P.offset + 0); in nvbios_perf_table()
|
D | rammap.c | 34 struct bit_entry bit_P; in nvbios_rammapTe() local 37 if (!bit_entry(bios, 'P', &bit_P)) { in nvbios_rammapTe() 38 if (bit_P.version == 2) in nvbios_rammapTe() 39 rammap = nv_ro16(bios, bit_P.offset + 4); in nvbios_rammapTe()
|