<?xml version="1.0" encoding="utf-8" ?>

<rss version="2.0" 
   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
   xmlns:admin="http://webns.net/mvcb/"
   xmlns:dc="http://purl.org/dc/elements/1.1/"
   xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
   xmlns:wfw="http://wellformedweb.org/CommentAPI/"
   xmlns:content="http://purl.org/rss/1.0/modules/content/"
   >
<channel>
    
    <title>Open Technology - Linux kernel</title>
    <link>http://www.open-technology.de/</link>
    <description>Linux kernel, embedded, and beyond</description>
    <dc:language>en</dc:language>
    <generator>Serendipity 1.6 - http://www.s9y.org/</generator>
    <pubDate>Fri, 03 May 2013 10:42:24 GMT</pubDate>

    <image>
        <url>http://www.open-technology.de/templates/default/img/s9y_banner_small.png</url>
        <title>RSS: Open Technology - Linux kernel - Linux kernel, embedded, and beyond</title>
        <link>http://www.open-technology.de/</link>
        <width>100</width>
        <height>21</height>
    </image>

<item>
    <title>V4L2 &amp; soc-camera WiP: pad API wrappers, scaling-cropping helpers</title>
    <link>http://www.open-technology.de/archives/106-V4L2-soc-camera-WiP-pad-API-wrappers,-scaling-cropping-helpers.html</link>
            <category>SoC camera</category>
    
    <comments>http://www.open-technology.de/archives/106-V4L2-soc-camera-WiP-pad-API-wrappers,-scaling-cropping-helpers.html#comments</comments>
    <wfw:comment>http://www.open-technology.de/wfwcomment.php?cid=106</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://www.open-technology.de/rss.php?version=2.0&amp;type=comments&amp;cid=106</wfw:commentRss>
    

    <author>nospam@example.com (Guennadi Liakhovetski)</author>
    <content:encoded>
    1. V4L2 is developing at a fast pace to match new faster, higher resolution, more capable hardware. Mobile phones with multiple 1GHz+ CPU cores, gigabytes of RAM, hardware accelerated graphics, capable of driving HD displays, multiple hardware multimedia engines for video processing, compression and decompression, format conversion, capture and streaming is just one product category. This development requires not only new drivers to be developed, but also new core APIs to be designed and implemented. Soc-camera was one of the first APIs to cleanly separate camera interface drivers from sensor drivers. Then the V4L2 subdevice API followed, which has also been adopted by soc-camera. Next Media Controller API has been developed, which is still not supported by soc-camera. With the MC API various hardware blocks of video data processing pipelines like sensors, converters, scalers, video DMA engines implement &quot;entity&quot; objects. Data flow between those entities is performed via connected &quot;pads.&quot; Traditionally the whole pipeline has been represented in the user-space by a single video device node. With MC, entities, pads and links, connecting them, more device nodes have been added in the user-space, users can now configure each hardware block in the pipeline independently. To support this a set of pad operations has been added to the subdevice API. Pad operations duplicate many classical subdevice operations like configuring data formats, scaling, cropping, etc., but do it in a more precisely targeted manner. Since multiple user-space applications can open the same device node simultaneously, pad operations use a notion of a file-handle to separate user contexts. Users get their own &quot;playgrounds,&quot; where they can try various configurations without actually reconfiguring the hardware. Of course, once a user decides to push a configuration to the hardware, it becomes global.&lt;br /&gt;
