<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="/source/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>f4b369c6fe0ceaba2da2daff8c9eb415f85926dd - Merge branch &apos;next&apos; into for-linus</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/gpu/drm/xe/Kconfig#f4b369c6fe0ceaba2da2daff8c9eb415f85926dd</link>
        <description>Merge branch &apos;next&apos; into for-linusPrepare input updates for 7.1 merge window.

            List of files:
            /linux/drivers/gpu/drm/xe/Kconfig</description>
        <pubDate>Mon, 20 Apr 2026 03:28:57 +0200</pubDate>
        <dc:creator>Dmitry Torokhov &lt;dmitry.torokhov@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>0421ccdfad0d92713a812a5aeb7d07b0ea7213c8 - Merge tag &apos;v7.0-rc3&apos; into next</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/gpu/drm/xe/Kconfig#0421ccdfad0d92713a812a5aeb7d07b0ea7213c8</link>
        <description>Merge tag &apos;v7.0-rc3&apos; into nextSync up with the mainline to brig up the latest changes, specificallychanges to ALPS driver.

            List of files:
            /linux/drivers/gpu/drm/xe/Kconfig</description>
        <pubDate>Thu, 12 Mar 2026 18:44:42 +0100</pubDate>
        <dc:creator>Dmitry Torokhov &lt;dmitry.torokhov@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>f09812b85fa6f41058bcc46e70ac406bf9b0493a - Merge drm/drm-next into drm-intel-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/gpu/drm/xe/Kconfig#f09812b85fa6f41058bcc46e70ac406bf9b0493a</link>
        <description>Merge drm/drm-next into drm-intel-nextSync with v7.0-rc1 which contains a few treewide changes affecting i915.Signed-off-by: Jani Nikula &lt;jani.nikula@intel.com&gt;

            List of files:
            /linux/drivers/gpu/drm/xe/Kconfig</description>
        <pubDate>Wed, 25 Feb 2026 12:23:04 +0100</pubDate>
        <dc:creator>Jani Nikula &lt;jani.nikula@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>2bebc88d5e37ddcb5ea5039a39f39527662b27f0 - Merge drm/drm-next into drm-misc-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/gpu/drm/xe/Kconfig#2bebc88d5e37ddcb5ea5039a39f39527662b27f0</link>
        <description>Merge drm/drm-next into drm-misc-nextBackmerging to get bug fixes from v6.19-rc7.Signed-off-by: Thomas Zimmermann &lt;tzimmermann@suse.de&gt;

            List of files:
            /linux/drivers/gpu/drm/xe/Kconfig</description>
        <pubDate>Thu, 05 Feb 2026 10:33:06 +0100</pubDate>
        <dc:creator>Thomas Zimmermann &lt;tzimmermann@suse.de&gt;</dc:creator>
    </item>
<item>
        <title>9386f49316074d2d76fd78d6bd359996de42fb7f - drm/xe: Select CONFIG_DEVICE_PRIVATE when DRM_XE_GPUSVM is selected</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/gpu/drm/xe/Kconfig#9386f49316074d2d76fd78d6bd359996de42fb7f</link>
        <description>drm/xe: Select CONFIG_DEVICE_PRIVATE when DRM_XE_GPUSVM is selectedCONFIG_DEVICE_PRIVATE is a prerequisite for DRM_XE_GPUSVM.Explicitly select it so that DRM_XE_GPUSVM is not unintentionallyleft out from distro configs not explicitly enablingCONFIG_DEVICE_PRIVATE.v2:- Select also CONFIG_ZONE_DEVICE since it&apos;s needed by  CONFIG_DEVICE_PRIVATE.v3:- Depend on CONFIG_ZONE_DEVICE rather than selecting it.Cc: Matthew Auld &lt;matthew.auld@intel.com&gt;Cc: Matthew Brost &lt;matthew.brost@intel.com&gt;Cc: Rodrigo Vivi &lt;rodrigo.vivi@intel.com&gt;Cc: &lt;dri-devel@lists.freedesktop.org&gt;Signed-off-by: Thomas Hellstr&#246;m &lt;thomas.hellstrom@linux.intel.com&gt;Reviewed-by: Matthew Auld &lt;matthew.auld@intel.com&gt;Link: https://patch.msgid.link/20260121091048.41371-3-thomas.hellstrom@linux.intel.com

            List of files:
            /linux/drivers/gpu/drm/xe/Kconfig</description>
        <pubDate>Wed, 21 Jan 2026 10:10:48 +0100</pubDate>
        <dc:creator>Thomas Hellstr&#246;m &lt;thomas.hellstrom@linux.intel.com&gt;</dc:creator>
    </item>
