1 /* SPDX-License-Identifier: GPL-2.0 */
2 /*
3  * Support for Intel Camera Imaging ISP subsystem.
4  * Copyright (c) 2015, Intel Corporation.
5  *
6  * This program is free software; you can redistribute it and/or modify it
7  * under the terms and conditions of the GNU General Public License,
8  * version 2, as published by the Free Software Foundation.
9  *
10  * This program is distributed in the hope it will be useful, but WITHOUT
11  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
12  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
13  * more details.
14  */
15 
16 #ifndef __ISYS_DMA_PRIVATE_H_INCLUDED__
17 #define __ISYS_DMA_PRIVATE_H_INCLUDED__
18 
19 #include "isys_dma_public.h"
20 #include "device_access.h"
21 #include "assert_support.h"
22 #include "dma.h"
23 #include "dma_v2_defs.h"
24 #include "print_support.h"
25 
26 STORAGE_CLASS_ISYS2401_DMA_C void isys2401_dma_reg_store(
27     const isys2401_dma_ID_t	dma_id,
28     const unsigned int	reg,
29     const hrt_data		value)
30 {
31 	unsigned int reg_loc;
32 
33 	assert(dma_id < N_ISYS2401_DMA_ID);
34 	assert(ISYS2401_DMA_BASE[dma_id] != (hrt_address) - 1);
35 
36 	reg_loc = ISYS2401_DMA_BASE[dma_id] + (reg * sizeof(hrt_data));
37 
38 	ia_css_print("isys dma store at addr(0x%x) val(%u)\n", reg_loc,
39 		     (unsigned int)value);
40 	ia_css_device_store_uint32(reg_loc, value);
41 }
42 
43 STORAGE_CLASS_ISYS2401_DMA_C hrt_data isys2401_dma_reg_load(
44     const isys2401_dma_ID_t	dma_id,
45     const unsigned int	reg)
46 {
47 	unsigned int reg_loc;
48 	hrt_data value;
49 
50 	assert(dma_id < N_ISYS2401_DMA_ID);
51 	assert(ISYS2401_DMA_BASE[dma_id] != (hrt_address) - 1);
52 
53 	reg_loc = ISYS2401_DMA_BASE[dma_id] + (reg * sizeof(hrt_data));
54 
55 	value = ia_css_device_load_uint32(reg_loc);
56 	ia_css_print("isys dma load from addr(0x%x) val(%u)\n", reg_loc,
57 		     (unsigned int)value);
58 
59 	return value;
60 }
61 
62 #endif /* __ISYS_DMA_PRIVATE_H_INCLUDED__ */
63