• Home
  • Raw
  • Download

Lines Matching refs:tfh

612 static inline void tfh_write_only(struct gru_tlb_fault_handle *tfh,  in tfh_write_only()  argument
616 tfh->fillasid = asid; in tfh_write_only()
617 tfh->fillvaddr = vaddr; in tfh_write_only()
618 tfh->pfn = pfn; in tfh_write_only()
619 tfh->dirty = dirty; in tfh_write_only()
620 tfh->pagesize = pagesize; in tfh_write_only()
621 tfh->opc = TFHOP_WRITE_ONLY; in tfh_write_only()
622 start_instruction(tfh); in tfh_write_only()
625 static inline void tfh_write_restart(struct gru_tlb_fault_handle *tfh, in tfh_write_restart() argument
630 tfh->fillasid = asid; in tfh_write_restart()
631 tfh->fillvaddr = vaddr; in tfh_write_restart()
632 tfh->pfn = paddr >> GRU_PADDR_SHIFT; in tfh_write_restart()
633 tfh->gaa = gaa; in tfh_write_restart()
634 tfh->dirty = dirty; in tfh_write_restart()
635 tfh->pagesize = pagesize; in tfh_write_restart()
636 tfh->opc = TFHOP_WRITE_RESTART; in tfh_write_restart()
637 start_instruction(tfh); in tfh_write_restart()
640 static inline void tfh_restart(struct gru_tlb_fault_handle *tfh) in tfh_restart() argument
642 tfh->opc = TFHOP_RESTART; in tfh_restart()
643 start_instruction(tfh); in tfh_restart()
646 static inline void tfh_user_polling_mode(struct gru_tlb_fault_handle *tfh) in tfh_user_polling_mode() argument
648 tfh->opc = TFHOP_USER_POLLING_MODE; in tfh_user_polling_mode()
649 start_instruction(tfh); in tfh_user_polling_mode()
652 static inline void tfh_exception(struct gru_tlb_fault_handle *tfh) in tfh_exception() argument
654 tfh->opc = TFHOP_EXCEPTION; in tfh_exception()
655 start_instruction(tfh); in tfh_exception()