<?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>a24a487a - drm/virtgpu: Run DRM default client setup</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/gpu/drm/virtio/Kconfig#a24a487a</link>
        <description>drm/virtgpu: 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 virtgpu 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: David Airlie &lt;airlied@redhat.com&gt;Cc: Gerd Hoffmann &lt;kraxel@redhat.com&gt;Cc: Gurchetan Singh &lt;gurchetansingh@chromium.org&gt;Cc: Chia-I Wu &lt;olvaffe@gmail.com&gt;Acked-by: Javier Martinez Canillas &lt;javierm@redhat.com&gt;Link: https://patchwork.freedesktop.org/patch/msgid/20240924071734.98201-62-tzimmermann@suse.de

            List of files:
            /linux-6.15/drivers/gpu/drm/virtio/Kconfig</description>
        <pubDate>Tue, 24 Sep 2024 07:12:59 +0000</pubDate>
        <dc:creator>Thomas Zimmermann &lt;tzimmermann@suse.de&gt;</dc:creator>
    </item>
<item>
        <title>72122c69 - drm/virtio: Add option to disable KMS support</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/gpu/drm/virtio/Kconfig#72122c69</link>
        <description>drm/virtio: Add option to disable KMS supportAdd a build option to disable modesetting support.  This is useful incases where the guest only needs to use the GPU in a headless mode, or(such as in the CrOS usage) window surfaces are proxied to a hostcompositor.As the modesetting ioctls are a big surface area for potential securitybugs to be found (it&apos;s happened in the past, we should assume it willagain in the future), it makes sense to have a build option to disablethose ioctls in cases where they serve no legitimate purpose.v2: Use more if (IS_ENABLED(...))v3: Also permit the host to advertise no scanoutsv4: Spiff out commit msgv5: Make num_scanouts==0 and DRM_VIRTIO_GPU_KMS=n behave the samev6: Drop conditionally building virtgpu_display.c and early-out of    it&apos;s init/fini fxns insteadSigned-off-by: Rob Clark &lt;robdclark@chromium.org&gt;Reviewed-by: Dmitry Osipenko &lt;dmitry.osipenko@collabora.com&gt;Reviewed-by: Javier Martinez Canillas &lt;javierm@redhat.com&gt;Reviewed-by: Gerd Hoffmann &lt;kraxel@redhat.com&gt;Signed-off-by: Dmitry Osipenko &lt;dmitry.osipenko@collabora.com&gt;Link: https://patchwork.freedesktop.org/patch/msgid/20230302233506.3146290-1-robdclark@gmail.com

            List of files:
            /linux-6.15/drivers/gpu/drm/virtio/Kconfig</description>
        <pubDate>Thu, 02 Mar 2023 23:35:06 +0000</pubDate>
        <dc:creator>Rob Clark &lt;robdclark@chromium.org&gt;</dc:creator>
    </item>
<item>
        <title>2077ec34 - drivers: gpu: drm: virtio: fix dependency of DRM_VIRTIO_GPU on VIRTIO</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/gpu/drm/virtio/Kconfig#2077ec34</link>
        <description>drivers: gpu: drm: virtio: fix dependency of DRM_VIRTIO_GPU on VIRTIOVIRTIO itself has no dependencies and therefore can easily be justselect&apos;ed, instead of depending on it. The current depends on causesany others trying to select VIRTIO to fail like this:   drivers/gpu/drm/Kconfig:74:error: recursive dependency detected!   drivers/gpu/drm/Kconfig:74:	symbol DRM_KMS_HELPER is selected by DRM_VIRTIO_GPU   drivers/gpu/drm/virtio/Kconfig:2:	symbol DRM_VIRTIO_GPU depends on VIRTIO   drivers/virtio/Kconfig:2:	symbol VIRTIO is selected by GPIO_VIRTIO   drivers/gpio/Kconfig:1618:	symbol GPIO_VIRTIO depends on GPIOLIB   drivers/gpio/Kconfig:14:	symbol GPIOLIB is selected by I2C_MUX_LTC4306   drivers/i2c/muxes/Kconfig:47:	symbol I2C_MUX_LTC4306 depends on I2C   drivers/i2c/Kconfig:8:	symbol I2C is selected by FB_DDC   drivers/video/fbdev/Kconfig:63:	symbol FB_DDC depends on FB   drivers/video/fbdev/Kconfig:12:	symbol FB is selected by DRM_KMS_FB_HELPER   drivers/gpu/drm/Kconfig:80:	symbol DRM_KMS_FB_HELPER depends on DRM_KMS_HELPERIt seems that having both &apos;depends on&apos; as well as &apos;select&apos; on the same symbolsends us into big trouble, and Kconfig can&apos;t break up the circular dependency(note that in the tested configuration, neither I2C, FB or DRM are enabled atall). Perhaps we could consider this a bug in Kconfig, but the trouble caneasily be circumvented by changing &apos;depends on&apos; into &apos;select&apos;.DRM_VIRTIO_GPU also depends on VIRTIO_MENU, so even after this change, thatoption will only show up if the user already enabled virtio in the config.This change didn&apos;t cause any changes in the .config after menuconfig run,so we should be completely safe here.Signed-off-by: Enrico Weigelt, metux IT consult &lt;info@metux.net&gt;Reviewed-by: Anthoine Bourgeois &lt;anthoine.bourgeois@gmail.com&gt;Link: http://patchwork.freedesktop.org/patch/msgid/20201204131221.2827-1-info@metux.netSigned-off-by: Gerd Hoffmann &lt;kraxel@redhat.com&gt;

            List of files:
            /linux-6.15/drivers/gpu/drm/virtio/Kconfig</description>
        <pubDate>Fri, 04 Dec 2020 13:12:21 +0000</pubDate>
        <dc:creator>Enrico Weigelt, metux IT consult &lt;info@metux.net&gt;</dc:creator>
    </item>
