Enable support for P010 buffers

Enable basic 10-bit YUV P010 buffer support for use
with camera and image readers.

Bug: 147711411
Test: Camera CTS
Change-Id: I3d2859c8d22e16d0a701bc1de94a61c5b39dbe92
Merged-In: I3d2859c8d22e16d0a701bc1de94a61c5b39dbe92
diff --git a/helpers.c b/helpers.c
index 326dddf..259dc60 100644
--- a/helpers.c
+++ b/helpers.c
@@ -339,6 +339,7 @@
 	case DRM_FORMAT_YVU420:
 	case DRM_FORMAT_NV12:
 	case DRM_FORMAT_NV21:
+	case DRM_FORMAT_P010:
 		/* Adjust the height to include room for chroma planes */
 		aligned_height = 3 * DIV_ROUND_UP(height, 2);
 		break;