<item>
        <title>1e372b246199ca7a35f930177fea91b557dac16e - drm, drm/xe: Fix xe userptr in the absence of CONFIG_DEVICE_PRIVATE</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/gpu/drm/xe/Kconfig#1e372b246199ca7a35f930177fea91b557dac16e</link>
        <description>drm, drm/xe: Fix xe userptr in the absence of CONFIG_DEVICE_PRIVATECONFIG_DEVICE_PRIVATE is not selected by default by some distros,for example Fedora, and that leads to a regression in the xe driversince userptr support gets compiled out.It turns out that DRM_GPUSVM, which is needed for xe userptr supportcompiles also without CONFIG_DEVICE_PRIVATE, but doesn&apos;t compilewithout CONFIG_ZONE_DEVICE.Exclude the drm_pagemap files from compilation with !CONFIG_ZONE_DEVICE,and remove the CONFIG_DEVICE_PRIVATE dependency from CONFIG_DRM_GPUSVM andthe xe driver&apos;s selection of it, re-enabling xe userptr for those configs.v2:- Don&apos;t compile the drm_pagemap files unless CONFIG_ZONE_DEVICE is set.- Adjust the drm_pagemap.h header accordingly.Fixes: 9e9787414882 (&quot;drm/xe/userptr: replace xe_hmm with gpusvm&quot;)Cc: Matthew Auld &lt;matthew.auld@intel.com&gt;Cc: Himal Prasad Ghimiray &lt;himal.prasad.ghimiray@intel.com&gt;Cc: Thomas Hellstr&#246;m &lt;thomas.hellstrom@linux.intel.com&gt;Cc: Matthew Brost &lt;matthew.brost@intel.com&gt;Cc: &quot;Thomas Hellstr&#246;m&quot; &lt;thomas.hellstrom@linux.intel.com&gt;Cc: Rodrigo Vivi &lt;rodrigo.vivi@intel.com&gt;Cc: dri-devel@lists.freedesktop.orgCc: &lt;stable@vger.kernel.org&gt; # v6.18+Signed-off-by: Thomas Hellstr&#246;m &lt;thomas.hellstrom@linux.intel.com&gt;Reviewed-by: Matthew Auld &lt;matthew.auld@intel.com&gt;Acked-by: Maarten Lankhorst &lt;maarten.lankhorst@linux.intel.com&gt;Link: https://patch.msgid.link/20260121091048.41371-2-thomas.hellstrom@linux.intel.com

            List of files:
            /linux/drivers/gpu/drm/xe/Kconfig</description>
        <pubDate>Wed, 21 Jan 2026 10:10:47 +0100</pubDate>
        <dc:creator>Thomas Hellstr&#246;m &lt;thomas.hellstrom@linux.intel.com&gt;</dc:creator>
    </item>
<item>
        <title>c17ee635fd3a482b2ad2bf5e269755c2eae5f25e - Merge drm/drm-fixes into drm-misc-fixes</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/gpu/drm/xe/Kconfig#c17ee635fd3a482b2ad2bf5e269755c2eae5f25e</link>
        <description>Merge drm/drm-fixes into drm-misc-fixes7.0-rc1 was just released, let&apos;s merge it to kick the new release cycle.Signed-off-by: Maxime Ripard &lt;mripard@kernel.org&gt;

            List of files:
            /linux/drivers/gpu/drm/xe/Kconfig</description>
        <pubDate>Mon, 23 Feb 2026 10:09:45 +0100</pubDate>
        <dc:creator>Maxime Ripard &lt;mripard@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>d3b402c5a2d47f51eb0581da1a7b142f82cb10d1 - Merge remote-tracking branch &apos;torvalds/master&apos; into perf-tools-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/gpu/drm/xe/Kconfig#d3b402c5a2d47f51eb0581da1a7b142f82cb10d1</link>
        <description>Merge remote-tracking branch &apos;torvalds/master&apos; into perf-tools-nextMerge with upstream to pick up fixes from perf-tools and from othertools/ parts that interact with tools/perf.Signed-off-by: Arnaldo Carvalho de Melo &lt;acme@redhat.com&gt;

            List of files:
            /linux/drivers/gpu/drm/xe/Kconfig</description>
        <pubDate>Mon, 26 Jan 2026 21:03:53 +0100</pubDate>
        <dc:creator>Arnaldo Carvalho de Melo &lt;acme@redhat.com&gt;</dc:creator>
    </item>
<item>
        <title>273a171dee33cb77070d7259c469d9440548c7df - Merge branch &apos;next&apos; into for-linus</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/gpu/drm/xe/Kconfig#273a171dee33cb77070d7259c469d9440548c7df</link>
        <description>Merge branch &apos;next&apos; into for-linusPrepare input updates for 7.0 merge window.

            List of files:
            /linux/drivers/gpu/drm/xe/Kconfig</description>
        <pubDate>Sat, 14 Feb 2026 22:06:51 +0100</pubDate>
        <dc:creator>Dmitry Torokhov &lt;dmitry.torokhov@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>dd03dd60e8cdd5ef0f0cbc18276c45009bcc51f4 - Merge tag &apos;asoc-v6.20&apos; of https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound into for-linus</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/gpu/drm/xe/Kconfig#dd03dd60e8cdd5ef0f0cbc18276c45009bcc51f4</link>
        <description>Merge tag &apos;asoc-v6.20&apos; of https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound into for-linusASoC: Updates for v7.0This release is almost all abut driers, there&apos;s very little core workhere, although some of that driver work is in more generic areas likeSDCA and SOF: - Generic SDCA support for reporting jack events. - Continuing platform support, cleanup and feature improements for the   AMD, Intel, Qualcomm and SOF code. - Platform description improvements for the Cirrus drivers. - Support for NXP i.MX952, Realtek RT1320 and RT5575, and Sophogo   CV1800B.We also pulled in one small SPI API update and some more substantialregmap work (cache description improvements) for use in drivers.

            List of files:
            /linux/drivers/gpu/drm/xe/Kconfig</description>
        <pubDate>Mon, 09 Feb 2026 17:39:11 +0100</pubDate>
        <dc:creator>Takashi Iwai &lt;tiwai@suse.de&gt;</dc:creator>
    </item>
<item>
        <title>3e4067169c573fba9dd8f77480f3a6e9c723b507 - Merge branch &apos;v6.19-rc8&apos;</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/gpu/drm/xe/Kconfig#3e4067169c573fba9dd8f77480f3a6e9c723b507</link>
        <description>Merge branch &apos;v6.19-rc8&apos;Update to avoid conflicts with /urgent patches.Signed-off-by: Peter Zijlstra &lt;peterz@infradead.org&gt;

            List of files:
            /linux/drivers/gpu/drm/xe/Kconfig</description>
        <pubDate>Tue, 03 Feb 2026 12:04:13 +0100</pubDate>
        <dc:creator>Peter Zijlstra &lt;peterz@infradead.org&gt;</dc:creator>
    </item>
