<?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>c87e859c - drm/imx/lcdc: Implement DRM driver for imx25</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/gpu/drm/imx/Kconfig#c87e859c</link>
        <description>drm/imx/lcdc: Implement DRM driver for imx25Add support for the LCD Controller found on i.MX21 and i.MX25.It targets to be a drop in replacement for the imx-fb driver.[ukl: Rebase to a newer kernel version, various smaller fixes andimprovements]Signed-off-by: Marian Cichy &lt;m.cichy@pengutronix.de&gt;Reviewed-by: Philipp Zabel &lt;p.zabel@pengutronix.de&gt;Signed-off-by: Uwe Kleine-K&#246;nig &lt;u.kleine-koenig@pengutronix.de&gt;Link: https://lore.kernel.org/r/20230306115249.2223042-2-u.kleine-koenig@pengutronix.deSigned-off-by: Philipp Zabel &lt;p.zabel@pengutronix.de&gt;Link: https://patchwork.freedesktop.org/patch/msgid/20230306115249.2223042-3-u.kleine-koenig@pengutronix.de

            List of files:
            /linux-6.15/drivers/gpu/drm/imx/Kconfig</description>
        <pubDate>Mon, 06 Mar 2023 11:52:49 +0000</pubDate>
        <dc:creator>Marian Cichy &lt;m.cichy@pengutronix.de&gt;</dc:creator>
    </item>
<item>
        <title>4b6cb2b6 - drm/imx: move IPUv3 driver into separate subdirectory</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/gpu/drm/imx/Kconfig#4b6cb2b6</link>
        <description>drm/imx: move IPUv3 driver into separate subdirectoryThe IPUv3 and DCSS driver are two totally separate DRM drivers. Havingone of them live in the drivers/gpu/drm/imx toplevel directory and theother one in the dcss/ subdirectory is confusing. Move the IPUv3 driverinto its own subdirectory to make the separation more clear.Signed-off-by: Lucas Stach &lt;l.stach@pengutronix.de&gt;Reviewed-by: Philipp Zabel &lt;p.zabel@pengutronix.de&gt;Link: https://lore.kernel.org/r/20221125112519.3849636-1-l.stach@pengutronix.deSigned-off-by: Philipp Zabel &lt;p.zabel@pengutronix.de&gt;Link: https://patchwork.freedesktop.org/patch/msgid/20221125112519.3849636-1-l.stach@pengutronix.de

            List of files:
            /linux-6.15/drivers/gpu/drm/imx/Kconfig</description>
        <pubDate>Fri, 25 Nov 2022 11:25:19 +0000</pubDate>
        <dc:creator>Lucas Stach &lt;l.stach@pengutronix.de&gt;</dc:creator>
    </item>
<item>
        <title>ff52fe00 - drm/imx: Kconfig: Remove duplicated &apos;select DRM_KMS_HELPER&apos; line</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/gpu/drm/imx/Kconfig#ff52fe00</link>
        <description>drm/imx: Kconfig: Remove duplicated &apos;select DRM_KMS_HELPER&apos; lineA duplicated line &apos;select DRM_KMS_HELPER&apos; was introduced in Kconfig fileby commit 09717af7d13d (&quot;drm: Remove CONFIG_DRM_KMS_CMA_HELPER option&quot;),so remove it.Fixes: 09717af7d13d (&quot;drm: Remove CONFIG_DRM_KMS_CMA_HELPER option&quot;)Signed-off-by: Liu Ying &lt;victor.liu@nxp.com&gt;Reviewed-by: Philipp Zabel &lt;p.zabel@pengutronix.de&gt;Signed-off-by: Philipp Zabel &lt;p.zabel@pengutronix.de&gt;Link: https://patchwork.freedesktop.org/patch/msgid/20221009023527.3669647-1-victor.liu@nxp.com

            List of files:
            /linux-6.15/drivers/gpu/drm/imx/Kconfig</description>
        <pubDate>Sun, 09 Oct 2022 02:35:27 +0000</pubDate>
        <dc:creator>Liu Ying &lt;victor.liu@nxp.com&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/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/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>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/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/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>5d912952 - drm/imx: dw_hdmi-imx: depend on OF to fix randconfig compile tests on x86_64</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/gpu/drm/imx/Kconfig#5d912952</link>
        <description>drm/imx: dw_hdmi-imx: depend on OF to fix randconfig compile tests on x86_64The i.MX6 HDMI driver uses of_drm_find_bridge() and thus cannot be builtwith CONFIG_OF disabled:    ld: drivers/gpu/drm/imx/dw_hdmi-imx.o: in function `dw_hdmi_imx_probe&apos;:    dw_hdmi-imx.c:(.text+0x29f): undefined reference to `of_drm_find_bridge&apos;Reported-by: Randy Dunlap &lt;rdunlap@infradead.org&gt;Acked-by: Randy Dunlap &lt;rdunlap@infradead.org&gt; # build-testedFixes: c805ec7eb210 (&quot;drm/imx: dw_hdmi-imx: move initialization into probe&quot;)Signed-off-by: Philipp Zabel &lt;p.zabel@pengutronix.de&gt;

            List of files:
            /linux-6.15/drivers/gpu/drm/imx/Kconfig</description>
        <pubDate>Wed, 06 Jan 2021 17:19:10 +0000</pubDate>
        <dc:creator>Philipp Zabel &lt;p.zabel@pengutronix.de&gt;</dc:creator>
    </item>
