diff options
author | Jacopo Mondi <jacopo@jmondi.org> | 2019-10-03 17:20:37 +0200 |
---|---|---|
committer | Jacopo Mondi <jacopo@jmondi.org> | 2019-10-08 15:37:15 +0200 |
commit | c86dc5e00e825b9ff0e8c656661516172cc30ec4 (patch) | |
tree | 6aa78d2438bf409583fe3cf40beca0b9e3eb76c7 /include | |
parent | ecbe309b06b68ebf217c7aeead77ad8a7a056e89 (diff) |
ipa: vimc: Add support for tracing operations
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>
Diffstat (limited to 'include')
-rw-r--r-- | include/ipa/ipa_vimc.h | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/include/ipa/ipa_vimc.h b/include/ipa/ipa_vimc.h new file mode 100644 index 00000000..05b561d8 --- /dev/null +++ b/include/ipa/ipa_vimc.h @@ -0,0 +1,22 @@ +/* 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__ */ |