Dick Hollenbeck <dick@softplc.com> convert macros to inline fn's.
[fw/openocd] / src / helper / types.h
1 /***************************************************************************
2  *   Copyright (C) 2004, 2005 by Dominic Rath                              *
3  *   Dominic.Rath@gmx.de                                                   *
4  *                                                                         *
5  *   Copyright (C) 2007,2008 Ã˜yvind Harboe                                 *
6  *   oyvind.harboe@zylin.com                                               *
7  *                                                                         *
8  *   This program is free software; you can redistribute it and/or modify  *
9  *   it under the terms of the GNU General Public License as published by  *
10  *   the Free Software Foundation; either version 2 of the License, or     *
11  *   (at your option) any later version.                                   *
12  *                                                                         *
13  *   This program is distributed in the hope that it will be useful,       *
14  *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
15  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
16  *   GNU General Public License for more details.                          *
17  *                                                                         *
18  *   You should have received a copy of the GNU General Public License     *
19  *   along with this program; if not, write to the                         *
20  *   Free Software Foundation, Inc.,                                       *
21  *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
22  ***************************************************************************/
23 #ifndef TYPES_H
24 #define TYPES_H
25
26 #ifdef HAVE_CONFIG_H
27 #include "config.h"
28 #endif
29
30 #ifndef u8
31 typedef unsigned char u8;
32 #endif
33
34 #ifndef u16
35 typedef unsigned short u16;
36 #endif
37
38 #ifndef u32
39 typedef unsigned int u32;
40 #endif
41
42 #ifndef u64
43 typedef unsigned long long u64;
44 #endif
45
46 typedef struct jtag_tap_s jtag_tap_t;
47
48
49 /* DANGER!!!! here be dragons! 
50  * 
51  * Leave these fn's as byte accesses because it is safe
52  * across architectures. Clever usage of 32 bit access
53  * will create problems on some hosts.
54  * 
55  * Note that the pointer in memory might be unaligned. 
56  * 
57  * On some CPU's, i.e. ARM7, the 2 lsb are ignored for 32 
58  * bit access, on others it will cause an exception and 
59  * on e.g. x86, it works the same as if aligned.
60  * 
61  */
62
63
64 static inline u32 le_to_h_u32(const u8* buf)
65 {
66         return (u32)(buf[0] | buf[1] << 8 | buf[2] << 16 | buf[3] << 24);
67 }
68
69 static inline u16 le_to_h_u16(const u8* buf)
70 {
71         return (u16)(buf[0] | buf[1] << 8);
72 }
73
74 static inline u32 be_to_h_u32(const u8* buf)
75 {
76         return (u32)(buf[3] | buf[2] << 8 | buf[1] << 16 | buf[0] << 24);
77 }
78
79 static inline u16 be_to_h_u16(const u8* buf)
80 {
81         return (u16)(buf[1] | buf[0] << 8);
82 }
83
84 static inline void h_u32_to_le(u8* buf, int val)
85 {
86         buf[3] = (u8) (val >> 24);
87         buf[2] = (u8) (val >> 16);
88         buf[1] = (u8) (val >> 8);
89         buf[0] = (u8) (val >> 0);
90 }
91
92 static inline void h_u32_to_be(u8* buf, int val)
93 {
94         buf[0] = (u8) (val >> 24);
95         buf[1] = (u8) (val >> 16);
96         buf[2] = (u8) (val >> 8);
97         buf[3] = (u8) (val >> 0);
98 }
99
100 static inline void h_u16_to_le(u8* buf, int val)
101 {
102         buf[1] = (u8) (val >> 8);
103         buf[0] = (u8) (val >> 0);
104 }
105
106 static inline void h_u16_to_be(u8* buf, int val)
107 {
108         buf[0] = (u8) (val >> 8);
109         buf[1] = (u8) (val >> 0);
110 }
111
112 #endif /* TYPES_H */