Cleanup of config/includes.
[fw/openocd] / src / jtag / drivers / versaloon / versaloon_include.h
1 /***************************************************************************
2  *   Copyright (C) 2009 by Simon Qian <SimonQian@SimonQian.com>            *
3  *                                                                         *
4  *   This program is free software; you can redistribute it and/or modify  *
5  *   it under the terms of the GNU General Public License as published by  *
6  *   the Free Software Foundation; either version 2 of the License, or     *
7  *   (at your option) any later version.                                   *
8  *                                                                         *
9  *   This program is distributed in the hope that it will be useful,       *
10  *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
11  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
12  *   GNU General Public License for more details.                          *
13  *                                                                         *
14  *   You should have received a copy of the GNU General Public License     *
15  *   along with this program.  If not, see <http://www.gnu.org/licenses/>. *
16  ***************************************************************************/
17
18 #ifndef OPENOCD_JTAG_DRIVERS_VERSALOON_VERSALOON_INCLUDE_H
19 #define OPENOCD_JTAG_DRIVERS_VERSALOON_VERSALOON_INCLUDE_H
20
21 #include "helper/system.h"
22 /* This file is used to include different header and macros */
23 /* according to different platform */
24 #include <jtag/interface.h>
25 #include <jtag/commands.h>
26
27 #define PARAM_CHECK                                                     1
28
29 #define sleep_ms(ms)                                            jtag_sleep((ms) * 1000)
30 #define dimof(arr)                                                      (sizeof(arr) / sizeof((arr)[0]))
31 #define TO_STR(name)                                            #name
32
33 #define RESULT                                                          int
34 #define LOG_BUG                                                         LOG_ERROR
35
36 /* Common error messages */
37 #define ERRMSG_NOT_ENOUGH_MEMORY                        "Lack of memory."
38 #define ERRCODE_NOT_ENOUGH_MEMORY                       ERROR_FAIL
39
40 #define ERRMSG_INVALID_VALUE                            "%d is invalid for %s."
41 #define ERRMSG_INVALID_INDEX                            "Index %d is invalid for %s."
42 #define ERRMSG_INVALID_USAGE                            "Invalid usage of %s"
43 #define ERRMSG_INVALID_TARGET                           "Invalid %s"
44 #define ERRMSG_INVALID_PARAMETER                        "Invalid parameter of %s."
45 #define ERRMSG_INVALID_INTERFACE_NUM            "invalid interface %d"
46 #define ERRMSG_INVALID_BUFFER                           "Buffer %s is not valid."
47 #define ERRCODE_INVALID_BUFFER                          ERROR_FAIL
48 #define ERRCODE_INVALID_PARAMETER                       ERROR_FAIL
49
50 #define ERRMSG_NOT_SUPPORT_BY                           "%s is not supported by %s."
51
52 #define ERRMSG_FAILURE_OPERATION                        "Fail to %s."
53 #define ERRMSG_FAILURE_OPERATION_MESSAGE        "Fail to %s, %s"
54 #define ERRCODE_FAILURE_OPERATION                       ERROR_FAIL
55
56 #define GET_U16_MSBFIRST(p)                     (((*((uint8_t *)(p) + 0)) << 8) | \
57                                                                         ((*((uint8_t *)(p) + 1)) << 0))
58 #define GET_U32_MSBFIRST(p)                     (((*((uint8_t *)(p) + 0)) << 24) | \
59                                                                         ((*((uint8_t *)(p) + 1)) << 16) | \
60                                                                         ((*((uint8_t *)(p) + 2)) << 8) | \
61                                                                         ((*((uint8_t *)(p) + 3)) << 0))
62 #define GET_U16_LSBFIRST(p)                     (((*((uint8_t *)(p) + 0)) << 0) | \
63                                                                         ((*((uint8_t *)(p) + 1)) << 8))
64 #define GET_U32_LSBFIRST(p)                     (((*((uint8_t *)(p) + 0)) << 0) | \
65                                                                         ((*((uint8_t *)(p) + 1)) << 8) | \
66                                                                         ((*((uint8_t *)(p) + 2)) << 16) | \
67                                                                         ((*((uint8_t *)(p) + 3)) << 24))
68
69 #define SET_U16_MSBFIRST(p, v)          \
70         do {\
71                 *((uint8_t *)(p) + 0) = (((uint16_t)(v)) >> 8) & 0xFF;\
72                 *((uint8_t *)(p) + 1) = (((uint16_t)(v)) >> 0) & 0xFF;\
73         } while (0)
74 #define SET_U32_MSBFIRST(p, v)          \
75         do {\
76                 *((uint8_t *)(p) + 0) = (((uint32_t)(v)) >> 24) & 0xFF;\
77                 *((uint8_t *)(p) + 1) = (((uint32_t)(v)) >> 16) & 0xFF;\
78                 *((uint8_t *)(p) + 2) = (((uint32_t)(v)) >> 8) & 0xFF;\
79                 *((uint8_t *)(p) + 3) = (((uint32_t)(v)) >> 0) & 0xFF;\
80         } while (0)
81 #define SET_U16_LSBFIRST(p, v)          \
82         do {\
83                 *((uint8_t *)(p) + 0) = (((uint16_t)(v)) >> 0) & 0xFF;\
84                 *((uint8_t *)(p) + 1) = (((uint16_t)(v)) >> 8) & 0xFF;\
85         } while (0)
86 #define SET_U32_LSBFIRST(p, v)          \
87         do {\
88                 *((uint8_t *)(p) + 0) = (((uint32_t)(v)) >> 0) & 0xFF;\
89                 *((uint8_t *)(p) + 1) = (((uint32_t)(v)) >> 8) & 0xFF;\
90                 *((uint8_t *)(p) + 2) = (((uint32_t)(v)) >> 16) & 0xFF;\
91                 *((uint8_t *)(p) + 3) = (((uint32_t)(v)) >> 24) & 0xFF;\
92         } while (0)
93
94 #define GET_LE_U16(p)                           GET_U16_LSBFIRST(p)
95 #define GET_LE_U32(p)                           GET_U32_LSBFIRST(p)
96 #define GET_BE_U16(p)                           GET_U16_MSBFIRST(p)
97 #define GET_BE_U32(p)                           GET_U32_MSBFIRST(p)
98 #define SET_LE_U16(p, v)                        SET_U16_LSBFIRST(p, v)
99 #define SET_LE_U32(p, v)                        SET_U32_LSBFIRST(p, v)
100 #define SET_BE_U16(p, v)                        SET_U16_MSBFIRST(p, v)
101 #define SET_BE_U32(p, v)                        SET_U32_MSBFIRST(p, v)
102
103 #endif /* OPENOCD_JTAG_DRIVERS_VERSALOON_VERSALOON_INCLUDE_H */