1 // SPDX-License-Identifier:	GPL-2.0+
2 /*
3  *
4  * Copyright (c) 2015 Free Electrons
5  * Copyright (c) 2015 NextThing Co.
6  * Copyright (c) 2018 Microchip Technology, Inc.
7  *
8  * Maxime Ripard <maxime.ripard@free-electrons.com>
9  * Eugen Hristev <eugen.hristev@microchip.com>
10  *
11  */
12 
13 #define LOG_CATEGORY UCLASS_W1_EEPROM
14 
15 #include <dm.h>
16 #include <log.h>
17 #include <w1.h>
18 #include <w1-eeprom.h>
19 
20 #include <dm/device-internal.h>
21 
w1_eeprom_read_buf(struct udevice * dev,unsigned int offset,u8 * buf,unsigned int count)22 int w1_eeprom_read_buf(struct udevice *dev, unsigned int offset,
23 		       u8 *buf, unsigned int count)
24 {
25 	const struct w1_eeprom_ops *ops = device_get_ops(dev);
26 	u64 id = 0;
27 	int ret;
28 
29 	if (!ops->read_buf)
30 		return -ENOSYS;
31 
32 	ret = w1_eeprom_get_id(dev, &id);
33 	if (ret)
34 		return ret;
35 	if (!id)
36 		return -ENODEV;
37 
38 	return ops->read_buf(dev, offset, buf, count);
39 }
40 
w1_eeprom_get_id(struct udevice * dev,u64 * id)41 int w1_eeprom_get_id(struct udevice *dev, u64 *id)
42 {
43 	struct w1_device *w1 = dev_get_parent_plat(dev);
44 
45 	if (!w1)
46 		return -ENODEV;
47 	*id = w1->id;
48 
49 	return 0;
50 }
51 
52 UCLASS_DRIVER(w1_eeprom) = {
53 	.name		= "w1_eeprom",
54 	.id		= UCLASS_W1_EEPROM,
55 	.flags		= DM_UC_FLAG_SEQ_ALIAS,
56 #if CONFIG_IS_ENABLED(OF_CONTROL)
57 	.post_bind	= dm_scan_fdt_dev,
58 #endif
59 };
60 
w1_eeprom_dm_init(void)61 int w1_eeprom_dm_init(void)
62 {
63 	struct udevice *dev;
64 	struct uclass *uc;
65 	int ret;
66 
67 	ret = uclass_get(UCLASS_W1_EEPROM, &uc);
68 	if (ret) {
69 		debug("W1_EEPROM uclass not available\n");
70 		return ret;
71 	}
72 
73 	uclass_foreach_dev(dev, uc) {
74 		ret = device_probe(dev);
75 		if (ret == -ENODEV) {	/* No such device. */
76 			debug("W1_EEPROM not available.\n");
77 			continue;
78 		}
79 
80 		if (ret) {		/* Other error. */
81 			printf("W1_EEPROM probe failed, error %d\n", ret);
82 			continue;
83 		}
84 	}
85 
86 	return 0;
87 }
88