[PATCH] Staging: dgnc: Align the * on a block comment

2016-09-26 Thread Ramiro Oliveira
This patch corrects a misalligned * in a block comment warning found by checkpatch.pl Signed-off-by: Ramiro Oliveira --- drivers/staging/dgnc/dgnc_cls.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/staging/dgnc/dgnc_cls.c b/drivers/staging/dgnc/dgnc_cls.c index

Re: [PATCH] Staging: dgnc: Align the * on a block comment

2016-09-27 Thread Ramiro Oliveira
On 9/27/2016 12:13 PM, Greg KH wrote: > On Mon, Sep 26, 2016 at 06:39:15PM +0100, Ramiro Oliveira wrote: >> This patch corrects a misalligned * in a block comment warning found by >> checkpatch.pl >> >> Signed-off-by: Ramiro Oliveira >> --- >> drivers/st

[PATCH] Staging: android: fix permissions style

2016-09-27 Thread Ramiro Oliveira
Change permissions from symbolic to octal. Signed-off-by: Ramiro Oliveira --- drivers/staging/android/lowmemorykiller.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/staging/android/lowmemorykiller.c b/drivers/staging/android/lowmemorykiller.c index 80d7adf

[PATCH v5 0/2] Add support for Omnivision OV5647

2016-12-05 Thread Ramiro Oliveira
lack of responses v2: - Corrections in DT documentation Ramiro Oliveira (2): Add OV5647 device tree documentation Add support for OV5647 sensor .../devicetree/bindings/media/i2c/ov5647.txt | 19 + MAINTAINERS| 7 + drivers/media/i2c/Kconfig

[PATCH v5 2/2] Add support for OV5647 sensor

2016-12-05 Thread Ramiro Oliveira
Add support for OV5647 sensor. Modes supported: - 640x480 RAW 8 Signed-off-by: Ramiro Oliveira --- MAINTAINERS| 7 + drivers/media/i2c/Kconfig | 12 + drivers/media/i2c/Makefile | 1 + drivers/media/i2c/ov5647.c | 866 + 4

[PATCH v5 1/2] Add OV5647 device tree documentation

2016-12-05 Thread Ramiro Oliveira
Add device tree documentation. Signed-off-by: Ramiro Oliveira --- .../devicetree/bindings/media/i2c/ov5647.txt | 19 +++ 1 file changed, 19 insertions(+) create mode 100644 Documentation/devicetree/bindings/media/i2c/ov5647.txt diff --git a/Documentation/devicetree

Re: [PATCH v3 2/2] reset: make optional functions really optional

2017-01-13 Thread Ramiro Oliveira
Hi Philipp On 1/13/2017 9:11 AM, Philipp Zabel wrote: > Hi Ramiro, > > Am Donnerstag, den 12.01.2017, 18:34 + schrieb Ramiro Oliveira: >> "The *_get_optional_* functions weren't really optional so this patch >> makes them really optional. >> >>

[PATCH v4 2/2] reset: make optional functions really optional

2017-01-13 Thread Ramiro Oliveira
igned-off-by: Ramiro Oliveira --- drivers/reset/core.c | 49 +++-- include/linux/reset.h | 45 ++--- 2 files changed, 65 insertions(+), 29 deletions(-) diff --git a/drivers/reset/core.c b/drivers/reset/core.c

[PATCH v4 0/2] reset: Make optional functions really optional.

2017-01-13 Thread Ramiro Oliveira
bool to match optional flag Up until now optional functions in the reset API were similar to the non optional. This patch corrects that, while maintaining compatibility with existing drivers. As suggested here: https://lkml.org/lkml/2016/12/14/502 Ramiro Oliveira (2): reset: Change shared flag

[PATCH v4 1/2] reset: Change shared flag from int to bool

2017-01-13 Thread Ramiro Oliveira
Since the new parameter being added is going to be a bool this patch changes the shared flag from int to bool to match the new parameter. Signed-off-by: Ramiro Oliveira --- drivers/reset/core.c | 8 include/linux/reset.h | 32 2 files changed, 20

Re: [PATCH v2 2/2] reset: make optional functions really optional

2017-01-09 Thread Ramiro Oliveira
Hi Philipp On 1/9/2017 10:45 AM, Philipp Zabel wrote: > Hi Ramiro, > > Am Dienstag, den 27.12.2016, 12:37 + schrieb Ramiro Oliveira: >> The optional functions weren't really optional so this patch makes them >> really optional. > > Please add a bit of detai

[PATCH v3 0/2] OV5647 Sensor driver

2016-10-12 Thread Ramiro Oliveira
Hello, This patch adds support for the Omnivision OV5647 sensor. At the moment it only supports 640x480 in Raw 8. v3: Re-sending after no reply to previous patch. Ramiro Oliveira (2): Add OV5647 device tree documentation Add support for Omnivision OV5647 .../devicetree/bindings/media/i2c

[PATCH v3 1/2] Add OV5647 device tree documentation

2016-10-12 Thread Ramiro Oliveira
Signed-off-by: Ramiro Oliveira --- .../devicetree/bindings/media/i2c/ov5647.txt | 19 +++ 1 file changed, 19 insertions(+) create mode 100644 Documentation/devicetree/bindings/media/i2c/ov5647.txt diff --git a/Documentation/devicetree/bindings/media/i2c/ov5647.txt b

[PATCH v3 2/2] Add support for Omnivision OV5647

