Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
NuttX RTOS
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container Registry
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
f4grx
NuttX RTOS
Commits
3dfe0f30
Commit
3dfe0f30
authored
7 years ago
by
Gregory Nutt
Browse files
Options
Downloads
Patches
Plain Diff
arch/arm/src/lpc54xx: Add WWDT header file.
parent
face14b0
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
arch/arm/src/lpc54xx/chip/lpc546x_memorymap.h
+1
-1
1 addition, 1 deletion
arch/arm/src/lpc54xx/chip/lpc546x_memorymap.h
arch/arm/src/lpc54xx/chip/lpc54_wwdt.h
+100
-0
100 additions, 0 deletions
arch/arm/src/lpc54xx/chip/lpc54_wwdt.h
with
101 additions
and
1 deletion
arch/arm/src/lpc54xx/chip/lpc546x_memorymap.h
+
1
−
1
View file @
3dfe0f30
...
...
@@ -114,7 +114,7 @@
#define LPC54_MUX_BASE 0x40005000
/* Input muxes */
#define LPC54_CTIMER0_BASE 0x40008000
/* CTIMER0 */
#define LPC54_CTIMER1_BASE 0x40009000
/* CTIMER1 */
#define LPC54_WDT_BASE
0x4000c000
/* WDT */
#define LPC54_
W
WDT_BASE 0x4000c000
/* WDT */
#define LPC54_MRT_BASE 0x4000d000
/* MRT */
#define LPC54_MTICK_BASE 0x4000e000
/* Micro-Tick */
#define LPC54_EEPROMC_BASE 0x40014000
/* EEPROM controller */
...
...
This diff is collapsed.
Click to expand it.
arch/arm/src/lpc54xx/chip/lpc54_wwdt.h
0 → 100644
+
100
−
0
View file @
3dfe0f30
/************************************************************************************
* arch/arm/src/lpc54xx/lpc54_wwdt.h
*
* Copyright (C) 2017 Gregory Nutt. All rights reserved.
* Author: Gregory Nutt <gnutt@nuttx.org>
*
* 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.
*
************************************************************************************/
#ifndef __ARCH_ARM_SRC_LPC54XX_CHIP_LPC54_WWDT_H
#define __ARCH_ARM_SRC_LPC54XX_CHIP_LPC54_WWDT_H
/************************************************************************************
* Included Files
************************************************************************************/
#include
<nuttx/config.h>
/************************************************************************************
* Pre-processor Definitions
************************************************************************************/
/* Register offsets *****************************************************************/
#define LPC54_WWDT_MOD_OFFSET 0x0000
/* Watchdog mode register */
#define LPC54_WWDT_TC_OFFSET 0x0004
/* Watchdog timer constant register */
#define LPC54_WWDT_FEED_OFFSET 0x0008
/* Watchdog feed sequence register */
#define LPC54_WWDT_TV_OFFSET 0x000c
/* Watchdog timer value register */
#define LPC54_WWDT_WARNINT_OFFSET 0x0014
/* Watchdog warning interrupt register */
#define LPC54_WWDT_WINDOW_OFFSET 0x0018
/* Watchdog timer window register */
/* Register addresses ***************************************************************/
#define LPC54_WWDT_MOD (LPC54_WWDT_BASE+LPC54_WWDT_MOD_OFFSET)
#define LPC54_WWDT_TC (LPC54_WWDT_BASE+LPC54_WWDT_TC_OFFSET)
#define LPC54_WWDT_FEED (LPC54_WWDT_BASE+LPC54_WWDT_FEED_OFFSET)
#define LPC54_WWDT_TV (LPC54_WWDT_BASE+LPC54_WWDT_TV_OFFSET)
#define LPC54_WWDT_WDCLKSEL (LPC54_WWDT_BASE+LPC54_WWDT_WDCLKSEL_OFFSET)
#define LPC54_WWDT_WARNINT (LPC54_WWDT_BASE+LPC54_WWDT_WARNINT_OFFSET)
#define LPC54_WWDT_WINDOW (LPC54_WWDT_BASE+LPC54_WWDT_WINDOW_OFFSET)
/* Register bit definitions *********************************************************/
/* Watchdog mode register */
#define WWDT_MOD_WDEN (1 << 0)
/* Bit 0: Watchdog enable */
#define WWDT_MOD_WDRESET (1 << 1)
/* Bit 1: Watchdog reset enable */
#define WWDT_MOD_WDTOF (1 << 2)
/* Bit 2: Watchdog time-out */
#define WWDT_MOD_WDINT (1 << 3)
/* Bit 3: Watchdog interrupt */
#define WWDT_MOD_WDPROTECT (1 << 4)
/* Bit 4: Watchdog update mode */
#define WWDT_MOD_WDPROTECT (1 << 5)
/* Bit 5: Watchdog lock */
/* Bits 6-31: Reserved */
/* Watchdog timer constant register */
#define WWDT_TC_MASK 0x00ffffff
/* Bits 0-23: Watchdog time-out value */
/* Bits 24-31: Reserved */
/* Watchdog feed sequence register */
#define WWDT_FEED_MASK 0xff
/* Bits 0-7: Feed value: 0xaa followed by 0x55 */
/* Bits 14-31: Reserved */
/* Watchdog timer value register */
#define WWDT_TV_MASK 0x00ffffff
/* Bits 0-23: Counter timer value */
/* Bits 24-31: Reserved */
/* Watchdog warning interrupt register */
#define WWDT_WARNINT_MASK 0x03ff
/* Bits 0-9: Watchdog warning compare value */
/* Bits 10-31: Reserved */
/* Watchdog timer window register */
#define WWDT_WINDOW_MASK 0x00ffffff
/* Bits 0-23: Watchdog window value */
/* Bits 24-31: Reserved */
#endif
/* __ARCH_ARM_SRC_LPC54XX_CHIP_LPC54_WWDT_H */
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment