summaryrefslogtreecommitdiffstats
path: root/src/arch/ia64/include/bits
diff options
context:
space:
mode:
authorMichael Brown2006-03-17 15:13:09 +0100
committerMichael Brown2006-03-17 15:13:09 +0100
commitb2909e547d78d5441b7e88e862c0e00541d3a5f0 (patch)
tree713f2c6be0a71a68b415dfe57493cb6770fac908 /src/arch/ia64/include/bits
parentGPXE code cleanup and purge. (diff)
downloadipxe-b2909e547d78d5441b7e88e862c0e00541d3a5f0.tar.gz
ipxe-b2909e547d78d5441b7e88e862c0e00541d3a5f0.tar.xz
ipxe-b2909e547d78d5441b7e88e862c0e00541d3a5f0.zip
They can come back when they have someone to support them.
Diffstat (limited to 'src/arch/ia64/include/bits')
-rw-r--r--src/arch/ia64/include/bits/byteswap.h36
-rw-r--r--src/arch/ia64/include/bits/cpu.h6
-rw-r--r--src/arch/ia64/include/bits/elf.h11
-rw-r--r--src/arch/ia64/include/bits/endian.h6
-rw-r--r--src/arch/ia64/include/bits/string.h6
5 files changed, 0 insertions, 65 deletions
diff --git a/src/arch/ia64/include/bits/byteswap.h b/src/arch/ia64/include/bits/byteswap.h
deleted file mode 100644
index a8a115850..000000000
--- a/src/arch/ia64/include/bits/byteswap.h
+++ /dev/null
@@ -1,36 +0,0 @@
-#ifndef ETHERBOOT_BITS_BYTESWAP_H
-#define ETHERBOOT_BITS_BYTESWAP_H
-
-static inline uint64_t __ia64_bswap_64(uint64_t x)
-{
- uint64_t result;
- __asm__ volatile(
- "mux1 %0=%1,@rev" :
- "=r" (result)
- : "r" (x));
- return result;
-}
-
-#define __bswap_constant_16(x) \
- ((uint16_t)((((uint16_t)(x) & 0x00ff) << 8) | \
- (((uint16_t)(x) & 0xff00) >> 8)))
-
-#define __bswap_constant_32(x) \
- ((uint32_t)((((uint32_t)(x) & 0x000000ffU) << 24) | \
- (((uint32_t)(x) & 0x0000ff00U) << 8) | \
- (((uint32_t)(x) & 0x00ff0000U) >> 8) | \
- (((uint32_t)(x) & 0xff000000U) >> 24)))
-
-#define __bswap_16(x) \
- (__builtin_constant_p(x) ? \
- __bswap_constant_16(x) : \
- (__ia64_bswap_64(x) >> 48))
-
-
-#define __bswap_32(x) \
- (__builtin_constant_p(x) ? \
- __bswap_constant_32(x) : \
- (__ia64_bswap_64(x) >> 32))
-
-
-#endif /* ETHERBOOT_BITS_BYTESWAP_H */
diff --git a/src/arch/ia64/include/bits/cpu.h b/src/arch/ia64/include/bits/cpu.h
deleted file mode 100644
index d8fe1cbbe..000000000
--- a/src/arch/ia64/include/bits/cpu.h
+++ /dev/null
@@ -1,6 +0,0 @@
-#ifndef IA64_BITS_CPU_H
-#define IA64_BITS_CPU_H
-
-#define cpu_setup() do {} while(0)
-
-#endif /* IA64_BITS_CPU_H */
diff --git a/src/arch/ia64/include/bits/elf.h b/src/arch/ia64/include/bits/elf.h
deleted file mode 100644
index c68f8456f..000000000
--- a/src/arch/ia64/include/bits/elf.h
+++ /dev/null
@@ -1,11 +0,0 @@
-#ifndef IA64_BITS_ELF_H
-#define IA64_BITS_ELF_H
-
-/* ELF Defines for the current architecture */
-#define EM_CURRENT EM_IA_64
-#define ELFDATA_CURRENT ELFDATA2LSB
-
-#define ELF_CHECK_ARCH(x) \
- ((x).e_machine == EM_CURRENT)
-
-#endif /* IA64_BITS_ELF_H */
diff --git a/src/arch/ia64/include/bits/endian.h b/src/arch/ia64/include/bits/endian.h
deleted file mode 100644
index 413e702db..000000000
--- a/src/arch/ia64/include/bits/endian.h
+++ /dev/null
@@ -1,6 +0,0 @@
-#ifndef ETHERBOOT_BITS_ENDIAN_H
-#define ETHERBOOT_BITS_ENDIAN_H
-
-#define __BYTE_ORDER __LITTLE_ENDIAN
-
-#endif /* ETHERBOOT_BITS_ENDIAN_H */
diff --git a/src/arch/ia64/include/bits/string.h b/src/arch/ia64/include/bits/string.h
deleted file mode 100644
index 31e94b7d3..000000000
--- a/src/arch/ia64/include/bits/string.h
+++ /dev/null
@@ -1,6 +0,0 @@
-#ifndef ETHERBOOT_BITS_STRING_H
-#define ETHERBOOT_BITS_STRING_H
-
-/* define inline optimized string functions here */
-
-#endif /* ETHERBOOT_BITS_STRING_H */