diff --git a/targets/TARGET_NXP/TARGET_LPC176X/reset_reason.c b/targets/TARGET_NXP/TARGET_LPC176X/reset_reason.c new file mode 100644 index 00000000000..a6a5d4f8cc4 --- /dev/null +++ b/targets/TARGET_NXP/TARGET_LPC176X/reset_reason.c @@ -0,0 +1,67 @@ +/* Copyright (c) 2017-2019 ARM Limited + * SPDX-License-Identifier: Apache-2.0 + * + * Licensed 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 + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * 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. + * + * @section DESCRIPTION + * + * LPC1768 Reset Reason + * + */ +#include "reset_reason_api.h" + +#ifdef DEVICE_RESET_REASON + +#include "device.h" + +reset_reason_t hal_reset_reason_get(void) +{ + if (LPC_SC->RSID & (1<<0)) { + return RESET_REASON_POWER_ON; + } + + if (LPC_SC->RSID & (1<<1)) { + return RESET_REASON_PIN_RESET; + } + if (LPC_SC->RSID & (1<<2)) { + return RESET_REASON_WATCHDOG; + } + + if (LPC_SC->RSID & (1<<3)) { + return RESET_REASON_BROWN_OUT; + } + if (LPC_SC->RSID & (1<<4)) { + return RESET_REASON_SOFTWARE; + } + + if (LPC_SC->RSID & (1<<5)) { + return RESET_REASON_LOCKUP; + } + + return RESET_REASON_UNKNOWN; +} + + +uint32_t hal_reset_reason_get_raw(void) +{ + + return LPC_SC->RSID; +} + + +void hal_reset_reason_clear(void) +{ + LPC_SC->RSID = 0xff; // Clear flags +} + +#endif // DEVICE_RESET_REASON diff --git a/targets/TARGET_NXP/TARGET_LPC176X/watchdog_api.c b/targets/TARGET_NXP/TARGET_LPC176X/watchdog_api.c new file mode 100644 index 00000000000..40172d6e760 --- /dev/null +++ b/targets/TARGET_NXP/TARGET_LPC176X/watchdog_api.c @@ -0,0 +1,70 @@ +/* Copyright (c) 2017-2019 ARM Limited + * SPDX-License-Identifier: Apache-2.0 + * + * Licensed 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 + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * 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. + * + * @section DESCRIPTION + * + * LPC1768 Watchdog + * + */ +#ifdef DEVICE_WATCHDOG + +#include "watchdog_api.h" +#include "reset_reason_api.h" +#include "device.h" +#include "mbed_error.h" +#include + + + +watchdog_status_t hal_watchdog_init(const watchdog_config_t *config) +{ + LPC_WDT->WDCLKSEL = 0x1; //CLK src to PCLK + uint32_t clk = SystemCoreClock / 16; // WD has a fixed /4 prescaler, PCLK default is /4 + LPC_WDT->WDTC = ((float)config->timeout_ms )* clk/1000; + LPC_WDT->WDMOD = 0x3; // Enable and Reset + hal_watchdog_kick(); + + return WATCHDOG_STATUS_OK; +} + +void hal_watchdog_kick(void) +{ + LPC_WDT->WDFEED = 0xAA; + LPC_WDT->WDFEED = 0x55; +} +watchdog_status_t hal_watchdog_stop(void) +{ + return WATCHDOG_STATUS_NOT_SUPPORTED; +} + +uint32_t hal_watchdog_get_reload_value(void) +{ + uint32_t clk = SystemCoreClock / 16; // WD has a fixed /4 prescaler, PCLK default is /4 + + return (float)LPC_WDT->WDTC/clk*1000; +} + +watchdog_features_t hal_watchdog_get_platform_features(void) +{ + uint32_t clk = SystemCoreClock / 16; // WD has a fixed /4 prescaler, PCLK default is /4 + watchdog_features_t features; + features.max_timeout = ((float)INT32_MAX/clk)*1000; + features.update_config = true; + features.disable_watchdog = false; + + return features; +} + +#endif // DEVICE_WATCHDOG diff --git a/targets/targets.json b/targets/targets.json index 91b4ae463a4..670724570e2 100644 --- a/targets/targets.json +++ b/targets/targets.json @@ -624,7 +624,9 @@ "STDIO_MESSAGES", "FLASH", "MPU", - "USBDEVICE" + "USBDEVICE", + "WATCHDOG", + "RESET_REASON" ], "release_versions": ["2", "5"], "device_name": "LPC1768", @@ -673,7 +675,9 @@ "FLASH", "MPU", "USBDEVICE", - "USTICKER" + "USTICKER", + "WATCHDOG", + "RESET_REASON" ], "release_versions": ["2", "5"], "device_name": "LPC1768", @@ -723,7 +727,9 @@ "SPISLAVE", "STDIO_MESSAGES", "FLASH", - "MPU" + "MPU", + "WATCHDOG", + "RESET_REASON" ], "release_versions": ["2", "5"], "device_name": "LPC1768", @@ -761,7 +767,9 @@ "SPISLAVE", "STDIO_MESSAGES", "FLASH", - "MPU" + "MPU", + "WATCHDOG", + "RESET_REASON" ], "device_name": "LPC1768" },