aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--drivers/gpu/ipu-v3/ipu-common.c24
-rw-r--r--include/video/imx-ipu-v3.h8
2 files changed, 32 insertions, 0 deletions
diff --git a/drivers/gpu/ipu-v3/ipu-common.c b/drivers/gpu/ipu-v3/ipu-common.c
index 9459f4091a27..1442b9e1cf8d 100644
--- a/drivers/gpu/ipu-v3/ipu-common.c
+++ b/drivers/gpu/ipu-v3/ipu-common.c
@@ -661,6 +661,30 @@ int ipu_module_disable(struct ipu_soc *ipu, u32 mask)
661} 661}
662EXPORT_SYMBOL_GPL(ipu_module_disable); 662EXPORT_SYMBOL_GPL(ipu_module_disable);
663 663
664int ipu_csi_enable(struct ipu_soc *ipu, int csi)
665{
666 return ipu_module_enable(ipu, csi ? IPU_CONF_CSI1_EN : IPU_CONF_CSI0_EN);
667}
668EXPORT_SYMBOL_GPL(ipu_csi_enable);
669
670int ipu_csi_disable(struct ipu_soc *ipu, int csi)
671{
672 return ipu_module_disable(ipu, csi ? IPU_CONF_CSI1_EN : IPU_CONF_CSI0_EN);
673}
674EXPORT_SYMBOL_GPL(ipu_csi_disable);
675
676int ipu_smfc_enable(struct ipu_soc *ipu)
677{
678 return ipu_module_enable(ipu, IPU_CONF_SMFC_EN);
679}
680EXPORT_SYMBOL_GPL(ipu_smfc_enable);
681
682int ipu_smfc_disable(struct ipu_soc *ipu)
683{
684 return ipu_module_disable(ipu, IPU_CONF_SMFC_EN);
685}
686EXPORT_SYMBOL_GPL(ipu_smfc_disable);
687
664int ipu_idmac_get_current_buffer(struct ipuv3_channel *channel) 688int ipu_idmac_get_current_buffer(struct ipuv3_channel *channel)
665{ 689{
666 struct ipu_soc *ipu = channel->ipu; 690 struct ipu_soc *ipu = channel->ipu;
diff --git a/include/video/imx-ipu-v3.h b/include/video/imx-ipu-v3.h
index f3714301d740..fe6053e6ae6d 100644
--- a/include/video/imx-ipu-v3.h
+++ b/include/video/imx-ipu-v3.h
@@ -162,8 +162,16 @@ int ipu_dp_set_global_alpha(struct ipu_dp *dp, bool enable, u8 alpha,
162 bool bg_chan); 162 bool bg_chan);
163 163
164/* 164/*
165 * IPU CMOS Sensor Interface (csi) functions
166 */
167int ipu_csi_enable(struct ipu_soc *ipu, int csi);
168int ipu_csi_disable(struct ipu_soc *ipu, int csi);
169
170/*
165 * IPU Sensor Multiple FIFO Controller (SMFC) functions 171 * IPU Sensor Multiple FIFO Controller (SMFC) functions
166 */ 172 */
173int ipu_smfc_enable(struct ipu_soc *ipu);
174int ipu_smfc_disable(struct ipu_soc *ipu);
167int ipu_smfc_map_channel(struct ipu_soc *ipu, int channel, int csi_id, int mipi_id); 175int ipu_smfc_map_channel(struct ipu_soc *ipu, int channel, int csi_id, int mipi_id);
168int ipu_smfc_set_burstsize(struct ipu_soc *ipu, int channel, int burstsize); 176int ipu_smfc_set_burstsize(struct ipu_soc *ipu, int channel, int burstsize);
169 177