&lt;br /&gt;
Redundancy between the classical subdevice and the pad-level APIs make it impractical to implement both of them in subdevice drivers. Currently both kinds of subdevice drivers can be found in the kernel. This makes working with them difficult: camera interface (bridge) drivers, supporting the classical subdevice API cannot use subdevice drivers, implementing the pad-level API and vice versa. To alleviate this problem a &lt;a href=&quot;http://thread.gmane.org/gmane.linux.drivers.video-input-infrastructure/63504&quot;&gt;wrapper&lt;/a&gt; has been proposed and posted to the linux-media mailing list. This is just the first shot and will definitely require a few more revisions, before it can be pushed to the mainline.&lt;br /&gt;
&lt;br /&gt;
2. Since soc-camera doesn&#039;t (yet) support pad-level operations, video pipeline configuration from the user-space is performed in the traditional way - via a single video device node. E.g. the user has only a possibility to request a global scaling, without being able to tell, which unit in the pipeline should perform the scaling. If both the camera sensor and the camera SoC interface can scale video, the decision who should do this can easily become non-trivial. Same applies to cropping. The sh_mobile_ceu_camera soc-camera driver for r-/sh-mobile ARM and SuperH SoCs implements a rather advanced algorithm to make such decisions and to perform the required configuration. A large part of that algorithm is, however, hardware-neutral and can be made to a generic scaling-cropping helper library. The first &lt;a href=&quot;http://thread.gmane.org/gmane.linux.drivers.video-input-infrastructure/63820&quot;&gt;version&lt;/a&gt; of such a library has been posted to the mailing list. It is hoped, that at least the emerging VIN driver will be using it instead of duplicating the functions. 
    </content:encoded>

    <pubDate>Fri, 03 May 2013 12:42:24 +0200</pubDate>
    <guid isPermaLink="false">http://www.open-technology.de/archives/106-guid.html</guid>
    
</item>
<item>
    <title>Ongoing V4L2 development: Device Tree, clock helpers, asynchronous probing</title>
    <link>http://www.open-technology.de/archives/105-Ongoing-V4L2-development-Device-Tree,-clock-helpers,-asynchronous-probing.html</link>
            <category>SoC camera</category>
    
    <comments>http://www.open-technology.de/archives/105-Ongoing-V4L2-development-Device-Tree,-clock-helpers,-asynchronous-probing.html#comments</comments>
    <wfw:comment>http://www.open-technology.de/wfwcomment.php?cid=105</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://www.open-technology.de/rss.php?version=2.0&amp;type=comments&amp;cid=105</wfw:commentRss>
    

    <author>nospam@example.com (Guennadi Liakhovetski)</author>
    <content:encoded>
    1. V4L2 Device Tree support&lt;br /&gt;
