Message ID | 1366789273-30184-6-git-send-email-shaik.ameer@samsung.com (mailing list archive) |
---|---|
State | Not Applicable, archived |
Headers | show |
On 04/24/2013 09:41 AM, Shaik Ameer Basha wrote: > FIMC-IS firmware needs all the MIPI-CSIS interrupts to be enabled. > This patch enables all those MIPI interrupts and adds the Exynos5 > compatible string. > > Signed-off-by: Shaik Ameer Basha <shaik.ameer@samsung.com> > --- > drivers/media/platform/exynos4-is/mipi-csis.c | 3 ++- > 1 file changed, 2 insertions(+), 1 deletion(-) > > diff --git a/drivers/media/platform/exynos4-is/mipi-csis.c b/drivers/media/platform/exynos4-is/mipi-csis.c > index 8636bcd..51ad9b2 100644 > --- a/drivers/media/platform/exynos4-is/mipi-csis.c > +++ b/drivers/media/platform/exynos4-is/mipi-csis.c > @@ -66,7 +66,7 @@ MODULE_PARM_DESC(debug, "Debug level (0-2)"); > > /* Interrupt mask */ > #define S5PCSIS_INTMSK 0x10 > -#define S5PCSIS_INTMSK_EN_ALL 0xf000103f > +#define S5PCSIS_INTMSK_EN_ALL 0xfc00103f I'm a bit reluctant to apply this patch as is. These interrupts should not be enabled if are not required. I'll try to make some patch to allow a media device driver to enable/disable the frame start/end interrupts when needed. But it would presumably be on top of this patch. > #define S5PCSIS_INTMSK_EVEN_BEFORE (1 << 31) > #define S5PCSIS_INTMSK_EVEN_AFTER (1 << 30) > #define S5PCSIS_INTMSK_ODD_BEFORE (1 << 29) > @@ -1003,6 +1003,7 @@ static const struct dev_pm_ops s5pcsis_pm_ops = { > static const struct of_device_id s5pcsis_of_match[] = { > { .compatible = "samsung,s5pv210-csis" }, > { .compatible = "samsung,exynos4210-csis" }, > + { .compatible = "samsung,exynos5250-csis" }, > { /* sentinel */ }, > }; Regards, Sylwester -- To unsubscribe from this list: send the line "unsubscribe linux-samsung-soc" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
diff --git a/drivers/media/platform/exynos4-is/mipi-csis.c b/drivers/media/platform/exynos4-is/mipi-csis.c index 8636bcd..51ad9b2 100644 --- a/drivers/media/platform/exynos4-is/mipi-csis.c +++ b/drivers/media/platform/exynos4-is/mipi-csis.c @@ -66,7 +66,7 @@ MODULE_PARM_DESC(debug, "Debug level (0-2)"); /* Interrupt mask */ #define S5PCSIS_INTMSK 0x10 -#define S5PCSIS_INTMSK_EN_ALL 0xf000103f +#define S5PCSIS_INTMSK_EN_ALL 0xfc00103f #define S5PCSIS_INTMSK_EVEN_BEFORE (1 << 31) #define S5PCSIS_INTMSK_EVEN_AFTER (1 << 30) #define S5PCSIS_INTMSK_ODD_BEFORE (1 << 29) @@ -1003,6 +1003,7 @@ static const struct dev_pm_ops s5pcsis_pm_ops = { static const struct of_device_id s5pcsis_of_match[] = { { .compatible = "samsung,s5pv210-csis" }, { .compatible = "samsung,exynos4210-csis" }, + { .compatible = "samsung,exynos5250-csis" }, { /* sentinel */ }, }; MODULE_DEVICE_TABLE(of, s5pcsis_of_match);
FIMC-IS firmware needs all the MIPI-CSIS interrupts to be enabled. This patch enables all those MIPI interrupts and adds the Exynos5 compatible string. Signed-off-by: Shaik Ameer Basha <shaik.ameer@samsung.com> --- drivers/media/platform/exynos4-is/mipi-csis.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-)