[PATCH v2 1/1] [DRIVER] gpu: drm: add support for Yhgc ZX1000 soc chipset

2025-09-02 Thread chuguangqing
add support for Yhgc BMC soc chipset Signed-off-by: chuguangqing --- MAINTAINERS | 5 + drivers/gpu/drm/Kconfig | 2 + drivers/gpu/drm/Makefile | 1 + drivers/gpu/drm/yhgch/Kconfig | 3

[PATCH v2 0/1] [DRIVER] gpu: drm: add support for Yhgc ZX1000 soc chipset

2025-09-02 Thread chuguangqing
vblanking code 11. delete unneeded i2c type Some other hardware-related issues cannot be confirmed for the time being, but the current code has passed the test. chuguangqing (1): [DRIVER] gpu: drm: add support for Yhgc ZX1000 soc chipset MAINTAINERS | 5

[PATCH 1/1] accel/habanalabs: fix typo in comment

2025-09-01 Thread chuguangqing
The word "properties" was misspelled as "properites". Signed-off-by: chuguangqing --- drivers/accel/habanalabs/common/habanalabs.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/accel/habanalabs/common/habanalabs.h b/drivers/accel/habanalabs

[PATCH 0/1] fix typo error in

2025-09-01 Thread chuguangqing
The word "properties" was misspelled as "properites". chuguangqing (1): accel/habanalabs: fix typo in comment drivers/accel/habanalabs/common/habanalabs.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) -- 2.43.5

[PATCH v1] [PATCH 0/1] add Yhgch soc chipset support - Supplementary Cc simona

2025-08-08 Thread chuguangqing
directly attach the full text/link of the original patch): https://lore.kernel.org/all/20250808053508.52202-1-chuguangq...@inspur.com/T/#t Looking forward to your reply, Thank you! chuguangqing

[PATCH 0/1] add Yhgch soc chipset support

2025-08-08 Thread chuguangqing
add Yhgch soc chipset support for Yhgch BMC chipset chuguangqing (1): [DRIVER] gpu: drm: add support for Yhgc ZX1000 soc chipset MAINTAINERS | 5 + drivers/gpu/drm/Kconfig | 2 + drivers/gpu/drm/Makefile | 1

[PATCH 0/1] add Yhgch soc chipset support

2025-08-07 Thread chuguangqing
add Yhgch soc chipset support for Yhgch BMC chipset chuguangqing (1): [DRIVER] gpu: drm: add support for Yhgc ZX1000 soc chipset MAINTAINERS | 5 + drivers/gpu/drm/Kconfig | 2 + drivers/gpu/drm/Makefile | 1

[PATCH 1/1] [DRIVER] gpu: drm: add support for Yhgc ZX1000 soc chipset

2025-08-07 Thread chuguangqing
add support for Yhgc BMC soc chipset Signed-off-by: chuguangqing --- MAINTAINERS | 5 + drivers/gpu/drm/Kconfig | 2 + drivers/gpu/drm/Makefile | 1 + drivers/gpu/drm/yhgch/Kconfig | 5

[PATCH v2 1/1] gpu: drm: fix compilation errors in drm_vram_helper

2025-07-30 Thread chuguangqing
drm_gem_ttm_mmap and drm_gem_ttm_print_info are defined in drm_gem_ttm_helper.c. This patch select CONFIG_DRM_TTM_HELPER on CONFIG_DRM_VRAM_HELPER to resolve the undefined symbol errors. Signed-off-by: chuguangqing --- drivers/gpu/drm/Kconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/gpu/drm/K

[PATCH v2 1/1] gpu: drm: fix compilation errors in drm_vram_helper

2025-07-30 Thread chuguangqing
drm_gem_ttm_mmap and drm_gem_ttm_print_info are defined in drm_gem_ttm_helper.c. This patch select CONFIG_DRM_TTM_HELPER on CONFIG_DRM_VRAM_HELPER to resolve the undefined symbol errors. Signed-off-by: chuguangqing --- drivers/gpu/drm/Kconfig | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/gpu/drm/K

Re: [PATCH 1/1] gpu: drm: fix compilation errors in drm_vram_helper

2025-07-30 Thread chuguangqing
I see. This compilation error was caused by the configuration option not automatically selecting DRM_TTM_HELPER. A revised version of the PR has been submitted.

[PATCH 1/1] gpu: drm: fix compilation errors in drm_vram_helper

2025-07-29 Thread chuguangqing
drm_gem_ttm_mmap and drm_gem_ttm_print_info are defined in drm_gem_ttm_helper.c. This patch adds drm_gem_ttm_helper.o to DRM_VRAM_HELPER to resolve the undefined symbol errors. Signed-off-by: chuguangqing --- drivers/gpu/drm/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/driver