<?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 Makefile</title>
    <description></description>
    <language>en</language>
    <copyright>Copyright 2015</copyright>
    <generator>Java</generator><item>
        <title>de16c322 - spi: sophgo: add SG2044 SPI NOR controller driver</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/spi/Makefile#de16c322</link>
        <description>spi: sophgo: add SG2044 SPI NOR controller driverAdd support for SG2044 SPI NOR controller in Sophgo SoC.Signed-off-by: Longbin Li &lt;looong.bin@gmail.com&gt;Link: https://patch.msgid.link/20250304083548.10101-3-looong.bin@gmail.comSigned-off-by: Mark Brown &lt;broonie@kernel.org&gt;

            List of files:
            /linux-6.15/drivers/spi/Makefile</description>
        <pubDate>Tue, 04 Mar 2025 08:35:43 +0000</pubDate>
        <dc:creator>Longbin Li &lt;looong.bin@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>7304d190 - spi: spi-qpic: add driver for QCOM SPI NAND flash Interface</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/spi/Makefile#7304d190</link>
        <description>spi: spi-qpic: add driver for QCOM SPI NAND flash InterfaceThis driver implements support for the SPI-NAND mode of QCOM NAND FlashInterface as a SPI-MEM controller with pipelined ECC capability.Co-developed-by: Sricharan Ramabadhran &lt;quic_srichara@quicinc.com&gt;Signed-off-by: Sricharan Ramabadhran &lt;quic_srichara@quicinc.com&gt;Co-developed-by: Varadarajan Narayanan &lt;quic_varada@quicinc.com&gt;Signed-off-by: Varadarajan Narayanan &lt;quic_varada@quicinc.com&gt;Signed-off-by: Md Sadre Alam &lt;quic_mdalam@quicinc.com&gt;Link: https://patch.msgid.link/20250224111414.2809669-3-quic_mdalam@quicinc.comSigned-off-by: Mark Brown &lt;broonie@kernel.org&gt;

            List of files:
            /linux-6.15/drivers/spi/Makefile</description>
        <pubDate>Mon, 24 Feb 2025 11:14:14 +0000</pubDate>
        <dc:creator>Md Sadre Alam &lt;quic_mdalam@quicinc.com&gt;</dc:creator>
    </item>
<item>
        <title>79b8a705 - spi: stm32: Add OSPI driver</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/spi/Makefile#79b8a705</link>
        <description>spi: stm32: Add OSPI driverAdd STM32 OSPI driver, it supports :  - support sNOR / sNAND devices.  - Three functional modes: indirect, automatic-status polling,    memory-mapped.  - Single-, dual-, quad-, and octal-SPI communication.  - Dual-quad communication.  - Single data rate (SDR).  - DMA channel for indirect mode.Signed-off-by: Patrice Chotard &lt;patrice.chotard@foss.st.com&gt;Link: https://patch.msgid.link/20250219080059.367045-3-patrice.chotard@foss.st.comSigned-off-by: Mark Brown &lt;broonie@kernel.org&gt;

            List of files:
            /linux-6.15/drivers/spi/Makefile</description>
        <pubDate>Wed, 19 Feb 2025 08:00:53 +0000</pubDate>
        <dc:creator>Patrice Chotard &lt;patrice.chotard@foss.st.com&gt;</dc:creator>
    </item>
<item>
        <title>ebb398ae - spi: offload-trigger: add PWM trigger driver</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/spi/Makefile#ebb398ae</link>
        <description>spi: offload-trigger: add PWM trigger driverAdd a new driver for a generic PWM trigger for SPI offloads.Reviewed-by: Jonathan Cameron &lt;Jonathan.Cameron@huawei.com&gt;Reviewed-by: Nuno Sa &lt;nuno.sa@analog.com&gt;Signed-off-by: David Lechner &lt;dlechner@baylibre.com&gt;Link: https://patch.msgid.link/20250207-dlech-mainline-spi-engine-offload-2-v8-4-e48a489be48c@baylibre.comSigned-off-by: Mark Brown &lt;broonie@kernel.org&gt;

            List of files:
            /linux-6.15/drivers/spi/Makefile</description>
        <pubDate>Fri, 07 Feb 2025 20:09:01 +0000</pubDate>
        <dc:creator>David Lechner &lt;dlechner@baylibre.com&gt;</dc:creator>
    </item>
