Re: [PATCH v4 3/7] drm/panthor: Simplify getting the GPU model name

2025-07-21 Thread Karunika Choo
On 11/06/2025 00:32, Chia-I Wu wrote: > On Mon, Jun 2, 2025 at 8:16 AM Karunika Choo wrote: >> >> This patch replaces the panthor_model structure with a simple switch >> case based on the product_id which is in the format of: >> ((arch_major << 24) | product_major) >> >> This simplifies co

Re: [PATCH v4 3/7] drm/panthor: Simplify getting the GPU model name

2025-06-10 Thread Chia-I Wu
On Mon, Jun 2, 2025 at 8:16 AM Karunika Choo wrote: > > This patch replaces the panthor_model structure with a simple switch > case based on the product_id which is in the format of: > ((arch_major << 24) | product_major) > > This simplifies comparison and allows extending of the function

[PATCH v4 3/7] drm/panthor: Simplify getting the GPU model name

2025-06-02 Thread Karunika Choo
This patch replaces the panthor_model structure with a simple switch case based on the product_id which is in the format of: ((arch_major << 24) | product_major) This simplifies comparison and allows extending of the function to accommodate naming differences based on supported GPU feature