Simon Glass | 6494d70 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2013 Google, Inc |
| 3 | * |
| 4 | * (C) Copyright 2012 |
| 5 | * Pavel Herrmann <morpheus.ibis@gmail.com> |
| 6 | * |
| 7 | * SPDX-License-Identifier: GPL-2.0+ |
| 8 | */ |
| 9 | |
| 10 | #ifndef _DM_ROOT_H_ |
| 11 | #define _DM_ROOT_H_ |
| 12 | |
Heiko Schocher | 54c5d08 | 2014-05-22 12:43:05 +0200 | [diff] [blame] | 13 | struct udevice; |
Simon Glass | 6494d70 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 14 | |
| 15 | /** |
| 16 | * dm_root() - Return pointer to the top of the driver tree |
| 17 | * |
| 18 | * This function returns pointer to the root node of the driver tree, |
| 19 | * |
| 20 | * @return pointer to root device, or NULL if not inited yet |
| 21 | */ |
Heiko Schocher | 54c5d08 | 2014-05-22 12:43:05 +0200 | [diff] [blame] | 22 | struct udevice *dm_root(void); |
Simon Glass | 6494d70 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 23 | |
Simon Glass | 2f11cd9 | 2016-11-13 14:21:58 -0700 | [diff] [blame] | 24 | struct global_data; |
| 25 | /** |
| 26 | * dm_fixup_for_gd_move() - Handle global_data moving to a new place |
| 27 | * |
| 28 | * The uclass list is part of global_data. Due to the way lists work, moving |
| 29 | * the list will cause it to become invalid. This function fixes that up so |
| 30 | * that the uclass list will work correctly. |
| 31 | */ |
| 32 | void dm_fixup_for_gd_move(struct global_data *new_gd); |
| 33 | |
Simon Glass | 6494d70 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 34 | /** |
| 35 | * dm_scan_platdata() - Scan all platform data and bind drivers |
| 36 | * |
| 37 | * This scans all available platdata and creates drivers for each |
| 38 | * |
Simon Glass | 00606d7 | 2014-07-23 06:55:03 -0600 | [diff] [blame] | 39 | * @pre_reloc_only: If true, bind only drivers with the DM_FLAG_PRE_RELOC |
| 40 | * flag. If false bind all drivers. |
Simon Glass | 6494d70 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 41 | * @return 0 if OK, -ve on error |
| 42 | */ |
Simon Glass | 00606d7 | 2014-07-23 06:55:03 -0600 | [diff] [blame] | 43 | int dm_scan_platdata(bool pre_reloc_only); |
Simon Glass | 6494d70 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 44 | |
| 45 | /** |
| 46 | * dm_scan_fdt() - Scan the device tree and bind drivers |
| 47 | * |
Simon Glass | 0040b94 | 2014-07-23 06:55:17 -0600 | [diff] [blame] | 48 | * This scans the device tree and creates a driver for each node. Only |
| 49 | * the top-level subnodes are examined. |
Simon Glass | 6494d70 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 50 | * |
| 51 | * @blob: Pointer to device tree blob |
Simon Glass | 00606d7 | 2014-07-23 06:55:03 -0600 | [diff] [blame] | 52 | * @pre_reloc_only: If true, bind only drivers with the DM_FLAG_PRE_RELOC |
| 53 | * flag. If false bind all drivers. |
Simon Glass | 6494d70 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 54 | * @return 0 if OK, -ve on error |
| 55 | */ |
Simon Glass | 00606d7 | 2014-07-23 06:55:03 -0600 | [diff] [blame] | 56 | int dm_scan_fdt(const void *blob, bool pre_reloc_only); |
Simon Glass | 6494d70 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 57 | |
| 58 | /** |
Simon Glass | bb58503 | 2014-07-23 06:55:23 -0600 | [diff] [blame] | 59 | * dm_scan_other() - Scan for other devices |
| 60 | * |
| 61 | * Some devices may not be visible to Driver Model. This weak function can |
| 62 | * be provided by boards which wish to create their own devices |
| 63 | * programmaticaly. They should do this by calling device_bind() on each |
| 64 | * device. |
| 65 | * |
| 66 | * @pre_reloc_only: If true, bind only drivers with the DM_FLAG_PRE_RELOC |
| 67 | * flag. If false bind all drivers. |
| 68 | */ |
| 69 | int dm_scan_other(bool pre_reloc_only); |
| 70 | |
| 71 | /** |
Simon Glass | ab7cd62 | 2014-07-23 06:55:04 -0600 | [diff] [blame] | 72 | * dm_init_and_scan() - Initialise Driver Model structures and scan for devices |
| 73 | * |
| 74 | * This function initialises the roots of the driver tree and uclass trees, |
| 75 | * then scans and binds available devices from platform data and the FDT. |
| 76 | * This calls dm_init() to set up Driver Model structures. |
| 77 | * |
| 78 | * @pre_reloc_only: If true, bind only drivers with the DM_FLAG_PRE_RELOC |
| 79 | * flag. If false bind all drivers. |
| 80 | * @return 0 if OK, -ve on error |
| 81 | */ |
| 82 | int dm_init_and_scan(bool pre_reloc_only); |
| 83 | |
| 84 | /** |
Simon Glass | f2bc6fc | 2014-06-11 23:29:54 -0600 | [diff] [blame] | 85 | * dm_init() - Initialise Driver Model structures |
Simon Glass | 6494d70 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 86 | * |
| 87 | * This function will initialize roots of driver tree and class tree. |
| 88 | * This needs to be called before anything uses the DM |
| 89 | * |
Simon Glass | 19c8205 | 2017-05-18 20:09:08 -0600 | [diff] [blame] | 90 | * @of_live: Enable live device tree |
Simon Glass | 6494d70 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 91 | * @return 0 if OK, -ve on error |
| 92 | */ |
Simon Glass | 19c8205 | 2017-05-18 20:09:08 -0600 | [diff] [blame] | 93 | int dm_init(bool of_live); |
Simon Glass | 6494d70 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 94 | |
Simon Glass | 9adbd7a | 2014-07-23 06:55:01 -0600 | [diff] [blame] | 95 | /** |
| 96 | * dm_uninit - Uninitialise Driver Model structures |
| 97 | * |
| 98 | * All devices will be removed and unbound |
| 99 | * @return 0 if OK, -ve on error |
| 100 | */ |
| 101 | int dm_uninit(void); |
| 102 | |
Stefan Roese | bc85aa4 | 2017-03-27 10:58:53 +0200 | [diff] [blame] | 103 | #if CONFIG_IS_ENABLED(DM_DEVICE_REMOVE) |
| 104 | /** |
| 105 | * dm_remove_devices_flags - Call remove function of all drivers with |
| 106 | * specific removal flags set to selectively |
| 107 | * remove drivers |
| 108 | * |
| 109 | * All devices with the matching flags set will be removed |
| 110 | * |
| 111 | * @flags: Flags for selective device removal |
| 112 | * @return 0 if OK, -ve on error |
| 113 | */ |
| 114 | int dm_remove_devices_flags(uint flags); |
| 115 | #else |
| 116 | static inline int dm_remove_devices_flags(uint flags) { return 0; } |
| 117 | #endif |
| 118 | |
Simon Glass | 6494d70 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 119 | #endif |