<?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>41fe82e7 - drm/tilcdc: Run DRM default client setup</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/gpu/drm/tilcdc/Kconfig#41fe82e7</link>
        <description>drm/tilcdc: Run DRM default client setupCall drm_client_setup_with_color_mode() to run the kernel&apos;s defaultclient setup for DRM. Set fbdev_probe in struct drm_driver, so thatthe client setup can start the common fbdev client.v5:- select DRM_CLIENT_SELECTIONv3:- add DRM_FBDEV_DMA_DRIVER_OPS macroSigned-off-by: Thomas Zimmermann &lt;tzimmermann@suse.de&gt;Cc: Jyri Sarha &lt;jyri.sarha@iki.fi&gt;Cc: Tomi Valkeinen &lt;tomi.valkeinen@ideasonboard.com&gt;Acked-by: Javier Martinez Canillas &lt;javierm@redhat.com&gt;Link: https://patchwork.freedesktop.org/patch/msgid/20240924071734.98201-43-tzimmermann@suse.de

            List of files:
            /linux-6.15/drivers/gpu/drm/tilcdc/Kconfig</description>
        <pubDate>Tue, 24 Sep 2024 07:12:40 +0000</pubDate>
        <dc:creator>Thomas Zimmermann &lt;tzimmermann@suse.de&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/tilcdc/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/tilcdc/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/tilcdc/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/tilcdc/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>ec8f24b7 - treewide: Add SPDX license identifier - Makefile/Kconfig</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/gpu/drm/tilcdc/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/tilcdc/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>8c5dc8d9 - video: backlight: Remove useless BACKLIGHT_LCD_SUPPORT kernel symbol</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/gpu/drm/tilcdc/Kconfig#8c5dc8d9</link>
        <description>video: backlight: Remove useless BACKLIGHT_LCD_SUPPORT kernel symbolWe have two *_CLASS_DEVICE kernel config options (LCD_CLASS_DEVICEand BACKLIGHT_LCD_DEVICE) that do the same job.The patch removes useless BACKLIGHT_LCD_SUPPORT optionand converts LCD_CLASS_DEVICE into a menu.Signed-off-by: Alexander Shiyan &lt;shc_work@mail.ru&gt;Acked-by: Bartlomiej Zolnierkiewicz &lt;b.zolnierkie@samsung.com&gt;Acked-by: Daniel Thompson &lt;daniel.thompson@linaro.org&gt;Signed-off-by: Lee Jones &lt;lee.jones@linaro.org&gt;

            List of files:
            /linux-6.15/drivers/gpu/drm/tilcdc/Kconfig</description>
        <pubDate>Thu, 17 Jan 2019 13:33:35 +0000</pubDate>
        <dc:creator>Alexander Shiyan &lt;shc_work@mail.ru&gt;</dc:creator>
    </item>
<item>
        <title>544f7377 - drm/tilcdc: Add support for drm panels</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/gpu/drm/tilcdc/Kconfig#544f7377</link>
        <description>drm/tilcdc: Add support for drm panelsAdd support for drm panels to tilcdc. Adding the support on top of theexisting bridge support needs only couple of lines of code when usingusing the drm panel bridge helpers.Signed-off-by: Jyri Sarha &lt;jsarha@ti.com&gt;Reviewed-by: Tomi Valkeinen &lt;tomi.valkeinen@ti.com&gt;

            List of files:
            /linux-6.15/drivers/gpu/drm/tilcdc/Kconfig</description>
        <pubDate>Sun, 18 Feb 2018 17:48:32 +0000</pubDate>
        <dc:creator>Jyri Sarha &lt;jsarha@ti.com&gt;</dc:creator>
    </item>
<item>
        <title>739acd85 - drm/tilcdc: Remove obsolete &quot;ti,tilcdc,slave&quot; dts binding support</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/gpu/drm/tilcdc/Kconfig#739acd85</link>
        <description>drm/tilcdc: Remove obsolete &quot;ti,tilcdc,slave&quot; dts binding supportThis patch removes DRM_TILCDC_SLAVE_COMPAT option for supporting theobsolete &quot;ti,tilcdc,slave&quot; device tree binding. The new of_graph basedbinding - that is widely used in other drm driver too - has beensupported since Linux v4.2. Maintaining the the backwards dtsconversion code in the DRM_TILCDC_SLAVE_COMPAT has become a nuisancefor the device/of development so the we decided to drop it after Linuxv4.14, the 2017 LTS.Signed-off-by: Jyri Sarha &lt;jsarha@ti.com&gt;Acked-by: Rob Herring &lt;robh@kernel.org&gt;

            List of files:
            /linux-6.15/drivers/gpu/drm/tilcdc/Kconfig</description>
        <pubDate>Fri, 03 Nov 2017 10:54:01 +0000</pubDate>
        <dc:creator>Jyri Sarha &lt;jsarha@ti.com&gt;</dc:creator>
    </item>