Most of SoCs, supported by V4L2 use ARM CPU cores. Information about board hardware configuration on ARM is currently specified using Flattened Device Tree images. This made DT support in V4L2 necessary. Initial DT binding &lt;a href=&quot;http://thread.gmane.org/gmane.linux.drivers.video-input-infrastructure/50755&quot;&gt;RFC&lt;/a&gt; has been submitted to the linux-media mailing list in July 2012. The first &lt;a href=&quot;http://thread.gmane.org/gmane.linux.ports.sh.devel/16839&quot;&gt;parser implementation with usage examples&lt;/a&gt; followed in September. Unfortunately, later I have been distracted by other work, and Sylwester Nawrocki has kindly and courageously picked up this development. The last version of his &lt;a href=&quot;https://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/commit/Documentation/devicetree/bindings/media/video-interfaces.txt?id=53c5b6c95f1850b0f95b445e0c6f1c133b00bfef&quot;&gt;documentation&lt;/a&gt; and &lt;a href=&quot;https://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/commit/drivers/media/v4l2-core/v4l2-of.c?id=99fd133f907afdb430942d8d2ae53faa438adfe8&quot;&gt;parser&lt;/a&gt; have been included in the mainline and are appearing in the 3.10 Linux kernel. Sylwester deserves every imaginable credit for this work. Unfortunately, there is no (official) way to specify multiple patch authors in the kernel at the moment.&lt;br /&gt;
&lt;br /&gt;
2. V4L2 clock helpers&lt;br /&gt;
A typical SoC camera implementation consists of a camera sensor connected to an SoC camera interface. Camera sensors as well as other video data sources like TV decoders, usually require a &quot;master clock&quot; input. It is also common for such sensors to even not respond to I2C commands as long as the master clock is off. Many SoC camera interfaces have a dedicated pin to provide this clock, alternatively it can be supplied by a stand-alone oscillator. This clock has to be actively managed by the sensor driver, preferably using the standard Linux kernel clock API. This would be especially beneficial with a DT hardware description. The implementation of clock providers by generic drivers is, however, only possible if the platform implements the Common Clock Framework. Since not all ARM platforms support CCF yet, it has been decided to implement temporary simple V4L2 clock helpers, which would be replaced by proper CCF implementations as it becomes available. The last &lt;a href=&quot;http://thread.gmane.org/gmane.linux.ports.sh.devel/22080/focus=63190&quot;&gt;version&lt;/a&gt; of V4L2 clock helpers has been submitted to the mailing list in April 2013 and is currently under review. It is hoped, that this work will be included in the 3.11 kernel.&lt;br /&gt;
&lt;br /&gt;
3. V4L2 asynchronous device probing&lt;br /&gt;
Due to the above mentioned clock dependency it is usually only possible to probe (typically I2C, less commonly SPI, etc.) devices like camera sensors after the SoC camera interface has successfully been probed and has turned on the master clock to the sensor. To achieve this currently V4L2 doesn&#039;t allow traditional I2C device registration from platform data (or DT). Instead SoC camera interfaces have to trigger dependent (I2C) device registration once they are ready to supply clock to them. This doesn&#039;t fit the DT concept very well, where we want to let camera sensors be listed just like all other I2C devices as subnodes of their respective I2C adapter DT nodes. To allow this the V4L2 subsystem has to be extended to support asynchronous device probing. Patches to implement that have been developed in parallel with V4L2 DT support and clock helpers, their last &lt;a href=&quot;http://thread.gmane.org/gmane.linux.ports.sh.devel/22080/focus=22091&quot;&gt;version&lt;/a&gt; along with usage examples has been published in the same thread with V4L2 clock helpers above. This work is also targeted to the 3.11 kernel.&lt;br /&gt;
&lt;br /&gt;
All this work benefits a lot from thorough reviews of fellow V4L2 developers. 
    </content:encoded>

    <pubDate>Fri, 03 May 2013 11:39:47 +0200</pubDate>
    <guid isPermaLink="false">http://www.open-technology.de/archives/105-guid.html</guid>
    
</item>
<item>
    <title>Pull request of 12 April 2013: updates</title>
    <link>http://www.open-technology.de/archives/104-Pull-request-of-12-April-2013-updates.html</link>
            <category>SoC camera</category>
    
    <comments>http://www.open-technology.de/archives/104-Pull-request-of-12-April-2013-updates.html#comments</comments>
    <wfw:comment>http://www.open-technology.de/wfwcomment.php?cid=104</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://www.open-technology.de/rss.php?version=2.0&amp;type=comments&amp;cid=104</wfw:commentRss>
    

    <author>nospam@example.com (Guennadi Liakhovetski)</author>
    <content:encoded>
    Two more soc-camera patches for 3.10:&lt;br /&gt;
&lt;br /&gt;
Guennadi Liakhovetski (1):&lt;br /&gt;
      soc-camera: fix typos in the default format-conversion table&lt;br /&gt;
&lt;br /&gt;
Laurent Pinchart (1):&lt;br /&gt;
      MAINTAINERS: Mark the SH VOU driver as Odd Fixes&lt;br /&gt;
 
    </content:encoded>

    <pubDate>Fri, 03 May 2013 10:17:23 +0200</pubDate>
    <guid isPermaLink="false">http://www.open-technology.de/archives/104-guid.html</guid>
    
</item>
<item>
    <title>Pull request of 3 April 2013: updates</title>
    <link>http://www.open-technology.de/archives/103-Pull-request-of-3-April-2013-updates.html</link>
            <category>SoC camera</category>
    
    <comments>http://www.open-technology.de/archives/103-Pull-request-of-3-April-2013-updates.html#comments</comments>
    <wfw:comment>http://www.open-technology.de/wfwcomment.php?cid=103</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://www.open-technology.de/rss.php?version=2.0&amp;type=comments&amp;cid=103</wfw:commentRss>
    

    <author>nospam@example.com (Guennadi Liakhovetski)</author>
    <content:encoded>
    The second set of 3.10 soc-camera updates:&lt;br /&gt;
