blob: c7f0c1d5ca302acd8bd89887b5bc8c53119af4dd [file] [log] [blame]
Simon Glass6494d702014-02-26 15:59:18 -07001/*
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 Schocher54c5d082014-05-22 12:43:05 +020013struct udevice;
Simon Glass6494d702014-02-26 15:59:18 -070014
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 Schocher54c5d082014-05-22 12:43:05 +020022struct udevice *dm_root(void);
Simon Glass6494d702014-02-26 15:59:18 -070023
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 Glass00606d72014-07-23 06:55:03 -060029 * @pre_reloc_only: If true, bind only drivers with the DM_FLAG_PRE_RELOC
30 * flag. If false bind all drivers.
Simon Glass6494d702014-02-26 15:59:18 -070031 * @return 0 if OK, -ve on error
32 */
Simon Glass00606d72014-07-23 06:55:03 -060033int dm_scan_platdata(bool pre_reloc_only);
Simon Glass6494d702014-02-26 15:59:18 -070034
35/**
36 * dm_scan_fdt() - Scan the device tree and bind drivers
37 *
Simon Glass0040b942014-07-23 06:55:17 -060038 * This scans the device tree and creates a driver for each node. Only
39 * the top-level subnodes are examined.
Simon Glass6494d702014-02-26 15:59:18 -070040 *
41 * @blob: Pointer to device tree blob
Simon Glass00606d72014-07-23 06:55:03 -060042 * @pre_reloc_only: If true, bind only drivers with the DM_FLAG_PRE_RELOC
43 * flag. If false bind all drivers.
Simon Glass6494d702014-02-26 15:59:18 -070044 * @return 0 if OK, -ve on error
45 */
Simon Glass00606d72014-07-23 06:55:03 -060046int dm_scan_fdt(const void *blob, bool pre_reloc_only);
Simon Glass6494d702014-02-26 15:59:18 -070047
48/**
Simon Glass1ca7e202014-07-23 06:55:18 -060049 * dm_scan_fdt_node() - Scan the device tree and bind drivers for a node
50 *
51 * This scans the subnodes of a device tree node and and creates a driver
52 * for each one.
53 *
54 * @parent: Parent device for the devices that will be created
55 * @blob: Pointer to device tree blob
56 * @offset: Offset of node to scan
57 * @pre_reloc_only: If true, bind only drivers with the DM_FLAG_PRE_RELOC
58 * flag. If false bind all drivers.
59 * @return 0 if OK, -ve on error
60 */
61int dm_scan_fdt_node(struct udevice *parent, const void *blob, int offset,
62 bool pre_reloc_only);
63
64/**
Simon Glassbb585032014-07-23 06:55:23 -060065 * dm_scan_other() - Scan for other devices
66 *
67 * Some devices may not be visible to Driver Model. This weak function can
68 * be provided by boards which wish to create their own devices
69 * programmaticaly. They should do this by calling device_bind() on each
70 * device.
71 *
72 * @pre_reloc_only: If true, bind only drivers with the DM_FLAG_PRE_RELOC
73 * flag. If false bind all drivers.
74 */
75int dm_scan_other(bool pre_reloc_only);
76
77/**
Simon Glassab7cd622014-07-23 06:55:04 -060078 * dm_init_and_scan() - Initialise Driver Model structures and scan for devices
79 *
80 * This function initialises the roots of the driver tree and uclass trees,
81 * then scans and binds available devices from platform data and the FDT.
82 * This calls dm_init() to set up Driver Model structures.
83 *
84 * @pre_reloc_only: If true, bind only drivers with the DM_FLAG_PRE_RELOC
85 * flag. If false bind all drivers.
86 * @return 0 if OK, -ve on error
87 */
88int dm_init_and_scan(bool pre_reloc_only);
89
90/**
Simon Glassf2bc6fc2014-06-11 23:29:54 -060091 * dm_init() - Initialise Driver Model structures
Simon Glass6494d702014-02-26 15:59:18 -070092 *
93 * This function will initialize roots of driver tree and class tree.
94 * This needs to be called before anything uses the DM
95 *
96 * @return 0 if OK, -ve on error
97 */
98int dm_init(void);
99
Simon Glass9adbd7a2014-07-23 06:55:01 -0600100/**
101 * dm_uninit - Uninitialise Driver Model structures
102 *
103 * All devices will be removed and unbound
104 * @return 0 if OK, -ve on error
105 */
106int dm_uninit(void);
107
Simon Glass6494d702014-02-26 15:59:18 -0700108#endif