<item>
        <title>ccce5ea0 - drm/imx: depend on COMMON_CLK to fix compile tests</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/gpu/drm/imx/Kconfig#ccce5ea0</link>
        <description>drm/imx: depend on COMMON_CLK to fix compile testsThe iMX DRM LVDS driver uses Common Clock Framework thus it cannot bebuilt on platforms without it (e.g. compile test on MIPS with RALINK andSOC_RT305X):    /usr/bin/mips-linux-gnu-ld: drivers/gpu/drm/imx/imx-ldb.o: in function `imx_ldb_encoder_disable&apos;:    imx-ldb.c:(.text+0x400): undefined reference to `clk_set_parent&apos;Signed-off-by: Krzysztof Kozlowski &lt;krzk@kernel.org&gt;Signed-off-by: Philipp Zabel &lt;p.zabel@pengutronix.de&gt;

            List of files:
            /linux-6.15/drivers/gpu/drm/imx/Kconfig</description>
        <pubDate>Tue, 17 Nov 2020 18:24:19 +0000</pubDate>
        <dc:creator>Krzysztof Kozlowski &lt;krzk@kernel.org&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/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/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>
<item>
        <title>ec8f24b7 - treewide: Add SPDX license identifier - Makefile/Kconfig</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/gpu/drm/imx/Kconfig#ec8f24b7</link>
        <description>treewide: Add SPDX license identifier - Makefile/KconfigAdd SPDX license identifiers to all Make/Kconfig files which: - Have no license information of any formThese files fall under the project license, GPL v2 only. The resulting SPDXlicense identifier is:  GPL-2.0-onlySigned-off-by: Thomas Gleixner &lt;tglx@linutronix.de&gt;Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;

            List of files:
            /linux-6.15/drivers/gpu/drm/imx/Kconfig</description>
        <pubDate>Sun, 19 May 2019 12:07:45 +0000</pubDate>
        <dc:creator>Thomas Gleixner &lt;tglx@linutronix.de&gt;</dc:creator>
    </item>
<item>
        <title>f6019702 - drm/imx: allow building under COMPILE_TEST</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/gpu/drm/imx/Kconfig#f6019702</link>
        <description>drm/imx: allow building under COMPILE_TESTAllow to compile-test imx-drm on other platforms.Signed-off-by: Philipp Zabel &lt;p.zabel@pengutronix.de&gt;Reviewed-by: Linus Walleij &lt;linus.walleij@linaro.org&gt;

            List of files:
            /linux-6.15/drivers/gpu/drm/imx/Kconfig</description>
        <pubDate>Mon, 05 Nov 2018 15:36:27 +0000</pubDate>
        <dc:creator>Philipp Zabel &lt;p.zabel@pengutronix.de&gt;</dc:creator>
    </item>
<item>
        <title>2acef9c3 - drm/imx: imx-tve: depend on COMMON_CLK</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/gpu/drm/imx/Kconfig#2acef9c3</link>
        <description>drm/imx: imx-tve: depend on COMMON_CLKSince the TVE provides a clock to the DI, the driver can only becompiled if the common clock framework is enabled. With the COMMON_CLKdependency in place, it will be possible to allow building the otherparts of imx-drm under COMPILE_TEST on architectures that do not selectthe common clock framework.Signed-off-by: Philipp Zabel &lt;p.zabel@pengutronix.de&gt;Reviewed-by: Linus Walleij &lt;linus.walleij@linaro.org&gt;

            List of files:
            /linux-6.15/drivers/gpu/drm/imx/Kconfig</description>
        <pubDate>Fri, 18 Jan 2019 11:37:14 +0000</pubDate>
        <dc:creator>Philipp Zabel &lt;p.zabel@pengutronix.de&gt;</dc:creator>
    </item>
