HomeSort by relevance Sort by last modified time
    Searched refs:bbstate (Results 1 - 5 of 5) sorted by null

  /external/u-boot/board/synopsys/axs10x/
nand.c 104 struct bounce_buffer bbstate; local
106 bounce_buffer_start(&bbstate, (void *)buf, len, GEN_BB_READ);
111 writel(bbstate.bounce_buffer, &bd->buffer_ptr0);
127 bounce_buffer_stop(&bbstate);
138 struct bounce_buffer bbstate; local
140 bounce_buffer_start(&bbstate, buf, len, GEN_BB_WRITE);
145 writel(bbstate.bounce_buffer, &bd->buffer_ptr0);
161 bounce_buffer_stop(&bbstate);
  /external/u-boot/drivers/mmc/
tegra_mmc.c 69 struct bounce_buffer *bbstate)
75 bbstate->bounce_buffer, bbstate->user_buffer, data->blocks,
78 writel((u32)(unsigned long)bbstate->bounce_buffer, &priv->reg->sysad);
156 struct bounce_buffer *bbstate)
171 tegra_mmc_prepare_data(priv, data, bbstate);
333 struct bounce_buffer bbstate; local
346 bounce_buffer_start(&bbstate, buf, len, bbflags);
349 ret = tegra_mmc_send_cmd_bounced(dev, cmd, data, &bbstate);
352 bounce_buffer_stop(&bbstate);
    [all...]
dw_mmc.c 204 struct bounce_buffer bbstate; local
223 bounce_buffer_start(&bbstate, (void*)data->dest,
227 bounce_buffer_start(&bbstate, (void*)data->src,
232 bbstate.bounce_buffer);
314 bounce_buffer_stop(&bbstate);
mxsmmc.c 96 struct bounce_buffer bbstate; local
111 bounce_buffer_start(&bbstate, addr, data_count, flags);
113 priv->desc->cmd.address = (dma_addr_t)bbstate.bounce_buffer;
121 bounce_buffer_stop(&bbstate);
125 bounce_buffer_stop(&bbstate);
  /external/u-boot/drivers/mtd/nand/
tegra_nand.c 517 struct bounce_buffer bbstate, bbstate_oob; local
539 bounce_buffer_start(&bbstate, (void *)buf, 1 << chip->page_shift,
542 writel(virt_to_phys(bbstate.bounce_buffer), &info->reg->data_block_ptr);
622 bounce_buffer_stop(&bbstate);

Completed in 133 milliseconds