summaryrefslogtreecommitdiff
path: root/drivers/extcon/extcon-max77665.c
blob: cfbe6352857e8f079a70d2ba338ccb0ed969d372 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
/*
 * extcon-max77665.c - MAX77665 extcon driver to support MAX77665 MUIC
 *
 * Copyright (C) 2012 nvidia corporation
 * Syed Rafiuddin <srafiuddin@nvidia.com>
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 */

#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/i2c.h>
#include <linux/slab.h>
#include <linux/interrupt.h>
#include <linux/err.h>
#include <linux/platform_device.h>
#include <linux/kobject.h>
#include <linux/extcon.h>
#include <linux/mfd/max77665.h>

#define	DEV_NAME	"max77665-muic"

#define MAX77665_MUIC_REG_ID		0x0
#define MAX77665_MUIC_REG_INT1		0x1
#define MAX77665_MUIC_REG_INT2		0x2
#define MAX77665_MUIC_REG_INT3		0x3
#define MAX77665_MUIC_REG_STATUS1	0x4
#define MAX77665_MUIC_REG_STATUS2	0x5
#define MAX77665_MUIC_REG_STATUS3	0x6
#define MAX77665_MUIC_REG_INTMASK1	0x7
#define MAX77665_MUIC_REG_INTMASK2	0x8
#define MAX77665_MUIC_REG_INTMASK3	0x9
#define MAX77665_MUIC_REG_CDETCTRL	0xa

#define MAX77665_MUIC_REG_CONTROL1	0xc
#define MAX77665_MUIC_REG_CONTROL2	0xd
#define MAX77665_MUIC_REG_CONTROL3	0xe

/* MAX77665-MUIC STATUS1 register */
#define STATUS1_ADC_SHIFT		0
#define STATUS1_ADCLOW_SHIFT		5
#define STATUS1_ADCERR_SHIFT		6
#define STATUS1_ADC_MASK		(0x1f << STATUS1_ADC_SHIFT)

/* MAX77665-MUIC STATUS2 register */
#define STATUS2_CHGTYP_SHIFT		0
#define STATUS2_CHGDETRUN_SHIFT		3
#define STATUS2_DCDTMR_SHIFT		4
#define STATUS2_DBCHG_SHIFT		5
#define STATUS2_VBVOLT_SHIFT		6
#define STATUS2_CHGTYP_MASK		(0x7 << STATUS2_CHGTYP_SHIFT)

/* MAX77665-MUIC CONTROL1 register */
#define COMN1SW_SHIFT			0
#define COMP2SW_SHIFT			3
#define COMN1SW_MASK			(0x7 << COMN1SW_SHIFT)
#define COMP2SW_MASK			(0x7 << COMP2SW_SHIFT)
#define SW_MASK				(COMP2SW_MASK | COMN1SW_MASK)

#define MAX77665_SW_USB		((1 << COMP2SW_SHIFT) | (1 << COMN1SW_SHIFT))
#define MAX77665_SW_OPEN	((0 << COMP2SW_SHIFT) | (0 << COMN1SW_SHIFT))

#define MAX77665_ADC_GROUND	0x00
#define MAX77665_ADC_OPEN	0x1f

enum max77665_muic_usb_type {
	MAX77665_USB_HOST,
	MAX77665_USB_DEVICE,
};

enum max77665_muic_charger_type {
	MAX77665_CHARGER_TYPE_NONE = 0,
	MAX77665_CHARGER_TYPE_USB,
	MAX77665_CHARGER_TYPE_DOWNSTREAM_PORT,
	MAX77665_CHARGER_TYPE_DEDICATED_CHG,
	MAX77665_CHARGER_TYPE_500MA,
	MAX77665_CHARGER_TYPE_1A,
};

struct max77665_muic_platform_data {
	int irq_base;
};

struct max77665_muic {
	struct device *dev;
	struct max77665_muic_platform_data *muic_pdata;

	int irq;
	struct work_struct irq_work;

	enum max77665_muic_charger_type pre_charger_type;
	int pre_adc;

	struct mutex mutex;

	struct extcon_dev	*edev;
};

const char *max77665_extcon_cable[] = {
	[0] = "USB",
	[1] = "USB-Host",
	[2] = "TA",
	[3] = "Fast-charger",
	[4] = "Slow-charger",
	[5] = "Charge-downstream",
	NULL,
};

static int max77665_read_reg(struct max77665_muic *muic,
		uint8_t reg, uint8_t *value)
{
	int ret;
	struct device *dev = muic->dev;

	ret = max77665_read(dev->parent, MAX77665_I2C_SLAVE_MUIC, reg, value);
	if (ret < 0)
		return ret;
	return 0;
}

static int max77665_bulk_read(struct max77665_muic *muic,
		uint8_t reg, int count, uint8_t *buf)
{
	int ret;
	struct device *dev = muic->dev;

	ret = max77665_read(dev->parent, MAX77665_I2C_SLAVE_MUIC, reg, buf);
	if (ret < 0)
		return ret;

	return 0;
}

