sdmmc_mem.c | 1864 const int statlen = 64; local in function:sdmmc_mem_sd_switch 1877 error = bus_dmamem_alloc(sc->sc_dmat, statlen, PAGE_SIZE, 0, ds, 1881 error = bus_dmamem_map(sc->sc_dmat, ds, 1, statlen, &ptr, 1885 error = bus_dmamap_load(sc->sc_dmat, sc->sc_dmap, ptr, statlen, 1890 bus_dmamap_sync(sc->sc_dmat, sc->sc_dmap, 0, statlen, 1893 ptr = malloc(statlen, M_DEVBUF, M_NOWAIT | M_ZERO); 1900 cmd.c_datalen = statlen; 1901 cmd.c_blklen = statlen; 1912 bus_dmamap_sync(sc->sc_dmat, sc->sc_dmap, 0, statlen, 1915 memcpy(status, ptr, statlen); [all...] |