<item>
        <title>1103ea40 - drm/tilcdc: make fbdev support really optional</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/gpu/drm/tilcdc/Kconfig#1103ea40</link>
        <description>drm/tilcdc: make fbdev support really optionalCurrently enabling TI LCDC DRM support automatically pulls infbdev 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-13-git-send-email-tjakobi@math.uni-bielefeld.de

            List of files:
            /linux-6.15/drivers/gpu/drm/tilcdc/Kconfig</description>
        <pubDate>Fri, 15 Jul 2016 12:48:08 +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/tilcdc/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/tilcdc/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>4e722158 - drm/tilcdc: Add DRM_TILCDC_SLAVE_COMPAT for ti,tilcdc,slave binding support</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/gpu/drm/tilcdc/Kconfig#4e722158</link>
        <description>drm/tilcdc: Add DRM_TILCDC_SLAVE_COMPAT for ti,tilcdc,slave binding supportAdds a CONFIG_DRM_TILCDC_SLAVE_COMPAT module for &quot;ti,tilcdc,slave&quot;node conversion. The implementation is in tilcdc_slave_compat.c and ituses tilcdc_slave_compat.dts as a basis for creating a DTSoverlay. The DTS overlay adds an external tda998x encoder to tilcdcthat corresponds to the old tda998x based slave encoder.Signed-off-by: Jyri Sarha &lt;jsarha@ti.com&gt;Acked-by: Tomi Valkeinen &lt;tomi.valkeinen@ti.com&gt;

            List of files:
            /linux-6.15/drivers/gpu/drm/tilcdc/Kconfig</description>
        <pubDate>Wed, 18 Feb 2015 09:24:03 +0000</pubDate>
        <dc:creator>Jyri Sarha &lt;jsarha@ti.com&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/tilcdc/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/tilcdc/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>92b6f89f - drm: Add separate Kconfig option for fbdev helpers</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/gpu/drm/tilcdc/Kconfig#92b6f89f</link>
        <description>drm: Add separate Kconfig option for fbdev helpersFor drivers which might want to disable fbdev legacy support.Select the new option in all drivers for now, so this shouldn&apos;t resultin any change. Drivers need some work anyway to make fbdev supportoptional (if they have it implemented, that is), so the recommendedway to expose this is by adding per-driver options. At least as longas most drivers don&apos;t support disabling the fbdev support.v2: Update for new drm drivers msm and rcar-du. Note that Rob&apos;s msmdriver can already take advantage of this, which allows us to buildmsm without any fbdev depencies in the kernel!v3: Move the MODULE_* stuff from the fbdev helper file todrm_crtc_helper.c.Cc: David Herrmann &lt;dh.herrmann@gmail.com&gt;Cc: Rob Clark &lt;robdclark@gmail.com&gt;Reviewed-by: Rob Clark &lt;robdclark@gmail.com&gt;Acked-by: Dave Airlie &lt;airlied@linux.ie&gt;Reviewed-by: Chon Ming Lee &lt;chon.ming.lee@intel.com&gt;Signed-off-by: Daniel Vetter &lt;daniel.vetter@ffwll.ch&gt;

            List of files:
            /linux-6.15/drivers/gpu/drm/tilcdc/Kconfig</description>
        <pubDate>Tue, 08 Oct 2013 15:44:47 +0000</pubDate>
        <dc:creator>Daniel Vetter &lt;daniel.vetter@ffwll.ch&gt;</dc:creator>
    </item>