&lt;br /&gt;
Fabio Porcedda (2):&lt;br /&gt;
      drivers: media: use module_platform_driver_probe()&lt;br /&gt;
      mx2_camera: use module_platform_driver_probe()&lt;br /&gt;
&lt;br /&gt;
Guennadi Liakhovetski (1):&lt;br /&gt;
      soc-camera: protect against racing open(2) and rmmod&lt;br /&gt;
&lt;br /&gt;
Phil Edworthy (1):&lt;br /&gt;
      soc_camera: Add RGB666 &amp;amp; RGB888 formats&lt;br /&gt;
&lt;br /&gt;
Sachin Kamat (7):&lt;br /&gt;
      soc_camera/mx1_camera: Fix warnings related to spacing&lt;br /&gt;
      soc_camera/mx2_camera: Fix warnings related to spacing&lt;br /&gt;
      soc_camera/mx3_camera: Fix warning related to spacing&lt;br /&gt;
      soc_camera/pxa_camera: Fix warning related to spacing&lt;br /&gt;
      soc_camera/pxa_camera: Constify struct dev_pm_ops&lt;br /&gt;
      soc_camera/sh_mobile_ceu_camera: Fix warning related to spacing&lt;br /&gt;
      soc_camera/soc_camera_platform: Fix warning related to spacing&lt;br /&gt;
 
    </content:encoded>

    <pubDate>Fri, 03 May 2013 10:14:17 +0200</pubDate>
    <guid isPermaLink="false">http://www.open-technology.de/archives/103-guid.html</guid>
    
</item>
<item>
    <title>Pull request of 12 March 2013: updates</title>
    <link>http://www.open-technology.de/archives/102-Pull-request-of-12-March-2013-updates.html</link>
            <category>SoC camera</category>
    
    <comments>http://www.open-technology.de/archives/102-Pull-request-of-12-March-2013-updates.html#comments</comments>
    <wfw:comment>http://www.open-technology.de/wfwcomment.php?cid=102</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://www.open-technology.de/rss.php?version=2.0&amp;type=comments&amp;cid=102</wfw:commentRss>
    

    <author>nospam@example.com (Guennadi Liakhovetski)</author>
    <content:encoded>
    Minor clean up and API updates:&lt;br /&gt;
&lt;br /&gt;
Paul Bolle (1):&lt;br /&gt;
      soc_camera: remove two outdated selects&lt;br /&gt;
&lt;br /&gt;
Sachin Kamat (7):&lt;br /&gt;
      soc_camera/sh_mobile_ceu_camera: Convert to devm_ioremap_resource()&lt;br /&gt;
      soc_camera/sh_mobile_csi2: Convert to devm_ioremap_resource()&lt;br /&gt;
      soc_camera/pxa_camera: Convert to devm_ioremap_resource()&lt;br /&gt;
      sh_veu.c: Convert to devm_ioremap_resource()&lt;br /&gt;
      soc_camera/mx1_camera: Use module_platform_driver_probe macro&lt;br /&gt;
      sh_veu: Use module_platform_driver_probe macro&lt;br /&gt;
      sh_vou: Use module_platform_driver_probe macro&lt;br /&gt;
 
    </content:encoded>

    <pubDate>Fri, 03 May 2013 10:11:55 +0200</pubDate>
    <guid isPermaLink="false">http://www.open-technology.de/archives/102-guid.html</guid>
    
</item>
<item>
    <title>Pull request of 12 March 2013: fixes</title>
    <link>http://www.open-technology.de/archives/101-Pull-request-of-12-March-2013-fixes.html</link>
            <category>SoC camera</category>
    
    <comments>http://www.open-technology.de/archives/101-Pull-request-of-12-March-2013-fixes.html#comments</comments>
    <wfw:comment>http://www.open-technology.de/wfwcomment.php?cid=101</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://www.open-technology.de/rss.php?version=2.0&amp;type=comments&amp;cid=101</wfw:commentRss>
    

    <author>nospam@example.com (Guennadi Liakhovetski)</author>
    <content:encoded>
    Several sensor-driver bug-fix patches, targeted at 3.9 and stable, unfortunately, didn&#039;t make it in 3.9, will be applied to 3.10:&lt;br /&gt;
