blob: c972fa6936f9441d05c196a1115911eeb4a48302 [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 Glass0040b942014-07-23 06:55:17 -060025 */
Simon Glass6494d702014-02-26 15:59:18 -070026struct driver_info {
Simon Glass0040b942014-07-23 06:55:17 -060027 const char *name;
28 const void *platdata;
Simon Glass9fa28192016-07-04 11:58:18 -060029#if CONFIG_IS_ENABLED(OF_PLATDATA)
30 uint platdata_size;
31#endif
Simon Glass6494d702014-02-26 15:59:18 -070032};
33
Simon Glass97f3ee32015-07-06 12:54:22 -060034/**
35 * NOTE: Avoid using these except in extreme circumstances, where device tree
36 * is not feasible (e.g. serial driver in SPL where <8KB of SRAM is
37 * available). U-Boot's driver model uses device tree for configuration.
38 */
Simon Glass6494d702014-02-26 15:59:18 -070039#define U_BOOT_DEVICE(__name) \
40 ll_entry_declare(struct driver_info, __name, driver_info)
41
Simon Glass10778392014-10-01 19:57:21 -060042/* Declare a list of devices. The argument is a driver_info[] array */
43#define U_BOOT_DEVICES(__name) \
44 ll_entry_declare_list(struct driver_info, __name, driver_info)
45
Simon Glass6494d702014-02-26 15:59:18 -070046#endif