mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2025-04-06 05:27:59 +07:00
drm/nouveau: remove legacy vbios type detection
Signed-off-by: Ben Skeggs <bskeggs@redhat.com>
This commit is contained in:
parent
5e90a88cb3
commit
e84e4b67dd
@ -2052,45 +2052,27 @@ uint8_t *nouveau_bios_embedded_edid(struct drm_device *dev)
|
|||||||
static bool NVInitVBIOS(struct drm_device *dev)
|
static bool NVInitVBIOS(struct drm_device *dev)
|
||||||
{
|
{
|
||||||
struct nouveau_drm *drm = nouveau_drm(dev);
|
struct nouveau_drm *drm = nouveau_drm(dev);
|
||||||
struct nvbios *bios = &drm->vbios;
|
struct nouveau_bios *bios = nouveau_bios(drm->device);
|
||||||
|
struct nvbios *legacy = &drm->vbios;
|
||||||
|
|
||||||
memset(bios, 0, sizeof(struct nvbios));
|
memset(legacy, 0, sizeof(struct nvbios));
|
||||||
spin_lock_init(&bios->lock);
|
spin_lock_init(&legacy->lock);
|
||||||
bios->dev = dev;
|
legacy->dev = dev;
|
||||||
|
|
||||||
bios->data = nouveau_bios(drm->device)->data;
|
legacy->data = bios->data;
|
||||||
bios->length = nouveau_bios(drm->device)->size;
|
legacy->length = bios->size;
|
||||||
return true;
|
if (bios->bit_offset) {
|
||||||
}
|
legacy->type = NVBIOS_BIT;
|
||||||
|
legacy->offset = bios->bit_offset;
|
||||||
static int nouveau_parse_vbios_struct(struct drm_device *dev)
|
return !parse_bit_structure(legacy, legacy->offset + 6);
|
||||||
{
|
} else
|
||||||
struct nouveau_drm *drm = nouveau_drm(dev);
|
if (bios->bmp_offset) {
|
||||||
struct nvbios *bios = &drm->vbios;
|
legacy->type = NVBIOS_BMP;
|
||||||
const uint8_t bit_signature[] = { 0xff, 0xb8, 'B', 'I', 'T' };
|
legacy->offset = bios->bmp_offset;
|
||||||
const uint8_t bmp_signature[] = { 0xff, 0x7f, 'N', 'V', 0x0 };
|
return !parse_bmp_structure(dev, legacy, legacy->offset);
|
||||||
int offset;
|
|
||||||
|
|
||||||
offset = findstr(bios->data, bios->length,
|
|
||||||
bit_signature, sizeof(bit_signature));
|
|
||||||
if (offset) {
|
|
||||||
NV_INFO(drm, "BIT BIOS found\n");
|
|
||||||
bios->type = NVBIOS_BIT;
|
|
||||||
bios->offset = offset;
|
|
||||||
return parse_bit_structure(bios, offset + 6);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
offset = findstr(bios->data, bios->length,
|
return false;
|
||||||
bmp_signature, sizeof(bmp_signature));
|
|
||||||
if (offset) {
|
|
||||||
NV_INFO(drm, "BMP BIOS found\n");
|
|
||||||
bios->type = NVBIOS_BMP;
|
|
||||||
bios->offset = offset;
|
|
||||||
return parse_bmp_structure(dev, bios, offset);
|
|
||||||
}
|
|
||||||
|
|
||||||
NV_ERROR(drm, "No known BIOS signature found\n");
|
|
||||||
return -ENODEV;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
int
|
int
|
||||||
@ -2146,10 +2128,6 @@ nouveau_bios_init(struct drm_device *dev)
|
|||||||
if (!NVInitVBIOS(dev))
|
if (!NVInitVBIOS(dev))
|
||||||
return -ENODEV;
|
return -ENODEV;
|
||||||
|
|
||||||
ret = nouveau_parse_vbios_struct(dev);
|
|
||||||
if (ret)
|
|
||||||
return ret;
|
|
||||||
|
|
||||||
ret = parse_dcb_table(dev, bios);
|
ret = parse_dcb_table(dev, bios);
|
||||||
if (ret)
|
if (ret)
|
||||||
return ret;
|
return ret;
|
||||||
|
Loading…
Reference in New Issue
Block a user