Home
last modified time | relevance | path

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

/qemu/hw/sd/
H A Dsdhci.c726 static void get_adma_description(SDHCIState *s, ADMADescr *dscr) in get_adma_description() argument
740 dscr->addr = (hwaddr)extract64(adma2, 32, 32) & ~0x3ull; in get_adma_description()
741 dscr->length = (uint16_t)extract64(adma2, 16, 16); in get_adma_description()
742 dscr->attr = (uint8_t)extract64(adma2, 0, 7); in get_adma_description()
743 dscr->incr = 8; in get_adma_description()
749 dscr->addr = (hwaddr)(adma1 & 0xFFFFF000); in get_adma_description()
750 dscr->attr = (uint8_t)extract32(adma1, 0, 7); in get_adma_description()
751 dscr->incr = 4; in get_adma_description()
752 if ((dscr->attr & SDHC_ADMA_ATTR_ACT_MASK) == SDHC_ADMA_ATTR_SET_LEN) { in get_adma_description()
753 dscr->length = (uint16_t)extract32(adma1, 12, 16); in get_adma_description()
[all …]
/qemu/include/hw/ppc/
H A Dspapr_nested.h522 uint64_t dscr; member
/qemu/hw/ppc/
H A Dspapr_nested.c193 save->dscr = env->spr[SPR_DSCR]; in nested_save_state()
292 env->spr[SPR_DSCR] = load->dscr; in nested_load_state()
993 GUEST_STATE_ELEMENT_ENV_DW(GSB_VCPU_SPR_DSCR, dscr),