Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
Simon Glass | dd6ab88 | 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 | dd6ab88 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 8 | */ |
| 9 | |
| 10 | #ifndef _DM_PLATDATA_H |
| 11 | #define _DM_PLATDATA_H |
| 12 | |
Masahiro Yamada | 63b3a8f | 2014-10-07 14:49:13 +0900 | [diff] [blame] | 13 | #include <linker_lists.h> |
| 14 | |
Simon Glass | cebcebb | 2014-07-23 06:55:17 -0600 | [diff] [blame] | 15 | /** |
| 16 | * struct driver_info - Information required to instantiate a device |
| 17 | * |
Simon Glass | 8a42cbf | 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 | 191fa3b | 2014-09-28 22:52:24 +0900 | [diff] [blame] | 22 | * @name: Driver name |
Simon Glass | cebcebb | 2014-07-23 06:55:17 -0600 | [diff] [blame] | 23 | * @platdata: Driver-specific platform data |
Simon Glass | afbf9b8 | 2016-07-04 11:58:18 -0600 | [diff] [blame] | 24 | * @platdata_size: Size of platform data structure |
Walter Lozano | ffc41b0 | 2020-06-25 01:10:11 -0300 | [diff] [blame^] | 25 | * @dev: Device created from this structure data |
Simon Glass | cebcebb | 2014-07-23 06:55:17 -0600 | [diff] [blame] | 26 | */ |
Simon Glass | dd6ab88 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 27 | struct driver_info { |
Simon Glass | cebcebb | 2014-07-23 06:55:17 -0600 | [diff] [blame] | 28 | const char *name; |
| 29 | const void *platdata; |
Simon Glass | afbf9b8 | 2016-07-04 11:58:18 -0600 | [diff] [blame] | 30 | #if CONFIG_IS_ENABLED(OF_PLATDATA) |
| 31 | uint platdata_size; |
Walter Lozano | ffc41b0 | 2020-06-25 01:10:11 -0300 | [diff] [blame^] | 32 | struct udevice *dev; |
Simon Glass | afbf9b8 | 2016-07-04 11:58:18 -0600 | [diff] [blame] | 33 | #endif |
Simon Glass | dd6ab88 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 34 | }; |
| 35 | |
Simon Glass | 8a42cbf | 2015-07-06 12:54:22 -0600 | [diff] [blame] | 36 | /** |
| 37 | * NOTE: Avoid using these except in extreme circumstances, where device tree |
| 38 | * is not feasible (e.g. serial driver in SPL where <8KB of SRAM is |
| 39 | * available). U-Boot's driver model uses device tree for configuration. |
| 40 | */ |
Simon Glass | dd6ab88 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 41 | #define U_BOOT_DEVICE(__name) \ |
| 42 | ll_entry_declare(struct driver_info, __name, driver_info) |
| 43 | |
Simon Glass | acf79bd | 2014-10-01 19:57:21 -0600 | [diff] [blame] | 44 | /* Declare a list of devices. The argument is a driver_info[] array */ |
| 45 | #define U_BOOT_DEVICES(__name) \ |
| 46 | ll_entry_declare_list(struct driver_info, __name, driver_info) |
| 47 | |
Walter Lozano | ffc41b0 | 2020-06-25 01:10:11 -0300 | [diff] [blame^] | 48 | /* Get a pointer to a given driver */ |
| 49 | #define DM_GET_DEVICE(__name) \ |
| 50 | ll_entry_get(struct driver_info, __name, driver_info) |
| 51 | |
| 52 | /** |
| 53 | * dm_populate_phandle_data() - Populates phandle data in platda |
| 54 | * |
| 55 | * This populates phandle data with an U_BOOT_DEVICE entry get by |
| 56 | * DM_GET_DEVICE. The implementation of this function will be done |
| 57 | * by dtoc when parsing dtb. |
| 58 | */ |
| 59 | void dm_populate_phandle_data(void); |
Simon Glass | dd6ab88 | 2014-02-26 15:59:18 -0700 | [diff] [blame] | 60 | #endif |