• Home
  • Raw
  • Download

Lines Matching defs:dev

25 static u8 *get_gpio_flags(struct udevice *dev, unsigned offset)  in get_gpio_flags()
39 static int get_gpio_flag(struct udevice *dev, unsigned offset, int flag) in get_gpio_flag()
44 static int set_gpio_flag(struct udevice *dev, unsigned offset, int flag, in set_gpio_flag()
61 int sandbox_gpio_get_value(struct udevice *dev, unsigned offset) in sandbox_gpio_get_value()
68 int sandbox_gpio_set_value(struct udevice *dev, unsigned offset, int value) in sandbox_gpio_set_value()
73 int sandbox_gpio_get_open_drain(struct udevice *dev, unsigned offset) in sandbox_gpio_get_open_drain()
78 int sandbox_gpio_set_open_drain(struct udevice *dev, unsigned offset, int value) in sandbox_gpio_set_open_drain()
83 int sandbox_gpio_get_direction(struct udevice *dev, unsigned offset) in sandbox_gpio_get_direction()
88 int sandbox_gpio_set_direction(struct udevice *dev, unsigned offset, int output) in sandbox_gpio_set_direction()
98 static int sb_gpio_direction_input(struct udevice *dev, unsigned offset) in sb_gpio_direction_input()
106 static int sb_gpio_direction_output(struct udevice *dev, unsigned offset, in sb_gpio_direction_output()
116 static int sb_gpio_get_value(struct udevice *dev, unsigned offset) in sb_gpio_get_value()
124 static int sb_gpio_set_value(struct udevice *dev, unsigned offset, int value) in sb_gpio_set_value()
138 static int sb_gpio_get_open_drain(struct udevice *dev, unsigned offset) in sb_gpio_get_open_drain()
146 static int sb_gpio_set_open_drain(struct udevice *dev, unsigned offset, int value) in sb_gpio_set_open_drain()
159 static int sb_gpio_get_function(struct udevice *dev, unsigned offset) in sb_gpio_get_function()
166 static int sb_gpio_xlate(struct udevice *dev, struct gpio_desc *desc, in sb_gpio_xlate()
195 static int sandbox_gpio_ofdata_to_platdata(struct udevice *dev) in sandbox_gpio_ofdata_to_platdata()
206 static int gpio_sandbox_probe(struct udevice *dev) in gpio_sandbox_probe()
219 static int gpio_sandbox_remove(struct udevice *dev) in gpio_sandbox_remove()