mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-19 05:04:20 +00:00
gpiolib: cdev: use blocking notifier call chain instead of atomic
Replace usage of atomic_notifier_call_chain with blocking_notifier_call_chain as the notifier function, lineinfo_changed_notify, calls gpio_desc_to_lineinfo, which calls pinctrl_gpio_can_use_line, which can sleep. The chain isn't being called from an atomic context so the the blocking notifier is a suitable substitute. Signed-off-by: Kent Gibson <warthog618@gmail.com> Signed-off-by: Bartosz Golaszewski <bgolaszewski@baylibre.com>
This commit is contained in:
parent
0cdc85a371
commit
6accc376a7
3 changed files with 20 additions and 20 deletions
|
@ -158,8 +158,8 @@ static long linehandle_set_config(struct linehandle_state *lh,
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
atomic_notifier_call_chain(&desc->gdev->notifier,
|
blocking_notifier_call_chain(&desc->gdev->notifier,
|
||||||
GPIOLINE_CHANGED_CONFIG, desc);
|
GPIOLINE_CHANGED_CONFIG, desc);
|
||||||
}
|
}
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
@ -325,8 +325,8 @@ static int linehandle_create(struct gpio_device *gdev, void __user *ip)
|
||||||
goto out_free_descs;
|
goto out_free_descs;
|
||||||
}
|
}
|
||||||
|
|
||||||
atomic_notifier_call_chain(&desc->gdev->notifier,
|
blocking_notifier_call_chain(&desc->gdev->notifier,
|
||||||
GPIOLINE_CHANGED_REQUESTED, desc);
|
GPIOLINE_CHANGED_REQUESTED, desc);
|
||||||
|
|
||||||
dev_dbg(&gdev->dev, "registered chardev handle for line %d\n",
|
dev_dbg(&gdev->dev, "registered chardev handle for line %d\n",
|
||||||
offset);
|
offset);
|
||||||
|
@ -674,8 +674,8 @@ static int lineevent_create(struct gpio_device *gdev, void __user *ip)
|
||||||
if (ret)
|
if (ret)
|
||||||
goto out_free_desc;
|
goto out_free_desc;
|
||||||
|
|
||||||
atomic_notifier_call_chain(&desc->gdev->notifier,
|
blocking_notifier_call_chain(&desc->gdev->notifier,
|
||||||
GPIOLINE_CHANGED_REQUESTED, desc);
|
GPIOLINE_CHANGED_REQUESTED, desc);
|
||||||
|
|
||||||
le->irq = gpiod_to_irq(desc);
|
le->irq = gpiod_to_irq(desc);
|
||||||
if (le->irq <= 0) {
|
if (le->irq <= 0) {
|
||||||
|
@ -1049,8 +1049,8 @@ static int gpio_chrdev_open(struct inode *inode, struct file *file)
|
||||||
priv->gdev = gdev;
|
priv->gdev = gdev;
|
||||||
|
|
||||||
priv->lineinfo_changed_nb.notifier_call = lineinfo_changed_notify;
|
priv->lineinfo_changed_nb.notifier_call = lineinfo_changed_notify;
|
||||||
ret = atomic_notifier_chain_register(&gdev->notifier,
|
ret = blocking_notifier_chain_register(&gdev->notifier,
|
||||||
&priv->lineinfo_changed_nb);
|
&priv->lineinfo_changed_nb);
|
||||||
if (ret)
|
if (ret)
|
||||||
goto out_free_bitmap;
|
goto out_free_bitmap;
|
||||||
|
|
||||||
|
@ -1064,8 +1064,8 @@ static int gpio_chrdev_open(struct inode *inode, struct file *file)
|
||||||
return ret;
|
return ret;
|
||||||
|
|
||||||
out_unregister_notifier:
|
out_unregister_notifier:
|
||||||
atomic_notifier_chain_unregister(&gdev->notifier,
|
blocking_notifier_chain_unregister(&gdev->notifier,
|
||||||
&priv->lineinfo_changed_nb);
|
&priv->lineinfo_changed_nb);
|
||||||
out_free_bitmap:
|
out_free_bitmap:
|
||||||
bitmap_free(priv->watched_lines);
|
bitmap_free(priv->watched_lines);
|
||||||
out_free_priv:
|
out_free_priv:
|
||||||
|
@ -1085,8 +1085,8 @@ static int gpio_chrdev_release(struct inode *inode, struct file *file)
|
||||||
struct gpio_device *gdev = priv->gdev;
|
struct gpio_device *gdev = priv->gdev;
|
||||||
|
|
||||||
bitmap_free(priv->watched_lines);
|
bitmap_free(priv->watched_lines);
|
||||||
atomic_notifier_chain_unregister(&gdev->notifier,
|
blocking_notifier_chain_unregister(&gdev->notifier,
|
||||||
&priv->lineinfo_changed_nb);
|
&priv->lineinfo_changed_nb);
|
||||||
put_device(&gdev->dev);
|
put_device(&gdev->dev);
|
||||||
kfree(priv);
|
kfree(priv);
|
||||||
|
|
||||||
|
|
|
@ -615,7 +615,7 @@ int gpiochip_add_data_with_key(struct gpio_chip *gc, void *data,
|
||||||
|
|
||||||
spin_unlock_irqrestore(&gpio_lock, flags);
|
spin_unlock_irqrestore(&gpio_lock, flags);
|
||||||
|
|
||||||
ATOMIC_INIT_NOTIFIER_HEAD(&gdev->notifier);
|
BLOCKING_INIT_NOTIFIER_HEAD(&gdev->notifier);
|
||||||
|
|
||||||
#ifdef CONFIG_PINCTRL
|
#ifdef CONFIG_PINCTRL
|
||||||
INIT_LIST_HEAD(&gdev->pin_ranges);
|
INIT_LIST_HEAD(&gdev->pin_ranges);
|
||||||
|
@ -2049,8 +2049,8 @@ static bool gpiod_free_commit(struct gpio_desc *desc)
|
||||||
}
|
}
|
||||||
|
|
||||||
spin_unlock_irqrestore(&gpio_lock, flags);
|
spin_unlock_irqrestore(&gpio_lock, flags);
|
||||||
atomic_notifier_call_chain(&desc->gdev->notifier,
|
blocking_notifier_call_chain(&desc->gdev->notifier,
|
||||||
GPIOLINE_CHANGED_RELEASED, desc);
|
GPIOLINE_CHANGED_RELEASED, desc);
|
||||||
|
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
@ -3927,8 +3927,8 @@ struct gpio_desc *__must_check gpiod_get_index(struct device *dev,
|
||||||
return ERR_PTR(ret);
|
return ERR_PTR(ret);
|
||||||
}
|
}
|
||||||
|
|
||||||
atomic_notifier_call_chain(&desc->gdev->notifier,
|
blocking_notifier_call_chain(&desc->gdev->notifier,
|
||||||
GPIOLINE_CHANGED_REQUESTED, desc);
|
GPIOLINE_CHANGED_REQUESTED, desc);
|
||||||
|
|
||||||
return desc;
|
return desc;
|
||||||
}
|
}
|
||||||
|
@ -3995,8 +3995,8 @@ struct gpio_desc *fwnode_get_named_gpiod(struct fwnode_handle *fwnode,
|
||||||
return ERR_PTR(ret);
|
return ERR_PTR(ret);
|
||||||
}
|
}
|
||||||
|
|
||||||
atomic_notifier_call_chain(&desc->gdev->notifier,
|
blocking_notifier_call_chain(&desc->gdev->notifier,
|
||||||
GPIOLINE_CHANGED_REQUESTED, desc);
|
GPIOLINE_CHANGED_REQUESTED, desc);
|
||||||
|
|
||||||
return desc;
|
return desc;
|
||||||
}
|
}
|
||||||
|
|
|
@ -56,7 +56,7 @@ struct gpio_device {
|
||||||
const char *label;
|
const char *label;
|
||||||
void *data;
|
void *data;
|
||||||
struct list_head list;
|
struct list_head list;
|
||||||
struct atomic_notifier_head notifier;
|
struct blocking_notifier_head notifier;
|
||||||
|
|
||||||
#ifdef CONFIG_PINCTRL
|
#ifdef CONFIG_PINCTRL
|
||||||
/*
|
/*
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue