cd296721a9
This updates scripts/dtc to commit 317a5d9 "dtc: zero out new label objects" from git://git.jdl.com/software/dtc.git. This adds features such as: * /bits/ syntax for cell data. * Math expressions within cell data. * The ability to delete properties or nodes. * Support for #line directives in the input file, which allows the use of cpp on *.dts. * -i command-line option (/include/ path) * -W/-E command-line options for error/warning control. * Removal of spew to STDOUT containing the filename being compiled. * Many additions to the libfdt API. Signed-off-by: Stephen Warren <swarren@nvidia.com> Acked-by: Jon Loeliger <jdl@jdl.com> Signed-off-by: Rob Herring <rob.herring@calxeda.com>
30 lines
857 B
C
30 lines
857 B
C
#ifndef _LIBFDT_ENV_H
|
|
#define _LIBFDT_ENV_H
|
|
|
|
#include <stddef.h>
|
|
#include <stdint.h>
|
|
#include <string.h>
|
|
|
|
#define EXTRACT_BYTE(n) ((unsigned long long)((uint8_t *)&x)[n])
|
|
static inline uint16_t fdt16_to_cpu(uint16_t x)
|
|
{
|
|
return (EXTRACT_BYTE(0) << 8) | EXTRACT_BYTE(1);
|
|
}
|
|
#define cpu_to_fdt16(x) fdt16_to_cpu(x)
|
|
|
|
static inline uint32_t fdt32_to_cpu(uint32_t x)
|
|
{
|
|
return (EXTRACT_BYTE(0) << 24) | (EXTRACT_BYTE(1) << 16) | (EXTRACT_BYTE(2) << 8) | EXTRACT_BYTE(3);
|
|
}
|
|
#define cpu_to_fdt32(x) fdt32_to_cpu(x)
|
|
|
|
static inline uint64_t fdt64_to_cpu(uint64_t x)
|
|
{
|
|
return (EXTRACT_BYTE(0) << 56) | (EXTRACT_BYTE(1) << 48) | (EXTRACT_BYTE(2) << 40) | (EXTRACT_BYTE(3) << 32)
|
|
| (EXTRACT_BYTE(4) << 24) | (EXTRACT_BYTE(5) << 16) | (EXTRACT_BYTE(6) << 8) | EXTRACT_BYTE(7);
|
|
}
|
|
#define cpu_to_fdt64(x) fdt64_to_cpu(x)
|
|
#undef EXTRACT_BYTE
|
|
|
|
#endif /* _LIBFDT_ENV_H */
|