blob: 47ba8aab7aebeec95359fc88644e2b07ae9d9c01 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Simon Glassdd6ab882014-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 Glassdd6ab882014-02-26 15:59:18 -07008 */
9
10#ifndef _DM_PLATDATA_H
11#define _DM_PLATDATA_H
12
Masahiro Yamada63b3a8f2014-10-07 14:49:13 +090013#include <linker_lists.h>
14
Simon Glasscebcebb2014-07-23 06:55:17 -060015/**
16 * struct driver_info - Information required to instantiate a device
17 *
Simon Glass8a42cbf2015-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 Yamada191fa3b2014-09-28 22:52:24 +090022 * @name: Driver name
Simon Glass71fa5b42020-12-03 16:55:18 -070023 * @plat: Driver-specific platform data
Simon Glass39edb952020-12-03 16:55:19 -070024 * @plat_size: Size of platform data structure
Simon Glass36b15e22020-10-03 11:31:35 -060025 * @parent_idx: Index of the parent driver_info structure
Simon Glasscebcebb2014-07-23 06:55:17 -060026 */
Simon Glassdd6ab882014-02-26 15:59:18 -070027struct driver_info {
Simon Glasscebcebb2014-07-23 06:55:17 -060028 const char *name;
Simon Glass71fa5b42020-12-03 16:55:18 -070029 const void *plat;
Simon Glassafbf9b82016-07-04 11:58:18 -060030#if CONFIG_IS_ENABLED(OF_PLATDATA)
Simon Glass39edb952020-12-03 16:55:19 -070031 unsigned short plat_size;
Simon Glass36b15e22020-10-03 11:31:35 -060032 short parent_idx;
Simon Glassafbf9b82016-07-04 11:58:18 -060033#endif
Simon Glassdd6ab882014-02-26 15:59:18 -070034};
35
Simon Glass36b15e22020-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 Glass8a42cbf2015-07-06 12:54:22 -060042/**
Patrick Delaunay6750bb32022-01-12 10:53:45 +010043 * struct driver_rt - runtime information set up by U-Boot
Simon Glasscfd6a002020-10-03 11:31:33 -060044 *
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
Patrick Delaunay6750bb32022-01-12 10:53:45 +010054/*
Simon Glass8a42cbf2015-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.
Simon Glass4c73d7b2020-10-03 11:31:41 -060058 *
Simon Glass1d8364a2020-12-28 20:34:54 -070059 * When of-platdata is in use, U_BOOT_DRVINFO() cannot be used outside of the
Simon Glass71fa5b42020-12-03 16:55:18 -070060 * dt-plat.c file created by dtoc
Simon Glass8a42cbf2015-07-06 12:54:22 -060061 */
Simon Glassbeddd7a2020-12-28 20:35:01 -070062#if CONFIG_IS_ENABLED(OF_PLATDATA) && !defined(DT_PLAT_C)
Simon Glass1d8364a2020-12-28 20:34:54 -070063#define U_BOOT_DRVINFO(__name) _Static_assert(false, \
64 "Cannot use U_BOOT_DRVINFO with of-platdata. Please use devicetree instead")
Simon Glass4c73d7b2020-10-03 11:31:41 -060065#else
Simon Glass1d8364a2020-12-28 20:34:54 -070066#define U_BOOT_DRVINFO(__name) \
Simon Glassdd6ab882014-02-26 15:59:18 -070067 ll_entry_declare(struct driver_info, __name, driver_info)
Simon Glass4c73d7b2020-10-03 11:31:41 -060068#endif
Simon Glassdd6ab882014-02-26 15:59:18 -070069
Simon Glassacf79bd2014-10-01 19:57:21 -060070/* Declare a list of devices. The argument is a driver_info[] array */
Simon Glass1d8364a2020-12-28 20:34:54 -070071#define U_BOOT_DRVINFOS(__name) \
Simon Glassacf79bd2014-10-01 19:57:21 -060072 ll_entry_declare_list(struct driver_info, __name, driver_info)
73
Simon Glassdd6ab882014-02-26 15:59:18 -070074#endif