<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="/rss.xsl.xml"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
    <title>Changes in Kconfig</title>
    <description></description>
    <language>en</language>
    <copyright>Copyright 2015</copyright>
    <generator>Java</generator><item>
        <title>004555a1 - drm/imx/dcss: Allow build with COMPILE_TEST=y</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/gpu/drm/imx/dcss/Kconfig#004555a1</link>
        <description>drm/imx/dcss: Allow build with COMPILE_TEST=yAllow imx/dcss to be built with COMPILE_TEST=y for greatercoverage. Builds fine on x86/x86_64 at least.Cc: Laurentiu Palcu &lt;laurentiu.palcu@oss.nxp.com&gt;Cc: Lucas Stach &lt;l.stach@pengutronix.de&gt;Signed-off-by: Ville Syrj&#228;l&#228; &lt;ville.syrjala@linux.intel.com&gt;Link: https://patchwork.freedesktop.org/patch/msgid/20241003111851.10453-8-ville.syrjala@linux.intel.comReviewed-by: Laurentiu Palcu &lt;laurentiu.palcu@oss.nxp.com&gt;

            List of files:
            /linux-6.15/drivers/gpu/drm/imx/dcss/Kconfig</description>
        <pubDate>Thu, 03 Oct 2024 11:18:48 +0000</pubDate>
        <dc:creator>Ville Syrj&#228;l&#228; &lt;ville.syrjala@linux.intel.com&gt;</dc:creator>
    </item>
<item>
        <title>a5f72909 - drm/imx/dcss: Run DRM default client setup</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/gpu/drm/imx/dcss/Kconfig#a5f72909</link>
        <description>drm/imx/dcss: Run DRM default client setupCall drm_client_setup() to run the kernel&apos;s default client setupfor DRM. Set fbdev_probe in struct drm_driver, so that the clientsetup can start the common fbdev client.The dcss driver specifies a preferred color mode of 32. As thisis the default if no format has been given, leave it out entirely.v5:- select DRM_CLIENT_SELECTIONSigned-off-by: Thomas Zimmermann &lt;tzimmermann@suse.de&gt;Cc: Laurentiu Palcu &lt;laurentiu.palcu@oss.nxp.com&gt;Cc: Lucas Stach &lt;l.stach@pengutronix.de&gt;Cc: Shawn Guo &lt;shawnguo@kernel.org&gt;Cc: Sascha Hauer &lt;s.hauer@pengutronix.de&gt;Cc: Pengutronix Kernel Team &lt;kernel@pengutronix.de&gt;Cc: Fabio Estevam &lt;festevam@gmail.com&gt;Acked-by: Javier Martinez Canillas &lt;javierm@redhat.com&gt;Link: https://patchwork.freedesktop.org/patch/msgid/20240924071734.98201-20-tzimmermann@suse.de

            List of files:
            /linux-6.15/drivers/gpu/drm/imx/dcss/Kconfig</description>
        <pubDate>Tue, 24 Sep 2024 07:12:17 +0000</pubDate>
        <dc:creator>Thomas Zimmermann &lt;tzimmermann@suse.de&gt;</dc:creator>
    </item>
<item>
        <title>9da7ec9b - drm/bridge-connector: move to DRM_DISPLAY_HELPER module</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/gpu/drm/imx/dcss/Kconfig#9da7ec9b</link>
        <description>drm/bridge-connector: move to DRM_DISPLAY_HELPER moduledrm_bridge_connector is a &quot;leaf&quot; driver, belonging to the displayhelper, rather than the &quot;CRTC&quot; drm_kms_helper module. Move the driverto the drm/display and add necessary Kconfig selection clauses.Suggested-by: Maxime Ripard &lt;mripard@kernel.org&gt;Acked-by: Maxime Ripard &lt;mripard@kernel.org&gt;Signed-off-by: Dmitry Baryshkov &lt;dmitry.baryshkov@linaro.org&gt;Link: https://patchwork.freedesktop.org/patch/msgid/20240903-drm-bridge-connector-fix-hdmi-reset-v5-2-daebde6d9857@linaro.orgSigned-off-by: Maxime Ripard &lt;mripard@kernel.org&gt;

            List of files:
            /linux-6.15/drivers/gpu/drm/imx/dcss/Kconfig</description>
        <pubDate>Tue, 03 Sep 2024 02:01:57 +0000</pubDate>
        <dc:creator>Dmitry Baryshkov &lt;dmitry.baryshkov@linaro.org&gt;</dc:creator>
    </item>
