mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH] drm/sysfb: ofdrm: Fix is_avivo() constant comparison bug
@ 2026-07-24  9:41 oushixiong1025
  2026-07-24 11:34 ` Thomas Zimmermann
  0 siblings, 1 reply; 4+ messages in thread
From: oushixiong1025 @ 2026-07-24  9:41 UTC (permalink / raw)
  To: Thomas Zimmermann
  Cc: Javier Martinez Canillas, Maarten Lankhorst, Maxime Ripard,
	David Airlie, Simona Vetter, dri-devel, linux-kernel,
	Shixiong Ou

From: Shixiong Ou <oushixiong@kylinos.cn>

The is_avivo() function has a logic error where it compares a constant
to another constant instead of checking the device parameter:

  (PCI_VENDOR_ID_ATI_R600 >= 0x9400)

However, according to the code comment and the OFDRM_MODEL_AVIVO
definition ("ATI R5xx"), this function is intended to match only R5xx
cards (device IDs 0x7100-0x7800), not R6xx or later. The second
condition checking for R600 is erroneous and should be removed.

Signed-off-by: Shixiong Ou <oushixiong@kylinos.cn>
---
 drivers/gpu/drm/sysfb/ofdrm.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/drivers/gpu/drm/sysfb/ofdrm.c b/drivers/gpu/drm/sysfb/ofdrm.c
index a6dc34b9ec0f..ea1db1cfe3ed 100644
--- a/drivers/gpu/drm/sysfb/ofdrm.c
+++ b/drivers/gpu/drm/sysfb/ofdrm.c
@@ -238,8 +238,7 @@ static bool is_avivo(u32 vendor, u32 device)
 {
 	/* This will match most R5xx */
 	return (vendor == PCI_VENDOR_ID_ATI) &&
-	       ((device >= PCI_VENDOR_ID_ATI_R520 && device < 0x7800) ||
-		(PCI_VENDOR_ID_ATI_R600 >= 0x9400));
+	       (device >= PCI_VENDOR_ID_ATI_R520 && device < 0x7800);
 }
 
 static enum ofdrm_model display_get_model_of(struct drm_device *dev, struct device_node *of_node)
-- 
2.25.1


No virus found
		Checked by Hillstone Network AntiVirus


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] drm/sysfb: ofdrm: Fix is_avivo() constant comparison bug
  2026-07-24  9:41 [PATCH] drm/sysfb: ofdrm: Fix is_avivo() constant comparison bug oushixiong1025
@ 2026-07-24 11:34 ` Thomas Zimmermann
  2026-07-24 13:21   ` Shixiong Ou
  0 siblings, 1 reply; 4+ messages in thread
From: Thomas Zimmermann @ 2026-07-24 11:34 UTC (permalink / raw)
  To: oushixiong1025
  Cc: Javier Martinez Canillas, Maarten Lankhorst, Maxime Ripard,
	David Airlie, Simona Vetter, dri-devel, linux-kernel,
	Shixiong Ou

Hi

Am 24.07.26 um 11:41 schrieb oushixiong1025@163.com:
> From: Shixiong Ou <oushixiong@kylinos.cn>
>
> The is_avivo() function has a logic error where it compares a constant
> to another constant instead of checking the device parameter:
>
>    (PCI_VENDOR_ID_ATI_R600 >= 0x9400)
>
> However, according to the code comment and the OFDRM_MODEL_AVIVO
> definition ("ATI R5xx"), this function is intended to match only R5xx
> cards (device IDs 0x7100-0x7800), not R6xx or later. The second
> condition checking for R600 is erroneous and should be removed.
>
> Signed-off-by: Shixiong Ou <oushixiong@kylinos.cn>
> ---
>   drivers/gpu/drm/sysfb/ofdrm.c | 3 +--
>   1 file changed, 1 insertion(+), 2 deletions(-)
>
> diff --git a/drivers/gpu/drm/sysfb/ofdrm.c b/drivers/gpu/drm/sysfb/ofdrm.c
> index a6dc34b9ec0f..ea1db1cfe3ed 100644
> --- a/drivers/gpu/drm/sysfb/ofdrm.c
> +++ b/drivers/gpu/drm/sysfb/ofdrm.c
> @@ -238,8 +238,7 @@ static bool is_avivo(u32 vendor, u32 device)
>   {
>   	/* This will match most R5xx */
>   	return (vendor == PCI_VENDOR_ID_ATI) &&
> -	       ((device >= PCI_VENDOR_ID_ATI_R520 && device < 0x7800) ||
> -		(PCI_VENDOR_ID_ATI_R600 >= 0x9400));

I tried to match exactly this: 
https://elixir.bootlin.com/linux/v7.1.4/source/drivers/video/fbdev/offb.c#L365

IDK if that works in practice, but I don't dare changing it without a 
concrete bug report.

Best regards
Thomas

> +	       (device >= PCI_VENDOR_ID_ATI_R520 && device < 0x7800);
>   }
>   
>   static enum ofdrm_model display_get_model_of(struct drm_device *dev, struct device_node *of_node)

-- 
--
Thomas Zimmermann
Graphics Driver Developer
SUSE Software Solutions Germany GmbH
Frankenstr. 146, 90461 Nürnberg, Germany, www.suse.com
GF: Jochen Jaser, Andrew McDonald, (HRB 36809, AG Nürnberg)



^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] drm/sysfb: ofdrm: Fix is_avivo() constant comparison bug
  2026-07-24 11:34 ` Thomas Zimmermann
