mirror of
https://github.com/dgibson/dtc.git
synced 2025-12-08 12:45:29 -05:00
Initial revision, read-only and "in-place" (no memmove() required) write operations only.
19 lines
450 B
C
19 lines
450 B
C
#include <stddef.h>
|
|
#include <stdint.h>
|
|
#include <string.h>
|
|
#include <endian.h>
|
|
#include <byteswap.h>
|
|
|
|
#if __BYTE_ORDER == __BIG_ENDIAN
|
|
#define fdt32_to_cpu(x) (x)
|
|
#define cpu_to_fdt32(x) (x)
|
|
#define fdt64_to_cpu(x) (x)
|
|
#define cpu_to_fdt64(x) (x)
|
|
#else
|
|
#define fdt32_to_cpu(x) (bswap_32((x)))
|
|
#define cpu_to_fdt32(x) (bswap_32((x)))
|
|
#define fdt64_to_cpu(x) (bswap_64((x)))
|
|
#define cpu_to_fdt64(x) (bswap_64((x)))
|
|
#endif
|
|
|
|
#include "libfdt.h"
|