<item>
        <title>8e02d188 - spi: add basic support for SPI offloading</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/spi/Makefile#8e02d188</link>
        <description>spi: add basic support for SPI offloadingAdd the basic infrastructure to support SPI offload providers andconsumers.SPI offloading is a feature that allows the SPI controller to performtransfers without any CPU intervention. This is useful, e.g. forhigh-speed data acquisition.SPI controllers with offload support need to implement the get_offloadand put_offload callbacks and can use the devm_spi_offload_alloc() toallocate offload instances.SPI peripheral drivers will call devm_spi_offload_get() to get areference to the matching offload instance. This offload instance canthen be attached to a SPI message to request offloading that message.It is expected that SPI controllers with offload support will check forthe offload instance in the SPI message in the ctlr-&gt;optimize_message()callback and handle it accordingly.CONFIG_SPI_OFFLOAD is intended to be a select-only option. Bothconsumer and provider drivers should `select SPI_OFFLOAD` in theirKconfig to ensure that the SPI core is built with offload support.Reviewed-by: Jonathan Cameron &lt;Jonathan.Cameron@huawei.com&gt;Reviewed-by: Nuno Sa &lt;nuno.sa@analog.com&gt;Signed-off-by: David Lechner &lt;dlechner@baylibre.com&gt;Link: https://patch.msgid.link/20250207-dlech-mainline-spi-engine-offload-2-v8-1-e48a489be48c@baylibre.comSigned-off-by: Mark Brown &lt;broonie@kernel.org&gt;

            List of files:
            /linux-6.15/drivers/spi/Makefile</description>
        <pubDate>Fri, 07 Feb 2025 20:08:58 +0000</pubDate>
        <dc:creator>David Lechner &lt;dlechner@baylibre.com&gt;</dc:creator>
    </item>
<item>
        <title>1a90aae3 - spi: spi-kspi2: Add KEBA SPI controller support</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/spi/Makefile#1a90aae3</link>
        <description>spi: spi-kspi2: Add KEBA SPI controller supportThe KEBA SPI controller is found in the system FPGA of KEBA PLC devices.It is used to connect the SPI flash chip of the FPGA and some SPIdevices.It is a simple SPI controller with configurable speed. The hardwaresupports only single byte transfers. There are no FIFOs or interrupts.Signed-off-by: Gerhard Engleder &lt;eg@keba.com&gt;Link: https://patch.msgid.link/20241202194003.57679-1-gerhard@engleder-embedded.comSigned-off-by: Mark Brown &lt;broonie@kernel.org&gt;

            List of files:
            /linux-6.15/drivers/spi/Makefile</description>
        <pubDate>Mon, 02 Dec 2024 19:40:03 +0000</pubDate>
        <dc:creator>Gerhard Engleder &lt;eg@keba.com&gt;</dc:creator>
    </item>