@ 2026-07-24 13:21   ` Shixiong Ou
  2026-07-24 14:42     ` Thomas Zimmermann
  0 siblings, 1 reply; 4+ messages in thread
From: Shixiong Ou @ 2026-07-24 13:21 UTC (permalink / raw)
  To: Thomas Zimmermann
  Cc: Javier Martinez Canillas, Maarten Lankhorst, Maxime Ripard,
	David Airlie, Simona Vetter, dri-devel, linux-kernel,
	Shixiong Ou


On 2026/7/24 19:34, Thomas Zimmermann wrote:
> Hi
>
> Am 24.07.26 um 11:41 schrieb oushixiong1025@163.com:
>> From: Shixiong Ou <oushixiong@kylinos.cn>
>>
>> The is_avivo() function has a logic error where it compares a constant
>> to another constant instead of checking the device parameter:
>>
>>    (PCI_VENDOR_ID_ATI_R600 >= 0x9400)
>>
>> However, according to the code comment and the OFDRM_MODEL_AVIVO
>> definition ("ATI R5xx"), this function is intended to match only R5xx
>> cards (device IDs 0x7100-0x7800), not R6xx or later. The second
>> condition checking for R600 is erroneous and should be removed.
>>
>> Signed-off-by: Shixiong Ou <oushixiong@kylinos.cn>
>> ---
>>   drivers/gpu/drm/sysfb/ofdrm.c | 3 +--
>>   1 file changed, 1 insertion(+), 2 deletions(-)
>>
>> diff --git a/drivers/gpu/drm/sysfb/ofdrm.c 
>> b/drivers/gpu/drm/sysfb/ofdrm.c
>> index a6dc34b9ec0f..ea1db1cfe3ed 100644
>> --- a/drivers/gpu/drm/sysfb/ofdrm.c
>> +++ b/drivers/gpu/drm/sysfb/ofdrm.c
>> @@ -238,8 +238,7 @@ static bool is_avivo(u32 vendor, u32 device)
>>   {
>>       /* This will match most R5xx */
>>       return (vendor == PCI_VENDOR_ID_ATI) &&
>> -           ((device >= PCI_VENDOR_ID_ATI_R520 && device < 0x7800) ||
>> -        (PCI_VENDOR_ID_ATI_R600 >= 0x9400));
>
> I tried to match exactly this: 
> https://elixir.bootlin.com/linux/v7.1.4/source/drivers/video/fbdev/offb.c#L365
>
> IDK if that works in practice, but I don't dare changing it without a 
> concrete bug report.
>
> Best regards
> Thomas
>
Hi,

PCI_VENDOR_ID_ATI_R600 is defined as 0x9400 . Therefore, this expression 
always evaluates to true (0x9400 >= 0x9400).
It does not depend on the device parameter passed to is_avivo().
So is this a coding mistake?

Best regards
Shixiong Ou.

>> +           (device >= PCI_VENDOR_ID_ATI_R520 && device < 0x7800);
>>   }
>>     static enum ofdrm_model display_get_model_of(struct drm_device 
>> *dev, struct device_node *of_node)
>


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] drm/sysfb: ofdrm: Fix is_avivo() constant comparison bug
  2026-07-24 13:21   ` Shixiong Ou
@ 2026-07-24 14:42     ` Thomas Zimmermann
  0 siblings, 0 replies; 4+ messages in thread
