summaryrefslogtreecommitdiff
path: root/sm8150/kernel-headers/media/cam_lrme.h
blob: 97d957835ee3b72cb1522a15f1ebbfcfa1ee5615 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
#ifndef __UAPI_CAM_LRME_H__
#define __UAPI_CAM_LRME_H__

#include "cam_defs.h"

/* LRME Resource Types */

enum CAM_LRME_IO_TYPE {
	CAM_LRME_IO_TYPE_TAR,
	CAM_LRME_IO_TYPE_REF,
	CAM_LRME_IO_TYPE_RES,
	CAM_LRME_IO_TYPE_DS2,
};

#define CAM_LRME_INPUT_PORT_TYPE_TAR (1 << 0)
#define CAM_LRME_INPUT_PORT_TYPE_REF (1 << 1)

#define CAM_LRME_OUTPUT_PORT_TYPE_DS2 (1 << 0)
#define CAM_LRME_OUTPUT_PORT_TYPE_RES (1 << 1)

#define CAM_LRME_DEV_MAX 1


struct cam_lrme_hw_version {
	uint32_t gen;
	uint32_t rev;
	uint32_t step;
};

struct cam_lrme_dev_cap {
	struct cam_lrme_hw_version clc_hw_version;
	struct cam_lrme_hw_version bus_rd_hw_version;
	struct cam_lrme_hw_version bus_wr_hw_version;
	struct cam_lrme_hw_version top_hw_version;
	struct cam_lrme_hw_version top_titan_version;
};

/**
 * struct cam_lrme_query_cap_cmd - LRME query device capability payload
 *
 * @dev_iommu_handle: LRME iommu handles for secure/non secure
 *      modes
 * @cdm_iommu_handle: Iommu handles for secure/non secure modes
 * @num_devices: number of hardware devices
 * @dev_caps: Returned device capability array
 */
struct cam_lrme_query_cap_cmd {
	struct cam_iommu_handle device_iommu;
	struct cam_iommu_handle cdm_iommu;
	uint32_t num_devices;
	struct cam_lrme_dev_cap dev_caps[CAM_LRME_DEV_MAX];
};

struct cam_lrme_soc_info {
	uint64_t clock_rate;
	uint64_t bandwidth;
	uint64_t reserved[4];
};

struct cam_lrme_acquire_args {
	struct cam_lrme_soc_info lrme_soc_info;
};

#endif /* __UAPI_CAM_LRME_H__ */