Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

LPC1768 Watchdog & Reset Reason #11226

Merged
merged 4 commits into from Aug 20, 2019
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
62 changes: 62 additions & 0 deletions targets/TARGET_NXP/TARGET_LPC176X/reset_reason.c
@@ -0,0 +1,62 @@
/* mbed Microcontroller Library
* Copyright (c) 2006-2017 ARM Limited
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

New files, 2019 year. Can you also use SPDX idenfier? Check platform files for the proper license

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Done

*
* 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.
*/
#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
67 changes: 67 additions & 0 deletions targets/TARGET_NXP/TARGET_LPC176X/watchdog_api.c
@@ -0,0 +1,67 @@
/* mbed Microcontroller Library
* Copyright (c) 2006-2018 ARM Limited
*
* 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.
*/


#ifdef DEVICE_WATCHDOG

#include "watchdog_api.h"
#include "reset_reason_api.h"
#include "device.h"
#include "mbed_error.h"
#include <stdbool.h>



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
16 changes: 12 additions & 4 deletions targets/targets.json
Expand Up @@ -624,7 +624,9 @@
"STDIO_MESSAGES",
"FLASH",
"MPU",
"USBDEVICE"
"USBDEVICE",
"WATCHDOG",
"RESET_REASON"
],
"release_versions": ["2", "5"],
"device_name": "LPC1768",
Expand Down Expand Up @@ -673,7 +675,9 @@
"FLASH",
"MPU",
"USBDEVICE",
"USTICKER"
"USTICKER",
"WATCHDOG",
"RESET_REASON"
],
"release_versions": ["2", "5"],
"device_name": "LPC1768",
Expand Down Expand Up @@ -723,7 +727,9 @@
"SPISLAVE",
"STDIO_MESSAGES",
"FLASH",
"MPU"
"MPU",
"WATCHDOG",
"RESET_REASON"
],
"release_versions": ["2", "5"],
"device_name": "LPC1768",
Expand Down Expand Up @@ -761,7 +767,9 @@
"SPISLAVE",
"STDIO_MESSAGES",
"FLASH",
"MPU"
"MPU",
"WATCHDOG",
"RESET_REASON"
],
"device_name": "LPC1768"
},
Expand Down