summaryrefslogtreecommitdiff
path: root/arch/arm/mach-tegra/i2c_error_recovery.c
blob: 2993a6b3abc5fd7ba7815acad493eaf95785c560 (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
/*
 * arch/arm/mach-tegra/i2c_error_recovery.c
 *
 * Copyright (c) 2011, NVIDIA Corporation.
 *
 * 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.
 *
 * You should have received a copy of the GNU General Public License along
 * with this program; if not, write to the Free Software Foundation, Inc.,
 * 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
 */
#include <linux/gpio.h>
#include <linux/delay.h>
#include <linux/init.h>

#include "board.h"

#define RETRY_MAX_COUNT (9*8+1) /*I2C controller supports eight-byte burst transfer*/

int arb_lost_recovery(int scl_gpio, int sda_gpio)
{
	int ret;
	int retry = RETRY_MAX_COUNT;
	int recovered_successfully = 0;
	int val;

	if ((!scl_gpio) || (!sda_gpio)) {
		pr_err("not proper input:scl_gpio 0x%08x,"
			"sda_gpio 0x%08x\n", scl_gpio, sda_gpio);
		return -EINVAL;;
	}

	ret = gpio_request(scl_gpio, "scl_gpio");
	if (ret < 0) {
		pr_err("error in gpio 0x%08x request 0x%08x\n",
			scl_gpio, ret);
		return -EINVAL;;
	}

	ret = gpio_request(sda_gpio, "sda_gpio");
	if (ret < 0) {
		pr_err("error in gpio 0x%08x request 0x%08x\n",
			sda_gpio, ret);
		goto err;
	}
	gpio_direction_input(sda_gpio);

	while (retry--) {
		gpio_direction_output(scl_gpio,0);
		udelay(5);
		gpio_direction_output(scl_gpio,1);
		udelay(5);

		/* check whether sda struct low release */
		val = gpio_get_value(sda_gpio);
		if (val) {
			/* send START */
			gpio_direction_output(sda_gpio,0);
			udelay(5);

			/* send STOP in next clock cycle */
			gpio_direction_output(scl_gpio,0);
			udelay(5);
			gpio_direction_output(scl_gpio,1);
			udelay(5);
			gpio_direction_output(sda_gpio,1);
			udelay(5);

			recovered_successfully = 1;
			break;
		}
	}

	gpio_free(scl_gpio);
	gpio_free(sda_gpio);

	if (likely(recovered_successfully)) {
		pr_err("arbitration lost recovered by re-try-count 0x%08x\n",
			RETRY_MAX_COUNT - retry);
		return 0;
	} else {
		pr_err("Un-recovered arbitration lost.\n");
		return -EINVAL;
	}

err:
	gpio_free(scl_gpio);
	return ret;
}