blob: b73aa33093aad78ddd67a0e9f9784989a4fccc8b [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 * Marek Vasut <marex@denx.de>
7 *
8 * SPDX-License-Identifier: GPL-2.0+
9 */
10
11#ifndef _DM_PLATDATA_H
12#define _DM_PLATDATA_H
13
Masahiro Yamada42c23dd2014-10-07 14:49:13 +090014#include <linker_lists.h>
15
Simon Glass0040b942014-07-23 06:55:17 -060016/**
17 * struct driver_info - Information required to instantiate a device
18 *
Simon Glass97f3ee32015-07-06 12:54:22 -060019 * NOTE: Avoid using this except in extreme circumstances, where device tree
20 * is not feasible (e.g. serial driver in SPL where <8KB of SRAM is
21 * available). U-Boot's driver model uses device tree for configuration.
22 *
Masahiro Yamada81b4e752014-09-28 22:52:24 +090023 * @name: Driver name
Simon Glass0040b942014-07-23 06:55:17 -060024 * @platdata: Driver-specific platform data
Simon Glass9fa28192016-07-04 11:58:18 -060025 * @platdata_size: Size of platform data 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)
31 uint platdata_size;
32#endif
Simon Glass6494d702014-02-26 15:59:18 -070033};
34
Simon Glass97f3ee32015-07-06 12:54:22 -060035/**
36 * NOTE: Avoid using these except in extreme circumstances, where device tree
37 * is not feasible (e.g. serial driver in SPL where <8KB of SRAM is
38 * available). U-Boot's driver model uses device tree for configuration.
39 */
Simon Glass6494d702014-02-26 15:59:18 -070040#define U_BOOT_DEVICE(__name) \
41 ll_entry_declare(struct driver_info, __name, driver_info)
42
Simon Glass10778392014-10-01 19:57:21 -060043/* Declare a list of devices. The argument is a driver_info[] array */
44#define U_BOOT_DEVICES(__name) \
45 ll_entry_declare_list(struct driver_info, __name, driver_info)
46
Simon Glass6494d702014-02-26 15:59:18 -070047#endif