2 * Functions for incremental construction of fcx enabled I/O control blocks.
4 * Copyright IBM Corp. 2008
5 * Author(s): Peter Oberparleiter <peter.oberparleiter@de.ibm.com>
8 #include <linux/kernel.h>
9 #include <linux/types.h>
10 #include <linux/string.h>
11 #include <linux/errno.h>
12 #include <linux/err.h>
13 #include <linux/module.h>
18 * struct itcw - incremental tcw helper data type
20 * This structure serves as a handle for the incremental construction of a
21 * tcw and associated tccb, tsb, data tidaw-list plus an optional interrogate
22 * tcw and associated data. The data structures are contained inside a single
23 * contiguous buffer provided by the user.
25 * The itcw construction functions take care of overall data integrity:
26 * - reset unused fields to zero
27 * - fill in required pointers
28 * - ensure required alignment for data structures
29 * - prevent data structures to cross 4k-byte boundary where required
30 * - calculate tccb-related length fields
31 * - optionally provide ready-made interrogate tcw and associated structures
33 * Restrictions apply to the itcws created with these construction functions:
34 * - tida only supported for data address, not for tccb
35 * - only contiguous tidaw-lists (no ttic)
36 * - total number of bytes required per itcw may not exceed 4k bytes
37 * - either read or write operation (may not work with r=0 and w=0)
44 * size = itcw_calc_size(1, 2, 0);
45 * buffer = kmalloc(size, GFP_KERNEL | GFP_DMA);
48 * itcw = itcw_init(buffer, size, ITCW_OP_READ, 1, 2, 0);
50 * return PTR_ER(itcw);
51 * itcw_add_dcw(itcw, 0x2, 0, NULL, 0, 72);
52 * itcw_add_tidaw(itcw, 0, 0x30000, 20);
53 * itcw_add_tidaw(itcw, 0, 0x40000, 52);
54 * itcw_finalize(itcw);
59 struct tcw
*intrg_tcw
;
67 * itcw_get_tcw - return pointer to tcw associated with the itcw
68 * @itcw: address of the itcw
70 * Return pointer to the tcw associated with the itcw.
72 struct tcw
*itcw_get_tcw(struct itcw
*itcw
)
76 EXPORT_SYMBOL(itcw_get_tcw
);
79 * itcw_calc_size - return the size of an itcw with the given parameters
80 * @intrg: if non-zero, add an interrogate tcw
81 * @max_tidaws: maximum number of tidaws to be used for data addressing or zero
82 * if no tida is to be used.
83 * @intrg_max_tidaws: maximum number of tidaws to be used for data addressing
84 * by the interrogate tcw, if specified
86 * Calculate and return the number of bytes required to hold an itcw with the
87 * given parameters and assuming tccbs with maximum size.
89 * Note that the resulting size also contains bytes needed for alignment
90 * padding as well as padding to ensure that data structures don't cross a
91 * 4k-boundary where required.
93 size_t itcw_calc_size(int intrg
, int max_tidaws
, int intrg_max_tidaws
)
99 len
= sizeof(struct itcw
);
100 len
+= /* TCW */ sizeof(struct tcw
) + /* TCCB */ TCCB_MAX_SIZE
+
101 /* TSB */ sizeof(struct tsb
) +
102 /* TIDAL */ max_tidaws
* sizeof(struct tidaw
);
103 /* Interrogate data. */
105 len
+= /* TCW */ sizeof(struct tcw
) + /* TCCB */ TCCB_MAX_SIZE
+
106 /* TSB */ sizeof(struct tsb
) +
107 /* TIDAL */ intrg_max_tidaws
* sizeof(struct tidaw
);
110 /* Maximum required alignment padding. */
111 len
+= /* Initial TCW */ 63 + /* Interrogate TCCB */ 7;
113 /* TIDAW lists may not cross a 4k boundary. To cross a
114 * boundary we need to add a TTIC TIDAW. We need to reserve
115 * one additional TIDAW for a TTIC that we may need to add due
116 * to the placement of the data chunk in memory, and a further
117 * TIDAW for each page boundary that the TIDAW list may cross
118 * due to it's own size.
121 cross_count
= 1 + ((max_tidaws
* sizeof(struct tidaw
) - 1)
123 len
+= cross_count
* sizeof(struct tidaw
);
125 if (intrg_max_tidaws
) {
126 cross_count
= 1 + ((intrg_max_tidaws
* sizeof(struct tidaw
) - 1)
128 len
+= cross_count
* sizeof(struct tidaw
);
132 EXPORT_SYMBOL(itcw_calc_size
);
134 #define CROSS4K(x, l) (((x) & ~4095) != ((x + l) & ~4095))
136 static inline void *fit_chunk(addr_t
*start
, addr_t end
, size_t len
,
137 int align
, int check_4k
)
141 addr
= ALIGN(*start
, align
);
142 if (check_4k
&& CROSS4K(addr
, len
)) {
143 addr
= ALIGN(addr
, 4096);
144 addr
= ALIGN(addr
, align
);
146 if (addr
+ len
> end
)
147 return ERR_PTR(-ENOSPC
);
149 return (void *) addr
;
153 * itcw_init - initialize incremental tcw data structure
154 * @buffer: address of buffer to use for data structures
155 * @size: number of bytes in buffer
156 * @op: %ITCW_OP_READ for a read operation tcw, %ITCW_OP_WRITE for a write
158 * @intrg: if non-zero, add and initialize an interrogate tcw
159 * @max_tidaws: maximum number of tidaws to be used for data addressing or zero
160 * if no tida is to be used.
161 * @intrg_max_tidaws: maximum number of tidaws to be used for data addressing
162 * by the interrogate tcw, if specified
164 * Prepare the specified buffer to be used as an incremental tcw, i.e. a
165 * helper data structure that can be used to construct a valid tcw by
166 * successive calls to other helper functions. Note: the buffer needs to be
167 * located below the 2G address limit. The resulting tcw has the following
170 * - input/output tidal is contiguous (no ttic)
171 * - total data should not exceed 4k
172 * - tcw specifies either read or write operation
174 * On success, return pointer to the resulting incremental tcw data structure,
177 struct itcw
*itcw_init(void *buffer
, size_t size
, int op
, int intrg
,
178 int max_tidaws
, int intrg_max_tidaws
)
186 /* Check for 2G limit. */
187 start
= (addr_t
) buffer
;
190 return ERR_PTR(-EINVAL
);
191 memset(buffer
, 0, size
);
193 chunk
= fit_chunk(&start
, end
, sizeof(struct itcw
), 1, 0);
197 /* allow for TTIC tidaws that may be needed to cross a page boundary */
200 cross_count
= 1 + ((max_tidaws
* sizeof(struct tidaw
) - 1)
202 itcw
->max_tidaws
= max_tidaws
+ cross_count
;
204 if (intrg_max_tidaws
)
205 cross_count
= 1 + ((intrg_max_tidaws
* sizeof(struct tidaw
) - 1)
207 itcw
->intrg_max_tidaws
= intrg_max_tidaws
+ cross_count
;
209 chunk
= fit_chunk(&start
, end
, sizeof(struct tcw
), 64, 0);
213 tcw_init(itcw
->tcw
, (op
== ITCW_OP_READ
) ? 1 : 0,
214 (op
== ITCW_OP_WRITE
) ? 1 : 0);
215 /* Interrogate TCW. */
217 chunk
= fit_chunk(&start
, end
, sizeof(struct tcw
), 64, 0);
220 itcw
->intrg_tcw
= chunk
;
221 tcw_init(itcw
->intrg_tcw
, 1, 0);
222 tcw_set_intrg(itcw
->tcw
, itcw
->intrg_tcw
);
225 if (max_tidaws
> 0) {
226 chunk
= fit_chunk(&start
, end
, sizeof(struct tidaw
) *
227 itcw
->max_tidaws
, 16, 0);
230 tcw_set_data(itcw
->tcw
, chunk
, 1);
232 /* Interrogate data TIDAL. */
233 if (intrg
&& (intrg_max_tidaws
> 0)) {
234 chunk
= fit_chunk(&start
, end
, sizeof(struct tidaw
) *
235 itcw
->intrg_max_tidaws
, 16, 0);
238 tcw_set_data(itcw
->intrg_tcw
, chunk
, 1);
241 chunk
= fit_chunk(&start
, end
, sizeof(struct tsb
), 8, 0);
245 tcw_set_tsb(itcw
->tcw
, chunk
);
246 /* Interrogate TSB. */
248 chunk
= fit_chunk(&start
, end
, sizeof(struct tsb
), 8, 0);
252 tcw_set_tsb(itcw
->intrg_tcw
, chunk
);
255 chunk
= fit_chunk(&start
, end
, TCCB_MAX_SIZE
, 8, 0);
258 tccb_init(chunk
, TCCB_MAX_SIZE
, TCCB_SAC_DEFAULT
);
259 tcw_set_tccb(itcw
->tcw
, chunk
);
260 /* Interrogate TCCB. */
262 chunk
= fit_chunk(&start
, end
, TCCB_MAX_SIZE
, 8, 0);
265 tccb_init(chunk
, TCCB_MAX_SIZE
, TCCB_SAC_INTRG
);
266 tcw_set_tccb(itcw
->intrg_tcw
, chunk
);
267 tccb_add_dcw(chunk
, TCCB_MAX_SIZE
, DCW_CMD_INTRG
, 0, NULL
,
268 sizeof(struct dcw_intrg_data
), 0);
269 tcw_finalize(itcw
->intrg_tcw
, 0);
273 EXPORT_SYMBOL(itcw_init
);
276 * itcw_add_dcw - add a dcw to the itcw
277 * @itcw: address of the itcw
278 * @cmd: the dcw command
279 * @flags: flags for the dcw
280 * @cd: address of control data for this dcw or NULL if none is required
281 * @cd_count: number of control data bytes for this dcw
282 * @count: number of data bytes for this dcw
284 * Add a new dcw to the specified itcw by writing the dcw information specified
285 * by @cmd, @flags, @cd, @cd_count and @count to the tca of the tccb. Return
286 * a pointer to the newly added dcw on success or -%ENOSPC if the new dcw
287 * would exceed the available space.
289 * Note: the tcal field of the tccb header will be updated to reflect added
292 struct dcw
*itcw_add_dcw(struct itcw
*itcw
, u8 cmd
, u8 flags
, void *cd
,
293 u8 cd_count
, u32 count
)
295 return tccb_add_dcw(tcw_get_tccb(itcw
->tcw
), TCCB_MAX_SIZE
, cmd
,
296 flags
, cd
, cd_count
, count
);
298 EXPORT_SYMBOL(itcw_add_dcw
);
301 * itcw_add_tidaw - add a tidaw to the itcw
302 * @itcw: address of the itcw
303 * @flags: flags for the new tidaw
304 * @addr: address value for the new tidaw
305 * @count: count value for the new tidaw
307 * Add a new tidaw to the input/output data tidaw-list of the specified itcw
308 * (depending on the value of the r-flag and w-flag). Return a pointer to
309 * the new tidaw on success or -%ENOSPC if the new tidaw would exceed the
312 * Note: TTIC tidaws are automatically added when needed, so explicitly calling
313 * this interface with the TTIC flag is not supported. The last-tidaw flag
314 * for the last tidaw in the list will be set by itcw_finalize.
316 struct tidaw
*itcw_add_tidaw(struct itcw
*itcw
, u8 flags
, void *addr
, u32 count
)
318 struct tidaw
*following
;
320 if (itcw
->num_tidaws
>= itcw
->max_tidaws
)
321 return ERR_PTR(-ENOSPC
);
323 * Is the tidaw, which follows the one we are about to fill, on the next
324 * page? Then we have to insert a TTIC tidaw first, that points to the
325 * tidaw on the new page.
327 following
= ((struct tidaw
*) tcw_get_data(itcw
->tcw
))
328 + itcw
->num_tidaws
+ 1;
329 if (itcw
->num_tidaws
&& !((unsigned long) following
& ~PAGE_MASK
)) {
330 tcw_add_tidaw(itcw
->tcw
, itcw
->num_tidaws
++,
331 TIDAW_FLAGS_TTIC
, following
, 0);
332 if (itcw
->num_tidaws
>= itcw
->max_tidaws
)
333 return ERR_PTR(-ENOSPC
);
335 return tcw_add_tidaw(itcw
->tcw
, itcw
->num_tidaws
++, flags
, addr
, count
);
337 EXPORT_SYMBOL(itcw_add_tidaw
);
340 * itcw_set_data - set data address and tida flag of the itcw
341 * @itcw: address of the itcw
342 * @addr: the data address
343 * @use_tidal: zero of the data address specifies a contiguous block of data,
344 * non-zero if it specifies a list if tidaws.
346 * Set the input/output data address of the itcw (depending on the value of the
347 * r-flag and w-flag). If @use_tidal is non-zero, the corresponding tida flag
350 void itcw_set_data(struct itcw
*itcw
, void *addr
, int use_tidal
)
352 tcw_set_data(itcw
->tcw
, addr
, use_tidal
);
354 EXPORT_SYMBOL(itcw_set_data
);
357 * itcw_finalize - calculate length and count fields of the itcw
358 * @itcw: address of the itcw
360 * Calculate tcw input-/output-count and tccbl fields and add a tcat the tccb.
361 * In case input- or output-tida is used, the tidaw-list must be stored in
362 * continuous storage (no ttic). The tcal field in the tccb must be
365 void itcw_finalize(struct itcw
*itcw
)
367 tcw_finalize(itcw
->tcw
, itcw
->num_tidaws
);
369 EXPORT_SYMBOL(itcw_finalize
);