blob: 213d7fb81c4218ba516bbbf59fa35b1f36d1b6ad [file] [log] [blame]
David Gibsonede25de2006-12-01 15:02:10 +11001#ifndef _LIBFDT_ENV_H
2#define _LIBFDT_ENV_H
3
David Gibson3da0f9a2006-11-27 16:21:28 +11004#include <stddef.h>
5#include <stdint.h>
6#include <string.h>
David Gibson3da0f9a2006-11-27 16:21:28 +11007
Bert Kenward37b167f2012-04-10 08:00:15 -07008#define EXTRACT_BYTE(n) ((unsigned long long)((uint8_t *)&x)[n])
Anton Staaf2cd4c8d2011-10-11 10:22:27 -07009static inline uint16_t fdt16_to_cpu(uint16_t x)
10{
Bert Kenward37b167f2012-04-10 08:00:15 -070011 return (EXTRACT_BYTE(0) << 8) | EXTRACT_BYTE(1);
Anton Staaf2cd4c8d2011-10-11 10:22:27 -070012}
13#define cpu_to_fdt16(x) fdt16_to_cpu(x)
14
David Gibsoncdcb4152008-06-26 11:03:49 +100015static inline uint32_t fdt32_to_cpu(uint32_t x)
16{
Bert Kenward37b167f2012-04-10 08:00:15 -070017 return (EXTRACT_BYTE(0) << 24) | (EXTRACT_BYTE(1) << 16) | (EXTRACT_BYTE(2) << 8) | EXTRACT_BYTE(3);
David Gibsoncdcb4152008-06-26 11:03:49 +100018}
19#define cpu_to_fdt32(x) fdt32_to_cpu(x)
20
21static inline uint64_t fdt64_to_cpu(uint64_t x)
22{
Bert Kenward37b167f2012-04-10 08:00:15 -070023 return (EXTRACT_BYTE(0) << 56) | (EXTRACT_BYTE(1) << 48) | (EXTRACT_BYTE(2) << 40) | (EXTRACT_BYTE(3) << 32)
24 | (EXTRACT_BYTE(4) << 24) | (EXTRACT_BYTE(5) << 16) | (EXTRACT_BYTE(6) << 8) | EXTRACT_BYTE(7);
David Gibsoncdcb4152008-06-26 11:03:49 +100025}
26#define cpu_to_fdt64(x) fdt64_to_cpu(x)
Bert Kenward37b167f2012-04-10 08:00:15 -070027#undef EXTRACT_BYTE
David Gibson3da0f9a2006-11-27 16:21:28 +110028
David Gibsonede25de2006-12-01 15:02:10 +110029#endif /* _LIBFDT_ENV_H */