54e630e14d
Signed-off-by: Xiang Xiao <xiaoxiang@xiaomi.com>
154 lines
4.6 KiB
C
154 lines
4.6 KiB
C
/****************************************************************************
|
|
* arch/arm/src/kinetis/kinetis_pindma.c
|
|
*
|
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
|
* contributor license agreements. See the NOTICE file distributed with
|
|
* this work for additional information regarding copyright ownership. The
|
|
* ASF licenses this file to you 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.
|
|
*
|
|
****************************************************************************/
|
|
|
|
/****************************************************************************
|
|
* Included Files
|
|
****************************************************************************/
|
|
|
|
#include <nuttx/config.h>
|
|
|
|
#include <stdint.h>
|
|
#include <stdbool.h>
|
|
#include <assert.h>
|
|
#include <errno.h>
|
|
#include <debug.h>
|
|
|
|
#include <arch/board/board.h>
|
|
|
|
#include <nuttx/arch.h>
|
|
#include <nuttx/arch.h>
|
|
#include "arm_internal.h"
|
|
#include "kinetis_config.h"
|
|
#include "chip.h"
|
|
#include "kinetis.h"
|
|
|
|
#ifdef CONFIG_KINETIS_DMA
|
|
|
|
/****************************************************************************
|
|
* Pre-processor Definitions
|
|
****************************************************************************/
|
|
|
|
/****************************************************************************
|
|
* Private Data
|
|
****************************************************************************/
|
|
|
|
/****************************************************************************
|
|
* Private Functions
|
|
****************************************************************************/
|
|
|
|
/****************************************************************************
|
|
* Public Functions
|
|
****************************************************************************/
|
|
|
|
/****************************************************************************
|
|
* Name: kinetis_pindmaenable
|
|
*
|
|
* Description:
|
|
* Enable DMA for specified pin
|
|
*
|
|
****************************************************************************/
|
|
|
|
void kinetis_pindmaenable(uint32_t pinset)
|
|
{
|
|
uintptr_t base;
|
|
uint32_t regval;
|
|
unsigned int port;
|
|
unsigned int pin;
|
|
|
|
/* Get the port number and pin number */
|
|
|
|
port = (pinset & _PIN_PORT_MASK) >> _PIN_PORT_SHIFT;
|
|
pin = (pinset & _PIN_MASK) >> _PIN_SHIFT;
|
|
|
|
DEBUGASSERT(port < KINETIS_NPORTS);
|
|
if (port < KINETIS_NPORTS)
|
|
{
|
|
/* Get the base address of PORT block for this port */
|
|
|
|
base = KINETIS_PORT_BASE(port);
|
|
|
|
/* Modify the IRQC field of the port PCR register in order to
|
|
* enable DMA.
|
|
*/
|
|
|
|
regval = getreg32(base + KINETIS_PORT_PCR_OFFSET(pin));
|
|
regval &= ~PORT_PCR_IRQC_MASK;
|
|
|
|
switch (pinset & _PIN_INT_MASK)
|
|
{
|
|
case PIN_DMA_RISING : /* DMA Request on rising edge */
|
|
regval |= PORT_PCR_IRQC_DMARISING;
|
|
break;
|
|
|
|
case PIN_DMA_FALLING : /* DMA Request on falling edge */
|
|
regval |= PORT_PCR_IRQC_DMAFALLING;
|
|
break;
|
|
|
|
case PIN_DMA_BOTH : /* DMA Request on either edge */
|
|
regval |= PORT_PCR_IRQC_DMABOTH;
|
|
break;
|
|
|
|
default:
|
|
return;
|
|
}
|
|
|
|
putreg32(regval, base + KINETIS_PORT_PCR_OFFSET(pin));
|
|
}
|
|
}
|
|
|
|
/****************************************************************************
|
|
* Name: kinetis_pindmadisable
|
|
*
|
|
* Description:
|
|
* Disable DMA for specified pin
|
|
*
|
|
****************************************************************************/
|
|
|
|
void kinetis_pindmadisable(uint32_t pinset)
|
|
{
|
|
uintptr_t base;
|
|
uint32_t regval;
|
|
unsigned int port;
|
|
unsigned int pin;
|
|
|
|
/* Get the port number and pin number */
|
|
|
|
port = (pinset & _PIN_PORT_MASK) >> _PIN_PORT_SHIFT;
|
|
pin = (pinset & _PIN_MASK) >> _PIN_SHIFT;
|
|
|
|
DEBUGASSERT(port < KINETIS_NPORTS);
|
|
if (port < KINETIS_NPORTS)
|
|
{
|
|
/* Get the base address of PORT block for this port */
|
|
|
|
base = KINETIS_PORT_BASE(port);
|
|
|
|
/* Clear the IRQC field of the port PCR register in order to disable
|
|
* DMA.
|
|
*/
|
|
|
|
regval = getreg32(base + KINETIS_PORT_PCR_OFFSET(pin));
|
|
regval &= ~PORT_PCR_IRQC_MASK;
|
|
putreg32(regval, base + KINETIS_PORT_PCR_OFFSET(pin));
|
|
}
|
|
}
|
|
|
|
#endif
|