<item>
        <title>4a83c26a - drm/gem: rename GEM CMA helpers to GEM DMA helpers</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/gpu/drm/imx/dcss/Kconfig#4a83c26a</link>
        <description>drm/gem: rename GEM CMA helpers to GEM DMA helpersRename &quot;GEM CMA&quot; helpers to &quot;GEM DMA&quot; helpers - considering thehierarchy of APIs (mm/cma -&gt; dma -&gt; gem dma) calling them &quot;GEMDMA&quot; seems to be more applicable.Besides that, commit e57924d4ae80 (&quot;drm/doc: Task to rename CMA helpers&quot;)requests to rename the CMA helpers and implies that people seem to beconfused about the naming.In order to do this renaming the following script was used:```	#!/bin/bash	DIRS=&quot;drivers/gpu include/drm Documentation/gpu&quot;	REGEX_SYM_UPPER=&quot;[0-9A-Z_\-]&quot;	REGEX_SYM_LOWER=&quot;[0-9a-z_\-]&quot;	REGEX_GREP_UPPER=&quot;(${REGEX_SYM_UPPER}*)(GEM)_CMA_(${REGEX_SYM_UPPER}*)&quot;	REGEX_GREP_LOWER=&quot;(${REGEX_SYM_LOWER}*)(gem)_cma_(${REGEX_SYM_LOWER}*)&quot;	REGEX_SED_UPPER=&quot;s/${REGEX_GREP_UPPER}/\1\2_DMA_\3/g&quot;	REGEX_SED_LOWER=&quot;s/${REGEX_GREP_LOWER}/\1\2_dma_\3/g&quot;	# Find all upper case &apos;CMA&apos; symbols and replace them with &apos;DMA&apos;.	for ff in $(grep -REHl &quot;${REGEX_GREP_UPPER}&quot; $DIRS)	do	       sed -i -E &quot;$REGEX_SED_UPPER&quot; $ff	done	# Find all lower case &apos;cma&apos; symbols and replace them with &apos;dma&apos;.	for ff in $(grep -REHl &quot;${REGEX_GREP_LOWER}&quot; $DIRS)	do	       sed -i -E &quot;$REGEX_SED_LOWER&quot; $ff	done	# Replace all occurrences of &apos;CMA&apos; / &apos;cma&apos; in comments and	# documentation files with &apos;DMA&apos; / &apos;dma&apos;.	for ff in $(grep -RiHl &quot; cma &quot; $DIRS)	do		sed -i -E &quot;s/ cma / dma /g&quot; $ff		sed -i -E &quot;s/ CMA / DMA /g&quot; $ff	done	# Rename all &apos;cma_obj&apos;s to &apos;dma_obj&apos;.	for ff in $(grep -RiHl &quot;cma_obj&quot; $DIRS)	do		sed -i -E &quot;s/cma_obj/dma_obj/g&quot; $ff	done```Only a few more manual modifications were needed, e.g. reverting thefollowing modifications in some DRM Kconfig files    -       select CMA if HAVE_DMA_CONTIGUOUS    +       select DMA if HAVE_DMA_CONTIGUOUSas well as manually picking the occurrences of &apos;CMA&apos;/&apos;cma&apos; in comments anddocumentation which relate to &quot;GEM CMA&quot;, but not &quot;FB CMA&quot;.Also drivers/gpu/drm/Makefile was fixed up manually after renamingdrm_gem_cma_helper.c to drm_gem_dma_helper.c.This patch is compile-time tested building a x86_64 kernel with`make allyesconfig &amp;&amp; make drivers/gpu/drm`.Acked-by: Sam Ravnborg &lt;sam@ravnborg.org&gt;Acked-by: Thomas Zimmermann &lt;tzimmermann@suse.de&gt;Reviewed-by: Laurent Pinchart &lt;laurent.pinchart@ideasonboard.com&gt;Signed-off-by: Danilo Krummrich &lt;dakr@redhat.com&gt;Reviewed-by: Liviu Dudau &lt;liviu.dudau@arm.com&gt; #drivers/gpu/drm/armSigned-off-by: Sam Ravnborg &lt;sam@ravnborg.org&gt;Link: https://patchwork.freedesktop.org/patch/msgid/20220802000405.949236-4-dakr@redhat.com

            List of files:
            /linux-6.15/drivers/gpu/drm/imx/dcss/Kconfig</description>
        <pubDate>Tue, 02 Aug 2022 00:04:03 +0000</pubDate>
        <dc:creator>Danilo Krummrich &lt;dakr@redhat.com&gt;</dc:creator>
    </item>
<item>
        <title>1aae0575 - drm/imx/dcss: i.MX8MQ DCSS select DRM_GEM_CMA_HELPER</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/gpu/drm/imx/dcss/Kconfig#1aae0575</link>
        <description>drm/imx/dcss: i.MX8MQ DCSS select DRM_GEM_CMA_HELPERWithout DRM_GEM_CMA_HELPER i.MX8MQ DCSS won&apos;t build. This needs to bethere.Signed-off-by: Rudi Heitbaum &lt;rudi@heitbaum.com&gt;Reviewed-by: Laurentiu Palcu &lt;laurentiu.palcu@oss.nxp.com&gt;Signed-off-by: Laurentiu Palcu &lt;laurentiu.palcu@oss.nxp.com&gt;Link: https://patchwork.freedesktop.org/patch/msgid/20220216212228.1217831-1-rudi@heitbaum.com

            List of files:
            /linux-6.15/drivers/gpu/drm/imx/dcss/Kconfig</description>
        <pubDate>Wed, 16 Feb 2022 21:22:28 +0000</pubDate>
        <dc:creator>Rudi Heitbaum &lt;rudi@heitbaum.com&gt;</dc:creator>
    </item>
