blob: c6adad09c97299fe23614deee5729ba28e46b0e4 [file] [log] [blame]
Yuan Kanga299c832012-06-22 19:48:46 -05001/*
2 * CAAM/SEC 4.x functions for using scatterlists in caam driver
3 *
4 * Copyright 2008-2011 Freescale Semiconductor, Inc.
5 *
6 */
7
Horia Geantă261ea052016-05-19 18:11:26 +03008#include "regs.h"
9
Horia Geantăe25ff922016-11-09 10:46:22 +020010struct sec4_sg_entry {
11 u64 ptr;
12 u32 len;
13 u32 bpid_offset;
14};
Yuan Kanga299c832012-06-22 19:48:46 -050015
16/*
17 * convert single dma address to h/w link table format
18 */
19static inline void dma_to_sec4_sg_one(struct sec4_sg_entry *sec4_sg_ptr,
Cristian Stoicabd52f1c2016-05-19 18:11:18 +030020 dma_addr_t dma, u32 len, u16 offset)
Yuan Kanga299c832012-06-22 19:48:46 -050021{
Tudor Ambarusf97581c2016-09-30 12:09:39 +030022 sec4_sg_ptr->ptr = cpu_to_caam_dma64(dma);
Horia Geantă261ea052016-05-19 18:11:26 +030023 sec4_sg_ptr->len = cpu_to_caam32(len);
24 sec4_sg_ptr->bpid_offset = cpu_to_caam32(offset & SEC4_SG_OFFSET_MASK);
Yuan Kanga299c832012-06-22 19:48:46 -050025#ifdef DEBUG
26 print_hex_dump(KERN_ERR, "sec4_sg_ptr@: ",
27 DUMP_PREFIX_ADDRESS, 16, 4, sec4_sg_ptr,
28 sizeof(struct sec4_sg_entry), 1);
29#endif
30}
31
32/*
33 * convert scatterlist to h/w link table format
34 * but does not have final bit; instead, returns last entry
35 */
36static inline struct sec4_sg_entry *
37sg_to_sec4_sg(struct scatterlist *sg, int sg_count,
Cristian Stoicabd52f1c2016-05-19 18:11:18 +030038 struct sec4_sg_entry *sec4_sg_ptr, u16 offset)
Yuan Kanga299c832012-06-22 19:48:46 -050039{
40 while (sg_count) {
41 dma_to_sec4_sg_one(sec4_sg_ptr, sg_dma_address(sg),
42 sg_dma_len(sg), offset);
43 sec4_sg_ptr++;
Cristian Stoica5be4d4c2015-01-20 10:06:16 +020044 sg = sg_next(sg);
Yuan Kanga299c832012-06-22 19:48:46 -050045 sg_count--;
46 }
47 return sec4_sg_ptr - 1;
48}
49
50/*
51 * convert scatterlist to h/w link table format
52 * scatterlist must have been previously dma mapped
53 */
54static inline void sg_to_sec4_sg_last(struct scatterlist *sg, int sg_count,
55 struct sec4_sg_entry *sec4_sg_ptr,
Cristian Stoicabd52f1c2016-05-19 18:11:18 +030056 u16 offset)
Yuan Kanga299c832012-06-22 19:48:46 -050057{
58 sec4_sg_ptr = sg_to_sec4_sg(sg, sg_count, sec4_sg_ptr, offset);
Horia Geantă261ea052016-05-19 18:11:26 +030059 sec4_sg_ptr->len |= cpu_to_caam32(SEC4_SG_LEN_FIN);
Yuan Kanga299c832012-06-22 19:48:46 -050060}
61
Herbert Xu70c3c8a2015-06-08 16:38:24 +080062static inline struct sec4_sg_entry *sg_to_sec4_sg_len(
63 struct scatterlist *sg, unsigned int total,
64 struct sec4_sg_entry *sec4_sg_ptr)
65{
66 do {
67 unsigned int len = min(sg_dma_len(sg), total);
68
69 dma_to_sec4_sg_one(sec4_sg_ptr, sg_dma_address(sg), len, 0);
70 sec4_sg_ptr++;
71 sg = sg_next(sg);
72 total -= len;
73 } while (total);
74 return sec4_sg_ptr - 1;
75}