static int max77665_update_reg(struct max77665_muic *muic,
				uint8_t reg, uint8_t value, uint8_t mask)
{
	int ret;
	uint8_t read_val;
	struct device *dev = muic->dev;

	ret = max77665_read(dev->parent, MAX77665_I2C_SLAVE_MUIC,
				reg, &read_val);
	if (ret < 0)
		return ret;

	ret = max77665_write(dev->parent, MAX77665_I2C_SLAVE_MUIC, reg,
			(value & mask) | (read_val & (~mask)));
	if (ret < 0)
		return ret;
	return 0;
}

static int max77665_muic_handle_usb(struct max77665_muic *muic,
			enum max77665_muic_usb_type usb_type, bool attached)
{
	int ret = 0;

	if (usb_type == MAX77665_USB_HOST) {
		ret = max77665_update_reg(muic, MAX77665_MUIC_REG_CONTROL1,
				attached ? MAX77665_SW_USB : MAX77665_SW_OPEN,
				SW_MASK);
		if (ret) {
			dev_err(muic->dev, "failed to update muic register\n");
			goto out;
		}
	}

	switch (usb_type) {
	case MAX77665_USB_HOST:
		extcon_set_cable_state(muic->edev, "USB-Host", attached);
		break;
	case MAX77665_USB_DEVICE:
		extcon_set_cable_state(muic->edev, "USB", attached);
		break;
	default:
		ret = -EINVAL;
		break;
	}

out:
	return ret;
}

static int max77665_muic_handle_adc_detach(struct max77665_muic *muic)
{
	int ret = 0;

	switch (muic->pre_adc) {
	case MAX77665_ADC_GROUND:
		ret = max77665_muic_handle_usb(muic, MAX77665_USB_HOST, false);
		break;
	default:
		break;
	}

	return ret;
}

static int max77665_muic_handle_adc(struct max77665_muic *muic, int adc)
{
	int ret = 0;

	switch (adc) {
	case MAX77665_ADC_GROUND:
		ret = max77665_muic_handle_usb(muic, MAX77665_USB_HOST, true);
		break;
	case MAX77665_ADC_OPEN:
		ret = max77665_muic_handle_adc_detach(muic);
		break;
	default:
		ret = -EINVAL;
		goto out;
	}

	muic->pre_adc = adc;
out:
	return ret;
}

static int max77665_muic_handle_charger_type_detach(
				struct max77665_muic *muic)
{
	int ret = 0;

	switch (muic->pre_charger_type) {
	case MAX77665_CHARGER_TYPE_USB:
		extcon_set_cable_state(muic->edev, "USB", false);
		break;
	case MAX77665_CHARGER_TYPE_DOWNSTREAM_PORT:
		extcon_set_cable_state(muic->edev, "Charge-downstream", false);
		break;
	case MAX77665_CHARGER_TYPE_DEDICATED_CHG:
		extcon_set_cable_state(muic->edev, "TA", false);
		break;
	case MAX77665_CHARGER_TYPE_500MA:
		extcon_set_cable_state(muic->edev, "Slow-charger", false);
		break;
	case MAX77665_CHARGER_TYPE_1A:
		extcon_set_cable_state(muic->edev, "Fast-charger", false);
		break;
	default:
		ret = -EINVAL;
		break;
	}

	return ret;
}

static int max77665_muic_handle_charger_type(struct max77665_muic *muic,
				enum max77665_muic_charger_type charger_type)
{
	uint8_t adc;
	int ret;

	ret = max77665_read_reg(muic, MAX77665_MUIC_REG_STATUS1, &adc);
	if (ret) {
		dev_err(muic->dev, "failed to read muic register\n");
		goto out;
	}

	switch (charger_type) {
	case MAX77665_CHARGER_TYPE_NONE:
		ret = max77665_muic_handle_charger_type_detach(muic);
		break;
	case MAX77665_CHARGER_TYPE_USB:
		if ((adc & STATUS1_ADC_MASK) == MAX77665_ADC_OPEN) {
			max77665_muic_handle_usb(muic,
					MAX77665_USB_DEVICE, true);
		}
		break;
	case MAX77665_CHARGER_TYPE_DOWNSTREAM_PORT:
		extcon_set_cable_state(muic->edev, "Charge-downstream", true);
		break;
	case MAX77665_CHARGER_TYPE_DEDICATED_CHG:
		extcon_set_cable_state(muic->edev, "TA", true);
		break;
	case MAX77665_CHARGER_TYPE_500MA:
		extcon_set_cable_state(muic->edev, "Slow-charger", true);
		break;
	case MAX77665_CHARGER_TYPE_1A:
		extcon_set_cable_state(muic->edev, "Fast-charger", true);
		break;
	default:
		ret = -EINVAL;
		goto out;
	}

