Home
last modified time | relevance | path

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

/external/u-boot/drivers/dma/
Dapbh_dma.c114 struct mxs_dma_desc *pdesc; in mxs_dma_enable() local
128 pdesc = list_first_entry(&pchan->active, struct mxs_dma_desc, node); in mxs_dma_enable()
129 if (pdesc == NULL) in mxs_dma_enable()
133 if (!(pdesc->cmd.data & MXS_DMA_DESC_CHAIN)) in mxs_dma_enable()
141 pdesc = list_entry(pdesc->node.next, in mxs_dma_enable()
143 writel(mxs_dma_cmd_address(pdesc), in mxs_dma_enable()
153 writel(mxs_dma_cmd_address(pdesc), in mxs_dma_enable()
340 struct mxs_dma_desc *pdesc; in mxs_dma_desc_alloc() local
344 pdesc = memalign(MXS_DMA_ALIGNMENT, size); in mxs_dma_desc_alloc()
346 if (pdesc == NULL) in mxs_dma_desc_alloc()
[all …]
/external/u-boot/cmd/
Dmii.c108 const MII_field_desc_t *pdesc; member
128 const MII_field_desc_t *pdesc,
152 const MII_field_desc_t *pdesc; in dump_reg() local
158 pdesc = &pdl->pdesc[i]; in dump_reg()
160 mask_in_place = pdesc->mask << pdesc->lo; in dump_reg()
167 if (special_field(prd->regno, pdesc, regval)) { in dump_reg()
170 if (pdesc->hi == pdesc->lo) in dump_reg()
171 printf("%2u ", pdesc->lo); in dump_reg()
173 printf("%2u-%2u", pdesc->hi, pdesc->lo); in dump_reg()
175 (regval & mask_in_place) >> pdesc->lo, in dump_reg()
[all …]
/external/u-boot/arch/arm/include/asm/mach-imx/
Ddma.h151 int mxs_dma_desc_append(int channel, struct mxs_dma_desc *pdesc);
158 void mxs_dma_circ_start(int chan, struct mxs_dma_desc *pdesc);