dw_wdt.h 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. /*
  2. * Copyright (C) 2017 C-SKY Microsystems Co., Ltd. All rights reserved.
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. */
  16. /******************************************************************************
  17. * @file dw_wdt.h
  18. * @brief header file for wdt driver
  19. * @version V1.0
  20. * @date 02. June 2017
  21. ******************************************************************************/
  22. #ifndef __DW_WDT_H
  23. #define __DW_WDT_H
  24. #include <stdio.h>
  25. #include "soc.h"
  26. #define DW_WDT_CRR_RESET 0x76
  27. typedef struct {
  28. __IOM uint8_t WDT_CR:5; /* Offset: 0x000 (R/W) WDT control register */
  29. uint8_t RESERVED0[3];
  30. __IOM uint8_t WDT_TORR; /* Offset: 0x004 (R/W) WDT timeout range register */
  31. uint8_t RESERVED1[3];
  32. __IM uint32_t WDT_CCVR; /* Offset: 0x008 (R/ ) WDT current counter value register */
  33. __OM uint8_t WDT_CRR:8; /* Offset: 0x00C ( /W) WDT count restart register */
  34. uint8_t RESERVED2[3];
  35. __IM uint8_t WDT_STAT:1; /* Offset: 0x010 (R/ ) WDT interrupt status register */
  36. uint8_t RESERVED3[3];
  37. __IM uint8_t WDT_EOI:1; /* Offset: 0x014 (R/ ) WDT interrupt clear register */
  38. uint8_t RESERVED4[3];
  39. } dw_wdt_reg_t;
  40. #endif /* __DW_WDT_H */