<item>
        <title>c36212b2 - spi: apple: Add driver for Apple SPI controller</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/spi/Makefile#c36212b2</link>
        <description>spi: apple: Add driver for Apple SPI controllerThis SPI controller is present in Apple SoCs such as the M1 (t8103) andM1 Pro/Max (t600x). It is a relatively straightforward design with two16-entry FIFOs, arbitrary transfer sizes (up to 2**32 - 1) and fullyconfigurable word size up to 32 bits. It supports one hardware CS linewhich can also be driven via the pinctrl/GPIO driver instead, ifdesired. TX and RX can be independently enabled.There are a surprising number of knobs for tweaking details of thetransfer, most of which we do not use right now. Hardware CS controlis available, but we haven&apos;t found a way to make it stay low acrossmultiple logical transfers, so we just use software CS control for now.There is also a shared DMA offload coprocessor that can be used to handlelarger transfers without requiring an IRQ every 8-16 words, but thatfeature depends on a bunch of scaffolding that isn&apos;t ready to beupstreamed yet, so leave it for later.The hardware shares some register bit definitions with spi-s3c24xx whichsuggests it has a shared legacy with Samsung SoCs, but it is toodifferent to warrant sharing a driver.Signed-off-by: Hector Martin &lt;marcan@marcan.st&gt;Signed-off-by: Janne Grunau &lt;j@jannau.net&gt;Link: https://patch.msgid.link/20241106-asahi-spi-v5-2-e81a4f3a8e19@jannau.netSigned-off-by: Mark Brown &lt;broonie@kernel.org&gt;

            List of files:
            /linux-6.15/drivers/spi/Makefile</description>
        <pubDate>Wed, 06 Nov 2024 07:54:01 +0000</pubDate>
        <dc:creator>Hector Martin &lt;marcan@marcan.st&gt;</dc:creator>
    </item>
<item>
        <title>42d20a6a - spi: spi-mem: Add Realtek SPI-NAND controller</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/spi/Makefile#42d20a6a</link>
        <description>spi: spi-mem: Add Realtek SPI-NAND controllerAdd a driver for the SPI-NAND controller on the RTL9300 family ofdevices.The controller supports* Serial/Dual/Quad data with* PIO and DMA data read/write operation* Configurable flash access timingThere is a separate ECC controller on the RTL9300 which isn&apos;t currentlysupported (instead we rely on the on-die ECC supported by most SPI-NANDchips).Signed-off-by: Chris Packham &lt;chris.packham@alliedtelesis.co.nz&gt;Link: https://patch.msgid.link/20241015225434.3970360-4-chris.packham@alliedtelesis.co.nzSigned-off-by: Mark Brown &lt;broonie@kernel.org&gt;

            List of files:
            /linux-6.15/drivers/spi/Makefile</description>
        <pubDate>Tue, 15 Oct 2024 22:54:34 +0000</pubDate>
        <dc:creator>Chris Packham &lt;chris.packham@alliedtelesis.co.nz&gt;</dc:creator>
    </item>
<item>
        <title>8846739f - spi: add ch341a usb2spi driver</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/spi/Makefile#8846739f</link>
        <description>spi: add ch341a usb2spi driverAdd a driver for the QiHeng Electronics ch341a USB-to-SPI adapter.This driver is loosely based on the ch341a module from the flashrom project.Signed-off-by: Johannes Thumshirn &lt;jth@kernel.org&gt;Link: https://patch.msgid.link/20240708-spi-ch341a-v3-1-cf7f9b2c1e31@kernel.orgSigned-off-by: Mark Brown &lt;broonie@kernel.org&gt;

            List of files:
            /linux-6.15/drivers/spi/Makefile</description>
        <pubDate>Mon, 08 Jul 2024 15:49:28 +0000</pubDate>
        <dc:creator>Johannes Thumshirn &lt;jth@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>3d8f037f - spi: pxa2xx: Move platform driver to a separate file</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/spi/Makefile#3d8f037f</link>
        <description>spi: pxa2xx: Move platform driver to a separate fileThe spi-pxa2xx.c is bloated with a platform driver code whilepretending to provide a core functionality. Make it real corelibrary by splitting out the platform driver to a separate file.Signed-off-by: Andy Shevchenko &lt;andriy.shevchenko@linux.intel.com&gt;Link: https://msgid.link/r/20240530151117.1130792-11-andriy.shevchenko@linux.intel.comSigned-off-by: Mark Brown &lt;broonie@kernel.org&gt;

            List of files:
            /linux-6.15/drivers/spi/Makefile</description>
        <pubDate>Thu, 30 May 2024 15:10:06 +0000</pubDate>
        <dc:creator>Andy Shevchenko &lt;andriy.shevchenko@linux.intel.com&gt;</dc:creator>
    </item>
