static LIST_HEAD(gpio_lookup_list);
 
 LIST_HEAD(gpio_devices);
-DEFINE_MUTEX(gpio_devices_lock);
+DECLARE_RWSEM(gpio_devices_sem);
 
 static DEFINE_MUTEX(gpio_machine_hogs_mutex);
 static LIST_HEAD(gpio_machine_hogs);
 {
        struct gpio_device *gdev;
 
-       scoped_guard(mutex, &gpio_devices_lock) {
+       scoped_guard(rwsem_read, &gpio_devices_sem) {
                list_for_each_entry(gdev, &gpio_devices, list) {
                        if (gdev->base <= gpio &&
                            gdev->base + gdev->ngpio > gpio)
        if (!name)
                return NULL;
 
-       guard(mutex)(&gpio_devices_lock);
+       guard(rwsem_read)(&gpio_devices_sem);
 
        list_for_each_entry(gdev, &gpio_devices, list) {
                struct gpio_desc *desc;
 
        gdev->ngpio = gc->ngpio;
 
-       scoped_guard(mutex, &gpio_devices_lock) {
+       scoped_guard(rwsem_write, &gpio_devices_sem) {
                /*
                 * TODO: this allocates a Linux GPIO number base in the global
                 * GPIO numberspace for this chip. In the long run we want to
                goto err_print_message;
        }
 err_remove_from_list:
-       scoped_guard(mutex, &gpio_devices_lock)
+       scoped_guard(rwsem_write, &gpio_devices_sem)
                list_del(&gdev->list);
 err_free_label:
        kfree_const(gdev->label);
                dev_crit(&gdev->dev,
                         "REMOVING GPIOCHIP WITH GPIOS STILL REQUESTED\n");
 
-       scoped_guard(mutex, &gpio_devices_lock)
+       scoped_guard(rwsem_write, &gpio_devices_sem)
                list_del(&gdev->list);
 
        /*
         */
        might_sleep();
 
-       guard(mutex)(&gpio_devices_lock);
+       guard(rwsem_read)(&gpio_devices_sem);
 
        list_for_each_entry(gdev, &gpio_devices, list) {
                if (gdev->chip && match(gdev->chip, data))
 
        s->private = "";
 
-       guard(mutex)(&gpio_devices_lock);
+       guard(rwsem_read)(&gpio_devices_sem);
 
        list_for_each_entry(gdev, &gpio_devices, list) {
                if (index-- == 0)
        struct gpio_device *gdev = v;
        void *ret = NULL;
 
-       scoped_guard(mutex, &gpio_devices_lock) {
+       scoped_guard(rwsem_read, &gpio_devices_sem) {
                if (list_is_last(&gdev->list, &gpio_devices))
                        ret = NULL;
                else