Home
last modified time | relevance | path

Searched refs:drv_name (Results 1 – 15 of 15) sorted by relevance

/rk3399_rockchip-uboot/common/
H A Dlog.c16 static struct log_device *log_device_find_by_name(const char *drv_name) in log_device_find_by_name() argument
21 if (!strcmp(drv_name, ldev->drv->name)) in log_device_find_by_name()
154 int log_add_filter(const char *drv_name, enum log_category_t cat_list[], in log_add_filter() argument
161 ldev = log_device_find_by_name(drv_name); in log_add_filter()
194 int log_remove_filter(const char *drv_name, int filter_num) in log_remove_filter() argument
199 ldev = log_device_find_by_name(drv_name); in log_remove_filter()
/rk3399_rockchip-uboot/drivers/core/
H A Dlists.c74 int device_bind_driver(struct udevice *parent, const char *drv_name, in device_bind_driver() argument
77 return device_bind_driver_to_node(parent, drv_name, dev_name, in device_bind_driver()
81 int device_bind_driver_to_node(struct udevice *parent, const char *drv_name, in device_bind_driver_to_node() argument
88 drv = lists_driver_lookup_name(drv_name); in device_bind_driver_to_node()
90 debug("Cannot find driver '%s'\n", drv_name); in device_bind_driver_to_node()
/rk3399_rockchip-uboot/include/dm/
H A Dlists.h72 int device_bind_driver(struct udevice *parent, const char *drv_name,
87 int device_bind_driver_to_node(struct udevice *parent, const char *drv_name,
/rk3399_rockchip-uboot/drivers/clk/at91/
H A Dpmc.c53 int at91_clk_sub_device_bind(struct udevice *dev, const char *drv_name) in at91_clk_sub_device_bind() argument
81 ret = device_bind_driver_to_node(dev, drv_name, name, in at91_clk_sub_device_bind()
H A Dpmc.h16 int at91_clk_sub_device_bind(struct udevice *dev, const char *drv_name);
/rk3399_rockchip-uboot/drivers/irq/
H A Dirq-generic.c382 char *drv_name; in do_dump_irqs() local
394 drv_name = "IRQ"; in do_dump_irqs()
396 drv_name = dev->driver->name; in do_dump_irqs()
401 drv_name, dev->name, irq_desc[pirq].count); in do_dump_irqs()
/rk3399_rockchip-uboot/drivers/video/
H A Dvideo-uclass.c206 const char *drv_name = drv; in video_post_probe() local
249 drv_name = priv->vidconsole_drv_name; in video_post_probe()
250 ret = device_bind_driver(dev, drv_name, str, &cons); in video_post_probe()
/rk3399_rockchip-uboot/include/
H A Dlog.h298 int log_add_filter(const char *drv_name, enum log_category_t cat_list[],
310 int log_remove_filter(const char *drv_name, int filter_num);
H A Dkey.h72 int key_bind_children(struct udevice *dev, const char *drv_name);
H A Dblk.h373 int blk_create_device(struct udevice *parent, const char *drv_name,
390 int blk_create_devicef(struct udevice *parent, const char *drv_name,
H A Dspi.h571 const char *drv_name, const char *dev_name,
/rk3399_rockchip-uboot/drivers/spi/
H A Dspi-uclass.c327 const char *drv_name, const char *dev_name, in spi_get_bus_and_cs() argument
353 if (ret == -ENODEV && drv_name) { in spi_get_bus_and_cs()
355 __func__, dev_name, busnum, cs, drv_name); in spi_get_bus_and_cs()
356 ret = device_bind_driver(bus, drv_name, dev_name, &dev); in spi_get_bus_and_cs()
/rk3399_rockchip-uboot/drivers/block/
H A Dblk-uclass.c646 int blk_create_device(struct udevice *parent, const char *drv_name, in blk_create_device() argument
663 ret = device_bind_driver(parent, drv_name, name, &dev); in blk_create_device()
680 int blk_create_devicef(struct udevice *parent, const char *drv_name, in blk_create_devicef() argument
692 ret = blk_create_device(parent, drv_name, str, if_type, devnum, in blk_create_devicef()
/rk3399_rockchip-uboot/drivers/input/
H A Dkey-uclass.c296 int key_bind_children(struct udevice *dev, const char *drv_name) in key_bind_children() argument
317 ret = device_bind_driver_to_node(dev, drv_name, name, in key_bind_children()
/rk3399_rockchip-uboot/test/dm/
H A Dvideo.c90 static int select_vidconsole(struct unit_test_state *uts, const char *drv_name) in select_vidconsole() argument