blob: 300bd8712b95365397577dde06d41277f28bc16a [file] [log] [blame]
Pavan Kumar Chilamkurthi038f79f2017-05-04 16:12:23 -07001#ifndef __UAPI_CAM_CPAS_H__
2#define __UAPI_CAM_CPAS_H__
3
4#include "cam_defs.h"
5
6#define CAM_FAMILY_CAMERA_SS 1
7#define CAM_FAMILY_CPAS_SS 2
8
9/**
10 * struct cam_cpas_query_cap - CPAS query device capability payload
11 *
12 * @camera_family : Camera family type
13 * @reserved : Reserved field for alignment
14 * @camera_version : Camera version
15 *
16 */
17struct cam_cpas_query_cap {
18 uint32_t camera_family;
19 uint32_t reserved;
20 struct cam_hw_version camera_version;
21};
22
23#endif /* __UAPI_CAM_CPAS_H__ */