Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
Simon Glass | 6494d70 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 2 | /* |
| 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 Glass | 6494d70 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 8 | */ |
| 9 | |
| 10 | #ifndef _DM_PLATDATA_H |
| 11 | #define _DM_PLATDATA_H |
| 12 | |
Masahiro Yamada | 42c23dd | 2014-10-07 14:49:13 +0900 | [diff] [blame] | 13 | #include <linker_lists.h> |
| 14 | |
Simon Glass | 0040b94 | 2014-07-23 06:55:17 -0600 | [diff] [blame] | 15 | /** |
| 16 | * struct driver_info - Information required to instantiate a device |
| 17 | * |
Simon Glass | 97f3ee3 | 2015-07-06 12:54:22 -0600 | [diff] [blame] | 18 | * 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 Yamada | 81b4e75 | 2014-09-28 22:52:24 +0900 | [diff] [blame] | 22 | * @name: Driver name |
Simon Glass | caa4daa | 2020-12-03 16:55:18 -0700 | [diff] [blame] | 23 | * @plat: Driver-specific platform data |
Simon Glass | 4f50086 | 2020-12-03 16:55:19 -0700 | [diff] [blame] | 24 | * @plat_size: Size of platform data structure |
Simon Glass | e41651f | 2020-10-03 11:31:35 -0600 | [diff] [blame] | 25 | * @parent_idx: Index of the parent driver_info structure |
Simon Glass | 0040b94 | 2014-07-23 06:55:17 -0600 | [diff] [blame] | 26 | */ |
Simon Glass | 6494d70 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 27 | struct driver_info { |
Simon Glass | 0040b94 | 2014-07-23 06:55:17 -0600 | [diff] [blame] | 28 | const char *name; |
Simon Glass | caa4daa | 2020-12-03 16:55:18 -0700 | [diff] [blame] | 29 | const void *plat; |
Simon Glass | 9fa2819 | 2016-07-04 11:58:18 -0600 | [diff] [blame] | 30 | #if CONFIG_IS_ENABLED(OF_PLATDATA) |
Simon Glass | 4f50086 | 2020-12-03 16:55:19 -0700 | [diff] [blame] | 31 | unsigned short plat_size; |
Simon Glass | e41651f | 2020-10-03 11:31:35 -0600 | [diff] [blame] | 32 | short parent_idx; |
Simon Glass | 9fa2819 | 2016-07-04 11:58:18 -0600 | [diff] [blame] | 33 | #endif |
Simon Glass | 6494d70 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 34 | }; |
| 35 | |
Simon Glass | e41651f | 2020-10-03 11:31:35 -0600 | [diff] [blame] | 36 | #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 Glass | 97f3ee3 | 2015-07-06 12:54:22 -0600 | [diff] [blame] | 42 | /** |
Patrick Delaunay | ca4ca43 | 2022-01-12 10:53:45 +0100 | [diff] [blame^] | 43 | * struct driver_rt - runtime information set up by U-Boot |
Simon Glass | a294ead | 2020-10-03 11:31:33 -0600 | [diff] [blame] | 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 | */ |
| 50 | struct driver_rt { |
| 51 | struct udevice *dev; |
| 52 | }; |
| 53 | |
Patrick Delaunay | ca4ca43 | 2022-01-12 10:53:45 +0100 | [diff] [blame^] | 54 | /* |
Simon Glass | 97f3ee3 | 2015-07-06 12:54:22 -0600 | [diff] [blame] | 55 | * 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 Glass | cb43ac1 | 2020-10-03 11:31:41 -0600 | [diff] [blame] | 58 | * |
Simon Glass | 20e442a | 2020-12-28 20:34:54 -0700 | [diff] [blame] | 59 | * When of-platdata is in use, U_BOOT_DRVINFO() cannot be used outside of the |
Simon Glass | caa4daa | 2020-12-03 16:55:18 -0700 | [diff] [blame] | 60 | * dt-plat.c file created by dtoc |
Simon Glass | 97f3ee3 | 2015-07-06 12:54:22 -0600 | [diff] [blame] | 61 | */ |
Simon Glass | f31fa99 | 2020-12-28 20:35:01 -0700 | [diff] [blame] | 62 | #if CONFIG_IS_ENABLED(OF_PLATDATA) && !defined(DT_PLAT_C) |
Simon Glass | 20e442a | 2020-12-28 20:34:54 -0700 | [diff] [blame] | 63 | #define U_BOOT_DRVINFO(__name) _Static_assert(false, \ |
| 64 | "Cannot use U_BOOT_DRVINFO with of-platdata. Please use devicetree instead") |
Simon Glass | cb43ac1 | 2020-10-03 11:31:41 -0600 | [diff] [blame] | 65 | #else |
Simon Glass | 20e442a | 2020-12-28 20:34:54 -0700 | [diff] [blame] | 66 | #define U_BOOT_DRVINFO(__name) \ |
Simon Glass | 6494d70 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 67 | ll_entry_declare(struct driver_info, __name, driver_info) |
Simon Glass | cb43ac1 | 2020-10-03 11:31:41 -0600 | [diff] [blame] | 68 | #endif |
Simon Glass | 6494d70 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 69 | |
Simon Glass | 1077839 | 2014-10-01 19:57:21 -0600 | [diff] [blame] | 70 | /* Declare a list of devices. The argument is a driver_info[] array */ |
Simon Glass | 20e442a | 2020-12-28 20:34:54 -0700 | [diff] [blame] | 71 | #define U_BOOT_DRVINFOS(__name) \ |
Simon Glass | 1077839 | 2014-10-01 19:57:21 -0600 | [diff] [blame] | 72 | ll_entry_declare_list(struct driver_info, __name, driver_info) |
| 73 | |
Simon Glass | 6494d70 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 74 | #endif |