1 // SPDX-License-Identifier: GPL-2.0+
5 * Based on initial code from Maxime Ripard
11 #include <w1-eeprom.h>
12 #include <dm/device-internal.h>
14 #include <sunxi_gpio.h>
16 #include <extension_board.h>
18 #define for_each_w1_device(b, d) \
19 for (device_find_first_child(b, d); *d; device_find_next_child(d))
21 #define dip_convert(field) \
23 (sizeof(field) == 1) ? field : \
24 (sizeof(field) == 2) ? be16_to_cpu(field) : \
25 (sizeof(field) == 4) ? be32_to_cpu(field) : \
29 #define DIP_MAGIC 0x50494843 /* CHIP */
31 struct dip_w1_header {
33 u8 version; /* spec version */
38 char product_name[32];
39 u8 rsvd[36]; /* rsvd for future spec versions */
40 u8 data[16]; /* user data, per-dip specific */
43 int extension_board_scan(struct list_head *extension_list)
45 struct extension *dip;
46 struct dip_w1_header w1_header;
47 struct udevice *bus, *dev;
54 sunxi_gpio_set_pull(SUNXI_GPD(2), SUNXI_GPIO_PULL_UP);
56 ret = w1_get_bus(0, &bus);
58 printf("one wire interface not found\n");
62 for_each_w1_device(bus, &dev) {
63 if (w1_get_device_family(dev) != W1_FAMILY_DS2431)
66 ret = device_probe(dev);
68 printf("Couldn't probe device %s: error %d",
73 w1_eeprom_read_buf(dev, 0, (u8 *)&w1_header, sizeof(w1_header));
75 if (w1_header.magic != DIP_MAGIC)
78 vid = dip_convert(w1_header.vendor_id);
79 pid = dip_convert(w1_header.product_id);
81 printf("DIP: %s (0x%x) from %s (0x%x)\n",
82 w1_header.product_name, pid,
83 w1_header.vendor_name, vid);
85 dip = calloc(1, sizeof(struct extension));
87 printf("Error in memory allocation\n");
91 snprintf(dip->overlay, sizeof(dip->overlay), "dip-%x-%x.dtbo",
93 strncpy(dip->name, w1_header.product_name, 32);
94 strncpy(dip->owner, w1_header.vendor_name, 32);
95 list_add_tail(&dip->list, extension_list);