<item>
        <title>a010fe8d869635fd15c1d5768ba6a2f48795fa36 - Merge git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/gpu/drm/xe/Kconfig#a010fe8d869635fd15c1d5768ba6a2f48795fa36</link>
        <description>Merge git://git.kernel.org/pub/scm/linux/kernel/git/netdev/netCross-merge networking fixes after downstream PR (net-6.19-rc8).No adjacent changes, conflicts:drivers/net/ethernet/spacemit/k1_emac.c  2c84959167d64 (&quot;net: spacemit: Check for netif_carrier_ok() in emac_stats_update()&quot;)  f66086798f91f (&quot;net: spacemit: Remove broken flow control support&quot;)https://lore.kernel.org/aXjAqZA3iEWD_DGM@sirena.org.ukSigned-off-by: Jakub Kicinski &lt;kuba@kernel.org&gt;

            List of files:
            /linux/drivers/gpu/drm/xe/Kconfig</description>
        <pubDate>Fri, 23 Jan 2026 05:13:25 +0100</pubDate>
        <dc:creator>Jakub Kicinski &lt;kuba@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>751ec6dd6773237bf480291ca894a696a2991c62 - spi: aspeed: Improve handling of shared SPI</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/gpu/drm/xe/Kconfig#751ec6dd6773237bf480291ca894a696a2991c62</link>
        <description>spi: aspeed: Improve handling of shared SPIMerge series from Chin-Ting Kuo &lt;chin-ting_kuo@aspeedtech.com&gt;:This patch series improves handling of SPI controllers that areshared by spi-mem devices and other SPI peripherals.The primary goal of this series is to support non-spi-mem devices inthe ASPEED FMC/SPI controller driver. It also addresses an issue inthe spi-mem framework observed when different types of SPI devicesoperate concurrently on the same controller, ensuring that spi-memoperations are properly serialized.

            List of files:
            /linux/drivers/gpu/drm/xe/Kconfig</description>
        <pubDate>Wed, 28 Jan 2026 12:22:06 +0100</pubDate>
        <dc:creator>Mark Brown &lt;broonie@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>4651c87b0083925540f6c3d26a6c5b4868d7b884 - regmap: reg_default_cb for flat cache defaults</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/gpu/drm/xe/Kconfig#4651c87b0083925540f6c3d26a6c5b4868d7b884</link>
        <description>regmap: reg_default_cb for flat cache defaultsMerge series from &quot;Sheetal .&quot; &lt;sheetal@nvidia.com&gt;:This series adds a reg_default_cb callback for REGCACHE_FLAT to providedefaults for registers not listed in reg_defaults. Defaults are loadedeagerly during regcache init and the callback can use writeable_reg tofilter valid addresses and avoid holes.

            List of files:
            /linux/drivers/gpu/drm/xe/Kconfig</description>
        <pubDate>Wed, 28 Jan 2026 04:48:12 +0100</pubDate>
        <dc:creator>Mark Brown &lt;broonie@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>6704d98a4f48b7424edc0f7ae2a06c0a8af02e2f - BackMerge tag &apos;v6.19-rc7&apos; into drm-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/gpu/drm/xe/Kconfig#6704d98a4f48b7424edc0f7ae2a06c0a8af02e2f</link>
        <description>BackMerge tag &apos;v6.19-rc7&apos; into drm-nextLinux 6.19-rc7This is needed for msm and rust trees.Signed-off-by: Dave Airlie &lt;airlied@redhat.com&gt;

            List of files:
            /linux/drivers/gpu/drm/xe/Kconfig</description>
        <pubDate>Wed, 28 Jan 2026 03:44:28 +0100</pubDate>
        <dc:creator>Dave Airlie &lt;airlied@redhat.com&gt;</dc:creator>
    </item>
