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