Thank you to anyone who has already donated - your generous donations helped make three months of treatment possible.
My brother Nate continues to fight stage IV Hodgkin's lymphoma. He's just 31, with a wife and baby girl. They have no active income (since he's been unable to return to work), no insurance, and cannot afford the treatment he needs. Nate and his family need your help. Please consider a donation, every dollar helps. Thanks.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 |
diff --git a/firmware/target/arm/as3525/pcm-as3525.c b/firmware/target/arm/as3525/pcm-as3525.c index 5a403ba..9f31d62 100644 static unsigned char *dma_start_addr; static size_t dma_size; /* in 4*32 bits */ static void dma_callback(void); static int locked = 0; - -static int play_irq_state; +static bool is_playing = false; +static bool play_callback_pending = false; /* Mask the DMA interrupt */ void pcm_play_lock(void) { - if(++locked == 1) - play_irq_state = disable_irq_save(); + ++locked; } /* Unmask the DMA interrupt if enabled */ void pcm_play_unlock(void) { - if(--locked == 0) - restore_irq(play_irq_state); + if(--locked == 0 && is_playing) + { + int old = disable_irq_save(); + if(play_callback_pending) + { + play_callback_pending = false; + dma_callback(); + } + restore_irq(old); + } } static void play_start_pcm(void) static void play_start_pcm(void) static void dma_callback(void) { + if(locked) + { + play_callback_pending = is_playing; + return; + } + if(!dma_size) { pcm_play_get_more_callback((void **)&dma_start_addr, &dma_size); void pcm_play_dma_start(const void *addr, size_t size) dma_retain(); + is_playing = true; + play_start_pcm(); } void pcm_play_dma_stop(void) { + is_playing = false; dma_disable_channel(1); dma_size = 0; void pcm_play_dma_stop(void) void pcm_play_dma_pause(bool pause) { + is_playing = !pause; + if(pause) dma_disable_channel(1); else void * pcm_dma_addr(void *addr) #ifdef HAVE_RECORDING static int rec_locked = 0; +static bool is_recording = false; +static bool rec_callback_pending = false; static unsigned char *rec_dma_start_addr; static size_t rec_dma_size, rec_dma_transfer_size; static void rec_dma_callback(void); static void rec_dma_callback(void); static int16_t *mono_samples; #endif -static int rec_irq_state; void pcm_rec_lock(void) { - if(++rec_locked == 1) - rec_irq_state = disable_irq_save(); + ++rec_locked; } void pcm_rec_unlock(void) { - if(--rec_locked == 0) - restore_irq(rec_irq_state); + if(--rec_locked == 0 && is_recording) + { + int old = disable_irq_save(); + if(rec_callback_pending) + { + rec_callback_pending = false; + rec_dma_callback(); + } + restore_irq(old); + } } static inline void mono2stereo(int16_t *end) static void rec_dma_callback(void) { - rec_dma_size -= rec_dma_transfer_size; - rec_dma_start_addr += rec_dma_transfer_size; + if(rec_dma_transfer_size) + { + rec_dma_size -= rec_dma_transfer_size; + rec_dma_start_addr += rec_dma_transfer_size; + + /* don't act like we just transferred data when we are called from + * pcm_rec_unlock() */ + rec_dma_transfer_size = 0; - /* the 2nd channel is silent when recording microphone on as3525v1 */ - mono2stereo(AS3525_UNCACHED_ADDR((int16_t*)rec_dma_start_addr)); + /* the 2nd channel is silent when recording microphone on as3525v1 */ + mono2stereo(AS3525_UNCACHED_ADDR((int16_t*)rec_dma_start_addr)); + + if(locked) + { + rec_callback_pending = is_recording; + return; + } + } if(!rec_dma_size) { static void rec_dma_callback(void) void pcm_rec_dma_stop(void) { + is_recording = false; dma_disable_channel(1); dma_release(); rec_dma_size = 0; void pcm_rec_dma_start(void *addr, size_t size) I2SIN_CONTROL |= (1<<11)|(1<<5); /* enable dma, 14bits samples */ + is_recording = true; + rec_dma_start(); } |