Home
last modified time | relevance | path

Searched refs:bbstate (Results 1 – 9 of 9) sorted by relevance

/OK3568_Linux_fs/u-boot/board/synopsys/axs10x/
H A Dnand.c105 struct bounce_buffer bbstate; in axs101_nand_write_buf() local
107 bounce_buffer_start(&bbstate, (void *)buf, len, GEN_BB_READ); in axs101_nand_write_buf()
112 writel(bbstate.bounce_buffer, &bd->buffer_ptr0); in axs101_nand_write_buf()
128 bounce_buffer_stop(&bbstate); in axs101_nand_write_buf()
139 struct bounce_buffer bbstate; in axs101_nand_read_buf() local
141 bounce_buffer_start(&bbstate, buf, len, GEN_BB_WRITE); in axs101_nand_read_buf()
146 writel(bbstate.bounce_buffer, &bd->buffer_ptr0); in axs101_nand_read_buf()
162 bounce_buffer_stop(&bbstate); in axs101_nand_read_buf()
/OK3568_Linux_fs/u-boot/drivers/mmc/
H A Dtegra_mmc.c72 struct bounce_buffer *bbstate) in tegra_mmc_prepare_data() argument
78 bbstate->bounce_buffer, bbstate->user_buffer, data->blocks, in tegra_mmc_prepare_data()
81 writel((u32)(unsigned long)bbstate->bounce_buffer, &priv->reg->sysad); in tegra_mmc_prepare_data()
159 struct bounce_buffer *bbstate) in tegra_mmc_send_cmd_bounced() argument
174 tegra_mmc_prepare_data(priv, data, bbstate); in tegra_mmc_send_cmd_bounced()
336 struct bounce_buffer bbstate; in tegra_mmc_send_cmd() local
349 bounce_buffer_start(&bbstate, buf, len, bbflags); in tegra_mmc_send_cmd()
352 ret = tegra_mmc_send_cmd_bounced(dev, cmd, data, &bbstate); in tegra_mmc_send_cmd()
355 bounce_buffer_stop(&bbstate); in tegra_mmc_send_cmd()
H A Ddw_mmc.c384 struct bounce_buffer bbstate; local
403 ret = bounce_buffer_start(&bbstate,
408 ret = bounce_buffer_start(&bbstate,
418 bbstate.bounce_buffer);
502 bounce_buffer_stop(&bbstate);
526 struct bounce_buffer bbstate; local
551 bounce_buffer_start(&bbstate, (void *)data->dest,
555 bounce_buffer_start(&bbstate, (void *)data->src,
560 bbstate.bounce_buffer);
H A Dmxsmmc.c97 struct bounce_buffer bbstate; in mxsmmc_send_cmd_dma() local
112 bounce_buffer_start(&bbstate, addr, data_count, flags); in mxsmmc_send_cmd_dma()
114 priv->desc->cmd.address = (dma_addr_t)bbstate.bounce_buffer; in mxsmmc_send_cmd_dma()
122 bounce_buffer_stop(&bbstate); in mxsmmc_send_cmd_dma()
126 bounce_buffer_stop(&bbstate); in mxsmmc_send_cmd_dma()
/OK3568_Linux_fs/u-boot/drivers/mtd/nand/raw/
H A Dtegra_nand.c518 struct bounce_buffer bbstate, bbstate_oob; in nand_rw_page() local
540 bounce_buffer_start(&bbstate, (void *)buf, 1 << chip->page_shift, in nand_rw_page()
543 writel(virt_to_phys(bbstate.bounce_buffer), &info->reg->data_block_ptr); in nand_rw_page()
623 bounce_buffer_stop(&bbstate); in nand_rw_page()
/OK3568_Linux_fs/yocto/poky/bitbake/lib/toaster/bldcontrol/
H A Dmodels.py40 bbstate = models.IntegerField(choices = SERVER_STATE, default = SERVER_STOPPED) variable in BuildEnvironment
H A Dlocalhostbecontroller.py483 self.be.bbstate = BuildEnvironment.SERVER_STARTED
/OK3568_Linux_fs/kernel/drivers/gpu/drm/i915/
H A Di915_gpu_error.h79 u32 bbstate; member
H A Di915_gpu_error.c550 err_printf(m, " BB_STATE: 0x%08x\n", ee->bbstate); in error_print_engine()
1149 ee->bbstate = ENGINE_READ(engine, RING_BBSTATE); in engine_record_registers()