<item>
        <title>1ed7fad6 - drm/tilcd: select BACKLIGHT_LCD_SUPPORT</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/gpu/drm/tilcdc/Kconfig#1ed7fad6</link>
        <description>drm/tilcd: select BACKLIGHT_LCD_SUPPORTThe dependecies for BACKLIGHT_CLASS_DEVICE are defined a bitstrange, but it seems one has to always select both BACKLIGHT_CLASS_DEVICEand BACKLIGHT_LCD_SUPPORT to avoid this error:drivers/gpu/drm/tilcdc/tilcdc_panel.c:396: undefined reference to `of_find_backlight_by_node&apos;Cc: Rob Clark &lt;robdclark@gmail.com&gt;Cc: dri-devel@lists.freedesktop.orgCc: Dave Airlie &lt;airlied@redhat.com&gt;Signed-off-by: Arnd Bergmann &lt;arnd@arndb.de&gt;Signed-off-by: Dave Airlie &lt;airlied@gmail.com&gt;

            List of files:
            /linux-6.15/drivers/gpu/drm/tilcdc/Kconfig</description>
        <pubDate>Fri, 31 May 2013 22:22:47 +0000</pubDate>
        <dc:creator>Arnd Bergmann &lt;arnd@arndb.de&gt;</dc:creator>
    </item>
<item>
        <title>a38884f6 - videomode: simplify videomode Kconfig and Makefile</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/gpu/drm/tilcdc/Kconfig#a38884f6</link>
        <description>videomode: simplify videomode Kconfig and MakefileThis patch simplifies videomode related Kconfig and Makefile. After thispatch, there&apos;s only one non-user selectable Kconfig option left,VIDEOMODE_HELPERS. The reasons for the change:* Videomode helper functions are not something that should be shown in  the kernel configuration options. The related code should just be  included if it&apos;s needed, i.e. selected by drivers using videomode.* There&apos;s no need to have separate Kconfig options for videomode and  display_timing. First of all, the amount of code for both is quite  small. Second, videomode depends on display_timing, and display_timing  in itself is not really useful, so both would be included in any case.* CONFIG_VIDEOMODE is a bit vague name, and CONFIG_VIDEOMODE_HELPERS  describes better what&apos;s included.Signed-off-by: Tomi Valkeinen &lt;tomi.valkeinen@ti.com&gt;Cc: Steffen Trumtrar &lt;s.trumtrar@pengutronix.de&gt;Acked-by: Laurent Pinchart &lt;laurent.pinchart@ideasonboard.com&gt;

            List of files:
            /linux-6.15/drivers/gpu/drm/tilcdc/Kconfig</description>
        <pubDate>Tue, 12 Mar 2013 08:15:43 +0000</pubDate>
        <dc:creator>Tomi Valkeinen &lt;tomi.valkeinen@ti.com&gt;</dc:creator>
    </item>
<item>
        <title>be88298b - drm/tilcdc: only build on arm</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/gpu/drm/tilcdc/Kconfig#be88298b</link>
        <description>drm/tilcdc: only build on arm[airlied: hack for now until we fix cma helpers on other OF platforms]Signed-off-by: Stephen Rothwell &lt;sfr@canb.auug.org.au&gt;Signed-off-by: Dave Airlie &lt;airlied@linux.ie&gt;

            List of files:
            /linux-6.15/drivers/gpu/drm/tilcdc/Kconfig</description>
        <pubDate>Mon, 25 Feb 2013 23:54:48 +0000</pubDate>
        <dc:creator>Stephen Rothwell &lt;sfr@canb.auug.org.au&gt;</dc:creator>
    </item>
<item>
        <title>0d4bbaf9 - drm/tilcdc: add support for LCD panels (v5)</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/gpu/drm/tilcdc/Kconfig#0d4bbaf9</link>
        <description>drm/tilcdc: add support for LCD panels (v5)Add an output panel driver for LCD panels.  Tested with LCD3 cape onbeaglebone.v1: originalv2: s/of_find_node_by_name()/of_get_child_by_name()/ from Pantelis    Antoniouv3: add backlight supportv4: rebase to latest of video timing helpersv5: remove some unneeded fields from panel-info struct, add DT bindings    docsSigned-off-by: Rob Clark &lt;robdclark@gmail.com&gt;Tested-by: Koen Kooi &lt;koen@dominion.thruhere.net&gt;

            List of files:
            /linux-6.15/drivers/gpu/drm/tilcdc/Kconfig</description>
        <pubDate>Tue, 18 Dec 2012 23:34:16 +0000</pubDate>
        <dc:creator>Rob Clark &lt;robdclark@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>16ea975e - drm/tilcdc: add TI LCD Controller DRM driver (v4)</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/gpu/drm/tilcdc/Kconfig#16ea975e</link>
        <description>drm/tilcdc: add TI LCD Controller DRM driver (v4)A simple DRM/KMS driver for the TI LCD Controller found in varioussmaller TI parts (AM33xx, OMAPL138, etc).  This driver uses theCMA helpers.  Currently only the TFP410 DVI encoder is supported(tested with beaglebone + DVI cape).  There are also various LCDdisplays, for which support can be added (as I get hw to test on),and an external i2c HDMI encoder found on some boards.The display controller supports a single CRTC.  And the encoder+connector are split out into sub-devices.  Depending on which LCDor external encoder is actually present, the appropriate outputmodule(s) will be loaded.v1: originalv2: fix fb refcnting and few other cleanupsv3: get +/- vsync/hsync from timings rather than panel-info, add    option DT max-bandwidth field so driver doesn&apos;t attempt to    pick a display mode with too high memory bandwidth, and other    small cleanupsv4: remove some unneeded stuff from panel-info struct, properly    set high bits for hfp/hsw/hbp for rev 2, add DT bindings docsSigned-off-by: Rob Clark &lt;robdclark@gmail.com&gt;Reviewed-by: Daniel Vetter &lt;daniel.vetter@ffwll.ch&gt;Tested-by: Koen Kooi &lt;koen@dominion.thruhere.net&gt;

            List of files:
            /linux-6.15/drivers/gpu/drm/tilcdc/Kconfig</description>
        <pubDate>Tue, 08 Jan 2013 21:04:28 +0000</pubDate>
        <dc:creator>Rob Clark &lt;robdclark@gmail.com&gt;</dc:creator>
    </item>
</channel>
</rss>
