Home
last modified time | relevance | path

Searched refs:gpiodev (Results 1 – 8 of 8) sorted by relevance

/Linux-v5.15/drivers/gpio/
Dgpiolib.h176 dev_emerg(&gc->gpiodev->dev, "(%s): " fmt, gc->label, ##__VA_ARGS__)
178 dev_crit(&gc->gpiodev->dev, "(%s): " fmt, gc->label, ##__VA_ARGS__)
180 dev_err(&gc->gpiodev->dev, "(%s): " fmt, gc->label, ##__VA_ARGS__)
182 dev_warn(&gc->gpiodev->dev, "(%s): " fmt, gc->label, ##__VA_ARGS__)
184 dev_info(&gc->gpiodev->dev, "(%s): " fmt, gc->label, ##__VA_ARGS__)
186 dev_dbg(&gc->gpiodev->dev, "(%s): " fmt, gc->label, ##__VA_ARGS__)
Dgpiolib.c144 struct gpio_device *gdev = gc->gpiodev; in gpiochip_get_desc()
343 struct gpio_device *gdev = gc->gpiodev; in gpiochip_set_desc_names()
375 struct gpio_device *gdev = chip->gpiodev; in devprop_gpiochip_set_names()
613 gc->gpiodev = gdev; in gpiochip_add_data_with_key()
822 return gc->gpiodev->data; in gpiochip_get_data()
834 struct gpio_device *gdev = gc->gpiodev; in gpiochip_remove()
1488 struct fwnode_handle *fwnode = dev_fwnode(&gc->gpiodev->dev); in gpiochip_add_irqchip()
1664 if (list_empty(&gc->gpiodev->pin_ranges)) in gpiochip_generic_request()
1668 return pinctrl_gpio_request(gc->gpiodev->base + offset); in gpiochip_generic_request()
1680 if (list_empty(&gc->gpiodev->pin_ranges)) in gpiochip_generic_free()
[all …]
Dgpiolib-of.c88 return chip->gpiodev->dev.of_node == gpiospec->np && in of_gpiochip_match_node_and_xlate()
714 struct gpio_desc *descs = chip->gpiodev->descs; in of_gpiochip_remove_hog()
726 return chip->gpiodev->dev.of_node == data; in of_gpiochip_match_node()
Dgpio-mockup.c354 devname = dev_name(&gc->gpiodev->dev); in gpio_mockup_debugfs_setup()
/Linux-v5.15/drivers/net/wireless/broadcom/b43legacy/
Dmain.c1879 struct ssb_device *gpiodev, *pcidev = NULL; in b43legacy_gpio_init() local
1913 gpiodev = bus->chipco.dev ? : pcidev; in b43legacy_gpio_init()
1914 if (!gpiodev) in b43legacy_gpio_init()
1916 ssb_write32(gpiodev, B43legacy_GPIO_CONTROL, in b43legacy_gpio_init()
1917 (ssb_read32(gpiodev, B43legacy_GPIO_CONTROL) in b43legacy_gpio_init()
1927 struct ssb_device *gpiodev, *pcidev = NULL; in b43legacy_gpio_cleanup() local
1932 gpiodev = bus->chipco.dev ? : pcidev; in b43legacy_gpio_cleanup()
1933 if (!gpiodev) in b43legacy_gpio_cleanup()
1935 ssb_write32(gpiodev, B43legacy_GPIO_CONTROL, 0); in b43legacy_gpio_cleanup()
/Linux-v5.15/include/linux/gpio/
Ddriver.h363 struct gpio_device *gpiodev; member
/Linux-v5.15/drivers/net/wireless/broadcom/b43/
Dmain.c2867 struct ssb_device *gpiodev; in b43_gpio_init() local
2912 gpiodev = b43_ssb_gpio_dev(dev); in b43_gpio_init()
2913 if (gpiodev) in b43_gpio_init()
2914 ssb_write32(gpiodev, B43_GPIO_CONTROL, in b43_gpio_init()
2915 (ssb_read32(gpiodev, B43_GPIO_CONTROL) in b43_gpio_init()
2928 struct ssb_device *gpiodev; in b43_gpio_cleanup() local
2939 gpiodev = b43_ssb_gpio_dev(dev); in b43_gpio_cleanup()
2940 if (gpiodev) in b43_gpio_cleanup()
2941 ssb_write32(gpiodev, B43_GPIO_CONTROL, 0); in b43_gpio_cleanup()
/Linux-v5.15/drivers/pinctrl/
Dcore.c1664 seq_printf(s, "%u:%s ", gpio_num - chip->gpiodev->base, chip->label); in pinctrl_pins_show()