Commit c6bb3acf authored by Thomas Weißschuh's avatar Thomas Weißschuh Committed by Alex Deucher

drm/radeon: convert bios_hardcoded_edid to drm_edid

Instead of manually passing around 'struct edid *' and its size,
use 'struct drm_edid', which encapsulates a validated combination of
both.

As the drm_edid_ can handle NULL gracefully, the explicit checks can be
dropped.

Also save a few characters by transforming '&array[0]' to the equivalent
'array' and using 'max_t(int, ...)' instead of manual casts.
Signed-off-by: default avatarThomas Weißschuh <linux@weissschuh.net>
Signed-off-by: default avatarAlex Deucher <alexander.deucher@amd.com>
parent aeb81b62
...@@ -1716,23 +1716,18 @@ struct radeon_encoder_atom_dig *radeon_atombios_get_lvds_info(struct ...@@ -1716,23 +1716,18 @@ struct radeon_encoder_atom_dig *radeon_atombios_get_lvds_info(struct
case LCD_FAKE_EDID_PATCH_RECORD_TYPE: case LCD_FAKE_EDID_PATCH_RECORD_TYPE:
fake_edid_record = (ATOM_FAKE_EDID_PATCH_RECORD *)record; fake_edid_record = (ATOM_FAKE_EDID_PATCH_RECORD *)record;
if (fake_edid_record->ucFakeEDIDLength) { if (fake_edid_record->ucFakeEDIDLength) {
struct edid *edid; const struct drm_edid *edid;
int edid_size; int edid_size;
if (fake_edid_record->ucFakeEDIDLength == 128) if (fake_edid_record->ucFakeEDIDLength == 128)
edid_size = fake_edid_record->ucFakeEDIDLength; edid_size = fake_edid_record->ucFakeEDIDLength;
else else
edid_size = fake_edid_record->ucFakeEDIDLength * 128; edid_size = fake_edid_record->ucFakeEDIDLength * 128;
edid = kmemdup(&fake_edid_record->ucFakeEDIDString[0], edid = drm_edid_alloc(fake_edid_record->ucFakeEDIDString, edid_size);
edid_size, GFP_KERNEL); if (drm_edid_valid(edid))
if (edid) { rdev->mode_info.bios_hardcoded_edid = edid;
if (drm_edid_is_valid(edid)) { else
rdev->mode_info.bios_hardcoded_edid = edid; drm_edid_free(edid);
rdev->mode_info.bios_hardcoded_edid_size = edid_size;
} else {
kfree(edid);
}
}
record += struct_size(fake_edid_record, record += struct_size(fake_edid_record,
ucFakeEDIDString, ucFakeEDIDString,
edid_size); edid_size);
......
...@@ -370,7 +370,7 @@ static uint16_t combios_get_table_offset(struct drm_device *dev, ...@@ -370,7 +370,7 @@ static uint16_t combios_get_table_offset(struct drm_device *dev,
bool radeon_combios_check_hardcoded_edid(struct radeon_device *rdev) bool radeon_combios_check_hardcoded_edid(struct radeon_device *rdev)
{ {
int edid_info, size; int edid_info, size;
struct edid *edid; const struct drm_edid *edid;
unsigned char *raw; unsigned char *raw;
edid_info = combios_get_table_offset(rdev_to_drm(rdev), COMBIOS_HARDCODED_EDID_TABLE); edid_info = combios_get_table_offset(rdev_to_drm(rdev), COMBIOS_HARDCODED_EDID_TABLE);
if (!edid_info) if (!edid_info)
...@@ -378,19 +378,14 @@ bool radeon_combios_check_hardcoded_edid(struct radeon_device *rdev) ...@@ -378,19 +378,14 @@ bool radeon_combios_check_hardcoded_edid(struct radeon_device *rdev)
raw = rdev->bios + edid_info; raw = rdev->bios + edid_info;
size = EDID_LENGTH * (raw[0x7e] + 1); size = EDID_LENGTH * (raw[0x7e] + 1);
edid = kmalloc(size, GFP_KERNEL); edid = drm_edid_alloc(raw, size);
if (edid == NULL)
return false;
memcpy((unsigned char *)edid, raw, size);
if (!drm_edid_is_valid(edid)) { if (!drm_edid_valid(edid)) {
kfree(edid); drm_edid_free(edid);
return false; return false;
} }
rdev->mode_info.bios_hardcoded_edid = edid; rdev->mode_info.bios_hardcoded_edid = edid;
rdev->mode_info.bios_hardcoded_edid_size = size;
return true; return true;
} }
...@@ -398,18 +393,7 @@ bool radeon_combios_check_hardcoded_edid(struct radeon_device *rdev) ...@@ -398,18 +393,7 @@ bool radeon_combios_check_hardcoded_edid(struct radeon_device *rdev)
struct edid * struct edid *
radeon_bios_get_hardcoded_edid(struct radeon_device *rdev) radeon_bios_get_hardcoded_edid(struct radeon_device *rdev)
{ {
struct edid *edid; return drm_edid_duplicate(drm_edid_raw(rdev->mode_info.bios_hardcoded_edid));
if (rdev->mode_info.bios_hardcoded_edid) {
edid = kmalloc(rdev->mode_info.bios_hardcoded_edid_size, GFP_KERNEL);
if (edid) {
memcpy((unsigned char *)edid,
(unsigned char *)rdev->mode_info.bios_hardcoded_edid,
rdev->mode_info.bios_hardcoded_edid_size);
return edid;
}
}
return NULL;
} }
static struct radeon_i2c_bus_rec combios_setup_i2c_bus(struct radeon_device *rdev, static struct radeon_i2c_bus_rec combios_setup_i2c_bus(struct radeon_device *rdev,
......
...@@ -1059,7 +1059,7 @@ radeon_vga_detect(struct drm_connector *connector, bool force) ...@@ -1059,7 +1059,7 @@ radeon_vga_detect(struct drm_connector *connector, bool force)
*/ */
if ((!rdev->is_atom_bios) && if ((!rdev->is_atom_bios) &&
(ret == connector_status_disconnected) && (ret == connector_status_disconnected) &&
rdev->mode_info.bios_hardcoded_edid_size) { rdev->mode_info.bios_hardcoded_edid) {
ret = connector_status_connected; ret = connector_status_connected;
} }
...@@ -1392,7 +1392,7 @@ radeon_dvi_detect(struct drm_connector *connector, bool force) ...@@ -1392,7 +1392,7 @@ radeon_dvi_detect(struct drm_connector *connector, bool force)
out: out:
if ((!rdev->is_atom_bios) && if ((!rdev->is_atom_bios) &&
(ret == connector_status_disconnected) && (ret == connector_status_disconnected) &&
rdev->mode_info.bios_hardcoded_edid_size) { rdev->mode_info.bios_hardcoded_edid) {
radeon_connector->use_digital = true; radeon_connector->use_digital = true;
ret = connector_status_connected; ret = connector_status_connected;
} }
......
...@@ -1658,7 +1658,7 @@ void radeon_modeset_fini(struct radeon_device *rdev) ...@@ -1658,7 +1658,7 @@ void radeon_modeset_fini(struct radeon_device *rdev)
rdev->mode_info.mode_config_initialized = false; rdev->mode_info.mode_config_initialized = false;
} }
kfree(rdev->mode_info.bios_hardcoded_edid); drm_edid_free(rdev->mode_info.bios_hardcoded_edid);
/* free i2c buses */ /* free i2c buses */
radeon_i2c_fini(rdev); radeon_i2c_fini(rdev);
......
...@@ -39,6 +39,7 @@ ...@@ -39,6 +39,7 @@
#include <linux/i2c-algo-bit.h> #include <linux/i2c-algo-bit.h>
struct edid; struct edid;
struct drm_edid;
struct radeon_bo; struct radeon_bo;
struct radeon_device; struct radeon_device;
...@@ -262,8 +263,7 @@ struct radeon_mode_info { ...@@ -262,8 +263,7 @@ struct radeon_mode_info {
/* Output CSC */ /* Output CSC */
struct drm_property *output_csc_property; struct drm_property *output_csc_property;
/* hardcoded DFP edid from BIOS */ /* hardcoded DFP edid from BIOS */
struct edid *bios_hardcoded_edid; const struct drm_edid *bios_hardcoded_edid;
int bios_hardcoded_edid_size;
/* firmware flags */ /* firmware flags */
u16 firmware_flags; u16 firmware_flags;
......
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