[PARISC] Use CONFIG_HZ to determine interval timer rate (aka clock ticks)
[linux-2.6.22.y-op.git] / crypto / scatterwalk.c
blob35172d3f043b47f02ef5c8e20a0ffaf7976bac5b
1 /*
2 * Cryptographic API.
4 * Cipher operations.
6 * Copyright (c) 2002 James Morris <jmorris@intercode.com.au>
7 * 2002 Adam J. Richter <adam@yggdrasil.com>
8 * 2004 Jean-Luc Cooke <jlcooke@certainkey.com>
10 * This program is free software; you can redistribute it and/or modify it
11 * under the terms of the GNU General Public License as published by the Free
12 * Software Foundation; either version 2 of the License, or (at your option)
13 * any later version.
16 #include <linux/kernel.h>
17 #include <linux/mm.h>
18 #include <linux/module.h>
19 #include <linux/pagemap.h>
20 #include <linux/highmem.h>
21 #include <linux/scatterlist.h>
23 #include "internal.h"
24 #include "scatterwalk.h"
26 enum km_type crypto_km_types[] = {
27 KM_USER0,
28 KM_USER1,
29 KM_SOFTIRQ0,
30 KM_SOFTIRQ1,
32 EXPORT_SYMBOL_GPL(crypto_km_types);
34 static inline void memcpy_dir(void *buf, void *sgdata, size_t nbytes, int out)
36 void *src = out ? buf : sgdata;
37 void *dst = out ? sgdata : buf;
39 memcpy(dst, src, nbytes);
42 void scatterwalk_start(struct scatter_walk *walk, struct scatterlist *sg)
44 walk->sg = sg;
46 BUG_ON(!sg->length);
48 walk->offset = sg->offset;
50 EXPORT_SYMBOL_GPL(scatterwalk_start);
52 void *scatterwalk_map(struct scatter_walk *walk, int out)
54 return crypto_kmap(scatterwalk_page(walk), out) +
55 offset_in_page(walk->offset);
57 EXPORT_SYMBOL_GPL(scatterwalk_map);
59 static void scatterwalk_pagedone(struct scatter_walk *walk, int out,
60 unsigned int more)
62 if (out)
63 flush_dcache_page(scatterwalk_page(walk));
65 if (more) {
66 walk->offset += PAGE_SIZE - 1;
67 walk->offset &= PAGE_MASK;
68 if (walk->offset >= walk->sg->offset + walk->sg->length)
69 scatterwalk_start(walk, sg_next(walk->sg));
73 void scatterwalk_done(struct scatter_walk *walk, int out, int more)
75 if (!offset_in_page(walk->offset) || !more)
76 scatterwalk_pagedone(walk, out, more);
78 EXPORT_SYMBOL_GPL(scatterwalk_done);
80 void scatterwalk_copychunks(void *buf, struct scatter_walk *walk,
81 size_t nbytes, int out)
83 for (;;) {
84 unsigned int len_this_page = scatterwalk_pagelen(walk);
85 u8 *vaddr;
87 if (len_this_page > nbytes)
88 len_this_page = nbytes;
90 vaddr = scatterwalk_map(walk, out);
91 memcpy_dir(buf, vaddr, len_this_page, out);
92 scatterwalk_unmap(vaddr, out);
94 if (nbytes == len_this_page)
95 break;
97 buf += len_this_page;
98 nbytes -= len_this_page;
100 scatterwalk_pagedone(walk, out, 1);
103 scatterwalk_advance(walk, nbytes);
105 EXPORT_SYMBOL_GPL(scatterwalk_copychunks);