1 /* SPDX-License-Identifier: GPL-2.0 */
2 /*
3  * Support for Intel Camera Imaging ISP subsystem.
4  * Copyright (c) 2015, Intel Corporation.
5  */
6 
7 #ifndef __VMEM_GLOBAL_H_INCLUDED__
8 #define __VMEM_GLOBAL_H_INCLUDED__
9 
10 #include "isp.h"
11 
12 #define VMEM_SIZE	ISP_VMEM_DEPTH
13 #define VMEM_ELEMBITS	ISP_VMEM_ELEMBITS
14 #define VMEM_ALIGN	ISP_VMEM_ALIGN
15 
16 #ifndef PIPE_GENERATION
17 typedef tvector *pvector;
18 #endif
19 
20 #endif /* __VMEM_GLOBAL_H_INCLUDED__ */
21