<item>
        <title>09717af7 - drm: Remove CONFIG_DRM_KMS_CMA_HELPER option</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/gpu/drm/imx/dcss/Kconfig#09717af7</link>
        <description>drm: Remove CONFIG_DRM_KMS_CMA_HELPER optionLink drm_fb_cma_helper.o into drm_cma_helper.ko if CONFIG_DRM_KMS_HELPERhas been set. Remove CONFIG_DRM_KMS_CMA_HELPER config option. SelectingKMS helpers and CMA will now automatically enable CMA KMS helpers.Some drivers&apos; Kconfig files did not correctly select KMS or CMA helpers.Fix this as part of the change.Signed-off-by: Thomas Zimmermann &lt;tzimmermann@suse.de&gt;Reviewed-by: Daniel Vetter &lt;daniel.vetter@ffwll.ch&gt;Link: https://patchwork.freedesktop.org/patch/msgid/20211106193509.17472-3-tzimmermann@suse.de

            List of files:
            /linux-6.15/drivers/gpu/drm/imx/dcss/Kconfig</description>
        <pubDate>Sat, 06 Nov 2021 19:35:09 +0000</pubDate>
        <dc:creator>Thomas Zimmermann &lt;tzimmermann@suse.de&gt;</dc:creator>
    </item>
<item>
        <title>6a8a58ac - drm/imx/dcss: fix compilation issue on 32bit</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/gpu/drm/imx/dcss/Kconfig#6a8a58ac</link>
        <description>drm/imx/dcss: fix compilation issue on 32bitWhen compiling for 32bit platforms, the compilation fails with:ERROR: modpost: &quot;__aeabi_ldivmod&quot;[drivers/gpu/drm/imx/dcss/imx-dcss.ko] undefined!ERROR: modpost: &quot;__aeabi_uldivmod&quot;[drivers/gpu/drm/imx/dcss/imx-dcss.ko] undefined!This patch adds a dependency on ARM64 since no 32bit SoCs have DCSS, so far.Signed-off-by: Laurentiu Palcu &lt;laurentiu.palcu@oss.nxp.com&gt;Reported-by: Daniel Vetter &lt;daniel@ffwll.ch&gt;Reviewed-by: Daniel Vetter &lt;daniel.vetter@ffwll.ch&gt;Signed-off-by: Lucas Stach &lt;l.stach@pengutronix.de&gt;Link: https://patchwork.freedesktop.org/patch/msgid/20200910095250.7663-1-laurentiu.palcu@oss.nxp.com

            List of files:
            /linux-6.15/drivers/gpu/drm/imx/dcss/Kconfig</description>
        <pubDate>Thu, 10 Sep 2020 09:52:50 +0000</pubDate>
        <dc:creator>Laurentiu Palcu &lt;laurentiu.palcu@oss.nxp.com&gt;</dc:creator>
    </item>
<item>
        <title>9021c317 - drm/imx: Add initial support for DCSS on iMX8MQ</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/gpu/drm/imx/dcss/Kconfig#9021c317</link>
        <description>drm/imx: Add initial support for DCSS on iMX8MQThis adds initial support for iMX8MQ&apos;s Display Controller Subsystem (DCSS).Some of its capabilities include: * 4K@60fps; * HDR10; * one graphics and 2 video pipelines; * on-the-fly decompression of compressed video and graphics;The reference manual can be found here:https://www.nxp.com/webapp/Download?colCode=IMX8MDQLQRMThe current patch adds only basic functionality: one primary plane forgraphics, linear, tiled and super-tiled buffers support (no graphicsdecompression yet), no HDR10 and no video planes.Video planes support and HDR10 will be added in subsequent patches onceper-plane de-gamma/CSC/gamma support is in.Signed-off-by: Laurentiu Palcu &lt;laurentiu.palcu@nxp.com&gt;Reviewed-by: Lucas Stach &lt;l.stach@pengutronix.de&gt;Acked-by: Guido G&#252;nther &lt;agx@sigxcpu.org&gt;Signed-off-by: Lucas Stach &lt;l.stach@pengutronix.de&gt;Link: https://patchwork.freedesktop.org/patch/msgid/20200731081836.3048-3-laurentiu.palcu@oss.nxp.com

            List of files:
            /linux-6.15/drivers/gpu/drm/imx/dcss/Kconfig</description>
        <pubDate>Fri, 31 Jul 2020 08:18:30 +0000</pubDate>
        <dc:creator>Laurentiu Palcu &lt;laurentiu.palcu@nxp.com&gt;</dc:creator>
    </item>
</channel>
</rss>
