diff options
author | Sylwester Nawrocki <s.nawrocki@samsung.com> | 2011-03-10 21:53:40 +0900 |
---|---|---|
committer | Kukjin Kim <kgene.kim@samsung.com> | 2011-03-11 15:49:01 +0900 |
commit | 1d45ac49daa15fd0a64c58744ac9ea6451e607e6 (patch) | |
tree | 8db8bb0dd987dfd3c4a166893040de29ba9482e9 /arch/arm/mach-exynos4/include/mach/regs-pmu.h | |
parent | e24d208de6bc779c6bd97523cde2665a33f2be4d (diff) | |
download | blackbird-op-linux-1d45ac49daa15fd0a64c58744ac9ea6451e607e6.tar.gz blackbird-op-linux-1d45ac49daa15fd0a64c58744ac9ea6451e607e6.zip |
ARM: S5P: Add support for common MIPI CSIS/DSIM D-PHY control
Add common code for MIPI-CSIS and MIPI-DSIM drivers to support
their corresponding D-PHY's enable and reset control.
Signed-off-by: Sylwester Nawrocki <s.nawrocki@samsung.com>
Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
Diffstat (limited to 'arch/arm/mach-exynos4/include/mach/regs-pmu.h')
-rw-r--r-- | arch/arm/mach-exynos4/include/mach/regs-pmu.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/arch/arm/mach-exynos4/include/mach/regs-pmu.h b/arch/arm/mach-exynos4/include/mach/regs-pmu.h index 2ddd6175dfa0..985416d1085f 100644 --- a/arch/arm/mach-exynos4/include/mach/regs-pmu.h +++ b/arch/arm/mach-exynos4/include/mach/regs-pmu.h @@ -17,6 +17,11 @@ #define S5P_PMUREG(x) (S5P_VA_PMU + (x)) +#define S5P_MIPI_DPHY_CONTROL(n) S5P_PMUREG(0x0710 + (n) * 4) +#define S5P_MIPI_DPHY_ENABLE (1 << 0) +#define S5P_MIPI_DPHY_SRESETN (1 << 1) +#define S5P_MIPI_DPHY_MRESETN (1 << 2) + #define S5P_PMU_CAM_CONF S5P_PMUREG(0x3C00) #define S5P_PMU_TV_CONF S5P_PMUREG(0x3C20) #define S5P_PMU_MFC_CONF S5P_PMUREG(0x3C40) |