1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353
|
/** @file
* IPRT - Flattened Devicetree parser and generator API.
*/
/*
* Copyright (C) 2023-2025 Oracle and/or its affiliates.
*
* This file is part of VirtualBox base platform packages, as
* available from https://www.virtualbox.org.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation, in version 3 of the
* License.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, see <https://www.gnu.org/licenses>.
*
* The contents of this file may alternatively be used under the terms
* of the Common Development and Distribution License Version 1.0
* (CDDL), a copy of it is provided in the "COPYING.CDDL" file included
* in the VirtualBox distribution, in which case the provisions of the
* CDDL are applicable instead of those of the GPL.
*
* You may elect to license modified versions of this file under the
* terms and conditions of either the GPL or the CDDL or both.
*
* SPDX-License-Identifier: GPL-3.0-only OR CDDL-1.0
*/
#ifndef IPRT_INCLUDED_fdt_h
#define IPRT_INCLUDED_fdt_h
#ifndef RT_WITHOUT_PRAGMA_ONCE
# pragma once
#endif
#include <iprt/cdefs.h>
#include <iprt/types.h>
#include <iprt/vfs.h>
RT_C_DECLS_BEGIN
/** @defgroup grp_rt_fdt RTFdt - Flattened Devicetree parser and generator API.
* @ingroup grp_rt
* @{
*/
/**
* Flattened device tree type.
*/
typedef enum RTFDTTYPE
{
/** The invalid output type. */
RTFDTTYPE_INVALID = 0,
/** Output is an UTF-8 DTS. */
RTFDTTYPE_DTS,
/** Output is the flattened devicetree binary format. */
RTFDTTYPE_DTB,
/** Usual 32-bit hack. */
RTFDTTYPE_32BIT_HACK = 0x7fffffff
} RTFDTTYPE;
#ifdef IN_RING3
/**
* Creates a new empty flattened devicetree returning the handle.
*
* @returns IPRT status code.
* @param phFdt Where to store the handle to the flattened devicetree on success.
*/
RTDECL(int) RTFdtCreateEmpty(PRTFDT phFdt);
/**
* Creates a flattened device tree from the given VFS file.
*
* @returns IPRT status code.
* @param phFdt Where to store the handle to the flattened devicetree on success.
* @param hVfsIos The VFS I/O stream handle to read the devicetree from.
* @param enmInType The input type of the flattened devicetree.
* @param pErrInfo Where to return additional error information.
*/
RTDECL(int) RTFdtCreateFromVfsIoStrm(PRTFDT phFdt, RTVFSIOSTREAM hVfsIos, RTFDTTYPE enmInType, PRTERRINFO pErrInfo);
/**
* Creates a flattened device tree from the given filename.
*
* @returns IPRT status code.
* @param phFdt Where to store the handle to the flattened devicetree on success.
* @param pszFilename The filename to read the devicetree from.
* @param enmInType The input type of the flattened devicetree.
* @param pErrInfo Where to return additional error information.
*/
RTDECL(int) RTFdtCreateFromFile(PRTFDT phFdt, const char *pszFilename, RTFDTTYPE enmInType, PRTERRINFO pErrInfo);
/**
* Destroys the given flattened devicetree.
*
* @param hFdt The flattened devicetree handle to destroy.
*/
RTDECL(void) RTFdtDestroy(RTFDT hFdt);
/**
* Finalizes the given FDT for writing out.
*
* @returns IPRT status code.
* @param hFdt The flattened devicetree handle.
*/
RTDECL(int) RTFdtFinalize(RTFDT hFdt);
/**
* Allocates a new phandle serving as a unique identifer within the given FDT.
*
* @returns The phandle value
* @retval UINT32_MAX in case the given FDT handle is invalid or the FDT is out of free phandle values.
* @param hFdt The flattened devicetree handle to destroy.
*/
RTDECL(uint32_t) RTFdtPHandleAllocate(RTFDT hFdt);
/**
* Dumps the given flattened devicetree to the given VFS file.
*
* @returns IPRT status code.
* @param hFdt The flattened devicetree handle.
* @param enmOutType The output type.
* @param fFlags Flags controlling the output, MBZ.
* @param hVfsIos The VFS I/O stream handle to dump the DTS to.
* @param pErrInfo Where to return additional error information.
*/
RTDECL(int) RTFdtDumpToVfsIoStrm(RTFDT hFdt, RTFDTTYPE enmOutType, uint32_t fFlags, RTVFSIOSTREAM hVfsIos, PRTERRINFO pErrInfo);
/**
* Dumps the given flattened devicetree to the given file.
*
* @returns IPRT status code.
* @param hFdt The flattened devicetree handle.
* @param enmOutType The output type.
* @param fFlags Flags controlling the output, MBZ.
* @param pszFilename The filename to dump to.
* @param pErrInfo Where to return additional error information.
*/
RTDECL(int) RTFdtDumpToFile(RTFDT hFdt, RTFDTTYPE enmOutType, uint32_t fFlags, const char *pszFilename, PRTERRINFO pErrInfo);
/**
* Adds a new memory reservation to the given FDT instance.
*
* @returns IPRT status code.
* @param hFdt The flattened devicetree handle.
* @param PhysAddrStart The physical start address of the reservation.
* @param cbArea Size of the area in bytes.
*/
RTDECL(int) RTFdtAddMemoryReservation(RTFDT hFdt, uint64_t PhysAddrStart, uint64_t cbArea);
/**
* Sets the physical boot CPU id for the given FDT instance.
*
* @returns IPRT status code.
* @param hFdt The flattened devicetree handle.
* @param idPhysBootCpu The physical boot CPU ID.
*/
RTDECL(int) RTFdtSetPhysBootCpuId(RTFDT hFdt, uint32_t idPhysBootCpu);
/**
* Adds a new node with the given name under the currently active one.
*
* @returns IPRT status code.
* @param hFdt The flattened devicetree handle.
* @param pszName The name of the node.
*/
RTDECL(int) RTFdtNodeAdd(RTFDT hFdt, const char *pszName);
/**
* Adds a new node with the given name under the currently active one.
*
* @returns IPRT status code.
* @param hFdt The flattened devicetree handle.
* @param pszNameFmt The name of the node as a format string.
* @param ... The format arguments.
*/
RTDECL(int) RTFdtNodeAddF(RTFDT hFdt, const char *pszNameFmt, ...) RT_IPRT_FORMAT_ATTR(2, 3);
/**
* Adds a new node with the given name under the currently active one.
*
* @returns IPRT status code.
* @param hFdt The flattened devicetree handle.
* @param pszNameFmt The name of the node as a format string.
* @param va The format arguments.
*/
RTDECL(int) RTFdtNodeAddV(RTFDT hFdt, const char *pszNameFmt, va_list va) RT_IPRT_FORMAT_ATTR(2, 0);
/**
* Finalizes the current active node and returns the state to the parent node.
*
* @returns IPRT status code.
* @param hFdt The flattened devicetree handle.
*/
RTDECL(int) RTFdtNodeFinalize(RTFDT hFdt);
/**
* Adds a single empty property with the given name to the current node acting as a boolean.
*
* @returns IPRT status code.
* @param hFdt The flattened devicetree handle.
* @param pszProperty The property name.
*/
RTDECL(int) RTFdtNodePropertyAddEmpty(RTFDT hFdt, const char *pszProperty);
/**
* Adds a single u32 property with the given name to the current node.
*
* @returns IPRT status code.
* @param hFdt The flattened devicetree handle.
* @param pszProperty The property name.
* @param u32 The u32 value to set the property to.
*/
RTDECL(int) RTFdtNodePropertyAddU32(RTFDT hFdt, const char *pszProperty, uint32_t u32);
/**
* Adds a single u64 property as two 32-bit cells with the given name to the current node.
*
* @returns IPRT status code.
* @param hFdt The flattened devicetree handle.
* @param pszProperty The property name.
* @param u64 The u64 value to set the property to.
*/
RTDECL(int) RTFdtNodePropertyAddU64(RTFDT hFdt, const char *pszProperty, uint64_t u64);
/**
* Adds a string property with the given name to the current node.
*
* @returns IPRT status code.
* @param hFdt The flattened devicetree handle.
* @param pszProperty The property name.
* @param pszVal The string value to set the property to.
*/
RTDECL(int) RTFdtNodePropertyAddString(RTFDT hFdt, const char *pszProperty, const char *pszVal);
/**
* Adds a property with a variable number of u32 items.
*
* @returns IPRT staus code.
* @param hFdt The flattened devicetree handle.
* @param pszProperty The property name.
* @param cCells The number of cells.
* @param ... The cell u32 data items.
*/
RTDECL(int) RTFdtNodePropertyAddCellsU32(RTFDT hFdt, const char *pszProperty, uint32_t cCells, ...);
/**
* Adds a property with a variable number of u32 items.
*
* @returns IPRT staus code.
* @param hFdt The flattened devicetree handle.
* @param pszProperty The property name.
* @param cCells The number of cells.
* @param va The cell u32 data items.
*/
RTDECL(int) RTFdtNodePropertyAddCellsU32V(RTFDT hFdt, const char *pszProperty, uint32_t cCells, va_list va);
/**
* Adds a property with a variable number of u32 items passed as an array.
*
* @returns IPRT staus code.
* @param hFdt The flattened devicetree handle.
* @param pszProperty The property name.
* @param cCells The number of cells.
* @param pau32Cells Pointer to the array of u32 cell data items.
*/
RTDECL(int) RTFdtNodePropertyAddCellsU32AsArray(RTFDT hFdt, const char *pszProperty, uint32_t cCells, uint32_t *pau32Cells);
/**
* Adds a property with a variable number of u64 items (each as two 32-bit cells).
*
* @returns IPRT staus code.
* @param hFdt The flattened devicetree handle.
* @param pszProperty The property name.
* @param cCells The number of cells.
* @param ... The cell u64 data items.
*/
RTDECL(int) RTFdtNodePropertyAddCellsU64(RTFDT hFdt, const char *pszProperty, uint32_t cCells, ...);
/**
* Adds a property with a variable number of u64 items (each as two 32-bit cells).
*
* @returns IPRT staus code.
* @param hFdt The flattened devicetree handle.
* @param pszProperty The property name.
* @param cCells The number of cells.
* @param va The cell u64 data items.
*/
RTDECL(int) RTFdtNodePropertyAddCellsU64V(RTFDT hFdt, const char *pszProperty, uint32_t cCells, va_list va);
/**
* Adds the given string list property to the given FDT.
*
* @returns IPRT status code.
* @param hFdt The flattened devicetree handle.
* @param pszProperty The property name.
* @param cStrings How many strings are following.
* @param ... The strings.
*/
RTDECL(int) RTFdtNodePropertyAddStringList(RTFDT hFdt, const char *pszProperty, uint32_t cStrings, ...);
/**
* Adds the given string list property to the given FDT.
*
* @returns IPRT status code.
* @param hFdt The flattened devicetree handle.
* @param pszProperty The property name.
* @param cStrings How many strings are following.
* @param va The strings.
*/
RTDECL(int) RTFdtNodePropertyAddStringListV(RTFDT hFdt, const char *pszProperty, uint32_t cStrings, va_list va);
#endif /* IN_RING3 */
/** @} */
RT_C_DECLS_END
#endif /* !IPRT_INCLUDED_fdt_h */
|