dm: core: Allow getting some basic stats
[platform/kernel/u-boot.git] / include / fdtdec.h
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * Copyright (c) 2011 The Chromium OS Authors.
4  */
5
6 #ifndef __fdtdec_h
7 #define __fdtdec_h
8
9 /*
10  * This file contains convenience functions for decoding useful and
11  * enlightening information from FDTs. It is intended to be used by device
12  * drivers and board-specific code within U-Boot. It aims to reduce the
13  * amount of FDT munging required within U-Boot itself, so that driver code
14  * changes to support FDT are minimized.
15  */
16
17 #include <linux/libfdt.h>
18 #include <pci.h>
19
20 /*
21  * A typedef for a physical address. Note that fdt data is always big
22  * endian even on a litle endian machine.
23  */
24 typedef phys_addr_t fdt_addr_t;
25 typedef phys_size_t fdt_size_t;
26
27 #define FDT_ADDR_T_NONE (-1U)
28 #define FDT_SIZE_T_NONE (-1U)
29
30 #ifdef CONFIG_PHYS_64BIT
31 #define fdt_addr_to_cpu(reg) be64_to_cpu(reg)
32 #define fdt_size_to_cpu(reg) be64_to_cpu(reg)
33 #define cpu_to_fdt_addr(reg) cpu_to_be64(reg)
34 #define cpu_to_fdt_size(reg) cpu_to_be64(reg)
35 typedef fdt64_t fdt_val_t;
36 #else
37 #define fdt_addr_to_cpu(reg) be32_to_cpu(reg)
38 #define fdt_size_to_cpu(reg) be32_to_cpu(reg)
39 #define cpu_to_fdt_addr(reg) cpu_to_be32(reg)
40 #define cpu_to_fdt_size(reg) cpu_to_be32(reg)
41 typedef fdt32_t fdt_val_t;
42 #endif
43
44 /* Information obtained about memory from the FDT */
45 struct fdt_memory {
46         fdt_addr_t start;
47         fdt_addr_t end;
48 };
49
50 struct bd_info;
51
52 #ifdef CONFIG_SPL_BUILD
53 #define SPL_BUILD       1
54 #else
55 #define SPL_BUILD       0
56 #endif
57
58 /*
59  * Information about a resource. start is the first address of the resource
60  * and end is the last address (inclusive). The length of the resource will
61  * be equal to: end - start + 1.
62  */
63 struct fdt_resource {
64         fdt_addr_t start;
65         fdt_addr_t end;
66 };
67
68 enum fdt_pci_space {
69         FDT_PCI_SPACE_CONFIG = 0,
70         FDT_PCI_SPACE_IO = 0x01000000,
71         FDT_PCI_SPACE_MEM32 = 0x02000000,
72         FDT_PCI_SPACE_MEM64 = 0x03000000,
73         FDT_PCI_SPACE_MEM32_PREF = 0x42000000,
74         FDT_PCI_SPACE_MEM64_PREF = 0x43000000,
75 };
76
77 #define FDT_PCI_ADDR_CELLS      3
78 #define FDT_PCI_SIZE_CELLS      2
79 #define FDT_PCI_REG_SIZE        \
80         ((FDT_PCI_ADDR_CELLS + FDT_PCI_SIZE_CELLS) * sizeof(u32))
81
82 /*
83  * The Open Firmware spec defines PCI physical address as follows:
84  *
85  *          bits# 31 .... 24 23 .... 16 15 .... 08 07 .... 00
86  *
87  * phys.hi  cell:  npt000ss   bbbbbbbb   dddddfff   rrrrrrrr
88  * phys.mid cell:  hhhhhhhh   hhhhhhhh   hhhhhhhh   hhhhhhhh
89  * phys.lo  cell:  llllllll   llllllll   llllllll   llllllll
90  *
91  * where:
92  *
93  * n:        is 0 if the address is relocatable, 1 otherwise
94  * p:        is 1 if addressable region is prefetchable, 0 otherwise
95  * t:        is 1 if the address is aliased (for non-relocatable I/O) below 1MB
96  *           (for Memory), or below 64KB (for relocatable I/O)
97  * ss:       is the space code, denoting the address space
98  * bbbbbbbb: is the 8-bit Bus Number
99  * ddddd:    is the 5-bit Device Number
100  * fff:      is the 3-bit Function Number
101  * rrrrrrrr: is the 8-bit Register Number
102  * hhhhhhhh: is a 32-bit unsigned number
103  * llllllll: is a 32-bit unsigned number
104  */
105 struct fdt_pci_addr {
106         u32     phys_hi;
107         u32     phys_mid;
108         u32     phys_lo;
109 };
110
111 extern u8 __dtb_dt_begin[];     /* embedded device tree blob */
112 extern u8 __dtb_dt_spl_begin[]; /* embedded device tree blob for SPL/TPL */
113
114 /* Get a pointer to the embedded devicetree, if there is one, else NULL */
115 static inline u8 *dtb_dt_embedded(void)
116 {
117 #ifdef CONFIG_OF_EMBED
118 # ifdef CONFIG_SPL_BUILD
119         return __dtb_dt_spl_begin;
120 # else
121         return __dtb_dt_begin;
122 # endif
123 #else
124         return NULL;
125 #endif
126 }
127
128 /**
129  * Compute the size of a resource.
130  *
131  * @param res   the resource to operate on
132  * @return the size of the resource
133  */
134 static inline fdt_size_t fdt_resource_size(const struct fdt_resource *res)
135 {
136         return res->end - res->start + 1;
137 }
138
139 /**
140  * Compat types that we know about and for which we might have drivers.
141  * Each is named COMPAT_<dir>_<filename> where <dir> is the directory
142  * within drivers.
143  */
144 enum fdt_compat_id {
145         COMPAT_UNKNOWN,
146         COMPAT_NVIDIA_TEGRA20_EMC,      /* Tegra20 memory controller */
147         COMPAT_NVIDIA_TEGRA20_EMC_TABLE, /* Tegra20 memory timing table */
148         COMPAT_NVIDIA_TEGRA20_NAND,     /* Tegra2 NAND controller */
149         COMPAT_NVIDIA_TEGRA124_XUSB_PADCTL,
150                                         /* Tegra124 XUSB pad controller */
151         COMPAT_NVIDIA_TEGRA210_XUSB_PADCTL,
152                                         /* Tegra210 XUSB pad controller */
153         COMPAT_SAMSUNG_EXYNOS_USB_PHY,  /* Exynos phy controller for usb2.0 */
154         COMPAT_SAMSUNG_EXYNOS5_USB3_PHY,/* Exynos phy controller for usb3.0 */
155         COMPAT_SAMSUNG_EXYNOS_TMU,      /* Exynos TMU */
156         COMPAT_SAMSUNG_EXYNOS_MIPI_DSI, /* Exynos mipi dsi */
157         COMPAT_SAMSUNG_EXYNOS_DWMMC,    /* Exynos DWMMC controller */
158         COMPAT_GENERIC_SPI_FLASH,       /* Generic SPI Flash chip */
159         COMPAT_SAMSUNG_EXYNOS_SYSMMU,   /* Exynos sysmmu */
160         COMPAT_INTEL_MICROCODE,         /* Intel microcode update */
161         COMPAT_INTEL_QRK_MRC,           /* Intel Quark MRC */
162         COMPAT_ALTERA_SOCFPGA_DWMAC,    /* SoCFPGA Ethernet controller */
163         COMPAT_ALTERA_SOCFPGA_DWMMC,    /* SoCFPGA DWMMC controller */
164         COMPAT_ALTERA_SOCFPGA_DWC2USB,  /* SoCFPGA DWC2 USB controller */
165         COMPAT_INTEL_BAYTRAIL_FSP,      /* Intel Bay Trail FSP */
166         COMPAT_INTEL_BAYTRAIL_FSP_MDP,  /* Intel FSP memory-down params */
167         COMPAT_INTEL_IVYBRIDGE_FSP,     /* Intel Ivy Bridge FSP */
168         COMPAT_SUNXI_NAND,              /* SUNXI NAND controller */
169         COMPAT_ALTERA_SOCFPGA_CLK,      /* SoCFPGA Clock initialization */
170         COMPAT_ALTERA_SOCFPGA_PINCTRL_SINGLE,   /* SoCFPGA pinctrl-single */
171         COMPAT_ALTERA_SOCFPGA_H2F_BRG,          /* SoCFPGA hps2fpga bridge */
172         COMPAT_ALTERA_SOCFPGA_LWH2F_BRG,        /* SoCFPGA lwhps2fpga bridge */
173         COMPAT_ALTERA_SOCFPGA_F2H_BRG,          /* SoCFPGA fpga2hps bridge */
174         COMPAT_ALTERA_SOCFPGA_F2SDR0,           /* SoCFPGA fpga2SDRAM0 bridge */
175         COMPAT_ALTERA_SOCFPGA_F2SDR1,           /* SoCFPGA fpga2SDRAM1 bridge */
176         COMPAT_ALTERA_SOCFPGA_F2SDR2,           /* SoCFPGA fpga2SDRAM2 bridge */
177         COMPAT_ALTERA_SOCFPGA_FPGA0,            /* SOCFPGA FPGA manager */
178         COMPAT_ALTERA_SOCFPGA_NOC,              /* SOCFPGA Arria 10 NOC */
179         COMPAT_ALTERA_SOCFPGA_CLK_INIT,         /* SOCFPGA Arria 10 clk init */
180
181         COMPAT_COUNT,
182 };
183
184 #define MAX_PHANDLE_ARGS 16
185 struct fdtdec_phandle_args {
186         int node;
187         int args_count;
188         uint32_t args[MAX_PHANDLE_ARGS];
189 };
190
191 /**
192  * fdtdec_parse_phandle_with_args() - Find a node pointed by phandle in a list
193  *
194  * This function is useful to parse lists of phandles and their arguments.
195  *
196  * Example:
197  *
198  * phandle1: node1 {
199  *      #list-cells = <2>;
200  * }
201  *
202  * phandle2: node2 {
203  *      #list-cells = <1>;
204  * }
205  *
206  * node3 {
207  *      list = <&phandle1 1 2 &phandle2 3>;
208  * }
209  *
210  * To get a device_node of the `node2' node you may call this:
211  * fdtdec_parse_phandle_with_args(blob, node3, "list", "#list-cells", 0, 1,
212  *                                &args);
213  *
214  * (This function is a modified version of __of_parse_phandle_with_args() from
215  * Linux 3.18)
216  *
217  * @blob:       Pointer to device tree
218  * @src_node:   Offset of device tree node containing a list
219  * @list_name:  property name that contains a list
220  * @cells_name: property name that specifies the phandles' arguments count,
221  *              or NULL to use @cells_count
222  * @cells_count: Cell count to use if @cells_name is NULL
223  * @index:      index of a phandle to parse out
224  * @out_args:   optional pointer to output arguments structure (will be filled)
225  * @return 0 on success (with @out_args filled out if not NULL), -ENOENT if
226  *      @list_name does not exist, a phandle was not found, @cells_name
227  *      could not be found, the arguments were truncated or there were too
228  *      many arguments.
229  *
230  */
231 int fdtdec_parse_phandle_with_args(const void *blob, int src_node,
232                                    const char *list_name,
233                                    const char *cells_name,
234                                    int cell_count, int index,
235                                    struct fdtdec_phandle_args *out_args);
236
237 /**
238  * Find the next numbered alias for a peripheral. This is used to enumerate
239  * all the peripherals of a certain type.
240  *
241  * Do the first call with *upto = 0. Assuming /aliases/<name>0 exists then
242  * this function will return a pointer to the node the alias points to, and
243  * then update *upto to 1. Next time you call this function, the next node
244  * will be returned.
245  *
246  * All nodes returned will match the compatible ID, as it is assumed that
247  * all peripherals use the same driver.
248  *
249  * @param blob          FDT blob to use
250  * @param name          Root name of alias to search for
251  * @param id            Compatible ID to look for
252  * @return offset of next compatible node, or -FDT_ERR_NOTFOUND if no more
253  */
254 int fdtdec_next_alias(const void *blob, const char *name,
255                 enum fdt_compat_id id, int *upto);
256
257 /**
258  * Find the compatible ID for a given node.
259  *
260  * Generally each node has at least one compatible string attached to it.
261  * This function looks through our list of known compatible strings and
262  * returns the corresponding ID which matches the compatible string.
263  *
264  * @param blob          FDT blob to use
265  * @param node          Node containing compatible string to find
266  * @return compatible ID, or COMPAT_UNKNOWN if we cannot find a match
267  */
268 enum fdt_compat_id fdtdec_lookup(const void *blob, int node);
269
270 /**
271  * Find the next compatible node for a peripheral.
272  *
273  * Do the first call with node = 0. This function will return a pointer to
274  * the next compatible node. Next time you call this function, pass the
275  * value returned, and the next node will be provided.
276  *
277  * @param blob          FDT blob to use
278  * @param node          Start node for search
279  * @param id            Compatible ID to look for (enum fdt_compat_id)
280  * @return offset of next compatible node, or -FDT_ERR_NOTFOUND if no more
281  */
282 int fdtdec_next_compatible(const void *blob, int node,
283                 enum fdt_compat_id id);
284
285 /**
286  * Find the next compatible subnode for a peripheral.
287  *
288  * Do the first call with node set to the parent and depth = 0. This
289  * function will return the offset of the next compatible node. Next time
290  * you call this function, pass the node value returned last time, with
291  * depth unchanged, and the next node will be provided.
292  *
293  * @param blob          FDT blob to use
294  * @param node          Start node for search
295  * @param id            Compatible ID to look for (enum fdt_compat_id)
296  * @param depthp        Current depth (set to 0 before first call)
297  * @return offset of next compatible node, or -FDT_ERR_NOTFOUND if no more
298  */
299 int fdtdec_next_compatible_subnode(const void *blob, int node,
300                 enum fdt_compat_id id, int *depthp);
301
302 /*
303  * Look up an address property in a node and return the parsed address, and
304  * optionally the parsed size.
305  *
306  * This variant assumes a known and fixed number of cells are used to
307  * represent the address and size.
308  *
309  * You probably don't want to use this function directly except to parse
310  * non-standard properties, and never to parse the "reg" property. Instead,
311  * use one of the "auto" variants below, which automatically honor the
312  * #address-cells and #size-cells properties in the parent node.
313  *
314  * @param blob  FDT blob
315  * @param node  node to examine
316  * @param prop_name     name of property to find
317  * @param index which address to retrieve from a list of addresses. Often 0.
318  * @param na    the number of cells used to represent an address
319  * @param ns    the number of cells used to represent a size
320  * @param sizep a pointer to store the size into. Use NULL if not required
321  * @param translate     Indicates whether to translate the returned value
322  *                      using the parent node's ranges property.
323  * @return address, if found, or FDT_ADDR_T_NONE if not
324  */
325 fdt_addr_t fdtdec_get_addr_size_fixed(const void *blob, int node,
326                 const char *prop_name, int index, int na, int ns,
327                 fdt_size_t *sizep, bool translate);
328
329 /*
330  * Look up an address property in a node and return the parsed address, and
331  * optionally the parsed size.
332  *
333  * This variant automatically determines the number of cells used to represent
334  * the address and size by parsing the provided parent node's #address-cells
335  * and #size-cells properties.
336  *
337  * @param blob  FDT blob
338  * @param parent        parent node of @node
339  * @param node  node to examine
340  * @param prop_name     name of property to find
341  * @param index which address to retrieve from a list of addresses. Often 0.
342  * @param sizep a pointer to store the size into. Use NULL if not required
343  * @param translate     Indicates whether to translate the returned value
344  *                      using the parent node's ranges property.
345  * @return address, if found, or FDT_ADDR_T_NONE if not
346  */
347 fdt_addr_t fdtdec_get_addr_size_auto_parent(const void *blob, int parent,
348                 int node, const char *prop_name, int index, fdt_size_t *sizep,
349                 bool translate);
350
351 /*
352  * Look up an address property in a node and return the parsed address, and
353  * optionally the parsed size.
354  *
355  * This variant automatically determines the number of cells used to represent
356  * the address and size by parsing the parent node's #address-cells
357  * and #size-cells properties. The parent node is automatically found.
358  *
359  * The automatic parent lookup implemented by this function is slow.
360  * Consequently, fdtdec_get_addr_size_auto_parent() should be used where
361  * possible.
362  *
363  * @param blob  FDT blob
364  * @param parent        parent node of @node
365  * @param node  node to examine
366  * @param prop_name     name of property to find
367  * @param index which address to retrieve from a list of addresses. Often 0.
368  * @param sizep a pointer to store the size into. Use NULL if not required
369  * @param translate     Indicates whether to translate the returned value
370  *                      using the parent node's ranges property.
371  * @return address, if found, or FDT_ADDR_T_NONE if not
372  */
373 fdt_addr_t fdtdec_get_addr_size_auto_noparent(const void *blob, int node,
374                 const char *prop_name, int index, fdt_size_t *sizep,
375                 bool translate);
376
377 /*
378  * Look up an address property in a node and return the parsed address.
379  *
380  * This variant hard-codes the number of cells used to represent the address
381  * and size based on sizeof(fdt_addr_t) and sizeof(fdt_size_t). It also
382  * always returns the first address value in the property (index 0).
383  *
384  * Use of this function is not recommended due to the hard-coding of cell
385  * counts. There is no programmatic validation that these hard-coded values
386  * actually match the device tree content in any way at all. This assumption
387  * can be satisfied by manually ensuring CONFIG_PHYS_64BIT is appropriately
388  * set in the U-Boot build and exercising strict control over DT content to
389  * ensure use of matching #address-cells/#size-cells properties. However, this
390  * approach is error-prone; those familiar with DT will not expect the
391  * assumption to exist, and could easily invalidate it. If the assumption is
392  * invalidated, this function will not report the issue, and debugging will
393  * be required. Instead, use fdtdec_get_addr_size_auto_parent().
394  *
395  * @param blob  FDT blob
396  * @param node  node to examine
397  * @param prop_name     name of property to find
398  * @return address, if found, or FDT_ADDR_T_NONE if not
399  */
400 fdt_addr_t fdtdec_get_addr(const void *blob, int node,
401                 const char *prop_name);
402
403 /*
404  * Look up an address property in a node and return the parsed address, and
405  * optionally the parsed size.
406  *
407  * This variant hard-codes the number of cells used to represent the address
408  * and size based on sizeof(fdt_addr_t) and sizeof(fdt_size_t). It also
409  * always returns the first address value in the property (index 0).
410  *
411  * Use of this function is not recommended due to the hard-coding of cell
412  * counts. There is no programmatic validation that these hard-coded values
413  * actually match the device tree content in any way at all. This assumption
414  * can be satisfied by manually ensuring CONFIG_PHYS_64BIT is appropriately
415  * set in the U-Boot build and exercising strict control over DT content to
416  * ensure use of matching #address-cells/#size-cells properties. However, this
417  * approach is error-prone; those familiar with DT will not expect the
418  * assumption to exist, and could easily invalidate it. If the assumption is
419  * invalidated, this function will not report the issue, and debugging will
420  * be required. Instead, use fdtdec_get_addr_size_auto_parent().
421  *
422  * @param blob  FDT blob
423  * @param node  node to examine
424  * @param prop_name     name of property to find
425  * @param sizep a pointer to store the size into. Use NULL if not required
426  * @return address, if found, or FDT_ADDR_T_NONE if not
427  */
428 fdt_addr_t fdtdec_get_addr_size(const void *blob, int node,
429                 const char *prop_name, fdt_size_t *sizep);
430
431 /**
432  * Look at the compatible property of a device node that represents a PCI
433  * device and extract pci vendor id and device id from it.
434  *
435  * @param blob          FDT blob
436  * @param node          node to examine
437  * @param vendor        vendor id of the pci device
438  * @param device        device id of the pci device
439  * @return 0 if ok, negative on error
440  */
441 int fdtdec_get_pci_vendev(const void *blob, int node,
442                 u16 *vendor, u16 *device);
443
444 /**
445  * Look at the pci address of a device node that represents a PCI device
446  * and return base address of the pci device's registers.
447  *
448  * @param dev           device to examine
449  * @param addr          pci address in the form of fdt_pci_addr
450  * @param bar           returns base address of the pci device's registers
451  * @return 0 if ok, negative on error
452  */
453 int fdtdec_get_pci_bar32(const struct udevice *dev, struct fdt_pci_addr *addr,
454                          u32 *bar);
455
456 /**
457  * Look at the bus range property of a device node and return the pci bus
458  * range for this node.
459  * The property must hold one fdt_pci_addr with a length.
460  * @param blob          FDT blob
461  * @param node          node to examine
462  * @param res           the resource structure to return the bus range
463  * @return 0 if ok, negative on error
464  */
465
466 int fdtdec_get_pci_bus_range(const void *blob, int node,
467                              struct fdt_resource *res);
468
469 /**
470  * Look up a 32-bit integer property in a node and return it. The property
471  * must have at least 4 bytes of data. The value of the first cell is
472  * returned.
473  *
474  * @param blob  FDT blob
475  * @param node  node to examine
476  * @param prop_name     name of property to find
477  * @param default_val   default value to return if the property is not found
478  * @return integer value, if found, or default_val if not
479  */
480 s32 fdtdec_get_int(const void *blob, int node, const char *prop_name,
481                 s32 default_val);
482
483 /**
484  * Unsigned version of fdtdec_get_int. The property must have at least
485  * 4 bytes of data. The value of the first cell is returned.
486  *
487  * @param blob  FDT blob
488  * @param node  node to examine
489  * @param prop_name     name of property to find
490  * @param default_val   default value to return if the property is not found
491  * @return unsigned integer value, if found, or default_val if not
492  */
493 unsigned int fdtdec_get_uint(const void *blob, int node, const char *prop_name,
494                         unsigned int default_val);
495
496 /**
497  * Get a variable-sized number from a property
498  *
499  * This reads a number from one or more cells.
500  *
501  * @param ptr   Pointer to property
502  * @param cells Number of cells containing the number
503  * @return the value in the cells
504  */
505 u64 fdtdec_get_number(const fdt32_t *ptr, unsigned int cells);
506
507 /**
508  * Look up a 64-bit integer property in a node and return it. The property
509  * must have at least 8 bytes of data (2 cells). The first two cells are
510  * concatenated to form a 8 bytes value, where the first cell is top half and
511  * the second cell is bottom half.
512  *
513  * @param blob  FDT blob
514  * @param node  node to examine
515  * @param prop_name     name of property to find
516  * @param default_val   default value to return if the property is not found
517  * @return integer value, if found, or default_val if not
518  */
519 uint64_t fdtdec_get_uint64(const void *blob, int node, const char *prop_name,
520                 uint64_t default_val);
521
522 /**
523  * Checks whether a node is enabled.
524  * This looks for a 'status' property. If this exists, then returns 1 if
525  * the status is 'ok' and 0 otherwise. If there is no status property,
526  * it returns 1 on the assumption that anything mentioned should be enabled
527  * by default.
528  *
529  * @param blob  FDT blob
530  * @param node  node to examine
531  * @return integer value 0 (not enabled) or 1 (enabled)
532  */
533 int fdtdec_get_is_enabled(const void *blob, int node);
534
535 /**
536  * Make sure we have a valid fdt available to control U-Boot.
537  *
538  * If not, a message is printed to the console if the console is ready.
539  *
540  * @return 0 if all ok, -1 if not
541  */
542 int fdtdec_prepare_fdt(void);
543
544 /**
545  * Checks that we have a valid fdt available to control U-Boot.
546
547  * However, if not then for the moment nothing is done, since this function
548  * is called too early to panic().
549  *
550  * @returns 0
551  */
552 int fdtdec_check_fdt(void);
553
554 /**
555  * Find the nodes for a peripheral and return a list of them in the correct
556  * order. This is used to enumerate all the peripherals of a certain type.
557  *
558  * To use this, optionally set up a /aliases node with alias properties for
559  * a peripheral. For example, for usb you could have:
560  *
561  * aliases {
562  *              usb0 = "/ehci@c5008000";
563  *              usb1 = "/ehci@c5000000";
564  * };
565  *
566  * Pass "usb" as the name to this function and will return a list of two
567  * nodes offsets: /ehci@c5008000 and ehci@c5000000.
568  *
569  * All nodes returned will match the compatible ID, as it is assumed that
570  * all peripherals use the same driver.
571  *
572  * If no alias node is found, then the node list will be returned in the
573  * order found in the fdt. If the aliases mention a node which doesn't
574  * exist, then this will be ignored. If nodes are found with no aliases,
575  * they will be added in any order.
576  *
577  * If there is a gap in the aliases, then this function return a 0 node at
578  * that position. The return value will also count these gaps.
579  *
580  * This function checks node properties and will not return nodes which are
581  * marked disabled (status = "disabled").
582  *
583  * @param blob          FDT blob to use
584  * @param name          Root name of alias to search for
585  * @param id            Compatible ID to look for
586  * @param node_list     Place to put list of found nodes
587  * @param maxcount      Maximum number of nodes to find
588  * @return number of nodes found on success, FDT_ERR_... on error
589  */
590 int fdtdec_find_aliases_for_id(const void *blob, const char *name,
591                         enum fdt_compat_id id, int *node_list, int maxcount);
592
593 /*
594  * This function is similar to fdtdec_find_aliases_for_id() except that it
595  * adds to the node_list that is passed in. Any 0 elements are considered
596  * available for allocation - others are considered already used and are
597  * skipped.
598  *
599  * You can use this by calling fdtdec_find_aliases_for_id() with an
600  * uninitialised array, then setting the elements that are returned to -1,
601  * say, then calling this function, perhaps with a different compat id.
602  * Any elements you get back that are >0 are new nodes added by the call
603  * to this function.
604  *
605  * Note that if you have some nodes with aliases and some without, you are
606  * sailing close to the wind. The call to fdtdec_find_aliases_for_id() with
607  * one compat_id may fill in positions for which you have aliases defined
608  * for another compat_id. When you later call *this* function with the second
609  * compat_id, the alias positions may already be used. A debug warning may
610  * be generated in this case, but it is safest to define aliases for all
611  * nodes when you care about the ordering.
612  */
613 int fdtdec_add_aliases_for_id(const void *blob, const char *name,
614                         enum fdt_compat_id id, int *node_list, int maxcount);
615
616 /**
617  * Get the alias sequence number of a node
618  *
619  * This works out whether a node is pointed to by an alias, and if so, the
620  * sequence number of that alias. Aliases are of the form <base><num> where
621  * <num> is the sequence number. For example spi2 would be sequence number
622  * 2.
623  *
624  * @param blob          Device tree blob (if NULL, then error is returned)
625  * @param base          Base name for alias (before the underscore)
626  * @param node          Node to look up
627  * @param seqp          This is set to the sequence number if one is found,
628  *                      but otherwise the value is left alone
629  * @return 0 if a sequence was found, -ve if not
630  */
631 int fdtdec_get_alias_seq(const void *blob, const char *base, int node,
632                          int *seqp);
633
634 /**
635  * Get the highest alias number for susbystem.
636  *
637  * It parses all aliases and find out highest recorded alias for subsystem.
638  * Aliases are of the form <base><num> where <num> is the sequence number.
639  *
640  * @param blob          Device tree blob (if NULL, then error is returned)
641  * @param base          Base name for alias susbystem (before the number)
642  *
643  * @return 0 highest alias ID, -1 if not found
644  */
645 int fdtdec_get_alias_highest_id(const void *blob, const char *base);
646
647 /**
648  * Get a property from the /chosen node
649  *
650  * @param blob          Device tree blob (if NULL, then NULL is returned)
651  * @param name          Property name to look up
652  * @return Value of property, or NULL if it does not exist
653  */
654 const char *fdtdec_get_chosen_prop(const void *blob, const char *name);
655
656 /**
657  * Get the offset of the given /chosen node
658  *
659  * This looks up a property in /chosen containing the path to another node,
660  * then finds the offset of that node.
661  *
662  * @param blob          Device tree blob (if NULL, then error is returned)
663  * @param name          Property name, e.g. "stdout-path"
664  * @return Node offset referred to by that chosen node, or -ve FDT_ERR_...
665  */
666 int fdtdec_get_chosen_node(const void *blob, const char *name);
667
668 /*
669  * Get the name for a compatible ID
670  *
671  * @param id            Compatible ID to look for
672  * @return compatible string for that id
673  */
674 const char *fdtdec_get_compatible(enum fdt_compat_id id);
675
676 /* Look up a phandle and follow it to its node. Then return the offset
677  * of that node.
678  *
679  * @param blob          FDT blob
680  * @param node          node to examine
681  * @param prop_name     name of property to find
682  * @return node offset if found, -ve error code on error
683  */
684 int fdtdec_lookup_phandle(const void *blob, int node, const char *prop_name);
685
686 /**
687  * Look up a property in a node and return its contents in an integer
688  * array of given length. The property must have at least enough data for
689  * the array (4*count bytes). It may have more, but this will be ignored.
690  *
691  * @param blob          FDT blob
692  * @param node          node to examine
693  * @param prop_name     name of property to find
694  * @param array         array to fill with data
695  * @param count         number of array elements
696  * @return 0 if ok, or -FDT_ERR_NOTFOUND if the property is not found,
697  *              or -FDT_ERR_BADLAYOUT if not enough data
698  */
699 int fdtdec_get_int_array(const void *blob, int node, const char *prop_name,
700                 u32 *array, int count);
701
702 /**
703  * Look up a property in a node and return its contents in an integer
704  * array of given length. The property must exist but may have less data that
705  * expected (4*count bytes). It may have more, but this will be ignored.
706  *
707  * @param blob          FDT blob
708  * @param node          node to examine
709  * @param prop_name     name of property to find
710  * @param array         array to fill with data
711  * @param count         number of array elements
712  * @return number of array elements if ok, or -FDT_ERR_NOTFOUND if the
713  *              property is not found
714  */
715 int fdtdec_get_int_array_count(const void *blob, int node,
716                                const char *prop_name, u32 *array, int count);
717
718 /**
719  * Look up a property in a node and return a pointer to its contents as a
720  * unsigned int array of given length. The property must have at least enough
721  * data for the array ('count' cells). It may have more, but this will be
722  * ignored. The data is not copied.
723  *
724  * Note that you must access elements of the array with fdt32_to_cpu(),
725  * since the elements will be big endian even on a little endian machine.
726  *
727  * @param blob          FDT blob
728  * @param node          node to examine
729  * @param prop_name     name of property to find
730  * @param count         number of array elements
731  * @return pointer to array if found, or NULL if the property is not
732  *              found or there is not enough data
733  */
734 const u32 *fdtdec_locate_array(const void *blob, int node,
735                                const char *prop_name, int count);
736
737 /**
738  * Look up a boolean property in a node and return it.
739  *
740  * A boolean properly is true if present in the device tree and false if not
741  * present, regardless of its value.
742  *
743  * @param blob  FDT blob
744  * @param node  node to examine
745  * @param prop_name     name of property to find
746  * @return 1 if the properly is present; 0 if it isn't present
747  */
748 int fdtdec_get_bool(const void *blob, int node, const char *prop_name);
749
750 /*
751  * Count child nodes of one parent node.
752  *
753  * @param blob  FDT blob
754  * @param node  parent node
755  * @return number of child node; 0 if there is not child node
756  */
757 int fdtdec_get_child_count(const void *blob, int node);
758
759 /*
760  * Look up a property in a node and return its contents in a byte
761  * array of given length. The property must have at least enough data for
762  * the array (count bytes). It may have more, but this will be ignored.
763  *
764  * @param blob          FDT blob
765  * @param node          node to examine
766  * @param prop_name     name of property to find
767  * @param array         array to fill with data
768  * @param count         number of array elements
769  * @return 0 if ok, or -FDT_ERR_MISSING if the property is not found,
770  *              or -FDT_ERR_BADLAYOUT if not enough data
771  */
772 int fdtdec_get_byte_array(const void *blob, int node, const char *prop_name,
773                 u8 *array, int count);
774
775 /**
776  * Look up a property in a node and return a pointer to its contents as a
777  * byte array of given length. The property must have at least enough data
778  * for the array (count bytes). It may have more, but this will be ignored.
779  * The data is not copied.
780  *
781  * @param blob          FDT blob
782  * @param node          node to examine
783  * @param prop_name     name of property to find
784  * @param count         number of array elements
785  * @return pointer to byte array if found, or NULL if the property is not
786  *              found or there is not enough data
787  */
788 const u8 *fdtdec_locate_byte_array(const void *blob, int node,
789                              const char *prop_name, int count);
790
791 /**
792  * Obtain an indexed resource from a device property.
793  *
794  * @param fdt           FDT blob
795  * @param node          node to examine
796  * @param property      name of the property to parse
797  * @param index         index of the resource to retrieve
798  * @param res           returns the resource
799  * @return 0 if ok, negative on error
800  */
801 int fdt_get_resource(const void *fdt, int node, const char *property,
802                      unsigned int index, struct fdt_resource *res);
803
804 /**
805  * Obtain a named resource from a device property.
806  *
807  * Look up the index of the name in a list of strings and return the resource
808  * at that index.
809  *
810  * @param fdt           FDT blob
811  * @param node          node to examine
812  * @param property      name of the property to parse
813  * @param prop_names    name of the property containing the list of names
814  * @param name          the name of the entry to look up
815  * @param res           returns the resource
816  */
817 int fdt_get_named_resource(const void *fdt, int node, const char *property,
818                            const char *prop_names, const char *name,
819                            struct fdt_resource *res);
820
821 /* Display timings from linux include/video/display_timing.h */
822 enum display_flags {
823         DISPLAY_FLAGS_HSYNC_LOW         = 1 << 0,
824         DISPLAY_FLAGS_HSYNC_HIGH        = 1 << 1,
825         DISPLAY_FLAGS_VSYNC_LOW         = 1 << 2,
826         DISPLAY_FLAGS_VSYNC_HIGH        = 1 << 3,
827
828         /* data enable flag */
829         DISPLAY_FLAGS_DE_LOW            = 1 << 4,
830         DISPLAY_FLAGS_DE_HIGH           = 1 << 5,
831         /* drive data on pos. edge */
832         DISPLAY_FLAGS_PIXDATA_POSEDGE   = 1 << 6,
833         /* drive data on neg. edge */
834         DISPLAY_FLAGS_PIXDATA_NEGEDGE   = 1 << 7,
835         DISPLAY_FLAGS_INTERLACED        = 1 << 8,
836         DISPLAY_FLAGS_DOUBLESCAN        = 1 << 9,
837         DISPLAY_FLAGS_DOUBLECLK         = 1 << 10,
838 };
839
840 /*
841  * A single signal can be specified via a range of minimal and maximal values
842  * with a typical value, that lies somewhere inbetween.
843  */
844 struct timing_entry {
845         u32 min;
846         u32 typ;
847         u32 max;
848 };
849
850 /*
851  * Single "mode" entry. This describes one set of signal timings a display can
852  * have in one setting. This struct can later be converted to struct videomode
853  * (see include/video/videomode.h). As each timing_entry can be defined as a
854  * range, one struct display_timing may become multiple struct videomodes.
855  *
856  * Example: hsync active high, vsync active low
857  *
858  *                                  Active Video
859  * Video  ______________________XXXXXXXXXXXXXXXXXXXXXX_____________________
860  *        |<- sync ->|<- back ->|<----- active ----->|<- front ->|<- sync..
861  *        |          |   porch  |                    |   porch   |
862  *
863  * HSync _|¯¯¯¯¯¯¯¯¯¯|___________________________________________|¯¯¯¯¯¯¯¯¯
864  *
865  * VSync Â¯|__________|¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯|_________
866  */
867 struct display_timing {
868         struct timing_entry pixelclock;
869
870         struct timing_entry hactive;            /* hor. active video */
871         struct timing_entry hfront_porch;       /* hor. front porch */
872         struct timing_entry hback_porch;        /* hor. back porch */
873         struct timing_entry hsync_len;          /* hor. sync len */
874
875         struct timing_entry vactive;            /* ver. active video */
876         struct timing_entry vfront_porch;       /* ver. front porch */
877         struct timing_entry vback_porch;        /* ver. back porch */
878         struct timing_entry vsync_len;          /* ver. sync len */
879
880         enum display_flags flags;               /* display flags */
881         bool hdmi_monitor;                      /* is hdmi monitor? */
882 };
883
884 /**
885  * fdtdec_decode_display_timing() - decode display timings
886  *
887  * Decode display timings from the supplied 'display-timings' node.
888  * See doc/device-tree-bindings/video/display-timing.txt for binding
889  * information.
890  *
891  * @param blob          FDT blob
892  * @param node          'display-timing' node containing the timing subnodes
893  * @param index         Index number to read (0=first timing subnode)
894  * @param config        Place to put timings
895  * @return 0 if OK, -FDT_ERR_NOTFOUND if not found
896  */
897 int fdtdec_decode_display_timing(const void *blob, int node, int index,
898                                  struct display_timing *config);
899
900 /**
901  * fdtdec_setup_mem_size_base() - decode and setup gd->ram_size and
902  * gd->ram_start
903  *
904  * Decode the /memory 'reg' property to determine the size and start of the
905  * first memory bank, populate the global data with the size and start of the
906  * first bank of memory.
907  *
908  * This function should be called from a boards dram_init(). This helper
909  * function allows for boards to query the device tree for DRAM size and start
910  * address instead of hard coding the value in the case where the memory size
911  * and start address cannot be detected automatically.
912  *
913  * @return 0 if OK, -EINVAL if the /memory node or reg property is missing or
914  * invalid
915  */
916 int fdtdec_setup_mem_size_base(void);
917
918 /**
919  * fdtdec_setup_mem_size_base_lowest() - decode and setup gd->ram_size and
920  * gd->ram_start by lowest available memory base
921  *
922  * Decode the /memory 'reg' property to determine the lowest start of the memory
923  * bank bank and populate the global data with it.
924  *
925  * This function should be called from a boards dram_init(). This helper
926  * function allows for boards to query the device tree for DRAM size and start
927  * address instead of hard coding the value in the case where the memory size
928  * and start address cannot be detected automatically.
929  *
930  * @return 0 if OK, -EINVAL if the /memory node or reg property is missing or
931  * invalid
932  */
933 int fdtdec_setup_mem_size_base_lowest(void);
934
935 /**
936  * fdtdec_setup_memory_banksize() - decode and populate gd->bd->bi_dram
937  *
938  * Decode the /memory 'reg' property to determine the address and size of the
939  * memory banks. Use this data to populate the global data board info with the
940  * phys address and size of memory banks.
941  *
942  * This function should be called from a boards dram_init_banksize(). This
943  * helper function allows for boards to query the device tree for memory bank
944  * information instead of hard coding the information in cases where it cannot
945  * be detected automatically.
946  *
947  * @return 0 if OK, -EINVAL if the /memory node or reg property is missing or
948  * invalid
949  */
950 int fdtdec_setup_memory_banksize(void);
951
952 /**
953  * fdtdec_set_ethernet_mac_address() - set MAC address for default interface
954  *
955  * Looks up the default interface via the "ethernet" alias (in the /aliases
956  * node) and stores the given MAC in its "local-mac-address" property. This
957  * is useful on platforms that store the MAC address in a custom location.
958  * Board code can call this in the late init stage to make sure that the
959  * interface device tree node has the right MAC address configured for the
960  * Ethernet uclass to pick it up.
961  *
962  * Typically the FDT passed into this function will be U-Boot's control DTB.
963  * Given that a lot of code may be holding offsets to various nodes in that
964  * tree, this code will only set the "local-mac-address" property in-place,
965  * which means that it needs to exist and have space for the 6-byte address.
966  * This ensures that the operation is non-destructive and does not invalidate
967  * offsets that other drivers may be using.
968  *
969  * @param fdt FDT blob
970  * @param mac buffer containing the MAC address to set
971  * @param size size of MAC address
972  * @return 0 on success or a negative error code on failure
973  */
974 int fdtdec_set_ethernet_mac_address(void *fdt, const u8 *mac, size_t size);
975
976 /**
977  * fdtdec_set_phandle() - sets the phandle of a given node
978  *
979  * @param blob          FDT blob
980  * @param node          offset in the FDT blob of the node whose phandle is to
981  *                      be set
982  * @param phandle       phandle to set for the given node
983  * @return 0 on success or a negative error code on failure
984  */
985 static inline int fdtdec_set_phandle(void *blob, int node, uint32_t phandle)
986 {
987         return fdt_setprop_u32(blob, node, "phandle", phandle);
988 }
989
990 /* add "no-map" property */
991 #define FDTDEC_RESERVED_MEMORY_NO_MAP (1 << 0)
992
993 /**
994  * fdtdec_add_reserved_memory() - add or find a reserved-memory node
995  *
996  * If a reserved-memory node already exists for the given carveout, a phandle
997  * for that node will be returned. Otherwise a new node will be created and a
998  * phandle corresponding to it will be returned.
999  *
1000  * See Documentation/devicetree/bindings/reserved-memory/reserved-memory.txt
1001  * for details on how to use reserved memory regions.
1002  *
1003  * As an example, consider the following code snippet:
1004  *
1005  *     struct fdt_memory fb = {
1006  *         .start = 0x92cb3000,
1007  *         .end = 0x934b2fff,
1008  *     };
1009  *     uint32_t phandle;
1010  *
1011  *     fdtdec_add_reserved_memory(fdt, "framebuffer", &fb, NULL, 0, &phandle,
1012  *                                0);
1013  *
1014  * This results in the following subnode being added to the top-level
1015  * /reserved-memory node:
1016  *
1017  *     reserved-memory {
1018  *         #address-cells = <0x00000002>;
1019  *         #size-cells = <0x00000002>;
1020  *         ranges;
1021  *
1022  *         framebuffer@92cb3000 {
1023  *             reg = <0x00000000 0x92cb3000 0x00000000 0x00800000>;
1024  *             phandle = <0x0000004d>;
1025  *         };
1026  *     };
1027  *
1028  * If the top-level /reserved-memory node does not exist, it will be created.
1029  * The phandle returned from the function call can be used to reference this
1030  * reserved memory region from other nodes.
1031  *
1032  * See fdtdec_set_carveout() for a more elaborate example.
1033  *
1034  * @param blob          FDT blob
1035  * @param basename      base name of the node to create
1036  * @param carveout      information about the carveout region
1037  * @param compatibles   list of compatible strings for the carveout region
1038  * @param count         number of compatible strings for the carveout region
1039  * @param phandlep      return location for the phandle of the carveout region
1040  *                      can be NULL if no phandle should be added
1041  * @param flags         bitmask of flags to set for the carveout region
1042  * @return 0 on success or a negative error code on failure
1043  */
1044 int fdtdec_add_reserved_memory(void *blob, const char *basename,
1045                                const struct fdt_memory *carveout,
1046                                const char **compatibles, unsigned int count,
1047                                uint32_t *phandlep, unsigned long flags);
1048
1049 /**
1050  * fdtdec_get_carveout() - reads a carveout from an FDT
1051  *
1052  * Reads information about a carveout region from an FDT. The carveout is a
1053  * referenced by its phandle that is read from a given property in a given
1054  * node.
1055  *
1056  * @param blob          FDT blob
1057  * @param node          name of a node
1058  * @param prop_name     name of the property in the given node that contains
1059  *                      the phandle for the carveout
1060  * @param index         index of the phandle for which to read the carveout
1061  * @param carveout      return location for the carveout information
1062  * @param name          return location for the carveout name
1063  * @param compatiblesp  return location for compatible strings
1064  * @param countp        return location for the number of compatible strings
1065  * @param flags         return location for the flags of the carveout
1066  * @return 0 on success or a negative error code on failure
1067  */
1068 int fdtdec_get_carveout(const void *blob, const char *node,
1069                         const char *prop_name, unsigned int index,
1070                         struct fdt_memory *carveout, const char **name,
1071                         const char ***compatiblesp, unsigned int *countp,
1072                         unsigned long *flags);
1073
1074 /**
1075  * fdtdec_set_carveout() - sets a carveout region for a given node
1076  *
1077  * Sets a carveout region for a given node. If a reserved-memory node already
1078  * exists for the carveout, the phandle for that node will be reused. If no
1079  * such node exists, a new one will be created and a phandle to it stored in
1080  * a specified property of the given node.
1081  *
1082  * As an example, consider the following code snippet:
1083  *
1084  *     const char *node = "/host1x@50000000/dc@54240000";
1085  *     struct fdt_memory fb = {
1086  *         .start = 0x92cb3000,
1087  *         .end = 0x934b2fff,
1088  *     };
1089  *
1090  *     fdtdec_set_carveout(fdt, node, "memory-region", 0, "framebuffer", NULL,
1091  *                         0, &fb, 0);
1092  *
1093  * dc@54200000 is a display controller and was set up by the bootloader to
1094  * scan out the framebuffer specified by "fb". This would cause the following
1095  * reserved memory region to be added:
1096  *
1097  *     reserved-memory {
1098  *         #address-cells = <0x00000002>;
1099  *         #size-cells = <0x00000002>;
1100  *         ranges;
1101  *
1102  *         framebuffer@92cb3000 {
1103  *             reg = <0x00000000 0x92cb3000 0x00000000 0x00800000>;
1104  *             phandle = <0x0000004d>;
1105  *         };
1106  *     };
1107  *
1108  * A "memory-region" property will also be added to the node referenced by the
1109  * offset parameter.
1110  *
1111  *     host1x@50000000 {
1112  *         ...
1113  *
1114  *         dc@54240000 {
1115  *             ...
1116  *             memory-region = <0x0000004d>;
1117  *             ...
1118  *         };
1119  *
1120  *         ...
1121  *     };
1122  *
1123  * @param blob          FDT blob
1124  * @param node          name of the node to add the carveout to
1125  * @param prop_name     name of the property in which to store the phandle of
1126  *                      the carveout
1127  * @param index         index of the phandle to store
1128  * @param carveout      information about the carveout to add
1129  * @param name          base name of the reserved-memory node to create
1130  * @param compatibles   compatible strings to set for the carveout
1131  * @param count         number of compatible strings
1132  * @param flags         bitmask of flags to set for the carveout
1133  * @return 0 on success or a negative error code on failure
1134  */
1135 int fdtdec_set_carveout(void *blob, const char *node, const char *prop_name,
1136                         unsigned int index, const struct fdt_memory *carveout,
1137                         const char *name, const char **compatibles,
1138                         unsigned int count, unsigned long flags);
1139
1140 /**
1141  * Set up the device tree ready for use
1142  */
1143 int fdtdec_setup(void);
1144
1145 /**
1146  * Perform board-specific early DT adjustments
1147  */
1148 int fdtdec_board_setup(const void *fdt_blob);
1149
1150 #if CONFIG_IS_ENABLED(MULTI_DTB_FIT)
1151 /**
1152  * fdtdec_resetup()  - Set up the device tree again
1153  *
1154  * The main difference with fdtdec_setup() is that it returns if the fdt has
1155  * changed because a better match has been found.
1156  * This is typically used for boards that rely on a DM driver to detect the
1157  * board type. This function sould be called by the board code after the stuff
1158  * needed by board_fit_config_name_match() to operate porperly is available.
1159  * If this functions signals that a rescan is necessary, the board code must
1160  * unbind all the drivers using dm_uninit() and then rescan the DT with
1161  * dm_init_and_scan().
1162  *
1163  * @param rescan Returns a flag indicating that fdt has changed and rescanning
1164  *               the fdt is required
1165  *
1166  * @return 0 if OK, -ve on error
1167  */
1168 int fdtdec_resetup(int *rescan);
1169 #endif
1170
1171 /**
1172  * Board-specific FDT initialization. Returns the address to a device tree blob.
1173  *
1174  * Called when CONFIG_OF_BOARD is defined.
1175  *
1176  * The existing devicetree is available at gd->fdt_blob
1177  *
1178  * @err internal error code if we fail to setup a DTB
1179  * @returns new devicetree blob pointer
1180  */
1181 void *board_fdt_blob_setup(int *err);
1182
1183 /*
1184  * Decode the size of memory
1185  *
1186  * RAM size is normally set in a /memory node and consists of a list of
1187  * (base, size) cells in the 'reg' property. This information is used to
1188  * determine the total available memory as well as the address and size
1189  * of each bank.
1190  *
1191  * Optionally the memory configuration can vary depending on a board id,
1192  * typically read from strapping resistors or an EEPROM on the board.
1193  *
1194  * Finally, memory size can be detected (within certain limits) by probing
1195  * the available memory. It is safe to do so within the limits provides by
1196  * the board's device tree information. This makes it possible to produce
1197  * boards with different memory sizes, where the device tree specifies the
1198  * maximum memory configuration, and the smaller memory configuration is
1199  * probed.
1200  *
1201  * This function decodes that information, returning the memory base address,
1202  * size and bank information. See the memory.txt binding for full
1203  * documentation.
1204  *
1205  * @param blob          Device tree blob
1206  * @param area          Name of node to check (NULL means "/memory")
1207  * @param board_id      Board ID to look up
1208  * @param basep         Returns base address of first memory bank (NULL to
1209  *                      ignore)
1210  * @param sizep         Returns total memory size (NULL to ignore)
1211  * @param bd            Updated with the memory bank information (NULL to skip)
1212  * @return 0 if OK, -ve on error
1213  */
1214 int fdtdec_decode_ram_size(const void *blob, const char *area, int board_id,
1215                            phys_addr_t *basep, phys_size_t *sizep,
1216                            struct bd_info *bd);
1217
1218 #endif