Lines Matching defs:size
70 * @line_size: line size in bytes
71 * @range_op_max_size: max size that can be handled by a single range operation
111 * @size: data size of range operation (don't care for "all" operation)
116 unsigned long size,
157 writel_relaxed(size, data->op_base + UNIPHIER_SSCOQSZ);
183 unsigned long size;
191 size = end - start;
193 if (unlikely(size >= (unsigned long)(-data->line_size))) {
203 size = ALIGN(size, data->line_size);
205 while (size) {
206 unsigned long chunk_size = min_t(unsigned long, size,
213 size -= chunk_size;
349 if (of_property_read_u32(np, "cache-line-size", &data->line_size) ||
351 pr_err("L%d: cache-line-size is unspecified or invalid\n",
365 if (of_property_read_u32(np, "cache-size", &cache_size) ||
367 pr_err("L%d: cache-size is unspecified or invalid\n",
402 * The size of range operation is limited to (1 << 22) or less