Home
last modified time | relevance | path

Searched refs:nvmex (Results 1 – 3 of 3) sorted by relevance

/freebsd/sys/dev/nvme/
H A Dnvme_sim.c220 struct ccb_trans_settings_nvme *nvmex; in nvme_sim_action() local
226 nvmex = &cts->xport_specific.nvme; in nvme_sim_action()
229 nvmex->spec = nvme_mmio_read_4(ctrlr, vs); in nvme_sim_action()
230 nvmex->valid = CTS_NVME_VALID_SPEC; in nvme_sim_action()
237 nvmex->valid |= CTS_NVME_VALID_LINK; in nvme_sim_action()
238 nvmex->speed = status & PCIEM_LINK_STA_SPEED; in nvme_sim_action()
239 nvmex->lanes = (status & PCIEM_LINK_STA_WIDTH) >> 4; in nvme_sim_action()
240 nvmex->max_speed = caps & PCIEM_LINK_CAP_MAX_SPEED; in nvme_sim_action()
241 nvmex->max_lanes = (caps & PCIEM_LINK_CAP_MAX_WIDTH) >> 4; in nvme_sim_action()
247 nvmep->spec = nvmex->spec; in nvme_sim_action()
[all …]
/freebsd/sys/cam/nvme/
H A Dnvme_xpt.c791 struct ccb_trans_settings_nvme *nvmex; in nvme_announce_periph_sbuf() local
811 nvmex = &cts.proto_specific.nvme; in nvme_announce_periph_sbuf()
812 if (nvmex->valid & CTS_NVME_VALID_LINK) in nvme_announce_periph_sbuf()
815 nvmex->lanes, nvmex->max_lanes, in nvme_announce_periph_sbuf()
816 nvmex->speed, nvmex->max_speed); in nvme_announce_periph_sbuf()
/freebsd/sbin/camcontrol/
H A Dcamcontrol.c5415 struct ccb_trans_settings_nvme *nvmex = cts_print() local