<item>
        <title>a403997c - spi: airoha: add SPI-NAND Flash controller driver</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/spi/Makefile#a403997c</link>
        <description>spi: airoha: add SPI-NAND Flash controller driverIntroduce support for SPI-NAND driver of the Airoha NAND Flash Interfacefound on Airoha ARM SoCs.Tested-by: Rajeev Kumar &lt;Rajeev.Kumar@airoha.com&gt;Signed-off-by: Lorenzo Bianconi &lt;lorenzo@kernel.org&gt;Reviewed-by: Andy Shevchenko &lt;andy@kernel.org&gt;Reviewed-by: AngeloGioacchino Del Regno &lt;angelogioacchino.delregno@collabora.com&gt;Link: https://lore.kernel.org/r/6c9db20505b01a66807995374f2af475a23ce5b2.1714377864.git.lorenzo@kernel.orgSigned-off-by: Mark Brown &lt;broonie@kernel.org&gt;

            List of files:
            /linux-6.15/drivers/spi/Makefile</description>
        <pubDate>Mon, 29 Apr 2024 08:13:10 +0000</pubDate>
        <dc:creator>Lorenzo Bianconi &lt;lorenzo@kernel.org&gt;</dc:creator>
    </item>
<item>
        <title>caee8e38 - spi: Add support for Intel LJCA USB SPI driver</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/spi/Makefile#caee8e38</link>
        <description>spi: Add support for Intel LJCA USB SPI driverImplements the SPI function of Intel USB-I2C/GPIO/SPI adapter devicenamed &quot;La Jolla Cove Adapter&quot; (LJCA). It communicate with LJCA SPImodule with specific protocol through interfaces exported by LJCA USBdriver.Signed-off-by: Wentong Wu &lt;wentong.wu@intel.com&gt;Reviewed-by: Sakari Ailus &lt;sakari.ailus@linux.intel.com&gt;Reviewed-by: Andi Shyti &lt;andi.shyti@linux.intel.com&gt;Tested-by: Hans de Goede &lt;hdegoede@redhat.com&gt;Reviewed-by: Mark Brown &lt;broonie@kernel.org&gt;Link: https://lore.kernel.org/r/1696833205-16716-4-git-send-email-wentong.wu@intel.comSigned-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;

            List of files:
            /linux-6.15/drivers/spi/Makefile</description>
        <pubDate>Mon, 09 Oct 2023 06:33:24 +0000</pubDate>
        <dc:creator>Wentong Wu &lt;wentong.wu@intel.com&gt;</dc:creator>
    </item>
<item>
        <title>ef75e767 - spi: cs42l43: Add SPI controller support</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/spi/Makefile#ef75e767</link>
        <description>spi: cs42l43: Add SPI controller supportThe CS42L43 is an audio CODEC with integrated MIPI SoundWire interface(Version 1.2.1 compliant), I2C, SPI, and I2S/TDM interfaces designedfor portable applications. It provides a high dynamic range, stereoDAC for headphone output, two integrated Class D amplifiers forloudspeakers, and two ADCs for wired headset microphone input orstereo line input. PDM inputs are provided for digital microphones.The SPI component incorporates a SPI controller interface forcommunication with other peripheral components.Signed-off-by: Lucas Tanure &lt;tanureal@opensource.cirrus.com&gt;Signed-off-by: Maciej Strozek &lt;mstrozek@opensource.cirrus.com&gt;Signed-off-by: Charles Keepax &lt;ckeepax@opensource.cirrus.com&gt;Link: https://lore.kernel.org/r/20230804104602.395892-6-ckeepax@opensource.cirrus.comSigned-off-by: Mark Brown &lt;broonie@kernel.org&gt;

            List of files:
            /linux-6.15/drivers/spi/Makefile</description>
        <pubDate>Fri, 04 Aug 2023 10:46:01 +0000</pubDate>
        <dc:creator>Lucas Tanure &lt;tanureal@opensource.cirrus.com&gt;</dc:creator>
    </item>
