1 |
145 |
lanttu |
/*
|
2 |
|
|
* Copyright (c) 2010, Mentor Graphics Corporation
|
3 |
|
|
* All rights reserved.
|
4 |
|
|
*
|
5 |
|
|
* Redistribution and use in source and binary forms, with or without
|
6 |
|
|
* modification, are permitted provided that the following conditions are met:
|
7 |
|
|
*
|
8 |
|
|
* 1. Redistributions of source code must retain the above copyright notice,
|
9 |
|
|
* this list of conditions and the following disclaimer.
|
10 |
|
|
* 2. Redistributions in binary form must reproduce the above copyright notice,
|
11 |
|
|
* this list of conditions and the following disclaimer in the documentation
|
12 |
|
|
* and/or other materials provided with the distribution.
|
13 |
|
|
* 3. Neither the name of the <ORGANIZATION> nor the names of its contributors
|
14 |
|
|
* may be used to endorse or promote products derived from this software
|
15 |
|
|
* without specific prior written permission.
|
16 |
|
|
*
|
17 |
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
18 |
|
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
19 |
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
20 |
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
|
21 |
|
|
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
22 |
|
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
23 |
|
|
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
24 |
|
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
25 |
|
|
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
26 |
|
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
27 |
|
|
* POSSIBILITY OF SUCH DAMAGE.
|
28 |
|
|
*/
|
29 |
|
|
|
30 |
|
|
|
31 |
|
|
|
32 |
|
|
#include <openmcapi.h>
|
33 |
|
|
|
34 |
|
|
/*************************************************************************
|
35 |
|
|
*
|
36 |
|
|
* FUNCTION
|
37 |
|
|
*
|
38 |
|
|
* mcapi_encode_handle
|
39 |
|
|
*
|
40 |
|
|
* DESCRIPTION
|
41 |
|
|
*
|
42 |
|
|
* Encodes a handle using the index of the respective node and
|
43 |
|
|
* endpoint.
|
44 |
|
|
*
|
45 |
|
|
* INPUTS
|
46 |
|
|
*
|
47 |
|
|
* node_idx The index into the global data structure
|
48 |
|
|
* of the node to which the handle applies.
|
49 |
|
|
* endp_idx The index into the node's endpoint list
|
50 |
|
|
* to which the handle applies.
|
51 |
|
|
*
|
52 |
|
|
* OUTPUTS
|
53 |
|
|
*
|
54 |
|
|
* The 32-bit encoded handle.
|
55 |
|
|
*
|
56 |
|
|
*************************************************************************/
|
57 |
|
|
mcapi_endpoint_t mcapi_encode_handle(mcapi_uint16_t node_idx,
|
58 |
|
|
mcapi_uint16_t endp_idx)
|
59 |
|
|
{
|
60 |
|
|
mcapi_endpoint_t handle;
|
61 |
|
|
|
62 |
|
|
/* Put the node index in the handle. */
|
63 |
|
|
handle = node_idx;
|
64 |
|
|
|
65 |
|
|
/* Move the node ID left 16-bits. */
|
66 |
|
|
handle <<= 16;
|
67 |
|
|
|
68 |
|
|
/* Add the endpoint index to the lower 16-bits of the handle. */
|
69 |
|
|
handle |= endp_idx;
|
70 |
|
|
|
71 |
|
|
return (handle);
|
72 |
|
|
|
73 |
|
|
}
|
74 |
|
|
|
75 |
|
|
/*************************************************************************
|
76 |
|
|
*
|
77 |
|
|
* FUNCTION
|
78 |
|
|
*
|
79 |
|
|
* mcapi_decode_handle
|
80 |
|
|
*
|
81 |
|
|
* DESCRIPTION
|
82 |
|
|
*
|
83 |
|
|
* Decodes a handle to retrieve the index of the respective node and
|
84 |
|
|
* endpoint.
|
85 |
|
|
*
|
86 |
|
|
* INPUTS
|
87 |
|
|
*
|
88 |
|
|
* handle The encoded handle.
|
89 |
|
|
* *node_idx A pointer to memory that will hold the
|
90 |
|
|
* decoded node index into the global data
|
91 |
|
|
* structure.
|
92 |
|
|
* *endp_idx A pointer to memory that will hold the
|
93 |
|
|
* decoded endpoint index into the endpoint
|
94 |
|
|
* list of the respective node.
|
95 |
|
|
*
|
96 |
|
|
* OUTPUTS
|
97 |
|
|
*
|
98 |
|
|
* None.
|
99 |
|
|
*
|
100 |
|
|
*************************************************************************/
|
101 |
|
|
void mcapi_decode_handle(mcapi_endpoint_t handle, int *node_idx, int *endp_idx)
|
102 |
|
|
{
|
103 |
|
|
/* Extract the high 16-bits by chopping off the low 16-bits and moving
|
104 |
|
|
* the remaining data over 16-bits.
|
105 |
|
|
*/
|
106 |
|
|
*node_idx = (handle & 0xffff0000) >> 16;
|
107 |
|
|
|
108 |
|
|
/* Extract the low 16-bits by chopping off the high 16-bits. */
|
109 |
|
|
*endp_idx = (handle & 0x0000ffff);
|
110 |
|
|
|
111 |
|
|
}
|