浏览代码

dm: tegra: gpio: Convert to support livetree

Update the GPIO driver to support a live device tree.

Signed-off-by: Simon Glass <sjg@chromium.org>
Tested-by: Marcel Ziswiler <marcel.ziswiler@toradex.com>
Tested-on: Beaver, Jetson-TK1
Tested-by: Stephen Warren <swarren@nvidia.com>
Simon Glass 7 年之前
父节点
当前提交
56f5c40ad9
共有 1 个文件被更改,包括 6 次插入4 次删除
  1. 6 4
      drivers/gpio/tegra_gpio.c

+ 6 - 4
drivers/gpio/tegra_gpio.c

@@ -337,11 +337,13 @@ static int gpio_tegra_bind(struct udevice *parent)
 	 * This driver does not make use of interrupts, other than to figure
 	 * This driver does not make use of interrupts, other than to figure
 	 * out the number of GPIO banks
 	 * out the number of GPIO banks
 	 */
 	 */
-	if (!fdt_getprop(gd->fdt_blob, dev_of_offset(parent), "interrupts",
-			 &len))
-		return -EINVAL;
+	len = dev_read_size(parent, "interrupts");
+	if (len < 0)
+		return len;
 	bank_count = len / 3 / sizeof(u32);
 	bank_count = len / 3 / sizeof(u32);
-	ctlr = (struct gpio_ctlr *)devfdt_get_addr(parent);
+	ctlr = (struct gpio_ctlr *)dev_read_addr(parent);
+	if ((ulong)ctlr == FDT_ADDR_T_NONE)
+		return -EINVAL;
 	}
 	}
 #endif
 #endif
 	for (bank = 0; bank < bank_count; bank++) {
 	for (bank = 0; bank < bank_count; bank++) {