757 lines
20 KiB
C
757 lines
20 KiB
C
/****************************************************************************
|
|
* arch/arm/src/stm32/stm32_tim_lowerhalf.c
|
|
*
|
|
* Copyright (C) 2015 Wail Khemir. All rights reserved.
|
|
* Copyright (C) 2015 Omni Hoverboards Inc. All rights reserved.
|
|
* Authors: Wail Khemir <khemirwail@gmail.com>
|
|
* Paul Alexander Patience <paul-a.patience@polymtl.ca>
|
|
*
|
|
* Redistribution and use in source and binary forms, with or without
|
|
* modification, are permitted provided that the following conditions
|
|
* are met:
|
|
*
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
* notice, this list of conditions and the following disclaimer.
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
* notice, this list of conditions and the following disclaimer in
|
|
* the documentation and/or other materials provided with the
|
|
* distribution.
|
|
* 3. Neither the name NuttX nor the names of its contributors may be
|
|
* used to endorse or promote products derived from this software
|
|
* without specific prior written permission.
|
|
*
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
|
|
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
|
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
|
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
|
|
* OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
|
|
* AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
|
|
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
* POSSIBILITY OF SUCH DAMAGE.
|
|
*
|
|
****************************************************************************/
|
|
|
|
/****************************************************************************
|
|
* Included Files
|
|
****************************************************************************/
|
|
|
|
#include <nuttx/config.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <stdint.h>
|
|
#include <string.h>
|
|
#include <errno.h>
|
|
|
|
#include <nuttx/irq.h>
|
|
#include <nuttx/timers/timer.h>
|
|
|
|
#include <arch/board/board.h>
|
|
|
|
#include "stm32_tim.h"
|
|
|
|
#if defined(CONFIG_TIMER) && \
|
|
(defined(CONFIG_STM32_TIM1) || defined(CONFIG_STM32_TIM2) || \
|
|
defined(CONFIG_STM32_TIM3) || defined(CONFIG_STM32_TIM4) || \
|
|
defined(CONFIG_STM32_TIM5) || defined(CONFIG_STM32_TIM6) || \
|
|
defined(CONFIG_STM32_TIM7) || defined(CONFIG_STM32_TIM8) || \
|
|
defined(CONFIG_STM32_TIM9) || defined(CONFIG_STM32_TIM10) || \
|
|
defined(CONFIG_STM32_TIM11) || defined(CONFIG_STM32_TIM12) || \
|
|
defined(CONFIG_STM32_TIM13) || defined(CONFIG_STM32_TIM14))
|
|
|
|
/****************************************************************************
|
|
* Pre-processor Definitions
|
|
****************************************************************************/
|
|
|
|
#define STM32_TIM1_RES 16
|
|
#if defined(CONFIG_STM32_STM32L15XX) || defined(CONFIG_STM32_STM32F10XX)
|
|
# define STM32_TIM2_RES 16
|
|
#else
|
|
# define STM32_TIM2_RES 32
|
|
#endif
|
|
#if defined(CONFIG_STM32_STM32L20XX) || defined(CONFIG_STM32_STM32F40XX)
|
|
# define STM32_TIM3_RES 32
|
|
# define STM32_TIM4_RES 32
|
|
#else
|
|
# define STM32_TIM3_RES 16
|
|
# define STM32_TIM4_RES 16
|
|
#endif
|
|
#if defined(CONFIG_STM32_STM32F10XX) || defined(CONFIG_STM32_STM32F30XX)
|
|
# define STM32_TIM5_RES 16
|
|
#else
|
|
# define STM32_TIM5_RES 32
|
|
#endif
|
|
#define STM32_TIM6_RES 16
|
|
#define STM32_TIM7_RES 16
|
|
#define STM32_TIM8_RES 16
|
|
#define STM32_TIM9_RES 16
|
|
#define STM32_TIM10_RES 16
|
|
#define STM32_TIM11_RES 16
|
|
#define STM32_TIM12_RES 16
|
|
#define STM32_TIM13_RES 16
|
|
#define STM32_TIM14_RES 16
|
|
|
|
/****************************************************************************
|
|
* Private Types
|
|
****************************************************************************/
|
|
/* This structure provides the private representation of the "lower-half"
|
|
* driver state structure. This structure must be cast-compatible with the
|
|
* timer_lowerhalf_s structure.
|
|
*/
|
|
|
|
struct stm32_lowerhalf_s
|
|
{
|
|
FAR const struct timer_ops_s *ops; /* Lower half operations */
|
|
FAR struct stm32_tim_dev_s *tim; /* stm32 timer driver */
|
|
tccb_t usrhandler; /* Current user interrupt handler */
|
|
const xcpt_t timhandler; /* Current timer interrupt handler */
|
|
bool started; /* True: Timer has been started */
|
|
const uint8_t resolution; /* Number of bits in the timer (16 or 32 bits) */
|
|
};
|
|
|
|
/****************************************************************************
|
|
* Private Function Prototypes
|
|
****************************************************************************/
|
|
|
|
/* Interrupt handling *******************************************************/
|
|
|
|
#ifdef CONFIG_STM32_TIM1
|
|
static int stm32_tim1_interrupt(int irq, FAR void *context);
|
|
#endif
|
|
#ifdef CONFIG_STM32_TIM2
|
|
static int stm32_tim2_interrupt(int irq, FAR void *context);
|
|
#endif
|
|
#ifdef CONFIG_STM32_TIM3
|
|
static int stm32_tim3_interrupt(int irq, FAR void *context);
|
|
#endif
|
|
#ifdef CONFIG_STM32_TIM4
|
|
static int stm32_tim4_interrupt(int irq, FAR void *context);
|
|
#endif
|
|
#ifdef CONFIG_STM32_TIM5
|
|
static int stm32_tim5_interrupt(int irq, FAR void *context);
|
|
#endif
|
|
#ifdef CONFIG_STM32_TIM6
|
|
static int stm32_tim6_interrupt(int irq, FAR void *context);
|
|
#endif
|
|
#ifdef CONFIG_STM32_TIM7
|
|
static int stm32_tim7_interrupt(int irq, FAR void *context);
|
|
#endif
|
|
#ifdef CONFIG_STM32_TIM8
|
|
static int stm32_tim8_interrupt(int irq, FAR void *context);
|
|
#endif
|
|
#ifdef CONFIG_STM32_TIM9
|
|
static int stm32_tim9_interrupt(int irq, FAR void *context);
|
|
#endif
|
|
#ifdef CONFIG_STM32_TIM10
|
|
static int stm32_tim10_interrupt(int irq, FAR void *context);
|
|
#endif
|
|
#ifdef CONFIG_STM32_TIM11
|
|
static int stm32_tim11_interrupt(int irq, FAR void *context);
|
|
#endif
|
|
#ifdef CONFIG_STM32_TIM12
|
|
static int stm32_tim12_interrupt(int irq, FAR void *context);
|
|
#endif
|
|
#ifdef CONFIG_STM32_TIM13
|
|
static int stm32_tim13_interrupt(int irq, FAR void *context);
|
|
#endif
|
|
#ifdef CONFIG_STM32_TIM14
|
|
static int stm32_tim14_interrupt(int irq, FAR void *context);
|
|
#endif
|
|
|
|
static int stm32_timer_handler(FAR struct stm32_lowerhalf_s *lower);
|
|
|
|
/* "Lower half" driver methods **********************************************/
|
|
|
|
static int stm32_start(FAR struct timer_lowerhalf_s *lower);
|
|
static int stm32_stop(FAR struct timer_lowerhalf_s *lower);
|
|
static int stm32_settimeout(FAR struct timer_lowerhalf_s *lower,
|
|
uint32_t timeout);
|
|
static tccb_t stm32_sethandler(FAR struct timer_lowerhalf_s *lower,
|
|
tccb_t handler);
|
|
|
|
/****************************************************************************
|
|
* Private Data
|
|
****************************************************************************/
|
|
/* "Lower half" driver methods */
|
|
|
|
static const struct timer_ops_s g_timer_ops =
|
|
{
|
|
.start = stm32_start,
|
|
.stop = stm32_stop,
|
|
.getstatus = NULL,
|
|
.settimeout = stm32_settimeout,
|
|
.sethandler = stm32_sethandler,
|
|
.ioctl = NULL,
|
|
};
|
|
|
|
#ifdef CONFIG_STM32_TIM1
|
|
static struct stm32_lowerhalf_s g_tim1_lowerhalf =
|
|
{
|
|
.ops = &g_timer_ops,
|
|
.timhandler = stm32_tim1_interrupt,
|
|
.resolution = STM32_TIM1_RES,
|
|
};
|
|
#endif
|
|
|
|
#ifdef CONFIG_STM32_TIM2
|
|
static struct stm32_lowerhalf_s g_tim2_lowerhalf =
|
|
{
|
|
.ops = &g_timer_ops,
|
|
.timhandler = stm32_tim2_interrupt,
|
|
.resolution = STM32_TIM2_RES,
|
|
};
|
|
#endif
|
|
|
|
#ifdef CONFIG_STM32_TIM3
|
|
static struct stm32_lowerhalf_s g_tim3_lowerhalf =
|
|
{
|
|
.ops = &g_timer_ops,
|
|
.timhandler = stm32_tim3_interrupt,
|
|
.resolution = STM32_TIM3_RES,
|
|
};
|
|
#endif
|
|
|
|
#ifdef CONFIG_STM32_TIM4
|
|
static struct stm32_lowerhalf_s g_tim4_lowerhalf =
|
|
{
|
|
.ops = &g_timer_ops,
|
|
.timhandler = stm32_tim4_interrupt,
|
|
.resolution = STM32_TIM4_RES,
|
|
};
|
|
#endif
|
|
|
|
#ifdef CONFIG_STM32_TIM5
|
|
static struct stm32_lowerhalf_s g_tim5_lowerhalf =
|
|
{
|
|
.ops = &g_timer_ops,
|
|
.timhandler = stm32_tim5_interrupt,
|
|
.resolution = STM32_TIM5_RES,
|
|
};
|
|
#endif
|
|
|
|
#ifdef CONFIG_STM32_TIM6
|
|
static struct stm32_lowerhalf_s g_tim6_lowerhalf =
|
|
{
|
|
.ops = &g_timer_ops,
|
|
.timhandler = stm32_tim6_interrupt,
|
|
.resolution = STM32_TIM6_RES,
|
|
};
|
|
#endif
|
|
|
|
#ifdef CONFIG_STM32_TIM7
|
|
static struct stm32_lowerhalf_s g_tim7_lowerhalf =
|
|
{
|
|
.ops = &g_timer_ops,
|
|
.timhandler = stm32_tim7_interrupt,
|
|
.resolution = STM32_TIM7_RES,
|
|
};
|
|
#endif
|
|
|
|
#ifdef CONFIG_STM32_TIM8
|
|
static struct stm32_lowerhalf_s g_tim8_lowerhalf =
|
|
{
|
|
.ops = &g_timer_ops,
|
|
.timhandler = stm32_tim8_interrupt,
|
|
.resolution = STM32_TIM8_RES,
|
|
};
|
|
#endif
|
|
|
|
#ifdef CONFIG_STM32_TIM9
|
|
static struct stm32_lowerhalf_s g_tim9_lowerhalf =
|
|
{
|
|
.ops = &g_timer_ops,
|
|
.timhandler = stm32_tim9_interrupt,
|
|
.resolution = STM32_TIM9_RES,
|
|
};
|
|
#endif
|
|
|
|
#ifdef CONFIG_STM32_TIM10
|
|
static struct stm32_lowerhalf_s g_tim10_lowerhalf =
|
|
{
|
|
.ops = &g_timer_ops,
|
|
.timhandler = stm32_tim10_interrupt,
|
|
.resolution = STM32_TIM10_RES,
|
|
};
|
|
#endif
|
|
|
|
#ifdef CONFIG_STM32_TIM11
|
|
static struct stm32_lowerhalf_s g_tim11_lowerhalf =
|
|
{
|
|
.ops = &g_timer_ops,
|
|
.timhandler = stm32_tim11_interrupt,
|
|
.resolution = STM32_TIM11_RES,
|
|
};
|
|
#endif
|
|
|
|
#ifdef CONFIG_STM32_TIM12
|
|
static struct stm32_lowerhalf_s g_tim12_lowerhalf =
|
|
{
|
|
.ops = &g_timer_ops,
|
|
.timhandler = stm32_tim12_interrupt,
|
|
.resolution = STM32_TIM12_RES,
|
|
};
|
|
#endif
|
|
|
|
#ifdef CONFIG_STM32_TIM13
|
|
static struct stm32_lowerhalf_s g_tim13_lowerhalf =
|
|
{
|
|
.ops = &g_timer_ops,
|
|
.timhandler = stm32_tim13_interrupt,
|
|
.resolution = STM32_TIM13_RES,
|
|
};
|
|
#endif
|
|
|
|
#ifdef CONFIG_STM32_TIM14
|
|
static struct stm32_lowerhalf_s g_tim14_lowerhalf =
|
|
{
|
|
.ops = &g_timer_ops,
|
|
.timhandler = stm32_tim14_interrupt,
|
|
.resolution = STM32_TIM14_RES,
|
|
};
|
|
#endif
|
|
|
|
/****************************************************************************
|
|
* Private Functions
|
|
****************************************************************************/
|
|
|
|
/****************************************************************************
|
|
* Name: stm32_timN_interrupt, N=1..14
|
|
*
|
|
* Description:
|
|
* Individual interrupt handlers for each timer
|
|
*
|
|
****************************************************************************/
|
|
|
|
#ifdef CONFIG_STM32_TIM1
|
|
static int stm32_tim1_interrupt(int irq, FAR void *context)
|
|
{
|
|
return stm32_timer_handler(&g_tim1_lowerhalf);
|
|
}
|
|
#endif
|
|
|
|
#ifdef CONFIG_STM32_TIM2
|
|
static int stm32_tim2_interrupt(int irq, FAR void *context)
|
|
{
|
|
return stm32_timer_handler(&g_tim2_lowerhalf);
|
|
}
|
|
#endif
|
|
|
|
#ifdef CONFIG_STM32_TIM3
|
|
static int stm32_tim3_interrupt(int irq, FAR void *context)
|
|
{
|
|
return stm32_timer_handler(&g_tim3_lowerhalf);
|
|
}
|
|
#endif
|
|
|
|
#ifdef CONFIG_STM32_TIM4
|
|
static int stm32_tim4_interrupt(int irq, FAR void *context)
|
|
{
|
|
return stm32_timer_handler(&g_tim4_lowerhalf);
|
|
}
|
|
#endif
|
|
|
|
#ifdef CONFIG_STM32_TIM5
|
|
static int stm32_tim5_interrupt(int irq, FAR void *context)
|
|
{
|
|
return stm32_timer_handler(&g_tim5_lowerhalf);
|
|
}
|
|
#endif
|
|
|
|
#ifdef CONFIG_STM32_TIM6
|
|
static int stm32_tim6_interrupt(int irq, FAR void *context)
|
|
{
|
|
return stm32_timer_handler(&g_tim6_lowerhalf);
|
|
}
|
|
#endif
|
|
|
|
#ifdef CONFIG_STM32_TIM7
|
|
static int stm32_tim7_interrupt(int irq, FAR void *context)
|
|
{
|
|
return stm32_timer_handler(&g_tim7_lowerhalf);
|
|
}
|
|
#endif
|
|
|
|
#ifdef CONFIG_STM32_TIM8
|
|
static int stm32_tim8_interrupt(int irq, FAR void *context)
|
|
{
|
|
return stm32_timer_handler(&g_tim8_lowerhalf);
|
|
}
|
|
#endif
|
|
|
|
#ifdef CONFIG_STM32_TIM9
|
|
static int stm32_tim9_interrupt(int irq, FAR void *context)
|
|
{
|
|
return stm32_timer_handler(&g_tim9_lowerhalf);
|
|
}
|
|
#endif
|
|
|
|
#ifdef CONFIG_STM32_TIM10
|
|
static int stm32_tim10_interrupt(int irq, FAR void *context)
|
|
{
|
|
return stm32_timer_handler(&g_tim10_lowerhalf);
|
|
}
|
|
#endif
|
|
|
|
#ifdef CONFIG_STM32_TIM11
|
|
static int stm32_tim11_interrupt(int irq, FAR void *context)
|
|
{
|
|
return stm32_timer_handler(&g_tim11_lowerhalf);
|
|
}
|
|
#endif
|
|
|
|
#ifdef CONFIG_STM32_TIM12
|
|
static int stm32_tim12_interrupt(int irq, FAR void *context)
|
|
{
|
|
return stm32_timer_handler(&g_tim12_lowerhalf);
|
|
}
|
|
#endif
|
|
|
|
#ifdef CONFIG_STM32_TIM13
|
|
static int stm32_tim13_interrupt(int irq, FAR void *context)
|
|
{
|
|
return stm32_timer_handler(&g_tim13_lowerhalf);
|
|
}
|
|
#endif
|
|
|
|
#ifdef CONFIG_STM32_TIM14
|
|
static int stm32_tim14_interrupt(int irq, FAR void *context)
|
|
{
|
|
return stm32_timer_handler(&g_tim14_lowerhalf);
|
|
}
|
|
#endif
|
|
|
|
/****************************************************************************
|
|
* Name: stm32_timer_handler
|
|
*
|
|
* Description:
|
|
* timer interrupt handler
|
|
*
|
|
* Input Parameters:
|
|
*
|
|
* Returned Values:
|
|
*
|
|
****************************************************************************/
|
|
|
|
static int stm32_timer_handler(FAR struct stm32_lowerhalf_s *lower)
|
|
{
|
|
uint32_t next_interval_us = 0;
|
|
|
|
STM32_TIM_ACKINT(lower->tim, 0);
|
|
|
|
if (lower->usrhandler(&next_interval_us))
|
|
{
|
|
if (next_interval_us > 0)
|
|
{
|
|
STM32_TIM_SETPERIOD(lower->tim, next_interval_us);
|
|
}
|
|
}
|
|
else
|
|
{
|
|
stm32_stop((struct timer_lowerhalf_s *)lower);
|
|
}
|
|
|
|
return OK;
|
|
}
|
|
|
|
/****************************************************************************
|
|
* Name: stm32_start
|
|
*
|
|
* Description:
|
|
* Start the timer, resetting the time to the current timeout,
|
|
*
|
|
* Input Parameters:
|
|
* lower - A pointer the publicly visible representation of the "lower-half"
|
|
* driver state structure.
|
|
*
|
|
* Returned Values:
|
|
* Zero on success; a negated errno value on failure.
|
|
*
|
|
****************************************************************************/
|
|
|
|
static int stm32_start(FAR struct timer_lowerhalf_s *lower)
|
|
{
|
|
FAR struct stm32_lowerhalf_s *priv = (FAR struct stm32_lowerhalf_s *)lower;
|
|
|
|
if (!priv->started)
|
|
{
|
|
STM32_TIM_SETMODE(priv->tim, STM32_TIM_MODE_UP);
|
|
|
|
if (priv->usrhandler != NULL)
|
|
{
|
|
STM32_TIM_SETISR(priv->tim, priv->timhandler, 0);
|
|
STM32_TIM_ENABLEINT(priv->tim, 0);
|
|
}
|
|
|
|
priv->started = true;
|
|
return OK;
|
|
}
|
|
|
|
/* Return EBUSY to indicate that the timer was already running */
|
|
|
|
return -EBUSY;
|
|
}
|
|
|
|
/****************************************************************************
|
|
* Name: stm32_stop
|
|
*
|
|
* Description:
|
|
* Stop the timer
|
|
*
|
|
* Input Parameters:
|
|
* lower - A pointer the publicly visible representation of the "lower-half"
|
|
* driver state structure.
|
|
*
|
|
* Returned Values:
|
|
* Zero on success; a negated errno value on failure.
|
|
*
|
|
****************************************************************************/
|
|
|
|
static int stm32_stop(struct timer_lowerhalf_s *lower)
|
|
{
|
|
struct stm32_lowerhalf_s *priv = (struct stm32_lowerhalf_s *)lower;
|
|
|
|
if (priv->started)
|
|
{
|
|
STM32_TIM_SETMODE(priv->tim, STM32_TIM_MODE_DISABLED);
|
|
STM32_TIM_DISABLEINT(priv->tim, 0);
|
|
STM32_TIM_SETISR(priv->tim, 0, 0);
|
|
priv->started = false;
|
|
return OK;
|
|
}
|
|
|
|
/* Return ENODEV to indicate that the timer was not running */
|
|
|
|
return -ENODEV;
|
|
}
|
|
|
|
/****************************************************************************
|
|
* Name: stm32_settimeout
|
|
*
|
|
* Description:
|
|
* Set a new timeout value (and reset the timer)
|
|
*
|
|
* Input Parameters:
|
|
* lower - A pointer the publicly visible representation of the "lower-half"
|
|
* driver state structure.
|
|
* timeout - The new timeout value in microseconds.
|
|
*
|
|
* Returned Values:
|
|
* Zero on success; a negated errno value on failure.
|
|
*
|
|
****************************************************************************/
|
|
|
|
static int stm32_settimeout(FAR struct timer_lowerhalf_s *lower, uint32_t timeout)
|
|
{
|
|
FAR struct stm32_lowerhalf_s *priv = (FAR struct stm32_lowerhalf_s *)lower;
|
|
uint64_t maxtimeout;
|
|
|
|
if (priv->started)
|
|
{
|
|
return -EPERM;
|
|
}
|
|
|
|
maxtimeout = (1 << priv->resolution) - 1;
|
|
if (timeout > maxtimeout)
|
|
{
|
|
uint64_t freq = (maxtimeout * 1000000) / timeout;
|
|
STM32_TIM_SETCLOCK(priv->tim, freq);
|
|
STM32_TIM_SETPERIOD(priv->tim, maxtimeout);
|
|
}
|
|
else
|
|
{
|
|
STM32_TIM_SETCLOCK(priv->tim, 1000000);
|
|
STM32_TIM_SETPERIOD(priv->tim, timeout);
|
|
}
|
|
|
|
return OK;
|
|
}
|
|
|
|
/****************************************************************************
|
|
* Name: stm32_sethandler
|
|
*
|
|
* Description:
|
|
* Call this user provided timeout handler.
|
|
*
|
|
* Input Parameters:
|
|
* lower - A pointer the publicly visible representation of the "lower-half"
|
|
* driver state structure.
|
|
* newhandler - The new timer expiration function pointer. If this
|
|
* function pointer is NULL, then the reset-on-expiration
|
|
* behavior is restored,
|
|
*
|
|
* Returned Values:
|
|
* The previous timer expiration function pointer or NULL is there was
|
|
* no previous function pointer.
|
|
*
|
|
****************************************************************************/
|
|
|
|
static tccb_t stm32_sethandler(FAR struct timer_lowerhalf_s *lower,
|
|
tccb_t newhandler)
|
|
{
|
|
FAR struct stm32_lowerhalf_s *priv = (FAR struct stm32_lowerhalf_s *)lower;
|
|
|
|
irqstate_t flags = enter_critical_section();
|
|
|
|
/* Get the old handler return value */
|
|
|
|
tccb_t oldhandler = priv->usrhandler;
|
|
|
|
/* Save the new handler */
|
|
|
|
priv->usrhandler = newhandler;
|
|
|
|
if (newhandler != NULL && priv->started)
|
|
{
|
|
STM32_TIM_SETISR(priv->tim, priv->timhandler, 0);
|
|
STM32_TIM_ENABLEINT(priv->tim, 0);
|
|
}
|
|
else
|
|
{
|
|
STM32_TIM_DISABLEINT(priv->tim, 0);
|
|
STM32_TIM_SETISR(priv->tim, 0, 0);
|
|
}
|
|
|
|
leave_critical_section(flags);
|
|
return oldhandler;
|
|
}
|
|
|
|
/****************************************************************************
|
|
* Public Functions
|
|
****************************************************************************/
|
|
|
|
/****************************************************************************
|
|
* Name: stm32_timer_initialize
|
|
*
|
|
* Description:
|
|
* Bind the configuration timer to a timer lower half instance and
|
|
* register the timer drivers at 'devpath'
|
|
*
|
|
* Input Parameters:
|
|
* devpath - The full path to the timer device. This should be of the
|
|
* form /dev/timer0
|
|
* timer - the timer's number.
|
|
*
|
|
* Returned Values:
|
|
* Zero (OK) is returned on success; A negated errno value is returned
|
|
* to indicate the nature of any failure.
|
|
*
|
|
****************************************************************************/
|
|
|
|
int stm32_timer_initialize(FAR const char *devpath, int timer)
|
|
{
|
|
FAR struct stm32_lowerhalf_s *lower;
|
|
|
|
switch (timer)
|
|
{
|
|
#ifdef CONFIG_STM32_TIM1
|
|
case 1:
|
|
lower = &g_tim1_lowerhalf;
|
|
break;
|
|
#endif
|
|
#ifdef CONFIG_STM32_TIM2
|
|
case 2:
|
|
lower = &g_tim2_lowerhalf;
|
|
break;
|
|
#endif
|
|
#ifdef CONFIG_STM32_TIM3
|
|
case 3:
|
|
lower = &g_tim3_lowerhalf;
|
|
break;
|
|
#endif
|
|
#ifdef CONFIG_STM32_TIM4
|
|
case 4:
|
|
lower = &g_tim4_lowerhalf;
|
|
break;
|
|
#endif
|
|
#ifdef CONFIG_STM32_TIM5
|
|
case 5:
|
|
lower = &g_tim5_lowerhalf;
|
|
break;
|
|
#endif
|
|
#ifdef CONFIG_STM32_TIM6
|
|
case 6:
|
|
lower = &g_tim6_lowerhalf;
|
|
break;
|
|
#endif
|
|
#ifdef CONFIG_STM32_TIM7
|
|
case 7:
|
|
lower = &g_tim7_lowerhalf;
|
|
break;
|
|
#endif
|
|
#ifdef CONFIG_STM32_TIM8
|
|
case 8:
|
|
lower = &g_tim8_lowerhalf;
|
|
break;
|
|
#endif
|
|
#ifdef CONFIG_STM32_TIM9
|
|
case 9:
|
|
lower = &g_tim9_lowerhalf;
|
|
break;
|
|
#endif
|
|
#ifdef CONFIG_STM32_TIM10
|
|
case 10:
|
|
lower = &g_tim10_lowerhalf;
|
|
break;
|
|
#endif
|
|
#ifdef CONFIG_STM32_TIM11
|
|
case 11:
|
|
lower = &g_tim11_lowerhalf;
|
|
break;
|
|
#endif
|
|
#ifdef CONFIG_STM32_TIM12
|
|
case 12:
|
|
lower = &g_tim12_lowerhalf;
|
|
break;
|
|
#endif
|
|
#ifdef CONFIG_STM32_TIM13
|
|
case 13:
|
|
lower = &g_tim13_lowerhalf;
|
|
break;
|
|
#endif
|
|
#ifdef CONFIG_STM32_TIM14
|
|
case 14:
|
|
lower = &g_tim14_lowerhalf;
|
|
break;
|
|
#endif
|
|
default:
|
|
return -ENODEV;
|
|
}
|
|
|
|
/* Initialize the elements of lower half state structure */
|
|
|
|
lower->started = false;
|
|
lower->usrhandler = NULL;
|
|
lower->tim = stm32_tim_init(timer);
|
|
|
|
if (lower->tim == NULL)
|
|
{
|
|
return -EINVAL;
|
|
}
|
|
|
|
/* Register the timer driver as /dev/timerX. The returned value from
|
|
* timer_register is a handle that could be used with timer_unregister().
|
|
* REVISIT: The returned handle is discard here.
|
|
*/
|
|
|
|
FAR void *drvr = timer_register(devpath,
|
|
(FAR struct timer_lowerhalf_s *)lower);
|
|
if (drvr == NULL)
|
|
{
|
|
/* The actual cause of the failure may have been a failure to allocate
|
|
* perhaps a failure to register the timer driver (such as if the
|
|
* 'depath' were not unique). We know here but we return EEXIST to
|
|
* indicate the failure (implying the non-unique devpath).
|
|
*/
|
|
|
|
return -EEXIST;
|
|
}
|
|
|
|
return OK;
|
|
}
|
|
|
|
#endif /* CONFIG_TIMER */
|