From: Thomas Zimmermann @ 2026-07-24 14:42 UTC (permalink / raw)
  To: Shixiong Ou
  Cc: Javier Martinez Canillas, Maarten Lankhorst, Maxime Ripard,
	David Airlie, Simona Vetter, dri-devel, linux-kernel,
	Shixiong Ou

Hi

Am 24.07.26 um 15:21 schrieb Shixiong Ou:
>
> On 2026/7/24 19:34, Thomas Zimmermann wrote:
>> Hi
>>
>> Am 24.07.26 um 11:41 schrieb oushixiong1025@163.com:
>>> From: Shixiong Ou <oushixiong@kylinos.cn>
>>>
>>> The is_avivo() function has a logic error where it compares a constant
>>> to another constant instead of checking the device parameter:
>>>
>>>    (PCI_VENDOR_ID_ATI_R600 >= 0x9400)
>>>
>>> However, according to the code comment and the OFDRM_MODEL_AVIVO
>>> definition ("ATI R5xx"), this function is intended to match only R5xx
>>> cards (device IDs 0x7100-0x7800), not R6xx or later. The second
>>> condition checking for R600 is erroneous and should be removed.
>>>
>>> Signed-off-by: Shixiong Ou <oushixiong@kylinos.cn>
>>> ---
>>>   drivers/gpu/drm/sysfb/ofdrm.c | 3 +--
>>>   1 file changed, 1 insertion(+), 2 deletions(-)
>>>
>>> diff --git a/drivers/gpu/drm/sysfb/ofdrm.c 
>>> b/drivers/gpu/drm/sysfb/ofdrm.c
>>> index a6dc34b9ec0f..ea1db1cfe3ed 100644
>>> --- a/drivers/gpu/drm/sysfb/ofdrm.c
>>> +++ b/drivers/gpu/drm/sysfb/ofdrm.c
>>> @@ -238,8 +238,7 @@ static bool is_avivo(u32 vendor, u32 device)
>>>   {
>>>       /* This will match most R5xx */
>>>       return (vendor == PCI_VENDOR_ID_ATI) &&
>>> -           ((device >= PCI_VENDOR_ID_ATI_R520 && device < 0x7800) ||
>>> -        (PCI_VENDOR_ID_ATI_R600 >= 0x9400));
>>
>> I tried to match exactly this: 
>> https://elixir.bootlin.com/linux/v7.1.4/source/drivers/video/fbdev/offb.c#L365
>>
>> IDK if that works in practice, but I don't dare changing it without a 
>> concrete bug report.
>>
>> Best regards
>> Thomas
>>
> Hi,
>
> PCI_VENDOR_ID_ATI_R600 is defined as 0x9400 . Therefore, this 
> expression always evaluates to true (0x9400 >= 0x9400).
> It does not depend on the device parameter passed to is_avivo().
> So is this a coding mistake?

Oh, now I see it. That's indeed a bug. It should test for (device >= 
PCI_VENDOR_ID_ATI_R600) instead.  Thanks for addressing this.

Best regards
Thomas


>
> Best regards
> Shixiong Ou.
>
>>> +           (device >= PCI_VENDOR_ID_ATI_R520 && device < 0x7800);
>>>   }
>>>     static enum ofdrm_model display_get_model_of(struct drm_device 
>>> *dev, struct device_node *of_node)
>>
>

-- 
--
Thomas Zimmermann
Graphics Driver Developer
SUSE Software Solutions Germany GmbH
Frankenstr. 146, 90461 Nürnberg, Germany, www.suse.com
GF: Jochen Jaser, Andrew McDonald, (HRB 36809, AG Nürnberg)



^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2026-07-24 14:42 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-07-24  9:41 [PATCH] drm/sysfb: ofdrm: Fix is_avivo() constant comparison bug oushixiong1025
2026-07-24 11:34 ` Thomas Zimmermann
2026-07-24 13:21   ` Shixiong Ou
2026-07-24 14:42     ` Thomas Zimmermann

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®