2 * File...........: linux/include/asm-s390x/idals.h
3 * Author(s)......: Holger Smolinski <Holger.Smolinski@de.ibm.com>
4 * Martin Schwidefsky <schwidefsky@de.ibm.com>
5 * Bugreports.to..: <Linux390@de.ibm.com>
6 * (C) IBM Corporation, IBM Deutschland Entwicklung GmbH, 2000a
10 * 05/04/02 code restructuring.
16 #include <linux/errno.h>
17 #include <linux/err.h>
18 #include <linux/types.h>
19 #include <linux/slab.h>
21 #include <asm/uaccess.h>
24 #define IDA_SIZE_LOG 12 /* 11 for 2k , 12 for 4k */
26 #define IDA_SIZE_LOG 11 /* 11 for 2k , 12 for 4k */
28 #define IDA_BLOCK_SIZE (1L<<IDA_SIZE_LOG)
31 * Test if an address/length pair needs an idal list.
34 idal_is_needed(void *vaddr, unsigned int length)
37 return ((__pa(vaddr) + length - 1) >> 31) != 0;
45 * Return the number of idal words needed for an address/length pair.
47 static inline unsigned int idal_nr_words(void *vaddr, unsigned int length)
49 return ((__pa(vaddr) & (IDA_BLOCK_SIZE-1)) + length +
50 (IDA_BLOCK_SIZE-1)) >> IDA_SIZE_LOG;
54 * Create the list of idal words for an address/length pair.
56 static inline unsigned long *idal_create_words(unsigned long *idaws,
57 void *vaddr, unsigned int length)
63 cidaw = ((paddr & (IDA_BLOCK_SIZE-1)) + length +
64 (IDA_BLOCK_SIZE-1)) >> IDA_SIZE_LOG;
66 paddr &= -IDA_BLOCK_SIZE;
68 paddr += IDA_BLOCK_SIZE;
75 * Sets the address of the data in CCW.
76 * If necessary it allocates an IDAL and sets the appropriate flags.
79 set_normalized_cda(struct ccw1 * ccw, void *vaddr)
85 if (ccw->flags & CCW_FLAG_IDA)
87 nridaws = idal_nr_words(vaddr, ccw->count);
89 idal = kmalloc(nridaws * sizeof(unsigned long),
90 GFP_ATOMIC | GFP_DMA );
93 idal_create_words(idal, vaddr, ccw->count);
94 ccw->flags |= CCW_FLAG_IDA;
98 ccw->cda = (__u32)(unsigned long) vaddr;
103 * Releases any allocated IDAL related to the CCW.
106 clear_normalized_cda(struct ccw1 * ccw)
109 if (ccw->flags & CCW_FLAG_IDA) {
110 kfree((void *)(unsigned long) ccw->cda);
111 ccw->flags &= ~CCW_FLAG_IDA;
118 * Idal buffer extension
127 * Allocate an idal buffer
129 static inline struct idal_buffer *
130 idal_buffer_alloc(size_t size, int page_order)
132 struct idal_buffer *ib;
133 int nr_chunks, nr_ptrs, i;
135 nr_ptrs = (size + IDA_BLOCK_SIZE - 1) >> IDA_SIZE_LOG;
136 nr_chunks = (4096 << page_order) >> IDA_SIZE_LOG;
137 ib = kmalloc(sizeof(struct idal_buffer) + nr_ptrs*sizeof(void *),
138 GFP_DMA | GFP_KERNEL);
140 return ERR_PTR(-ENOMEM);
142 ib->page_order = page_order;
143 for (i = 0; i < nr_ptrs; i++) {
144 if ((i & (nr_chunks - 1)) != 0) {
145 ib->data[i] = ib->data[i-1] + IDA_BLOCK_SIZE;
148 ib->data[i] = (void *)
149 __get_free_pages(GFP_KERNEL, page_order);
150 if (ib->data[i] != NULL)
153 while (i >= nr_chunks) {
155 free_pages((unsigned long) ib->data[i],
159 return ERR_PTR(-ENOMEM);
165 * Free an idal buffer.
168 idal_buffer_free(struct idal_buffer *ib)
170 int nr_chunks, nr_ptrs, i;
172 nr_ptrs = (ib->size + IDA_BLOCK_SIZE - 1) >> IDA_SIZE_LOG;
173 nr_chunks = (4096 << ib->page_order) >> IDA_SIZE_LOG;
174 for (i = 0; i < nr_ptrs; i += nr_chunks)
175 free_pages((unsigned long) ib->data[i], ib->page_order);
180 * Test if a idal list is really needed.
183 __idal_buffer_is_needed(struct idal_buffer *ib)
186 return ib->size > (4096ul << ib->page_order) ||
187 idal_is_needed(ib->data[0], ib->size);
189 return ib->size > (4096ul << ib->page_order);
194 * Set channel data address to idal buffer.
197 idal_buffer_set_cda(struct idal_buffer *ib, struct ccw1 *ccw)
199 if (__idal_buffer_is_needed(ib)) {
201 ccw->cda = (u32)(addr_t) ib->data;
202 ccw->flags |= CCW_FLAG_IDA;
204 // we do not need idals - use direct addressing
205 ccw->cda = (u32)(addr_t) ib->data[0];
206 ccw->count = ib->size;
210 * Copy count bytes from an idal buffer to user memory
213 idal_buffer_to_user(struct idal_buffer *ib, void __user *to, size_t count)
218 BUG_ON(count > ib->size);
219 for (i = 0; count > IDA_BLOCK_SIZE; i++) {
220 left = copy_to_user(to, ib->data[i], IDA_BLOCK_SIZE);
222 return left + count - IDA_BLOCK_SIZE;
223 to = (void __user *) to + IDA_BLOCK_SIZE;
224 count -= IDA_BLOCK_SIZE;
226 return copy_to_user(to, ib->data[i], count);
230 * Copy count bytes from user memory to an idal buffer
233 idal_buffer_from_user(struct idal_buffer *ib, const void __user *from, size_t count)
238 BUG_ON(count > ib->size);
239 for (i = 0; count > IDA_BLOCK_SIZE; i++) {
240 left = copy_from_user(ib->data[i], from, IDA_BLOCK_SIZE);
242 return left + count - IDA_BLOCK_SIZE;
243 from = (void __user *) from + IDA_BLOCK_SIZE;
244 count -= IDA_BLOCK_SIZE;
246 return copy_from_user(ib->data[i], from, count);