<?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 Makefile</title>
    <description></description>
    <language>en</language>
    <copyright>Copyright 2015</copyright>
    <generator>Java</generator><item>
        <title>f4cdf7ca9a1fdcca413157df19753f388a5a224e - Merge tag &apos;media/v7.3-1&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/media/platform/dreamchip/Makefile#f4cdf7ca9a1fdcca413157df19753f388a5a224e</link>
        <description>Merge tag &apos;media/v7.3-1&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-mediaPull media updates from Mauro Carvalho Chehab: - v4l2-core: added ISP statistics support and per-block validation - v4l2-core: Allow unknown HDR10 white point and luminance - New camera sensors: Sony IMX678 and IMX471m, Himax HM1092 IR sensor - New codec: Milos: VPU v2.0 codec support - isp driver: gained support for Dreamchip RPPX1 ISP framework - vsp1 driver: gained support for RZ/T2H and RZ/N2H - Novalake driver: gained CVS support for new NVL hardware - dvb-core: fix feed leak on failed DMX_ADD_PID - several driver fixes, cleanups and minor improvements* tag &apos;media/v7.3-1&apos; of git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media: (308 commits)  media: ipu-bridge: check all DMI entries when overriding sensor rotation  media: v4l2-async: avoid deleting unlinked ASC entry on link error  media: rzg2l-cru: Align bytesperline to hardware DMA stride requirement  media: intel/ipu6: fix async notifier cleanup leak on parse error  media: staging/ipu7: fix async notifier UAF on probe error path  media: amd: isp4: fix self-deadlock in isp4sd_pwron_and_init() error path  media: amd: isp4: release partial allocations in isp4if_alloc_fw_gpumem()  media: rcar-isp: Fix VSPX reference leaks  media: rcar-isp: Release ISPCORE resources  media: i2c: imx415: Release runtime PM reference on VBLANK error  media: i2c: imx415: Return test pattern write errors  media: renesas: vsp1: Declare index variables in for loop statement  media: renesas: vsp1: Make reset control optional to support platforms without a reset line  media: dt-bindings: media: renesas,vsp1: Document RZ/T2H and RZ/N2H SoCs  media: dt-bindings: media: renesas,fcp: Document RZ/T2H and RZ/N2H SoCs  media: nxp: imx8-isi: Add additional 32-bit RGB format support  media: nxp: imx8-isi: Add 16-bit raw Bayer format support  media: nxp: imx8-isi: Implement per-stream reference counting for multiplexed streams  media: nxp: imx8-isi: Use BIT_ULL() for 64-bit stream masks  media: nxp: imx8-isi: Correct color map between V4L2 and ISI  ...

            List of files:
            /linux/drivers/media/platform/dreamchip/Makefile</description>
        <pubDate>Wed, 19 Aug 2026 19:09:22 +0200</pubDate>
        <dc:creator>Linus Torvalds &lt;torvalds@linux-foundation.org&gt;</dc:creator>
    </item>
<item>
        <title>b562e72bdb987c9d67bb394c0f8c10f12504f947 - media: rppx1: Add framework to support Dreamchip RPPX1 ISP</title>
        <link>http://kernelsources.org:8080/source/history/linux/drivers/media/platform/dreamchip/Makefile#b562e72bdb987c9d67bb394c0f8c10f12504f947</link>
        <description>media: rppx1: Add framework to support Dreamchip RPPX1 ISPAdd a framework driver for Dreamchip RPPX1 ISP. The driver aims toprovide a framework for other V4L2 based drivers to drive the RPPX1functionality. The reason for this split is that the RPPX1 IP itself donot provide any DMA engines to drive data to/from the device, instead itdepends on other IP blocks to implement these features.While the peripherals around the RPPX1 ISP used in different designs andby different vendors are different the RPPX1 core itself is the same.For this reason the framework solution to be able to split the DreamchipRPPX1 driver from vendors usage of it have been picked in hope to reduceduplication of the common parts.The design is to try and keep the surface of this framework as small aspossible. The intention of this change is to be able to fill all needsof this.  * Two functions to create and destroy a RPPX1 instance, rppx1_create()    and rppx1_destory(). These are intended to be called in the users    probe and remove code paths.  * Two functions to start and stop the RPPX1 processing, rppx1_start()    and rppx1_stop(). These are intended to be called in the users    stream on and stream off code paths.  * One function to ask the RPPX1 to process parameters buffer prepared    by user space, rppx1_params(). The intention is to call this    function when the parameter buffer is queued to the V4L2 driver and    the result stored by the driver until the time it needs to be    written to the RPPX1. It&apos;s the users responsibility to write it    either using MMIO or other means.  * One function to fill in a statistic buffer based on the current    status of the RPPX1, rppx1_stats_fill_isr(). The intention is that    the user call&apos;s this in its interrupt handler when it knows the    RPPX1 is done processing a frame.  * One function to ack and retrieve the interrupts generated by the    RPPX1, rppx1_interrupt(). The intention is to call this function    when the users interrupt handler detects the RPPX1 have raised and    interrupt. There is no need for the user to understand, or act, on    the actual RPPX1 interrupt, but it can if it wants too.The initial support in the framework is limited and do not implement anyISP processing algorithms other then configuring the RPPX1 to processany Bayer (8-, 10, or 12-bit) image and produce either a RGB or YUYVoutput. It do however probe all function blocks of the RPPX1 and providean interface to interact with both parameter and statistic bufferers.The user of the framework will not change as algorithms for thedifferent function blocks of the ISP are being added.Signed-off-by: Niklas S&#246;derlund &lt;niklas.soderlund+renesas@ragnatech.se&gt;Co-developed-by: Jai Luthra &lt;jai.luthra+renesas@ideasonboard.com&gt;Signed-off-by: Jai Luthra &lt;jai.luthra+renesas@ideasonboard.com&gt;Co-developed-by: Jacopo Mondi &lt;jacopo.mondi+renesas@ideasonboard.com&gt;Signed-off-by: Jacopo Mondi &lt;jacopo.mondi+renesas@ideasonboard.com&gt;Reviewed-by: Jacopo Mondi &lt;jacopo.mondi@ideasonboard.com&gt;Signed-off-by: Sakari Ailus &lt;sakari.ailus@linux.intel.com&gt;

            List of files:
            /linux/drivers/media/platform/dreamchip/Makefile</description>
        <pubDate>Thu, 30 Jul 2026 19:12:31 +0200</pubDate>
        <dc:creator>Niklas S&#246;derlund &lt;niklas.soderlund+renesas@ragnatech.se&gt;</dc:creator>
    </item>
</channel>
</rss>
