Kevin Kadooka / mbed-dev

Fork of mbed-dev by mbed official

Committer:
kkado
Date:
Tue Jun 20 11:06:37 2017 +0000
Revision:
167:356ef919c855
Parent:
157:ff67d9f36b67
Build 137 with reduced HSE timeout

Who changed what in which revision?

UserRevisionLine numberNew contents of line
<> 157:ff67d9f36b67 1 /*******************************************************************************
<> 157:ff67d9f36b67 2 * Copyright (C) 2016 Maxim Integrated Products, Inc., All Rights Reserved.
<> 157:ff67d9f36b67 3 *
<> 157:ff67d9f36b67 4 * Permission is hereby granted, free of charge, to any person obtaining a
<> 157:ff67d9f36b67 5 * copy of this software and associated documentation files (the "Software"),
<> 157:ff67d9f36b67 6 * to deal in the Software without restriction, including without limitation
<> 157:ff67d9f36b67 7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
<> 157:ff67d9f36b67 8 * and/or sell copies of the Software, and to permit persons to whom the
<> 157:ff67d9f36b67 9 * Software is furnished to do so, subject to the following conditions:
<> 157:ff67d9f36b67 10 *
<> 157:ff67d9f36b67 11 * The above copyright notice and this permission notice shall be included
<> 157:ff67d9f36b67 12 * in all copies or substantial portions of the Software.
<> 157:ff67d9f36b67 13 *
<> 157:ff67d9f36b67 14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
<> 157:ff67d9f36b67 15 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
<> 157:ff67d9f36b67 16 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
<> 157:ff67d9f36b67 17 * IN NO EVENT SHALL MAXIM INTEGRATED BE LIABLE FOR ANY CLAIM, DAMAGES
<> 157:ff67d9f36b67 18 * OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
<> 157:ff67d9f36b67 19 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
<> 157:ff67d9f36b67 20 * OTHER DEALINGS IN THE SOFTWARE.
<> 157:ff67d9f36b67 21 *
<> 157:ff67d9f36b67 22 * Except as contained in this notice, the name of Maxim Integrated
<> 157:ff67d9f36b67 23 * Products, Inc. shall not be used except as stated in the Maxim Integrated
<> 157:ff67d9f36b67 24 * Products, Inc. Branding Policy.
<> 157:ff67d9f36b67 25 *
<> 157:ff67d9f36b67 26 * The mere transfer of this software does not imply any licenses
<> 157:ff67d9f36b67 27 * of trade secrets, proprietary technology, copyrights, patents,
<> 157:ff67d9f36b67 28 * trademarks, maskwork rights, or any other form of intellectual
<> 157:ff67d9f36b67 29 * property whatsoever. Maxim Integrated Products, Inc. retains all
<> 157:ff67d9f36b67 30 * ownership rights.
<> 157:ff67d9f36b67 31 *
<> 157:ff67d9f36b67 32 * $Date: 2016-03-11 11:46:02 -0600 (Fri, 11 Mar 2016) $
<> 157:ff67d9f36b67 33 * $Revision: 21838 $
<> 157:ff67d9f36b67 34 *
<> 157:ff67d9f36b67 35 ******************************************************************************/
<> 157:ff67d9f36b67 36
<> 157:ff67d9f36b67 37 #ifndef _MXC_TPU_REGS_H_
<> 157:ff67d9f36b67 38 #define _MXC_TPU_REGS_H_
<> 157:ff67d9f36b67 39
<> 157:ff67d9f36b67 40 #ifdef __cplusplus
<> 157:ff67d9f36b67 41 extern "C" {
<> 157:ff67d9f36b67 42 #endif
<> 157:ff67d9f36b67 43
<> 157:ff67d9f36b67 44 #include <stdint.h>
<> 157:ff67d9f36b67 45
<> 157:ff67d9f36b67 46 /*
<> 157:ff67d9f36b67 47 If types are not defined elsewhere (CMSIS) define them here
<> 157:ff67d9f36b67 48 */
<> 157:ff67d9f36b67 49 #ifndef __IO
<> 157:ff67d9f36b67 50 #define __IO volatile
<> 157:ff67d9f36b67 51 #endif
<> 157:ff67d9f36b67 52 #ifndef __I
<> 157:ff67d9f36b67 53 #define __I volatile const
<> 157:ff67d9f36b67 54 #endif
<> 157:ff67d9f36b67 55 #ifndef __O
<> 157:ff67d9f36b67 56 #define __O volatile
<> 157:ff67d9f36b67 57 #endif
<> 157:ff67d9f36b67 58 #ifndef __RO
<> 157:ff67d9f36b67 59 #define __RO volatile const
<> 157:ff67d9f36b67 60 #endif
<> 157:ff67d9f36b67 61
<> 157:ff67d9f36b67 62
<> 157:ff67d9f36b67 63 /*
<> 157:ff67d9f36b67 64 Typedefed structure(s) for module registers (per instance or section) with direct 32-bit
<> 157:ff67d9f36b67 65 access to each register in module.
<> 157:ff67d9f36b67 66 */
<> 157:ff67d9f36b67 67
<> 157:ff67d9f36b67 68 /* Offset Register Description
<> 157:ff67d9f36b67 69 ============= ============================================================================ */
<> 157:ff67d9f36b67 70 typedef struct {
<> 157:ff67d9f36b67 71 __RO uint32_t rsv000[4]; /* 0x0000-0x000C */
<> 157:ff67d9f36b67 72 __IO uint32_t sks0; /* 0x0010 TPU Secure Key Storage Register 0 (Cleared on Tamper Detect) */
<> 157:ff67d9f36b67 73 __IO uint32_t sks1; /* 0x0014 TPU Secure Key Storage Register 1 (Cleared on Tamper Detect) */
<> 157:ff67d9f36b67 74 __IO uint32_t sks2; /* 0x0018 TPU Secure Key Storage Register 2 (Cleared on Tamper Detect) */
<> 157:ff67d9f36b67 75 __IO uint32_t sks3; /* 0x001C TPU Secure Key Storage Register 3 (Cleared on Tamper Detect) */
<> 157:ff67d9f36b67 76 } mxc_tpu_tsr_regs_t;
<> 157:ff67d9f36b67 77
<> 157:ff67d9f36b67 78
<> 157:ff67d9f36b67 79 /*
<> 157:ff67d9f36b67 80 Register offsets for module TPU.
<> 157:ff67d9f36b67 81 */
<> 157:ff67d9f36b67 82
<> 157:ff67d9f36b67 83 #define MXC_R_TPU_TSR_OFFS_SKS0 ((uint32_t)0x00000010UL)
<> 157:ff67d9f36b67 84 #define MXC_R_TPU_TSR_OFFS_SKS1 ((uint32_t)0x00000014UL)
<> 157:ff67d9f36b67 85 #define MXC_R_TPU_TSR_OFFS_SKS2 ((uint32_t)0x00000018UL)
<> 157:ff67d9f36b67 86 #define MXC_R_TPU_TSR_OFFS_SKS3 ((uint32_t)0x0000001CUL)
<> 157:ff67d9f36b67 87
<> 157:ff67d9f36b67 88
<> 157:ff67d9f36b67 89 #ifdef __cplusplus
<> 157:ff67d9f36b67 90 }
<> 157:ff67d9f36b67 91 #endif
<> 157:ff67d9f36b67 92
<> 157:ff67d9f36b67 93 #endif /* _MXC_TPU_REGS_H_ */
<> 157:ff67d9f36b67 94