<item>
        <title>bfacb849 - drm: virtio: fix kconfig dependency warning</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/gpu/drm/virtio/Kconfig#bfacb849</link>
        <description>drm: virtio: fix kconfig dependency warningFix kconfig dependency warning by using a different Kconfig symbol.WARNING: unmet direct dependencies detected for VIRTIO_DMA_SHARED_BUFFER  Depends on [n]: VIRTIO_MENU [=n] &amp;&amp; DMA_SHARED_BUFFER [=y]  Selected by [y]:  - DRM_VIRTIO_GPU [=y] &amp;&amp; HAS_IOMEM [=y] &amp;&amp; DRM [=y] &amp;&amp; VIRTIO [=y] &amp;&amp; MMU [=y]Signed-off-by: Randy Dunlap &lt;rdunlap@infradead.org&gt;Link: http://patchwork.freedesktop.org/patch/msgid/7481fb88-6b04-3726-57e0-0f513245c657@infradead.orgCc: David Airlie &lt;airlied@linux.ie&gt;Cc: Gerd Hoffmann &lt;kraxel@redhat.com&gt;Cc: dri-devel@lists.freedesktop.orgCc: virtualization@lists.linux-foundation.orgSigned-off-by: Gerd Hoffmann &lt;kraxel@redhat.com&gt;

            List of files:
            /linux-6.15/drivers/gpu/drm/virtio/Kconfig</description>
        <pubDate>Fri, 28 Aug 2020 14:05:57 +0000</pubDate>
        <dc:creator>Randy Dunlap &lt;rdunlap@infradead.org&gt;</dc:creator>
    </item>
<item>
        <title>9fe2f897 - virtio: fix build for configs without dma-bufs</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/gpu/drm/virtio/Kconfig#9fe2f897</link>
        <description>virtio: fix build for configs without dma-bufsReported-by: kernel test robot &lt;lkp@intel.com&gt;Signed-off-by: David Stevens &lt;stevensd@chromium.org&gt;Link: http://patchwork.freedesktop.org/patch/msgid/20200819031011.310180-1-stevensd@chromium.orgSigned-off-by: Gerd Hoffmann &lt;kraxel@redhat.com&gt;

            List of files:
            /linux-6.15/drivers/gpu/drm/virtio/Kconfig</description>
        <pubDate>Wed, 19 Aug 2020 03:10:11 +0000</pubDate>
        <dc:creator>David Stevens &lt;stevensd@chromium.org&gt;</dc:creator>
    </item>