&lt;br /&gt;
Andrei Andreyanau (1):&lt;br /&gt;
      mt9v022 driver: send valid HORIZONTAL_BLANKING values to mt9v024 soc camera&lt;br /&gt;
&lt;br /&gt;
Benoît Thébaudeau (1):&lt;br /&gt;
      soc-camera: mt9m111: Fix auto-exposure control&lt;br /&gt;
&lt;br /&gt;
Guennadi Liakhovetski (1):&lt;br /&gt;
      mt9m111: fix Oops - initialise context before dereferencing&lt;br /&gt;
 
    </content:encoded>

    <pubDate>Fri, 03 May 2013 10:04:03 +0200</pubDate>
    <guid isPermaLink="false">http://www.open-technology.de/archives/101-guid.html</guid>
    
</item>
<item>
    <title>Pull request of 11 February 2013 - updates</title>
    <link>http://www.open-technology.de/archives/100-Pull-request-of-11-February-2013-updates.html</link>
            <category>SoC camera</category>
    
    <comments>http://www.open-technology.de/archives/100-Pull-request-of-11-February-2013-updates.html#comments</comments>
    <wfw:comment>http://www.open-technology.de/wfwcomment.php?cid=100</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://www.open-technology.de/rss.php?version=2.0&amp;type=comments&amp;cid=100</wfw:commentRss>
    

    <author>nospam@example.com (Guennadi Liakhovetski)</author>
    <content:encoded>
    Several minor driver improvements, no real functionality changes.&lt;br /&gt;
&lt;br /&gt;
Julia Lawall (1):&lt;br /&gt;
      drivers/media/platform/soc_camera/pxa_camera.c: use devm_ functions&lt;br /&gt;
&lt;br /&gt;
Laurent Pinchart (2):&lt;br /&gt;
      sh_vou: Use video_drvdata()&lt;br /&gt;
      sh_vou: Use vou_dev instead of vou_file wherever possible&lt;br /&gt;
 
    </content:encoded>

    <pubDate>Mon, 11 Mar 2013 10:35:43 +0100</pubDate>
    <guid isPermaLink="false">http://www.open-technology.de/archives/100-guid.html</guid>
    
</item>
<item>
    <title>Pull request of 11 February 2013</title>
    <link>http://www.open-technology.de/archives/99-Pull-request-of-11-February-2013.html</link>
            <category>SoC camera</category>
    
    <comments>http://www.open-technology.de/archives/99-Pull-request-of-11-February-2013.html#comments</comments>
    <wfw:comment>http://www.open-technology.de/wfwcomment.php?cid=99</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://www.open-technology.de/rss.php?version=2.0&amp;type=comments&amp;cid=99</wfw:commentRss>
    

    <author>nospam@example.com (Guennadi Liakhovetski)</author>
    <content:encoded>
    Two driver fixes:&lt;br /&gt;
&lt;br /&gt;
Guennadi Liakhovetski (2):&lt;br /&gt;
      sh-mobile-ceu-camera: fix SHARPNESS control default&lt;br /&gt;
      mt9t112: mt9t111 format set up differs from mt9t112&lt;br /&gt;
 
    </content:encoded>

    <pubDate>Mon, 11 Mar 2013 10:33:33 +0100</pubDate>
    <guid isPermaLink="false">http://www.open-technology.de/archives/99-guid.html</guid>
    
</item>
<item>
    <title>Pull request of 3 January 2013</title>
    <link>http://www.open-technology.de/archives/98-Pull-request-of-3-January-2013.html</link>
            <category>SoC camera</category>
    
    <comments>http://www.open-technology.de/archives/98-Pull-request-of-3-January-2013.html#comments</comments>
    <wfw:comment>http://www.open-technology.de/wfwcomment.php?cid=98</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://www.open-technology.de/rss.php?version=2.0&amp;type=comments&amp;cid=98</wfw:commentRss>
    

    <author>nospam@example.com (Guennadi Liakhovetski)</author>
    <content:encoded>
    Several updates and fixes for the 3.9 series, including - after a long battle - the removal of i.MX25 support from the mx2_camera driver, it now only supports i.MX27.&lt;br /&gt;
