/** * struct sprd_mcdt_chan - this struct represents a single channel instance * @mcdt: the mcdt controller * @id: channel id * @fifo_phys: channel fifo physical address which is used for DMA transfer * @type: channel type * @cb: channel fifo interrupt's callback interface to notify the fifo events * @dma_enable: indicate if use DMA mode to transfer data * @int_enable: indicate if use interrupt mode to notify users to read or * write data manually * @list: used to link into the global list * * Note: users should not modify any members of this structure.
*/ struct sprd_mcdt_chan { struct sprd_mcdt_dev *mcdt;
u8 id; unsignedlong fifo_phys; enum sprd_mcdt_channel_type type; enum sprd_mcdt_dma_chan dma_chan; struct sprd_mcdt_chan_callback *cb; bool dma_enable; bool int_enable; struct list_head list;
};
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.