2016-10-12 Thread Ramiro Oliveira
Signed-off-by: Ramiro Oliveira --- MAINTAINERS| 7 + drivers/media/i2c/Kconfig | 12 + drivers/media/i2c/Makefile | 1 + drivers/media/i2c/ov5647.c | 891 + 4 files changed, 911 insertions(+) create mode 100644 drivers/media/i2c

[PATCH v4 1/2] Add OV5647 device tree documentation

2016-11-14 Thread Ramiro Oliveira
Add device tree documentation. Signed-off-by: Ramiro Oliveira --- .../devicetree/bindings/media/i2c/ov5647.txt | 19 +++ 1 file changed, 19 insertions(+) create mode 100644 Documentation/devicetree/bindings/media/i2c/ov5647.txt diff --git a/Documentation/devicetree

[PATCH v4 0/2] Add support for Omnivision OV5647

2016-11-14 Thread Ramiro Oliveira
- Correct code style issues - Remove unused defines - Make sure all errors where being handled - Rename some functions to make code more readable - Add some debugging info v3: - No changes. Re-submitted due to lack of responses v2: - Corrections in DT documentation Ramiro Oliveira (2): Add

[PATCH v4 2/2] Add support for OV5647 sensor

2016-11-14 Thread Ramiro Oliveira
Add support for OV5647 sensor. Modes supported: - 640x480 RAW 8 Signed-off-by: Ramiro Oliveira --- MAINTAINERS| 7 + drivers/media/i2c/Kconfig | 12 + drivers/media/i2c/Makefile | 1 + drivers/media/i2c/ov5647.c | 861 + 4

[PATCH 0/2] Add support for the DW IP Prototyping Kits for MIPI CSI-2 Host

2016-11-14 Thread Ramiro Oliveira
This patchset adds basic support for the DW CSI-2 Host IPK. There are some parts of the kit that aren't currently supported by this media platform driver but will be in the future. Ramiro Oliveira (2): Add Documentation for Media Device, Video Device, and Synopsys DW MIPI CSI-2 Host

[PATCH 2/2] Add basic support for DW CSI-2 Host IPK

2016-11-14 Thread Ramiro Oliveira
Add support for basic configuration of the DW CSI-2 Host IPK Signed-off-by: Ramiro Oliveira --- MAINTAINERS | 7 + drivers/media/platform/Kconfig | 1 + drivers/media/platform/Makefile | 2 + drivers/media/platform/dwc/Kconfig

[PATCH 1/2] Add Documentation for Media Device, Video Device, and Synopsys DW MIPI CSI-2 Host

2016-11-14 Thread Ramiro Oliveira
Add documentation for Media and Video Device, as well as the DW MIPI CSI-2 Host. Signed-off-by: Ramiro Oliveira --- .../devicetree/bindings/media/snps,dw-mipi-csi.txt | 27 ++ .../devicetree/bindings/media/snps,plat-ipk.txt| 9 .../bindings/media/snps,video

Re: [PATCH 1/2] Add Documentation for Media Device, Video Device, and Synopsys DW MIPI CSI-2 Host

2016-11-14 Thread Ramiro Oliveira
Hi Laurent, Thanks for the feedback. On 11/14/2016 2:49 PM, Laurent Pinchart wrote: > Hi Ramiro, > > Thank you for the patch. > > On Monday 14 Nov 2016 14:20:22 Ramiro Oliveira wrote: >> Add documentation for Media and Video Device, as well as the DW MIPI CSI-2 >>

Re: [PATCH v2] arc: Implement arch-specific dma_map_ops.mmap

2016-11-15 Thread Ramiro Oliveira
kml/2016/10/26/973 > > Signed-off-by: Alexey Brodkin > Reviewed-by: Catalin Marinas > Cc: Marek Szyprowski > Cc: Vineet Gupta > Cc: > --- Tested-by: Ramiro Oliveira

Re: [PATCH v2] drm/arcpgu: Accommodate adv7511 switch to DRM bridge

2016-10-21 Thread Ramiro Oliveira
er_attach+0xa8/0xd0 > bus_for_each_dev+0x3c/0x74 > bus_add_driver+0xc2/0x184 > driver_register+0x50/0xec > do_one_initcall+0x3a/0x120 > kernel_init_freeable+0x108/0x1a0 > ->8 > > Fix ARC PGU dr

[PATCH] staging: most: change dma_buf variable to __le16

2017-01-03 Thread Ramiro Oliveira
dma_buf is being cast to __le16 *, but it was defined as u16 *. sparse reported this error as: drivers/staging/most/hdm-usb/hdm_usb.c:158:16: warning: cast to restricted __le16 This patch changes dma_buf from u16 to __le16. Signed-off-by: Ramiro Oliveira --- drivers/staging/most/hdm-usb

[PATCH v6 0/2] Add support for Omnivision OV5647

2016-12-13 Thread Ramiro Oliveira
responses v2: - Corrections in DT documentation Ramiro Oliveira (2): Add OV5647 device tree documentation Add support for OV5647 sensor. .../devicetree/bindings/media/i2c/ov5647.txt | 35 + MAINTAINERS| 7 + drivers/media/i2c/Kconfig

[PATCH v6 2/2] Add support for OV5647 sensor.

2016-12-13 Thread Ramiro Oliveira
Modes supported: - 640x480 RAW 8 Signed-off-by: Ramiro Oliveira --- MAINTAINERS| 7 + drivers/media/i2c/Kconfig | 12 + drivers/media/i2c/Makefile | 1 + drivers/media/i2c/ov5647.c | 718 + 4 files changed, 738 insertions

