Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
Ruchika Gupta | b9eebfa | 2014-10-15 11:35:30 +0530 | [diff] [blame] | 2 | /* |
| 3 | * Copyright 2008-2014 Freescale Semiconductor, Inc. |
| 4 | * |
Ruchika Gupta | b9eebfa | 2014-10-15 11:35:30 +0530 | [diff] [blame] | 5 | */ |
| 6 | |
| 7 | #ifndef __JR_H |
| 8 | #define __JR_H |
| 9 | |
| 10 | #include <linux/compiler.h> |
| 11 | |
| 12 | #define JR_SIZE 4 |
| 13 | /* Timeout currently defined as 90 sec */ |
| 14 | #define CONFIG_SEC_DEQ_TIMEOUT 90000000U |
| 15 | |
| 16 | #define DEFAULT_JR_ID 0 |
| 17 | #define DEFAULT_JR_LIODN 0 |
| 18 | #define DEFAULT_IRQ 0 /* Interrupts not to be configured */ |
| 19 | |
| 20 | #define MCFGR_SWRST ((uint32_t)(1)<<31) /* Software Reset */ |
| 21 | #define MCFGR_DMA_RST ((uint32_t)(1)<<28) /* DMA Reset */ |
| 22 | #define MCFGR_PS_SHIFT 16 |
horia.geanta@freescale.com | 3ef2412 | 2015-07-08 17:24:57 +0300 | [diff] [blame] | 23 | #define MCFGR_AWCACHE_SHIFT 8 |
| 24 | #define MCFGR_AWCACHE_MASK (0xf << MCFGR_AWCACHE_SHIFT) |
Saksham Jain | 8a6f83d | 2016-03-23 16:24:42 +0530 | [diff] [blame] | 25 | #define MCFGR_ARCACHE_SHIFT 12 |
| 26 | #define MCFGR_ARCACHE_MASK (0xf << MCFGR_ARCACHE_SHIFT) |
| 27 | |
Ruchika Gupta | b9eebfa | 2014-10-15 11:35:30 +0530 | [diff] [blame] | 28 | #define JR_INTMASK 0x00000001 |
| 29 | #define JRCR_RESET 0x01 |
| 30 | #define JRINT_ERR_HALT_INPROGRESS 0x4 |
| 31 | #define JRINT_ERR_HALT_MASK 0xc |
| 32 | #define JRNSLIODN_SHIFT 16 |
| 33 | #define JRNSLIODN_MASK 0x0fff0000 |
| 34 | #define JRSLIODN_SHIFT 0 |
| 35 | #define JRSLIODN_MASK 0x00000fff |
Bryan O'Donoghue | 22191ac | 2018-01-26 16:27:14 +0000 | [diff] [blame] | 36 | #define JROWN_NS 0x00000008 |
| 37 | #define JRMID_NS 0x00000001 |
Ruchika Gupta | b9eebfa | 2014-10-15 11:35:30 +0530 | [diff] [blame] | 38 | |
| 39 | #define JQ_DEQ_ERR -1 |
| 40 | #define JQ_DEQ_TO_ERR -2 |
| 41 | #define JQ_ENQ_ERR -3 |
| 42 | |
Lukas Auer | dfaec76 | 2018-01-25 14:11:17 +0100 | [diff] [blame] | 43 | #define RNG4_MAX_HANDLES 2 |
| 44 | |
Ruchika Gupta | b9eebfa | 2014-10-15 11:35:30 +0530 | [diff] [blame] | 45 | struct op_ring { |
Aneesh Bansal | f59e69c | 2015-10-29 22:58:03 +0530 | [diff] [blame] | 46 | phys_addr_t desc; |
Ruchika Gupta | b9eebfa | 2014-10-15 11:35:30 +0530 | [diff] [blame] | 47 | uint32_t status; |
| 48 | } __packed; |
| 49 | |
| 50 | struct jr_info { |
Aneesh Bansal | f59e69c | 2015-10-29 22:58:03 +0530 | [diff] [blame] | 51 | void (*callback)(uint32_t status, void *arg); |
| 52 | phys_addr_t desc_phys_addr; |
Ruchika Gupta | b9eebfa | 2014-10-15 11:35:30 +0530 | [diff] [blame] | 53 | uint32_t desc_len; |
| 54 | uint32_t op_done; |
| 55 | void *arg; |
| 56 | }; |
| 57 | |
| 58 | struct jobring { |
| 59 | int jq_id; |
| 60 | int irq; |
| 61 | int liodn; |
| 62 | /* Head is the index where software would enq the descriptor in |
| 63 | * the i/p ring |
| 64 | */ |
| 65 | int head; |
| 66 | /* Tail index would be used by s/w ehile enqueuing to determine if |
| 67 | * there is any space left in the s/w maintained i/p rings |
| 68 | */ |
| 69 | /* Also in case of deq tail will be incremented only in case of |
| 70 | * in-order job completion |
| 71 | */ |
| 72 | int tail; |
| 73 | /* Read index of the output ring. It may not match with tail in case |
| 74 | * of out of order completetion |
| 75 | */ |
| 76 | int read_idx; |
| 77 | /* Write index to input ring. Would be always equal to head */ |
| 78 | int write_idx; |
| 79 | /* Size of the rings. */ |
| 80 | int size; |
Ruchika Gupta | 7f4736b | 2016-01-22 16:12:55 +0530 | [diff] [blame] | 81 | /* Op ring size aligned to cache line size */ |
| 82 | int op_size; |
Ruchika Gupta | b9eebfa | 2014-10-15 11:35:30 +0530 | [diff] [blame] | 83 | /* The ip and output rings have to be accessed by SEC. So the |
| 84 | * pointers will ahve to point to the housekeeping region provided |
| 85 | * by SEC |
| 86 | */ |
| 87 | /*Circular Ring of i/p descriptors */ |
| 88 | dma_addr_t *input_ring; |
| 89 | /* Circular Ring of o/p descriptors */ |
| 90 | /* Circula Ring containing info regarding descriptors in i/p |
| 91 | * and o/p ring |
| 92 | */ |
| 93 | /* This ring can be on the stack */ |
| 94 | struct jr_info info[JR_SIZE]; |
| 95 | struct op_ring *output_ring; |
Alex Porosanu | 76394c9 | 2016-04-29 15:18:00 +0300 | [diff] [blame] | 96 | /* Offset in CCSR to the SEC engine to which this JR belongs */ |
| 97 | uint32_t sec_offset; |
| 98 | |
Ruchika Gupta | b9eebfa | 2014-10-15 11:35:30 +0530 | [diff] [blame] | 99 | }; |
| 100 | |
| 101 | struct result { |
| 102 | int done; |
| 103 | uint32_t status; |
| 104 | }; |
| 105 | |
| 106 | void caam_jr_strstatus(u32 status); |
| 107 | int run_descriptor_jr(uint32_t *desc); |
| 108 | |
| 109 | #endif |