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