#include <assert.h>
#include <bitops.h>
#include <buffer.h>
#include <interrupt.h>
#include <io.h>
#include <irq_handler.h>
#include <status-codes.h>
#include <string.h>
#include <chip/memory-map.h>
#include <chip/irq-map.h>
#include <dmac/dma_controller.h>
#include <dmac/pdca.h>
#include "dmac_util.h"
#include "pdca_regs.h"

Go to the source code of this file.
Enumerations | |
| enum | pdca_chan_flag { PDCA_CHAN_ALLOCATED, PDCA_CHAN_ENABLED } |
| PDCA channel state flags. More... | |
Functions | |
| static struct pdca_channel * | pdca_channel_of (struct dmac_channel *ch) |
| Convert a generic dmac_channel struct to a private pdca_channel struct. | |
Definition in file pdca.c.
| enum pdca_chan_flag |
| static struct pdca_channel* pdca_channel_of | ( | struct dmac_channel * | ch | ) | [static, read] |
Convert a generic dmac_channel struct to a private pdca_channel struct.
For internal use only.
Definition at line 92 of file pdca.c.
References container_of.
1.5.8