2012-06-28 02:48:00 +02:00
|
|
|
/****************************************************************************
|
2019-08-19 17:16:08 +02:00
|
|
|
* boards/arm/stm32/stm3210e-eval/src/stm32_pmbuttons.c
|
2012-06-28 02:48:00 +02:00
|
|
|
*
|
2016-03-27 21:02:21 +02:00
|
|
|
* Copyright (C) 2012, 2015-2016 Gregory Nutt. All rights reserved.
|
2012-06-28 02:48:00 +02:00
|
|
|
* Authors: Gregory Nutt <gnutt@nuttx.org>
|
|
|
|
* Diego Sanchez <dsanchez@nx-engineering.com>
|
|
|
|
*
|
|
|
|
* 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 <arch/board/board.h>
|
|
|
|
#include <nuttx/config.h>
|
|
|
|
|
2015-02-28 03:02:03 +01:00
|
|
|
#include <nuttx/board.h>
|
2012-06-28 02:48:00 +02:00
|
|
|
#include <nuttx/power/pm.h>
|
|
|
|
#include <arch/irq.h>
|
2015-02-28 03:02:03 +01:00
|
|
|
|
2012-06-28 02:48:00 +02:00
|
|
|
#include <stdbool.h>
|
|
|
|
#include <debug.h>
|
|
|
|
|
2020-05-01 03:20:29 +02:00
|
|
|
#include "arm_arch.h"
|
2012-06-28 02:48:00 +02:00
|
|
|
#include "nvic.h"
|
|
|
|
#include "stm32_pwr.h"
|
|
|
|
#include "stm32_pm.h"
|
2014-11-28 18:35:47 +01:00
|
|
|
#include "stm3210e-eval.h"
|
2012-06-28 02:48:00 +02:00
|
|
|
|
2014-03-04 15:58:01 +01:00
|
|
|
#if defined(CONFIG_PM) && defined(CONFIG_ARCH_IDLE_CUSTOM) && defined(CONFIG_PM_BUTTONS)
|
2012-06-28 02:48:00 +02:00
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Pre-processor Definitions
|
|
|
|
****************************************************************************/
|
|
|
|
/* Configuration ************************************************************/
|
|
|
|
|
|
|
|
#ifndef CONFIG_ARCH_BUTTONS
|
|
|
|
# error "CONFIG_ARCH_BUTTONS is not defined in the configuration"
|
|
|
|
#endif
|
|
|
|
|
2014-11-28 19:05:08 +01:00
|
|
|
#define BUTTON_MIN 0
|
|
|
|
#ifdef CONFIG_DJOYSTICK
|
|
|
|
# define BUTTON_MAX 2
|
2015-07-03 17:33:02 +02:00
|
|
|
#else
|
2014-11-28 19:05:08 +01:00
|
|
|
# define BUTTON_MAX 7
|
|
|
|
#endif
|
2012-06-28 02:48:00 +02:00
|
|
|
|
|
|
|
#ifndef CONFIG_PM_BUTTONS_MIN
|
|
|
|
# define CONFIG_PM_BUTTONS_MIN BUTTON_MIN
|
|
|
|
#endif
|
|
|
|
#ifndef CONFIG_PM_BUTTONS_MAX
|
|
|
|
# define CONFIG_PM_BUTTONS_MAX BUTTON_MAX
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if CONFIG_PM_BUTTONS_MIN > CONFIG_PM_BUTTONS_MAX
|
|
|
|
# error "CONFIG_PM_BUTTONS_MIN > CONFIG_PM_BUTTONS_MAX"
|
|
|
|
#endif
|
2014-11-28 19:05:08 +01:00
|
|
|
|
|
|
|
#if CONFIG_PM_BUTTONS_MAX > BUTTON_MAX
|
|
|
|
# error "CONFIG_PM_BUTTONS_MAX > BUTTON_MAX"
|
2012-06-28 02:48:00 +02:00
|
|
|
#endif
|
|
|
|
|
2012-07-29 20:30:48 +02:00
|
|
|
#ifndef CONFIG_ARCH_IRQBUTTONS
|
|
|
|
# warning "CONFIG_ARCH_IRQBUTTONS is not defined in the configuration"
|
|
|
|
#endif
|
|
|
|
|
2012-06-28 02:48:00 +02:00
|
|
|
#ifndef CONFIG_PM_IRQBUTTONS_MIN
|
|
|
|
# define CONFIG_PM_IRQBUTTONS_MIN CONFIG_PM_BUTTONS_MIN
|
|
|
|
#endif
|
2014-11-28 19:05:08 +01:00
|
|
|
|
2012-06-28 02:48:00 +02:00
|
|
|
#ifndef CONFIG_PM_IRQBUTTONS_MAX
|
|
|
|
# define CONFIG_PM_IRQBUTTONS_MAX CONFIG_PM_BUTTONS_MAX
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if CONFIG_PM_IRQBUTTONS_MIN > CONFIG_PM_IRQBUTTONS_MAX
|
|
|
|
# error "CONFIG_PM_IRQBUTTONS_MIN > CONFIG_PM_IRQBUTTONS_MAX"
|
|
|
|
#endif
|
2014-11-28 19:05:08 +01:00
|
|
|
|
2012-06-28 02:48:00 +02:00
|
|
|
#if CONFIG_PM_IRQBUTTONS_MAX > 7
|
|
|
|
# error "CONFIG_PM_IRQBUTTONS_MAX > 7"
|
|
|
|
#endif
|
|
|
|
|
2012-06-30 02:53:54 +02:00
|
|
|
#ifndef CONFIG_PM_BUTTON_ACTIVITY
|
|
|
|
# define CONFIG_PM_BUTTON_ACTIVITY 10
|
|
|
|
#endif
|
|
|
|
|
2016-03-27 21:02:21 +02:00
|
|
|
#define PM_IDLE_DOMAIN 0 /* Revisit */
|
|
|
|
|
2012-07-05 01:19:59 +02:00
|
|
|
/* Miscellaneous Definitions ************************************************/
|
|
|
|
|
2012-06-28 02:48:00 +02:00
|
|
|
#ifndef MIN
|
|
|
|
# define MIN(a,b) (a < b ? a : b)
|
|
|
|
#endif
|
|
|
|
#ifndef MAX
|
|
|
|
# define MAX(a,b) (a > b ? a : b)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#define MIN_BUTTON MIN(CONFIG_PM_BUTTONS_MIN, CONFIG_PM_IRQBUTTONS_MIN)
|
|
|
|
#define MAX_BUTTON MAX(CONFIG_PM_BUTTONS_MAX, CONFIG_PM_IRQBUTTONS_MAX)
|
|
|
|
|
2012-06-30 02:53:54 +02:00
|
|
|
#define NUM_PMBUTTONS (MAX_BUTTON - MIN_BUTTON + 1)
|
2012-06-28 02:48:00 +02:00
|
|
|
#define BUTTON_INDEX(b) ((b)-MIN_BUTTON)
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Private Types
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Private Function Prototypes
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Private Functions
|
|
|
|
****************************************************************************/
|
|
|
|
|
2017-03-01 15:58:58 +01:00
|
|
|
#ifdef CONFIG_ARCH_IRQBUTTONS
|
2012-07-04 02:06:25 +02:00
|
|
|
/****************************************************************************
|
|
|
|
* Name: button_handler
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Handle a button wake-up interrupt
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
2017-03-01 15:58:58 +01:00
|
|
|
static int button_handler(int irq, FAR void *context, FAR void *arg)
|
2012-06-28 02:48:00 +02:00
|
|
|
{
|
2012-07-12 01:21:16 +02:00
|
|
|
/* At this point the MCU should have already awakened. The state
|
|
|
|
* change will be handled in the IDLE loop when the system is re-awakened
|
|
|
|
* The button interrupt handler should be totally ignorant of the PM
|
|
|
|
* activities and should report button activity as if nothing
|
|
|
|
* special happened.
|
2012-06-30 02:53:54 +02:00
|
|
|
*/
|
|
|
|
|
2016-03-27 21:02:21 +02:00
|
|
|
pm_activity(PM_IDLE_DOMAIN, CONFIG_PM_BUTTON_ACTIVITY);
|
2017-03-01 15:58:58 +01:00
|
|
|
return 0;
|
2012-06-28 02:48:00 +02:00
|
|
|
}
|
|
|
|
#endif /* CONFIG_ARCH_IRQBUTTONS */
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Public Functions
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
2014-11-28 18:35:47 +01:00
|
|
|
* Name: stm32_pmbuttons
|
2012-06-28 02:48:00 +02:00
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Configure all the buttons of the STM3210e-eval board as EXTI,
|
|
|
|
* so any button is able to wakeup the MCU from the PM_STANDBY mode
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
2014-11-28 18:35:47 +01:00
|
|
|
void stm32_pmbuttons(void)
|
2012-06-28 02:48:00 +02:00
|
|
|
{
|
2017-03-05 21:12:03 +01:00
|
|
|
#ifdef CONFIG_ARCH_IRQBUTTONS
|
|
|
|
int ret;
|
|
|
|
int i;
|
|
|
|
#endif
|
|
|
|
|
2012-06-28 02:48:00 +02:00
|
|
|
/* Initialize the button GPIOs */
|
|
|
|
|
2014-01-24 20:50:23 +01:00
|
|
|
board_button_initialize();
|
2012-06-28 02:48:00 +02:00
|
|
|
|
|
|
|
#ifdef CONFIG_ARCH_IRQBUTTONS
|
|
|
|
for (i = CONFIG_PM_IRQBUTTONS_MIN; i <= CONFIG_PM_IRQBUTTONS_MAX; i++)
|
|
|
|
{
|
2017-03-05 21:12:03 +01:00
|
|
|
ret = board_button_irq(i, button_handler, (void*)i);
|
|
|
|
if (ret < 0)
|
2012-06-28 02:48:00 +02:00
|
|
|
{
|
2017-03-05 21:12:03 +01:00
|
|
|
serr("ERROR: board_button_irq failed: %d\n", ret);
|
2012-06-28 02:48:00 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2014-03-04 15:58:01 +01:00
|
|
|
#endif /* defined(CONFIG_PM) && defined(CONFIG_ARCH_IDLE_CUSTOM) && defined(CONFIG_PM_BUTTONS) */
|