[M2351] Support PDMA

pull/7302/head
ccli8 2018-02-02 14:57:03 +08:00
parent 999dd332e6
commit ebf53b9f64
2 changed files with 246 additions and 0 deletions

View File

@ -0,0 +1,41 @@
/* mbed Microcontroller Library
* Copyright (c) 2015-2016 Nuvoton
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#ifndef MBED_DMA_H
#define MBED_DMA_H
#include "cmsis.h"
#ifdef __cplusplus
extern "C" {
#endif
#define DMA_CAP_NONE (0 << 0)
#define DMA_EVENT_ABORT (1 << 0)
#define DMA_EVENT_TRANSFER_DONE (1 << 1)
#define DMA_EVENT_TIMEOUT (1 << 2)
#define DMA_EVENT_ALL (DMA_EVENT_ABORT | DMA_EVENT_TRANSFER_DONE | DMA_EVENT_TIMEOUT)
#define DMA_EVENT_MASK DMA_EVENT_ALL
void dma_set_handler(int channelid, uint32_t handler, uint32_t id, uint32_t event);
PDMA_T *dma_modbase(void);
#ifdef __cplusplus
}
#endif
#endif

View File

@ -0,0 +1,205 @@
/* mbed Microcontroller Library
* Copyright (c) 2015-2016 Nuvoton
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include "dma_api.h"
#include "string.h"
#include "cmsis.h"
#include "mbed_assert.h"
#include "mbed_error.h"
#include "PeripheralNames.h"
#include "nu_modutil.h"
#include "nu_bitutil.h"
#include "dma.h"
#include "partition_M2351.h"
#define NU_PDMA_CH_MAX PDMA_CH_MAX /* Specify maximum channels of PDMA */
#define NU_PDMA_CH_Pos 0 /* Specify first channel number of PDMA */
#define NU_PDMA_CH_Msk (((1 << NU_PDMA_CH_MAX) - 1) << NU_PDMA_CH_Pos)
struct nu_dma_chn_s {
void (*handler)(uint32_t, uint32_t);
uint32_t id;
uint32_t event;
};
/* Partition policy of PDMAs
*
* To support DMA for secure/non-secure peripherals simultaneously, we have the following
* partition policy:
*
* 1. PDMA0 is hard-wired to secure and PDMA1 is configured to non-secure.
* 2. In secure domain, only PDMA0 is accessible and shall be used for secure peripheral.
* 3. In non-secure domain, only PDMA1 is accessible and shall be used for non-secure peripheral.
*/
#if (! defined(SCU_INIT_PNSSET0_VAL)) || (! (SCU_INIT_PNSSET0_VAL & (1 << 24)))
#error("PDMA1 must be configured to non-secure for non-secure peripherals.")
#endif
static int dma_inited = 0;
static uint32_t dma_chn_mask = 0;
static struct nu_dma_chn_s dma_chn_arr[NU_PDMA_CH_MAX];
static void pdma_vec(void);
#if defined (__ARM_FEATURE_CMSE) && (__ARM_FEATURE_CMSE == 3L)
static const struct nu_modinit_s dma_modinit = {DMA_0, PDMA0_MODULE, 0, 0, PDMA0_RST, PDMA0_IRQn, (void *) pdma_vec};
#else
static const struct nu_modinit_s dma_modinit = {DMA_1, PDMA1_MODULE, 0, 0, PDMA1_RST, PDMA1_IRQn, (void *) pdma_vec};
#endif
void dma_init(void)
{
if (dma_inited) {
return;
}
dma_inited = 1;
dma_chn_mask = ~NU_PDMA_CH_Msk;
memset(dma_chn_arr, 0x00, sizeof (dma_chn_arr));
/* Reset module
*
* NOTE: We must call secure version (from non-secure domain) because SYS/CLK regions are secure.
*/
SYS_ResetModule_S(dma_modinit.rsetidx);
/* Enable IP clock
*
* NOTE: We must call secure version (from non-secure domain) because SYS/CLK regions are secure.
*/
CLK_EnableModuleClock_S(dma_modinit.clkidx);
/* Check security state of PDMA0/1 match the partition policy above. */
PDMA_T *pdma_base = dma_modbase();
#if defined (__ARM_FEATURE_CMSE) && (__ARM_FEATURE_CMSE == 3L)
if (((uint32_t) pdma_base) != PDMA0_BASE) {
error("In secure domain, only PDMA0 is accessible and shall be used for secure peripheral");
}
#else
if (((uint32_t) pdma_base) != (PDMA1_BASE + NS_OFFSET)) {
error("In non-secure domain, only PDMA1 is accessible and shall be used for non-secure peripheral");
}
#endif
PDMA_Open(pdma_base, 0);
NVIC_SetVector(dma_modinit.irq_n, (uint32_t) dma_modinit.var);
NVIC_EnableIRQ(dma_modinit.irq_n);
}
int dma_channel_allocate(uint32_t capabilities)
{
if (! dma_inited) {
dma_init();
}
int i = nu_cto(dma_chn_mask);
if (i != 32) {
dma_chn_mask |= 1 << i;
memset(dma_chn_arr + i - NU_PDMA_CH_Pos, 0x00, sizeof (struct nu_dma_chn_s));
return i;
}
// No channel available
return DMA_ERROR_OUT_OF_CHANNELS;
}
int dma_channel_free(int channelid)
{
if (channelid != DMA_ERROR_OUT_OF_CHANNELS) {
dma_chn_mask &= ~(1 << channelid);
}
return 0;
}
void dma_set_handler(int channelid, uint32_t handler, uint32_t id, uint32_t event)
{
MBED_ASSERT(dma_chn_mask & (1 << channelid));
dma_chn_arr[channelid - NU_PDMA_CH_Pos].handler = (void (*)(uint32_t, uint32_t)) handler;
dma_chn_arr[channelid - NU_PDMA_CH_Pos].id = id;
dma_chn_arr[channelid - NU_PDMA_CH_Pos].event = event;
// Set interrupt vector if someone has removed it.
NVIC_SetVector(dma_modinit.irq_n, (uint32_t) dma_modinit.var);
NVIC_EnableIRQ(dma_modinit.irq_n);
}
PDMA_T *dma_modbase(void)
{
return (PDMA_T *) NU_MODBASE(dma_modinit.modname);
}
static void pdma_vec(void)
{
PDMA_T *pdma_base = (PDMA_T *) NU_MODBASE(dma_modinit.modname);
uint32_t intsts = PDMA_GET_INT_STATUS(pdma_base);
// Abort
if (intsts & PDMA_INTSTS_ABTIF_Msk) {
uint32_t abtsts = PDMA_GET_ABORT_STS(pdma_base);
// Clear all Abort flags
PDMA_CLR_ABORT_FLAG(pdma_base, abtsts);
while (abtsts) {
int chn_id = nu_ctz(abtsts) - PDMA_ABTSTS_ABTIF0_Pos + NU_PDMA_CH_Pos;
if (dma_chn_mask & (1 << chn_id)) {
struct nu_dma_chn_s *dma_chn = dma_chn_arr + chn_id - NU_PDMA_CH_Pos;
if (dma_chn->handler && (dma_chn->event & DMA_EVENT_ABORT)) {
dma_chn->handler(dma_chn->id, DMA_EVENT_ABORT);
}
}
abtsts &= ~(1 << (chn_id - NU_PDMA_CH_Pos + PDMA_ABTSTS_ABTIF0_Pos));
}
}
// Transfer done
if (intsts & PDMA_INTSTS_TDIF_Msk) {
uint32_t tdsts = PDMA_GET_TD_STS(pdma_base);
// Clear all transfer done flags
PDMA_CLR_TD_FLAG(pdma_base, tdsts);
while (tdsts) {
int chn_id = nu_ctz(tdsts) - PDMA_TDSTS_TDIF0_Pos + NU_PDMA_CH_Pos;
if (dma_chn_mask & (1 << chn_id)) {
struct nu_dma_chn_s *dma_chn = dma_chn_arr + chn_id - NU_PDMA_CH_Pos;
if (dma_chn->handler && (dma_chn->event & DMA_EVENT_TRANSFER_DONE)) {
dma_chn->handler(dma_chn->id, DMA_EVENT_TRANSFER_DONE);
}
}
tdsts &= ~(1 << (chn_id - NU_PDMA_CH_Pos + PDMA_TDSTS_TDIF0_Pos));
}
}
// Timeout
uint32_t reqto = intsts & (PDMA_INTSTS_REQTOF0_Msk | PDMA_INTSTS_REQTOF1_Msk);
if (reqto) {
// Clear all Timeout flags
pdma_base->INTSTS = reqto;
while (reqto) {
int chn_id = nu_ctz(reqto) - PDMA_INTSTS_REQTOF0_Pos + NU_PDMA_CH_Pos;
if (dma_chn_mask & (1 << chn_id)) {
struct nu_dma_chn_s *dma_chn = dma_chn_arr + chn_id - NU_PDMA_CH_Pos;
if (dma_chn->handler && (dma_chn->event & DMA_EVENT_TIMEOUT)) {
dma_chn->handler(dma_chn->id, DMA_EVENT_TIMEOUT);
}
}
reqto &= ~(1 << (chn_id - NU_PDMA_CH_Pos + PDMA_INTSTS_REQTOF0_Pos));
}
}
}