Simon Glass | dd6ab88 | 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 | b74fcb4 | 2014-05-22 12:43:05 +0200 | [diff] [blame] | 13 | struct udevice; |
Simon Glass | dd6ab88 | 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 | b74fcb4 | 2014-05-22 12:43:05 +0200 | [diff] [blame] | 22 | struct udevice *dm_root(void); |
Simon Glass | dd6ab88 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 23 | |
| 24 | /** |
| 25 | * dm_scan_platdata() - Scan all platform data and bind drivers |
| 26 | * |
| 27 | * This scans all available platdata and creates drivers for each |
| 28 | * |
Simon Glass | fef72b7 | 2014-07-23 06:55:03 -0600 | [diff] [blame^] | 29 | * @pre_reloc_only: If true, bind only drivers with the DM_FLAG_PRE_RELOC |
| 30 | * flag. If false bind all drivers. |
Simon Glass | dd6ab88 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 31 | * @return 0 if OK, -ve on error |
| 32 | */ |
Simon Glass | fef72b7 | 2014-07-23 06:55:03 -0600 | [diff] [blame^] | 33 | int dm_scan_platdata(bool pre_reloc_only); |
Simon Glass | dd6ab88 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 34 | |
| 35 | /** |
| 36 | * dm_scan_fdt() - Scan the device tree and bind drivers |
| 37 | * |
| 38 | * This scans the device tree and creates a driver for each node |
| 39 | * |
| 40 | * @blob: Pointer to device tree blob |
Simon Glass | fef72b7 | 2014-07-23 06:55:03 -0600 | [diff] [blame^] | 41 | * @pre_reloc_only: If true, bind only drivers with the DM_FLAG_PRE_RELOC |
| 42 | * flag. If false bind all drivers. |
Simon Glass | dd6ab88 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 43 | * @return 0 if OK, -ve on error |
| 44 | */ |
Simon Glass | fef72b7 | 2014-07-23 06:55:03 -0600 | [diff] [blame^] | 45 | int dm_scan_fdt(const void *blob, bool pre_reloc_only); |
Simon Glass | dd6ab88 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 46 | |
| 47 | /** |
Simon Glass | 4dbb5cf | 2014-06-11 23:29:54 -0600 | [diff] [blame] | 48 | * dm_init() - Initialise Driver Model structures |
Simon Glass | dd6ab88 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 49 | * |
| 50 | * This function will initialize roots of driver tree and class tree. |
| 51 | * This needs to be called before anything uses the DM |
| 52 | * |
| 53 | * @return 0 if OK, -ve on error |
| 54 | */ |
| 55 | int dm_init(void); |
| 56 | |
Simon Glass | 0019758 | 2014-07-23 06:55:01 -0600 | [diff] [blame] | 57 | /** |
| 58 | * dm_uninit - Uninitialise Driver Model structures |
| 59 | * |
| 60 | * All devices will be removed and unbound |
| 61 | * @return 0 if OK, -ve on error |
| 62 | */ |
| 63 | int dm_uninit(void); |
| 64 | |
Simon Glass | dd6ab88 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 65 | #endif |