[PATCH v6 1/2] Add OV5647 device tree documentation

2016-12-13 Thread Ramiro Oliveira
Create device tree bindings documentation. Signed-off-by: Ramiro Oliveira --- .../devicetree/bindings/media/i2c/ov5647.txt | 35 ++ 1 file changed, 35 insertions(+) create mode 100644 Documentation/devicetree/bindings/media/i2c/ov5647.txt diff --git a/Documentation

[PATCH 2/2] xilinx_dma: Add reset support

2016-12-14 Thread Ramiro Oliveira
Add a DT property to control an optional external reset line Signed-off-by: Ramiro Oliveira --- drivers/dma/xilinx/xilinx_dma.c | 23 +++ 1 file changed, 23 insertions(+) diff --git a/drivers/dma/xilinx/xilinx_dma.c b/drivers/dma/xilinx/xilinx_dma.c index 5c9f11b..b845224

[PATCH 0/2] xilinx_dma: Add external reset control

2016-12-14 Thread Ramiro Oliveira
This patchset adds support for controlling an external reset line. Since this reset line is optional it won't break compatibility. Ramiro Oliveira (2): xilinx_dma: Edit device tree bindings documentation xilinx_dma: Add reset support .../devicetree/bindings/dma/xilinx/xilinx_dma.txt

[PATCH 1/2] xilinx_dma: Edit device tree bindings documentation

2016-12-14 Thread Ramiro Oliveira
Add reset property documentation for Xilinx DMA Signed-off-by: Ramiro Oliveira --- Documentation/devicetree/bindings/dma/xilinx/xilinx_dma.txt | 6 ++ 1 file changed, 6 insertions(+) diff --git a/Documentation/devicetree/bindings/dma/xilinx/xilinx_dma.txt b/Documentation/devicetree

Re: [PATCH] reset: Make optional functions really optional.

2016-12-23 Thread Ramiro Oliveira
>>>> Am Donnerstag, den 15.12.2016, 18:05 + schrieb Ramiro Oliveira: >>>>> Up until now optional functions in the reset API were similar to the >>>>> non optional. >>>>> >>>>> This patch corrects that, while ma

Re: [PATCH] reset: Make optional functions really optional.

2016-12-23 Thread Ramiro Oliveira
Hi Philipp On 12/23/2016 12:08 PM, Philipp Zabel wrote: > Hi Laurent, > > Am Freitag, den 23.12.2016, 13:23 +0200 schrieb Laurent Pinchart: >> Hello, >> >> On Friday 23 Dec 2016 11:58:57 Philipp Zabel wrote: >>> Am Donnerstag, den 15.12.2016, 18:05 + sc

[PATCH v2 1/2] reset: Change shared flag from int to bool

2016-12-27 Thread Ramiro Oliveira
Since the new parameter being added is going to be a bool this patch changes the shared flag from int to bool to match the new parameter. Signed-off-by: Ramiro Oliveira --- drivers/reset/core.c | 8 include/linux/reset.h | 32 2 files changed, 20

[PATCH v2 0/2] reset: Make optional functions really optional.

2016-12-27 Thread Ramiro Oliveira
existing drivers. As suggested here: https://lkml.org/lkml/2016/12/14/502 Ramiro Oliveira (2): reset: Change shared flag from int to bool reset: make optional functions really optional drivers/reset/core.c | 39 +++ include/linux/reset.h | 45

[PATCH v2 2/2] reset: make optional functions really optional

2016-12-27 Thread Ramiro Oliveira
The optional functions weren't really optional so this patch makes them really optional. Signed-off-by: Ramiro Oliveira --- drivers/reset/core.c | 35 +-- include/linux/reset.h | 45 ++--- 2 files changed, 55 inser

[PATCH v7 0/2] Add support for Omnivision OV5647

2016-12-27 Thread Ramiro Oliveira
- Add some debugging info v3: - No changes. Re-submitted due to lack of responses v2: - Corrections in DT documentation Ramiro Oliveira (2): Add OV5647 device tree documentation Add support for OV5647 sensor. .../devicetree/bindings/media/i2c/ov5647.txt | 35 + M

[PATCH v7 1/2] Add OV5647 device tree documentation

2016-12-27 Thread Ramiro Oliveira
Create device tree bindings documentation. Signed-off-by: Ramiro Oliveira --- .../devicetree/bindings/media/i2c/ov5647.txt | 35 ++ 1 file changed, 35 insertions(+) create mode 100644 Documentation/devicetree/bindings/media/i2c/ov5647.txt diff --git a/Documentation

[PATCH v7 2/2] Add support for OV5647 sensor.

2016-12-27 Thread Ramiro Oliveira
Modes supported: - 640x480 RAW 8 Signed-off-by: Ramiro Oliveira --- MAINTAINERS| 7 + drivers/media/i2c/Kconfig | 12 + drivers/media/i2c/Makefile | 1 + drivers/media/i2c/ov5647.c | 718 + 4 files changed, 738 insertions

Re: [PATCH 2/2] xilinx_dma: Add reset support

2016-12-15 Thread Ramiro Oliveira
Hi Laurent, Thank you for your feedback. On 12/14/2016 8:16 PM, Laurent Pinchart wrote: > Hi Ramiro, > > Thank you for the patch. > > On Wednesday 14 Dec 2016 17:18:24 Ramiro Oliveira wrote: >> Add a DT property to control an optional external reset line >> >&g

[PATCH] reset: Make optional functions really optional.

