Blame view

bootloader/u-boot_2015_04/drivers/i2c/i2c-uclass-compat.c 1.94 KB
6b13f685e   김민수   BSP 최초 추가
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
  /*
   * Copyright (c) 2014 Google, Inc
   *
   * SPDX-License-Identifier:	GPL-2.0+
   */
  
  #include <common.h>
  #include <dm.h>
  #include <errno.h>
  #include <i2c.h>
  
  static int cur_busnum;
  
  static int i2c_compat_get_device(uint chip_addr, int alen,
  				 struct udevice **devp)
  {
  	struct dm_i2c_chip *chip;
  	int ret;
  
  	ret = i2c_get_chip_for_busnum(cur_busnum, chip_addr, alen, devp);
  	if (ret)
  		return ret;
  	chip = dev_get_parent_platdata(*devp);
  	if (chip->offset_len != alen) {
  		printf("I2C chip %x: requested alen %d does not match chip offset_len %d
  ",
  		       chip_addr, alen, chip->offset_len);
  		return -EADDRNOTAVAIL;
  	}
  
  	return 0;
  }
  
  int i2c_probe(uint8_t chip_addr)
  {
  	struct udevice *bus, *dev;
  	int ret;
  
  	ret = uclass_get_device_by_seq(UCLASS_I2C, cur_busnum, &bus);
  	if (ret) {
  		debug("Cannot find I2C bus %d: err=%d
  ", cur_busnum, ret);
  		return ret;
  	}
  
  	if (!bus)
  		return -ENOENT;
  
  	return dm_i2c_probe(bus, chip_addr, 0, &dev);
  }
  
  int i2c_read(uint8_t chip_addr, unsigned int addr, int alen, uint8_t *buffer,
  	     int len)
  {
  	struct udevice *dev;
  	int ret;
  
  	ret = i2c_compat_get_device(chip_addr, alen, &dev);
  	if (ret)
  		return ret;
  
  	return dm_i2c_read(dev, addr, buffer, len);
  }
  
  int i2c_write(uint8_t chip_addr, unsigned int addr, int alen, uint8_t *buffer,
  	      int len)
  {
  	struct udevice *dev;
  	int ret;
  
  	ret = i2c_compat_get_device(chip_addr, alen, &dev);
  	if (ret)
  		return ret;
  
  	return dm_i2c_write(dev, addr, buffer, len);
  }
  
  int i2c_get_bus_num_fdt(int node)
  {
  	struct udevice *bus;
  	int ret;
  
  	ret = uclass_get_device_by_of_offset(UCLASS_I2C, node, &bus);
  	if (ret)
  		return ret;
  
  	return bus->seq;
  }
  
  unsigned int i2c_get_bus_num(void)
  {
  	return cur_busnum;
  }
  
  int i2c_set_bus_num(unsigned int bus)
  {
  	cur_busnum = bus;
  
  	return 0;
  }
  
  void i2c_init(int speed, int slaveaddr)
  {
  	/* Nothing to do here - the init happens through driver model */
  }
  
  void board_i2c_init(const void *blob)
  {
  	/* Nothing to do here - the init happens through driver model */
  }