|
@@ -493,12 +493,25 @@ static int davinci_gpio_get_function(struct udevice *dev, unsigned int offset)
|
|
return GPIOF_OUTPUT;
|
|
return GPIOF_OUTPUT;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+static int davinci_gpio_xlate(struct udevice *dev, struct gpio_desc *desc,
|
|
|
|
+ struct ofnode_phandle_args *args)
|
|
|
|
+{
|
|
|
|
+ desc->offset = args->args[0];
|
|
|
|
+
|
|
|
|
+ if (args->args[1] & GPIO_ACTIVE_LOW)
|
|
|
|
+ desc->flags = GPIOD_ACTIVE_LOW;
|
|
|
|
+ else
|
|
|
|
+ desc->flags = 0;
|
|
|
|
+ return 0;
|
|
|
|
+}
|
|
|
|
+
|
|
static const struct dm_gpio_ops gpio_davinci_ops = {
|
|
static const struct dm_gpio_ops gpio_davinci_ops = {
|
|
.direction_input = davinci_gpio_direction_input,
|
|
.direction_input = davinci_gpio_direction_input,
|
|
.direction_output = davinci_gpio_direction_output,
|
|
.direction_output = davinci_gpio_direction_output,
|
|
.get_value = davinci_gpio_get_value,
|
|
.get_value = davinci_gpio_get_value,
|
|
.set_value = davinci_gpio_set_value,
|
|
.set_value = davinci_gpio_set_value,
|
|
.get_function = davinci_gpio_get_function,
|
|
.get_function = davinci_gpio_get_function,
|
|
|
|
+ .xlate = davinci_gpio_xlate,
|
|
};
|
|
};
|
|
|
|
|
|
static int davinci_gpio_probe(struct udevice *dev)
|
|
static int davinci_gpio_probe(struct udevice *dev)
|