Release 4.11 drivers/gpu/drm/nouveau/include/nvkm/subdev/bios/bmp.h
#ifndef __NVBIOS_BMP_H__
#define __NVBIOS_BMP_H__
static inline u16
bmp_version(struct nvkm_bios *bios)
{
if (bios->bmp_offset) {
return nvbios_rd08(bios, bios->bmp_offset + 5) << 8 |
nvbios_rd08(bios, bios->bmp_offset + 6);
}
return 0x0000;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Ben Skeggs | 48 | 100.00% | 3 | 100.00% |
Total | 48 | 100.00% | 3 | 100.00% |
static inline u16
bmp_mem_init_table(struct nvkm_bios *bios)
{
if (bmp_version(bios) >= 0x0300)
return nvbios_rd16(bios, bios->bmp_offset + 24);
return 0x0000;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Ben Skeggs | 36 | 100.00% | 3 | 100.00% |
Total | 36 | 100.00% | 3 | 100.00% |
static inline u16
bmp_sdr_seq_table(struct nvkm_bios *bios)
{
if (bmp_version(bios) >= 0x0300)
return nvbios_rd16(bios, bios->bmp_offset + 26);
return 0x0000;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Ben Skeggs | 36 | 100.00% | 3 | 100.00% |
Total | 36 | 100.00% | 3 | 100.00% |
static inline u16
bmp_ddr_seq_table(struct nvkm_bios *bios)
{
if (bmp_version(bios) >= 0x0300)
return nvbios_rd16(bios, bios->bmp_offset + 28);
return 0x0000;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Ben Skeggs | 36 | 100.00% | 3 | 100.00% |
Total | 36 | 100.00% | 3 | 100.00% |
#endif
Overall Contributors
Person | Tokens | Prop | Commits | CommitProp |
Ben Skeggs | 164 | 100.00% | 3 | 100.00% |
Total | 164 | 100.00% | 3 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.