Lines Matching refs:xfertyp
40 uint xfertyp; /* Transfer type register */ member
125 uint xfertyp = 0; in esdhc_xfertyp() local
128 xfertyp |= XFERTYP_DPSEL; in esdhc_xfertyp()
130 xfertyp |= XFERTYP_DMAEN; in esdhc_xfertyp()
133 xfertyp |= XFERTYP_MSBSEL; in esdhc_xfertyp()
134 xfertyp |= XFERTYP_BCEN; in esdhc_xfertyp()
136 xfertyp |= XFERTYP_AC12EN; in esdhc_xfertyp()
141 xfertyp |= XFERTYP_DTDSEL; in esdhc_xfertyp()
145 xfertyp |= XFERTYP_CCCEN; in esdhc_xfertyp()
147 xfertyp |= XFERTYP_CICEN; in esdhc_xfertyp()
149 xfertyp |= XFERTYP_RSPTYP_136; in esdhc_xfertyp()
151 xfertyp |= XFERTYP_RSPTYP_48_BUSY; in esdhc_xfertyp()
153 xfertyp |= XFERTYP_RSPTYP_48; in esdhc_xfertyp()
156 xfertyp |= XFERTYP_CMDTYP_ABORT; in esdhc_xfertyp()
158 return XFERTYP_CMD(cmd->cmdidx) | xfertyp; in esdhc_xfertyp()
361 uint xfertyp; in esdhc_send_cmd_common() local
400 xfertyp = esdhc_xfertyp(cmd, data); in esdhc_send_cmd_common()
409 (esdhc_read32(®s->mixctrl) & 0xFFFFFF80) | (xfertyp & 0x7F) in esdhc_send_cmd_common()
411 esdhc_write32(®s->xfertyp, xfertyp & 0xFFFF0000); in esdhc_send_cmd_common()
413 esdhc_write32(®s->xfertyp, xfertyp); in esdhc_send_cmd_common()