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 __MMU_DEVICE_H_INCLUDED__
8 #define __MMU_DEVICE_H_INCLUDED__
9 
10 /* The file mmu.h already exists */
11 
12 /*
13  * This file is included on every cell {SP,ISP,host} and on every system
14  * that uses the MMU device. It defines the API to DLI bridge
15  *
16  * System and cell specific interfaces and inline code are included
17  * conditionally through Makefile path settings.
18  *
19  *  - .        system and cell agnostic interfaces, constants and identifiers
20  *	- public:  system agnostic, cell specific interfaces
21  *	- private: system dependent, cell specific interfaces & inline implementations
22  *	- global:  system specific constants and identifiers
23  *	- local:   system and cell specific constants and identifiers
24  */
25 
26 #include "system_local.h"
27 #include "mmu_local.h"
28 
29 #include "mmu_public.h"
30 
31 #endif /* __MMU_DEVICE_H_INCLUDED__ */
32