<item>
        <title>3d1df96a - drm/imx: merge imx-drm-core and ipuv3-crtc in one module</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/gpu/drm/imx/Kconfig#3d1df96a</link>
        <description>drm/imx: merge imx-drm-core and ipuv3-crtc in one moduleWhile it is possible to hook other CRTC implementations into imx-drmin practice there are none yet and the option to disable ipuv3-crtcsupport has been hidden for a long time.Now that the imx-drm-core has learned to deal with some of thespecifics of IPUv3 there is a cyclic dependency between both parts.To get rid of this and to decimate the Kconfig maze a bit, simplymerge both parts into one module.Signed-off-by: Lucas Stach &lt;l.stach@pengutronix.de&gt;Signed-off-by: Philipp Zabel &lt;p.zabel@pengutronix.de&gt;

            List of files:
            /linux-6.15/drivers/gpu/drm/imx/Kconfig</description>
        <pubDate>Thu, 23 Mar 2017 16:18:37 +0000</pubDate>
        <dc:creator>Lucas Stach &lt;l.stach@pengutronix.de&gt;</dc:creator>
    </item>
<item>
        <title>400cc2de - drm/imx: make fbdev support really optional</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/gpu/drm/imx/Kconfig#400cc2de</link>
        <description>drm/imx: make fbdev support really optionalCurrently enabling Freescale i.MX DRM support automatically pullsin fbdev dependency. However this dep is unnecessary sinceDRM core already handles this for us (DRM_FBDEV_EMULATION).Signed-off-by: Tobias Jakobi &lt;tjakobi@math.uni-bielefeld.de&gt;Signed-off-by: Daniel Vetter &lt;daniel.vetter@ffwll.ch&gt;Link: http://patchwork.freedesktop.org/patch/msgid/1468586897-32298-8-git-send-email-tjakobi@math.uni-bielefeld.de

            List of files:
            /linux-6.15/drivers/gpu/drm/imx/Kconfig</description>
        <pubDate>Fri, 15 Jul 2016 12:48:03 +0000</pubDate>
        <dc:creator>Tobias Jakobi &lt;tjakobi@math.uni-bielefeld.de&gt;</dc:creator>
    </item>
<item>
        <title>e1c7e324 - dma-mapping: always provide the dma_map_ops based implementation</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/gpu/drm/imx/Kconfig#e1c7e324</link>
        <description>dma-mapping: always provide the dma_map_ops based implementationMove the generic implementation to &lt;linux/dma-mapping.h&gt; now that allarchitectures support it and remove the HAVE_DMA_ATTR Kconfig symbol nowthat everyone supports them.[valentinrothberg@gmail.com: remove leftovers in Kconfig]Signed-off-by: Christoph Hellwig &lt;hch@lst.de&gt;Cc: &quot;David S. Miller&quot; &lt;davem@davemloft.net&gt;Cc: Aurelien Jacquiot &lt;a-jacquiot@ti.com&gt;Cc: Chris Metcalf &lt;cmetcalf@ezchip.com&gt;Cc: David Howells &lt;dhowells@redhat.com&gt;Cc: Geert Uytterhoeven &lt;geert@linux-m68k.org&gt;Cc: Haavard Skinnemoen &lt;hskinnemoen@gmail.com&gt;Cc: Hans-Christian Egtvedt &lt;egtvedt@samfundet.no&gt;Cc: Helge Deller &lt;deller@gmx.de&gt;Cc: James Hogan &lt;james.hogan@imgtec.com&gt;Cc: Jesper Nilsson &lt;jesper.nilsson@axis.com&gt;Cc: Koichi Yasutake &lt;yasutake.koichi@jp.panasonic.com&gt;Cc: Ley Foon Tan &lt;lftan@altera.com&gt;Cc: Mark Salter &lt;msalter@redhat.com&gt;Cc: Mikael Starvik &lt;starvik@axis.com&gt;Cc: Steven Miao &lt;realmz6@gmail.com&gt;Cc: Vineet Gupta &lt;vgupta@synopsys.com&gt;Cc: Christian Borntraeger &lt;borntraeger@de.ibm.com&gt;Cc: Joerg Roedel &lt;jroedel@suse.de&gt;Cc: Sebastian Ott &lt;sebott@linux.vnet.ibm.com&gt;Signed-off-by: Valentin Rothberg &lt;valentinrothberg@gmail.com&gt;Signed-off-by: Andrew Morton &lt;akpm@linux-foundation.org&gt;Signed-off-by: Linus Torvalds &lt;torvalds@linux-foundation.org&gt;

            List of files:
            /linux-6.15/drivers/gpu/drm/imx/Kconfig</description>
        <pubDate>Wed, 20 Jan 2016 23:02:05 +0000</pubDate>
        <dc:creator>Christoph Hellwig &lt;hch@lst.de&gt;</dc:creator>
    </item>