<item>
        <title>6c7a8640 - spi: loongson: add bus driver for the loongson spi controller</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/spi/Makefile#6c7a8640</link>
        <description>spi: loongson: add bus driver for the loongson spi controllerThis bus driver supports the Loongson SPI hardware controller in theLoongson platforms and supports the use DTS and PCI framework toregister SPI device resources.Signed-off-by: Yinbo Zhu &lt;zhuyinbo@loongson.cn&gt;Cc: Andy Shevchenko &lt;andy.shevchenko@gmail.com&gt;Cc: Mark Brown &lt;broonie@kernel.org&gt;Reviewed-by: Andy Shevchenko &lt;andy.shevchenko@gmail.com&gt;Link: https://lore.kernel.org/r/20230613075834.5219-3-zhuyinbo@loongson.cnSigned-off-by: Mark Brown &lt;broonie@kernel.org&gt;

            List of files:
            /linux-6.15/drivers/spi/Makefile</description>
        <pubDate>Tue, 13 Jun 2023 07:58:34 +0000</pubDate>
        <dc:creator>Yinbo Zhu &lt;zhuyinbo@loongson.cn&gt;</dc:creator>
    </item>
<item>
        <title>83c624d8 - spi: Add support for Renesas CSI</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/spi/Makefile#83c624d8</link>
        <description>spi: Add support for Renesas CSIThe RZ/V2M SoC comes with the Clocked Serial Interface (CSI)IP, which is a master/slave SPI controller.This commit adds a driver to support CSI master mode.Signed-off-by: Fabrizio Castro &lt;fabrizio.castro.jz@renesas.com&gt;Link: https://lore.kernel.org/r/Message-Id: &lt;20230622113341.657842-4-fabrizio.castro.jz@renesas.com&gt;Signed-off-by: Mark Brown &lt;broonie@kernel.org&gt;

            List of files:
            /linux-6.15/drivers/spi/Makefile</description>
        <pubDate>Thu, 22 Jun 2023 11:33:39 +0000</pubDate>
        <dc:creator>Fabrizio Castro &lt;fabrizio.castro.jz@renesas.com&gt;</dc:creator>
    </item>
<item>
        <title>909fac05 - spi: add support for Amlogic A1 SPI Flash Controller</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/spi/Makefile#909fac05</link>
        <description>spi: add support for Amlogic A1 SPI Flash ControllerThis is a driver for the Amlogic SPI flash controller supporton A113L SoC.Signed-off-by: Martin Kurbanov &lt;mmkurbanov@sberdevices.ru&gt;Reviewed-by: Neil Armstrong &lt;neil.armstrong@linaro.org&gt;Link: https://lore.kernel.org/r/20230403183217.13280-3-mmkurbanov@sberdevices.ruSigned-off-by: Mark Brown &lt;broonie@kernel.org&gt;

            List of files:
            /linux-6.15/drivers/spi/Makefile</description>
        <pubDate>Mon, 03 Apr 2023 18:32:17 +0000</pubDate>
        <dc:creator>Martin Kurbanov &lt;mmkurbanov@sberdevices.ru&gt;</dc:creator>
    </item>
