5 * Copyright IBM Corp. 2000
9 * 05/04/02 code restructuring.
15 #include <linux/errno.h>
16 #include <linux/err.h>
17 #include <linux/types.h>
18 #include <linux/slab.h>
20 #include <asm/uaccess.h>
23 #define IDA_SIZE_LOG 12 /* 11 for 2k , 12 for 4k */
25 #define IDA_SIZE_LOG 11 /* 11 for 2k , 12 for 4k */
27 #define IDA_BLOCK_SIZE (1L<<IDA_SIZE_LOG)
30 * Test if an address/length pair needs an idal list.
33 idal_is_needed(void *vaddr, unsigned int length)
36 return ((__pa(vaddr) + length - 1) >> 31) != 0;
44 * Return the number of idal words needed for an address/length pair.
46 static inline unsigned int idal_nr_words(void *vaddr, unsigned int length)
48 return ((__pa(vaddr) & (IDA_BLOCK_SIZE-1)) + length +
49 (IDA_BLOCK_SIZE-1)) >> IDA_SIZE_LOG;
53 * Create the list of idal words for an address/length pair.
55 static inline unsigned long *idal_create_words(unsigned long *idaws,
56 void *vaddr, unsigned int length)
62 cidaw = ((paddr & (IDA_BLOCK_SIZE-1)) + length +
63 (IDA_BLOCK_SIZE-1)) >> IDA_SIZE_LOG;
65 paddr &= -IDA_BLOCK_SIZE;
67 paddr += IDA_BLOCK_SIZE;
74 * Sets the address of the data in CCW.
75 * If necessary it allocates an IDAL and sets the appropriate flags.
78 set_normalized_cda(struct ccw1 * ccw, void *vaddr)
84 if (ccw->flags & CCW_FLAG_IDA)
86 nridaws = idal_nr_words(vaddr, ccw->count);
88 idal = kmalloc(nridaws * sizeof(unsigned long),
89 GFP_ATOMIC | GFP_DMA );
92 idal_create_words(idal, vaddr, ccw->count);
93 ccw->flags |= CCW_FLAG_IDA;
97 ccw->cda = (__u32)(unsigned long) vaddr;
102 * Releases any allocated IDAL related to the CCW.
105 clear_normalized_cda(struct ccw1 * ccw)
108 if (ccw->flags & CCW_FLAG_IDA) {
109 kfree((void *)(unsigned long) ccw->cda);
110 ccw->flags &= ~CCW_FLAG_IDA;
117 * Idal buffer extension
126 * Allocate an idal buffer
128 static inline struct idal_buffer *
129 idal_buffer_alloc(size_t size, int page_order)
131 struct idal_buffer *ib;
132 int nr_chunks, nr_ptrs, i;
134 nr_ptrs = (size + IDA_BLOCK_SIZE - 1) >> IDA_SIZE_LOG;
135 nr_chunks = (4096 << page_order) >> IDA_SIZE_LOG;
136 ib = kmalloc(sizeof(struct idal_buffer) + nr_ptrs*sizeof(void *),
137 GFP_DMA | GFP_KERNEL);
139 return ERR_PTR(-ENOMEM);
141 ib->page_order = page_order;
142 for (i = 0; i < nr_ptrs; i++) {
143 if ((i & (nr_chunks - 1)) != 0) {
144 ib->data[i] = ib->data[i-1] + IDA_BLOCK_SIZE;
147 ib->data[i] = (void *)
148 __get_free_pages(GFP_KERNEL, page_order);
149 if (ib->data[i] != NULL)
152 while (i >= nr_chunks) {
154 free_pages((unsigned long) ib->data[i],
158 return ERR_PTR(-ENOMEM);
164 * Free an idal buffer.
167 idal_buffer_free(struct idal_buffer *ib)
169 int nr_chunks, nr_ptrs, i;
171 nr_ptrs = (ib->size + IDA_BLOCK_SIZE - 1) >> IDA_SIZE_LOG;
172 nr_chunks = (4096 << ib->page_order) >> IDA_SIZE_LOG;
173 for (i = 0; i < nr_ptrs; i += nr_chunks)
174 free_pages((unsigned long) ib->data[i], ib->page_order);
179 * Test if a idal list is really needed.
182 __idal_buffer_is_needed(struct idal_buffer *ib)
185 return ib->size > (4096ul << ib->page_order) ||
186 idal_is_needed(ib->data[0], ib->size);
188 return ib->size > (4096ul << ib->page_order);
193 * Set channel data address to idal buffer.
196 idal_buffer_set_cda(struct idal_buffer *ib, struct ccw1 *ccw)
198 if (__idal_buffer_is_needed(ib)) {
200 ccw->cda = (u32)(addr_t) ib->data;
201 ccw->flags |= CCW_FLAG_IDA;
203 // we do not need idals - use direct addressing
204 ccw->cda = (u32)(addr_t) ib->data[0];
205 ccw->count = ib->size;
209 * Copy count bytes from an idal buffer to user memory
212 idal_buffer_to_user(struct idal_buffer *ib, void __user *to, size_t count)
217 BUG_ON(count > ib->size);
218 for (i = 0; count > IDA_BLOCK_SIZE; i++) {
219 left = copy_to_user(to, ib->data[i], IDA_BLOCK_SIZE);
221 return left + count - IDA_BLOCK_SIZE;
222 to = (void __user *) to + IDA_BLOCK_SIZE;
223 count -= IDA_BLOCK_SIZE;
225 return copy_to_user(to, ib->data[i], count);
229 * Copy count bytes from user memory to an idal buffer
232 idal_buffer_from_user(struct idal_buffer *ib, const void __user *from, size_t count)
237 BUG_ON(count > ib->size);
238 for (i = 0; count > IDA_BLOCK_SIZE; i++) {
239 left = copy_from_user(ib->data[i], from, IDA_BLOCK_SIZE);
241 return left + count - IDA_BLOCK_SIZE;
242 from = (void __user *) from + IDA_BLOCK_SIZE;
243 count -= IDA_BLOCK_SIZE;
245 return copy_from_user(ib->data[i], from, count);