blob: 71c32c0b6ebcb90b2afe065362aa323b632959ca (
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
|
/*
* Copyright (C) 2012 Samsung Electronics
* Lukasz Majewski <l.majewski@samsung.com>
*
* SPDX-License-Identifier: GPL-2.0+
*/
#include <common.h>
#include <i2c.h>
#ifndef CONFIG_SOFT_I2C_I2C10_SCL
#define CONFIG_SOFT_I2C_I2C10_SCL 0
#endif
#ifndef CONFIG_SOFT_I2C_I2C10_SDA
#define CONFIG_SOFT_I2C_I2C10_SDA 0
#endif
/* Handle multiple I2C buses instances */
int get_multi_scl_pin(void)
{
unsigned int bus = i2c_get_bus_num();
switch (bus) {
case I2C_0:
return CONFIG_SOFT_I2C_I2C5_SCL;
case I2C_1:
return CONFIG_SOFT_I2C_I2C9_SCL;
case I2C_2:
return CONFIG_SOFT_I2C_I2C10_SCL;
default:
printf("I2C_%d not supported!\n", bus);
};
return 0;
}
int get_multi_sda_pin(void)
{
unsigned int bus = i2c_get_bus_num();
switch (bus) {
case I2C_0:
return CONFIG_SOFT_I2C_I2C5_SDA;
case I2C_1:
return CONFIG_SOFT_I2C_I2C9_SDA;
case I2C_2:
return CONFIG_SOFT_I2C_I2C10_SDA;
default:
printf("I2C_%d not supported!\n", bus);
};
return 0;
}
int multi_i2c_init(void)
{
return 0;
}
|