11#include "hardware/structs/dma.h"
12#include "hardware/regs/dreq.h"
13#include "pico/assert.h"
14#include "hardware/regs/intctrl.h"
39#ifndef PARAM_ASSERTIONS_ENABLED_HARDWARE_DMA
40#ifdef PARAM_ASSERTIONS_ENABLED_DMA
41#define PARAM_ASSERTIONS_ENABLED_HARDWARE_DMA PARAM_ASSERTIONS_ENABLED_DMA
43#define PARAM_ASSERTIONS_ENABLED_HARDWARE_DMA 0
56#define DMA_IRQ_NUM(irq_index) (DMA_IRQ_0 + (irq_index))
59static inline void check_dma_channel_param(__unused uint channel) {
60#if PARAM_ASSERTIONS_ENABLED(HARDWARE_DMA)
62 extern void check_dma_channel_param_impl(uint channel);
63 check_dma_channel_param_impl(channel);
67static inline void check_dma_timer_param(__unused uint timer_num) {
68 valid_params_if(HARDWARE_DMA, timer_num < NUM_DMA_TIMERS);
72 check_dma_channel_param(channel);
73 return &dma_hw->ch[channel];
156 DMA_ADDRESS_UPDATE_INCREMENT_BY_TWO = 2,
157 DMA_ADDRESS_UPDATE_DECREMENT = 3,
171#ifndef DMA_ADDRESS_UPDATE_TYPE_TO_DMA_CH_CTRL_READ_BITS
173#define DMA_ADDRESS_UPDATE_TYPE_TO_DMA_CH_CTRL_READ_BITS(u) (((u)&1) << DMA_CH0_CTRL_TRIG_INCR_READ_LSB)
175#define DMA_ADDRESS_UPDATE_TYPE_TO_DMA_CH_CTRL_READ_BITS(u) \
176 ((((u)&1) << DMA_CH0_CTRL_TRIG_INCR_READ_LSB) | \
177 (((u)&2) << (DMA_CH0_CTRL_TRIG_INCR_READ_REV_LSB - 1)))
181#ifndef DMA_ADDRESS_UPDATE_TYPE_TO_DMA_CH_CTRL_WRITE_BITS
183#define DMA_ADDRESS_UPDATE_TYPE_TO_DMA_CH_CTRL_WRITE_BITS(u) (((u)&1) << DMA_CH0_CTRL_TRIG_INCR_WRITE_LSB)
185#define DMA_ADDRESS_UPDATE_TYPE_TO_DMA_CH_CTRL_WRITE_BITS(u) \
186((((u)&1) << DMA_CH0_CTRL_TRIG_INCR_WRITE_LSB) | \
187(((u)&2) << (DMA_CH0_CTRL_TRIG_INCR_WRITE_REV_LSB - 1)))
191#ifndef DMA_CH_CTRL_ALL_ADDRESS_UPDATE_READ_BITS
193#define DMA_CH_CTRL_ALL_ADDRESS_UPDATE_READ_BITS DMA_CH0_CTRL_TRIG_INCR_READ_BITS
195#define DMA_CH_CTRL_ALL_ADDRESS_UPDATE_READ_BITS (DMA_CH0_CTRL_TRIG_INCR_READ_BITS | DMA_CH0_CTRL_TRIG_INCR_READ_REV_BITS)
199#ifndef DMA_CH_CTRL_ALL_ADDRESS_UPDATE_WRITE_BITS
201#define DMA_CH_CTRL_ALL_ADDRESS_UPDATE_WRITE_BITS DMA_CH0_CTRL_TRIG_INCR_WRITE_BITS
203#define DMA_CH_CTRL_ALL_ADDRESS_UPDATE_WRITE_BITS (DMA_CH0_CTRL_TRIG_INCR_WRITE_BITS | DMA_CH0_CTRL_TRIG_INCR_WRITE_REV_BITS)
216 c->ctrl = (c->ctrl & ~DMA_CH_CTRL_ALL_ADDRESS_UPDATE_READ_BITS) |
217 DMA_ADDRESS_UPDATE_TYPE_TO_DMA_CH_CTRL_READ_BITS(update_type);
229 c->ctrl = (c->ctrl & ~DMA_CH_CTRL_ALL_ADDRESS_UPDATE_WRITE_BITS) |
230 DMA_ADDRESS_UPDATE_TYPE_TO_DMA_CH_CTRL_WRITE_BITS(update_type);
284 c->ctrl = (c->ctrl & ~DMA_CH0_CTRL_TRIG_TREQ_SEL_BITS) | (dreq << DMA_CH0_CTRL_TRIG_TREQ_SEL_LSB);
297 assert(chain_to <= NUM_DMA_CHANNELS);
298 c->ctrl = (c->ctrl & ~DMA_CH0_CTRL_TRIG_CHAIN_TO_BITS) | (chain_to << DMA_CH0_CTRL_TRIG_CHAIN_TO_LSB);
312 c->ctrl = (c->ctrl & ~DMA_CH0_CTRL_TRIG_DATA_SIZE_BITS) | (((uint)size) << DMA_CH0_CTRL_TRIG_DATA_SIZE_LSB);
331 assert(size_bits < 32);
332 c->ctrl = (c->ctrl & ~(DMA_CH0_CTRL_TRIG_RING_SIZE_BITS | DMA_CH0_CTRL_TRIG_RING_SEL_BITS)) |
333 (size_bits << DMA_CH0_CTRL_TRIG_RING_SIZE_LSB) |
334 (write ? DMA_CH0_CTRL_TRIG_RING_SEL_BITS : 0);
347 c->ctrl = bswap ? (c->ctrl | DMA_CH0_CTRL_TRIG_BSWAP_BITS) : (c->ctrl & ~DMA_CH0_CTRL_TRIG_BSWAP_BITS);
361 c->ctrl = irq_quiet ? (c->ctrl | DMA_CH0_CTRL_TRIG_IRQ_QUIET_BITS) : (c->ctrl & ~DMA_CH0_CTRL_TRIG_IRQ_QUIET_BITS);
379 c->ctrl = high_priority ? (c->ctrl | DMA_CH0_CTRL_TRIG_HIGH_PRIORITY_BITS) : (c->ctrl & ~DMA_CH0_CTRL_TRIG_HIGH_PRIORITY_BITS);
394 c->ctrl = enable ? (c->ctrl | DMA_CH0_CTRL_TRIG_EN_BITS) : (c->ctrl & ~DMA_CH0_CTRL_TRIG_EN_BITS);
406 c->ctrl = sniff_enable ? (c->ctrl | DMA_CH0_CTRL_TRIG_SNIFF_EN_BITS) : (c->ctrl &
407 ~DMA_CH0_CTRL_TRIG_SNIFF_EN_BITS);
454 c.ctrl = dma_channel_hw_addr(channel)->ctrl_trig;
493 dma_channel_hw_addr(channel)->read_addr = (uintptr_t) read_addr;
495 dma_channel_hw_addr(channel)->al3_read_addr_trig = (uintptr_t) read_addr;
508 dma_channel_hw_addr(channel)->write_addr = (uintptr_t) write_addr;
510 dma_channel_hw_addr(channel)->al2_write_addr_trig = (uintptr_t) write_addr;
533 invalid_params_if(HARDWARE_DMA, transfer_count & DMA_CH0_TRANS_COUNT_MODE_BITS);
534 return transfer_count & DMA_CH0_TRANS_COUNT_COUNT_BITS;
536 return transfer_count;
561 return dma_encode_transfer_count(transfer_count) | (DMA_CH0_TRANS_COUNT_MODE_VALUE_TRIGGER_SELF << DMA_CH0_TRANS_COUNT_MODE_LSB);
581 static_assert(DMA_CH0_TRANS_COUNT_MODE_VALUE_ENDLESS == 0xf);
582 static_assert(DMA_CH0_TRANS_COUNT_MODE_LSB == 28);
607 dma_channel_hw_addr(channel)->transfer_count = encoded_transfer_count;
609 dma_channel_hw_addr(channel)->al1_transfer_count_trig = encoded_transfer_count;
614static inline void dma_channel_set_trans_count(uint channel, uint32_t trans_count,
bool trigger) {
640 const volatile void *read_addr,
641 uint32_t encoded_transfer_count,
bool trigger) {
667 const volatile void *read_addr,
668 uint32_t encoded_transfer_count) {
671 hw->read_addr = (uintptr_t) read_addr;
672 hw->al1_transfer_count_trig = encoded_transfer_count;
695 hw->write_addr = (uintptr_t) write_addr;
696 hw->al1_transfer_count_trig = encoded_transfer_count;
705 valid_params_if(HARDWARE_DMA, chan_mask && chan_mask < (1u << NUM_DMA_CHANNELS));
706 dma_hw->multi_channel_trigger = chan_mask;
759 check_dma_channel_param(channel);
760 dma_hw->abort = 1u << channel;
773 check_dma_channel_param(channel);
774 check_hw_layout(
dma_hw_t, inte0, DMA_INTE0_OFFSET);
802 check_dma_channel_param(channel);
803 check_hw_layout(
dma_hw_t, inte1, DMA_INTE1_OFFSET);
832 invalid_params_if(HARDWARE_DMA, irq_index >= NUM_DMA_IRQS);
835 hw_set_bits(&dma_hw->irq_ctrl[irq_index].inte, 1u << channel);
837 hw_clear_bits(&dma_hw->irq_ctrl[irq_index].inte, 1u << channel);
848 invalid_params_if(HARDWARE_DMA, irq_index >= NUM_DMA_IRQS);
850 hw_set_bits(&dma_hw->irq_ctrl[irq_index].inte, channel_mask);
852 hw_clear_bits(&dma_hw->irq_ctrl[irq_index].inte, channel_mask);
863 check_dma_channel_param(channel);
864 return dma_hw->ints0 & (1u << channel);
874 check_dma_channel_param(channel);
875 return dma_hw->ints1 & (1u << channel);
886 invalid_params_if(HARDWARE_DMA, irq_index >= NUM_DMA_IRQS);
887 check_dma_channel_param(channel);
888 return dma_hw->irq_ctrl[irq_index].ints & (1u << channel);
897 check_dma_channel_param(channel);
898 dma_hw->ints0 = 1u << channel;
907 check_dma_channel_param(channel);
908 dma_hw->ints1 = 1u << channel;
918 invalid_params_if(HARDWARE_DMA, irq_index >= NUM_DMA_IRQS);
919 check_dma_channel_param(channel);
920 dma_hw->irq_ctrl[irq_index].ints = 1u << channel;
930 check_dma_channel_param(channel);
931 return dma_hw->ch[channel].al1_ctrl & DMA_CH0_CTRL_TRIG_BUSY_BITS;
966 check_dma_channel_param(channel);
967 check_hw_layout(
dma_hw_t, sniff_ctrl, DMA_SNIFF_CTRL_OFFSET);
968 if (force_channel_enable) {
969 hw_set_bits(&dma_hw->ch[channel].al1_ctrl, DMA_CH0_CTRL_TRIG_SNIFF_EN_BITS);
972 (((channel << DMA_SNIFF_CTRL_DMACH_LSB) & DMA_SNIFF_CTRL_DMACH_BITS) |
973 ((mode << DMA_SNIFF_CTRL_CALC_LSB) & DMA_SNIFF_CTRL_CALC_BITS) |
974 DMA_SNIFF_CTRL_EN_BITS),
975 (DMA_SNIFF_CTRL_DMACH_BITS |
976 DMA_SNIFF_CTRL_CALC_BITS |
977 DMA_SNIFF_CTRL_EN_BITS));
993 hw_set_bits(&dma_hw->sniff_ctrl, DMA_SNIFF_CTRL_BSWAP_BITS);
995 hw_clear_bits(&dma_hw->sniff_ctrl, DMA_SNIFF_CTRL_BSWAP_BITS);
1008 hw_set_bits(&dma_hw->sniff_ctrl, DMA_SNIFF_CTRL_OUT_INV_BITS);
1010 hw_clear_bits(&dma_hw->sniff_ctrl, DMA_SNIFF_CTRL_OUT_INV_BITS);
1023 hw_set_bits(&dma_hw->sniff_ctrl, DMA_SNIFF_CTRL_OUT_REV_BITS);
1025 hw_clear_bits(&dma_hw->sniff_ctrl, DMA_SNIFF_CTRL_OUT_REV_BITS);
1033 dma_hw->sniff_ctrl = 0;
1045 dma_hw->sniff_data = seed_value;
1054 return dma_hw->sniff_data;
1106 check_dma_timer_param(timer);
1107 invalid_params_if(HARDWARE_DMA, numerator > denominator);
1108 dma_hw->timer[timer] = (((uint32_t)numerator) << DMA_TIMER0_X_LSB) | (((uint32_t)denominator) << DMA_TIMER0_Y_LSB);
1120 check_dma_timer_param(timer_num);
1131 valid_params_if(HARDWARE_DMA, irq_index < NUM_DMA_IRQS);
static void channel_config_set_enable(dma_channel_config_t *c, bool enable)
Enable/Disable the DMA channel in a channel configuration object.
Definition dma.h:393
static void channel_config_set_transfer_data_size(dma_channel_config_t *c, dma_channel_transfer_size_t size)
Set the size of each DMA bus transfer in a channel configuration object.
Definition dma.h:310
static void channel_config_set_bswap(dma_channel_config_t *c, bool bswap)
Set DMA byte swapping config in a channel configuration object.
Definition dma.h:346
static void channel_config_set_sniff_enable(dma_channel_config_t *c, bool sniff_enable)
Enable access to channel by sniff hardware in a channel configuration object.
Definition dma.h:405
static void channel_config_set_high_priority(dma_channel_config_t *c, bool high_priority)
Set the channel priority in a channel configuration object.
Definition dma.h:378
static void channel_config_set_read_increment(dma_channel_config_t *c, bool incr)
Set DMA channel read increment in a channel configuration object.
Definition dma.h:246
static dma_channel_config_t dma_channel_get_default_config(uint channel)
Get the default channel configuration for a given channel.
Definition dma.h:430
static void channel_config_set_read_address_update_type(dma_channel_config_t *c, dma_address_update_type_t update_type)
Set DMA channel read address update type in a channel configuration object.
Definition dma.h:215
static void channel_config_set_write_address_update_type(dma_channel_config_t *c, dma_address_update_type_t update_type)
Set DMA channel write address update type in a channel configuration object.
Definition dma.h:228
static void channel_config_set_write_increment(dma_channel_config_t *c, bool incr)
Set DMA channel write increment in a channel configuration object.
Definition dma.h:263
static uint32_t channel_config_get_ctrl_value(const dma_channel_config_t *config)
Get the raw configuration register from a channel configuration.
Definition dma.h:464
static void channel_config_set_dreq(dma_channel_config_t *c, uint dreq)
Select a transfer request signal in a channel configuration object.
Definition dma.h:282
static void channel_config_set_chain_to(dma_channel_config_t *c, uint chain_to)
Set DMA channel chain_to channel in a channel configuration object.
Definition dma.h:296
static void channel_config_set_irq_quiet(dma_channel_config_t *c, bool irq_quiet)
Set IRQ quiet mode in a channel configuration object.
Definition dma.h:360
static dma_channel_config_t dma_get_channel_config(uint channel)
Get the current configuration for the specified channel.
Definition dma.h:452
static void channel_config_set_ring(dma_channel_config_t *c, bool write, uint size_bits)
Set address wrapping parameters in a channel configuration object.
Definition dma.h:330
static __force_inline void hw_set_bits(io_rw_32 *addr, uint32_t mask)
Atomically set the specified bits to 1 in a HW register.
Definition address_mapped.h:135
static __force_inline void hw_write_masked(io_rw_32 *addr, uint32_t values, uint32_t write_mask)
Set new values for a sub-set of the bits in a HW register.
Definition address_mapped.h:171
static __force_inline void hw_clear_bits(io_rw_32 *addr, uint32_t mask)
Atomically clear the specified bits to 0 in a HW register.
Definition address_mapped.h:145
void dma_unclaim_mask(uint32_t channel_mask)
Mark multiple dma channels as no longer used.
Definition dma.c:39
static void dma_sniffer_enable(uint channel, uint mode, bool force_channel_enable)
Enable the DMA sniffing targeting the specified channel.
Definition dma.h:965
void dma_timer_claim(uint timer)
Mark a dma timer as used.
Definition dma.c:54
dma_address_update_type
Enumeration of types of updates that can be made to the DMA read or write address after each transfer...
Definition dma.h:152
static void dma_channel_set_transfer_count(uint channel, uint32_t encoded_transfer_count, bool trigger)
Set the number of bus transfers the channel will do.
Definition dma.h:605
static void dma_sniffer_set_output_invert_enabled(bool invert)
Enable the Sniffer output invert function.
Definition dma.h:1006
enum dma_address_update_type dma_address_update_type_t
Enumeration of types of updates that can be made to the DMA read or write address after each transfer...
int dma_claim_unused_timer(bool required)
Claim a free dma timer.
Definition dma.c:64
static uint32_t dma_sniffer_get_data_accumulator(void)
Get the sniffer's data accumulator value.
Definition dma.h:1053
static void dma_channel_start(uint channel)
Start a single DMA channel.
Definition dma.h:714
static void dma_channel_set_config(uint channel, const dma_channel_config_t *config, bool trigger)
Set a channel configuration.
Definition dma.h:475
static bool dma_irqn_get_channel_status(uint irq_index, uint channel)
Determine if a particular channel is a cause of DMA_IRQ_N.
Definition dma.h:885
int dma_claim_unused_channel(bool required)
Claim a free dma channel.
Definition dma.c:45
static void dma_channel_acknowledge_irq1(uint channel)
Acknowledge a channel IRQ, resetting it as the cause of DMA_IRQ_1.
Definition dma.h:906
static void dma_channel_set_irq1_enabled(uint channel, bool enabled)
Enable single DMA channel's interrupt via DMA_IRQ_1.
Definition dma.h:801
static void dma_timer_set_fraction(uint timer, uint16_t numerator, uint16_t denominator)
Set the multiplier for the given DMA timer.
Definition dma.h:1105
static uint32_t dma_encode_transfer_count_with_self_trigger(uint transfer_count)
Encode the specified transfer length, along with a flag to indicate the DMA transfer should be self-t...
Definition dma.h:557
static int dma_get_irq_num(uint irq_index)
Return DMA_IRQ_<irqn>.
Definition dma.h:1130
static void dma_start_channel_mask(uint32_t chan_mask)
Start one or more channels simultaneously.
Definition dma.h:704
void dma_channel_cleanup(uint channel)
Performs DMA channel cleanup after use.
Definition dma.c:73
#define DMA_IRQ_NUM(irq_index)
Returns the irq_num_t for the nth DMA interrupt.
Definition dma.h:56
static void dma_irqn_set_channel_enabled(uint irq_index, uint channel, bool enabled)
Enable single DMA channel interrupt on either DMA_IRQ_0 or DMA_IRQ_1.
Definition dma.h:831
static void dma_irqn_set_channel_mask_enabled(uint irq_index, uint32_t channel_mask, bool enabled)
Enable multiple DMA channels' interrupt via either DMA_IRQ_0 or DMA_IRQ_1.
Definition dma.h:847
static void dma_channel_abort(uint channel)
Stop a DMA transfer.
Definition dma.h:758
static uint dma_get_timer_dreq(uint timer_num)
Return the DREQ number for a given DMA timer.
Definition dma.h:1116
void dma_timer_unclaim(uint timer)
Mark a dma timer as no longer used.
Definition dma.c:59
static uint32_t dma_encode_endless_transfer_count(void)
Return an endless transfer as an "encoded_transfer_length" value suitable for the referenced methods.
Definition dma.h:577
static uint32_t dma_encode_transfer_count(uint transfer_count)
Encode the specified transfer length into an "encoded_transfer_length" value suitable for the referen...
Definition dma.h:531
bool dma_channel_is_claimed(uint channel)
Determine if a dma channel is claimed.
Definition dma.c:49
bool dma_timer_is_claimed(uint timer)
Determine if a dma timer is claimed.
Definition dma.c:68
static void dma_sniffer_disable(void)
Disable the DMA sniffer.
Definition dma.h:1032
static void dma_sniffer_set_output_reverse_enabled(bool reverse)
Enable the Sniffer output bit reversal function.
Definition dma.h:1021
void dma_claim_mask(uint32_t channel_mask)
Mark multiple dma channels as used.
Definition dma.c:28
static bool dma_channel_get_irq0_status(uint channel)
Determine if a particular channel is a cause of DMA_IRQ_0.
Definition dma.h:862
static void dma_set_irq1_channel_mask_enabled(uint32_t channel_mask, bool enabled)
Enable multiple DMA channels' interrupts via DMA_IRQ_1.
Definition dma.h:816
static void dma_channel_wait_for_finish_blocking(uint channel)
Wait for a DMA channel transfer to complete.
Definition dma.h:939
static void dma_channel_set_read_addr(uint channel, const volatile void *read_addr, bool trigger)
Set the DMA initial read address.
Definition dma.h:491
static void dma_channel_transfer_to_buffer_now(uint channel, volatile void *write_addr, uint32_t encoded_transfer_count)
Start a DMA transfer to a buffer immediately.
Definition dma.h:693
static void dma_sniffer_set_byte_swap_enabled(bool swap)
Enable the Sniffer byte swap function.
Definition dma.h:991
static void dma_channel_transfer_from_buffer_now(uint channel, const volatile void *read_addr, uint32_t encoded_transfer_count)
Start a DMA transfer from a buffer immediately.
Definition dma.h:666
void dma_channel_unclaim(uint channel)
Mark a dma channel as no longer used.
Definition dma.c:34
static void dma_sniffer_set_data_accumulator(uint32_t seed_value)
Set the sniffer's data accumulator with initial value.
Definition dma.h:1044
dma_channel_transfer_size
Enumeration of available DMA channel transfer sizes.
Definition dma.h:143
static void dma_irqn_acknowledge_channel(uint irq_index, uint channel)
Acknowledge a channel IRQ, resetting it as the cause of DMA_IRQ_N.
Definition dma.h:917
static void dma_set_irq0_channel_mask_enabled(uint32_t channel_mask, bool enabled)
Enable multiple DMA channels' interrupts via DMA_IRQ_0.
Definition dma.h:787
void dma_channel_claim(uint channel)
Mark a dma channel as used.
Definition dma.c:23
enum dma_channel_transfer_size dma_channel_transfer_size_t
Enumeration of available DMA channel transfer sizes.
static void dma_channel_configure(uint channel, const dma_channel_config_t *config, volatile void *write_addr, const volatile void *read_addr, uint32_t encoded_transfer_count, bool trigger)
Configure all DMA parameters and optionally start transfer.
Definition dma.h:639
static void dma_channel_set_write_addr(uint channel, volatile void *write_addr, bool trigger)
Set the DMA initial write address.
Definition dma.h:506
static void dma_channel_set_irq0_enabled(uint channel, bool enabled)
Enable single DMA channel's interrupt via DMA_IRQ_0.
Definition dma.h:772
static bool dma_channel_get_irq1_status(uint channel)
Determine if a particular channel is a cause of DMA_IRQ_1.
Definition dma.h:873
static bool dma_channel_is_busy(uint channel)
Check if DMA channel is busy.
Definition dma.h:929
static void dma_channel_acknowledge_irq0(uint channel)
Acknowledge a channel IRQ, resetting it as the cause of DMA_IRQ_0.
Definition dma.h:896
@ DMA_ADDRESS_UPDATE_NONE
The address remains the same after each transfer.
Definition dma.h:153
@ DMA_ADDRESS_UPDATE_INCREMENT
The address is incremented by the transfer size after each transfer.
Definition dma.h:154
@ DREQ_DMA_TIMER1
Select DMA_TIMER0 as DREQ.
Definition dreq.h:108
@ DREQ_DMA_TIMER0
Select DMA_TIMER0 as DREQ.
Definition dreq.h:107
@ DREQ_DMA_TIMER3
Select DMA_TIMER3 as DREQ.
Definition dreq.h:110
@ DREQ_DMA_TIMER2
Select DMA_TIMER1 as DREQ.
Definition dreq.h:109
@ DREQ_FORCE
Select FORCE as DREQ.
Definition dreq.h:111
@ DMA_SIZE_16
Half word transfer (16 bits).
Definition dma.h:145
@ DMA_SIZE_8
Byte transfer (8 bits).
Definition dma.h:144
@ DMA_SIZE_32
Word transfer (32 bits).
Definition dma.h:146
Opaque representation of a DMA channel configuration that can be later applied to a hardware DMA chan...
Definition dma.h:164