Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 59ba70d9 authored by Rishabh Jain's avatar Rishabh Jain Committed by Gerrit - the friendly Code Review server
Browse files

msm: camera: ope: Add support for stripe level height configuration



For some usecase, height changes of stripe level. So, added the
support to configure height at stripe level.

CRs-Fixed: 2520602
Change-Id: I59a77b7ef7a82efac4c32fec9978469ef40ef0ae
Signed-off-by: default avatarRishabh Jain <risjai@codeaurora.org>
parent a0ab77b8
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1510,7 +1510,7 @@ static int cam_ope_mgr_process_cmd_io_buf_req(struct cam_ope_hw_mgr *hw_mgr,
					stripe_info->width =
						in_stripe_info->width;
					stripe_info->height =
						in_io_buf->height[k];
						in_stripe_info->height;
					stripe_info->stride =
						in_io_buf->plane_stride[k];
					stripe_info->x_init =
+2 −0
Original line number Diff line number Diff line
@@ -83,6 +83,7 @@
 * @x_init:          X_init
 * @stripe_location: Stripe location (OPE_STRIPE_XXX)
 * @width:           Width of a stripe
 * @height:          Height of a stripe
 * @disable_bus:     Flag to disable BUS master
 * @reserved:        Reserved
 *
@@ -92,6 +93,7 @@ struct ope_stripe_info {
	uint32_t x_init;
	uint32_t stripe_location;
	uint32_t width;
	uint32_t height;
	uint32_t disable_bus;
	uint32_t reserved;
};