Manoj Rao | 7708a3a | 2012-12-13 18:30:58 -0800 | [diff] [blame] | 1 | /* Copyright (c) 2012-2013, The Linux Foundation. All rights reserved. |
Manoj Rao | 1464874 | 2012-03-30 19:42:12 -0700 | [diff] [blame] | 2 | * |
| 3 | * This program is free software; you can redistribute it and/or modify |
| 4 | * it under the terms of the GNU General Public License version 2 and |
| 5 | * only version 2 as published by the Free Software Foundation. |
| 6 | * |
| 7 | * This program is distributed in the hope that it will be useful, |
| 8 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 9 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 10 | * GNU General Public License for more details. |
| 11 | * |
| 12 | */ |
| 13 | #ifndef __MHL_SPEC_DEFS_H__ |
| 14 | #define __MHL_SPEC_DEFS_H__ |
| 15 | |
| 16 | enum DevCapOffset_e { |
| 17 | DEVCAP_OFFSET_DEV_STATE = 0x00, |
| 18 | DEVCAP_OFFSET_MHL_VERSION = 0x01, |
| 19 | DEVCAP_OFFSET_DEV_CAT = 0x02, |
| 20 | DEVCAP_OFFSET_ADOPTER_ID_H = 0x03, |
| 21 | DEVCAP_OFFSET_ADOPTER_ID_L = 0x04, |
| 22 | DEVCAP_OFFSET_VID_LINK_MODE = 0x05, |
| 23 | DEVCAP_OFFSET_AUD_LINK_MODE = 0x06, |
| 24 | DEVCAP_OFFSET_VIDEO_TYPE = 0x07, |
| 25 | DEVCAP_OFFSET_LOG_DEV_MAP = 0x08, |
| 26 | DEVCAP_OFFSET_BANDWIDTH = 0x09, |
| 27 | DEVCAP_OFFSET_FEATURE_FLAG = 0x0A, |
| 28 | DEVCAP_OFFSET_DEVICE_ID_H = 0x0B, |
| 29 | DEVCAP_OFFSET_DEVICE_ID_L = 0x0C, |
| 30 | DEVCAP_OFFSET_SCRATCHPAD_SIZE = 0x0D, |
| 31 | DEVCAP_OFFSET_INT_STAT_SIZE = 0x0E, |
| 32 | DEVCAP_OFFSET_RESERVED = 0x0F, |
| 33 | /* this one must be last */ |
| 34 | DEVCAP_SIZE |
| 35 | }; |
| 36 | |
| 37 | #ifndef __MHL_MSM_8334_REGS_H__ |
| 38 | #define __MHL_MSM_8334_REGS_H__ |
| 39 | |
| 40 | #define BIT0 0x01 |
| 41 | #define BIT1 0x02 |
| 42 | #define BIT2 0x04 |
| 43 | #define BIT3 0x08 |
| 44 | #define BIT4 0x10 |
| 45 | #define BIT5 0x20 |
| 46 | #define BIT6 0x40 |
| 47 | #define BIT7 0x80 |
| 48 | |
| 49 | #define LOW 0 |
| 50 | #define HIGH 1 |
| 51 | |
| 52 | #define MAX_PAGES 8 |
| 53 | #endif |
| 54 | |
| 55 | |
| 56 | /* Version that this chip supports*/ |
| 57 | /* bits 4..7 */ |
| 58 | #define MHL_VER_MAJOR (0x01 << 4) |
| 59 | /* bits 0..3 */ |
Abhishek Kharbanda | d80b5d3 | 2013-02-22 12:35:19 -0800 | [diff] [blame] | 60 | #define MHL_VER_MINOR 0x02 |
Manoj Rao | 1464874 | 2012-03-30 19:42:12 -0700 | [diff] [blame] | 61 | #define MHL_VERSION (MHL_VER_MAJOR | MHL_VER_MINOR) |
| 62 | |
| 63 | /*Device Category*/ |
| 64 | #define MHL_DEV_CATEGORY_OFFSET DEVCAP_OFFSET_DEV_CAT |
| 65 | #define MHL_DEV_CATEGORY_POW_BIT (BIT4) |
| 66 | |
| 67 | #define MHL_DEV_CAT_SOURCE 0x02 |
| 68 | |
| 69 | /*Video Link Mode*/ |
| 70 | #define MHL_DEV_VID_LINK_SUPPRGB444 0x01 |
| 71 | #define MHL_DEV_VID_LINK_SUPPYCBCR444 0x02 |
| 72 | #define MHL_DEV_VID_LINK_SUPPYCBCR422 0x04 |
| 73 | #define MHL_DEV_VID_LINK_SUPP_PPIXEL 0x08 |
| 74 | #define MHL_DEV_VID_LINK_SUPP_ISLANDS 0x10 |
| 75 | |
| 76 | /*Audio Link Mode Support*/ |
| 77 | #define MHL_DEV_AUD_LINK_2CH 0x01 |
| 78 | #define MHL_DEV_AUD_LINK_8CH 0x02 |
| 79 | |
| 80 | |
| 81 | /*Feature Flag in the devcap*/ |
| 82 | #define MHL_DEV_FEATURE_FLAG_OFFSET DEVCAP_OFFSET_FEATURE_FLAG |
| 83 | /* Dongles have freedom to not support RCP */ |
| 84 | #define MHL_FEATURE_RCP_SUPPORT BIT0 |
| 85 | /* Dongles have freedom to not support RAP */ |
| 86 | #define MHL_FEATURE_RAP_SUPPORT BIT1 |
| 87 | /* Dongles have freedom to not support SCRATCHPAD */ |
| 88 | #define MHL_FEATURE_SP_SUPPORT BIT2 |
| 89 | |
| 90 | /*Logical Dev Map*/ |
| 91 | #define MHL_DEV_LD_DISPLAY (0x01 << 0) |
| 92 | #define MHL_DEV_LD_VIDEO (0x01 << 1) |
| 93 | #define MHL_DEV_LD_AUDIO (0x01 << 2) |
| 94 | #define MHL_DEV_LD_MEDIA (0x01 << 3) |
| 95 | #define MHL_DEV_LD_TUNER (0x01 << 4) |
| 96 | #define MHL_DEV_LD_RECORD (0x01 << 5) |
| 97 | #define MHL_DEV_LD_SPEAKER (0x01 << 6) |
| 98 | #define MHL_DEV_LD_GUI (0x01 << 7) |
| 99 | |
| 100 | /*Bandwidth*/ |
| 101 | /* 225 MHz */ |
| 102 | #define MHL_BANDWIDTH_LIMIT 22 |
| 103 | |
| 104 | |
| 105 | #define MHL_STATUS_REG_CONNECTED_RDY 0x30 |
| 106 | #define MHL_STATUS_REG_LINK_MODE 0x31 |
| 107 | |
| 108 | #define MHL_STATUS_DCAP_RDY BIT0 |
| 109 | |
| 110 | #define MHL_STATUS_CLK_MODE_MASK 0x07 |
| 111 | #define MHL_STATUS_CLK_MODE_PACKED_PIXEL 0x02 |
| 112 | #define MHL_STATUS_CLK_MODE_NORMAL 0x03 |
| 113 | #define MHL_STATUS_PATH_EN_MASK 0x08 |
| 114 | #define MHL_STATUS_PATH_ENABLED 0x08 |
| 115 | #define MHL_STATUS_PATH_DISABLED 0x00 |
| 116 | #define MHL_STATUS_MUTED_MASK 0x10 |
| 117 | |
| 118 | #define MHL_RCHANGE_INT 0x20 |
| 119 | #define MHL_DCHANGE_INT 0x21 |
| 120 | |
| 121 | #define MHL_INT_DCAP_CHG BIT0 |
| 122 | #define MHL_INT_DSCR_CHG BIT1 |
| 123 | #define MHL_INT_REQ_WRT BIT2 |
| 124 | #define MHL_INT_GRT_WRT BIT3 |
| 125 | |
| 126 | /* On INTR_1 the EDID_CHG is located at BIT 0*/ |
| 127 | #define MHL_INT_EDID_CHG BIT1 |
| 128 | |
| 129 | /* This contains one nibble each - max offset */ |
| 130 | #define MHL_INT_AND_STATUS_SIZE 0x33 |
Manoj Rao | 455c8c7 | 2013-01-21 16:44:08 -0800 | [diff] [blame] | 131 | #define MHL_SCRATCHPAD_OFFSET 0x40 |
Manoj Rao | 1464874 | 2012-03-30 19:42:12 -0700 | [diff] [blame] | 132 | #define MHL_SCRATCHPAD_SIZE 16 |
Manoj Rao | 455c8c7 | 2013-01-21 16:44:08 -0800 | [diff] [blame] | 133 | #define MAX_SCRATCHPAD_TRANSFER_SIZE 64 |
| 134 | #define ADOPTER_ID_SIZE 2 |
Abhishek Kharbanda | 569288f | 2013-07-01 11:52:08 -0700 | [diff] [blame] | 135 | #define MHL_DEVCAP_ALL 0xffff |
Manoj Rao | 455c8c7 | 2013-01-21 16:44:08 -0800 | [diff] [blame] | 136 | |
Manoj Rao | 1464874 | 2012-03-30 19:42:12 -0700 | [diff] [blame] | 137 | /* manually define highest number */ |
| 138 | #define MHL_MAX_BUFFER_SIZE MHL_SCRATCHPAD_SIZE |
Manoj Rao | f5b974a | 2013-03-08 18:42:52 -0800 | [diff] [blame] | 139 | #define MHL_BURST_WAIT (1000) |
Manoj Rao | 1464874 | 2012-03-30 19:42:12 -0700 | [diff] [blame] | 140 | |
| 141 | |
| 142 | enum { |
| 143 | /* RCP sub-command */ |
| 144 | MHL_MSC_MSG_RCP = 0x10, |
| 145 | /* RCP Acknowledge sub-command */ |
| 146 | MHL_MSC_MSG_RCPK = 0x11, |
| 147 | /* RCP Error sub-command */ |
| 148 | MHL_MSC_MSG_RCPE = 0x12, |
| 149 | /* Mode Change Warning sub-command */ |
| 150 | MHL_MSC_MSG_RAP = 0x20, |
| 151 | /* MCW Acknowledge sub-command */ |
| 152 | MHL_MSC_MSG_RAPK = 0x21, |
| 153 | }; |
| 154 | |
Manoj Rao | f7110b8 | 2012-07-29 22:29:02 -0700 | [diff] [blame] | 155 | #define MHL_RCPE_NO_ERROR 0x00 |
| 156 | #define MHL_RCPE_UNSUPPORTED_KEY_CODE 0x01 |
Manoj Rao | 7708a3a | 2012-12-13 18:30:58 -0800 | [diff] [blame] | 157 | #define MHL_RCPE_INEFFECTIVE_KEY_CODE 0x01 |
Manoj Rao | f7110b8 | 2012-07-29 22:29:02 -0700 | [diff] [blame] | 158 | #define MHL_RCPE_BUSY 0x02 |
| 159 | |
| 160 | #define MHL_RAPK_NO_ERROR 0x00 |
| 161 | #define MHL_RAPK_UNRECOGNIZED_ACTION_CODE 0x01 |
| 162 | #define MHL_RAPK_UNSUPPORTED_ACTION_CODE 0x02 |
| 163 | #define MHL_RAPK_BUSY 0x03 |
| 164 | |
Manoj Rao | 7708a3a | 2012-12-13 18:30:58 -0800 | [diff] [blame] | 165 | #define T_ABORT_NEXT (2050) |
| 166 | |
Manoj Rao | 1464874 | 2012-03-30 19:42:12 -0700 | [diff] [blame] | 167 | /* MHL spec related defines*/ |
| 168 | enum { |
| 169 | /* Command or Data byte acknowledge */ |
| 170 | MHL_ACK = 0x33, |
| 171 | /* Command or Data byte not acknowledge */ |
| 172 | MHL_NACK = 0x34, |
| 173 | /* Transaction abort */ |
| 174 | MHL_ABORT = 0x35, |
| 175 | /* 0xE0 - Write one status register strip top bit */ |
| 176 | MHL_WRITE_STAT = 0x60 | 0x80, |
| 177 | /* Write one interrupt register */ |
| 178 | MHL_SET_INT = 0x60, |
| 179 | /* Read one register */ |
| 180 | MHL_READ_DEVCAP = 0x61, |
| 181 | /* Read CBUS revision level from follower */ |
| 182 | MHL_GET_STATE = 0x62, |
| 183 | /* Read vendor ID value from follower. */ |
| 184 | MHL_GET_VENDOR_ID = 0x63, |
| 185 | /* Set Hot Plug Detect in follower */ |
| 186 | MHL_SET_HPD = 0x64, |
| 187 | /* Clear Hot Plug Detect in follower */ |
| 188 | MHL_CLR_HPD = 0x65, |
| 189 | /* Set Capture ID for downstream device. */ |
| 190 | MHL_SET_CAP_ID = 0x66, |
| 191 | /* Get Capture ID from downstream device. */ |
| 192 | MHL_GET_CAP_ID = 0x67, |
| 193 | /* VS command to send RCP sub-commands */ |
| 194 | MHL_MSC_MSG = 0x68, |
| 195 | /* Get Vendor-Specific command error code. */ |
| 196 | MHL_GET_SC1_ERRORCODE = 0x69, |
| 197 | /* Get DDC channel command error code. */ |
| 198 | MHL_GET_DDC_ERRORCODE = 0x6A, |
| 199 | /* Get MSC command error code. */ |
| 200 | MHL_GET_MSC_ERRORCODE = 0x6B, |
| 201 | /* Write 1-16 bytes to responder's scratchpad. */ |
| 202 | MHL_WRITE_BURST = 0x6C, |
| 203 | /* Get channel 3 command error code. */ |
| 204 | MHL_GET_SC3_ERRORCODE = 0x6D, |
| 205 | }; |
| 206 | |
Manoj Rao | 7708a3a | 2012-12-13 18:30:58 -0800 | [diff] [blame] | 207 | /* Polling. */ |
| 208 | #define MHL_RAP_POLL 0x00 |
Manoj Rao | 1464874 | 2012-03-30 19:42:12 -0700 | [diff] [blame] | 209 | /* Turn content streaming ON. */ |
| 210 | #define MHL_RAP_CONTENT_ON 0x10 |
| 211 | /* Turn content streaming OFF. */ |
| 212 | #define MHL_RAP_CONTENT_OFF 0x11 |
| 213 | |
| 214 | /* |
| 215 | * |
| 216 | * MHL Timings applicable to this driver. |
| 217 | * |
| 218 | */ |
| 219 | /* 100 - 1000 milliseconds. Per MHL 1.0 Specs */ |
| 220 | #define T_SRC_VBUS_CBUS_TO_STABLE (200) |
| 221 | /* 20 milliseconds. Per MHL 1.0 Specs */ |
| 222 | #define T_SRC_WAKE_PULSE_WIDTH_1 (20) |
| 223 | /* 60 milliseconds. Per MHL 1.0 Specs */ |
| 224 | #define T_SRC_WAKE_PULSE_WIDTH_2 (60) |
| 225 | |
| 226 | /* 100 - 1000 milliseconds. Per MHL 1.0 Specs */ |
| 227 | #define T_SRC_WAKE_TO_DISCOVER (500) |
| 228 | |
| 229 | #define T_SRC_VBUS_CBUS_T0_STABLE (500) |
| 230 | |
| 231 | /* Allow RSEN to stay low this much before reacting.*/ |
| 232 | #define T_SRC_RSEN_DEGLITCH (100) |
| 233 | |
| 234 | /* Wait this much after connection before reacting to RSEN (300-500ms)*/ |
| 235 | /* Per specs between 300 to 500 ms*/ |
| 236 | #define T_SRC_RXSENSE_CHK (400) |
| 237 | |
| 238 | #endif /* __MHL_SPEC_DEFS_H__ */ |