2016-12-15 Thread Ramiro Oliveira
Up until now optional functions in the reset API were similar to the non optional. This patch corrects that, while maintaining compatibility with existing drivers. As suggested here: https://lkml.org/lkml/2016/12/14/502 Signed-off-by: Ramiro Oliveira --- drivers/reset/core.c | 21

Re: [PATCH v4 2/2] Add support for OV5647 sensor

2016-11-21 Thread Ramiro Oliveira
Hi Pavel! On 11/15/2016 12:10 PM, Pavel Machek wrote: > Hi! > >> Add support for OV5647 sensor. >> > >> +static int ov5647_write(struct v4l2_subdev *sd, u16 reg, u8 val) >> +{ >> +int ret; >> +unsigned char data[3] = { reg >> 8, reg & 0xff, val}; >> +struct i2c_client *client = v4l2_

Re: [PATCH 2/2] Add basic support for DW CSI-2 Host IPK

2016-11-21 Thread Ramiro Oliveira
#x27;m not sure if this answers your question. > On Mon, Nov 14, 2016 at 02:20:23PM +, Ramiro Oliveira wrote: >> Add support for basic configuration of the DW CSI-2 Host IPK >> >> Signed-off-by: Ramiro Oliveira >> --- >> MAINTAINERS

Re: [PATCH v5 2/2] Add support for OV5647 sensor

2016-12-12 Thread Ramiro Oliveira
Hi Sakari On 12/7/2016 11:01 PM, Sakari Ailus wrote: > Hi Ramiro, > > On Mon, Dec 05, 2016 at 05:36:34PM +0000, Ramiro Oliveira wrote: >> Add support for OV5647 sensor. >> >> Modes supported: >> - 640x480 RAW 8 >> >> Signed-off-by: Ramiro Oliveira

Re: [PATCH v5 1/2] Add OV5647 device tree documentation

2016-12-12 Thread Ramiro Oliveira
Hi Sakari, Thank you for the feedback. On 12/7/2016 10:33 PM, Sakari Ailus wrote: > Hi Ramiro, > > Thank you for the patch. > > On Mon, Dec 05, 2016 at 05:36:33PM +, Ramiro Oliveira wrote: >> Add device tree documentation. >> >> Signed-off-by: Ramiro Ol

Re: [PATCH v5 1/2] Add OV5647 device tree documentation

2016-12-12 Thread Ramiro Oliveira
Hi Sakari On 12/12/2016 11:49 AM, Sakari Ailus wrote: > Hi Ramiro, > > On Mon, Dec 12, 2016 at 11:39:31AM +0000, Ramiro Oliveira wrote: >> Hi Sakari, >> >> Thank you for the feedback. >> >> On 12/7/2016 10:33 PM, Sakari Ailus wrote: >>> Hi Ramiro,

Re: [PATCH v5 1/2] Add OV5647 device tree documentation

2016-12-12 Thread Ramiro Oliveira
Hi Sakari On 12/12/2016 12:19 PM, Sakari Ailus wrote: > Hi Ramiro, > > On Mon, Dec 12, 2016 at 12:15:04PM +0000, Ramiro Oliveira wrote: >> Hi Sakari >> >> On 12/12/2016 11:49 AM, Sakari Ailus wrote: >>> Hi Ramiro, >>> >>> On Mon, Dec 12, 20

[PATCH v2 2/2] Support for DW CSI-2 Host IPK

2016-12-12 Thread Ramiro Oliveira
Add support for the DesignWare CSI-2 Host IP Prototyping Kit Signed-off-by: Ramiro Oliveira --- MAINTAINERS | 7 + drivers/media/platform/Kconfig | 1 + drivers/media/platform/Makefile | 2 + drivers/media/platform/dwc/Kconfig

[PATCH v2 0/2] Add support for the DW IP Prototyping Kits for MIPI CSI-2 Host

2016-12-12 Thread Ramiro Oliveira
- Remove unnecessary debug structures - Remove unused fields in structures - Change variable types - Remove unused functions - Declare functions as static - Remove some prints - Add missing newlines. Ramiro Oliveira (2): Add Documentation for Media Device, Video Device, and Synopsys DW MIPI

[PATCH v2 1/2] Add Documentation for Media Device, Video Device, and Synopsys DW MIPI CSI-2 Host

2016-12-12 Thread Ramiro Oliveira
Create device tree bindings documentation for Media and Video Device, as well as the DW MIPI CSI-2 Host. Signed-off-by: Ramiro Oliveira --- .../devicetree/bindings/media/snps,dw-mipi-csi.txt | 37 .../devicetree/bindings/media/snps,plat-ipk.txt| 105 + 2 files

[PATCH v11 0/2] Add support for Omnivision OV5647

2017-03-22 Thread Ramiro Oliveira
defines - Make sure all errors where being handled - Rename some functions to make code more readable - Add some debugging info v3: - No changes. Re-submitted due to lack of responses v2: - Corrections in DT documentation Ramiro Oliveira (2): Documentation: DT: Add OV5647 bindings media: i

[PATCH v11 1/2] Documentation: DT: Add OV5647 bindings

2017-03-22 Thread Ramiro Oliveira
Create device tree bindings documentation. Signed-off-by: Ramiro Oliveira Acked-by: Rob Herring Reviewed-by: Vladimir Zapolskiy --- .../devicetree/bindings/media/i2c/ov5647.txt | 35 ++ 1 file changed, 35 insertions(+) create mode 100644 Documentation/devicetree

[PATCH v11 2/2] media: i2c: Add support for OV5647 sensor.

2017-03-22 Thread Ramiro Oliveira
The OV5647 sensor from Omnivision supports up to 2592x1944 @ 15 fps, RAW 8 and RAW 10 output formats, and MIPI CSI-2 interface. The driver adds support for 640x480 RAW 8. Signed-off-by: Ramiro Oliveira Acked-by: Sakari Ailus Reviewed-by: Vladimir Zapolskiy --- MAINTAINERS

Re: [PATCH v10 2/2] media: i2c: Add support for OV5647 sensor.

2017-03-15 Thread Ramiro Oliveira
Hi Sakari On 3/7/2017 10:45 AM, Sakari Ailus wrote: > Hi Ramiro, > > On Mon, Mar 06, 2017 at 11:16:34AM +0000, Ramiro Oliveira wrote: > ... >> +static int __sensor_init(struct v4l2_subdev *sd) >> +{ >> +int ret; >> +u8 resetval, rdva

Re: [PATCH v10 1/2] Documentation: DT: Add OV5647 bindings

2017-03-15 Thread Ramiro Oliveira
Hi Rob On 3/15/2017 4:42 PM, Rob Herring wrote: > On Mon, Mar 06, 2017 at 11:16:33AM +0000, Ramiro Oliveira wrote: >> Create device tree bindings documentation. >> >> Signed-off-by: Ramiro Oliveira >> --- >> .../devicetree/binding

[PATCH 0/4] Support for Synopsys DW CSI-2 Host

2017-03-07 Thread Ramiro Oliveira
emove some prints - Add missing newlines. Ramiro Oliveira (4): Documentation: dt: Add bindings documentation for DW MIPI CSI-2 Host media: platform: dwc: Support for DW CSI-2 Host Documentation: dt: Add bindings documentation for CSI-2 Host Video Platform media: platform: dwc: Support for

[PATCH 1/4] Documentation: dt: Add bindings documentation for DW MIPI CSI-2 Host

2017-03-07 Thread Ramiro Oliveira
Create device tree bindings documentation for the Synopsys DW MIPI CSI-2 Host. Signed-off-by: Ramiro Oliveira --- .../devicetree/bindings/media/snps,dw-mipi-csi.txt | 37 ++ 1 file changed, 37 insertions(+) create mode 100644 Documentation/devicetree/bindings/media/snps,dw

[PATCH 3/4] Documentation: dt: Add bindings documentation for CSI-2 Host Video Platform

2017-03-07 Thread Ramiro Oliveira
Create device tree bindings documentation for the CSI-2 Host Video platform. Signed-off-by: Ramiro Oliveira --- .../devicetree/bindings/media/snps,plat-csi2.txt | 77 ++ 1 file changed, 77 insertions(+) create mode 100644 Documentation/devicetree/bindings/media/snps,plat

[PATCH 4/4] media: platform: dwc: Support for CSI-2 Host video platform

2017-03-07 Thread Ramiro Oliveira
Add support for the CSI-2 Host video platform. This platform exists only to support the Synopsys DW CSI-2 Host bring-up and debug efforts. Signed-off-by: Ramiro Oliveira --- drivers/media/platform/dwc/Kconfig| 40 ++ drivers/media/platform/dwc/Makefile | 2 + drivers

[PATCH 2/4] media: platform: dwc: Support for DW CSI-2 Host

2017-03-07 Thread Ramiro Oliveira
Add support for the Synopsys DesignWare CSI-2 Host Signed-off-by: Ramiro Oliveira --- MAINTAINERS | 7 + drivers/media/platform/Kconfig | 1 + drivers/media/platform/Makefile | 2 + drivers/media/platform/dwc/Kconfig | 5 + drivers

Re: [PATCH] dma: xilinx: Make Xilinx VDMA support ARC

2017-03-09 Thread Ramiro Oliveira
Hi Mike On 3/9/2017 7:37 AM, Mike Looijmans wrote: > On 06-03-17 13:27, Ramiro Oliveira wrote: >> Add option in Kconfig to use Xilinx VDMA in ARC processors. >> >> Signed-off-by: Ramiro Oliveira >> --- >> drivers/dma/Kconfig | 2 +- >> 1 file changed, 1

[PATCH v10 1/2] Documentation: DT: Add OV5647 bindings

2017-03-06 Thread Ramiro Oliveira
Create device tree bindings documentation. Signed-off-by: Ramiro Oliveira --- .../devicetree/bindings/media/i2c/ov5647.txt | 35 ++ 1 file changed, 35 insertions(+) create mode 100644 Documentation/devicetree/bindings/media/i2c/ov5647.txt diff --git a/Documentation

[PATCH v10 0/2] Add support for Omnivision OV5647

2017-03-06 Thread Ramiro Oliveira
nctions to make code more readable - Add some debugging info v3: - No changes. Re-submitted due to lack of responses v2: - Corrections in DT documentation Ramiro Oliveira (2): Documentation: DT: Add OV5647 bindings media: i2c: Add support for OV5647 sensor. .../devicetree/bindings/media

[PATCH v10 2/2] media: i2c: Add support for OV5647 sensor.

2017-03-06 Thread Ramiro Oliveira
The OV5647 sensor from Omnivision supports up to 2592x1944 @ 15 fps, RAW 8 and RAW 10 output formats, and MIPI CSI-2 interface. The driver adds support for 640x480 RAW 8. Signed-off-by: Ramiro Oliveira --- MAINTAINERS| 7 + drivers/media/i2c/Kconfig | 11 + drivers/media

[PATCH v2 0/2] xilinx_dma: Add external reset control

2017-03-06 Thread Ramiro Oliveira
This patchset adds support for controlling an external reset line. Since this reset line is optional it won't break compatibility. v2: - Re-order headers - Remove deprecated function - Remove reset naming Ramiro Oliveira (2): dma: xilinx: Edit device tree bindings documentation

[PATCH v2 1/2] dma: xilinx: Edit device tree bindings documentation

2017-03-06 Thread Ramiro Oliveira
Add reset property documentation for Xilinx DMA Signed-off-by: Ramiro Oliveira --- Documentation/devicetree/bindings/dma/xilinx/xilinx_dma.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Documentation/devicetree/bindings/dma/xilinx/xilinx_dma.txt b/Documentation/devicetree/bindings

[PATCH v2 2/2] dma: xilinx: Add reset support

2017-03-06 Thread Ramiro Oliveira
Add a DT property to control an optional external reset line Signed-off-by: Ramiro Oliveira --- drivers/dma/xilinx/xilinx_dma.c | 24 1 file changed, 20 insertions(+), 4 deletions(-) diff --git a/drivers/dma/xilinx/xilinx_dma.c b/drivers/dma/xilinx/xilinx_dma.c index

[PATCH] dma: xilinx: Make Xilinx VDMA support ARC

2017-03-06 Thread Ramiro Oliveira
Add option in Kconfig to use Xilinx VDMA in ARC processors. Signed-off-by: Ramiro Oliveira --- drivers/dma/Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/dma/Kconfig b/drivers/dma/Kconfig index 263495d0adbd..b6b6c0581ad7 100644 --- a/drivers/dma/Kconfig

Re: [PATCH v9 1/2] Add OV5647 device tree documentation

2017-02-21 Thread Ramiro Oliveira
Hi Sakari, Thank you for your feedback. On 2/21/2017 11:57 AM, Sakari Ailus wrote: > Hi Ramiro, > > On Fri, Feb 17, 2017 at 01:14:15PM +0000, Ramiro Oliveira wrote: >> Create device tree bindings documentation. >> >> Signed-off-by: Ramiro Oliveir

Re: [PATCH v9 2/2] Add support for OV5647 sensor.

2017-02-21 Thread Ramiro Oliveira
Hi Sakari, Thank you for your feedback. On 2/21/2017 12:09 PM, Sakari Ailus wrote: > Hi Ramiro, > > A few minor comments below. > > On Fri, Feb 17, 2017 at 01:14:16PM +, Ramiro Oliveira wrote: >> The OV5647 sensor from Omnivision supports up to 2592x1944 @ 15 fps

Re: [PATCH v9 2/2] Add support for OV5647 sensor.

2017-02-21 Thread Ramiro Oliveira
Hi Vladimir, Thank you for your feedback On 2/21/2017 3:54 PM, Vladimir Zapolskiy wrote: > Hi Ramiro, > > please find some review comments below. > > On 02/17/2017 03:14 PM, Ramiro Oliveira wrote: >> The OV5647 sensor from Omnivision supports up to 2592x1944 @ 15 fps

Re: [PATCH v9 1/2] Add OV5647 device tree documentation

2017-02-21 Thread Ramiro Oliveira
Hi Vladimir, Thank you for your feedback On 2/21/2017 3:58 PM, Vladimir Zapolskiy wrote: > Hi Ramiro, > > On 02/17/2017 03:14 PM, Ramiro Oliveira wrote: >> Create device tree bindings documentation. >> >> Signed-off-by: Ramiro Oliveira >> Acked-by: Rob H

Re: [PATCH v9 2/2] Add support for OV5647 sensor.

2017-02-22 Thread Ramiro Oliveira
Hi Zakari, On 2/21/2017 8:36 PM, Vladimir Zapolskiy wrote: > Hi Ramiro, > > On 02/21/2017 06:42 PM, Ramiro Oliveira wrote: >> Hi Vladimir, >> >> Thank you for your feedback >> >> On 2/21/2017 3:54 PM, Vladimir Zapolskiy wrote: >>> Hi Ramiro

Re: [PATCH v9 1/2] Add OV5647 device tree documentation

2017-02-22 Thread Ramiro Oliveira
17 at 10:48:09PM +0200, Vladimir Zapolskiy wrote: >>> Hi Ramiro, >>> >>> On 02/21/2017 10:13 PM, Ramiro Oliveira wrote: >>>> Hi Vladimir, >>>> >>>> Thank you for your feedback >>>> >>>> On 2/21/2017 3:58 PM

Re: [PATCH v9 1/2] Add OV5647 device tree documentation

2017-02-22 Thread Ramiro Oliveira
Hi Vladimir On 2/22/2017 11:39 AM, Vladimir Zapolskiy wrote: > Hi Ramiro, > > On 02/22/2017 12:57 PM, Ramiro Oliveira wrote: >> Hi Vladimir >> >> On 2/21/2017 10:37 PM, Vladimir Zapolskiy wrote: >>> Hi Sakari, >>> >>> On 02/21/2017 11:48 PM

Re: [PATCH v2 1/2] Add Documentation for Media Device, Video Device, and Synopsys DW MIPI CSI-2 Host

2017-02-15 Thread Ramiro Oliveira
Hi Rob, Sorry for the late reply, but I just now found your reply. Thanks for your feedback. On 12/19/2016 5:38 PM, Rob Herring wrote: > On Mon, Dec 12, 2016 at 03:00:35PM +0000, Ramiro Oliveira wrote: >> Create device tree bindings documentation for Media and Video Device, as well >

[PATCH v8 2/2] Add support for OV5647 sensor.

2017-02-13 Thread Ramiro Oliveira
Modes supported: - 640x480 RAW 8 Signed-off-by: Ramiro Oliveira --- MAINTAINERS| 7 + drivers/media/i2c/Kconfig | 12 + drivers/media/i2c/Makefile | 1 + drivers/media/i2c/ov5647.c | 736 + 4 files changed, 756 insertions

[PATCH v8 0/2] Add support Add support for Omnivision OV56477

2017-02-13 Thread Ramiro Oliveira
ines into enums - Correct code style issues - Remove unused defines - Make sure all errors where being handled - Rename some functions to make code more readable - Add some debugging info v3: - No changes. Re-submitted due to lack of responses v2: - Corrections in DT documentation Ram

[PATCH v8 1/2] Add OV5647 device tree documentation

2017-02-13 Thread Ramiro Oliveira
Create device tree bindings documentation. Signed-off-by: Ramiro Oliveira Acked-by: Rob Herring --- .../devicetree/bindings/media/i2c/ov5647.txt | 35 ++ 1 file changed, 35 insertions(+) create mode 100644 Documentation/devicetree/bindings/media/i2c/ov5647.txt diff

Re: [PATCH v8 2/2] Add support for OV5647 sensor.

2017-02-13 Thread Ramiro Oliveira
Hi Vladimir, Thank you for your feedback. On 2/13/2017 12:21 PM, Vladimir Zapolskiy wrote: > Hello Ramiro, > > On 02/13/2017 01:25 PM, Ramiro Oliveira wrote: >> Modes supported: >> - 640x480 RAW 8 >> > > It is a pretty short commit message, please consider t

[PATCH v9 0/2] Add support for Omnivision OV5647

2017-02-17 Thread Ramiro Oliveira
e more readable - Add some debugging info v3: - No changes. Re-submitted due to lack of responses v2: - Corrections in DT documentation Ramiro Oliveira (2): Add OV5647 device tree documentation Add support for OV5647 sensor. .../devicetree/bindings/media/i2c/ov5647.txt | 35

[PATCH v9 1/2] Add OV5647 device tree documentation

2017-02-17 Thread Ramiro Oliveira
Create device tree bindings documentation. Signed-off-by: Ramiro Oliveira Acked-by: Rob Herring --- .../devicetree/bindings/media/i2c/ov5647.txt | 35 ++ 1 file changed, 35 insertions(+) create mode 100644 Documentation/devicetree/bindings/media/i2c/ov5647.txt diff

[PATCH v9 2/2] Add support for OV5647 sensor.

2017-02-17 Thread Ramiro Oliveira
The OV5647 sensor from Omnivision supports up to 2592x1944 @ 15 fps, RAW 8 and RAW 10 output formats, and MIPI CSI-2 interface. The driver adds support for 640x480 RAW 8. Signed-off-by: Ramiro Oliveira --- MAINTAINERS| 7 + drivers/media/i2c/Kconfig | 11 + drivers/media

Re: [PATCH RESEND v7 2/2] Add support for OV5647 sensor.

2017-02-06 Thread Ramiro Oliveira
Hi Sakari, Thank you for your feedback. On 2/3/2017 8:17 PM, Sakari Ailus wrote: > Hi Ramiro, > > Thanks for the update! > > Please see some comments below... some streaming and hardware control > related matters I missed earlier. > > On Fri, Feb 03, 2017 at 06:18:33P

Re: [PATCH RESEND v7 2/2] Add support for OV5647 sensor.

2017-02-08 Thread Ramiro Oliveira
Hi Sakari On 2/7/2017 5:31 PM, Sakari Ailus wrote: > Hi Ramiro, > > On Mon, Feb 06, 2017 at 11:38:28AM +0000, Ramiro Oliveira wrote: > ... >>>> + ret = ov5647_write_array(sd, ov5647_640x480, >>>> + ARRAY_SIZE(o

Re: [PATCH RESEND v7 2/2] Add support for OV5647 sensor.

2017-02-09 Thread Ramiro Oliveira
Hi Sakari On 2/9/2017 10:02 AM, Sakari Ailus wrote: > Hi Ramiro, > > On Wed, Feb 08, 2017 at 09:56:12AM +0000, Ramiro Oliveira wrote: >> Hi Sakari >> >> On 2/7/2017 5:31 PM, Sakari Ailus wrote: >>> Hi Ramiro, >>> >>> On Mon, F

Re: [PATCH v2 2/2] Support for DW CSI-2 Host IPK

2017-01-12 Thread Ramiro Oliveira
Hi Hans, Thank you for your feedback. On 1/11/2017 11:54 AM, Hans Verkuil wrote: > Hi Ramiro, > > See my review comments below: > > On 12/12/16 16:00, Ramiro Oliveira wrote: >> Add support for the DesignWare CSI-2 Host IP Prototyping Kit >> >> Signe

[PATCH v3 0/2] reset: Make optional functions really optional.

2017-01-12 Thread Ramiro Oliveira
similar to the non optional. This patch corrects that, while maintaining compatibility with existing drivers. As suggested here: https://lkml.org/lkml/2016/12/14/502 Ramiro Oliveira (2): reset: Change shared flag from int to bool reset: make optional functions really optional drivers/reset

[PATCH v3 1/2] reset: Change shared flag from int to bool

2017-01-12 Thread Ramiro Oliveira
Since the new parameter being added is going to be a bool this patch changes the shared flag from int to bool to match the new parameter. Signed-off-by: Ramiro Oliveira --- drivers/reset/core.c | 8 include/linux/reset.h | 32 2 files changed, 20

[PATCH v3 2/2] reset: make optional functions really optional

2017-01-12 Thread Ramiro Oliveira
s. Signed-off-by: Ramiro Oliveira --- drivers/reset/core.c | 59 --- include/linux/reset.h | 45 ++- 2 files changed, 73 insertions(+), 31 deletions(-) diff --git a/drivers/reset/core.c b/drivers/reset/co

[PATCH RESEND v7 2/2] Add support for OV5647 sensor.

2017-02-03 Thread Ramiro Oliveira
Modes supported: - 640x480 RAW 8 Signed-off-by: Ramiro Oliveira Acked-by: Pavel Machek --- MAINTAINERS| 7 + drivers/media/i2c/Kconfig | 12 + drivers/media/i2c/Makefile | 1 + drivers/media/i2c/ov5647.c | 718 + 4 files

[PATCH RESEND v7 0/2] Add support for Omnivision OV5647

2017-02-03 Thread Ramiro Oliveira
ues - Remove unused defines - Make sure all errors where being handled - Rename some functions to make code more readable - Add some debugging info v3: - No changes. Re-submitted due to lack of responses v2: - Corrections in DT documentation Ramiro Oliveira (2): Add OV5647 device tree

[PATCH RESEND v7 1/2] Add OV5647 device tree documentation

2017-02-03 Thread Ramiro Oliveira
Create device tree bindings documentation. Signed-off-by: Ramiro Oliveira Acked-by: Rob Herring --- .../devicetree/bindings/media/i2c/ov5647.txt | 35 ++ 1 file changed, 35 insertions(+) create mode 100644 Documentation/devicetree/bindings/media/i2c/ov5647.txt diff

[PATCH v1] MAINTAINERS: Change OV5647 Maintainer

2017-07-10 Thread Ramiro Oliveira
Signed-off-by: Ramiro Oliveira --- MAINTAINERS | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MAINTAINERS b/MAINTAINERS index 749426702fa2..29dc00b2f3a6 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -9466,7 +9466,7 @@ S:Maintained F: drivers/media/i2c/ov5640.c

Re: [PATCH 1/4] Documentation: dt: Add bindings documentation for DW MIPI CSI-2 Host

2017-05-16 Thread Ramiro Oliveira
Hi Rob, Thank you for your feedback and sorry for the late reply. On 3/15/2017 6:26 PM, Rob Herring wrote: > On Tue, Mar 07, 2017 at 02:37:48PM +0000, Ramiro Oliveira wrote: >> Create device tree bindings documentation for the Synopsys DW MIPI CSI-2 >> Host. >> >> Sig

Re: [PATCH 3/4] Documentation: dt: Add bindings documentation for CSI-2 Host Video Platform

2017-05-16 Thread Ramiro Oliveira
Hi Sakari, Thank you for your feedback and sorry for the late response. On 3/8/2017 1:18 PM, Sakari Ailus wrote: > Hi Ramiro, > > On Tue, Mar 07, 2017 at 02:37:50PM +0000, Ramiro Oliveira wrote: >> Create device tree bindings documentation for the CSI-2 Host Video >> platf

Re: [PATCH 3/4] Documentation: dt: Add bindings documentation for CSI-2 Host Video Platform

2017-05-16 Thread Ramiro Oliveira
Hi Rob, Once again sorry for the late response and thank you for your feedback. On 3/15/2017 6:35 PM, Rob Herring wrote: > On Tue, Mar 07, 2017 at 02:37:50PM +0000, Ramiro Oliveira wrote: >> Create device tree bindings documentation for the CSI-2 Host Video >> platform. >

Re: [PATCH 2/4] media: platform: dwc: Support for DW CSI-2 Host

2017-05-16 Thread Ramiro Oliveira
quicker > in the future. > > On 03/07/2017 03:37 PM, Ramiro Oliveira wrote: >> Add support for the Synopsys DesignWare CSI-2 Host >> >> Signed-off-by: Ramiro Oliveira >> --- >> MAINTAINERS | 7 + >> drivers/media/pl

Re: [PATCH V2] checkpatch: Improve the octal permissions tests

2016-09-28 Thread Ramiro Oliveira
On 9/28/2016 4:05 AM, Joe Perches wrote: > Signed-off-by: Joe Perches > --- > > V2: Move the SYMBOLIC_PERMS test. > > scripts/checkpatch.pl | 60 > +-- > 1 file changed, 44 insertions(+), 16 deletions(-) Tested-by: Ramiro Oliveira

[PATCH v2] Staging: android: fix permissions style

2016-09-28 Thread Ramiro Oliveira
Change permissions from symbolic to octal. V2: Fix all the permissions, previous patch was missing some. Signed-off-by: Ramiro Oliveira --- drivers/staging/android/lowmemorykiller.c | 8 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/drivers/staging/android

Re: [PATCH] Staging: android: fix permissions style

2016-09-28 Thread Ramiro Oliveira
On 9/28/2016 10:28 AM, Greg KH wrote: > On Mon, Sep 26, 2016 at 10:02:28PM +0100, Ramiro Oliveira wrote: >> Change permissions from symbolic to octal. >> >> Signed-off-by: Ramiro Oliveira >> --- >> drivers/staging/android/lowmemorykiller.c | 4 ++-- >&

  1   2   >