drm/radeon: finish getting bios earlier
authorIgor Murzov <intergalactic.anonymous@gmail.com>
Sun, 22 Jan 2012 14:47:28 +0000 (18:47 +0400)
committerBen Hutchings <ben@decadent.org.uk>
Wed, 12 Sep 2012 02:37:19 +0000 (03:37 +0100)
commit122d1fd84d1d67a466877df35a9a9c6ca531ea2e
treea7ec36266a312cb94d19fdefe4759ebc5aa71c05
parent234fc21d076b76f895dbce5b2473828cbe6c1839
drm/radeon: finish getting bios earlier

commit 211fa4fc4e13492151e698d92b0dff56b29928ec upstream.

Return a number of bytes read in radeon_atrm_get_bios_chunk() and
properly check this value in radeon_atrm_get_bios().
If radeon_atrm_get_bios_chunk() read less bytes then were requested,
it means that it finished reading bios data.

Prior to this patch, condition in radeon_atrm_get_bios() was always
equivalent to "if (ATRM_BIOS_PAGE <= 0)", so it was always false,
thus radeon_atrm_get_bios() was trying to read past the bios data
wasting boot time.

On my lenovo ideapad u455 laptop this patch drops bios reading time
from ~5.5s to ~1.5s.

Signed-off-by: Igor Murzov <e-mail@date.by>
Reviewed-by: Alex Deucher <alexander.deucher@amd.com>
Signed-off-by: Dave Airlie <airlied@redhat.com>
Signed-off-by: Ben Hutchings <ben@decadent.org.uk>
drivers/gpu/drm/radeon/radeon_atpx_handler.c
drivers/gpu/drm/radeon/radeon_bios.c