&lt;br /&gt;
Fabio Estevam (1):&lt;br /&gt;
      mx2_camera: Convert it to platform driver&lt;br /&gt;
&lt;br /&gt;
Guennadi Liakhovetski (5):&lt;br /&gt;
      soc-camera: properly fix camera probing races&lt;br /&gt;
      soc-camera: fix repeated regulator requesting&lt;br /&gt;
      soc-camera: remove struct soc_camera_device::video_lock&lt;br /&gt;
      soc-camera: split struct soc_camera_link into host and subdevice parts&lt;br /&gt;
      soc-camera: use devm_kzalloc in subdevice drivers&lt;br /&gt;
&lt;br /&gt;
Javier Martin (3):&lt;br /&gt;
      mx2_camera: Remove i.mx25 support.&lt;br /&gt;
      mx2_camera: Remove &#039;buf_cleanup&#039; callback.&lt;br /&gt;
      mx2_camera: Remove buffer states.&lt;br /&gt;
 
    </content:encoded>

    <pubDate>Mon, 11 Mar 2013 10:29:20 +0100</pubDate>
    <guid isPermaLink="false">http://www.open-technology.de/archives/98-guid.html</guid>
    
</item>
<item>
    <title>Pull request of 29 November 2012 - updates</title>
    <link>http://www.open-technology.de/archives/97-Pull-request-of-29-November-2012-updates.html</link>
            <category>SoC camera</category>
    
    <comments>http://www.open-technology.de/archives/97-Pull-request-of-29-November-2012-updates.html#comments</comments>
    <wfw:comment>http://www.open-technology.de/wfwcomment.php?cid=97</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://www.open-technology.de/rss.php?version=2.0&amp;type=comments&amp;cid=97</wfw:commentRss>
    

    <author>nospam@example.com (Guennadi Liakhovetski)</author>
    <content:encoded>
    Several commits ended up not making it into the V4L tree from my previous pull requests, so, they are repeated here. Additionally a long overdue soc-camera documentation update, several managed resource allocation optimisations, other minor updates.&lt;br /&gt;
&lt;br /&gt;
Guennadi Liakhovetski (9):&lt;br /&gt;
      media: mem2mem: make reference to struct m2m_ops in the core const&lt;br /&gt;
      media: add a VEU MEM2MEM format conversion and scaling driver&lt;br /&gt;
      media: soc-camera: use managed devm_regulator_bulk_get()&lt;br /&gt;
      media: sh-mobile-ceu-camera: runtime PM suspending doesn&#039;t have to be synchronous&lt;br /&gt;
      media: soc-camera: update documentation&lt;br /&gt;
      media: soc-camera: remove superfluous JPEG checking&lt;br /&gt;
      media: sh_mobile_csi2: use managed memory and resource allocations&lt;br /&gt;
      media: sh_mobile_ceu_camera: use managed memory and resource allocations&lt;br /&gt;
      MAINTAINERS: add entries for sh_veu and sh_vou V4L2 drivers&lt;br /&gt;
&lt;br /&gt;
Javier Martin (1):&lt;br /&gt;
      media: mx2_camera: Add image size HW limits.&lt;br /&gt;
 
    </content:encoded>

    <pubDate>Mon, 11 Mar 2013 10:22:51 +0100</pubDate>
    <guid isPermaLink="false">http://www.open-technology.de/archives/97-guid.html</guid>
    
</item>
<item>
    <title>Pull request of 29 November 2012 - fixes</title>
    <link>http://www.open-technology.de/archives/96-Pull-request-of-29-November-2012-fixes.html</link>
            <category>SoC camera</category>
    
    <comments>http://www.open-technology.de/archives/96-Pull-request-of-29-November-2012-fixes.html#comments</comments>
    <wfw:comment>http://www.open-technology.de/wfwcomment.php?cid=96</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://www.open-technology.de/rss.php?version=2.0&amp;type=comments&amp;cid=96</wfw:commentRss>
    

    <author>nospam@example.com (Guennadi Liakhovetski)</author>
    <content:encoded>
    Several fixes, which, however, somehow ended up being delayed a lot:&lt;br /&gt;
