mirror of
https://git.libcamera.org/libcamera/libcamera.git
synced 2025-07-23 16:45:07 +03:00
Add support to the dummy VIMC IPA for tracing operation by using a FIFO channel that will be used by the IPA Interface test to verify communications with the IPA. At the moment only add support for the init() operation as it's the only defined one. Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Signed-off-by: Jacopo Mondi <jacopo@jmondi.org>
22 lines
433 B
C++
22 lines
433 B
C++
/* SPDX-License-Identifier: LGPL-2.1-or-later */
|
|
/*
|
|
* Copyright (C) 2019, Google Inc.
|
|
*
|
|
* ipa_vimc.h - Vimc Image Processing Algorithm module
|
|
*/
|
|
|
|
#ifndef __LIBCAMERA_IPA_VIMC_H__
|
|
#define __LIBCAMERA_IPA_VIMC_H__
|
|
|
|
namespace libcamera {
|
|
|
|
#define VIMC_IPA_FIFO_PATH "/tmp/libcamera_ipa_vimc_fifo"
|
|
|
|
enum IPAOperationCode {
|
|
IPAOperationNone,
|
|
IPAOperationInit,
|
|
};
|
|
|
|
}; /* namespace libcamera */
|
|
|
|
#endif /* __LIBCAMERA_IPA_VIMC_H__ */
|