<item>
        <title>1924bd68a0c06f9f2c06cf35e60dfc55cdc34a91 - ASoC: codec: Remove ak4641/pxa2xx-ac97 and convert to</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/gpu/drm/xe/Kconfig#1924bd68a0c06f9f2c06cf35e60dfc55cdc34a91</link>
        <description>ASoC: codec: Remove ak4641/pxa2xx-ac97 and convert toMerge series from &quot;Peng Fan (OSS)&quot; &lt;peng.fan@oss.nxp.com&gt;:The main goal is to convert drivers to use GPIO descriptors. While readingthe code, I think it is time to remove ak4641 and pxa2xx-ac97 driver,more info could be found in commit log of each patch.Then only need to convert sound/arm/pxa2xx-ac97-lib.c to use GPIOdescriptors. Not have hardware to test the pxa2xx ac97.

            List of files:
            /linux/drivers/gpu/drm/xe/Kconfig</description>
        <pubDate>Wed, 28 Jan 2026 01:37:49 +0100</pubDate>
        <dc:creator>Mark Brown &lt;broonie@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>eb3dad518e4da48ab6c6df16aa8895b8b0bd6ecf - Merge tag &apos;v6.19-rc7&apos; into driver-core-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/gpu/drm/xe/Kconfig#eb3dad518e4da48ab6c6df16aa8895b8b0bd6ecf</link>
        <description>Merge tag &apos;v6.19-rc7&apos; into driver-core-nextWe need the driver-core fixes in here as well to build on top of.Signed-off-by: Danilo Krummrich &lt;dakr@kernel.org&gt;

            List of files:
            /linux/drivers/gpu/drm/xe/Kconfig</description>
        <pubDate>Mon, 26 Jan 2026 13:23:52 +0100</pubDate>
        <dc:creator>Danilo Krummrich &lt;dakr@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>dbd91d4f55ac4917b0b7f48b02eb8539805d0c85 - Merge 6.19-rc7 into char-misc-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/gpu/drm/xe/Kconfig#dbd91d4f55ac4917b0b7f48b02eb8539805d0c85</link>
        <description>Merge 6.19-rc7 into char-misc-nextWe need the char/misc/iio fixes in here as well.Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;

            List of files:
            /linux/drivers/gpu/drm/xe/Kconfig</description>
        <pubDate>Mon, 26 Jan 2026 12:04:04 +0100</pubDate>
        <dc:creator>Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;</dc:creator>
    </item>
<item>
        <title>cc4adab164b772a34b3340d644b7c4728498581e - Merge tag &apos;v6.19-rc1&apos; into msm-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/gpu/drm/xe/Kconfig#cc4adab164b772a34b3340d644b7c4728498581e</link>
        <description>Merge tag &apos;v6.19-rc1&apos; into msm-nextMerge Linux 6.19-rc1 in order to catch up with other changes (e.g. UBWCconfig database defining UBWC_6).Signed-off-by: Dmitry Baryshkov &lt;dmitry.baryshkov@oss.qualcomm.com&gt;

            List of files:
            /linux/drivers/gpu/drm/xe/Kconfig</description>
        <pubDate>Tue, 20 Jan 2026 23:06:55 +0100</pubDate>
        <dc:creator>Dmitry Baryshkov &lt;dmitry.baryshkov@oss.qualcomm.com&gt;</dc:creator>
    </item>
<item>
        <title>b8304863a3990d0f18c38e5b94191830a63ee1af - Merge drm/drm-next into drm-intel-next</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/gpu/drm/xe/Kconfig#b8304863a3990d0f18c38e5b94191830a63ee1af</link>
        <description>Merge drm/drm-next into drm-intel-nextSync-up some display code needed for Async flips refactor.Signed-off-by: Rodrigo Vivi &lt;rodrigo.vivi@intel.com&gt;

            List of files:
            /linux/drivers/gpu/drm/xe/Kconfig</description>
        <pubDate>Mon, 15 Dec 2025 14:24:02 +0100</pubDate>
        <dc:creator>Rodrigo Vivi &lt;rodrigo.vivi@intel.com&gt;</dc:creator>
    </item>
</channel>
</rss>
