mbed library sources

Dependents:   Marvino mbot

Fork of mbed-src by mbed official

Committer:
jaerts
Date:
Tue Dec 22 13:22:16 2015 +0000
Revision:
637:ed69428d4850
Parent:
507:d4fc7603a669
Add very shady LPC1768 CAN Filter implementation

Who changed what in which revision?

UserRevisionLine numberNew contents of line
mbed_official 507:d4fc7603a669 1 /*******************************************************************************
mbed_official 507:d4fc7603a669 2 * Copyright (C) 2015 Maxim Integrated Products, Inc., All Rights Reserved.
mbed_official 507:d4fc7603a669 3 *
mbed_official 507:d4fc7603a669 4 * Permission is hereby granted, free of charge, to any person obtaining a
mbed_official 507:d4fc7603a669 5 * copy of this software and associated documentation files (the "Software"),
mbed_official 507:d4fc7603a669 6 * to deal in the Software without restriction, including without limitation
mbed_official 507:d4fc7603a669 7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
mbed_official 507:d4fc7603a669 8 * and/or sell copies of the Software, and to permit persons to whom the
mbed_official 507:d4fc7603a669 9 * Software is furnished to do so, subject to the following conditions:
mbed_official 507:d4fc7603a669 10 *
mbed_official 507:d4fc7603a669 11 * The above copyright notice and this permission notice shall be included
mbed_official 507:d4fc7603a669 12 * in all copies or substantial portions of the Software.
mbed_official 507:d4fc7603a669 13 *
mbed_official 507:d4fc7603a669 14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
mbed_official 507:d4fc7603a669 15 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
mbed_official 507:d4fc7603a669 16 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
mbed_official 507:d4fc7603a669 17 * IN NO EVENT SHALL MAXIM INTEGRATED BE LIABLE FOR ANY CLAIM, DAMAGES
mbed_official 507:d4fc7603a669 18 * OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
mbed_official 507:d4fc7603a669 19 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
mbed_official 507:d4fc7603a669 20 * OTHER DEALINGS IN THE SOFTWARE.
mbed_official 507:d4fc7603a669 21 *
mbed_official 507:d4fc7603a669 22 * Except as contained in this notice, the name of Maxim Integrated
mbed_official 507:d4fc7603a669 23 * Products, Inc. shall not be used except as stated in the Maxim Integrated
mbed_official 507:d4fc7603a669 24 * Products, Inc. Branding Policy.
mbed_official 507:d4fc7603a669 25 *
mbed_official 507:d4fc7603a669 26 * The mere transfer of this software does not imply any licenses
mbed_official 507:d4fc7603a669 27 * of trade secrets, proprietary technology, copyrights, patents,
mbed_official 507:d4fc7603a669 28 * trademarks, maskwork rights, or any other form of intellectual
mbed_official 507:d4fc7603a669 29 * property whatsoever. Maxim Integrated Products, Inc. retains all
mbed_official 507:d4fc7603a669 30 * ownership rights.
mbed_official 507:d4fc7603a669 31 *******************************************************************************
mbed_official 507:d4fc7603a669 32 */
mbed_official 507:d4fc7603a669 33
mbed_official 507:d4fc7603a669 34 #ifndef _MXC_USB_REGS_H_
mbed_official 507:d4fc7603a669 35 #define _MXC_USB_REGS_H_
mbed_official 507:d4fc7603a669 36
mbed_official 507:d4fc7603a669 37 #ifdef __cplusplus
mbed_official 507:d4fc7603a669 38 extern "C" {
mbed_official 507:d4fc7603a669 39 #endif
mbed_official 507:d4fc7603a669 40
mbed_official 507:d4fc7603a669 41 #include <stdint.h>
mbed_official 507:d4fc7603a669 42
mbed_official 507:d4fc7603a669 43 /**
mbed_official 507:d4fc7603a669 44 * @file usb_regs.h
mbed_official 507:d4fc7603a669 45 * @addtogroup usb USB
mbed_official 507:d4fc7603a669 46 * @{
mbed_official 507:d4fc7603a669 47 */
mbed_official 507:d4fc7603a669 48
mbed_official 507:d4fc7603a669 49 /* Offset Register Description
mbed_official 507:d4fc7603a669 50 ====== ================================================ */
mbed_official 507:d4fc7603a669 51 typedef struct {
mbed_official 507:d4fc7603a669 52 __IO uint32_t cn; /* 0x0000 USB Control Register */
mbed_official 507:d4fc7603a669 53 __I uint32_t rsv0004[127]; /* 0x0004 */
mbed_official 507:d4fc7603a669 54 __IO uint32_t dev_addr; /* 0x0200 USB Device Address Register */
mbed_official 507:d4fc7603a669 55 __IO uint32_t dev_cn; /* 0x0204 USB Device Control Register */
mbed_official 507:d4fc7603a669 56 __IO uint32_t dev_intfl; /* 0x0208 USB Device Interrupt */
mbed_official 507:d4fc7603a669 57 __IO uint32_t dev_inten; /* 0x020C USB Device Interrupt Enable */
mbed_official 507:d4fc7603a669 58 __I uint32_t rsv0210[4]; /* 0x0210 */
mbed_official 507:d4fc7603a669 59 __IO uint32_t ep_base; /* 0x0220 USB Endpoint Descriptor Table Base Address */
mbed_official 507:d4fc7603a669 60 __IO uint32_t cur_buf; /* 0x0224 USB Current Endpoint Buffer Register */
mbed_official 507:d4fc7603a669 61 __IO uint32_t in_owner; /* 0x0228 USB IN Endpoint Buffer Owner Register */
mbed_official 507:d4fc7603a669 62 __IO uint32_t out_owner; /* 0x022C USB OUT Endpoint Buffer Owner Register */
mbed_official 507:d4fc7603a669 63 __IO uint32_t in_int; /* 0x0230 USB IN Endpoint Buffer Available Interrupt */
mbed_official 507:d4fc7603a669 64 __IO uint32_t out_int; /* 0x0234 USB OUT Endpoint Data Available Interrupt */
mbed_official 507:d4fc7603a669 65 __IO uint32_t nak_int; /* 0x0238 USB IN Endpoint NAK Interrupt */
mbed_official 507:d4fc7603a669 66 __IO uint32_t dma_err_int; /* 0x023C USB DMA Error Interrupt */
mbed_official 507:d4fc7603a669 67 __IO uint32_t buf_ovr_int; /* 0x0240 USB Buffer Overflow Interrupt */
mbed_official 507:d4fc7603a669 68 __I uint32_t rsv0244[7]; /* 0x0244 */
mbed_official 507:d4fc7603a669 69 __IO uint32_t setup0; /* 0x0260 USB SETUP Packet Bytes 0 to 3 */
mbed_official 507:d4fc7603a669 70 __IO uint32_t setup1; /* 0x0264 USB SETUP Packet Bytes 4 to 7 */
mbed_official 507:d4fc7603a669 71 __I uint32_t rsv0268[6]; /* 0x0268 */
mbed_official 507:d4fc7603a669 72 __IO uint32_t ep[MXC_USB_NUM_EP]; /* 0x0280 USB Endpoint Control Registers */
mbed_official 507:d4fc7603a669 73 } mxc_usb_regs_t;
mbed_official 507:d4fc7603a669 74
mbed_official 507:d4fc7603a669 75
mbed_official 507:d4fc7603a669 76 /*
mbed_official 507:d4fc7603a669 77 Register offsets for module USB.
mbed_official 507:d4fc7603a669 78 */
mbed_official 507:d4fc7603a669 79 #define MXC_R_USB_OFFS_CN ((uint32_t)0x00000000UL)
mbed_official 507:d4fc7603a669 80 #define MXC_R_USB_OFFS_DEV_ADDR ((uint32_t)0x00000200UL)
mbed_official 507:d4fc7603a669 81 #define MXC_R_USB_OFFS_DEV_CN ((uint32_t)0x00000204UL)
mbed_official 507:d4fc7603a669 82 #define MXC_R_USB_OFFS_DEV_INTFL ((uint32_t)0x00000208UL)
mbed_official 507:d4fc7603a669 83 #define MXC_R_USB_OFFS_DEV_INTEN ((uint32_t)0x0000020CUL)
mbed_official 507:d4fc7603a669 84 #define MXC_R_USB_OFFS_EP_BASE ((uint32_t)0x00000220UL)
mbed_official 507:d4fc7603a669 85 #define MXC_R_USB_OFFS_CUR_BUF ((uint32_t)0x00000224UL)
mbed_official 507:d4fc7603a669 86 #define MXC_R_USB_OFFS_IN_OWNER ((uint32_t)0x00000228UL)
mbed_official 507:d4fc7603a669 87 #define MXC_R_USB_OFFS_OUT_OWNER ((uint32_t)0x0000022CUL)
mbed_official 507:d4fc7603a669 88 #define MXC_R_USB_OFFS_IN_INT ((uint32_t)0x00000230UL)
mbed_official 507:d4fc7603a669 89 #define MXC_R_USB_OFFS_OUT_INT ((uint32_t)0x00000234UL)
mbed_official 507:d4fc7603a669 90 #define MXC_R_USB_OFFS_NAK_INT ((uint32_t)0x00000238UL)
mbed_official 507:d4fc7603a669 91 #define MXC_R_USB_OFFS_DMA_ERR_INT ((uint32_t)0x0000023CUL)
mbed_official 507:d4fc7603a669 92 #define MXC_R_USB_OFFS_BUF_OVR_INT ((uint32_t)0x00000240UL)
mbed_official 507:d4fc7603a669 93 #define MXC_R_USB_OFFS_SETUP0 ((uint32_t)0x00000260UL)
mbed_official 507:d4fc7603a669 94 #define MXC_R_USB_OFFS_SETUP1 ((uint32_t)0x00000264UL)
mbed_official 507:d4fc7603a669 95 #define MXC_R_USB_OFFS_EP0 ((uint32_t)0x00000280UL)
mbed_official 507:d4fc7603a669 96 #define MXC_R_USB_OFFS_EP1 ((uint32_t)0x00000284UL)
mbed_official 507:d4fc7603a669 97 #define MXC_R_USB_OFFS_EP2 ((uint32_t)0x00000288UL)
mbed_official 507:d4fc7603a669 98 #define MXC_R_USB_OFFS_EP3 ((uint32_t)0x0000028CUL)
mbed_official 507:d4fc7603a669 99 #define MXC_R_USB_OFFS_EP4 ((uint32_t)0x00000290UL)
mbed_official 507:d4fc7603a669 100 #define MXC_R_USB_OFFS_EP5 ((uint32_t)0x00000294UL)
mbed_official 507:d4fc7603a669 101 #define MXC_R_USB_OFFS_EP6 ((uint32_t)0x00000298UL)
mbed_official 507:d4fc7603a669 102 #define MXC_R_USB_OFFS_EP7 ((uint32_t)0x0000029CUL)
mbed_official 507:d4fc7603a669 103
mbed_official 507:d4fc7603a669 104
mbed_official 507:d4fc7603a669 105 /*
mbed_official 507:d4fc7603a669 106 Field positions and masks for module USB.
mbed_official 507:d4fc7603a669 107 */
mbed_official 507:d4fc7603a669 108 #define MXC_F_USB_CN_USB_EN_POS 0
mbed_official 507:d4fc7603a669 109 #define MXC_F_USB_CN_USB_EN ((uint32_t)(0x00000001UL << MXC_F_USB_CN_USB_EN_POS))
mbed_official 507:d4fc7603a669 110
mbed_official 507:d4fc7603a669 111 #define MXC_F_USB_DEV_ADDR_DEV_ADDR_POS 0
mbed_official 507:d4fc7603a669 112 #define MXC_F_USB_DEV_ADDR_DEV_ADDR ((uint32_t)(0x0000007FUL << MXC_F_USB_DEV_ADDR_DEV_ADDR_POS))
mbed_official 507:d4fc7603a669 113
mbed_official 507:d4fc7603a669 114 #define MXC_F_USB_DEV_CN_SIGRWU_POS 2
mbed_official 507:d4fc7603a669 115 #define MXC_F_USB_DEV_CN_SIGRWU ((uint32_t)(0x00000001UL << MXC_F_USB_DEV_CN_SIGRWU_POS))
mbed_official 507:d4fc7603a669 116 #define MXC_F_USB_DEV_CN_CONNECT_POS 3
mbed_official 507:d4fc7603a669 117 #define MXC_F_USB_DEV_CN_CONNECT ((uint32_t)(0x00000001UL << MXC_F_USB_DEV_CN_CONNECT_POS))
mbed_official 507:d4fc7603a669 118 #define MXC_F_USB_DEV_CN_ULPM_POS 4
mbed_official 507:d4fc7603a669 119 #define MXC_F_USB_DEV_CN_ULPM ((uint32_t)(0x00000001UL << MXC_F_USB_DEV_CN_ULPM_POS))
mbed_official 507:d4fc7603a669 120 #define MXC_F_USB_DEV_CN_URST_POS 5
mbed_official 507:d4fc7603a669 121 #define MXC_F_USB_DEV_CN_URST ((uint32_t)(0x00000001UL << MXC_F_USB_DEV_CN_URST_POS))
mbed_official 507:d4fc7603a669 122 #define MXC_F_USB_DEV_CN_VBGATE_POS 6
mbed_official 507:d4fc7603a669 123 #define MXC_F_USB_DEV_CN_VBGATE ((uint32_t)(0x00000001UL << MXC_F_USB_DEV_CN_VBGATE_POS))
mbed_official 507:d4fc7603a669 124 #define MXC_F_USB_DEV_CN_FIFO_MODE_POS 9
mbed_official 507:d4fc7603a669 125 #define MXC_F_USB_DEV_CN_FIFO_MODE ((uint32_t)(0x00000001UL << MXC_F_USB_DEV_CN_FIFO_MODE_POS))
mbed_official 507:d4fc7603a669 126
mbed_official 507:d4fc7603a669 127 #define MXC_F_USB_DEV_INTFL_DPACT_POS 0
mbed_official 507:d4fc7603a669 128 #define MXC_F_USB_DEV_INTFL_DPACT ((uint32_t)(0x00000001UL << MXC_F_USB_DEV_INTFL_DPACT_POS))
mbed_official 507:d4fc7603a669 129 #define MXC_F_USB_DEV_INTFL_RWU_DN_POS 1
mbed_official 507:d4fc7603a669 130 #define MXC_F_USB_DEV_INTFL_RWU_DN ((uint32_t)(0x00000001UL << MXC_F_USB_DEV_INTFL_RWU_DN_POS))
mbed_official 507:d4fc7603a669 131 #define MXC_F_USB_DEV_INTFL_BACT_POS 2
mbed_official 507:d4fc7603a669 132 #define MXC_F_USB_DEV_INTFL_BACT ((uint32_t)(0x00000001UL << MXC_F_USB_DEV_INTFL_BACT_POS))
mbed_official 507:d4fc7603a669 133 #define MXC_F_USB_DEV_INTFL_BRST_POS 3
mbed_official 507:d4fc7603a669 134 #define MXC_F_USB_DEV_INTFL_BRST ((uint32_t)(0x00000001UL << MXC_F_USB_DEV_INTFL_BRST_POS))
mbed_official 507:d4fc7603a669 135 #define MXC_F_USB_DEV_INTFL_SUSP_POS 4
mbed_official 507:d4fc7603a669 136 #define MXC_F_USB_DEV_INTFL_SUSP ((uint32_t)(0x00000001UL << MXC_F_USB_DEV_INTFL_SUSP_POS))
mbed_official 507:d4fc7603a669 137 #define MXC_F_USB_DEV_INTFL_NO_VBUS_POS 5
mbed_official 507:d4fc7603a669 138 #define MXC_F_USB_DEV_INTFL_NO_VBUS ((uint32_t)(0x00000001UL << MXC_F_USB_DEV_INTFL_NO_VBUS_POS))
mbed_official 507:d4fc7603a669 139 #define MXC_F_USB_DEV_INTFL_VBUS_POS 6
mbed_official 507:d4fc7603a669 140 #define MXC_F_USB_DEV_INTFL_VBUS ((uint32_t)(0x00000001UL << MXC_F_USB_DEV_INTFL_VBUS_POS))
mbed_official 507:d4fc7603a669 141 #define MXC_F_USB_DEV_INTFL_BRST_DN_POS 7
mbed_official 507:d4fc7603a669 142 #define MXC_F_USB_DEV_INTFL_BRST_DN ((uint32_t)(0x00000001UL << MXC_F_USB_DEV_INTFL_BRST_DN_POS))
mbed_official 507:d4fc7603a669 143 #define MXC_F_USB_DEV_INTFL_SETUP_POS 8
mbed_official 507:d4fc7603a669 144 #define MXC_F_USB_DEV_INTFL_SETUP ((uint32_t)(0x00000001UL << MXC_F_USB_DEV_INTFL_SETUP_POS))
mbed_official 507:d4fc7603a669 145 #define MXC_F_USB_DEV_INTFL_EP_IN_POS 9
mbed_official 507:d4fc7603a669 146 #define MXC_F_USB_DEV_INTFL_EP_IN ((uint32_t)(0x00000001UL << MXC_F_USB_DEV_INTFL_EP_IN_POS))
mbed_official 507:d4fc7603a669 147 #define MXC_F_USB_DEV_INTFL_EP_OUT_POS 10
mbed_official 507:d4fc7603a669 148 #define MXC_F_USB_DEV_INTFL_EP_OUT ((uint32_t)(0x00000001UL << MXC_F_USB_DEV_INTFL_EP_OUT_POS))
mbed_official 507:d4fc7603a669 149 #define MXC_F_USB_DEV_INTFL_EP_NAK_POS 11
mbed_official 507:d4fc7603a669 150 #define MXC_F_USB_DEV_INTFL_EP_NAK ((uint32_t)(0x00000001UL << MXC_F_USB_DEV_INTFL_EP_NAK_POS))
mbed_official 507:d4fc7603a669 151 #define MXC_F_USB_DEV_INTFL_DMA_ERR_POS 12
mbed_official 507:d4fc7603a669 152 #define MXC_F_USB_DEV_INTFL_DMA_ERR ((uint32_t)(0x00000001UL << MXC_F_USB_DEV_INTFL_DMA_ERR_POS))
mbed_official 507:d4fc7603a669 153 #define MXC_F_USB_DEV_INTFL_BUF_OVR_POS 13
mbed_official 507:d4fc7603a669 154 #define MXC_F_USB_DEV_INTFL_BUF_OVR ((uint32_t)(0x00000001UL << MXC_F_USB_DEV_INTFL_BUF_OVR_POS))
mbed_official 507:d4fc7603a669 155 #define MXC_F_USB_DEV_INTFL_VBUS_ST_POS 16
mbed_official 507:d4fc7603a669 156 #define MXC_F_USB_DEV_INTFL_VBUS_ST ((uint32_t)(0x00000001UL << MXC_F_USB_DEV_INTFL_VBUS_ST_POS))
mbed_official 507:d4fc7603a669 157
mbed_official 507:d4fc7603a669 158 #define MXC_F_USB_DEV_INTEN_DPACT_POS 0
mbed_official 507:d4fc7603a669 159 #define MXC_F_USB_DEV_INTEN_DPACT ((uint32_t)(0x00000001UL << MXC_F_USB_DEV_INTEN_DPACT_POS))
mbed_official 507:d4fc7603a669 160 #define MXC_F_USB_DEV_INTEN_RWU_DN_POS 1
mbed_official 507:d4fc7603a669 161 #define MXC_F_USB_DEV_INTEN_RWU_DN ((uint32_t)(0x00000001UL << MXC_F_USB_DEV_INTEN_RWU_DN_POS))
mbed_official 507:d4fc7603a669 162 #define MXC_F_USB_DEV_INTEN_BACT_POS 2
mbed_official 507:d4fc7603a669 163 #define MXC_F_USB_DEV_INTEN_BACT ((uint32_t)(0x00000001UL << MXC_F_USB_DEV_INTEN_BACT_POS))
mbed_official 507:d4fc7603a669 164 #define MXC_F_USB_DEV_INTEN_BRST_POS 3
mbed_official 507:d4fc7603a669 165 #define MXC_F_USB_DEV_INTEN_BRST ((uint32_t)(0x00000001UL << MXC_F_USB_DEV_INTEN_BRST_POS))
mbed_official 507:d4fc7603a669 166 #define MXC_F_USB_DEV_INTEN_SUSP_POS 4
mbed_official 507:d4fc7603a669 167 #define MXC_F_USB_DEV_INTEN_SUSP ((uint32_t)(0x00000001UL << MXC_F_USB_DEV_INTEN_SUSP_POS))
mbed_official 507:d4fc7603a669 168 #define MXC_F_USB_DEV_INTEN_NO_VBUS_POS 5
mbed_official 507:d4fc7603a669 169 #define MXC_F_USB_DEV_INTEN_NO_VBUS ((uint32_t)(0x00000001UL << MXC_F_USB_DEV_INTEN_NO_VBUS_POS))
mbed_official 507:d4fc7603a669 170 #define MXC_F_USB_DEV_INTEN_VBUS_POS 6
mbed_official 507:d4fc7603a669 171 #define MXC_F_USB_DEV_INTEN_VBUS ((uint32_t)(0x00000001UL << MXC_F_USB_DEV_INTEN_VBUS_POS))
mbed_official 507:d4fc7603a669 172 #define MXC_F_USB_DEV_INTEN_BRST_DN_POS 7
mbed_official 507:d4fc7603a669 173 #define MXC_F_USB_DEV_INTEN_BRST_DN ((uint32_t)(0x00000001UL << MXC_F_USB_DEV_INTEN_BRST_DN_POS))
mbed_official 507:d4fc7603a669 174 #define MXC_F_USB_DEV_INTEN_SETUP_POS 8
mbed_official 507:d4fc7603a669 175 #define MXC_F_USB_DEV_INTEN_SETUP ((uint32_t)(0x00000001UL << MXC_F_USB_DEV_INTEN_SETUP_POS))
mbed_official 507:d4fc7603a669 176 #define MXC_F_USB_DEV_INTEN_EP_IN_POS 9
mbed_official 507:d4fc7603a669 177 #define MXC_F_USB_DEV_INTEN_EP_IN ((uint32_t)(0x00000001UL << MXC_F_USB_DEV_INTEN_EP_IN_POS))
mbed_official 507:d4fc7603a669 178 #define MXC_F_USB_DEV_INTEN_EP_OUT_POS 10
mbed_official 507:d4fc7603a669 179 #define MXC_F_USB_DEV_INTEN_EP_OUT ((uint32_t)(0x00000001UL << MXC_F_USB_DEV_INTEN_EP_OUT_POS))
mbed_official 507:d4fc7603a669 180 #define MXC_F_USB_DEV_INTEN_EP_NAK_POS 11
mbed_official 507:d4fc7603a669 181 #define MXC_F_USB_DEV_INTEN_EP_NAK ((uint32_t)(0x00000001UL << MXC_F_USB_DEV_INTEN_EP_NAK_POS))
mbed_official 507:d4fc7603a669 182 #define MXC_F_USB_DEV_INTEN_DMA_ERR_POS 12
mbed_official 507:d4fc7603a669 183 #define MXC_F_USB_DEV_INTEN_DMA_ERR ((uint32_t)(0x00000001UL << MXC_F_USB_DEV_INTEN_DMA_ERR_POS))
mbed_official 507:d4fc7603a669 184 #define MXC_F_USB_DEV_INTEN_BUF_OVR_POS 13
mbed_official 507:d4fc7603a669 185 #define MXC_F_USB_DEV_INTEN_BUF_OVR ((uint32_t)(0x00000001UL << MXC_F_USB_DEV_INTEN_BUF_OVR_POS))
mbed_official 507:d4fc7603a669 186
mbed_official 507:d4fc7603a669 187 #define MXC_F_USB_EP_BASE_EP_BASE_POS 9
mbed_official 507:d4fc7603a669 188 #define MXC_F_USB_EP_BASE_EP_BASE ((uint32_t)(0x007FFFFFUL << MXC_F_USB_EP_BASE_EP_BASE_POS))
mbed_official 507:d4fc7603a669 189
mbed_official 507:d4fc7603a669 190 #define MXC_F_USB_CUR_BUF_OUT_BUF_POS 0
mbed_official 507:d4fc7603a669 191 #define MXC_F_USB_CUR_BUF_OUT_BUF ((uint32_t)(0x000000FFUL << MXC_F_USB_CUR_BUF_OUT_BUF_POS))
mbed_official 507:d4fc7603a669 192 #define MXC_F_USB_CUR_BUF_IN_BUF_POS 16
mbed_official 507:d4fc7603a669 193 #define MXC_F_USB_CUR_BUF_IN_BUF ((uint32_t)(0x000000FFUL << MXC_F_USB_CUR_BUF_IN_BUF_POS))
mbed_official 507:d4fc7603a669 194
mbed_official 507:d4fc7603a669 195 #define MXC_F_USB_IN_OWNER_BUF0_OWNER_POS 0
mbed_official 507:d4fc7603a669 196 #define MXC_F_USB_IN_OWNER_BUF0_OWNER ((uint32_t)(0x000000FFUL << MXC_F_USB_IN_OWNER_BUF0_OWNER_POS))
mbed_official 507:d4fc7603a669 197 #define MXC_F_USB_IN_OWNER_BUF1_OWNER_POS 16
mbed_official 507:d4fc7603a669 198 #define MXC_F_USB_IN_OWNER_BUF1_OWNER ((uint32_t)(0x000000FFUL << MXC_F_USB_IN_OWNER_BUF1_OWNER_POS))
mbed_official 507:d4fc7603a669 199
mbed_official 507:d4fc7603a669 200 #define MXC_F_USB_OUT_OWNER_BUF0_OWNER_POS 0
mbed_official 507:d4fc7603a669 201 #define MXC_F_USB_OUT_OWNER_BUF0_OWNER ((uint32_t)(0x000000FFUL << MXC_F_USB_OUT_OWNER_BUF0_OWNER_POS))
mbed_official 507:d4fc7603a669 202 #define MXC_F_USB_OUT_OWNER_BUF1_OWNER_POS 16
mbed_official 507:d4fc7603a669 203 #define MXC_F_USB_OUT_OWNER_BUF1_OWNER ((uint32_t)(0x000000FFUL << MXC_F_USB_OUT_OWNER_BUF1_OWNER_POS))
mbed_official 507:d4fc7603a669 204
mbed_official 507:d4fc7603a669 205 #define MXC_F_USB_IN_INT_INBAV0_POS 0
mbed_official 507:d4fc7603a669 206 #define MXC_F_USB_IN_INT_INBAV0 ((uint32_t)(0x00000001UL << MXC_F_USB_IN_INT_INBAV0_POS))
mbed_official 507:d4fc7603a669 207 #define MXC_F_USB_IN_INT_INBAV1_POS 1
mbed_official 507:d4fc7603a669 208 #define MXC_F_USB_IN_INT_INBAV1 ((uint32_t)(0x00000001UL << MXC_F_USB_IN_INT_INBAV1_POS))
mbed_official 507:d4fc7603a669 209 #define MXC_F_USB_IN_INT_INBAV2_POS 2
mbed_official 507:d4fc7603a669 210 #define MXC_F_USB_IN_INT_INBAV2 ((uint32_t)(0x00000001UL << MXC_F_USB_IN_INT_INBAV2_POS))
mbed_official 507:d4fc7603a669 211 #define MXC_F_USB_IN_INT_INBAV3_POS 3
mbed_official 507:d4fc7603a669 212 #define MXC_F_USB_IN_INT_INBAV3 ((uint32_t)(0x00000001UL << MXC_F_USB_IN_INT_INBAV3_POS))
mbed_official 507:d4fc7603a669 213 #define MXC_F_USB_IN_INT_INBAV4_POS 4
mbed_official 507:d4fc7603a669 214 #define MXC_F_USB_IN_INT_INBAV4 ((uint32_t)(0x00000001UL << MXC_F_USB_IN_INT_INBAV4_POS))
mbed_official 507:d4fc7603a669 215 #define MXC_F_USB_IN_INT_INBAV5_POS 5
mbed_official 507:d4fc7603a669 216 #define MXC_F_USB_IN_INT_INBAV5 ((uint32_t)(0x00000001UL << MXC_F_USB_IN_INT_INBAV5_POS))
mbed_official 507:d4fc7603a669 217 #define MXC_F_USB_IN_INT_INBAV6_POS 6
mbed_official 507:d4fc7603a669 218 #define MXC_F_USB_IN_INT_INBAV6 ((uint32_t)(0x00000001UL << MXC_F_USB_IN_INT_INBAV6_POS))
mbed_official 507:d4fc7603a669 219 #define MXC_F_USB_IN_INT_INBAV7_POS 7
mbed_official 507:d4fc7603a669 220 #define MXC_F_USB_IN_INT_INBAV7 ((uint32_t)(0x00000001UL << MXC_F_USB_IN_INT_INBAV7_POS))
mbed_official 507:d4fc7603a669 221
mbed_official 507:d4fc7603a669 222 #define MXC_F_USB_OUT_INT_OUTDAV0_POS 0
mbed_official 507:d4fc7603a669 223 #define MXC_F_USB_OUT_INT_OUTDAV0 ((uint32_t)(0x00000001UL << MXC_F_USB_OUT_INT_OUTDAV0_POS))
mbed_official 507:d4fc7603a669 224 #define MXC_F_USB_OUT_INT_OUTDAV1_POS 1
mbed_official 507:d4fc7603a669 225 #define MXC_F_USB_OUT_INT_OUTDAV1 ((uint32_t)(0x00000001UL << MXC_F_USB_OUT_INT_OUTDAV1_POS))
mbed_official 507:d4fc7603a669 226 #define MXC_F_USB_OUT_INT_OUTDAV2_POS 2
mbed_official 507:d4fc7603a669 227 #define MXC_F_USB_OUT_INT_OUTDAV2 ((uint32_t)(0x00000001UL << MXC_F_USB_OUT_INT_OUTDAV2_POS))
mbed_official 507:d4fc7603a669 228 #define MXC_F_USB_OUT_INT_OUTDAV3_POS 3
mbed_official 507:d4fc7603a669 229 #define MXC_F_USB_OUT_INT_OUTDAV3 ((uint32_t)(0x00000001UL << MXC_F_USB_OUT_INT_OUTDAV3_POS))
mbed_official 507:d4fc7603a669 230 #define MXC_F_USB_OUT_INT_OUTDAV4_POS 4
mbed_official 507:d4fc7603a669 231 #define MXC_F_USB_OUT_INT_OUTDAV4 ((uint32_t)(0x00000001UL << MXC_F_USB_OUT_INT_OUTDAV4_POS))
mbed_official 507:d4fc7603a669 232 #define MXC_F_USB_OUT_INT_OUTDAV5_POS 5
mbed_official 507:d4fc7603a669 233 #define MXC_F_USB_OUT_INT_OUTDAV5 ((uint32_t)(0x00000001UL << MXC_F_USB_OUT_INT_OUTDAV5_POS))
mbed_official 507:d4fc7603a669 234 #define MXC_F_USB_OUT_INT_OUTDAV6_POS 6
mbed_official 507:d4fc7603a669 235 #define MXC_F_USB_OUT_INT_OUTDAV6 ((uint32_t)(0x00000001UL << MXC_F_USB_OUT_INT_OUTDAV6_POS))
mbed_official 507:d4fc7603a669 236 #define MXC_F_USB_OUT_INT_OUTDAV7_POS 7
mbed_official 507:d4fc7603a669 237 #define MXC_F_USB_OUT_INT_OUTDAV7 ((uint32_t)(0x00000001UL << MXC_F_USB_OUT_INT_OUTDAV7_POS))
mbed_official 507:d4fc7603a669 238
mbed_official 507:d4fc7603a669 239 #define MXC_F_USB_NAK_INT_NAK0_POS 0
mbed_official 507:d4fc7603a669 240 #define MXC_F_USB_NAK_INT_NAK0 ((uint32_t)(0x00000001UL << MXC_F_USB_NAK_INT_NAK0_POS))
mbed_official 507:d4fc7603a669 241 #define MXC_F_USB_NAK_INT_NAK1_POS 1
mbed_official 507:d4fc7603a669 242 #define MXC_F_USB_NAK_INT_NAK1 ((uint32_t)(0x00000001UL << MXC_F_USB_NAK_INT_NAK1_POS))
mbed_official 507:d4fc7603a669 243 #define MXC_F_USB_NAK_INT_NAK2_POS 2
mbed_official 507:d4fc7603a669 244 #define MXC_F_USB_NAK_INT_NAK2 ((uint32_t)(0x00000001UL << MXC_F_USB_NAK_INT_NAK2_POS))
mbed_official 507:d4fc7603a669 245 #define MXC_F_USB_NAK_INT_NAK3_POS 3
mbed_official 507:d4fc7603a669 246 #define MXC_F_USB_NAK_INT_NAK3 ((uint32_t)(0x00000001UL << MXC_F_USB_NAK_INT_NAK3_POS))
mbed_official 507:d4fc7603a669 247 #define MXC_F_USB_NAK_INT_NAK4_POS 4
mbed_official 507:d4fc7603a669 248 #define MXC_F_USB_NAK_INT_NAK4 ((uint32_t)(0x00000001UL << MXC_F_USB_NAK_INT_NAK4_POS))
mbed_official 507:d4fc7603a669 249 #define MXC_F_USB_NAK_INT_NAK5_POS 5
mbed_official 507:d4fc7603a669 250 #define MXC_F_USB_NAK_INT_NAK5 ((uint32_t)(0x00000001UL << MXC_F_USB_NAK_INT_NAK5_POS))
mbed_official 507:d4fc7603a669 251 #define MXC_F_USB_NAK_INT_NAK6_POS 6
mbed_official 507:d4fc7603a669 252 #define MXC_F_USB_NAK_INT_NAK6 ((uint32_t)(0x00000001UL << MXC_F_USB_NAK_INT_NAK6_POS))
mbed_official 507:d4fc7603a669 253 #define MXC_F_USB_NAK_INT_NAK7_POS 7
mbed_official 507:d4fc7603a669 254 #define MXC_F_USB_NAK_INT_NAK7 ((uint32_t)(0x00000001UL << MXC_F_USB_NAK_INT_NAK7_POS))
mbed_official 507:d4fc7603a669 255
mbed_official 507:d4fc7603a669 256 #define MXC_F_USB_DMA_ERR_INT_DMA_ERR0_POS 0
mbed_official 507:d4fc7603a669 257 #define MXC_F_USB_DMA_ERR_INT_DMA_ERR0 ((uint32_t)(0x00000001UL << MXC_F_USB_DMA_ERR_INT_DMA_ERR0_POS))
mbed_official 507:d4fc7603a669 258 #define MXC_F_USB_DMA_ERR_INT_DMA_ERR1_POS 1
mbed_official 507:d4fc7603a669 259 #define MXC_F_USB_DMA_ERR_INT_DMA_ERR1 ((uint32_t)(0x00000001UL << MXC_F_USB_DMA_ERR_INT_DMA_ERR1_POS))
mbed_official 507:d4fc7603a669 260 #define MXC_F_USB_DMA_ERR_INT_DMA_ERR2_POS 2
mbed_official 507:d4fc7603a669 261 #define MXC_F_USB_DMA_ERR_INT_DMA_ERR2 ((uint32_t)(0x00000001UL << MXC_F_USB_DMA_ERR_INT_DMA_ERR2_POS))
mbed_official 507:d4fc7603a669 262 #define MXC_F_USB_DMA_ERR_INT_DMA_ERR3_POS 3
mbed_official 507:d4fc7603a669 263 #define MXC_F_USB_DMA_ERR_INT_DMA_ERR3 ((uint32_t)(0x00000001UL << MXC_F_USB_DMA_ERR_INT_DMA_ERR3_POS))
mbed_official 507:d4fc7603a669 264 #define MXC_F_USB_DMA_ERR_INT_DMA_ERR4_POS 4
mbed_official 507:d4fc7603a669 265 #define MXC_F_USB_DMA_ERR_INT_DMA_ERR4 ((uint32_t)(0x00000001UL << MXC_F_USB_DMA_ERR_INT_DMA_ERR4_POS))
mbed_official 507:d4fc7603a669 266 #define MXC_F_USB_DMA_ERR_INT_DMA_ERR5_POS 5
mbed_official 507:d4fc7603a669 267 #define MXC_F_USB_DMA_ERR_INT_DMA_ERR5 ((uint32_t)(0x00000001UL << MXC_F_USB_DMA_ERR_INT_DMA_ERR5_POS))
mbed_official 507:d4fc7603a669 268 #define MXC_F_USB_DMA_ERR_INT_DMA_ERR6_POS 6
mbed_official 507:d4fc7603a669 269 #define MXC_F_USB_DMA_ERR_INT_DMA_ERR6 ((uint32_t)(0x00000001UL << MXC_F_USB_DMA_ERR_INT_DMA_ERR6_POS))
mbed_official 507:d4fc7603a669 270 #define MXC_F_USB_DMA_ERR_INT_DMA_ERR7_POS 7
mbed_official 507:d4fc7603a669 271 #define MXC_F_USB_DMA_ERR_INT_DMA_ERR7 ((uint32_t)(0x00000001UL << MXC_F_USB_DMA_ERR_INT_DMA_ERR7_POS))
mbed_official 507:d4fc7603a669 272
mbed_official 507:d4fc7603a669 273 #define MXC_F_USB_BUF_OVR_INT_BUF_OVR0_POS 0
mbed_official 507:d4fc7603a669 274 #define MXC_F_USB_BUF_OVR_INT_BUF_OVR0 ((uint32_t)(0x00000001UL << MXC_F_USB_BUF_OVR_INT_BUF_OVR0_POS))
mbed_official 507:d4fc7603a669 275 #define MXC_F_USB_BUF_OVR_INT_BUF_OVR1_POS 1
mbed_official 507:d4fc7603a669 276 #define MXC_F_USB_BUF_OVR_INT_BUF_OVR1 ((uint32_t)(0x00000001UL << MXC_F_USB_BUF_OVR_INT_BUF_OVR1_POS))
mbed_official 507:d4fc7603a669 277 #define MXC_F_USB_BUF_OVR_INT_BUF_OVR2_POS 2
mbed_official 507:d4fc7603a669 278 #define MXC_F_USB_BUF_OVR_INT_BUF_OVR2 ((uint32_t)(0x00000001UL << MXC_F_USB_BUF_OVR_INT_BUF_OVR2_POS))
mbed_official 507:d4fc7603a669 279 #define MXC_F_USB_BUF_OVR_INT_BUF_OVR3_POS 3
mbed_official 507:d4fc7603a669 280 #define MXC_F_USB_BUF_OVR_INT_BUF_OVR3 ((uint32_t)(0x00000001UL << MXC_F_USB_BUF_OVR_INT_BUF_OVR3_POS))
mbed_official 507:d4fc7603a669 281 #define MXC_F_USB_BUF_OVR_INT_BUF_OVR4_POS 4
mbed_official 507:d4fc7603a669 282 #define MXC_F_USB_BUF_OVR_INT_BUF_OVR4 ((uint32_t)(0x00000001UL << MXC_F_USB_BUF_OVR_INT_BUF_OVR4_POS))
mbed_official 507:d4fc7603a669 283 #define MXC_F_USB_BUF_OVR_INT_BUF_OVR5_POS 5
mbed_official 507:d4fc7603a669 284 #define MXC_F_USB_BUF_OVR_INT_BUF_OVR5 ((uint32_t)(0x00000001UL << MXC_F_USB_BUF_OVR_INT_BUF_OVR5_POS))
mbed_official 507:d4fc7603a669 285 #define MXC_F_USB_BUF_OVR_INT_BUF_OVR6_POS 6
mbed_official 507:d4fc7603a669 286 #define MXC_F_USB_BUF_OVR_INT_BUF_OVR6 ((uint32_t)(0x00000001UL << MXC_F_USB_BUF_OVR_INT_BUF_OVR6_POS))
mbed_official 507:d4fc7603a669 287 #define MXC_F_USB_BUF_OVR_INT_BUF_OVR7_POS 7
mbed_official 507:d4fc7603a669 288 #define MXC_F_USB_BUF_OVR_INT_BUF_OVR7 ((uint32_t)(0x00000001UL << MXC_F_USB_BUF_OVR_INT_BUF_OVR7_POS))
mbed_official 507:d4fc7603a669 289
mbed_official 507:d4fc7603a669 290 #define MXC_F_USB_SETUP0_BYTE0_POS 0
mbed_official 507:d4fc7603a669 291 #define MXC_F_USB_SETUP0_BYTE0 ((uint32_t)(0x000000FFUL << MXC_F_USB_SETUP0_BYTE0_POS))
mbed_official 507:d4fc7603a669 292 #define MXC_F_USB_SETUP0_BYTE1_POS 8
mbed_official 507:d4fc7603a669 293 #define MXC_F_USB_SETUP0_BYTE1 ((uint32_t)(0x000000FFUL << MXC_F_USB_SETUP0_BYTE1_POS))
mbed_official 507:d4fc7603a669 294 #define MXC_F_USB_SETUP0_BYTE2_POS 16
mbed_official 507:d4fc7603a669 295 #define MXC_F_USB_SETUP0_BYTE2 ((uint32_t)(0x000000FFUL << MXC_F_USB_SETUP0_BYTE2_POS))
mbed_official 507:d4fc7603a669 296 #define MXC_F_USB_SETUP0_BYTE3_POS 24
mbed_official 507:d4fc7603a669 297 #define MXC_F_USB_SETUP0_BYTE3 ((uint32_t)(0x000000FFUL << MXC_F_USB_SETUP0_BYTE3_POS))
mbed_official 507:d4fc7603a669 298
mbed_official 507:d4fc7603a669 299 #define MXC_F_USB_SETUP1_BYTE4_POS 0
mbed_official 507:d4fc7603a669 300 #define MXC_F_USB_SETUP1_BYTE4 ((uint32_t)(0x000000FFUL << MXC_F_USB_SETUP1_BYTE4_POS))
mbed_official 507:d4fc7603a669 301 #define MXC_F_USB_SETUP1_BYTE5_POS 8
mbed_official 507:d4fc7603a669 302 #define MXC_F_USB_SETUP1_BYTE5 ((uint32_t)(0x000000FFUL << MXC_F_USB_SETUP1_BYTE5_POS))
mbed_official 507:d4fc7603a669 303 #define MXC_F_USB_SETUP1_BYTE6_POS 16
mbed_official 507:d4fc7603a669 304 #define MXC_F_USB_SETUP1_BYTE6 ((uint32_t)(0x000000FFUL << MXC_F_USB_SETUP1_BYTE6_POS))
mbed_official 507:d4fc7603a669 305 #define MXC_F_USB_SETUP1_BYTE7_POS 24
mbed_official 507:d4fc7603a669 306 #define MXC_F_USB_SETUP1_BYTE7 ((uint32_t)(0x000000FFUL << MXC_F_USB_SETUP1_BYTE7_POS))
mbed_official 507:d4fc7603a669 307
mbed_official 507:d4fc7603a669 308
mbed_official 507:d4fc7603a669 309 #define MXC_F_USB_EP0_EP_DIR_POS 0
mbed_official 507:d4fc7603a669 310 #define MXC_F_USB_EP0_EP_DIR ((uint32_t)(0x00000003UL << MXC_F_USB_EP0_EP_DIR_POS))
mbed_official 507:d4fc7603a669 311 #define MXC_F_USB_EP0_EP_BUF2_POS 3
mbed_official 507:d4fc7603a669 312 #define MXC_F_USB_EP0_EP_BUF2 ((uint32_t)(0x00000001UL << MXC_F_USB_EP0_EP_BUF2_POS))
mbed_official 507:d4fc7603a669 313 #define MXC_F_USB_EP0_EP_INT_EN_POS 4
mbed_official 507:d4fc7603a669 314 #define MXC_F_USB_EP0_EP_INT_EN ((uint32_t)(0x00000001UL << MXC_F_USB_EP0_EP_INT_EN_POS))
mbed_official 507:d4fc7603a669 315 #define MXC_F_USB_EP0_EP_NAK_EN_POS 5
mbed_official 507:d4fc7603a669 316 #define MXC_F_USB_EP0_EP_NAK_EN ((uint32_t)(0x00000001UL << MXC_F_USB_EP0_EP_NAK_EN_POS))
mbed_official 507:d4fc7603a669 317 #define MXC_F_USB_EP0_EP_DT_POS 6
mbed_official 507:d4fc7603a669 318 #define MXC_F_USB_EP0_EP_DT ((uint32_t)(0x00000001UL << MXC_F_USB_EP0_EP_DT_POS))
mbed_official 507:d4fc7603a669 319 #define MXC_F_USB_EP0_EP_STALL_POS 8
mbed_official 507:d4fc7603a669 320 #define MXC_F_USB_EP0_EP_STALL ((uint32_t)(0x00000001UL << MXC_F_USB_EP0_EP_STALL_POS))
mbed_official 507:d4fc7603a669 321 #define MXC_F_USB_EP0_EP_ST_STALL_POS 9
mbed_official 507:d4fc7603a669 322 #define MXC_F_USB_EP0_EP_ST_STALL ((uint32_t)(0x00000001UL << MXC_F_USB_EP0_EP_ST_STALL_POS))
mbed_official 507:d4fc7603a669 323 #define MXC_F_USB_EP0_EP_ST_ACK_POS 10
mbed_official 507:d4fc7603a669 324 #define MXC_F_USB_EP0_EP_ST_ACK ((uint32_t)(0x00000001UL << MXC_F_USB_EP0_EP_ST_ACK_POS))
mbed_official 507:d4fc7603a669 325
mbed_official 507:d4fc7603a669 326 #define MXC_F_USB_EP1_EP_DIR_POS 0
mbed_official 507:d4fc7603a669 327 #define MXC_F_USB_EP1_EP_DIR ((uint32_t)(0x00000003UL << MXC_F_USB_EP1_EP_DIR_POS))
mbed_official 507:d4fc7603a669 328 #define MXC_F_USB_EP1_EP_BUF2_POS 3
mbed_official 507:d4fc7603a669 329 #define MXC_F_USB_EP1_EP_BUF2 ((uint32_t)(0x00000001UL << MXC_F_USB_EP1_EP_BUF2_POS))
mbed_official 507:d4fc7603a669 330 #define MXC_F_USB_EP1_EP_INT_EN_POS 4
mbed_official 507:d4fc7603a669 331 #define MXC_F_USB_EP1_EP_INT_EN ((uint32_t)(0x00000001UL << MXC_F_USB_EP1_EP_INT_EN_POS))
mbed_official 507:d4fc7603a669 332 #define MXC_F_USB_EP1_EP_NAK_EN_POS 5
mbed_official 507:d4fc7603a669 333 #define MXC_F_USB_EP1_EP_NAK_EN ((uint32_t)(0x00000001UL << MXC_F_USB_EP1_EP_NAK_EN_POS))
mbed_official 507:d4fc7603a669 334 #define MXC_F_USB_EP1_EP_DT_POS 6
mbed_official 507:d4fc7603a669 335 #define MXC_F_USB_EP1_EP_DT ((uint32_t)(0x00000001UL << MXC_F_USB_EP1_EP_DT_POS))
mbed_official 507:d4fc7603a669 336 #define MXC_F_USB_EP1_EP_STALL_POS 8
mbed_official 507:d4fc7603a669 337 #define MXC_F_USB_EP1_EP_STALL ((uint32_t)(0x00000001UL << MXC_F_USB_EP1_EP_STALL_POS))
mbed_official 507:d4fc7603a669 338 #define MXC_F_USB_EP1_EP_ST_STALL_POS 9
mbed_official 507:d4fc7603a669 339 #define MXC_F_USB_EP1_EP_ST_STALL ((uint32_t)(0x00000001UL << MXC_F_USB_EP1_EP_ST_STALL_POS))
mbed_official 507:d4fc7603a669 340 #define MXC_F_USB_EP1_EP_ST_ACK_POS 10
mbed_official 507:d4fc7603a669 341 #define MXC_F_USB_EP1_EP_ST_ACK ((uint32_t)(0x00000001UL << MXC_F_USB_EP1_EP_ST_ACK_POS))
mbed_official 507:d4fc7603a669 342
mbed_official 507:d4fc7603a669 343 #define MXC_F_USB_EP2_EP_DIR_POS 0
mbed_official 507:d4fc7603a669 344 #define MXC_F_USB_EP2_EP_DIR ((uint32_t)(0x00000003UL << MXC_F_USB_EP2_EP_DIR_POS))
mbed_official 507:d4fc7603a669 345 #define MXC_F_USB_EP2_EP_BUF2_POS 3
mbed_official 507:d4fc7603a669 346 #define MXC_F_USB_EP2_EP_BUF2 ((uint32_t)(0x00000001UL << MXC_F_USB_EP2_EP_BUF2_POS))
mbed_official 507:d4fc7603a669 347 #define MXC_F_USB_EP2_EP_INT_EN_POS 4
mbed_official 507:d4fc7603a669 348 #define MXC_F_USB_EP2_EP_INT_EN ((uint32_t)(0x00000001UL << MXC_F_USB_EP2_EP_INT_EN_POS))
mbed_official 507:d4fc7603a669 349 #define MXC_F_USB_EP2_EP_NAK_EN_POS 5
mbed_official 507:d4fc7603a669 350 #define MXC_F_USB_EP2_EP_NAK_EN ((uint32_t)(0x00000001UL << MXC_F_USB_EP2_EP_NAK_EN_POS))
mbed_official 507:d4fc7603a669 351 #define MXC_F_USB_EP2_EP_DT_POS 6
mbed_official 507:d4fc7603a669 352 #define MXC_F_USB_EP2_EP_DT ((uint32_t)(0x00000001UL << MXC_F_USB_EP2_EP_DT_POS))
mbed_official 507:d4fc7603a669 353 #define MXC_F_USB_EP2_EP_STALL_POS 8
mbed_official 507:d4fc7603a669 354 #define MXC_F_USB_EP2_EP_STALL ((uint32_t)(0x00000001UL << MXC_F_USB_EP2_EP_STALL_POS))
mbed_official 507:d4fc7603a669 355 #define MXC_F_USB_EP2_EP_ST_STALL_POS 9
mbed_official 507:d4fc7603a669 356 #define MXC_F_USB_EP2_EP_ST_STALL ((uint32_t)(0x00000001UL << MXC_F_USB_EP2_EP_ST_STALL_POS))
mbed_official 507:d4fc7603a669 357 #define MXC_F_USB_EP2_EP_ST_ACK_POS 10
mbed_official 507:d4fc7603a669 358 #define MXC_F_USB_EP2_EP_ST_ACK ((uint32_t)(0x00000001UL << MXC_F_USB_EP2_EP_ST_ACK_POS))
mbed_official 507:d4fc7603a669 359
mbed_official 507:d4fc7603a669 360 #define MXC_F_USB_EP3_EP_DIR_POS 0
mbed_official 507:d4fc7603a669 361 #define MXC_F_USB_EP3_EP_DIR ((uint32_t)(0x00000003UL << MXC_F_USB_EP3_EP_DIR_POS))
mbed_official 507:d4fc7603a669 362 #define MXC_F_USB_EP3_EP_BUF2_POS 3
mbed_official 507:d4fc7603a669 363 #define MXC_F_USB_EP3_EP_BUF2 ((uint32_t)(0x00000001UL << MXC_F_USB_EP3_EP_BUF2_POS))
mbed_official 507:d4fc7603a669 364 #define MXC_F_USB_EP3_EP_INT_EN_POS 4
mbed_official 507:d4fc7603a669 365 #define MXC_F_USB_EP3_EP_INT_EN ((uint32_t)(0x00000001UL << MXC_F_USB_EP3_EP_INT_EN_POS))
mbed_official 507:d4fc7603a669 366 #define MXC_F_USB_EP3_EP_NAK_EN_POS 5
mbed_official 507:d4fc7603a669 367 #define MXC_F_USB_EP3_EP_NAK_EN ((uint32_t)(0x00000001UL << MXC_F_USB_EP3_EP_NAK_EN_POS))
mbed_official 507:d4fc7603a669 368 #define MXC_F_USB_EP3_EP_DT_POS 6
mbed_official 507:d4fc7603a669 369 #define MXC_F_USB_EP3_EP_DT ((uint32_t)(0x00000001UL << MXC_F_USB_EP3_EP_DT_POS))
mbed_official 507:d4fc7603a669 370 #define MXC_F_USB_EP3_EP_STALL_POS 8
mbed_official 507:d4fc7603a669 371 #define MXC_F_USB_EP3_EP_STALL ((uint32_t)(0x00000001UL << MXC_F_USB_EP3_EP_STALL_POS))
mbed_official 507:d4fc7603a669 372 #define MXC_F_USB_EP3_EP_ST_STALL_POS 9
mbed_official 507:d4fc7603a669 373 #define MXC_F_USB_EP3_EP_ST_STALL ((uint32_t)(0x00000001UL << MXC_F_USB_EP3_EP_ST_STALL_POS))
mbed_official 507:d4fc7603a669 374 #define MXC_F_USB_EP3_EP_ST_ACK_POS 10
mbed_official 507:d4fc7603a669 375 #define MXC_F_USB_EP3_EP_ST_ACK ((uint32_t)(0x00000001UL << MXC_F_USB_EP3_EP_ST_ACK_POS))
mbed_official 507:d4fc7603a669 376
mbed_official 507:d4fc7603a669 377 #define MXC_F_USB_EP4_EP_DIR_POS 0
mbed_official 507:d4fc7603a669 378 #define MXC_F_USB_EP4_EP_DIR ((uint32_t)(0x00000003UL << MXC_F_USB_EP4_EP_DIR_POS))
mbed_official 507:d4fc7603a669 379 #define MXC_F_USB_EP4_EP_BUF2_POS 3
mbed_official 507:d4fc7603a669 380 #define MXC_F_USB_EP4_EP_BUF2 ((uint32_t)(0x00000001UL << MXC_F_USB_EP4_EP_BUF2_POS))
mbed_official 507:d4fc7603a669 381 #define MXC_F_USB_EP4_EP_INT_EN_POS 4
mbed_official 507:d4fc7603a669 382 #define MXC_F_USB_EP4_EP_INT_EN ((uint32_t)(0x00000001UL << MXC_F_USB_EP4_EP_INT_EN_POS))
mbed_official 507:d4fc7603a669 383 #define MXC_F_USB_EP4_EP_NAK_EN_POS 5
mbed_official 507:d4fc7603a669 384 #define MXC_F_USB_EP4_EP_NAK_EN ((uint32_t)(0x00000001UL << MXC_F_USB_EP4_EP_NAK_EN_POS))
mbed_official 507:d4fc7603a669 385 #define MXC_F_USB_EP4_EP_DT_POS 6
mbed_official 507:d4fc7603a669 386 #define MXC_F_USB_EP4_EP_DT ((uint32_t)(0x00000001UL << MXC_F_USB_EP4_EP_DT_POS))
mbed_official 507:d4fc7603a669 387 #define MXC_F_USB_EP4_EP_STALL_POS 8
mbed_official 507:d4fc7603a669 388 #define MXC_F_USB_EP4_EP_STALL ((uint32_t)(0x00000001UL << MXC_F_USB_EP4_EP_STALL_POS))
mbed_official 507:d4fc7603a669 389 #define MXC_F_USB_EP4_EP_ST_STALL_POS 9
mbed_official 507:d4fc7603a669 390 #define MXC_F_USB_EP4_EP_ST_STALL ((uint32_t)(0x00000001UL << MXC_F_USB_EP4_EP_ST_STALL_POS))
mbed_official 507:d4fc7603a669 391 #define MXC_F_USB_EP4_EP_ST_ACK_POS 10
mbed_official 507:d4fc7603a669 392 #define MXC_F_USB_EP4_EP_ST_ACK ((uint32_t)(0x00000001UL << MXC_F_USB_EP4_EP_ST_ACK_POS))
mbed_official 507:d4fc7603a669 393
mbed_official 507:d4fc7603a669 394 #define MXC_F_USB_EP5_EP_DIR_POS 0
mbed_official 507:d4fc7603a669 395 #define MXC_F_USB_EP5_EP_DIR ((uint32_t)(0x00000003UL << MXC_F_USB_EP5_EP_DIR_POS))
mbed_official 507:d4fc7603a669 396 #define MXC_F_USB_EP5_EP_BUF2_POS 3
mbed_official 507:d4fc7603a669 397 #define MXC_F_USB_EP5_EP_BUF2 ((uint32_t)(0x00000001UL << MXC_F_USB_EP5_EP_BUF2_POS))
mbed_official 507:d4fc7603a669 398 #define MXC_F_USB_EP5_EP_INT_EN_POS 4
mbed_official 507:d4fc7603a669 399 #define MXC_F_USB_EP5_EP_INT_EN ((uint32_t)(0x00000001UL << MXC_F_USB_EP5_EP_INT_EN_POS))
mbed_official 507:d4fc7603a669 400 #define MXC_F_USB_EP5_EP_NAK_EN_POS 5
mbed_official 507:d4fc7603a669 401 #define MXC_F_USB_EP5_EP_NAK_EN ((uint32_t)(0x00000001UL << MXC_F_USB_EP5_EP_NAK_EN_POS))
mbed_official 507:d4fc7603a669 402 #define MXC_F_USB_EP5_EP_DT_POS 6
mbed_official 507:d4fc7603a669 403 #define MXC_F_USB_EP5_EP_DT ((uint32_t)(0x00000001UL << MXC_F_USB_EP5_EP_DT_POS))
mbed_official 507:d4fc7603a669 404 #define MXC_F_USB_EP5_EP_STALL_POS 8
mbed_official 507:d4fc7603a669 405 #define MXC_F_USB_EP5_EP_STALL ((uint32_t)(0x00000001UL << MXC_F_USB_EP5_EP_STALL_POS))
mbed_official 507:d4fc7603a669 406 #define MXC_F_USB_EP5_EP_ST_STALL_POS 9
mbed_official 507:d4fc7603a669 407 #define MXC_F_USB_EP5_EP_ST_STALL ((uint32_t)(0x00000001UL << MXC_F_USB_EP5_EP_ST_STALL_POS))
mbed_official 507:d4fc7603a669 408 #define MXC_F_USB_EP5_EP_ST_ACK_POS 10
mbed_official 507:d4fc7603a669 409 #define MXC_F_USB_EP5_EP_ST_ACK ((uint32_t)(0x00000001UL << MXC_F_USB_EP5_EP_ST_ACK_POS))
mbed_official 507:d4fc7603a669 410
mbed_official 507:d4fc7603a669 411 #define MXC_F_USB_EP6_EP_DIR_POS 0
mbed_official 507:d4fc7603a669 412 #define MXC_F_USB_EP6_EP_DIR ((uint32_t)(0x00000003UL << MXC_F_USB_EP6_EP_DIR_POS))
mbed_official 507:d4fc7603a669 413 #define MXC_F_USB_EP6_EP_BUF2_POS 3
mbed_official 507:d4fc7603a669 414 #define MXC_F_USB_EP6_EP_BUF2 ((uint32_t)(0x00000001UL << MXC_F_USB_EP6_EP_BUF2_POS))
mbed_official 507:d4fc7603a669 415 #define MXC_F_USB_EP6_EP_INT_EN_POS 4
mbed_official 507:d4fc7603a669 416 #define MXC_F_USB_EP6_EP_INT_EN ((uint32_t)(0x00000001UL << MXC_F_USB_EP6_EP_INT_EN_POS))
mbed_official 507:d4fc7603a669 417 #define MXC_F_USB_EP6_EP_NAK_EN_POS 5
mbed_official 507:d4fc7603a669 418 #define MXC_F_USB_EP6_EP_NAK_EN ((uint32_t)(0x00000001UL << MXC_F_USB_EP6_EP_NAK_EN_POS))
mbed_official 507:d4fc7603a669 419 #define MXC_F_USB_EP6_EP_DT_POS 6
mbed_official 507:d4fc7603a669 420 #define MXC_F_USB_EP6_EP_DT ((uint32_t)(0x00000001UL << MXC_F_USB_EP6_EP_DT_POS))
mbed_official 507:d4fc7603a669 421 #define MXC_F_USB_EP6_EP_STALL_POS 8
mbed_official 507:d4fc7603a669 422 #define MXC_F_USB_EP6_EP_STALL ((uint32_t)(0x00000001UL << MXC_F_USB_EP6_EP_STALL_POS))
mbed_official 507:d4fc7603a669 423 #define MXC_F_USB_EP6_EP_ST_STALL_POS 9
mbed_official 507:d4fc7603a669 424 #define MXC_F_USB_EP6_EP_ST_STALL ((uint32_t)(0x00000001UL << MXC_F_USB_EP6_EP_ST_STALL_POS))
mbed_official 507:d4fc7603a669 425 #define MXC_F_USB_EP6_EP_ST_ACK_POS 10
mbed_official 507:d4fc7603a669 426 #define MXC_F_USB_EP6_EP_ST_ACK ((uint32_t)(0x00000001UL << MXC_F_USB_EP6_EP_ST_ACK_POS))
mbed_official 507:d4fc7603a669 427
mbed_official 507:d4fc7603a669 428 #define MXC_F_USB_EP7_EP_DIR_POS 0
mbed_official 507:d4fc7603a669 429 #define MXC_F_USB_EP7_EP_DIR ((uint32_t)(0x00000003UL << MXC_F_USB_EP7_EP_DIR_POS))
mbed_official 507:d4fc7603a669 430 #define MXC_F_USB_EP7_EP_BUF2_POS 3
mbed_official 507:d4fc7603a669 431 #define MXC_F_USB_EP7_EP_BUF2 ((uint32_t)(0x00000001UL << MXC_F_USB_EP7_EP_BUF2_POS))
mbed_official 507:d4fc7603a669 432 #define MXC_F_USB_EP7_EP_INT_EN_POS 4
mbed_official 507:d4fc7603a669 433 #define MXC_F_USB_EP7_EP_INT_EN ((uint32_t)(0x00000001UL << MXC_F_USB_EP7_EP_INT_EN_POS))
mbed_official 507:d4fc7603a669 434 #define MXC_F_USB_EP7_EP_NAK_EN_POS 5
mbed_official 507:d4fc7603a669 435 #define MXC_F_USB_EP7_EP_NAK_EN ((uint32_t)(0x00000001UL << MXC_F_USB_EP7_EP_NAK_EN_POS))
mbed_official 507:d4fc7603a669 436 #define MXC_F_USB_EP7_EP_DT_POS 6
mbed_official 507:d4fc7603a669 437 #define MXC_F_USB_EP7_EP_DT ((uint32_t)(0x00000001UL << MXC_F_USB_EP7_EP_DT_POS))
mbed_official 507:d4fc7603a669 438 #define MXC_F_USB_EP7_EP_STALL_POS 8
mbed_official 507:d4fc7603a669 439 #define MXC_F_USB_EP7_EP_STALL ((uint32_t)(0x00000001UL << MXC_F_USB_EP7_EP_STALL_POS))
mbed_official 507:d4fc7603a669 440 #define MXC_F_USB_EP7_EP_ST_STALL_POS 9
mbed_official 507:d4fc7603a669 441 #define MXC_F_USB_EP7_EP_ST_STALL ((uint32_t)(0x00000001UL << MXC_F_USB_EP7_EP_ST_STALL_POS))
mbed_official 507:d4fc7603a669 442 #define MXC_F_USB_EP7_EP_ST_ACK_POS 10
mbed_official 507:d4fc7603a669 443 #define MXC_F_USB_EP7_EP_ST_ACK ((uint32_t)(0x00000001UL << MXC_F_USB_EP7_EP_ST_ACK_POS))
mbed_official 507:d4fc7603a669 444
mbed_official 507:d4fc7603a669 445 #ifdef __cplusplus
mbed_official 507:d4fc7603a669 446 }
mbed_official 507:d4fc7603a669 447 #endif
mbed_official 507:d4fc7603a669 448
mbed_official 507:d4fc7603a669 449 /**
mbed_official 507:d4fc7603a669 450 * @}
mbed_official 507:d4fc7603a669 451 */
mbed_official 507:d4fc7603a669 452
mbed_official 507:d4fc7603a669 453 #endif /* _MXC_USB_REGS_H_ */