blob: f800a866ddab8ac6baf4d69a134141f1edb0d94e [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Simon Glass6494d702014-02-26 15:59:18 -07002/*
3 * Copyright (c) 2013 Google, Inc
4 *
5 * (C) Copyright 2012
6 * Pavel Herrmann <morpheus.ibis@gmail.com>
7 * Marek Vasut <marex@denx.de>
Simon Glass6494d702014-02-26 15:59:18 -07008 */
9
10#ifndef _DM_PLATDATA_H
11#define _DM_PLATDATA_H
12
Masahiro Yamada42c23dd2014-10-07 14:49:13 +090013#include <linker_lists.h>
14
Simon Glass0040b942014-07-23 06:55:17 -060015/**
16 * struct driver_info - Information required to instantiate a device
17 *
Simon Glass97f3ee32015-07-06 12:54:22 -060018 * NOTE: Avoid using this except in extreme circumstances, where device tree
19 * is not feasible (e.g. serial driver in SPL where <8KB of SRAM is
20 * available). U-Boot's driver model uses device tree for configuration.
21 *
Masahiro Yamada81b4e752014-09-28 22:52:24 +090022 * @name: Driver name
Simon Glass0040b942014-07-23 06:55:17 -060023 * @platdata: Driver-specific platform data
Simon Glass9fa28192016-07-04 11:58:18 -060024 * @platdata_size: Size of platform data structure
Simon Glasse41651f2020-10-03 11:31:35 -060025 * @parent_idx: Index of the parent driver_info structure
Simon Glass0040b942014-07-23 06:55:17 -060026 */
Simon Glass6494d702014-02-26 15:59:18 -070027struct driver_info {
Simon Glass0040b942014-07-23 06:55:17 -060028 const char *name;
29 const void *platdata;
Simon Glass9fa28192016-07-04 11:58:18 -060030#if CONFIG_IS_ENABLED(OF_PLATDATA)
Simon Glasse41651f2020-10-03 11:31:35 -060031 unsigned short platdata_size;
32 short parent_idx;
Simon Glass9fa28192016-07-04 11:58:18 -060033#endif
Simon Glass6494d702014-02-26 15:59:18 -070034};
35
Simon Glasse41651f2020-10-03 11:31:35 -060036#if CONFIG_IS_ENABLED(OF_PLATDATA)
37#define driver_info_parent_id(driver_info) driver_info->parent_idx
38#else
39#define driver_info_parent_id(driver_info) (-1)
40#endif
41
Simon Glass97f3ee32015-07-06 12:54:22 -060042/**
Simon Glassa294ead2020-10-03 11:31:33 -060043 * driver_rt - runtime information set up by U-Boot
44 *
45 * There is one of these for every driver_info in the linker list, indexed by
46 * the driver_info idx value.
47 *
48 * @dev: Device created from this idx
49 */
50struct driver_rt {
51 struct udevice *dev;
52};
53
54/**
Simon Glass97f3ee32015-07-06 12:54:22 -060055 * NOTE: Avoid using these except in extreme circumstances, where device tree
56 * is not feasible (e.g. serial driver in SPL where <8KB of SRAM is
57 * available). U-Boot's driver model uses device tree for configuration.
58 */
Simon Glass6494d702014-02-26 15:59:18 -070059#define U_BOOT_DEVICE(__name) \
60 ll_entry_declare(struct driver_info, __name, driver_info)
61
Simon Glass10778392014-10-01 19:57:21 -060062/* Declare a list of devices. The argument is a driver_info[] array */
63#define U_BOOT_DEVICES(__name) \
64 ll_entry_declare_list(struct driver_info, __name, driver_info)
65
Simon Glass3c140832020-10-03 09:25:20 -060066/**
67 * Get a pointer to a given device info given its name
68 *
69 * With the declaration U_BOOT_DEVICE(name), DM_GET_DEVICE(name) will return a
70 * pointer to the struct driver_info created by that declaration.
71 *
72 * if OF_PLATDATA is enabled, from this it is possible to use the @dev member of
73 * struct driver_info to find the device pointer itself.
74 *
75 * TODO(sjg@chromium.org): U_BOOT_DEVICE() tells U-Boot to create a device, so
76 * the naming seems sensible, but DM_GET_DEVICE() is a bit of misnomer, since it
77 * finds the driver_info record, not the device.
78 *
79 * @__name: Driver name (C identifier, not a string. E.g. gpio7_at_ff7e0000)
80 * @return struct driver_info * to the driver that created the device
81 */
Walter Lozanofed0f892020-06-25 01:10:11 -030082#define DM_GET_DEVICE(__name) \
83 ll_entry_get(struct driver_info, __name, driver_info)
84
85/**
86 * dm_populate_phandle_data() - Populates phandle data in platda
87 *
88 * This populates phandle data with an U_BOOT_DEVICE entry get by
89 * DM_GET_DEVICE. The implementation of this function will be done
90 * by dtoc when parsing dtb.
91 */
92void dm_populate_phandle_data(void);
Simon Glass6494d702014-02-26 15:59:18 -070093#endif