Krzysztof Kozlowski | 1213a36 | 2018-08-07 18:21:22 +0200 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
| 2 | // |
| 3 | // extcon-max8997.c - MAX8997 extcon driver to support MAX8997 MUIC |
| 4 | // |
| 5 | // Copyright (C) 2012 Samsung Electronics |
| 6 | // Donggeun Kim <dg77.kim@samsung.com> |
Donggeun Kim | 99f09be | 2011-11-24 18:12:18 +0900 | [diff] [blame] | 7 | |
| 8 | #include <linux/kernel.h> |
| 9 | #include <linux/module.h> |
| 10 | #include <linux/i2c.h> |
| 11 | #include <linux/slab.h> |
| 12 | #include <linux/interrupt.h> |
| 13 | #include <linux/err.h> |
| 14 | #include <linux/platform_device.h> |
| 15 | #include <linux/kobject.h> |
| 16 | #include <linux/mfd/max8997.h> |
| 17 | #include <linux/mfd/max8997-private.h> |
Chanwoo Choi | 176aa36 | 2017-09-21 12:11:24 +0900 | [diff] [blame] | 18 | #include <linux/extcon-provider.h> |
Chanwoo Choi | dca1a71 | 2012-07-02 09:03:00 +0900 | [diff] [blame] | 19 | #include <linux/irqdomain.h> |
Chanwoo Choi | b76668b | 2012-05-09 12:31:58 +0900 | [diff] [blame] | 20 | |
| 21 | #define DEV_NAME "max8997-muic" |
Chanwoo Choi | af5eb1a | 2013-02-13 15:10:00 +0900 | [diff] [blame] | 22 | #define DELAY_MS_DEFAULT 20000 /* unit: millisecond */ |
Donggeun Kim | 99f09be | 2011-11-24 18:12:18 +0900 | [diff] [blame] | 23 | |
Chanwoo Choi | 027fcd5 | 2013-02-13 08:50:00 +0900 | [diff] [blame] | 24 | enum max8997_muic_adc_debounce_time { |
| 25 | ADC_DEBOUNCE_TIME_0_5MS = 0, /* 0.5ms */ |
| 26 | ADC_DEBOUNCE_TIME_10MS, /* 10ms */ |
| 27 | ADC_DEBOUNCE_TIME_25MS, /* 25ms */ |
| 28 | ADC_DEBOUNCE_TIME_38_62MS, /* 38.62ms */ |
| 29 | }; |
| 30 | |
Donggeun Kim | 99f09be | 2011-11-24 18:12:18 +0900 | [diff] [blame] | 31 | struct max8997_muic_irq { |
| 32 | unsigned int irq; |
| 33 | const char *name; |
Chanwoo Choi | dca1a71 | 2012-07-02 09:03:00 +0900 | [diff] [blame] | 34 | unsigned int virq; |
Donggeun Kim | 99f09be | 2011-11-24 18:12:18 +0900 | [diff] [blame] | 35 | }; |
| 36 | |
| 37 | static struct max8997_muic_irq muic_irqs[] = { |
Chanwoo Choi | f73f623 | 2013-02-13 12:05:42 +0900 | [diff] [blame] | 38 | { MAX8997_MUICIRQ_ADCError, "muic-ADCERROR" }, |
| 39 | { MAX8997_MUICIRQ_ADCLow, "muic-ADCLOW" }, |
| 40 | { MAX8997_MUICIRQ_ADC, "muic-ADC" }, |
| 41 | { MAX8997_MUICIRQ_VBVolt, "muic-VBVOLT" }, |
| 42 | { MAX8997_MUICIRQ_DBChg, "muic-DBCHG" }, |
| 43 | { MAX8997_MUICIRQ_DCDTmr, "muic-DCDTMR" }, |
| 44 | { MAX8997_MUICIRQ_ChgDetRun, "muic-CHGDETRUN" }, |
| 45 | { MAX8997_MUICIRQ_ChgTyp, "muic-CHGTYP" }, |
| 46 | { MAX8997_MUICIRQ_OVP, "muic-OVP" }, |
| 47 | }; |
| 48 | |
| 49 | /* Define supported cable type */ |
| 50 | enum max8997_muic_acc_type { |
| 51 | MAX8997_MUIC_ADC_GROUND = 0x0, |
| 52 | MAX8997_MUIC_ADC_MHL, /* MHL*/ |
| 53 | MAX8997_MUIC_ADC_REMOTE_S1_BUTTON, |
| 54 | MAX8997_MUIC_ADC_REMOTE_S2_BUTTON, |
| 55 | MAX8997_MUIC_ADC_REMOTE_S3_BUTTON, |
| 56 | MAX8997_MUIC_ADC_REMOTE_S4_BUTTON, |
| 57 | MAX8997_MUIC_ADC_REMOTE_S5_BUTTON, |
| 58 | MAX8997_MUIC_ADC_REMOTE_S6_BUTTON, |
| 59 | MAX8997_MUIC_ADC_REMOTE_S7_BUTTON, |
| 60 | MAX8997_MUIC_ADC_REMOTE_S8_BUTTON, |
| 61 | MAX8997_MUIC_ADC_REMOTE_S9_BUTTON, |
| 62 | MAX8997_MUIC_ADC_REMOTE_S10_BUTTON, |
| 63 | MAX8997_MUIC_ADC_REMOTE_S11_BUTTON, |
| 64 | MAX8997_MUIC_ADC_REMOTE_S12_BUTTON, |
| 65 | MAX8997_MUIC_ADC_RESERVED_ACC_1, |
| 66 | MAX8997_MUIC_ADC_RESERVED_ACC_2, |
| 67 | MAX8997_MUIC_ADC_RESERVED_ACC_3, |
| 68 | MAX8997_MUIC_ADC_RESERVED_ACC_4, |
| 69 | MAX8997_MUIC_ADC_RESERVED_ACC_5, |
| 70 | MAX8997_MUIC_ADC_CEA936_AUDIO, |
| 71 | MAX8997_MUIC_ADC_PHONE_POWERED_DEV, |
| 72 | MAX8997_MUIC_ADC_TTY_CONVERTER, |
| 73 | MAX8997_MUIC_ADC_UART_CABLE, |
| 74 | MAX8997_MUIC_ADC_CEA936A_TYPE1_CHG, |
| 75 | MAX8997_MUIC_ADC_FACTORY_MODE_USB_OFF, /* JIG-USB-OFF */ |
| 76 | MAX8997_MUIC_ADC_FACTORY_MODE_USB_ON, /* JIG-USB-ON */ |
| 77 | MAX8997_MUIC_ADC_AV_CABLE_NOLOAD, /* DESKDOCK */ |
| 78 | MAX8997_MUIC_ADC_CEA936A_TYPE2_CHG, |
| 79 | MAX8997_MUIC_ADC_FACTORY_MODE_UART_OFF, /* JIG-UART */ |
| 80 | MAX8997_MUIC_ADC_FACTORY_MODE_UART_ON, /* CARDOCK */ |
| 81 | MAX8997_MUIC_ADC_AUDIO_MODE_REMOTE, |
| 82 | MAX8997_MUIC_ADC_OPEN, /* OPEN */ |
| 83 | }; |
| 84 | |
| 85 | enum max8997_muic_cable_group { |
| 86 | MAX8997_CABLE_GROUP_ADC = 0, |
| 87 | MAX8997_CABLE_GROUP_ADC_GND, |
| 88 | MAX8997_CABLE_GROUP_CHG, |
| 89 | MAX8997_CABLE_GROUP_VBVOLT, |
| 90 | }; |
| 91 | |
| 92 | enum max8997_muic_usb_type { |
| 93 | MAX8997_USB_HOST, |
| 94 | MAX8997_USB_DEVICE, |
| 95 | }; |
| 96 | |
| 97 | enum max8997_muic_charger_type { |
| 98 | MAX8997_CHARGER_TYPE_NONE = 0, |
| 99 | MAX8997_CHARGER_TYPE_USB, |
| 100 | MAX8997_CHARGER_TYPE_DOWNSTREAM_PORT, |
| 101 | MAX8997_CHARGER_TYPE_DEDICATED_CHG, |
| 102 | MAX8997_CHARGER_TYPE_500MA, |
| 103 | MAX8997_CHARGER_TYPE_1A, |
| 104 | MAX8997_CHARGER_TYPE_DEAD_BATTERY = 7, |
Donggeun Kim | 99f09be | 2011-11-24 18:12:18 +0900 | [diff] [blame] | 105 | }; |
| 106 | |
| 107 | struct max8997_muic_info { |
| 108 | struct device *dev; |
Donggeun Kim | 99f09be | 2011-11-24 18:12:18 +0900 | [diff] [blame] | 109 | struct i2c_client *muic; |
Chanwoo Choi | f73f623 | 2013-02-13 12:05:42 +0900 | [diff] [blame] | 110 | struct extcon_dev *edev; |
| 111 | int prev_cable_type; |
| 112 | int prev_chg_type; |
| 113 | u8 status[2]; |
Donggeun Kim | 99f09be | 2011-11-24 18:12:18 +0900 | [diff] [blame] | 114 | |
| 115 | int irq; |
| 116 | struct work_struct irq_work; |
Donggeun Kim | 99f09be | 2011-11-24 18:12:18 +0900 | [diff] [blame] | 117 | struct mutex mutex; |
Chanwoo Choi | b76668b | 2012-05-09 12:31:58 +0900 | [diff] [blame] | 118 | |
Chanwoo Choi | f73f623 | 2013-02-13 12:05:42 +0900 | [diff] [blame] | 119 | struct max8997_muic_platform_data *muic_pdata; |
| 120 | enum max8997_muic_charger_type pre_charger_type; |
Chanwoo Choi | 685dc9a | 2013-02-13 15:04:15 +0900 | [diff] [blame] | 121 | |
| 122 | /* |
Chanwoo Choi | af5eb1a | 2013-02-13 15:10:00 +0900 | [diff] [blame] | 123 | * Use delayed workqueue to detect cable state and then |
| 124 | * notify cable state to notifiee/platform through uevent. |
| 125 | * After completing the booting of platform, the extcon provider |
| 126 | * driver should notify cable state to upper layer. |
| 127 | */ |
| 128 | struct delayed_work wq_detcable; |
| 129 | |
| 130 | /* |
Chanwoo Choi | 685dc9a | 2013-02-13 15:04:15 +0900 | [diff] [blame] | 131 | * Default usb/uart path whether UART/USB or AUX_UART/AUX_USB |
| 132 | * h/w path of COMP2/COMN1 on CONTROL1 register. |
| 133 | */ |
| 134 | int path_usb; |
| 135 | int path_uart; |
Chanwoo Choi | b76668b | 2012-05-09 12:31:58 +0900 | [diff] [blame] | 136 | }; |
| 137 | |
Chanwoo Choi | 73b6ecd | 2015-06-12 11:10:06 +0900 | [diff] [blame] | 138 | static const unsigned int max8997_extcon_cable[] = { |
Chanwoo Choi | 2a9de9c | 2015-04-24 19:16:05 +0900 | [diff] [blame] | 139 | EXTCON_USB, |
| 140 | EXTCON_USB_HOST, |
Chanwoo Choi | 8b45b6a | 2015-11-09 10:10:15 +0900 | [diff] [blame] | 141 | EXTCON_CHG_USB_SDP, |
Chanwoo Choi | 11eecf9 | 2015-10-03 14:15:13 +0900 | [diff] [blame] | 142 | EXTCON_CHG_USB_DCP, |
| 143 | EXTCON_CHG_USB_FAST, |
| 144 | EXTCON_CHG_USB_SLOW, |
| 145 | EXTCON_CHG_USB_CDP, |
| 146 | EXTCON_DISP_MHL, |
Chanwoo Choi | 2a9de9c | 2015-04-24 19:16:05 +0900 | [diff] [blame] | 147 | EXTCON_DOCK, |
| 148 | EXTCON_JIG, |
| 149 | EXTCON_NONE, |
Donggeun Kim | 99f09be | 2011-11-24 18:12:18 +0900 | [diff] [blame] | 150 | }; |
| 151 | |
Chanwoo Choi | 07c7050 | 2013-02-13 08:42:37 +0900 | [diff] [blame] | 152 | /* |
Chanwoo Choi | 027fcd5 | 2013-02-13 08:50:00 +0900 | [diff] [blame] | 153 | * max8997_muic_set_debounce_time - Set the debounce time of ADC |
| 154 | * @info: the instance including private data of max8997 MUIC |
| 155 | * @time: the debounce time of ADC |
| 156 | */ |
| 157 | static int max8997_muic_set_debounce_time(struct max8997_muic_info *info, |
| 158 | enum max8997_muic_adc_debounce_time time) |
| 159 | { |
| 160 | int ret; |
| 161 | |
| 162 | switch (time) { |
| 163 | case ADC_DEBOUNCE_TIME_0_5MS: |
| 164 | case ADC_DEBOUNCE_TIME_10MS: |
| 165 | case ADC_DEBOUNCE_TIME_25MS: |
| 166 | case ADC_DEBOUNCE_TIME_38_62MS: |
| 167 | ret = max8997_update_reg(info->muic, |
| 168 | MAX8997_MUIC_REG_CONTROL3, |
| 169 | time << CONTROL3_ADCDBSET_SHIFT, |
| 170 | CONTROL3_ADCDBSET_MASK); |
| 171 | if (ret) { |
| 172 | dev_err(info->dev, "failed to set ADC debounce time\n"); |
Sachin Kamat | 3ad9e86 | 2013-04-08 09:13:18 +0900 | [diff] [blame] | 173 | return ret; |
Chanwoo Choi | 027fcd5 | 2013-02-13 08:50:00 +0900 | [diff] [blame] | 174 | } |
| 175 | break; |
| 176 | default: |
| 177 | dev_err(info->dev, "invalid ADC debounce time\n"); |
| 178 | return -EINVAL; |
| 179 | } |
| 180 | |
| 181 | return 0; |
| 182 | }; |
| 183 | |
| 184 | /* |
Chanwoo Choi | 07c7050 | 2013-02-13 08:42:37 +0900 | [diff] [blame] | 185 | * max8997_muic_set_path - Set hardware line according to attached cable |
| 186 | * @info: the instance including private data of max8997 MUIC |
| 187 | * @value: the path according to attached cable |
| 188 | * @attached: the state of cable (true:attached, false:detached) |
| 189 | * |
| 190 | * The max8997 MUIC device share outside H/W line among a varity of cables, |
| 191 | * so this function set internal path of H/W line according to the type of |
| 192 | * attached cable. |
| 193 | */ |
| 194 | static int max8997_muic_set_path(struct max8997_muic_info *info, |
| 195 | u8 val, bool attached) |
| 196 | { |
Markus Elfring | 00c2f52 | 2017-11-09 10:00:08 +0100 | [diff] [blame] | 197 | int ret; |
Chanwoo Choi | 07c7050 | 2013-02-13 08:42:37 +0900 | [diff] [blame] | 198 | u8 ctrl1, ctrl2 = 0; |
| 199 | |
| 200 | if (attached) |
| 201 | ctrl1 = val; |
| 202 | else |
| 203 | ctrl1 = CONTROL1_SW_OPEN; |
| 204 | |
| 205 | ret = max8997_update_reg(info->muic, |
| 206 | MAX8997_MUIC_REG_CONTROL1, ctrl1, COMP_SW_MASK); |
| 207 | if (ret < 0) { |
| 208 | dev_err(info->dev, "failed to update MUIC register\n"); |
Sachin Kamat | 3ad9e86 | 2013-04-08 09:13:18 +0900 | [diff] [blame] | 209 | return ret; |
Chanwoo Choi | 07c7050 | 2013-02-13 08:42:37 +0900 | [diff] [blame] | 210 | } |
| 211 | |
| 212 | if (attached) |
| 213 | ctrl2 |= CONTROL2_CPEN_MASK; /* LowPwr=0, CPEn=1 */ |
| 214 | else |
| 215 | ctrl2 |= CONTROL2_LOWPWR_MASK; /* LowPwr=1, CPEn=0 */ |
| 216 | |
| 217 | ret = max8997_update_reg(info->muic, |
| 218 | MAX8997_MUIC_REG_CONTROL2, ctrl2, |
| 219 | CONTROL2_LOWPWR_MASK | CONTROL2_CPEN_MASK); |
| 220 | if (ret < 0) { |
| 221 | dev_err(info->dev, "failed to update MUIC register\n"); |
Sachin Kamat | 3ad9e86 | 2013-04-08 09:13:18 +0900 | [diff] [blame] | 222 | return ret; |
Chanwoo Choi | 07c7050 | 2013-02-13 08:42:37 +0900 | [diff] [blame] | 223 | } |
| 224 | |
| 225 | dev_info(info->dev, |
| 226 | "CONTROL1 : 0x%02x, CONTROL2 : 0x%02x, state : %s\n", |
| 227 | ctrl1, ctrl2, attached ? "attached" : "detached"); |
| 228 | |
| 229 | return 0; |
| 230 | } |
| 231 | |
Chanwoo Choi | f73f623 | 2013-02-13 12:05:42 +0900 | [diff] [blame] | 232 | /* |
| 233 | * max8997_muic_get_cable_type - Return cable type and check cable state |
| 234 | * @info: the instance including private data of max8997 MUIC |
| 235 | * @group: the path according to attached cable |
| 236 | * @attached: store cable state and return |
| 237 | * |
| 238 | * This function check the cable state either attached or detached, |
| 239 | * and then divide precise type of cable according to cable group. |
| 240 | * - MAX8997_CABLE_GROUP_ADC |
| 241 | * - MAX8997_CABLE_GROUP_CHG |
| 242 | */ |
| 243 | static int max8997_muic_get_cable_type(struct max8997_muic_info *info, |
| 244 | enum max8997_muic_cable_group group, bool *attached) |
| 245 | { |
| 246 | int cable_type = 0; |
| 247 | int adc; |
| 248 | int chg_type; |
| 249 | |
| 250 | switch (group) { |
| 251 | case MAX8997_CABLE_GROUP_ADC: |
| 252 | /* |
| 253 | * Read ADC value to check cable type and decide cable state |
| 254 | * according to cable type |
| 255 | */ |
| 256 | adc = info->status[0] & STATUS1_ADC_MASK; |
| 257 | adc >>= STATUS1_ADC_SHIFT; |
| 258 | |
| 259 | /* |
| 260 | * Check current cable state/cable type and store cable type |
| 261 | * (info->prev_cable_type) for handling cable when cable is |
| 262 | * detached. |
| 263 | */ |
| 264 | if (adc == MAX8997_MUIC_ADC_OPEN) { |
| 265 | *attached = false; |
| 266 | |
| 267 | cable_type = info->prev_cable_type; |
| 268 | info->prev_cable_type = MAX8997_MUIC_ADC_OPEN; |
| 269 | } else { |
| 270 | *attached = true; |
| 271 | |
| 272 | cable_type = info->prev_cable_type = adc; |
| 273 | } |
| 274 | break; |
| 275 | case MAX8997_CABLE_GROUP_CHG: |
| 276 | /* |
| 277 | * Read charger type to check cable type and decide cable state |
| 278 | * according to type of charger cable. |
| 279 | */ |
| 280 | chg_type = info->status[1] & STATUS2_CHGTYP_MASK; |
| 281 | chg_type >>= STATUS2_CHGTYP_SHIFT; |
| 282 | |
| 283 | if (chg_type == MAX8997_CHARGER_TYPE_NONE) { |
| 284 | *attached = false; |
| 285 | |
| 286 | cable_type = info->prev_chg_type; |
| 287 | info->prev_chg_type = MAX8997_CHARGER_TYPE_NONE; |
| 288 | } else { |
| 289 | *attached = true; |
| 290 | |
| 291 | /* |
| 292 | * Check current cable state/cable type and store cable |
| 293 | * type(info->prev_chg_type) for handling cable when |
| 294 | * charger cable is detached. |
| 295 | */ |
| 296 | cable_type = info->prev_chg_type = chg_type; |
| 297 | } |
| 298 | |
| 299 | break; |
| 300 | default: |
| 301 | dev_err(info->dev, "Unknown cable group (%d)\n", group); |
| 302 | cable_type = -EINVAL; |
| 303 | break; |
| 304 | } |
| 305 | |
| 306 | return cable_type; |
| 307 | } |
| 308 | |
Donggeun Kim | 99f09be | 2011-11-24 18:12:18 +0900 | [diff] [blame] | 309 | static int max8997_muic_handle_usb(struct max8997_muic_info *info, |
| 310 | enum max8997_muic_usb_type usb_type, bool attached) |
| 311 | { |
Donggeun Kim | 99f09be | 2011-11-24 18:12:18 +0900 | [diff] [blame] | 312 | int ret = 0; |
| 313 | |
| 314 | if (usb_type == MAX8997_USB_HOST) { |
Chanwoo Choi | 685dc9a | 2013-02-13 15:04:15 +0900 | [diff] [blame] | 315 | ret = max8997_muic_set_path(info, info->path_usb, attached); |
Chanwoo Choi | f73f623 | 2013-02-13 12:05:42 +0900 | [diff] [blame] | 316 | if (ret < 0) { |
Donggeun Kim | 99f09be | 2011-11-24 18:12:18 +0900 | [diff] [blame] | 317 | dev_err(info->dev, "failed to update muic register\n"); |
Chanwoo Choi | f73f623 | 2013-02-13 12:05:42 +0900 | [diff] [blame] | 318 | return ret; |
Donggeun Kim | 99f09be | 2011-11-24 18:12:18 +0900 | [diff] [blame] | 319 | } |
| 320 | } |
| 321 | |
Chanwoo Choi | b76668b | 2012-05-09 12:31:58 +0900 | [diff] [blame] | 322 | switch (usb_type) { |
| 323 | case MAX8997_USB_HOST: |
Chanwoo Choi | 8670b45 | 2016-08-16 15:55:34 +0900 | [diff] [blame] | 324 | extcon_set_state_sync(info->edev, EXTCON_USB_HOST, attached); |
Chanwoo Choi | b76668b | 2012-05-09 12:31:58 +0900 | [diff] [blame] | 325 | break; |
| 326 | case MAX8997_USB_DEVICE: |
Chanwoo Choi | 8670b45 | 2016-08-16 15:55:34 +0900 | [diff] [blame] | 327 | extcon_set_state_sync(info->edev, EXTCON_USB, attached); |
| 328 | extcon_set_state_sync(info->edev, EXTCON_CHG_USB_SDP, |
Chanwoo Choi | 8b45b6a | 2015-11-09 10:10:15 +0900 | [diff] [blame] | 329 | attached); |
Chanwoo Choi | b76668b | 2012-05-09 12:31:58 +0900 | [diff] [blame] | 330 | break; |
| 331 | default: |
Chanwoo Choi | f73f623 | 2013-02-13 12:05:42 +0900 | [diff] [blame] | 332 | dev_err(info->dev, "failed to detect %s usb cable\n", |
| 333 | attached ? "attached" : "detached"); |
| 334 | return -EINVAL; |
Chanwoo Choi | b76668b | 2012-05-09 12:31:58 +0900 | [diff] [blame] | 335 | } |
| 336 | |
Chanwoo Choi | f73f623 | 2013-02-13 12:05:42 +0900 | [diff] [blame] | 337 | return 0; |
Donggeun Kim | 99f09be | 2011-11-24 18:12:18 +0900 | [diff] [blame] | 338 | } |
| 339 | |
Donggeun Kim | 99f09be | 2011-11-24 18:12:18 +0900 | [diff] [blame] | 340 | static int max8997_muic_handle_dock(struct max8997_muic_info *info, |
Chanwoo Choi | f73f623 | 2013-02-13 12:05:42 +0900 | [diff] [blame] | 341 | int cable_type, bool attached) |
Donggeun Kim | 99f09be | 2011-11-24 18:12:18 +0900 | [diff] [blame] | 342 | { |
Donggeun Kim | 99f09be | 2011-11-24 18:12:18 +0900 | [diff] [blame] | 343 | int ret = 0; |
| 344 | |
Chanwoo Choi | 07c7050 | 2013-02-13 08:42:37 +0900 | [diff] [blame] | 345 | ret = max8997_muic_set_path(info, CONTROL1_SW_AUDIO, attached); |
Donggeun Kim | 99f09be | 2011-11-24 18:12:18 +0900 | [diff] [blame] | 346 | if (ret) { |
| 347 | dev_err(info->dev, "failed to update muic register\n"); |
Chanwoo Choi | f73f623 | 2013-02-13 12:05:42 +0900 | [diff] [blame] | 348 | return ret; |
Donggeun Kim | 99f09be | 2011-11-24 18:12:18 +0900 | [diff] [blame] | 349 | } |
| 350 | |
Chanwoo Choi | f73f623 | 2013-02-13 12:05:42 +0900 | [diff] [blame] | 351 | switch (cable_type) { |
| 352 | case MAX8997_MUIC_ADC_AV_CABLE_NOLOAD: |
Chanwoo Choi | f73f623 | 2013-02-13 12:05:42 +0900 | [diff] [blame] | 353 | case MAX8997_MUIC_ADC_FACTORY_MODE_UART_ON: |
Chanwoo Choi | 8670b45 | 2016-08-16 15:55:34 +0900 | [diff] [blame] | 354 | extcon_set_state_sync(info->edev, EXTCON_DOCK, attached); |
Donggeun Kim | 99f09be | 2011-11-24 18:12:18 +0900 | [diff] [blame] | 355 | break; |
| 356 | default: |
Chanwoo Choi | f73f623 | 2013-02-13 12:05:42 +0900 | [diff] [blame] | 357 | dev_err(info->dev, "failed to detect %s dock device\n", |
| 358 | attached ? "attached" : "detached"); |
| 359 | return -EINVAL; |
Donggeun Kim | 99f09be | 2011-11-24 18:12:18 +0900 | [diff] [blame] | 360 | } |
Chanwoo Choi | f73f623 | 2013-02-13 12:05:42 +0900 | [diff] [blame] | 361 | |
| 362 | return 0; |
Donggeun Kim | 99f09be | 2011-11-24 18:12:18 +0900 | [diff] [blame] | 363 | } |
| 364 | |
| 365 | static int max8997_muic_handle_jig_uart(struct max8997_muic_info *info, |
| 366 | bool attached) |
| 367 | { |
Donggeun Kim | 99f09be | 2011-11-24 18:12:18 +0900 | [diff] [blame] | 368 | int ret = 0; |
| 369 | |
| 370 | /* switch to UART */ |
Chanwoo Choi | 685dc9a | 2013-02-13 15:04:15 +0900 | [diff] [blame] | 371 | ret = max8997_muic_set_path(info, info->path_uart, attached); |
Donggeun Kim | 99f09be | 2011-11-24 18:12:18 +0900 | [diff] [blame] | 372 | if (ret) { |
| 373 | dev_err(info->dev, "failed to update muic register\n"); |
Sachin Kamat | 3ad9e86 | 2013-04-08 09:13:18 +0900 | [diff] [blame] | 374 | return ret; |
Donggeun Kim | 99f09be | 2011-11-24 18:12:18 +0900 | [diff] [blame] | 375 | } |
| 376 | |
Chanwoo Choi | 8670b45 | 2016-08-16 15:55:34 +0900 | [diff] [blame] | 377 | extcon_set_state_sync(info->edev, EXTCON_JIG, attached); |
Chanwoo Choi | f73f623 | 2013-02-13 12:05:42 +0900 | [diff] [blame] | 378 | |
| 379 | return 0; |
Donggeun Kim | 99f09be | 2011-11-24 18:12:18 +0900 | [diff] [blame] | 380 | } |
| 381 | |
Chanwoo Choi | f73f623 | 2013-02-13 12:05:42 +0900 | [diff] [blame] | 382 | static int max8997_muic_adc_handler(struct max8997_muic_info *info) |
Donggeun Kim | 99f09be | 2011-11-24 18:12:18 +0900 | [diff] [blame] | 383 | { |
Chanwoo Choi | f73f623 | 2013-02-13 12:05:42 +0900 | [diff] [blame] | 384 | int cable_type; |
| 385 | bool attached; |
Donggeun Kim | 99f09be | 2011-11-24 18:12:18 +0900 | [diff] [blame] | 386 | int ret = 0; |
| 387 | |
Chanwoo Choi | f73f623 | 2013-02-13 12:05:42 +0900 | [diff] [blame] | 388 | /* Check cable state which is either detached or attached */ |
| 389 | cable_type = max8997_muic_get_cable_type(info, |
| 390 | MAX8997_CABLE_GROUP_ADC, &attached); |
| 391 | |
| 392 | switch (cable_type) { |
| 393 | case MAX8997_MUIC_ADC_GROUND: |
| 394 | ret = max8997_muic_handle_usb(info, MAX8997_USB_HOST, attached); |
| 395 | if (ret < 0) |
| 396 | return ret; |
Donggeun Kim | 99f09be | 2011-11-24 18:12:18 +0900 | [diff] [blame] | 397 | break; |
Chanwoo Choi | f73f623 | 2013-02-13 12:05:42 +0900 | [diff] [blame] | 398 | case MAX8997_MUIC_ADC_MHL: |
Chanwoo Choi | 8670b45 | 2016-08-16 15:55:34 +0900 | [diff] [blame] | 399 | extcon_set_state_sync(info->edev, EXTCON_DISP_MHL, attached); |
Donggeun Kim | 99f09be | 2011-11-24 18:12:18 +0900 | [diff] [blame] | 400 | break; |
Chanwoo Choi | f73f623 | 2013-02-13 12:05:42 +0900 | [diff] [blame] | 401 | case MAX8997_MUIC_ADC_FACTORY_MODE_USB_OFF: |
| 402 | case MAX8997_MUIC_ADC_FACTORY_MODE_USB_ON: |
Chanwoo Choi | c2275d2 | 2013-08-23 10:21:37 +0900 | [diff] [blame] | 403 | ret = max8997_muic_handle_usb(info, |
| 404 | MAX8997_USB_DEVICE, attached); |
Chanwoo Choi | f73f623 | 2013-02-13 12:05:42 +0900 | [diff] [blame] | 405 | if (ret < 0) |
| 406 | return ret; |
Donggeun Kim | 99f09be | 2011-11-24 18:12:18 +0900 | [diff] [blame] | 407 | break; |
Chanwoo Choi | f73f623 | 2013-02-13 12:05:42 +0900 | [diff] [blame] | 408 | case MAX8997_MUIC_ADC_AV_CABLE_NOLOAD: |
| 409 | case MAX8997_MUIC_ADC_FACTORY_MODE_UART_ON: |
| 410 | ret = max8997_muic_handle_dock(info, cable_type, attached); |
| 411 | if (ret < 0) |
| 412 | return ret; |
Donggeun Kim | 99f09be | 2011-11-24 18:12:18 +0900 | [diff] [blame] | 413 | break; |
Chanwoo Choi | f73f623 | 2013-02-13 12:05:42 +0900 | [diff] [blame] | 414 | case MAX8997_MUIC_ADC_FACTORY_MODE_UART_OFF: |
| 415 | ret = max8997_muic_handle_jig_uart(info, attached); |
Donggeun Kim | 99f09be | 2011-11-24 18:12:18 +0900 | [diff] [blame] | 416 | break; |
Chanwoo Choi | f73f623 | 2013-02-13 12:05:42 +0900 | [diff] [blame] | 417 | case MAX8997_MUIC_ADC_REMOTE_S1_BUTTON: |
| 418 | case MAX8997_MUIC_ADC_REMOTE_S2_BUTTON: |
| 419 | case MAX8997_MUIC_ADC_REMOTE_S3_BUTTON: |
| 420 | case MAX8997_MUIC_ADC_REMOTE_S4_BUTTON: |
| 421 | case MAX8997_MUIC_ADC_REMOTE_S5_BUTTON: |
| 422 | case MAX8997_MUIC_ADC_REMOTE_S6_BUTTON: |
| 423 | case MAX8997_MUIC_ADC_REMOTE_S7_BUTTON: |
| 424 | case MAX8997_MUIC_ADC_REMOTE_S8_BUTTON: |
| 425 | case MAX8997_MUIC_ADC_REMOTE_S9_BUTTON: |
| 426 | case MAX8997_MUIC_ADC_REMOTE_S10_BUTTON: |
| 427 | case MAX8997_MUIC_ADC_REMOTE_S11_BUTTON: |
| 428 | case MAX8997_MUIC_ADC_REMOTE_S12_BUTTON: |
| 429 | case MAX8997_MUIC_ADC_RESERVED_ACC_1: |
| 430 | case MAX8997_MUIC_ADC_RESERVED_ACC_2: |
| 431 | case MAX8997_MUIC_ADC_RESERVED_ACC_3: |
| 432 | case MAX8997_MUIC_ADC_RESERVED_ACC_4: |
| 433 | case MAX8997_MUIC_ADC_RESERVED_ACC_5: |
| 434 | case MAX8997_MUIC_ADC_CEA936_AUDIO: |
| 435 | case MAX8997_MUIC_ADC_PHONE_POWERED_DEV: |
| 436 | case MAX8997_MUIC_ADC_TTY_CONVERTER: |
| 437 | case MAX8997_MUIC_ADC_UART_CABLE: |
| 438 | case MAX8997_MUIC_ADC_CEA936A_TYPE1_CHG: |
| 439 | case MAX8997_MUIC_ADC_CEA936A_TYPE2_CHG: |
| 440 | case MAX8997_MUIC_ADC_AUDIO_MODE_REMOTE: |
| 441 | /* |
| 442 | * This cable isn't used in general case if it is specially |
| 443 | * needed to detect additional cable, should implement |
| 444 | * proper operation when this cable is attached/detached. |
| 445 | */ |
| 446 | dev_info(info->dev, |
| 447 | "cable is %s but it isn't used (type:0x%x)\n", |
| 448 | attached ? "attached" : "detached", cable_type); |
| 449 | return -EAGAIN; |
Donggeun Kim | 99f09be | 2011-11-24 18:12:18 +0900 | [diff] [blame] | 450 | default: |
Chanwoo Choi | f73f623 | 2013-02-13 12:05:42 +0900 | [diff] [blame] | 451 | dev_err(info->dev, |
| 452 | "failed to detect %s unknown cable (type:0x%x)\n", |
| 453 | attached ? "attached" : "detached", cable_type); |
Devendra Naga | 3cafbd4 | 2012-08-31 14:00:19 +0530 | [diff] [blame] | 454 | return -EINVAL; |
Chanwoo Choi | b76668b | 2012-05-09 12:31:58 +0900 | [diff] [blame] | 455 | } |
Donggeun Kim | 99f09be | 2011-11-24 18:12:18 +0900 | [diff] [blame] | 456 | |
Devendra Naga | 3cafbd4 | 2012-08-31 14:00:19 +0530 | [diff] [blame] | 457 | return 0; |
Donggeun Kim | 99f09be | 2011-11-24 18:12:18 +0900 | [diff] [blame] | 458 | } |
| 459 | |
Chanwoo Choi | f73f623 | 2013-02-13 12:05:42 +0900 | [diff] [blame] | 460 | static int max8997_muic_chg_handler(struct max8997_muic_info *info) |
Donggeun Kim | 99f09be | 2011-11-24 18:12:18 +0900 | [diff] [blame] | 461 | { |
Chanwoo Choi | f73f623 | 2013-02-13 12:05:42 +0900 | [diff] [blame] | 462 | int chg_type; |
| 463 | bool attached; |
| 464 | int adc; |
Donggeun Kim | 99f09be | 2011-11-24 18:12:18 +0900 | [diff] [blame] | 465 | |
Chanwoo Choi | f73f623 | 2013-02-13 12:05:42 +0900 | [diff] [blame] | 466 | chg_type = max8997_muic_get_cable_type(info, |
| 467 | MAX8997_CABLE_GROUP_CHG, &attached); |
Donggeun Kim | 99f09be | 2011-11-24 18:12:18 +0900 | [diff] [blame] | 468 | |
Chanwoo Choi | f73f623 | 2013-02-13 12:05:42 +0900 | [diff] [blame] | 469 | switch (chg_type) { |
Donggeun Kim | 99f09be | 2011-11-24 18:12:18 +0900 | [diff] [blame] | 470 | case MAX8997_CHARGER_TYPE_NONE: |
Donggeun Kim | 99f09be | 2011-11-24 18:12:18 +0900 | [diff] [blame] | 471 | break; |
| 472 | case MAX8997_CHARGER_TYPE_USB: |
Chanwoo Choi | f73f623 | 2013-02-13 12:05:42 +0900 | [diff] [blame] | 473 | adc = info->status[0] & STATUS1_ADC_MASK; |
| 474 | adc >>= STATUS1_ADC_SHIFT; |
| 475 | |
| 476 | if ((adc & STATUS1_ADC_MASK) == MAX8997_MUIC_ADC_OPEN) { |
Donggeun Kim | 99f09be | 2011-11-24 18:12:18 +0900 | [diff] [blame] | 477 | max8997_muic_handle_usb(info, |
Chanwoo Choi | f73f623 | 2013-02-13 12:05:42 +0900 | [diff] [blame] | 478 | MAX8997_USB_DEVICE, attached); |
Donggeun Kim | 99f09be | 2011-11-24 18:12:18 +0900 | [diff] [blame] | 479 | } |
Donggeun Kim | 99f09be | 2011-11-24 18:12:18 +0900 | [diff] [blame] | 480 | break; |
| 481 | case MAX8997_CHARGER_TYPE_DOWNSTREAM_PORT: |
Chanwoo Choi | 8670b45 | 2016-08-16 15:55:34 +0900 | [diff] [blame] | 482 | extcon_set_state_sync(info->edev, EXTCON_CHG_USB_CDP, |
Chanwoo Choi | 2a9de9c | 2015-04-24 19:16:05 +0900 | [diff] [blame] | 483 | attached); |
Chanwoo Choi | b76668b | 2012-05-09 12:31:58 +0900 | [diff] [blame] | 484 | break; |
Donggeun Kim | 99f09be | 2011-11-24 18:12:18 +0900 | [diff] [blame] | 485 | case MAX8997_CHARGER_TYPE_DEDICATED_CHG: |
Chanwoo Choi | 8670b45 | 2016-08-16 15:55:34 +0900 | [diff] [blame] | 486 | extcon_set_state_sync(info->edev, EXTCON_CHG_USB_DCP, |
Chanwoo Choi | 11eecf9 | 2015-10-03 14:15:13 +0900 | [diff] [blame] | 487 | attached); |
Chanwoo Choi | b76668b | 2012-05-09 12:31:58 +0900 | [diff] [blame] | 488 | break; |
Donggeun Kim | 99f09be | 2011-11-24 18:12:18 +0900 | [diff] [blame] | 489 | case MAX8997_CHARGER_TYPE_500MA: |
Chanwoo Choi | 8670b45 | 2016-08-16 15:55:34 +0900 | [diff] [blame] | 490 | extcon_set_state_sync(info->edev, EXTCON_CHG_USB_SLOW, |
Chanwoo Choi | 2a9de9c | 2015-04-24 19:16:05 +0900 | [diff] [blame] | 491 | attached); |
Chanwoo Choi | b76668b | 2012-05-09 12:31:58 +0900 | [diff] [blame] | 492 | break; |
Donggeun Kim | 99f09be | 2011-11-24 18:12:18 +0900 | [diff] [blame] | 493 | case MAX8997_CHARGER_TYPE_1A: |
Chanwoo Choi | 8670b45 | 2016-08-16 15:55:34 +0900 | [diff] [blame] | 494 | extcon_set_state_sync(info->edev, EXTCON_CHG_USB_FAST, |
Chanwoo Choi | 2a9de9c | 2015-04-24 19:16:05 +0900 | [diff] [blame] | 495 | attached); |
Donggeun Kim | 99f09be | 2011-11-24 18:12:18 +0900 | [diff] [blame] | 496 | break; |
| 497 | default: |
Chanwoo Choi | f73f623 | 2013-02-13 12:05:42 +0900 | [diff] [blame] | 498 | dev_err(info->dev, |
| 499 | "failed to detect %s unknown chg cable (type:0x%x)\n", |
| 500 | attached ? "attached" : "detached", chg_type); |
| 501 | return -EINVAL; |
Donggeun Kim | 99f09be | 2011-11-24 18:12:18 +0900 | [diff] [blame] | 502 | } |
| 503 | |
Chanwoo Choi | f73f623 | 2013-02-13 12:05:42 +0900 | [diff] [blame] | 504 | return 0; |
Donggeun Kim | 99f09be | 2011-11-24 18:12:18 +0900 | [diff] [blame] | 505 | } |
| 506 | |
| 507 | static void max8997_muic_irq_work(struct work_struct *work) |
| 508 | { |
| 509 | struct max8997_muic_info *info = container_of(work, |
| 510 | struct max8997_muic_info, irq_work); |
Chanwoo Choi | dca1a71 | 2012-07-02 09:03:00 +0900 | [diff] [blame] | 511 | int irq_type = 0; |
| 512 | int i, ret; |
Donggeun Kim | 99f09be | 2011-11-24 18:12:18 +0900 | [diff] [blame] | 513 | |
Chanwoo Choi | f73f623 | 2013-02-13 12:05:42 +0900 | [diff] [blame] | 514 | if (!info->edev) |
| 515 | return; |
| 516 | |
Donggeun Kim | 99f09be | 2011-11-24 18:12:18 +0900 | [diff] [blame] | 517 | mutex_lock(&info->mutex); |
| 518 | |
Sachin Kamat | ad07d8b | 2013-08-05 14:32:03 +0530 | [diff] [blame] | 519 | for (i = 0; i < ARRAY_SIZE(muic_irqs); i++) |
Chanwoo Choi | f73f623 | 2013-02-13 12:05:42 +0900 | [diff] [blame] | 520 | if (info->irq == muic_irqs[i].virq) |
| 521 | irq_type = muic_irqs[i].irq; |
| 522 | |
Donggeun Kim | 99f09be | 2011-11-24 18:12:18 +0900 | [diff] [blame] | 523 | ret = max8997_bulk_read(info->muic, MAX8997_MUIC_REG_STATUS1, |
Chanwoo Choi | f73f623 | 2013-02-13 12:05:42 +0900 | [diff] [blame] | 524 | 2, info->status); |
Donggeun Kim | 99f09be | 2011-11-24 18:12:18 +0900 | [diff] [blame] | 525 | if (ret) { |
| 526 | dev_err(info->dev, "failed to read muic register\n"); |
| 527 | mutex_unlock(&info->mutex); |
| 528 | return; |
| 529 | } |
| 530 | |
Donggeun Kim | 99f09be | 2011-11-24 18:12:18 +0900 | [diff] [blame] | 531 | switch (irq_type) { |
Chanwoo Choi | f73f623 | 2013-02-13 12:05:42 +0900 | [diff] [blame] | 532 | case MAX8997_MUICIRQ_ADCError: |
| 533 | case MAX8997_MUICIRQ_ADCLow: |
Donggeun Kim | 99f09be | 2011-11-24 18:12:18 +0900 | [diff] [blame] | 534 | case MAX8997_MUICIRQ_ADC: |
Chanwoo Choi | f73f623 | 2013-02-13 12:05:42 +0900 | [diff] [blame] | 535 | /* Handle all of cable except for charger cable */ |
| 536 | ret = max8997_muic_adc_handler(info); |
Donggeun Kim | 99f09be | 2011-11-24 18:12:18 +0900 | [diff] [blame] | 537 | break; |
Chanwoo Choi | f73f623 | 2013-02-13 12:05:42 +0900 | [diff] [blame] | 538 | case MAX8997_MUICIRQ_VBVolt: |
| 539 | case MAX8997_MUICIRQ_DBChg: |
| 540 | case MAX8997_MUICIRQ_DCDTmr: |
| 541 | case MAX8997_MUICIRQ_ChgDetRun: |
Donggeun Kim | 99f09be | 2011-11-24 18:12:18 +0900 | [diff] [blame] | 542 | case MAX8997_MUICIRQ_ChgTyp: |
Chanwoo Choi | f73f623 | 2013-02-13 12:05:42 +0900 | [diff] [blame] | 543 | /* Handle charger cable */ |
| 544 | ret = max8997_muic_chg_handler(info); |
| 545 | break; |
| 546 | case MAX8997_MUICIRQ_OVP: |
Donggeun Kim | 99f09be | 2011-11-24 18:12:18 +0900 | [diff] [blame] | 547 | break; |
| 548 | default: |
Chanwoo Choi | b76668b | 2012-05-09 12:31:58 +0900 | [diff] [blame] | 549 | dev_info(info->dev, "misc interrupt: irq %d occurred\n", |
| 550 | irq_type); |
Chanwoo Choi | f73f623 | 2013-02-13 12:05:42 +0900 | [diff] [blame] | 551 | mutex_unlock(&info->mutex); |
| 552 | return; |
Donggeun Kim | 99f09be | 2011-11-24 18:12:18 +0900 | [diff] [blame] | 553 | } |
| 554 | |
Chanwoo Choi | f73f623 | 2013-02-13 12:05:42 +0900 | [diff] [blame] | 555 | if (ret < 0) |
| 556 | dev_err(info->dev, "failed to handle MUIC interrupt\n"); |
| 557 | |
Donggeun Kim | 99f09be | 2011-11-24 18:12:18 +0900 | [diff] [blame] | 558 | mutex_unlock(&info->mutex); |
Donggeun Kim | 99f09be | 2011-11-24 18:12:18 +0900 | [diff] [blame] | 559 | } |
| 560 | |
| 561 | static irqreturn_t max8997_muic_irq_handler(int irq, void *data) |
| 562 | { |
| 563 | struct max8997_muic_info *info = data; |
| 564 | |
| 565 | dev_dbg(info->dev, "irq:%d\n", irq); |
| 566 | info->irq = irq; |
| 567 | |
| 568 | schedule_work(&info->irq_work); |
| 569 | |
| 570 | return IRQ_HANDLED; |
| 571 | } |
| 572 | |
Chanwoo Choi | f73f623 | 2013-02-13 12:05:42 +0900 | [diff] [blame] | 573 | static int max8997_muic_detect_dev(struct max8997_muic_info *info) |
Donggeun Kim | 99f09be | 2011-11-24 18:12:18 +0900 | [diff] [blame] | 574 | { |
Chanwoo Choi | f73f623 | 2013-02-13 12:05:42 +0900 | [diff] [blame] | 575 | int ret = 0; |
| 576 | int adc; |
| 577 | int chg_type; |
| 578 | bool attached; |
Donggeun Kim | 99f09be | 2011-11-24 18:12:18 +0900 | [diff] [blame] | 579 | |
Chanwoo Choi | f73f623 | 2013-02-13 12:05:42 +0900 | [diff] [blame] | 580 | mutex_lock(&info->mutex); |
| 581 | |
| 582 | /* Read STATUSx register to detect accessory */ |
| 583 | ret = max8997_bulk_read(info->muic, |
| 584 | MAX8997_MUIC_REG_STATUS1, 2, info->status); |
Donggeun Kim | 99f09be | 2011-11-24 18:12:18 +0900 | [diff] [blame] | 585 | if (ret) { |
Chanwoo Choi | f73f623 | 2013-02-13 12:05:42 +0900 | [diff] [blame] | 586 | dev_err(info->dev, "failed to read MUIC register\n"); |
| 587 | mutex_unlock(&info->mutex); |
Sachin Kamat | 3ad9e86 | 2013-04-08 09:13:18 +0900 | [diff] [blame] | 588 | return ret; |
Donggeun Kim | 99f09be | 2011-11-24 18:12:18 +0900 | [diff] [blame] | 589 | } |
| 590 | |
Chanwoo Choi | f73f623 | 2013-02-13 12:05:42 +0900 | [diff] [blame] | 591 | adc = max8997_muic_get_cable_type(info, MAX8997_CABLE_GROUP_ADC, |
| 592 | &attached); |
| 593 | if (attached && adc != MAX8997_MUIC_ADC_OPEN) { |
| 594 | ret = max8997_muic_adc_handler(info); |
| 595 | if (ret < 0) { |
| 596 | dev_err(info->dev, "Cannot detect ADC cable\n"); |
| 597 | mutex_unlock(&info->mutex); |
| 598 | return ret; |
| 599 | } |
| 600 | } |
Donggeun Kim | 99f09be | 2011-11-24 18:12:18 +0900 | [diff] [blame] | 601 | |
Chanwoo Choi | f73f623 | 2013-02-13 12:05:42 +0900 | [diff] [blame] | 602 | chg_type = max8997_muic_get_cable_type(info, MAX8997_CABLE_GROUP_CHG, |
| 603 | &attached); |
| 604 | if (attached && chg_type != MAX8997_CHARGER_TYPE_NONE) { |
| 605 | ret = max8997_muic_chg_handler(info); |
| 606 | if (ret < 0) { |
| 607 | dev_err(info->dev, "Cannot detect charger cable\n"); |
| 608 | mutex_unlock(&info->mutex); |
| 609 | return ret; |
| 610 | } |
| 611 | } |
Donggeun Kim | 99f09be | 2011-11-24 18:12:18 +0900 | [diff] [blame] | 612 | |
Chanwoo Choi | f73f623 | 2013-02-13 12:05:42 +0900 | [diff] [blame] | 613 | mutex_unlock(&info->mutex); |
Donggeun Kim | 99f09be | 2011-11-24 18:12:18 +0900 | [diff] [blame] | 614 | |
Chanwoo Choi | f73f623 | 2013-02-13 12:05:42 +0900 | [diff] [blame] | 615 | return 0; |
Donggeun Kim | 99f09be | 2011-11-24 18:12:18 +0900 | [diff] [blame] | 616 | } |
| 617 | |
Chanwoo Choi | af5eb1a | 2013-02-13 15:10:00 +0900 | [diff] [blame] | 618 | static void max8997_muic_detect_cable_wq(struct work_struct *work) |
| 619 | { |
| 620 | struct max8997_muic_info *info = container_of(to_delayed_work(work), |
| 621 | struct max8997_muic_info, wq_detcable); |
| 622 | int ret; |
| 623 | |
| 624 | ret = max8997_muic_detect_dev(info); |
| 625 | if (ret < 0) |
Jingoo Han | 6ed2810 | 2013-04-08 09:11:06 +0900 | [diff] [blame] | 626 | dev_err(info->dev, "failed to detect cable type\n"); |
Chanwoo Choi | af5eb1a | 2013-02-13 15:10:00 +0900 | [diff] [blame] | 627 | } |
| 628 | |
Bill Pemberton | 44f34fd | 2012-11-19 13:23:21 -0500 | [diff] [blame] | 629 | static int max8997_muic_probe(struct platform_device *pdev) |
Donggeun Kim | 99f09be | 2011-11-24 18:12:18 +0900 | [diff] [blame] | 630 | { |
Chanwoo Choi | b76668b | 2012-05-09 12:31:58 +0900 | [diff] [blame] | 631 | struct max8997_dev *max8997 = dev_get_drvdata(pdev->dev.parent); |
| 632 | struct max8997_platform_data *pdata = dev_get_platdata(max8997->dev); |
Donggeun Kim | 99f09be | 2011-11-24 18:12:18 +0900 | [diff] [blame] | 633 | struct max8997_muic_info *info; |
Chanwoo Choi | af5eb1a | 2013-02-13 15:10:00 +0900 | [diff] [blame] | 634 | int delay_jiffies; |
Donggeun Kim | 99f09be | 2011-11-24 18:12:18 +0900 | [diff] [blame] | 635 | int ret, i; |
| 636 | |
Sachin Kamat | 0b672e9 | 2012-11-20 15:46:47 +0900 | [diff] [blame] | 637 | info = devm_kzalloc(&pdev->dev, sizeof(struct max8997_muic_info), |
| 638 | GFP_KERNEL); |
Jingoo Han | 0a16ee6 | 2014-07-23 10:07:09 +0900 | [diff] [blame] | 639 | if (!info) |
Sachin Kamat | 0b672e9 | 2012-11-20 15:46:47 +0900 | [diff] [blame] | 640 | return -ENOMEM; |
Donggeun Kim | 99f09be | 2011-11-24 18:12:18 +0900 | [diff] [blame] | 641 | |
Donggeun Kim | 99f09be | 2011-11-24 18:12:18 +0900 | [diff] [blame] | 642 | info->dev = &pdev->dev; |
Chanwoo Choi | b76668b | 2012-05-09 12:31:58 +0900 | [diff] [blame] | 643 | info->muic = max8997->muic; |
Donggeun Kim | 99f09be | 2011-11-24 18:12:18 +0900 | [diff] [blame] | 644 | |
| 645 | platform_set_drvdata(pdev, info); |
| 646 | mutex_init(&info->mutex); |
| 647 | |
Donggeun Kim | 99f09be | 2011-11-24 18:12:18 +0900 | [diff] [blame] | 648 | INIT_WORK(&info->irq_work, max8997_muic_irq_work); |
| 649 | |
| 650 | for (i = 0; i < ARRAY_SIZE(muic_irqs); i++) { |
| 651 | struct max8997_muic_irq *muic_irq = &muic_irqs[i]; |
Sachin Kamat | 68c9274 | 2012-11-20 15:46:41 +0900 | [diff] [blame] | 652 | unsigned int virq = 0; |
Donggeun Kim | 99f09be | 2011-11-24 18:12:18 +0900 | [diff] [blame] | 653 | |
Chanwoo Choi | dca1a71 | 2012-07-02 09:03:00 +0900 | [diff] [blame] | 654 | virq = irq_create_mapping(max8997->irq_domain, muic_irq->irq); |
Sachin Kamat | 68c9274 | 2012-11-20 15:46:41 +0900 | [diff] [blame] | 655 | if (!virq) { |
| 656 | ret = -EINVAL; |
Chanwoo Choi | dca1a71 | 2012-07-02 09:03:00 +0900 | [diff] [blame] | 657 | goto err_irq; |
Sachin Kamat | 68c9274 | 2012-11-20 15:46:41 +0900 | [diff] [blame] | 658 | } |
Chanwoo Choi | dca1a71 | 2012-07-02 09:03:00 +0900 | [diff] [blame] | 659 | muic_irq->virq = virq; |
| 660 | |
Chanwoo Choi | ae3b321 | 2012-11-28 12:39:01 +0900 | [diff] [blame] | 661 | ret = request_threaded_irq(virq, NULL, |
| 662 | max8997_muic_irq_handler, |
| 663 | IRQF_NO_SUSPEND, |
| 664 | muic_irq->name, info); |
Donggeun Kim | 99f09be | 2011-11-24 18:12:18 +0900 | [diff] [blame] | 665 | if (ret) { |
| 666 | dev_err(&pdev->dev, |
Chanwoo Choi | 34825e5 | 2015-03-07 01:41:36 +0900 | [diff] [blame] | 667 | "failed: irq request (IRQ: %d, error :%d)\n", |
Donggeun Kim | 99f09be | 2011-11-24 18:12:18 +0900 | [diff] [blame] | 668 | muic_irq->irq, ret); |
Donggeun Kim | 99f09be | 2011-11-24 18:12:18 +0900 | [diff] [blame] | 669 | goto err_irq; |
| 670 | } |
| 671 | } |
| 672 | |
Chanwoo Choi | b76668b | 2012-05-09 12:31:58 +0900 | [diff] [blame] | 673 | /* External connector */ |
Chanwoo Choi | 22f9afb | 2014-04-21 20:37:51 +0900 | [diff] [blame] | 674 | info->edev = devm_extcon_dev_allocate(&pdev->dev, max8997_extcon_cable); |
| 675 | if (IS_ERR(info->edev)) { |
Chanwoo Choi | b76668b | 2012-05-09 12:31:58 +0900 | [diff] [blame] | 676 | dev_err(&pdev->dev, "failed to allocate memory for extcon\n"); |
| 677 | ret = -ENOMEM; |
| 678 | goto err_irq; |
| 679 | } |
Chanwoo Choi | 22f9afb | 2014-04-21 20:37:51 +0900 | [diff] [blame] | 680 | |
Sangjung Woo | 2923803 | 2014-04-21 19:10:13 +0900 | [diff] [blame] | 681 | ret = devm_extcon_dev_register(&pdev->dev, info->edev); |
Chanwoo Choi | b76668b | 2012-05-09 12:31:58 +0900 | [diff] [blame] | 682 | if (ret) { |
| 683 | dev_err(&pdev->dev, "failed to register extcon device\n"); |
Sachin Kamat | 0b672e9 | 2012-11-20 15:46:47 +0900 | [diff] [blame] | 684 | goto err_irq; |
Chanwoo Choi | b76668b | 2012-05-09 12:31:58 +0900 | [diff] [blame] | 685 | } |
| 686 | |
Krzysztof Kozlowski | dfee411 | 2014-04-09 15:20:14 +0200 | [diff] [blame] | 687 | if (pdata && pdata->muic_pdata) { |
Chanwoo Choi | 810d601 | 2013-02-18 10:15:03 +0900 | [diff] [blame] | 688 | struct max8997_muic_platform_data *muic_pdata |
| 689 | = pdata->muic_pdata; |
Chanwoo Choi | b76668b | 2012-05-09 12:31:58 +0900 | [diff] [blame] | 690 | |
Chanwoo Choi | 810d601 | 2013-02-18 10:15:03 +0900 | [diff] [blame] | 691 | /* Initialize registers according to platform data */ |
| 692 | for (i = 0; i < muic_pdata->num_init_data; i++) { |
| 693 | max8997_write_reg(info->muic, |
| 694 | muic_pdata->init_data[i].addr, |
| 695 | muic_pdata->init_data[i].data); |
Chanwoo Choi | b76668b | 2012-05-09 12:31:58 +0900 | [diff] [blame] | 696 | } |
Donggeun Kim | 99f09be | 2011-11-24 18:12:18 +0900 | [diff] [blame] | 697 | |
Chanwoo Choi | 810d601 | 2013-02-18 10:15:03 +0900 | [diff] [blame] | 698 | /* |
| 699 | * Default usb/uart path whether UART/USB or AUX_UART/AUX_USB |
| 700 | * h/w path of COMP2/COMN1 on CONTROL1 register. |
| 701 | */ |
| 702 | if (muic_pdata->path_uart) |
| 703 | info->path_uart = muic_pdata->path_uart; |
| 704 | else |
| 705 | info->path_uart = CONTROL1_SW_UART; |
| 706 | |
| 707 | if (muic_pdata->path_usb) |
| 708 | info->path_usb = muic_pdata->path_usb; |
| 709 | else |
| 710 | info->path_usb = CONTROL1_SW_USB; |
| 711 | |
| 712 | /* |
| 713 | * Default delay time for detecting cable state |
| 714 | * after certain time. |
| 715 | */ |
| 716 | if (muic_pdata->detcable_delay_ms) |
| 717 | delay_jiffies = |
| 718 | msecs_to_jiffies(muic_pdata->detcable_delay_ms); |
| 719 | else |
| 720 | delay_jiffies = msecs_to_jiffies(DELAY_MS_DEFAULT); |
| 721 | } else { |
Chanwoo Choi | 685dc9a | 2013-02-13 15:04:15 +0900 | [diff] [blame] | 722 | info->path_uart = CONTROL1_SW_UART; |
Chanwoo Choi | 685dc9a | 2013-02-13 15:04:15 +0900 | [diff] [blame] | 723 | info->path_usb = CONTROL1_SW_USB; |
Chanwoo Choi | 810d601 | 2013-02-18 10:15:03 +0900 | [diff] [blame] | 724 | delay_jiffies = msecs_to_jiffies(DELAY_MS_DEFAULT); |
| 725 | } |
Chanwoo Choi | 685dc9a | 2013-02-13 15:04:15 +0900 | [diff] [blame] | 726 | |
| 727 | /* Set initial path for UART */ |
| 728 | max8997_muic_set_path(info, info->path_uart, true); |
| 729 | |
Chanwoo Choi | 027fcd5 | 2013-02-13 08:50:00 +0900 | [diff] [blame] | 730 | /* Set ADC debounce time */ |
| 731 | max8997_muic_set_debounce_time(info, ADC_DEBOUNCE_TIME_25MS); |
| 732 | |
Chanwoo Choi | af5eb1a | 2013-02-13 15:10:00 +0900 | [diff] [blame] | 733 | /* |
| 734 | * Detect accessory after completing the initialization of platform |
| 735 | * |
| 736 | * - Use delayed workqueue to detect cable state and then |
| 737 | * notify cable state to notifiee/platform through uevent. |
| 738 | * After completing the booting of platform, the extcon provider |
| 739 | * driver should notify cable state to upper layer. |
| 740 | */ |
| 741 | INIT_DELAYED_WORK(&info->wq_detcable, max8997_muic_detect_cable_wq); |
Krzysztof Kozlowski | bf9509e | 2014-04-09 15:20:15 +0200 | [diff] [blame] | 742 | queue_delayed_work(system_power_efficient_wq, &info->wq_detcable, |
| 743 | delay_jiffies); |
Donggeun Kim | 99f09be | 2011-11-24 18:12:18 +0900 | [diff] [blame] | 744 | |
Chanwoo Choi | af5eb1a | 2013-02-13 15:10:00 +0900 | [diff] [blame] | 745 | return 0; |
Donggeun Kim | 99f09be | 2011-11-24 18:12:18 +0900 | [diff] [blame] | 746 | |
| 747 | err_irq: |
Axel Lin | 3241d56 | 2012-03-26 09:57:08 +0800 | [diff] [blame] | 748 | while (--i >= 0) |
Chanwoo Choi | dca1a71 | 2012-07-02 09:03:00 +0900 | [diff] [blame] | 749 | free_irq(muic_irqs[i].virq, info); |
Donggeun Kim | 99f09be | 2011-11-24 18:12:18 +0900 | [diff] [blame] | 750 | return ret; |
| 751 | } |
| 752 | |
Bill Pemberton | 93ed032 | 2012-11-19 13:25:49 -0500 | [diff] [blame] | 753 | static int max8997_muic_remove(struct platform_device *pdev) |
Donggeun Kim | 99f09be | 2011-11-24 18:12:18 +0900 | [diff] [blame] | 754 | { |
| 755 | struct max8997_muic_info *info = platform_get_drvdata(pdev); |
Donggeun Kim | 99f09be | 2011-11-24 18:12:18 +0900 | [diff] [blame] | 756 | int i; |
| 757 | |
Donggeun Kim | 99f09be | 2011-11-24 18:12:18 +0900 | [diff] [blame] | 758 | for (i = 0; i < ARRAY_SIZE(muic_irqs); i++) |
Chanwoo Choi | dca1a71 | 2012-07-02 09:03:00 +0900 | [diff] [blame] | 759 | free_irq(muic_irqs[i].virq, info); |
Donggeun Kim | 71e5878 | 2011-12-15 18:20:47 +0900 | [diff] [blame] | 760 | cancel_work_sync(&info->irq_work); |
Donggeun Kim | 99f09be | 2011-11-24 18:12:18 +0900 | [diff] [blame] | 761 | |
Donggeun Kim | 99f09be | 2011-11-24 18:12:18 +0900 | [diff] [blame] | 762 | return 0; |
| 763 | } |
| 764 | |
| 765 | static struct platform_driver max8997_muic_driver = { |
| 766 | .driver = { |
Chanwoo Choi | b76668b | 2012-05-09 12:31:58 +0900 | [diff] [blame] | 767 | .name = DEV_NAME, |
Donggeun Kim | 99f09be | 2011-11-24 18:12:18 +0900 | [diff] [blame] | 768 | }, |
| 769 | .probe = max8997_muic_probe, |
Bill Pemberton | 5f7e222 | 2012-11-19 13:20:06 -0500 | [diff] [blame] | 770 | .remove = max8997_muic_remove, |
Donggeun Kim | 99f09be | 2011-11-24 18:12:18 +0900 | [diff] [blame] | 771 | }; |
| 772 | |
Axel Lin | b00e126 | 2012-01-22 15:33:49 +0800 | [diff] [blame] | 773 | module_platform_driver(max8997_muic_driver); |
Donggeun Kim | 99f09be | 2011-11-24 18:12:18 +0900 | [diff] [blame] | 774 | |
Chanwoo Choi | b76668b | 2012-05-09 12:31:58 +0900 | [diff] [blame] | 775 | MODULE_DESCRIPTION("Maxim MAX8997 Extcon driver"); |
Donggeun Kim | 99f09be | 2011-11-24 18:12:18 +0900 | [diff] [blame] | 776 | MODULE_AUTHOR("Donggeun Kim <dg77.kim@samsung.com>"); |
| 777 | MODULE_LICENSE("GPL"); |