Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
Simon Glass | 6494d70 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (c) 2013 Google, Inc |
| 4 | * |
| 5 | * (C) Copyright 2012 |
| 6 | * Pavel Herrmann <morpheus.ibis@gmail.com> |
Simon Glass | 6494d70 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 7 | */ |
| 8 | |
| 9 | #ifndef _DM_LISTS_H_ |
| 10 | #define _DM_LISTS_H_ |
| 11 | |
Simon Glass | f5b5719 | 2017-05-18 20:09:06 -0600 | [diff] [blame] | 12 | #include <dm/ofnode.h> |
Simon Glass | 6494d70 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 13 | #include <dm/uclass-id.h> |
| 14 | |
| 15 | /** |
| 16 | * lists_driver_lookup_name() - Return u_boot_driver corresponding to name |
| 17 | * |
| 18 | * This function returns a pointer to a driver given its name. This is used |
| 19 | * for binding a driver given its name and platdata. |
| 20 | * |
| 21 | * @name: Name of driver to look up |
| 22 | * @return pointer to driver, or NULL if not found |
| 23 | */ |
| 24 | struct driver *lists_driver_lookup_name(const char *name); |
| 25 | |
| 26 | /** |
| 27 | * lists_uclass_lookup() - Return uclass_driver based on ID of the class |
| 28 | * id: ID of the class |
| 29 | * |
| 30 | * This function returns the pointer to uclass_driver, which is the class's |
| 31 | * base structure based on the ID of the class. Returns NULL on error. |
| 32 | */ |
| 33 | struct uclass_driver *lists_uclass_lookup(enum uclass_id id); |
| 34 | |
Simon Glass | f2bc6fc | 2014-06-11 23:29:54 -0600 | [diff] [blame] | 35 | /** |
| 36 | * lists_bind_drivers() - search for and bind all drivers to parent |
| 37 | * |
| 38 | * This searches the U_BOOT_DEVICE() structures and creates new devices for |
| 39 | * each one. The devices will have @parent as their parent. |
| 40 | * |
Masahiro Yamada | 81b4e75 | 2014-09-28 22:52:24 +0900 | [diff] [blame] | 41 | * @parent: parent device (root) |
Bin Meng | 6244fc6 | 2018-10-10 22:06:59 -0700 | [diff] [blame] | 42 | * @pre_reloc_only: If true, bind only drivers with the DM_FLAG_PRE_RELOC flag. |
| 43 | * If false bind all drivers. |
Simon Glass | f2bc6fc | 2014-06-11 23:29:54 -0600 | [diff] [blame] | 44 | */ |
Simon Glass | 00606d7 | 2014-07-23 06:55:03 -0600 | [diff] [blame] | 45 | int lists_bind_drivers(struct udevice *parent, bool pre_reloc_only); |
Simon Glass | 6494d70 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 46 | |
Simon Glass | f2bc6fc | 2014-06-11 23:29:54 -0600 | [diff] [blame] | 47 | /** |
| 48 | * lists_bind_fdt() - bind a device tree node |
| 49 | * |
| 50 | * This creates a new device bound to the given device tree node, with |
| 51 | * @parent as its parent. |
| 52 | * |
Masahiro Yamada | 81b4e75 | 2014-09-28 22:52:24 +0900 | [diff] [blame] | 53 | * @parent: parent device (root) |
Simon Glass | f5b5719 | 2017-05-18 20:09:06 -0600 | [diff] [blame] | 54 | * @node: device tree node to bind |
Simon Glass | 1f359e3 | 2014-09-04 16:27:25 -0600 | [diff] [blame] | 55 | * @devp: if non-NULL, returns a pointer to the bound device |
Bin Meng | 8d773c4 | 2018-10-10 22:06:58 -0700 | [diff] [blame] | 56 | * @pre_reloc_only: If true, bind only nodes with special devicetree properties, |
| 57 | * or drivers with the DM_FLAG_PRE_RELOC flag. If false bind all drivers. |
Simon Glass | 1f359e3 | 2014-09-04 16:27:25 -0600 | [diff] [blame] | 58 | * @return 0 if device was bound, -EINVAL if the device tree is invalid, |
| 59 | * other -ve value on error |
Simon Glass | f2bc6fc | 2014-06-11 23:29:54 -0600 | [diff] [blame] | 60 | */ |
Bin Meng | 8d773c4 | 2018-10-10 22:06:58 -0700 | [diff] [blame] | 61 | int lists_bind_fdt(struct udevice *parent, ofnode node, struct udevice **devp, |
| 62 | bool pre_reloc_only); |
Simon Glass | 6494d70 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 63 | |
Simon Glass | e33dc22 | 2014-11-11 10:46:21 -0700 | [diff] [blame] | 64 | /** |
| 65 | * device_bind_driver() - bind a device to a driver |
| 66 | * |
| 67 | * This binds a new device to a driver. |
| 68 | * |
| 69 | * @parent: Parent device |
| 70 | * @drv_name: Name of driver to attach to this parent |
| 71 | * @dev_name: Name of the new device thus created |
Masahiro Yamada | e6cabe4 | 2015-08-27 12:44:28 +0900 | [diff] [blame] | 72 | * @devp: If non-NULL, returns the newly bound device |
Simon Glass | e33dc22 | 2014-11-11 10:46:21 -0700 | [diff] [blame] | 73 | */ |
| 74 | int device_bind_driver(struct udevice *parent, const char *drv_name, |
| 75 | const char *dev_name, struct udevice **devp); |
| 76 | |
Simon Glass | 5b9000d | 2015-04-28 20:25:04 -0600 | [diff] [blame] | 77 | /** |
| 78 | * device_bind_driver_to_node() - bind a device to a driver for a node |
| 79 | * |
| 80 | * This binds a new device to a driver for a given device tree node. This |
| 81 | * should only be needed if the node lacks a compatible strings. |
| 82 | * |
| 83 | * @parent: Parent device |
| 84 | * @drv_name: Name of driver to attach to this parent |
| 85 | * @dev_name: Name of the new device thus created |
| 86 | * @node: Device tree node |
Masahiro Yamada | e6cabe4 | 2015-08-27 12:44:28 +0900 | [diff] [blame] | 87 | * @devp: If non-NULL, returns the newly bound device |
Simon Glass | 5b9000d | 2015-04-28 20:25:04 -0600 | [diff] [blame] | 88 | */ |
| 89 | int device_bind_driver_to_node(struct udevice *parent, const char *drv_name, |
Simon Glass | 45a2686 | 2017-05-18 20:09:07 -0600 | [diff] [blame] | 90 | const char *dev_name, ofnode node, |
Simon Glass | 5b9000d | 2015-04-28 20:25:04 -0600 | [diff] [blame] | 91 | struct udevice **devp); |
| 92 | |
Simon Glass | 6494d70 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 93 | #endif |