aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-omap2/board-tuna-connector.c
blob: cee149517329b0cc3e9a270ed924847ee5c5121a (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
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
/*
 * Copyright (C) 2011 Samsung, Inc.
 * Copyright (C) 2011 Google Inc.
 *
 * Author: Adam Hampson <ahampson@sta.samsung.com>
 *         Dima Zavin <dima@android.com>
 *
 * This software is licensed under the terms of the GNU General Public
 * License version 2, as published by the Free Software Foundation, and
 * may be copied, distributed, and modified under those terms.
 *
 * 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.
 *
 */

#define pr_fmt(fmt) "%s: " fmt, __func__

#include <linux/device.h>
#include <linux/err.h>
#include <linux/gpio.h>
#include <linux/i2c.h>
#include <linux/init.h>
#include <linux/interrupt.h>
#include <linux/kernel.h>
#include <linux/platform_data/fsa9480.h>
#include <linux/regulator/consumer.h>
#include <linux/usb/otg.h>
#include <linux/delay.h>
#include <linux/sii9234.h>
#include <linux/mutex.h>

#include <plat/usb.h>

#include "mux.h"
#include "board-tuna.h"

#define GPIO_JACK_INT_N		4
#define GPIO_CP_USB_ON		22
#define GPIO_MHL_SEL		96
#define GPIO_AP_SEL		97
#define GPIO_MUX3_SEL0		139
#define GPIO_MUX3_SEL1		140
#define GPIO_USB_ID_SEL		191
#define GPIO_IF_UART_SEL	101

#define GPIO_MHL_RST		161
#define GPIO_MHL_WAKEUP		64
#define GPIO_MHL_INT		175
#define GPIO_HDMI_EN		100

#define MUX3_SEL0_AP		1
#define MUX3_SEL1_AP		1
#define MUX3_SEL0_MHL		1
#define MUX3_SEL1_MHL		0
#define MUX3_SEL0_FSA		0
#define MUX3_SEL1_FSA		1

#define FSA3200_AP_SEL_AP	0
#define FSA3200_MHL_SEL_AP	0
#define FSA3200_AP_SEL_FSA	1
#define FSA3200_MHL_SEL_FSA	0
#define FSA3200_AP_SEL_MHL	1
#define FSA3200_MHL_SEL_MHL	1

#define USB_ID_SEL_FSA		0
#define USB_ID_SEL_MHL		1

#define IF_UART_SEL_DEFAULT	1
#define IF_UART_SEL_AP		1
#define IF_UART_SEL_CP		0

#define TUNA_MANUAL_USB_NONE	0
#define TUNA_MANUAL_USB_MODEM	1
#define TUNA_MANUAL_USB_AP	2

#define TUNA_MANUAL_UART_NONE	0
#define TUNA_MANUAL_UART_MODEM	1
#define TUNA_MANUAL_UART_LTE	2
#define TUNA_MANUAL_UART_AP	3

#define TUNA_OTG_ID_FSA9480_PRIO		INT_MIN
#define TUNA_OTG_ID_SII9234_PRIO		INT_MIN + 1
#define TUNA_OTG_ID_FSA9480_LAST_PRIO		INT_MAX

struct tuna_otg {
	struct otg_transceiver		otg;
	struct device			dev;

	struct regulator		*vusb;
	struct mutex			lock;

	bool				reg_on;
	int				usb_manual_mode;
	int				uart_manual_mode;
	int				current_device;
};
static struct tuna_otg tuna_otg_xceiv;

enum {
	TUNA_USB_MUX_FSA = 0,
	TUNA_USB_MUX_MHL,
	TUNA_USB_MUX_AP,
	NUM_TUNA_USB_MUX,

	TUNA_USB_MUX_DEFAULT = TUNA_USB_MUX_FSA,
};

static struct {
	int mux3_sel0;
	int mux3_sel1;
} tuna_usb_mux_states[] = {
	[TUNA_USB_MUX_FSA] = { MUX3_SEL0_FSA, MUX3_SEL1_FSA },
	[TUNA_USB_MUX_MHL] = { MUX3_SEL0_MHL, MUX3_SEL1_MHL },
	[TUNA_USB_MUX_AP] = { MUX3_SEL0_AP, MUX3_SEL1_AP },
};

static struct {
	int ap_sel;
	int mhl_sel;
} tuna_fsa3200_mux_pair_states[] = {
	[TUNA_USB_MUX_FSA] = { FSA3200_AP_SEL_FSA, FSA3200_MHL_SEL_FSA },
	[TUNA_USB_MUX_MHL] = { FSA3200_AP_SEL_MHL, FSA3200_MHL_SEL_MHL },
	[TUNA_USB_MUX_AP] = { FSA3200_AP_SEL_AP, FSA3200_MHL_SEL_AP },
};

static int tuna_usb_id_mux_states[] = {
	[TUNA_USB_MUX_FSA] = USB_ID_SEL_FSA,
	[TUNA_USB_MUX_MHL] = USB_ID_SEL_MHL,
	[TUNA_USB_MUX_AP] = USB_ID_SEL_FSA,
};

static ssize_t tuna_otg_usb_sel_show(struct device *dev,
				     struct device_attribute *attr,
				     char *buf);
static ssize_t tuna_otg_usb_sel_store(struct device *dev,
				      struct device_attribute *attr,
				      const char *buf, size_t size);
static ssize_t tuna_otg_uart_switch_show(struct device *dev,
					 struct device_attribute *attr,
					 char *buf);
static ssize_t tuna_otg_uart_switch_store(struct device *dev,
					  struct device_attribute *attr,
					  const char *buf, size_t size);

static DEVICE_ATTR(usb_sel, S_IRUSR | S_IWUSR,
			tuna_otg_usb_sel_show, tuna_otg_usb_sel_store);
static DEVICE_ATTR(uart_sel, S_IRUSR | S_IWUSR,
			tuna_otg_uart_switch_show, tuna_otg_uart_switch_store);

static struct attribute *manual_mode_attributes[] = {
	&dev_attr_usb_sel.attr,
	&dev_attr_uart_sel.attr,
	NULL,
};

static const struct attribute_group manual_mode_group = {
	.attrs = manual_mode_attributes,
};

static void tuna_mux_usb(int state)
{
	BUG_ON(state >= NUM_TUNA_USB_MUX);

	pr_debug("mux to %d\n", state);
	gpio_direction_output(GPIO_MUX3_SEL0,
			      tuna_usb_mux_states[state].mux3_sel0);
	gpio_direction_output(GPIO_MUX3_SEL1,
			      tuna_usb_mux_states[state].mux3_sel1);
}

static void tuna_mux_usb_id(int state)
{
	BUG_ON(state >= NUM_TUNA_USB_MUX);

	pr_debug("mux to %d\n", state);
	gpio_direction_output(GPIO_USB_ID_SEL, tuna_usb_id_mux_states[state]);
}

static void tuna_fsa3200_mux_pair(int state)
{
	BUG_ON(state >= NUM_TUNA_USB_MUX);

	pr_debug("mux to %d\n", state);
	gpio_direction_output(GPIO_AP_SEL,
			      tuna_fsa3200_mux_pair_states[state].ap_sel);
	gpio_direction_output(GPIO_MHL_SEL,
			      tuna_fsa3200_mux_pair_states[state].mhl_sel);
}

static void tuna_mux_usb_to_fsa(bool enable)
{
	if (omap4_tuna_get_revision() >= 3) {
		tuna_fsa3200_mux_pair(enable ? TUNA_USB_MUX_FSA :
				TUNA_USB_MUX_DEFAULT);
	} else {
		tuna_mux_usb(enable ? TUNA_USB_MUX_FSA : TUNA_USB_MUX_DEFAULT);

		/* When switching ID away from FSA, we want to ensure we switch
		 * it off FSA, and force it to MHL. Ideally, we'd just say mux
		 * to default, but FSA is likely the default mux position and
		 * there's no way to force the ID pin to float to the FSA.
		 */
		tuna_mux_usb_id(enable ? TUNA_USB_MUX_FSA : TUNA_USB_MUX_MHL);
	}
}

static void tuna_mux_usb_to_mhl(bool enable)
{
	if (omap4_tuna_get_revision() >= 3) {
		tuna_fsa3200_mux_pair(enable ? TUNA_USB_MUX_MHL :
				TUNA_USB_MUX_DEFAULT);
	} else {
		tuna_mux_usb(enable ? TUNA_USB_MUX_MHL : TUNA_USB_MUX_DEFAULT);
		tuna_mux_usb_id(enable ? TUNA_USB_MUX_MHL : TUNA_USB_MUX_DEFAULT);
	}
}

static void tuna_vusb_enable(struct tuna_otg *tuna_otg, bool enable)
{
	/* delay getting the regulator until later */
	if (IS_ERR_OR_NULL(tuna_otg->vusb)) {
		tuna_otg->vusb = regulator_get(&tuna_otg->dev, "vusb");
		if (IS_ERR(tuna_otg->vusb)) {
			dev_err(&tuna_otg->dev, "cannot get vusb regulator\n");
			return;
		}
	}

	if (enable) {
		regulator_enable(tuna_otg->vusb);
		tuna_otg->reg_on = true;
	} else if (tuna_otg->reg_on) {
		regulator_disable(tuna_otg->vusb);
		tuna_otg->reg_on = false;
	}
}

static void tuna_ap_usb_attach(struct tuna_otg *tuna_otg)
{
	tuna_vusb_enable(tuna_otg, true);

	if (omap4_tuna_get_revision() >= 3) {
		tuna_fsa3200_mux_pair(TUNA_USB_MUX_AP);
	} else {
		tuna_mux_usb(TUNA_USB_MUX_AP);
		tuna_mux_usb_id(TUNA_USB_MUX_FSA);
	}

	tuna_otg->otg.state = OTG_STATE_B_IDLE;
	tuna_otg->otg.default_a = false;
	tuna_otg->otg.last_event = USB_EVENT_VBUS;
	atomic_notifier_call_chain(&tuna_otg->otg.notifier,
				   USB_EVENT_VBUS,
				   tuna_otg->otg.gadget);
}

static void tuna_ap_usb_detach(struct tuna_otg *tuna_otg)
{
	tuna_vusb_enable(tuna_otg, false);

	tuna_otg->otg.state = OTG_STATE_B_IDLE;
	tuna_otg->otg.default_a = false;
	tuna_otg->otg.last_event = USB_EVENT_NONE;
	atomic_notifier_call_chain(&tuna_otg->otg.notifier,
				   USB_EVENT_NONE,
				   tuna_otg->otg.gadget);
}

static void tuna_cp_usb_attach(struct tuna_otg *tuna_otg)
{
	if (omap4_tuna_get_type() == TUNA_TYPE_MAGURO)
		gpio_set_value(GPIO_CP_USB_ON, 1);

	tuna_mux_usb_to_fsa(true);
}

static void tuna_cp_usb_detach(struct tuna_otg *tuna_otg)
{
	if (omap4_tuna_get_type() == TUNA_TYPE_MAGURO)
		gpio_set_value(GPIO_CP_USB_ON, 0);
}

static void tuna_ap_uart_actions(struct tuna_otg *tuna_otg)
{
	tuna_mux_usb_to_fsa(true);
	gpio_set_value(GPIO_IF_UART_SEL, IF_UART_SEL_AP);
}

static void tuna_cp_uart_actions(struct tuna_otg *tuna_otg)
{
	tuna_mux_usb_to_fsa(true);
	gpio_set_value(GPIO_IF_UART_SEL, IF_UART_SEL_CP);
}

static void tuna_lte_uart_actions(struct tuna_otg *tuna_otg)
{
	tuna_mux_usb_to_fsa(true);

	/* The LTE modem's UART lines are connected to the V_AUDIO_L and
	 * V_AUDIO_R pins on the FSA9480.  The RIL will configure the FSA9480
	 * separately to set manual routing.
	 */
}

static void tuna_fsa_usb_detected(int device)
{
	struct tuna_otg *tuna_otg = &tuna_otg_xceiv;
	int old_device;

	mutex_lock(&tuna_otg->lock);

	old_device = tuna_otg->current_device;
	tuna_otg->current_device = device;

	pr_debug("detected %x\n", device);
	switch (device) {
	case FSA9480_DETECT_USB:
		if (tuna_otg->usb_manual_mode == TUNA_MANUAL_USB_MODEM)
			tuna_cp_usb_attach(tuna_otg);
		else
			tuna_ap_usb_attach(tuna_otg);
		break;
	case FSA9480_DETECT_CHARGER:
		tuna_mux_usb_to_fsa(true);

		tuna_otg->otg.state = OTG_STATE_B_IDLE;
		tuna_otg->otg.default_a = false;
		tuna_otg->otg.last_event = USB_EVENT_CHARGER;
		atomic_notifier_call_chain(&tuna_otg->otg.notifier,
					   USB_EVENT_CHARGER,
					   tuna_otg->otg.gadget);
		break;
	case FSA9480_DETECT_USB_HOST:
		tuna_vusb_enable(tuna_otg, true);

		if (omap4_tuna_get_revision() >= 3) {
			tuna_fsa3200_mux_pair(TUNA_USB_MUX_AP);
		} else {
			tuna_mux_usb(TUNA_USB_MUX_AP);
			tuna_mux_usb_id(TUNA_USB_MUX_FSA);
		}

		tuna_otg->otg.state = OTG_STATE_A_IDLE;
		tuna_otg->otg.default_a = true;
		tuna_otg->otg.last_event = USB_EVENT_ID;
		atomic_notifier_call_chain(&tuna_otg->otg.notifier,
					   USB_EVENT_ID,
					   tuna_otg->otg.gadget);
		break;
	case FSA9480_DETECT_NONE:
		tuna_mux_usb_to_fsa(true);

		switch (old_device) {
		case FSA9480_DETECT_JIG:
			if (tuna_otg->uart_manual_mode == TUNA_MANUAL_UART_NONE)
				tuna_ap_uart_actions(tuna_otg);
			break;
		case FSA9480_DETECT_USB:
			if (tuna_otg->usb_manual_mode == TUNA_MANUAL_USB_MODEM)
				tuna_cp_usb_detach(tuna_otg);
			else
				tuna_ap_usb_detach(tuna_otg);
			break;
		case FSA9480_DETECT_USB_HOST:
		case FSA9480_DETECT_CHARGER:
		default:
			tuna_ap_usb_detach(tuna_otg);
			break;
		};
		break;
	case FSA9480_DETECT_JIG:
		switch (tuna_otg->uart_manual_mode) {
		case TUNA_MANUAL_UART_AP:
			tuna_ap_uart_actions(tuna_otg);
			break;
		case TUNA_MANUAL_UART_LTE:
			tuna_lte_uart_actions(tuna_otg);
			break;
		case TUNA_MANUAL_UART_MODEM:
		default:
			tuna_cp_uart_actions(tuna_otg);
			break;
		};
		break;
	}

	mutex_unlock(&tuna_otg->lock);
}

static struct fsa9480_detect_set fsa_detect_sets[] = {
	{
		.prio = TUNA_OTG_ID_FSA9480_PRIO,
		.mask = FSA9480_DETECT_ALL & ~FSA9480_DETECT_USB_HOST,
	},
	{
		.prio = TUNA_OTG_ID_FSA9480_LAST_PRIO,
		.mask = FSA9480_DETECT_USB_HOST,
		.fallback = true,
	},
};

static struct fsa9480_platform_data tuna_fsa9480_pdata = {
	.detect_time	= 500,
	.detect_sets	= fsa_detect_sets,
	.num_sets	= ARRAY_SIZE(fsa_detect_sets),

	.enable		= tuna_mux_usb_to_fsa,
	.detected	= tuna_fsa_usb_detected,
};

static struct i2c_board_info __initdata tuna_connector_i2c4_boardinfo[] = {
	{
		I2C_BOARD_INFO("fsa9480", 0x4A >> 1),
		.irq = OMAP_GPIO_IRQ(GPIO_JACK_INT_N),
		.platform_data = &tuna_fsa9480_pdata,
	},
};

static int tuna_otg_set_host(struct otg_transceiver *otg, struct usb_bus *host)
{
	otg->host = host;
	if (!host)
		otg->state = OTG_STATE_UNDEFINED;
	return 0;
}

static int tuna_otg_set_peripheral(struct otg_transceiver *otg,
				   struct usb_gadget *gadget)
{
	otg->gadget = gadget;
	if (!gadget)
		otg->state = OTG_STATE_UNDEFINED;
	return 0;
}

static int tuna_otg_set_vbus(struct otg_transceiver *otg, bool enabled)
{
	dev_dbg(otg->dev, "vbus %s\n", enabled ? "on" : "off");
	return 0;
}

static int tuna_otg_phy_init(struct otg_transceiver *otg)
{
	if (otg->last_event == USB_EVENT_ID)
		omap4430_phy_power(otg->dev, 1, 1);
	else
		omap4430_phy_power(otg->dev, 0, 1);
	return 0;
}

static void tuna_otg_phy_shutdown(struct otg_transceiver *otg)
{
	omap4430_phy_power(otg->dev, 0, 0);
}

static int tuna_otg_set_suspend(struct otg_transceiver *otg, int suspend)
{
	return omap4430_phy_suspend(otg->dev, suspend);
}

static ssize_t tuna_otg_usb_sel_show(struct device *dev,
				     struct device_attribute *attr,
				     char *buf)
{
	struct tuna_otg *tuna_otg = dev_get_drvdata(dev);
	const char* mode;

	switch (tuna_otg->usb_manual_mode) {
	case TUNA_MANUAL_USB_AP:
		mode = "PDA";
		break;
	case TUNA_MANUAL_USB_MODEM:
		mode = "MODEM";
		break;
	default:
		mode = "NONE";
	};

	return sprintf(buf, "%s\n", mode);
}

static ssize_t tuna_otg_usb_sel_store(struct device *dev,
				      struct device_attribute *attr,
				      const char *buf, size_t size)
{
	struct tuna_otg *tuna_otg = dev_get_drvdata(dev);
	size_t len = strlen(buf);
	int old_mode;

	mutex_lock(&tuna_otg->lock);

	old_mode = tuna_otg->usb_manual_mode;

	if (!strncasecmp(buf, "PDA", 3) && len == 4) {
		tuna_otg->usb_manual_mode = TUNA_MANUAL_USB_AP;

		/* If we are transitioning from CP USB to AP USB then notify the
		 * USB stack that is now attached.
		 */
		if (tuna_otg->current_device == FSA9480_DETECT_USB &&
				old_mode == TUNA_MANUAL_USB_MODEM) {
			tuna_cp_usb_detach(tuna_otg);
			tuna_ap_usb_attach(tuna_otg);
		}
	} else if (!strncasecmp(buf, "MODEM", 5) && len == 6) {
		tuna_otg->usb_manual_mode = TUNA_MANUAL_USB_MODEM;

		/* If we are transitioning from AP USB to CP USB then notify the
		 * USB stack that is has been detached.
		 */
		if (tuna_otg->current_device == FSA9480_DETECT_USB &&
				(old_mode == TUNA_MANUAL_USB_AP ||
				old_mode == TUNA_MANUAL_USB_NONE)) {
			tuna_ap_usb_detach(tuna_otg);
			tuna_cp_usb_attach(tuna_otg);
		}
	} else if (!strncasecmp(buf, "NONE", 5) && len == 5) {
		tuna_otg->usb_manual_mode = TUNA_MANUAL_USB_NONE;

		/* If we are transitioning from CP USB to AP USB then notify the
		 * USB stack that it is now attached.
		 */
		if (tuna_otg->current_device == FSA9480_DETECT_USB &&
				old_mode == TUNA_MANUAL_USB_MODEM) {
			tuna_cp_usb_detach(tuna_otg);
			tuna_ap_usb_attach(tuna_otg);
		}
	}

	mutex_unlock(&tuna_otg->lock);

	return len;
}

static ssize_t tuna_otg_uart_switch_show(struct device *dev,
					 struct device_attribute *attr,
					 char *buf)
{
	struct tuna_otg *tuna_otg = dev_get_drvdata(dev);
	const char* mode;

	switch (tuna_otg->uart_manual_mode) {
	case TUNA_MANUAL_UART_AP:
		mode = "PDA";
		break;
	case TUNA_MANUAL_UART_MODEM:
		mode = "MODEM";
		break;
	case TUNA_MANUAL_UART_LTE:
		mode = "LTEMODEM";
		break;
	default:
		mode = "NONE";
	};

	return sprintf(buf, "%s\n", mode);
}

static ssize_t tuna_otg_uart_switch_store(struct device *dev,
					  struct device_attribute *attr,
					  const char *buf, size_t size)
{
	struct tuna_otg *tuna_otg = dev_get_drvdata(dev);
	size_t len = strlen(buf);

	mutex_lock(&tuna_otg->lock);

	if (!strncasecmp(buf, "PDA", 3) && len == 4) {
		tuna_otg->uart_manual_mode = TUNA_MANUAL_UART_AP;

		if (tuna_otg->current_device == FSA9480_DETECT_JIG)
			tuna_ap_uart_actions(tuna_otg);
	} else if (!strncasecmp(buf, "MODEM", 5) && len == 6) {
		tuna_otg->uart_manual_mode = TUNA_MANUAL_UART_MODEM;

		if (tuna_otg->current_device == FSA9480_DETECT_JIG)
			tuna_cp_uart_actions(tuna_otg);
	} else if (!strncasecmp(buf, "LTEMODEM", 8) && len == 9 &&
			omap4_tuna_get_type() == TUNA_TYPE_TORO) {
		tuna_otg->uart_manual_mode = TUNA_MANUAL_UART_LTE;

		if (tuna_otg->current_device == FSA9480_DETECT_JIG)
			tuna_lte_uart_actions(tuna_otg);
	} else if (!strncasecmp(buf, "NONE", 5) && len == 5) {
		tuna_otg->uart_manual_mode = TUNA_MANUAL_UART_NONE;

		if (tuna_otg->current_device == FSA9480_DETECT_JIG)
			tuna_ap_uart_actions(tuna_otg);
	}

	mutex_unlock(&tuna_otg->lock);

	return len;
}

#define OMAP_HDMI_HPD_ADDR	0x4A100098
#define OMAP_HDMI_PULLTYPE_MASK	0x00000010
static void sii9234_power(int on)
{
	struct omap_mux_partition *p = omap_mux_get("core");

	u16 mux;

	mux = omap_mux_read(p, OMAP4_CTRL_MODULE_PAD_HDMI_HPD_OFFSET);

	if (on) {
		gpio_set_value(GPIO_HDMI_EN, 1);
		msleep(20);
		gpio_set_value(GPIO_MHL_RST, 1);

		omap_mux_write(p, mux | OMAP_PULL_UP,
			       OMAP4_CTRL_MODULE_PAD_HDMI_HPD_OFFSET);
	} else {
		omap_mux_write(p, mux & ~OMAP_PULL_UP,
			       OMAP4_CTRL_MODULE_PAD_HDMI_HPD_OFFSET);

		gpio_set_value(GPIO_HDMI_EN, 0);
		gpio_set_value(GPIO_MHL_RST, 0);

	}
}

static void sii9234_enable_vbus(bool enable)
{

}

static void sii9234_vbus_present(bool on)
{
	struct tuna_otg *tuna_otg = &tuna_otg_xceiv;

	tuna_otg->otg.state = OTG_STATE_B_IDLE;
	tuna_otg->otg.default_a = false;
	tuna_otg->otg.last_event = on ? USB_EVENT_VBUS : USB_EVENT_NONE;
	atomic_notifier_call_chain(&tuna_otg->otg.notifier,
				on ? USB_EVENT_VBUS : USB_EVENT_NONE,
				tuna_otg->otg.gadget);
}

static struct sii9234_platform_data sii9234_pdata = {
	.prio = TUNA_OTG_ID_SII9234_PRIO,
	.enable = tuna_mux_usb_to_mhl,
	.power = sii9234_power,
	.enable_vbus = sii9234_enable_vbus,
	.vbus_present = sii9234_vbus_present,
};

static struct i2c_board_info __initdata tuna_i2c5_boardinfo[] = {
	{
		I2C_BOARD_INFO("sii9234_mhl_tx", 0x72>>1),
		.irq = OMAP_GPIO_IRQ(GPIO_MHL_INT),
		.platform_data = &sii9234_pdata,
	},
	{
		I2C_BOARD_INFO("sii9234_tpi", 0x7A>>1),
		.platform_data = &sii9234_pdata,
	},
	{
		I2C_BOARD_INFO("sii9234_hdmi_rx", 0x92>>1),
		.platform_data = &sii9234_pdata,
	},
	{
		I2C_BOARD_INFO("sii9234_cbus", 0xC8>>1),
		.platform_data = &sii9234_pdata,
	},
};

int __init omap4_tuna_connector_init(void)
{
	struct tuna_otg *tuna_otg = &tuna_otg_xceiv;
	int ret;

	if (omap4_tuna_get_revision() >= 3) {
		gpio_request(GPIO_MHL_SEL, "fsa3200_mhl_sel");
		gpio_request(GPIO_AP_SEL, "fsa3200_ap_sel");

		tuna_fsa3200_mux_pair(TUNA_USB_MUX_DEFAULT);

		omap_mux_init_gpio(GPIO_MHL_SEL, OMAP_PIN_OUTPUT);
		omap_mux_init_gpio(GPIO_AP_SEL, OMAP_PIN_OUTPUT);
	} else {
		gpio_request(GPIO_MUX3_SEL0, "usb_mux3_sel0");
		gpio_request(GPIO_MUX3_SEL1, "usb_mux3_sel1");
		gpio_request(GPIO_USB_ID_SEL, "usb_id_sel");

		tuna_mux_usb(TUNA_USB_MUX_DEFAULT);
		tuna_mux_usb_id(TUNA_USB_MUX_DEFAULT);

		omap_mux_init_gpio(GPIO_MUX3_SEL0, OMAP_PIN_OUTPUT);
		omap_mux_init_gpio(GPIO_MUX3_SEL1, OMAP_PIN_OUTPUT);
		omap_mux_init_gpio(GPIO_USB_ID_SEL, OMAP_PIN_OUTPUT);
	}

	if (omap4_tuna_get_type() == TUNA_TYPE_MAGURO) {
		gpio_request(GPIO_CP_USB_ON, "cp_usb_on");
		omap_mux_init_gpio(GPIO_CP_USB_ON, OMAP_PIN_OUTPUT);
		gpio_direction_output(GPIO_CP_USB_ON, 0);
	}

	omap_mux_init_gpio(GPIO_IF_UART_SEL, OMAP_PIN_OUTPUT);
	gpio_request(GPIO_IF_UART_SEL, "uart_sel");
	gpio_direction_output(GPIO_IF_UART_SEL, IF_UART_SEL_DEFAULT);

	omap_mux_init_gpio(GPIO_JACK_INT_N,
			   OMAP_PIN_INPUT_PULLUP |
			   OMAP_PIN_OFF_INPUT_PULLUP);

	mutex_init(&tuna_otg->lock);

	device_initialize(&tuna_otg->dev);
	dev_set_name(&tuna_otg->dev, "%s", "tuna_otg");
	ret = device_add(&tuna_otg->dev);
	if (ret) {
		pr_err("%s: cannot reg device '%s' (%d)\n", __func__,
		       dev_name(&tuna_otg->dev), ret);
		return ret;
	}

	dev_set_drvdata(&tuna_otg->dev, tuna_otg);

	tuna_otg->otg.dev		= &tuna_otg->dev;
	tuna_otg->otg.label		= "tuna_otg_xceiv";
	tuna_otg->otg.set_host		= tuna_otg_set_host;
	tuna_otg->otg.set_peripheral	= tuna_otg_set_peripheral;
	tuna_otg->otg.set_suspend	= tuna_otg_set_suspend;
	tuna_otg->otg.set_vbus		= tuna_otg_set_vbus;
	tuna_otg->otg.init		= tuna_otg_phy_init;
	tuna_otg->otg.shutdown		= tuna_otg_phy_shutdown;

	ATOMIC_INIT_NOTIFIER_HEAD(&tuna_otg->otg.notifier);

	ret = otg_set_transceiver(&tuna_otg->otg);
	if (ret)
		pr_err("tuna_otg: cannot set transceiver (%d)\n", ret);

	omap4430_phy_init(&tuna_otg->dev);
	tuna_otg_set_suspend(&tuna_otg->otg, 0);

	i2c_register_board_info(4, tuna_connector_i2c4_boardinfo,
				ARRAY_SIZE(tuna_connector_i2c4_boardinfo));

	ret = sysfs_create_group(&tuna_otg->dev.kobj, &manual_mode_group);
	if (ret)
		pr_err("tuna_otg: Unable to create manual mode sysfs group"
			"(%d)\n", ret);

	gpio_request(GPIO_HDMI_EN, NULL);
	omap_mux_init_gpio(GPIO_HDMI_EN, OMAP_PIN_OUTPUT);
	gpio_direction_output(GPIO_HDMI_EN, 0);

	gpio_request(GPIO_MHL_RST, NULL);
	omap_mux_init_gpio(GPIO_MHL_RST, OMAP_PIN_OUTPUT);
	gpio_direction_output(GPIO_MHL_RST, 0);

	gpio_request(GPIO_MHL_INT, NULL);
	omap_mux_init_gpio(GPIO_MHL_INT, OMAP_PIN_INPUT);
	gpio_direction_input(GPIO_MHL_INT);

	gpio_request(TUNA_GPIO_HDMI_HPD, NULL);
	omap_mux_init_gpio(TUNA_GPIO_HDMI_HPD, OMAP_PIN_INPUT | OMAP_PULL_ENA);
	gpio_direction_input(TUNA_GPIO_HDMI_HPD);

	i2c_register_board_info(5, tuna_i2c5_boardinfo,
			ARRAY_SIZE(tuna_i2c5_boardinfo));

	return 0;
}