| 491 | } |
| 492 | |
| 493 | int |
| 494 | dmar_enable_translation(struct dmar_unit *unit) |
| 495 | { |
| 496 | int error; |
| 497 | |
| 498 | DMAR_ASSERT_LOCKED(unit); |
| 499 | unit->hw_gcmd |= DMAR_GCMD_TE; |
| 500 | dmar_write4(unit, DMAR_GCMD_REG, unit->hw_gcmd); |
| 501 | DMAR_WAIT_UNTIL(((dmar_read4(unit, DMAR_GSTS_REG) & DMAR_GSTS_TES) |
| 502 | != 0)); |
| 503 | return (error); |
| 504 | } |
| 505 | |
| 506 | int |
| 507 | dmar_disable_translation(struct dmar_unit *unit) |
no test coverage detected