<item>
        <title>c66df701 - drm/virtio: switch from ttm to gem shmem helpers</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/gpu/drm/virtio/Kconfig#c66df701</link>
        <description>drm/virtio: switch from ttm to gem shmem helpersvirtio-gpu basically needs a sg_table for the bo, to tell the host wherethe backing pages for the object are.  So the gem shmem helpers are aperfect fit.  Some drm_gem_object_funcs need thin wrappers to update thehost state, but otherwise the helpers handle everything just fine.Once the fencing was sorted the switch was surprisingly easy and for themost part just removing the ttm code.v4: fix drm_gem_object_funcs name.Signed-off-by: Gerd Hoffmann &lt;kraxel@redhat.com&gt;Acked-by: Daniel Vetter &lt;daniel.vetter@ffwll.ch&gt;Reviewed-by: Chia-I Wu &lt;olvaffe@gmail.com&gt;Link: http://patchwork.freedesktop.org/patch/msgid/20190829103301.3539-15-kraxel@redhat.com

            List of files:
            /linux-6.15/drivers/gpu/drm/virtio/Kconfig</description>
        <pubDate>Thu, 29 Aug 2019 10:32:57 +0000</pubDate>
        <dc:creator>Gerd Hoffmann &lt;kraxel@redhat.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/virtio/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/virtio/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>011cda58 - drm: fix compilations issues introduced by &quot;drm: allow to use mmuless SoC&quot;</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/gpu/drm/virtio/Kconfig#011cda58</link>
        <description>drm: fix compilations issues introduced by &quot;drm: allow to use mmuless SoC&quot;Removing MMU configuration flag from DRM make few automaticbuild failed when they answer yes to all flags.Add asm/vga.h file on Blackfin architecture to not broke compilation.Signed-off-by: Benjamin Gaignard &lt;benjamin.gaignard@linaro.org&gt;Fixes: 62a0d98a188c (&quot;drm: allow to use mmuless SoC&quot;)Signed-off-by: Daniel Vetter &lt;daniel.vetter@ffwll.ch&gt;Link: http://patchwork.freedesktop.org/patch/msgid/1483789151-6603-1-git-send-email-benjamin.gaignard@linaro.org

            List of files:
            /linux-6.15/drivers/gpu/drm/virtio/Kconfig</description>
        <pubDate>Sat, 07 Jan 2017 11:39:11 +0000</pubDate>
        <dc:creator>Benjamin Gaignard &lt;benjamin.gaignard@linaro.org&gt;</dc:creator>
    </item>
<item>
        <title>de1e211f - drm/virtio: kconfig: Fixup white space.</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/gpu/drm/virtio/Kconfig#de1e211f</link>
        <description>drm/virtio: kconfig: Fixup white space.Use tabs instead of spaces.Signed-off-by: Peter Griffin &lt;peter.griffin@linaro.org&gt;Acked-by: Lee Jones &lt;lee.jones@linaro.org&gt;Signed-off-by: Sean Paul &lt;seanpaul@chromium.org&gt;Link: http://patchwork.freedesktop.org/patch/msgid/1475913318-12275-1-git-send-email-peter.griffin@linaro.orgLink: http://patchwork.freedesktop.org/patch/msgid/1476238699-25820-1-git-send-email-jiang.biao2@zte.com.cn

            List of files:
            /linux-6.15/drivers/gpu/drm/virtio/Kconfig</description>
        <pubDate>Sat, 08 Oct 2016 07:55:18 +0000</pubDate>
        <dc:creator>Peter Griffin &lt;peter.griffin@linaro.org&gt;</dc:creator>
    </item>
<item>
        <title>0b6320df - drm/virtio: make fbdev support really optional</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/gpu/drm/virtio/Kconfig#0b6320df</link>
        <description>drm/virtio: make fbdev support really optionalCurrently enabling VirtIO 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-19-git-send-email-tjakobi@math.uni-bielefeld.de

            List of files:
            /linux-6.15/drivers/gpu/drm/virtio/Kconfig</description>
        <pubDate>Fri, 15 Jul 2016 12:48:14 +0000</pubDate>
        <dc:creator>Tobias Jakobi &lt;tjakobi@math.uni-bielefeld.de&gt;</dc:creator>
    </item>
<item>
        <title>dc5698e8 - Add virtio gpu driver.</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/gpu/drm/virtio/Kconfig#dc5698e8</link>
        <description>Add virtio gpu driver.This patch adds a kms driver for the virtio gpu.  The xorg modesettingdriver can handle the device just fine, the framebuffer for fbcon isthere too.Qemu patches for the host side are under review currently.The pci version of the device comes in two variants: with and withoutvga compatibility.  The former has a extra memory bar for the vgaframebuffer, the later is a pure virtio device.  The only concern forthis driver is that in the virtio-vga case we have to kick out thefirmware framebuffer.Initial revision has only 2d support, 3d (virgl) support requiressome more work on the qemu side and will be added later.Signed-off-by: Dave Airlie &lt;airlied@redhat.com&gt;Signed-off-by: Gerd Hoffmann &lt;kraxel@redhat.com&gt;Acked-by: Michael S. Tsirkin &lt;mst@redhat.com&gt;

            List of files:
            /linux-6.15/drivers/gpu/drm/virtio/Kconfig</description>
        <pubDate>Mon, 09 Sep 2013 00:02:56 +0000</pubDate>
        <dc:creator>Dave Airlie &lt;airlied@gmail.com&gt;</dc:creator>
    </item>
</channel>
</rss>