<item>
        <title>c1ff5a7a - drm/imx: Remove local fbdev emulation Kconfig option</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/gpu/drm/imx/Kconfig#c1ff5a7a</link>
        <description>drm/imx: Remove local fbdev emulation Kconfig optionDRM_IMX_FB_HELPER config is currently used to enable/disable fbdevemulation for the imx kms driver.Remove this local config option and use the top level DRM_FBDEV_EMULATIONconfig option where applicable. Using this config lets us also preventwrapping around drm_fb_helper_* calls with #ifdefs in certain places.Tested-by: Philipp Zabel &lt;p.zabel@pengutronix.de&gt;Signed-off-by: Archit Taneja &lt;architt@codeaurora.org&gt;Link: http://patchwork.freedesktop.org/patch/msgid/1445933459-5249-2-git-send-email-architt@codeaurora.orgSigned-off-by: Daniel Vetter &lt;daniel.vetter@ffwll.ch&gt;

            List of files:
            /linux-6.15/drivers/gpu/drm/imx/Kconfig</description>
        <pubDate>Tue, 27 Oct 2015 08:10:57 +0000</pubDate>
        <dc:creator>Archit Taneja &lt;architt@codeaurora.org&gt;</dc:creator>
    </item>
<item>
        <title>751e2676 - drm/imx: imx-ldb: add drm_panel support</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/gpu/drm/imx/Kconfig#751e2676</link>
        <description>drm/imx: imx-ldb: add drm_panel supportThis patch allows to optionally attach the lvds-channel to a panelsupported by a drm_panel driver using of-graph bindings, instead ofsupplying the modes via display-timings in the device tree.This depends on of_graph_get_port_by_id and uses the OF graph tolink the optional DRM panel to the LDB lvds-channel. The outputport number is 1 on devices without the 4-port input multiplexer(i.MX5) and 4 on devices with the mux (i.MX6).Before:	ldb {		...		lvds-channel@0 {			...			display-timings {				native-timing = &lt;&amp;timing1&gt;;				timing1: etm0700g0dh6 {					hactive = &lt;800&gt;;					vactive = &lt;480&gt;;					clock-frequency = &lt;33260000&gt;;					hsync-len = &lt;128&gt;;					hback-porch = &lt;88&gt;;					hfront-porch = &lt;40&gt;;					vsync-len = &lt;2&gt;;					vback-porch = &lt;33&gt;;					vfront-porch = &lt;10&gt;;					hsync-active = &lt;0&gt;;					vsync-active = &lt;0&gt;;					...				};			};			...		};	};After:	ldb {		...		lvds-channel@0 {			...			port@4 {				reg = &lt;4&gt;;				lvds_out: endpoint {					remote_endpoint = &lt;&amp;panel_in&gt;;				};			};		};	};	panel {		compatible = &quot;edt,etm0700g0dh6&quot;, &quot;simple-panel&quot;;		...		port {			panel_in: endpoint {				remote-endpoint = &lt;&amp;lvds_out&gt;;			};		};	};[Fixed build error due to missing select on DRM_PANEL --rmk]Signed-off-by: Russell King &lt;rmk+kernel@arm.linux.org.uk&gt;Signed-off-by: Philipp Zabel &lt;p.zabel@pengutronix.de&gt;

            List of files:
            /linux-6.15/drivers/gpu/drm/imx/Kconfig</description>
        <pubDate>Thu, 06 Mar 2014 13:54:39 +0000</pubDate>
        <dc:creator>Philipp Zabel &lt;p.zabel@pengutronix.de&gt;</dc:creator>
    </item>
