|
@@ -139,6 +139,10 @@ struct isp_reg {
|
|
|
* 3 - CAMEXT[13:6] -> CAM[7:0]
|
|
|
* @clk_pol: Pixel clock polarity
|
|
|
* 0 - Non Inverted, 1 - Inverted
|
|
|
+ * @hs_pol: Horizontal synchronization polarity
|
|
|
+ * 0 - Active high, 1 - Active low
|
|
|
+ * @vs_pol: Vertical synchronization polarity
|
|
|
+ * 0 - Active high, 1 - Active low
|
|
|
* @bridge: CCDC Bridge input control
|
|
|
* ISPCTRL_PAR_BRIDGE_DISABLE - Disable
|
|
|
* ISPCTRL_PAR_BRIDGE_LENDIAN - Little endian
|
|
@@ -147,6 +151,8 @@ struct isp_reg {
|
|
|
struct isp_parallel_platform_data {
|
|
|
unsigned int data_lane_shift:2;
|
|
|
unsigned int clk_pol:1;
|
|
|
+ unsigned int hs_pol:1;
|
|
|
+ unsigned int vs_pol:1;
|
|
|
unsigned int bridge:4;
|
|
|
};
|
|
|
|