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 __ISYS_DMA_PUBLIC_H_INCLUDED__
8 #define __ISYS_DMA_PUBLIC_H_INCLUDED__
9 
10 
11 #include "system_local.h"
12 #include "type_support.h"
13 
14 extern void isys2401_dma_reg_store(
15     const isys2401_dma_ID_t dma_id,
16     const unsigned int	reg,
17     const hrt_data		value);
18 
19 extern hrt_data isys2401_dma_reg_load(
20     const isys2401_dma_ID_t dma_id,
21     const unsigned int	reg);
22 
23 void isys2401_dma_set_max_burst_size(
24     const isys2401_dma_ID_t dma_id,
25     uint32_t		max_burst_size);
26 
27 
28 #endif /* __ISYS_DMA_PUBLIC_H_INCLUDED__ */
29