<item>
        <title>a38a2233 - spi: bcmbca-hsspi: Add driver for newer HSSPI controller</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/spi/Makefile#a38a2233</link>
        <description>spi: bcmbca-hsspi: Add driver for newer HSSPI controllerThe newer BCMBCA SoCs such as BCM6756, BCM4912 and BCM6855 include anupdated SPI controller that add the capability to allow the driver tocontrol chip select explicitly. Driver can control and keep cs lowbetween the transfers natively. Hence the dummy cs workaround or prependmode found in the bcm63xx-hsspi driver are no longer needed and this newdriver is much cleaner.Signed-off-by: William Zhang &lt;william.zhang@broadcom.com&gt;Link: https://lore.kernel.org/r/20230209200246.141520-15-william.zhang@broadcom.comSigned-off-by: Mark Brown &lt;broonie@kernel.org&gt;

            List of files:
            /linux-6.15/drivers/spi/Makefile</description>
        <pubDate>Thu, 09 Feb 2023 20:02:45 +0000</pubDate>
        <dc:creator>William Zhang &lt;william.zhang@broadcom.com&gt;</dc:creator>
    </item>
<item>
        <title>c9dcd56f - spi: remove s3c24xx driver</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/spi/Makefile#c9dcd56f</link>
        <description>spi: remove s3c24xx driverThe s3c24xx platform was removed,s o there are no remaining usersfor its spi driver.Reviewed-by: Krzysztof Kozlowski &lt;krzysztof.kozlowski@linaro.org&gt;Signed-off-by: Arnd Bergmann &lt;arnd@arndb.de&gt;

            List of files:
            /linux-6.15/drivers/spi/Makefile</description>
        <pubDate>Fri, 30 Sep 2022 11:22:04 +0000</pubDate>
        <dc:creator>Arnd Bergmann &lt;arnd@arndb.de&gt;</dc:creator>
    </item>
<item>
        <title>bcace9c4 - spi: remove omap 100K driver</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/spi/Makefile#bcace9c4</link>
        <description>spi: remove omap 100K driverThe OMAP7xx/OMAP8xx support was removed since all of its boardshave no remaining users. Remove its spi driver as well.Cc: Aaro Koskinen &lt;aaro.koskinen@iki.fi&gt;Cc: Janusz Krzysztofik &lt;jmkrzyszt@gmail.com&gt;Cc: linux-omap@vger.kernel.orgCc: Cory Maccarrone &lt;darkstar6262@gmail.com&gt;Cc: Fabrice Crohas &lt;fcrohas@gmail.com&gt;Acked-by: Mark Brown &lt;broonie@kernel.org&gt;Acked-by: Tony Lindgren &lt;tony@atomide.com&gt;Signed-off-by: Arnd Bergmann &lt;arnd@arndb.de&gt;

            List of files:
            /linux-6.15/drivers/spi/Makefile</description>
        <pubDate>Fri, 30 Sep 2022 13:41:25 +0000</pubDate>
        <dc:creator>Arnd Bergmann &lt;arnd@arndb.de&gt;</dc:creator>
    </item>
<item>
        <title>1f8811a2 - spi: wpcm-fiu: Add driver for Nuvoton WPCM450 Flash Interface Unit (FIU)</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/spi/Makefile#1f8811a2</link>
        <description>spi: wpcm-fiu: Add driver for Nuvoton WPCM450 Flash Interface Unit (FIU)The Flash Interface Unit (FIU) is the SPI flash controller in theNuvoton WPCM450 BMC SoC. It supports four chip selects, and direct(memory-mapped) access to 16 MiB per chip. Larger flash chips can beaccessed by software-defined SPI transfers.The FIU in newer NPCM7xx SoCs is not compatible with the WPCM450 FIU.Signed-off-by: Jonathan Neusch&#228;fer &lt;j.neuschaefer@gmx.net&gt;Link: https://lore.kernel.org/r/20221124191400.287918-3-j.neuschaefer@gmx.netSigned-off-by: Mark Brown &lt;broonie@kernel.org&gt;

            List of files:
            /linux-6.15/drivers/spi/Makefile</description>
        <pubDate>Thu, 24 Nov 2022 19:13:59 +0000</pubDate>
        <dc:creator>Jonathan Neusch&#228;fer &lt;j.neuschaefer@gmx.net&gt;</dc:creator>
    </item>
</channel>
</rss>
