File tree Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -154,6 +154,10 @@ static void v4l2_fwnode_endpoint_parse_parallel_bus(
154
154
flags |= v ? V4L2_MBUS_VIDEO_SOG_ACTIVE_HIGH :
155
155
V4L2_MBUS_VIDEO_SOG_ACTIVE_LOW ;
156
156
157
+ if (!fwnode_property_read_u32 (fwnode , "data-enable-active" , & v ))
158
+ flags |= v ? V4L2_MBUS_DATA_ENABLE_HIGH :
159
+ V4L2_MBUS_DATA_ENABLE_LOW ;
160
+
157
161
bus -> flags = flags ;
158
162
159
163
}
Original file line number Diff line number Diff line change 45
45
/* Active state of Sync-on-green (SoG) signal, 0/1 for LOW/HIGH respectively. */
46
46
#define V4L2_MBUS_VIDEO_SOG_ACTIVE_HIGH BIT(12)
47
47
#define V4L2_MBUS_VIDEO_SOG_ACTIVE_LOW BIT(13)
48
+ #define V4L2_MBUS_DATA_ENABLE_HIGH BIT(14)
49
+ #define V4L2_MBUS_DATA_ENABLE_LOW BIT(15)
48
50
49
51
/* Serial flags */
50
52
/* How many lanes the client can use */
You can’t perform that action at this time.
0 commit comments