Lines Matching refs:tfh
168 int tfh_write_only(struct gru_tlb_fault_handle *tfh, in tfh_write_only() argument
173 tfh->fillasid = asid; in tfh_write_only()
174 tfh->fillvaddr = vaddr; in tfh_write_only()
175 tfh->pfn = paddr >> GRU_PADDR_SHIFT; in tfh_write_only()
176 tfh->gaa = gaa; in tfh_write_only()
177 tfh->dirty = dirty; in tfh_write_only()
178 tfh->pagesize = pagesize; in tfh_write_only()
179 tfh->opc = TFHOP_WRITE_ONLY; in tfh_write_only()
180 start_instruction(tfh); in tfh_write_only()
181 return wait_instruction_complete(tfh, tfhop_write_only); in tfh_write_only()
184 void tfh_write_restart(struct gru_tlb_fault_handle *tfh, in tfh_write_restart() argument
189 tfh->fillasid = asid; in tfh_write_restart()
190 tfh->fillvaddr = vaddr; in tfh_write_restart()
191 tfh->pfn = paddr >> GRU_PADDR_SHIFT; in tfh_write_restart()
192 tfh->gaa = gaa; in tfh_write_restart()
193 tfh->dirty = dirty; in tfh_write_restart()
194 tfh->pagesize = pagesize; in tfh_write_restart()
195 tfh->opc = TFHOP_WRITE_RESTART; in tfh_write_restart()
196 start_instruction(tfh); in tfh_write_restart()
199 void tfh_user_polling_mode(struct gru_tlb_fault_handle *tfh) in tfh_user_polling_mode() argument
201 tfh->opc = TFHOP_USER_POLLING_MODE; in tfh_user_polling_mode()
202 start_instruction(tfh); in tfh_user_polling_mode()
205 void tfh_exception(struct gru_tlb_fault_handle *tfh) in tfh_exception() argument
207 tfh->opc = TFHOP_EXCEPTION; in tfh_exception()
208 start_instruction(tfh); in tfh_exception()