	muic->pre_charger_type = charger_type;
out:
	return ret;
}

static void max77665_muic_irq_work(struct work_struct *work)
{
	struct max77665_muic *muic = container_of(work,
			struct max77665_muic, irq_work);
	uint8_t status[2];
	uint8_t adc, chg_type;

	int ret;

	mutex_lock(&muic->mutex);

	ret = max77665_bulk_read(muic, MAX77665_MUIC_REG_STATUS1,
				2, status);
	if (ret) {
		dev_err(muic->dev, "failed to read muic register\n");
		mutex_unlock(&muic->mutex);
		return;
	}

	dev_dbg(muic->dev, "%s: STATUS1:0x%x, 2:0x%x\n", __func__,
			status[0], status[1]);

	adc = status[0] & STATUS1_ADC_MASK;
	adc >>= STATUS1_ADC_SHIFT;

	chg_type = status[1] & STATUS2_CHGTYP_MASK;
	chg_type >>= STATUS2_CHGTYP_SHIFT;

	max77665_muic_handle_adc(muic, adc);
	max77665_muic_handle_charger_type(muic, chg_type);

	mutex_unlock(&muic->mutex);

	return;
}

static irqreturn_t max77665_muic_irq_handler(int irq, void *data)
{
	struct max77665_muic *muic = data;

	dev_dbg(muic->dev, "irq:%d\n", irq);
	muic->irq = irq;

	schedule_work(&muic->irq_work);

	return IRQ_HANDLED;
}

static void max77665_muic_detect_dev(struct max77665_muic *muic)
{
	int ret;
	uint8_t status[2], adc, chg_type;

	ret = max77665_bulk_read(muic, MAX77665_MUIC_REG_STATUS1,
				2, status);
	if (ret) {
		dev_err(muic->dev, "failed to read muic register\n");
		return;
	}

	dev_info(muic->dev, "STATUS1:0x%x, STATUS2:0x%x\n",
			status[0], status[1]);

	adc = status[0] & STATUS1_ADC_MASK;
	adc >>= STATUS1_ADC_SHIFT;

	chg_type = status[1] & STATUS2_CHGTYP_MASK;
	chg_type >>= STATUS2_CHGTYP_SHIFT;

	max77665_muic_handle_adc(muic, adc);
	max77665_muic_handle_charger_type(muic, chg_type);
}

static int __devinit max77665_muic_probe(struct platform_device *pdev)
{
	struct max77665_muic *muic;
	struct max77665_muic_platform_data *pdata;
	int ret;

	pdata = dev_get_platdata(pdev->dev.parent);
	if (!pdata) {
		dev_err(&pdev->dev, "no platform data available\n");
		return -ENODEV;
	}

	muic = devm_kzalloc(&pdev->dev, sizeof(struct max77665_muic),
			GFP_KERNEL);
	if (!muic) {
		dev_err(&pdev->dev, "failed to allocate memory\n");
		return -ENOMEM;
	}

	muic->dev = &pdev->dev;

	platform_set_drvdata(pdev, muic);
	mutex_init(&muic->mutex);
	INIT_WORK(&muic->irq_work, max77665_muic_irq_work);

	ret = request_threaded_irq(pdata->irq_base, NULL,
				max77665_muic_irq_handler,
				0, "muic_irq",
				muic);
	if (ret) {
		dev_err(&pdev->dev,
			"failed: irq request error :%d)\n", ret);
		return ret;
	}

	/* External connector */
	muic->edev = devm_kzalloc(&pdev->dev, sizeof(struct extcon_dev),
			GFP_KERNEL);
	if (!muic->edev) {
		dev_err(&pdev->dev, "failed to allocate memory for extcon\n");
		return -ENOMEM;
	}
	muic->edev->name = DEV_NAME;
	muic->edev->supported_cable = max77665_extcon_cable;
	ret = extcon_dev_register(muic->edev, NULL);
	if (ret) {
		dev_err(&pdev->dev, "failed to register extcon device\n");
		return ret;
	}
	/* Initial device detection */
	max77665_muic_detect_dev(muic);

	return 0;
}

static int __devexit max77665_muic_remove(struct platform_device *pdev)
{
	struct max77665_muic *muic = platform_get_drvdata(pdev);

	cancel_work_sync(&muic->irq_work);
	extcon_dev_unregister(muic->edev);

	return 0;
}

static struct platform_driver max77665_muic_driver = {
	.driver		= {
		.name	= DEV_NAME,
		.owner	= THIS_MODULE,
	},
	.probe		= max77665_muic_probe,
	.remove		= __devexit_p(max77665_muic_remove),
};

module_platform_driver(max77665_muic_driver);

MODULE_DESCRIPTION("Maxim MAX77665 Extcon driver");
MODULE_AUTHOR("Syed Rafiuddin <srafiuddin@nvidia.com>");
MODULE_LICENSE("GPL v2");