On 12/15/2012 03:13 PM, Sylwester Nawrocki wrote:
> From: Guennadi Liakhovetski
>
> This patch adds a document describing common OF bindings for video
> capture, output and video processing devices. It is currently mainly
> focused on video capture devices, with data interfaces defined in
> stand
This message is generated daily by a cron job that builds media_tree for
the kernels and architectures in the list below.
Results of the daily build of media_tree:
date:Mon Dec 31 19:00:18 CET 2012
git hash:b858c331cdf402853be2c48c8f4f77173ef04da8
gcc version: i686-linux-gcc (GCC
Em Mon, 31 Dec 2012 17:41:25 +0800
Scott Jiang escreveu:
> 2012/12/28 Mauro Carvalho Chehab :
> > Select is evil as it has issues with dependencies. Better to convert
> > it to use depends on.
> >
> > That fixes a breakage with out-of-tree compilation of the media
> > tree.
> >
> > Signed-off-by:
No! You will need a real antenna, not amplifier(?) like that. One of the
best and easily available antennas in EU are Televes DAT75 and few Triax
models. Compare DAT75 and your antenna, DAT75 is 19dB and your is 30dB,
guess which one is still 1000x better.
You will not likely need that heavy a
On 12/18/2012 06:14 PM, Stephen Warren wrote:
On 12/15/2012 02:13 PM, Sylwester Nawrocki wrote:
From: Guennadi Liakhovetski
This patch adds a document describing common OF bindings for video
capture, output and video processing devices. It is currently mainly
focused on video capture devices, w
Replace kzalloc, request_mem_region, ioremap, clk_get and regulator_get
with their devm_* managed replacement.
Signed-off-by: Laurent Pinchart
---
drivers/media/platform/omap3isp/isp.c | 74 -
drivers/media/platform/omap3isp/ispccp2.c |8 +--
drivers/med
kzalloc initializes the memory it allocates to 0, there's no need for an
explicit memset.
Signed-off-by: Laurent Pinchart
---
drivers/media/platform/omap3isp/isph3a_aewb.c |1 -
drivers/media/platform/omap3isp/isph3a_af.c |1 -
drivers/media/platform/omap3isp/isphist.c |1 -
3
This patch adds all nodes for camera devices on example Exynos4412 SoC
based board. This is all what's required in the board dts file to enable
rear facing camera (S5C73M3 sensor).
The aliases node contains entries required for the camera processing
data path entity drivers.
The sensor nodes use
Add separate nodes for the CAMCLK pin and turn off pull-up on camera
port A. Default driver strength for CAMCLK pin is increased to maximum.
The driver strength change can be moved to board specific part if it
is considered more appropriate.
Signed-off-by: Sylwester Nawrocki
Signed-off-by: Kyungm
Add common camera node and fimc nodes specific to Exynos4212 and
Exynos4412 SoCs. fimc-is is a node for the Exynos4x12 FIMC-IS
subsystem and fimc-lite nodes are created as its child nodes,
among others due to FIMC-LITE device dependencies on FIMC-IS
related clocks.
Signed-off-by: Sylwester Nawrock
The ISP power domain is a common power domain for fimc-lite
and fimc-is (ISP) devices.
Signed-off-by: Sylwester Nawrocki
Signed-off-by: Kyungmin Park
---
arch/arm/boot/dts/exynos4x12.dtsi |5 +
1 file changed, 5 insertions(+)
diff --git a/arch/arm/boot/dts/exynos4x12.dtsi
b/arch/arm/b
This adds common FIMC device nodes for all Exynos4 SoCs.
Signed-off-by: Sylwester Nawrocki
Signed-off-by: Kyungmin Park
---
arch/arm/boot/dts/exynos4.dtsi | 64
1 file changed, 64 insertions(+)
diff --git a/arch/arm/boot/dts/exynos4.dtsi b/arch/arm/bo
Add these temporary OF_DEV_AUXDATA entries so we can use clocks
before common clock framework support for Exynos4 is available.
Signed-off-by: Sylwester Nawrocki
Signed-off-by: Kyungmin Park
---
arch/arm/mach-exynos/mach-exynos4-dt.c | 16
1 file changed, 16 insertions(+)
di
Before the camera ports can be used the pinmux needs to be configured
properly. This patch adds a function to get the pinctrl states and to
set default camera port pinmux state during the media driver's probe().
The camera port(s) are configured for video bus operation in this way.
"inactive" pinc
The sensor (I2C and/or SPI client) devices are instantiated by their
corresponding control bus drivers. Since the I2C client's master clock
is often provided by a video bus receiver (host interface) or other
than I2C/SPI controller device, the drivers of those client devices
are not accessing hardw
This patch add changes required for the main camera media device
driver to be initialized on systems booted from the device tree.
The platform devices corresponding to child dt nodes of the 'camera'
node are looked up and and registered as sub-devices to the common
media device. The main driver's
The previous method of registering platform entities into the main
driver using driver_find() and then iterating over devices bound to
a driver was racy and is being removed here. Nothing was preventing
module from unloading during a call to try_module_get(driver->owner).
Instead, we look up a devi
This patch add support for binding the driver to FIMC-LITE devices
instantiated from the device tree.
Signed-off-by: Sylwester Nawrocki
Signed-off-by: Kyungmin Park
---
.../devicetree/bindings/media/soc/samsung-fimc.txt | 16 +
drivers/media/platform/s5p-fimc/fimc-lite.c| 65 +++
This patch adds support for FIMC devices instantiated from devicetree
for S5PV210 and Exynos4 SoCs. The FIMC IP features include colorspace
conversion and scaling (mem-to-mem) and parallel/MIPI CSI2 bus video
capture interface.
Multiple SoC revision specific parameters are defined statically
in th
s5p-csis is platform device driver for MIPI-CSI frontend to the FIMC
device. This patch support for binding the driver to the MIPI-CSIS
devices instantiated from device tree and for parsing all SoC and
board specific properties.
Signed-off-by: Sylwester Nawrocki
Signed-off-by: Kyungmin Park
---
From: Guennadi Liakhovetski
Add a V4L2 OF parser, implementing bindings, documented in
Documentation/devicetree/bindings/media/video-interfaces.txt.
Signed-off-by: Guennadi Liakhovetski
Signed-off-by: Sylwester Nawrocki
---
Changes since previous version:
- merged into this one all my fixup p
From: Guennadi Liakhovetski
This patch adds a document describing common OF bindings for video
capture, output and video processing devices. It is curently mainly
focused on video capture devices, with data busses defined by
standards like ITU-R BT.656 or MIPI-CSI2.
It also documents a method of
This series includes the updated DT bindings documentation and the V4L2 OF
parser. Changes since v1:
- renamed 'link' nodes to 'endpoint', remote phandle to 'remote-endpoint'
in the common bindings documentation file,
- removed references to V4L2 in the documentation,
- file v4l2.txt renamed
The plat/iommu.h, plat/iovmm.h and plat/omap-pm.h have been deleted.
Don't include them.
Signed-off-by: Laurent Pinchart
---
drivers/media/platform/omap3isp/ispvideo.c |3 ---
1 files changed, 0 insertions(+), 3 deletions(-)
diff --git a/drivers/media/platform/omap3isp/ispvideo.c
b/drivers
Hi All,
On 11/23/2012 04:22 PM, Andrzej Hajda wrote:
> Add driver for S5C73M3 image sensor. The driver exposes the sensor as
> two subdevs: pure sensor and output interface. Two subdev architecture
> supports interleaved UYVY/JPEG image format with separate frame size
> for both sub-formats, there
2012/12/28 Mauro Carvalho Chehab :
> Select is evil as it has issues with dependencies. Better to convert
> it to use depends on.
>
> That fixes a breakage with out-of-tree compilation of the media
> tree.
>
> Signed-off-by: Mauro Carvalho Chehab
> ---
> drivers/media/platform/blackfin/Kconfig |
26 matches
Mail list logo