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
|
|
|
*
|
2021-08-16 10:30:10 +02:00
|
|
|
* 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
|
2012-06-28 02:48:00 +02:00
|
|
|
*
|
2021-08-16 10:30:10 +02:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2012-06-28 02:48:00 +02:00
|
|
|
*
|
2021-08-16 10:30:10 +02:00
|
|
|
* 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.
|
2012-06-28 02:48:00 +02:00
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* 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
|
|
|
|
****************************************************************************/
|
2021-04-06 12:13:09 +02:00
|
|
|
|
2012-06-28 02:48:00 +02:00
|
|
|
/* 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
|
2021-04-08 11:24:25 +02:00
|
|
|
#ifdef CONFIG_INPUT_DJOYSTICK
|
2014-11-28 19:05:08 +01:00
|
|
|
# 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
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
2021-04-06 12:13:09 +02:00
|
|
|
|
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++)
|
|
|
|
{
|
2021-04-06 12:13:09 +02:00
|
|
|
ret = board_button_irq(i, button_handler, (void *)i);
|
2017-03-05 21:12:03 +01:00
|
|
|
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) */
|