Re: [PATCH 2/3] nvmem: imx-ocotp: Add i.MX6 OCOTP driver

2015-08-07 Thread Philipp Zabel
Am Donnerstag, den 06.08.2015, 20:36 +0100 schrieb Srinivas Kandagatla: Hi Philipp, Could you add Greg KH in the CC, for next merge window, we can request Greg to take this driver via his tree. Once the comments are fixed you can add my Acked-by: Srinivas Kandagatla

Re: [PATCH 2/3] nvmem: imx-ocotp: Add i.MX6 OCOTP driver

2015-08-07 Thread Srinivas Kandagatla
On 07/08/15 08:46, Philipp Zabel wrote: Nobody. I had initially copied the code that actually senses the fuses, but since this happens during power-on reset anyway (all values are stored in shadow registers), I didn't see the point and dropped it for now. The shadow registers are clocked

Re: [PATCH 2/3] nvmem: imx-ocotp: Add i.MX6 OCOTP driver

2015-08-06 Thread Srinivas Kandagatla
Hi Philipp, Could you add Greg KH in the CC, for next merge window, we can request Greg to take this driver via his tree. Once the comments are fixed you can add my Acked-by: Srinivas Kandagatla srinivas.kandaga...@linaro.org On 06/08/15 17:28, Philipp Zabel wrote: Hi Srinivas, Am

Re: [PATCH 2/3] nvmem: imx-ocotp: Add i.MX6 OCOTP driver

2015-08-06 Thread Srinivas Kandagatla
Few Nits.. On 04/08/15 14:02, Philipp Zabel wrote: This driver handles the i.MX On-Chip OTP Controller found in i.MX6Q/D, i.MX6S/DL, i.MX6SL, and i.MX6SX SoCs. Currently it just returns the values stored in the shadow registers. Signed-off-by: Philipp Zabel p.za...@pengutronix.de --- This

Re: [PATCH 2/3] nvmem: imx-ocotp: Add i.MX6 OCOTP driver

2015-08-06 Thread Philipp Zabel
Hi Srinivas, Am Donnerstag, den 06.08.2015, 17:20 +0100 schrieb Srinivas Kandagatla: Few Nits.. On 04/08/15 14:02, Philipp Zabel wrote: +#include linux/clk.h May be you can drop this? Yes, that's a left-over and can be removed. BTW, who is taking care of the gated peripheral clock

[PATCH 2/3] nvmem: imx-ocotp: Add i.MX6 OCOTP driver

2015-08-04 Thread Philipp Zabel
This driver handles the i.MX On-Chip OTP Controller found in i.MX6Q/D, i.MX6S/DL, i.MX6SL, and i.MX6SX SoCs. Currently it just returns the values stored in the shadow registers. Signed-off-by: Philipp Zabel p.za...@pengutronix.de --- This patch is based on the v9 Add simple NVMEM Framework via