mirror of
https://github.com/dragonpilot/dragonpilot.git
synced 2026-03-01 16:43:52 +08:00
* capnparm * building in progress * scons build works * that script fixes opencl * start new camera code * includes and more camera scripts * control c works now * no device control yet * phy too * just one camera for now * fix capnparm * hmm, the inits are needed * more cameras * link stop start * doesn't work yet * fix ion on qcom2 * start poll ish * 4 pictures and done * no jpeg * it works to picture * destroy sync obj * both work for now * defined QCOM2 * fix fd leak * run modeld * 10 bit mode * real frame stride * needs digital gain * dnew * no color correcting on new * that snpe doesn't work * qcom2 gate * cleanups * oops, fix aarch64 detector * update cereal * modeld works with SNPE * fix driver monitoring model Co-authored-by: Tici <robbe@comma.ai>
66 lines
1.5 KiB
C
66 lines
1.5 KiB
C
#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__ */
|
|
|