&lt;br /&gt;
Anatolij Gustschin (1):&lt;br /&gt;
      soc_camera: fix VIDIOC_S_CROP ioctl&lt;br /&gt;
&lt;br /&gt;
Cyril Roelandt (1):&lt;br /&gt;
      mx2_camera: use GFP_ATOMIC under spin lock.&lt;br /&gt;
&lt;br /&gt;
Guennadi Liakhovetski (1):&lt;br /&gt;
      media: sh-vou: fix compiler warnings&lt;br /&gt;
 
    </content:encoded>

    <pubDate>Mon, 11 Mar 2013 10:17:45 +0100</pubDate>
    <guid isPermaLink="false">http://www.open-technology.de/archives/96-guid.html</guid>
    
</item>
<item>
    <title>Pull request of 31 October 2012 for 3.8</title>
    <link>http://www.open-technology.de/archives/95-Pull-request-of-31-October-2012-for-3.8.html</link>
            <category>SoC camera</category>
    
    <comments>http://www.open-technology.de/archives/95-Pull-request-of-31-October-2012-for-3.8.html#comments</comments>
    <wfw:comment>http://www.open-technology.de/wfwcomment.php?cid=95</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://www.open-technology.de/rss.php?version=2.0&amp;type=comments&amp;cid=95</wfw:commentRss>
    

    <author>nospam@example.com (Guennadi Liakhovetski)</author>
    <content:encoded>
    One new (not soc-camera) driver for a mem2mem video processing device, one driver (mx1_camera) declared broken, several driver updates.&lt;br /&gt;
&lt;br /&gt;
Anatolij Gustschin (4):&lt;br /&gt;
      V4L: soc_camera: allow reading from video device if supported&lt;br /&gt;
      mt9v022: add v4l2 controls for blanking&lt;br /&gt;
      mt9v022: support required register settings in snapshot mode&lt;br /&gt;
      mt9v022: set y_skip_top field to zero as default&lt;br /&gt;
&lt;br /&gt;
Frank SchÃ€fer (1):&lt;br /&gt;
      ov2640: add support for V4L2_MBUS_FMT_YUYV8_2X8, V4L2_MBUS_FMT_RGB565_2X8_BE&lt;br /&gt;
&lt;br /&gt;
Guennadi Liakhovetski (1):&lt;br /&gt;
      media: add a VEU MEM2MEM format conversion and scaling driver&lt;br /&gt;
&lt;br /&gt;
Shawn Guo (1):&lt;br /&gt;
      media: mx1_camera: mark the driver BROKEN&lt;br /&gt;
 
    </content:encoded>

    <pubDate>Mon, 11 Mar 2013 10:03:41 +0100</pubDate>
    <guid isPermaLink="false">http://www.open-technology.de/archives/95-guid.html</guid>
    
</item>
<item>
    <title>Pull request of 31 October 2012 - 3.7 fixes</title>
    <link>http://www.open-technology.de/archives/94-Pull-request-of-31-October-2012-3.7-fixes.html</link>
            <category>SoC camera</category>
    
    <comments>http://www.open-technology.de/archives/94-Pull-request-of-31-October-2012-3.7-fixes.html#comments</comments>
    <wfw:comment>http://www.open-technology.de/wfwcomment.php?cid=94</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://www.open-technology.de/rss.php?version=2.0&amp;type=comments&amp;cid=94</wfw:commentRss>
    

    <author>nospam@example.com (Guennadi Liakhovetski)</author>
    <content:encoded>
    Mostly compiler warning fixes for 3.7 after the struct v4l2_ioctl_ops::vidioc_s_crop prototype change, additionally a V4L2 control implementation fix for mt9v022&lt;br /&gt;