<item>
        <title>db88c8f4 - drm: Kconfig: Let all DRM_GEM_CMA_HELPER related macros depend on HAVE_DMA_ATTRS</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/gpu/drm/imx/Kconfig#db88c8f4</link>
        <description>drm: Kconfig: Let all DRM_GEM_CMA_HELPER related macros depend on HAVE_DMA_ATTRSDRM_GEM_CMA_HELPER is depend on HAVE_DMA_ATTRS, or it will break thebuilding. The related error (with allmodconfig under xtensa):    CC [M]  drivers/gpu/drm/drm_gem_cma_helper.o  drivers/gpu/drm/drm_gem_cma_helper.c: In function &apos;drm_gem_cma_create&apos;:  drivers/gpu/drm/drm_gem_cma_helper.c:110:19: error: implicit declaration of function &apos;dma_alloc_writecombine&apos; [-Werror=implicit-function-declaration]    cma_obj-&gt;vaddr = dma_alloc_writecombine(drm-&gt;dev, size,                     ^  drivers/gpu/drm/drm_gem_cma_helper.c:110:17: warning: assignment makes pointer from integer without a cast [-Wint-conversion]    cma_obj-&gt;vaddr = dma_alloc_writecombine(drm-&gt;dev, size,                   ^  drivers/gpu/drm/drm_gem_cma_helper.c: In function &apos;drm_gem_cma_free_object&apos;:  drivers/gpu/drm/drm_gem_cma_helper.c:193:3: error: implicit declaration of function &apos;dma_free_writecombine&apos; [-Werror=implicit-function-declaration]     dma_free_writecombine(gem_obj-&gt;dev-&gt;dev, cma_obj-&gt;base.size,     ^  drivers/gpu/drm/drm_gem_cma_helper.c: In function &apos;drm_gem_cma_mmap_obj&apos;:  drivers/gpu/drm/drm_gem_cma_helper.c:330:8: error: implicit declaration of function &apos;dma_mmap_writecombine&apos; [-Werror=implicit-function-declaration]    ret = dma_mmap_writecombine(cma_obj-&gt;base.dev-&gt;dev, vma,          ^Signed-off-by: Chen Gang &lt;gang.chen.5i5j@gmail.com&gt;Signed-off-by: Dave Airlie &lt;airlied@redhat.com&gt;

            List of files:
            /linux-6.15/drivers/gpu/drm/imx/Kconfig</description>
        <pubDate>Sun, 01 Feb 2015 14:08:33 +0000</pubDate>
        <dc:creator>Chen Gang S &lt;gang.chen@sunrus.com.cn&gt;</dc:creator>
    </item>
<item>
        <title>b21f4b65 - drm: imx: imx-hdmi: move imx-hdmi to bridge/dw_hdmi</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/gpu/drm/imx/Kconfig#b21f4b65</link>
        <description>drm: imx: imx-hdmi: move imx-hdmi to bridge/dw_hdmithe original imx hdmi driver is under drm/imx/,which depends on imx-drm, so move the imx hdmidriver out to drm/bridge and rename it to dw_hdmiSigned-off-by: Andy Yan &lt;andy.yan@rock-chips.com&gt;Tested-by: Russell King &lt;rmk+kernel@arm.linux.org.uk&gt;Acked-by: Russell King &lt;rmk+kernel@arm.linux.org.uk&gt;Signed-off-by: Philipp Zabel &lt;p.zabel@pengutronix.de&gt;

            List of files:
            /linux-6.15/drivers/gpu/drm/imx/Kconfig</description>
        <pubDate>Fri, 05 Dec 2014 06:26:31 +0000</pubDate>
        <dc:creator>Andy Yan &lt;andy.yan@rock-chips.com&gt;</dc:creator>
    </item>
<item>
        <title>6556f7f8 - drm: imx: Move imx-drm driver out of staging</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/gpu/drm/imx/Kconfig#6556f7f8</link>
        <description>drm: imx: Move imx-drm driver out of stagingThe imx-drm driver was put into staging mostly for the following reasons,all of which have been addressed or superseded: - convert the irq driver to use linear irq domains - work out the device tree bindings, this lead to the common of_graph   bindings being used - factor out common helper functions, this mostly resulted in the   component framework and drm of_graph helpers.Before adding new fixes, and certainly before adding new features,move it into its proper place below drivers/gpu/drm.Signed-off-by: Philipp Zabel &lt;p.zabel@pengutronix.de&gt;Signed-off-by: Dave Airlie &lt;airlied@redhat.com&gt;

            List of files:
            /linux-6.15/drivers/gpu/drm/imx/Kconfig</description>
        <pubDate>Mon, 24 Nov 2014 15:33:34 +0000</pubDate>
        <dc:creator>Philipp Zabel &lt;p.zabel@pengutronix.de&gt;</dc:creator>
    </item>
</channel>
</rss>
