d42fc094fa
arm: stm32: codestyle fixes * arm: stm32f0l0g0: codestyle fixes After the board restructuration is time for codestyle cleanup Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com> * arm: stm32f7: codestyle fixes After the board restructuration is time for codestyle cleanup Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com> * arm: stm32h7: codestyle fixes After the board restructuration is time for codestyle cleanup Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com> * arm: stm32l4: codestyle fixes After the board restructuration is time for codestyle cleanup Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com> * arm: stm32: codestyle fixes After the board restructuration is time for codestyle cleanup Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com> Approved-by: Gregory Nutt <gnutt@nuttx.org>
334 lines
10 KiB
C
334 lines
10 KiB
C
/****************************************************************************
|
|
* boards/arm/stm32l4/stm32l476vg-disco/src/stm32_buttons.c
|
|
*
|
|
* Copyright (C) 2016-2017 Gregory Nutt. All rights reserved.
|
|
* Author: dev@ziggurat29.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 <nuttx/config.h>
|
|
|
|
#include <stdint.h>
|
|
#include <errno.h>
|
|
|
|
#include <nuttx/arch.h>
|
|
#include <nuttx/board.h>
|
|
#include <arch/board/board.h>
|
|
#include <nuttx/power/pm.h>
|
|
|
|
#include "stm32l476vg-disco.h"
|
|
|
|
#ifdef CONFIG_ARCH_BUTTONS
|
|
|
|
/****************************************************************************
|
|
* Pre-processor Definitions
|
|
****************************************************************************/
|
|
|
|
#ifndef CONFIG_PM_BUTTON_ACTIVITY
|
|
# define CONFIG_PM_BUTTON_ACTIVITY 10
|
|
#endif
|
|
|
|
#define PM_IDLE_DOMAIN 0 /* Revisit */
|
|
|
|
/****************************************************************************
|
|
* Private Function Prototypes
|
|
****************************************************************************/
|
|
|
|
/* Button Power Management */
|
|
|
|
#ifdef CONFIG_PM
|
|
static void button_pm_notify(struct pm_callback_s *cb, int domain,
|
|
enum pm_state_e pmstate);
|
|
static int button_pm_prepare(struct pm_callback_s *cb, int domain,
|
|
enum pm_state_e pmstate);
|
|
#endif
|
|
|
|
/****************************************************************************
|
|
* Private Data
|
|
****************************************************************************/
|
|
|
|
/* Pin configuration for each STM32L476 Discovery button. This array is
|
|
* indexed by the BUTTON_* definitions in board.h
|
|
*/
|
|
|
|
static const uint32_t g_buttons[NUM_BUTTONS] =
|
|
{
|
|
GPIO_BTN_CENTER,
|
|
GPIO_BTN_LEFT,
|
|
GPIO_BTN_DOWN,
|
|
GPIO_BTN_RIGHT,
|
|
GPIO_BTN_UP
|
|
};
|
|
|
|
#ifdef CONFIG_PM
|
|
static struct pm_callback_s g_buttonscb =
|
|
{
|
|
.notify = button_pm_notify,
|
|
.prepare = button_pm_prepare,
|
|
};
|
|
#endif
|
|
|
|
/****************************************************************************
|
|
* Private Functions
|
|
****************************************************************************/
|
|
|
|
/****************************************************************************
|
|
* Name: button_pm_notify
|
|
*
|
|
* Description:
|
|
* Notify the driver of new power state. This callback is called after
|
|
* all drivers have had the opportunity to prepare for the new power state.
|
|
*
|
|
****************************************************************************/
|
|
|
|
#ifdef CONFIG_PM
|
|
static void button_pm_notify(struct pm_callback_s *cb, int domain,
|
|
enum pm_state_e pmstate)
|
|
{
|
|
switch (pmstate)
|
|
{
|
|
case(PM_NORMAL):
|
|
{
|
|
/* Restore normal buttons operation */
|
|
//XXX turn on any GPIO
|
|
}
|
|
break;
|
|
|
|
case(PM_IDLE):
|
|
{
|
|
/* Entering IDLE mode - buttons */
|
|
//XXX turn on any GPIO
|
|
}
|
|
break;
|
|
|
|
case(PM_STANDBY):
|
|
{
|
|
/* Entering STANDBY mode - Logic for PM_STANDBY goes here */
|
|
//XXX turn off any GPIO
|
|
}
|
|
break;
|
|
|
|
case(PM_SLEEP):
|
|
{
|
|
/* Entering SLEEP mode - Logic for PM_SLEEP goes here */
|
|
//XXX turn off any GPIO
|
|
}
|
|
break;
|
|
|
|
default:
|
|
{
|
|
/* Should not get here */
|
|
|
|
}
|
|
break;
|
|
}
|
|
}
|
|
#endif
|
|
|
|
/****************************************************************************
|
|
* Name: button_handler
|
|
*
|
|
* Description:
|
|
* Handle a button wake-up interrupt
|
|
*
|
|
****************************************************************************/
|
|
/* XXX it's not completely clear to me if this is appropriate; on the one
|
|
* hand, it seems to make sense that this would be the module to have the ISR
|
|
* for the buttons. On the other hand, it will conflict with things done in
|
|
* the buttons example, which registers it's own ISR, and warns if it sees
|
|
* one already there. I don't know if 'buttons' is overstepping it's bounds
|
|
* in the interst of providing a compact example, (like the I2C app directly
|
|
* talking to the bus), or if really that should be an expected thing to do.
|
|
*/
|
|
|
|
#if 0
|
|
#ifdef CONFIG_ARCH_IRQBUTTONS
|
|
static int button_handler(int irq, FAR void *context, FAR void *arg)
|
|
{
|
|
#ifdef CONFIG_PM
|
|
/* 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.
|
|
*/
|
|
|
|
pm_activity(PM_IDLE_DOMAIN, CONFIG_PM_BUTTON_ACTIVITY);
|
|
#endif
|
|
return OK;
|
|
}
|
|
#endif /* CONFIG_ARCH_IRQBUTTONS */
|
|
#endif
|
|
|
|
/****************************************************************************
|
|
* Name: button_pm_prepare
|
|
*
|
|
* Description:
|
|
* Request the driver to prepare for a new power state. This is a warning
|
|
* that the system is about to enter into a new power state. The driver
|
|
* should begin whatever operations that may be required to enter power
|
|
* state. The driver may abort the state change mode by returning a
|
|
* non-zero value from the callback function.
|
|
*
|
|
****************************************************************************/
|
|
|
|
#ifdef CONFIG_PM
|
|
static int button_pm_prepare(struct pm_callback_s *cb, int domain,
|
|
enum pm_state_e pmstate)
|
|
{
|
|
/* No preparation to change power modes is required by the Buttons driver.
|
|
* We always accept the state change by returning OK.
|
|
*/
|
|
|
|
return OK;
|
|
}
|
|
#endif
|
|
|
|
/****************************************************************************
|
|
* Public Functions
|
|
****************************************************************************/
|
|
|
|
/****************************************************************************
|
|
* Name: board_button_initialize
|
|
*
|
|
* Description:
|
|
* board_button_initialize() must be called to initialize button resources.
|
|
* After that, board_buttons() may be called to collect the current state
|
|
* of all buttons or board_button_irq() may be called to register button
|
|
* interrupt handlers.
|
|
*
|
|
****************************************************************************/
|
|
|
|
void board_button_initialize(void)
|
|
{
|
|
int i;
|
|
|
|
/* Configure the GPIO pins as inputs. NOTE that EXTI interrupts are
|
|
* configured for all pins.
|
|
*/
|
|
|
|
for (i = 0; i < NUM_BUTTONS; i++)
|
|
{
|
|
stm32l4_configgpio(g_buttons[i]);
|
|
|
|
/* It's not clear if this is correct; I think so, but then there are
|
|
* conflicts with the 'buttons' sample app.
|
|
*/
|
|
|
|
#if 0
|
|
#ifdef CONFIG_ARCH_IRQBUTTONS
|
|
(void)board_button_irq(i, button_handler);
|
|
#endif
|
|
#endif
|
|
}
|
|
}
|
|
|
|
/****************************************************************************
|
|
* Name: board_buttons
|
|
****************************************************************************/
|
|
|
|
uint32_t board_buttons(void)
|
|
{
|
|
uint32_t ret = 0;
|
|
int i;
|
|
|
|
/* Check that state of each key */
|
|
|
|
for (i = 0; i < NUM_BUTTONS; i++)
|
|
{
|
|
/* A HIGH value means that the key is pressed. */
|
|
|
|
bool pressed = stm32l4_gpioread(g_buttons[i]);
|
|
|
|
/* Accumulate the set of depressed (not released) keys */
|
|
|
|
if (pressed)
|
|
{
|
|
ret |= (1 << i);
|
|
}
|
|
}
|
|
|
|
#ifdef CONFIG_PM
|
|
/* if the user pressed any buttons, notify power management system we are
|
|
* active
|
|
*/
|
|
|
|
if (0 != ret)
|
|
{
|
|
pm_activity(PM_IDLE_DOMAIN, CONFIG_PM_BUTTON_ACTIVITY);
|
|
}
|
|
#endif
|
|
|
|
return ret;
|
|
}
|
|
|
|
/****************************************************************************
|
|
* Button support.
|
|
*
|
|
* Description:
|
|
* board_button_initialize() must be called to initialize button resources. After
|
|
* that, board_buttons() may be called to collect the current state of all
|
|
* buttons or board_button_irq() may be called to register button interrupt
|
|
* handlers.
|
|
*
|
|
* After board_button_initialize() has been called, board_buttons() may be called to
|
|
* collect the state of all buttons. board_buttons() returns an 32-bit bit set
|
|
* with each bit associated with a button. See the BUTTON_*_BIT
|
|
* definitions in board.h for the meaning of each bit.
|
|
*
|
|
* board_button_irq() may be called to register an interrupt handler that will
|
|
* be called when a button is depressed or released. The ID value is a
|
|
* button enumeration value that uniquely identifies a button resource. See the
|
|
* BUTTON_* definitions in board.h for the meaning of enumeration
|
|
* value.
|
|
*
|
|
****************************************************************************/
|
|
|
|
#ifdef CONFIG_ARCH_IRQBUTTONS
|
|
int board_button_irq(int id, xcpt_t irqhandler, FAR void *arg)
|
|
{
|
|
int ret = -EINVAL;
|
|
|
|
/* The following should be atomic */
|
|
|
|
if (id >= MIN_IRQBUTTON && id <= MAX_IRQBUTTON)
|
|
{
|
|
ret = stm32l4_gpiosetevent(g_buttons[id], true, true, true, irqhandler, arg);
|
|
}
|
|
|
|
return ret;
|
|
}
|
|
#endif
|
|
#endif /* CONFIG_ARCH_BUTTONS */
|