You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
67 lines
1.7 KiB
67 lines
1.7 KiB
#include <assert.h>
|
|
#include <poll.h>
|
|
#include <stdio.h>
|
|
#include <sys/socket.h>
|
|
#include <unistd.h>
|
|
|
|
#include <thread>
|
|
|
|
#include "libyuv.h"
|
|
|
|
#include "cereal/visionipc/visionipc_server.h"
|
|
#include "selfdrive/common/clutil.h"
|
|
#include "selfdrive/common/params.h"
|
|
#include "selfdrive/common/swaglog.h"
|
|
#include "selfdrive/common/util.h"
|
|
#include "selfdrive/hardware/hw.h"
|
|
|
|
#if defined(QCOM) && !defined(QCOM_REPLAY)
|
|
#include "selfdrive/camerad/cameras/camera_qcom.h"
|
|
#elif QCOM2
|
|
#include "selfdrive/camerad/cameras/camera_qcom2.h"
|
|
#elif WEBCAM
|
|
#include "selfdrive/camerad/cameras/camera_webcam.h"
|
|
#else
|
|
#include "selfdrive/camerad/cameras/camera_frame_stream.h"
|
|
#endif
|
|
|
|
ExitHandler do_exit;
|
|
|
|
void party(cl_device_id device_id, cl_context context) {
|
|
MultiCameraState cameras = {};
|
|
VisionIpcServer vipc_server("camerad", device_id, context);
|
|
|
|
cameras_init(&vipc_server, &cameras, device_id, context);
|
|
cameras_open(&cameras);
|
|
|
|
vipc_server.start_listener();
|
|
|
|
cameras_run(&cameras);
|
|
}
|
|
|
|
#ifdef QCOM
|
|
#include "CL/cl_ext_qcom.h"
|
|
#endif
|
|
|
|
int main(int argc, char *argv[]) {
|
|
set_realtime_priority(53);
|
|
if (Hardware::EON()) {
|
|
set_core_affinity(2);
|
|
} else if (Hardware::TICI()) {
|
|
set_core_affinity(6);
|
|
}
|
|
|
|
cl_device_id device_id = cl_get_device_id(CL_DEVICE_TYPE_DEFAULT);
|
|
|
|
// TODO: do this for QCOM2 too
|
|
#if defined(QCOM)
|
|
const cl_context_properties props[] = {CL_CONTEXT_PRIORITY_HINT_QCOM, CL_PRIORITY_HINT_HIGH_QCOM, 0};
|
|
cl_context context = CL_CHECK_ERR(clCreateContext(props, 1, &device_id, NULL, NULL, &err));
|
|
#else
|
|
cl_context context = CL_CHECK_ERR(clCreateContext(NULL, 1, &device_id, NULL, NULL, &err));
|
|
#endif
|
|
|
|
party(device_id, context);
|
|
|
|
CL_CHECK(clReleaseContext(context));
|
|
}
|
|
|