[42dbb26] | 1 | /*
|
---|
| 2 | * Copyright (c) 2011 Jan Vesely
|
---|
| 3 | * All rights reserved.
|
---|
| 4 | *
|
---|
| 5 | * Redistribution and use in source and binary forms, with or without
|
---|
| 6 | * modification, are permitted provided that the following conditions
|
---|
| 7 | * are met:
|
---|
| 8 | *
|
---|
| 9 | * - Redistributions of source code must retain the above copyright
|
---|
| 10 | * notice, this list of conditions and the following disclaimer.
|
---|
| 11 | * - Redistributions in binary form must reproduce the above copyright
|
---|
| 12 | * notice, this list of conditions and the following disclaimer in the
|
---|
| 13 | * documentation and/or other materials provided with the distribution.
|
---|
| 14 | * - The name of the author may not be used to endorse or promote products
|
---|
| 15 | * derived from this software without specific prior written permission.
|
---|
| 16 | *
|
---|
| 17 | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
---|
| 18 | * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
---|
| 19 | * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
---|
| 20 | * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
---|
| 21 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
---|
| 22 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
---|
| 23 | * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
---|
| 24 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
---|
| 25 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
---|
| 26 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
---|
| 27 | */
|
---|
| 28 |
|
---|
| 29 | /** @addtogroup drvusbohcihc
|
---|
| 30 | * @{
|
---|
| 31 | */
|
---|
| 32 | /** @file
|
---|
| 33 | * @brief OHCI host controller register structure
|
---|
| 34 | */
|
---|
| 35 | #ifndef DRV_OHCI_OHCI_REGS_H
|
---|
| 36 | #define DRV_OHCI_OHCI_REGS_H
|
---|
| 37 | #include <stdint.h>
|
---|
| 38 |
|
---|
| 39 | typedef struct ohci_regs
|
---|
| 40 | {
|
---|
[2c617b0] | 41 | const volatile uint32_t revision;
|
---|
[42dbb26] | 42 | volatile uint32_t control;
|
---|
[0c311d5] | 43 | #define C_CSBR_MASK (0x3) /* Control-bulk service ratio */
|
---|
| 44 | #define C_CSBR_1_1 (0x0)
|
---|
| 45 | #define C_CSBR_1_2 (0x1)
|
---|
| 46 | #define C_CSBR_1_3 (0x2)
|
---|
| 47 | #define C_CSBR_1_4 (0x3)
|
---|
[2c617b0] | 48 | #define C_CSBR_SHIFT (0)
|
---|
[0c311d5] | 49 |
|
---|
| 50 | #define C_PLE (1 << 2) /* Periodic list enable */
|
---|
| 51 | #define C_IE (1 << 3) /* Isochronous enable */
|
---|
| 52 | #define C_CLE (1 << 4) /* Control list enable */
|
---|
| 53 | #define C_BLE (1 << 5) /* Bulk list enable */
|
---|
| 54 |
|
---|
| 55 | #define C_HCFS_MASK (0x3) /* Host controller functional state */
|
---|
| 56 | #define C_HCFS_RESET (0x0)
|
---|
[5f7c846] | 57 | #define C_HCFS_RESUME (0x1)
|
---|
| 58 | #define C_HCFS_OPERATIONAL (0x2)
|
---|
[0c311d5] | 59 | #define C_HCFS_SUSPEND (0x3)
|
---|
| 60 | #define C_HCFS_SHIFT (6)
|
---|
[2c617b0] | 61 |
|
---|
[0c311d5] | 62 | #define C_IR (1 << 8) /* Interrupt routing, make sure it's 0 */
|
---|
| 63 | #define C_RWC (1 << 9) /* Remote wakeup connected, host specific */
|
---|
| 64 | #define C_RWE (1 << 10) /* Remote wakeup enable */
|
---|
[2c617b0] | 65 |
|
---|
[42dbb26] | 66 | volatile uint32_t command_status;
|
---|
[0c311d5] | 67 | #define CS_HCR (1 << 0) /* Host controller reset */
|
---|
| 68 | #define CS_CLF (1 << 1) /* Control list filled */
|
---|
| 69 | #define CS_BLF (1 << 2) /* Bulk list filled */
|
---|
| 70 | #define CS_OCR (1 << 3) /* Ownership change request */
|
---|
| 71 | #define CS_SOC_MASK (0x3) /* Scheduling overrun count */
|
---|
[2c617b0] | 72 | #define CS_SOC_SHIFT (16)
|
---|
| 73 |
|
---|
[561112f] | 74 | /** Interupt enable/disable/status,
|
---|
| 75 | * reads give the same value,
|
---|
| 76 | * writing causes enable/disable,
|
---|
| 77 | * status is write-clean (writing 1 clears the bit*/
|
---|
[e7bc999] | 78 | volatile uint32_t interrupt_status;
|
---|
[112d159] | 79 | volatile uint32_t interrupt_enable;
|
---|
[42dbb26] | 80 | volatile uint32_t interrupt_disable;
|
---|
[0c311d5] | 81 | #define I_SO (1 << 0) /* Scheduling overrun */
|
---|
| 82 | #define I_WDH (1 << 1) /* Done head write-back */
|
---|
| 83 | #define I_SF (1 << 2) /* Start of frame */
|
---|
| 84 | #define I_RD (1 << 3) /* Resume detect */
|
---|
| 85 | #define I_UE (1 << 4) /* Unrecoverable error */
|
---|
| 86 | #define I_FNO (1 << 5) /* Frame number overflow */
|
---|
| 87 | #define I_RHSC (1 << 6) /* Root hub status change */
|
---|
| 88 | #define I_OC (1 << 30) /* Ownership change */
|
---|
| 89 | #define I_MI (1 << 31) /* Master interrupt (all/any interrupts) */
|
---|
| 90 |
|
---|
| 91 | /** HCCA pointer (see hw_struct hcca.h) */
|
---|
[42dbb26] | 92 | volatile uint32_t hcca;
|
---|
[0c311d5] | 93 | #define HCCA_PTR_MASK 0xffffff00 /* HCCA is 256B aligned */
|
---|
| 94 |
|
---|
[aa9ccf7] | 95 | /** Currently executed periodic endpoint */
|
---|
| 96 | const volatile uint32_t periodic_current;
|
---|
[0c311d5] | 97 |
|
---|
| 98 | /** The first control endpoint */
|
---|
[42dbb26] | 99 | volatile uint32_t control_head;
|
---|
[0c311d5] | 100 |
|
---|
| 101 | /** Currently executed control endpoint */
|
---|
[42dbb26] | 102 | volatile uint32_t control_current;
|
---|
[0c311d5] | 103 |
|
---|
| 104 | /** The first bulk endpoint */
|
---|
[42dbb26] | 105 | volatile uint32_t bulk_head;
|
---|
[0c311d5] | 106 |
|
---|
| 107 | /** Currently executed bulk endpoint */
|
---|
[42dbb26] | 108 | volatile uint32_t bulk_current;
|
---|
[0c311d5] | 109 |
|
---|
| 110 | /** Done TD list, this value is periodically written to HCCA */
|
---|
| 111 | const volatile uint32_t done_head;
|
---|
| 112 |
|
---|
| 113 | /** Frame time and max packet size for all transfers */
|
---|
[42dbb26] | 114 | volatile uint32_t fm_interval;
|
---|
[112d159] | 115 | #define FMI_FI_MASK (0x3fff) /* Frame interval in bit times (should be 11999)*/
|
---|
[0c311d5] | 116 | #define FMI_FI_SHIFT (0)
|
---|
| 117 | #define FMI_FSMPS_MASK (0x7fff) /* Full speed max packet size */
|
---|
| 118 | #define FMI_FSMPS_SHIFT (16)
|
---|
| 119 | #define FMI_TOGGLE_FLAG (1 << 31)
|
---|
| 120 |
|
---|
| 121 | /** Bit times remaining in current frame */
|
---|
| 122 | const volatile uint32_t fm_remaining;
|
---|
| 123 | #define FMR_FR_MASK FMI_FI_MASK
|
---|
| 124 | #define FMR_FR_SHIFT FMI_FI_SHIFT
|
---|
| 125 | #define FMR_TOGGLE_FLAG FMI_TOGGLE_FLAG
|
---|
| 126 |
|
---|
| 127 | /** Frame number */
|
---|
| 128 | const volatile uint32_t fm_number;
|
---|
| 129 | #define FMN_NUMBER_MASK (0xffff)
|
---|
| 130 |
|
---|
| 131 | /** Remaining bit time in frame to start periodic transfers */
|
---|
[42dbb26] | 132 | volatile uint32_t periodic_start;
|
---|
[112d159] | 133 | #define PS_PS_MASK (0x3fff) /* bit time when periodic get priority (0x3e67) */
|
---|
[0c311d5] | 134 |
|
---|
| 135 | /** Threshold for starting LS transaction */
|
---|
[42dbb26] | 136 | volatile uint32_t ls_threshold;
|
---|
[0c311d5] | 137 | #define LST_LST_MASK (0x7fff)
|
---|
| 138 |
|
---|
| 139 | /** The first root hub control register */
|
---|
[42dbb26] | 140 | volatile uint32_t rh_desc_a;
|
---|
[0c311d5] | 141 | #define RHDA_NDS_MASK (0xff) /* Number of downstream ports, max 15 */
|
---|
| 142 | #define RHDA_NDS_SHIFT (0)
|
---|
| 143 | #define RHDA_PSM_FLAG (1 << 8) /* Power switching mode: 0-global, 1-per port*/
|
---|
| 144 | #define RHDA_NPS_FLAG (1 << 9) /* No power switch: 1-power on, 0-use PSM*/
|
---|
| 145 | #define RHDA_DT_FLAG (1 << 10) /* 1-Compound device, must be 0 */
|
---|
| 146 | #define RHDA_OCPM_FLAG (1 << 11) /* Over-current mode: 0-global, 1-per port */
|
---|
| 147 | #define RHDA_NOCP (1 << 12) /* OC control: 0-use OCPM, 1-OC off */
|
---|
| 148 | #define RHDA_POTPGT_MASK (0xff) /* Power on to power good time */
|
---|
| 149 | #define RHDA_POTPGT_SHIFT (24)
|
---|
| 150 |
|
---|
| 151 | /** The other root hub control register */
|
---|
[42dbb26] | 152 | volatile uint32_t rh_desc_b;
|
---|
[0c311d5] | 153 | #define RHDB_DR_MASK (0xffff) /* Device removable mask */
|
---|
| 154 | #define RHDB_DR_SHIFT (0)
|
---|
| 155 | #define RHDB_PCC_MASK (0xffff) /* Power control mask */
|
---|
| 156 | #define RHDB_PCC_SHIFT (16)
|
---|
| 157 |
|
---|
| 158 | /* Port device removable status */
|
---|
| 159 | #define RHDB_DR_FLAG(port) (((1 << port) & RHDB_DR_MASK) << RHDB_DR_SHIFT)
|
---|
| 160 | /* Port power control status: 1-per port power control, 0-global power switch */
|
---|
| 161 | #define RHDB_PPC_FLAG(port) (((1 << port) & RHDB_DR_MASK) << RHDB_DR_SHIFT)
|
---|
| 162 |
|
---|
| 163 | /** Root hub status register */
|
---|
[42dbb26] | 164 | volatile uint32_t rh_status;
|
---|
[0c311d5] | 165 | #define RHS_LPS_FLAG (1 << 0)/* read: 0,
|
---|
| 166 | * write: 0-no effect,
|
---|
| 167 | * 1-turn off port power for ports
|
---|
| 168 | * specified in PPCM(RHDB), or all ports,
|
---|
| 169 | * if power is set globally */
|
---|
| 170 | #define RHS_CLEAR_PORT_POWER RHS_LPS_FLAG /* synonym for the above */
|
---|
| 171 | #define RHS_OCI_FLAG (1 << 1)/* Over-current indicator, if per-port: 0 */
|
---|
| 172 | #define RHS_DRWE_FLAG (1 << 15)/* read: 0-connect status change does not wake HC
|
---|
| 173 | * 1-connect status change wakes HC
|
---|
| 174 | * write: 1-set DRWE, 0-no effect */
|
---|
| 175 | #define RHS_SET_DRWE RHS_DRWE_FLAG
|
---|
| 176 | #define RHS_LPSC_FLAG (1 << 16)/* read: 0,
|
---|
| 177 | * write: 0-no effect
|
---|
| 178 | * 1-turn on port power for ports
|
---|
| 179 | * specified in PPCM(RHDB), or all ports,
|
---|
| 180 | * if power is set globally */
|
---|
| 181 | #define RHS_SET_PORT_POWER RHS_LPSC_FLAG /* synonym for the above */
|
---|
| 182 | #define RHS_OCIC_FLAG (1 << 17)/* Over-current indicator change */
|
---|
| 183 | #define RHS_CLEAR_DRWE (1 << 31)
|
---|
| 184 |
|
---|
| 185 | /** Root hub per port status */
|
---|
[42dbb26] | 186 | volatile uint32_t rh_port_status[];
|
---|
[0c311d5] | 187 | #define RHPS_CCS_FLAG (1 << 0) /* r: current connect status,
|
---|
| 188 | * w: 1-clear port enable, 0-nothing */
|
---|
| 189 | #define RHPS_CLEAR_PORT_ENABLE RHPS_CCS_FLAG
|
---|
| 190 | #define RHPS_PES_FLAG (1 << 1) /* r: port enable status
|
---|
| 191 | * w: 1-set port enable, 0-nothing */
|
---|
| 192 | #define RHPS_SET_PORT_ENABLE RHPS_PES_FLAG
|
---|
| 193 | #define RHPS_PSS_FLAG (1 << 2) /* r: port suspend status
|
---|
| 194 | * w: 1-set port suspend, 0-nothing */
|
---|
| 195 | #define RHPS_SET_PORT_SUSPEND RHPS_PSS_FLAG
|
---|
| 196 | #define RHPS_POCI_FLAG (1 << 3) /* r: port over-current (if reports are per-port
|
---|
| 197 | * w: 1-clear port suspend (start resume
|
---|
| 198 | * if suspened)
|
---|
| 199 | * 0-nothing */
|
---|
| 200 | #define RHPS_CLEAR_PORT_SUSPEND RHPS_POCI_FLAG
|
---|
| 201 | #define RHPS_PRS_FLAG (1 << 4) /* r: port reset status
|
---|
| 202 | * w: 1-set port reset, 0-nothing */
|
---|
| 203 | #define RHPS_SET_PORT_RESET RHPS_PRS_FLAG
|
---|
| 204 | #define RHPS_PPS_FLAG (1 << 8) /* r: port power status
|
---|
| 205 | * w: 1-set port power, 0-nothing */
|
---|
| 206 | #define RHPS_SET_PORT_POWER RHPS_PPS_FLAG
|
---|
| 207 | #define RHPS_LSDA_FLAG (1 << 9) /* r: low speed device attached
|
---|
| 208 | * w: 1-clear port power, 0-nothing */
|
---|
| 209 | #define RHPS_CLEAR_PORT_POWER RHPS_LSDA_FLAG
|
---|
| 210 | #define RHPS_CSC_FLAG (1 << 16) /* connect status change Write-Clean */
|
---|
| 211 | #define RHPS_PESC_FLAG (1 << 17) /* port enable status change WC */
|
---|
| 212 | #define RHPS_PSSC_FLAG (1 << 18) /* port suspend status change WC */
|
---|
| 213 | #define RHPS_OCIC_FLAG (1 << 19) /* port over-current change WC */
|
---|
| 214 | #define RHPS_PRSC_FLAG (1 << 20) /* port reset status change WC */
|
---|
| 215 | #define RHPS_CHANGE_WC_MASK 0x1f0000
|
---|
[e7bc999] | 216 | } __attribute__((packed)) ohci_regs_t;
|
---|
[42dbb26] | 217 | #endif
|
---|
| 218 | /**
|
---|
| 219 | * @}
|
---|
| 220 | */
|
---|