Merge tag 'for-4.15/dm-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/device...
[sfrench/cifs-2.6.git] / drivers / staging / media / atomisp / pci / atomisp2 / css2400 / css_2401_csi2p_system / host / isys_stream2mmio_private.h
1 /*
2  * Support for Intel Camera Imaging ISP subsystem.
3  * Copyright (c) 2015, Intel Corporation.
4  *
5  * This program is free software; you can redistribute it and/or modify it
6  * under the terms and conditions of the GNU General Public License,
7  * version 2, as published by the Free Software Foundation.
8  *
9  * This program is distributed in the hope it will be useful, but WITHOUT
10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
12  * more details.
13  */
14
15 #ifndef __ISYS_STREAM2MMIO_PRIVATE_H_INCLUDED__
16 #define __ISYS_STREAM2MMIO_PRIVATE_H_INCLUDED__
17
18 #include "isys_stream2mmio_public.h"
19 #include "device_access.h"      /* ia_css_device_load_uint32 */
20 #include "assert_support.h"     /* assert */
21 #include "print_support.h"      /* print */
22
23 #define STREAM2MMIO_COMMAND_REG_ID             0
24 #define STREAM2MMIO_ACKNOWLEDGE_REG_ID         1
25 #define STREAM2MMIO_PIX_WIDTH_ID_REG_ID        2
26 #define STREAM2MMIO_START_ADDR_REG_ID          3      /* master port address,NOT Byte */
27 #define STREAM2MMIO_END_ADDR_REG_ID            4      /* master port address,NOT Byte */
28 #define STREAM2MMIO_STRIDE_REG_ID              5      /* stride in master port words, increment is per packet for long sids, stride is not used for short sid's*/
29 #define STREAM2MMIO_NUM_ITEMS_REG_ID           6      /* number of packets for store packets cmd, number of words for store_words cmd */
30 #define STREAM2MMIO_BLOCK_WHEN_NO_CMD_REG_ID   7      /* if this register is 1, input will be stalled if there is no pending command for this sid */
31 #define STREAM2MMIO_REGS_PER_SID               8
32
33 /*****************************************************
34  *
35  * Native command interface (NCI).
36  *
37  *****************************************************/
38 /**
39  * @brief Get the stream2mmio-controller state.
40  * Refer to "stream2mmio_public.h" for details.
41  */
42 STORAGE_CLASS_STREAM2MMIO_C void stream2mmio_get_state(
43                 const stream2mmio_ID_t ID,
44                 stream2mmio_state_t *state)
45 {
46         stream2mmio_sid_ID_t i;
47
48         /*
49          * Get the values of the register-set per
50          * stream2mmio-controller sids.
51          */
52         for (i = STREAM2MMIO_SID0_ID; i < N_STREAM2MMIO_SID_PROCS[ID]; i++) {
53                 stream2mmio_get_sid_state(ID, i, &(state->sid_state[i]));
54         }
55 }
56
57 /**
58  * @brief Get the state of the stream2mmio-controller sidess.
59  * Refer to "stream2mmio_public.h" for details.
60  */
61 STORAGE_CLASS_STREAM2MMIO_C void stream2mmio_get_sid_state(
62                 const stream2mmio_ID_t ID,
63                 const stream2mmio_sid_ID_t sid_id,
64                 stream2mmio_sid_state_t *state)
65 {
66
67         state->rcv_ack =
68                 stream2mmio_reg_load(ID, sid_id, STREAM2MMIO_ACKNOWLEDGE_REG_ID);
69
70         state->pix_width_id =
71                 stream2mmio_reg_load(ID, sid_id, STREAM2MMIO_PIX_WIDTH_ID_REG_ID);
72
73         state->start_addr =
74                 stream2mmio_reg_load(ID, sid_id, STREAM2MMIO_START_ADDR_REG_ID);
75
76         state->end_addr =
77                 stream2mmio_reg_load(ID, sid_id, STREAM2MMIO_END_ADDR_REG_ID);
78
79         state->strides =
80                 stream2mmio_reg_load(ID, sid_id, STREAM2MMIO_STRIDE_REG_ID);
81
82         state->num_items =
83                 stream2mmio_reg_load(ID, sid_id, STREAM2MMIO_NUM_ITEMS_REG_ID);
84
85         state->block_when_no_cmd =
86                 stream2mmio_reg_load(ID, sid_id, STREAM2MMIO_BLOCK_WHEN_NO_CMD_REG_ID);
87
88 }
89
90 /**
91  * @brief Dump the state of the stream2mmio-controller sidess.
92  * Refer to "stream2mmio_public.h" for details.
93  */
94 STORAGE_CLASS_STREAM2MMIO_C void stream2mmio_print_sid_state(
95                 stream2mmio_sid_state_t *state)
96 {
97         ia_css_print("\t \t Receive acks 0x%x\n", state->rcv_ack);
98         ia_css_print("\t \t Pixel width 0x%x\n", state->pix_width_id);
99         ia_css_print("\t \t Startaddr 0x%x\n", state->start_addr);
100         ia_css_print("\t \t Endaddr 0x%x\n", state->end_addr);
101         ia_css_print("\t \t Strides 0x%x\n", state->strides);
102         ia_css_print("\t \t Num Items 0x%x\n", state->num_items);
103         ia_css_print("\t \t block when no cmd 0x%x\n", state->block_when_no_cmd);
104
105 }
106 /**
107  * @brief Dump the ibuf-controller state.
108  * Refer to "stream2mmio_public.h" for details.
109  */
110 STORAGE_CLASS_STREAM2MMIO_C void stream2mmio_dump_state(
111                 const stream2mmio_ID_t ID,
112                 stream2mmio_state_t *state)
113 {
114         stream2mmio_sid_ID_t i;
115
116         /*
117          * Get the values of the register-set per
118          * stream2mmio-controller sids.
119          */
120         for (i = STREAM2MMIO_SID0_ID; i < N_STREAM2MMIO_SID_PROCS[ID]; i++) {
121                 ia_css_print("StREAM2MMIO ID %d SID %d\n", ID, i);
122                 stream2mmio_print_sid_state(&(state->sid_state[i]));
123         }
124 }
125 /* end of NCI */
126
127 /*****************************************************
128  *
129  * Device level interface (DLI).
130  *
131  *****************************************************/
132 /**
133  * @brief Load the register value.
134  * Refer to "stream2mmio_public.h" for details.
135  */
136 STORAGE_CLASS_STREAM2MMIO_C hrt_data stream2mmio_reg_load(
137                 const stream2mmio_ID_t ID,
138                 const stream2mmio_sid_ID_t sid_id,
139                 const uint32_t reg_idx)
140 {
141         uint32_t reg_bank_offset;
142
143         assert(ID < N_STREAM2MMIO_ID);
144
145         reg_bank_offset = STREAM2MMIO_REGS_PER_SID * sid_id;
146         return ia_css_device_load_uint32(STREAM2MMIO_CTRL_BASE[ID] +
147                         (reg_bank_offset + reg_idx) * sizeof(hrt_data));
148 }
149
150
151 /**
152  * @brief Store a value to the register.
153  * Refer to "stream2mmio_public.h" for details.
154  */
155 STORAGE_CLASS_STREAM2MMIO_C void stream2mmio_reg_store(
156                 const stream2mmio_ID_t ID,
157                 const hrt_address reg,
158                 const hrt_data value)
159 {
160         assert(ID < N_STREAM2MMIO_ID);
161         assert(STREAM2MMIO_CTRL_BASE[ID] != (hrt_address)-1);
162
163         ia_css_device_store_uint32(STREAM2MMIO_CTRL_BASE[ID] +
164                 reg * sizeof(hrt_data), value);
165 }
166 /* end of DLI */
167
168 #endif /* __ISYS_STREAM2MMIO_PRIVATE_H_INCLUDED__ */