1 /* SPDX-License-Identifier: GPL-2.0-or-later */ 2 /* 3 * Copyright 2016-17 IBM Corp. 4 */ 5 6 #ifndef _ASM_POWERPC_VAS_H 7 #define _ASM_POWERPC_VAS_H 8 #include <linux/sched/mm.h> 9 #include <linux/mmu_context.h> 10 #include <asm/icswx.h> 11 #include <uapi/asm/vas-api.h> 12 13 struct vas_window; 14 15 /* 16 * Min and max FIFO sizes are based on Version 1.05 Section 3.1.4.25 17 * (Local FIFO Size Register) of the VAS workbook. 18 */ 19 #define VAS_RX_FIFO_SIZE_MIN (1 << 10) /* 1KB */ 20 #define VAS_RX_FIFO_SIZE_MAX (8 << 20) /* 8MB */ 21 22 /* 23 * Threshold Control Mode: Have paste operation fail if the number of 24 * requests in receive FIFO exceeds a threshold. 25 * 26 * NOTE: No special error code yet if paste is rejected because of these 27 * limits. So users can't distinguish between this and other errors. 28 */ 29 #define VAS_THRESH_DISABLED 0 30 #define VAS_THRESH_FIFO_GT_HALF_FULL 1 31 #define VAS_THRESH_FIFO_GT_QTR_FULL 2 32 #define VAS_THRESH_FIFO_GT_EIGHTH_FULL 3 33 34 /* 35 * Get/Set bit fields 36 */ 37 #define GET_FIELD(m, v) (((v) & (m)) >> MASK_LSH(m)) 38 #define MASK_LSH(m) (__builtin_ffsl(m) - 1) 39 #define SET_FIELD(m, v, val) \ 40 (((v) & ~(m)) | ((((typeof(v))(val)) << MASK_LSH(m)) & (m))) 41 42 /* 43 * Co-processor Engine type. 44 */ 45 enum vas_cop_type { 46 VAS_COP_TYPE_FAULT, 47 VAS_COP_TYPE_842, 48 VAS_COP_TYPE_842_HIPRI, 49 VAS_COP_TYPE_GZIP, 50 VAS_COP_TYPE_GZIP_HIPRI, 51 VAS_COP_TYPE_FTW, 52 VAS_COP_TYPE_MAX, 53 }; 54 55 /* 56 * User space VAS windows are opened by tasks and take references 57 * to pid and mm until windows are closed. 58 * Stores pid, mm, and tgid for each window. 59 */ 60 struct vas_user_win_ref { 61 struct pid *pid; /* PID of owner */ 62 struct pid *tgid; /* Thread group ID of owner */ 63 struct mm_struct *mm; /* Linux process mm_struct */ 64 }; 65 66 /* 67 * User space window operations used for powernv and powerVM 68 */ 69 struct vas_user_win_ops { 70 struct vas_window * (*open_win)(int vas_id, u64 flags, 71 enum vas_cop_type); 72 u64 (*paste_addr)(struct vas_window *); 73 int (*close_win)(struct vas_window *); 74 }; 75 76 static inline void put_vas_user_win_ref(struct vas_user_win_ref *ref) 77 { 78 /* Drop references to pid, tgid, and mm */ 79 put_pid(ref->pid); 80 put_pid(ref->tgid); 81 if (ref->mm) 82 mmdrop(ref->mm); 83 } 84 85 static inline void vas_user_win_add_mm_context(struct vas_user_win_ref *ref) 86 { 87 mm_context_add_vas_window(ref->mm); 88 /* 89 * Even a process that has no foreign real address mapping can 90 * use an unpaired COPY instruction (to no real effect). Issue 91 * CP_ABORT to clear any pending COPY and prevent a covert 92 * channel. 93 * 94 * __switch_to() will issue CP_ABORT on future context switches 95 * if process / thread has any open VAS window (Use 96 * current->mm->context.vas_windows). 97 */ 98 asm volatile(PPC_CP_ABORT); 99 } 100 101 /* 102 * Receive window attributes specified by the (in-kernel) owner of window. 103 */ 104 struct vas_rx_win_attr { 105 void *rx_fifo; 106 int rx_fifo_size; 107 int wcreds_max; 108 109 bool pin_win; 110 bool rej_no_credit; 111 bool tx_wcred_mode; 112 bool rx_wcred_mode; 113 bool tx_win_ord_mode; 114 bool rx_win_ord_mode; 115 bool data_stamp; 116 bool nx_win; 117 bool fault_win; 118 bool user_win; 119 bool notify_disable; 120 bool intr_disable; 121 bool notify_early; 122 123 int lnotify_lpid; 124 int lnotify_pid; 125 int lnotify_tid; 126 u32 pswid; 127 128 int tc_mode; 129 }; 130 131 /* 132 * Window attributes specified by the in-kernel owner of a send window. 133 */ 134 struct vas_tx_win_attr { 135 enum vas_cop_type cop; 136 int wcreds_max; 137 int lpid; 138 int pidr; /* hardware PID (from SPRN_PID) */ 139 int pswid; 140 int rsvd_txbuf_count; 141 int tc_mode; 142 143 bool user_win; 144 bool pin_win; 145 bool rej_no_credit; 146 bool rsvd_txbuf_enable; 147 bool tx_wcred_mode; 148 bool rx_wcred_mode; 149 bool tx_win_ord_mode; 150 bool rx_win_ord_mode; 151 }; 152 153 /* 154 * Helper to map a chip id to VAS id. 155 * For POWER9, this is a 1:1 mapping. In the future this maybe a 1:N 156 * mapping in which case, we will need to update this helper. 157 * 158 * Return the VAS id or -1 if no matching vasid is found. 159 */ 160 int chip_to_vas_id(int chipid); 161 162 /* 163 * Helper to initialize receive window attributes to defaults for an 164 * NX window. 165 */ 166 void vas_init_rx_win_attr(struct vas_rx_win_attr *rxattr, enum vas_cop_type cop); 167 168 /* 169 * Open a VAS receive window for the instance of VAS identified by @vasid 170 * Use @attr to initialize the attributes of the window. 171 * 172 * Return a handle to the window or ERR_PTR() on error. 173 */ 174 struct vas_window *vas_rx_win_open(int vasid, enum vas_cop_type cop, 175 struct vas_rx_win_attr *attr); 176 177 /* 178 * Helper to initialize send window attributes to defaults for an NX window. 179 */ 180 extern void vas_init_tx_win_attr(struct vas_tx_win_attr *txattr, 181 enum vas_cop_type cop); 182 183 /* 184 * Open a VAS send window for the instance of VAS identified by @vasid 185 * and the co-processor type @cop. Use @attr to initialize attributes 186 * of the window. 187 * 188 * Note: The instance of VAS must already have an open receive window for 189 * the coprocessor type @cop. 190 * 191 * Return a handle to the send window or ERR_PTR() on error. 192 */ 193 struct vas_window *vas_tx_win_open(int vasid, enum vas_cop_type cop, 194 struct vas_tx_win_attr *attr); 195 196 /* 197 * Close the send or receive window identified by @win. For receive windows 198 * return -EAGAIN if there are active send windows attached to this receive 199 * window. 200 */ 201 int vas_win_close(struct vas_window *win); 202 203 /* 204 * Copy the co-processor request block (CRB) @crb into the local L2 cache. 205 */ 206 int vas_copy_crb(void *crb, int offset); 207 208 /* 209 * Paste a previously copied CRB (see vas_copy_crb()) from the L2 cache to 210 * the hardware address associated with the window @win. @re is expected/ 211 * assumed to be true for NX windows. 212 */ 213 int vas_paste_crb(struct vas_window *win, int offset, bool re); 214 215 int vas_register_api_powernv(struct module *mod, enum vas_cop_type cop_type, 216 const char *name); 217 void vas_unregister_api_powernv(void); 218 219 /* 220 * Register / unregister coprocessor type to VAS API which will be exported 221 * to user space. Applications can use this API to open / close window 222 * which can be used to send / receive requests directly to cooprcessor. 223 * 224 * Only NX GZIP coprocessor type is supported now, but this API can be 225 * used for others in future. 226 */ 227 int vas_register_coproc_api(struct module *mod, enum vas_cop_type cop_type, 228 const char *name, 229 const struct vas_user_win_ops *vops); 230 void vas_unregister_coproc_api(void); 231 232 int get_vas_user_win_ref(struct vas_user_win_ref *task_ref); 233 #endif /* __ASM_POWERPC_VAS_H */ 234