mirror of
https://review.haiku-os.org/haiku
synced 2025-01-23 23:04:48 +01:00
40eb7121b6
* Expose fdt_get_device_reg for others to use
24 lines
534 B
C
24 lines
534 B
C
/*
|
|
* Copyright 2012-2015, Haiku, Inc.
|
|
* Distributed under the terms of the MIT License.
|
|
*
|
|
* Authors
|
|
* Alexander von Gluck IV, kallisti5@unixzen.com
|
|
*/
|
|
#ifndef __FDT_SUPPORT_H
|
|
#define __FDT_SUPPORT_H
|
|
|
|
|
|
#include <KernelExport.h>
|
|
|
|
|
|
void dump_fdt(const void *fdt);
|
|
status_t fdt_get_cell_count(int node, int32 &addressCells, int32 &sizeCells);
|
|
|
|
phys_addr_t fdt_get_device_reg(int node);
|
|
phys_addr_t fdt_get_device_reg_byname(const char* name);
|
|
phys_addr_t fdt_get_device_reg_byalias(const char* alias);
|
|
|
|
|
|
#endif /*__FDT_SUPPORT_H*/
|