&lt;br /&gt;
Anatolij Gustschin (1):&lt;br /&gt;
      mt9v022: fix the V4L2_CID_EXPOSURE control&lt;br /&gt;
&lt;br /&gt;
Guennadi Liakhovetski (7):&lt;br /&gt;
      media: sh_vou: fix const cropping related warnings&lt;br /&gt;
      media: sh_mobile_ceu_camera: fix const cropping related warnings&lt;br /&gt;
      media: pxa_camera: fix const cropping related warnings&lt;br /&gt;
      media: mx3_camera: fix const cropping related warnings&lt;br /&gt;
      media: mx2_camera: fix const cropping related warnings&lt;br /&gt;
      media: mx1_camera: use the default .set_crop() implementation&lt;br /&gt;
      media: omap1_camera: fix const cropping related warnings&lt;br /&gt;
 
    </content:encoded>

    <pubDate>Mon, 11 Mar 2013 09:57:07 +0100</pubDate>
    <guid isPermaLink="false">http://www.open-technology.de/archives/94-guid.html</guid>
    
</item>
<item>
    <title>Pull request of 25 September 2012</title>
    <link>http://www.open-technology.de/archives/92-Pull-request-of-25-September-2012.html</link>
            <category>SoC camera</category>
    
    <comments>http://www.open-technology.de/archives/92-Pull-request-of-25-September-2012.html#comments</comments>
    <wfw:comment>http://www.open-technology.de/wfwcomment.php?cid=92</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://www.open-technology.de/rss.php?version=2.0&amp;type=comments&amp;cid=92</wfw:commentRss>
    

    <author>nospam@example.com (Guennadi Liakhovetski)</author>
    <content:encoded>
    A last minute 3.6 fixes pull request has been sent, but, unfortunately, hasn&#039;t managed it in before the release, they will have to be pushed to 3.6-stable:&lt;br /&gt;
&lt;br /&gt;
Frank Schäfer (1):&lt;br /&gt;
      ov2640: select sensor register bank before applying h/v-flip settings&lt;br /&gt;
&lt;br /&gt;
Peter Senna Tschudin (2):&lt;br /&gt;
      drivers/media/video/mx2_camera.c: fix error return code&lt;br /&gt;
      drivers/media/video/soc_camera.c: fix error return code&lt;br /&gt;
 
    </content:encoded>

    <pubDate>Thu, 04 Oct 2012 10:27:38 +0200</pubDate>
    <guid isPermaLink="false">http://www.open-technology.de/archives/92-guid.html</guid>
    
</item>
<item>
    <title>Pull request of 11 September 2012</title>
    <link>http://www.open-technology.de/archives/91-Pull-request-of-11-September-2012.html</link>
            <category>SoC camera</category>
    
    <comments>http://www.open-technology.de/archives/91-Pull-request-of-11-September-2012.html#comments</comments>
    <wfw:comment>http://www.open-technology.de/wfwcomment.php?cid=91</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://www.open-technology.de/rss.php?version=2.0&amp;type=comments&amp;cid=91</wfw:commentRss>
    

    <author>nospam@example.com (Guennadi Liakhovetski)</author>
    <content:encoded>
    A couple of improvement patches for 3.7:&lt;br /&gt;
&lt;br /&gt;
Javier Martin (1):&lt;br /&gt;
      media: mx2_camera: Don&#039;t modify non volatile parameters in try_fmt.&lt;br /&gt;
&lt;br /&gt;
Sachin Kamat (2):&lt;br /&gt;
      soc_camera: Use module_platform_driver macro&lt;br /&gt;
      soc_camera: Use devm_kzalloc function&lt;br /&gt;
&lt;br /&gt;
Sylwester Nawrocki (1):&lt;br /&gt;
      soc-camera: Use new selection target definitions&lt;br /&gt;
 
    </content:encoded>

    <pubDate>Thu, 04 Oct 2012 10:21:39 +0200</pubDate>
    <guid isPermaLink="false">http://www.open-technology.de/archives/91-guid.html</guid>
    
</item>

</channel>
</rss>