From 70f99585d8ed9ef57819480aad34165ae2f063fc Mon Sep 17 00:00:00 2001 From: Phil Coval Date: Sun, 7 Jul 2019 16:30:26 +0000 Subject: [PATCH] Merged in rzr/nuttx/sandbox/rzr/review/master (pull request #940) nucleo-144: Add reset feature Code is aligned from configs/stm32f4discovery/src/stm32_reset.c It can be enabled using CONFIG_BOARDCTL_RESET Change-Id: I296a628490abec102ef4bacb26b0356f970f226d Signed-off-by: Philippe Coval Approved-by: Gregory Nutt --- configs/nucleo-144/src/Makefile | 4 ++ configs/nucleo-144/src/stm32_reset.c | 78 ++++++++++++++++++++++++++++ 2 files changed, 82 insertions(+) create mode 100644 configs/nucleo-144/src/stm32_reset.c diff --git a/configs/nucleo-144/src/Makefile b/configs/nucleo-144/src/Makefile index fe83ebe267..23d02d7119 100644 --- a/configs/nucleo-144/src/Makefile +++ b/configs/nucleo-144/src/Makefile @@ -81,6 +81,10 @@ ifeq ($(CONFIG_STM32F7_BBSRAM),y) CSRCS += stm32_bbsram.c endif +ifeq ($(CONFIG_BOARDCTL_RESET),y) +CSRCS += stm32_reset.c +endif + ifeq ($(CONFIG_STM32_ROMFS),y) CSRCS += stm32_romfs_initialize.c endif diff --git a/configs/nucleo-144/src/stm32_reset.c b/configs/nucleo-144/src/stm32_reset.c new file mode 100644 index 0000000000..3a8f1b5a17 --- /dev/null +++ b/configs/nucleo-144/src/stm32_reset.c @@ -0,0 +1,78 @@ +/**************************************************************************** + * configs/nucleo-144/src/stm32_reset.c + * + * Copyright (C) 2019 Gregory Nutt. All rights reserved. + * Author: Gregory Nutt + * Author: Philippe Coval + * + * 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 + +#include +#include + +#ifdef CONFIG_BOARDCTL_RESET + +/**************************************************************************** + * Public functions + ****************************************************************************/ + +/**************************************************************************** + * Name: board_reset + * + * Description: + * Reset board. Support for this function is required by board-level + * logic if CONFIG_BOARDCTL_RESET is selected. + * + * Input Parameters: + * status - Status information provided with the reset event. This + * meaning of this status information is board-specific. If not + * used by a board, the value zero may be provided in calls to + * board_reset(). + * + * Returned Value: + * If this function returns, then it was not possible to power-off the + * board due to some constraints. The return value int this case is a + * board-specific reason for the failure to shutdown. + * + ****************************************************************************/ + +int board_reset(int status) +{ + up_systemreset(); + return 0; +} + +#endif /* CONFIG_BOARDCTL_RESET */