-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathlin.c
246 lines (213 loc) · 6.24 KB
/
lin.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
//###########################################################################
//
// FILE: lin.c
//
// TITLE: C28x LIN driver.
//
//###########################################################################
// $TI Release: F28004x Support Library v1.11.00.00 $
// $Release Date: Sun Oct 4 15:49:15 IST 2020 $
// $Copyright:
// Copyright (C) 2020 Texas Instruments Incorporated - http://www.ti.com/
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions
// are met:
//
// Redistributions of source code must retain the above copyright
// notice, this list of conditions and the following disclaimer.
//
// Redistributions in binary form must reproduce the above copyright
// notice, this list of conditions and the following disclaimer in the
// documentation and/or other materials provided with the
// distribution.
//
// Neither the name of Texas Instruments Incorporated nor the names of
// its contributors may be used to endorse or promote products derived
// from this software without specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
// $
//###########################################################################
#include "lin.h"
//*****************************************************************************
//
// LIN_initModule
//
//*****************************************************************************
void
LIN_initModule(uint32_t base)
{
//
// Check the arguments.
//
ASSERT(LIN_isBaseValid(base));
EALLOW;
//
// Reset LIN module
// Release from hard reset
//
LIN_disableModule(base);
LIN_enableModule(base);
//
// Enter Software Reset State
//
LIN_enterSoftwareReset(base);
//
// Enable LIN Mode
//
LIN_disableSCIMode(base);
//
// Set LIN mode to Master
//
LIN_setLINMode(base, LIN_MODE_LIN_MASTER);
//
// Enable Fixed baud rate mode
//
LIN_disableAutomaticBaudrate(base);
//
// Use the set frame length and not ID4/ID5 bits for length control
//
LIN_setCommMode(base, LIN_COMM_LIN_USELENGTHVAL);
//
// Setup to continue operating on emulation suspend
//
LIN_setDebugSuspendMode(base, LIN_DEBUG_COMPLETE);
//
// Use Enhanced Checksum
//
LIN_setChecksumType(base, LIN_CHECKSUM_ENHANCED);
//
// Message filtering uses slave task ID byte
//
LIN_setMessageFiltering(base, LIN_MSG_FILTER_IDSLAVE);
//
// Disable Internal loopback for external communication
//
LIN_disableIntLoopback(base);
//
// Enable multi-buffer mode
//
LIN_enableMultibufferMode(base);
//
// Enable parity check on received ID
//
LIN_enableParity(base);
//
// Enable transfer of data to and from the shift registers
//
LIN_enableDataTransmitter(base);
LIN_enableDataReceiver(base);
//
// Enable the triggering of checksum compare on extended frames
//
LIN_triggerChecksumCompare(base);
//
// Set LIN interrupts to disabled
//
LIN_disableInterrupt(base, LIN_INT_ALL);
//
// Set Baud Rate Settings - 100MHz Device
//
LIN_setBaudRatePrescaler(base, 96U, 11U);
LIN_setMaximumBaudRate(base, 100000000U);
//
// Set response field to 1 byte
//
LIN_setFrameLength(base, 1U);
//
// Configure sync field
// Sync break (13 + 5 = 18 Tbits)
// Sync delimiter (1 + 3 = 4 Tbits)
//
LIN_setSyncFields(base, 5U, 3U);
//
// Set Mask ID so TX/RX match will always happen
//
LIN_setTxMask(base, 0xFFU);
LIN_setRxMask(base, 0xFFU);
//
// Disable IODFT testing and external loopback mode
//
LIN_disableExtLoopback(base);
//
// Finally exit SW reset and enter LIN ready state
//
LIN_exitSoftwareReset(base);
EDIS;
}
//*****************************************************************************
//
// LIN_sendData
//
//*****************************************************************************
void
LIN_sendData(uint32_t base, uint16_t *data)
{
int16_t i;
uint16_t length;
uint16_t *pData;
//
// Check the arguments.
//
ASSERT(LIN_isBaseValid(base));
//
// Get the length from the SCIFORMAT register.
//
length = (uint16_t)((HWREG_BP(base + LIN_O_SCIFORMAT) &
LIN_SCIFORMAT_LENGTH_M) >> LIN_SCIFORMAT_LENGTH_S);
pData = data + length;
//
// Shift each 8-bit piece of data into the correct register.
//
for(i = (int32_t)length; i >= 0; i--)
{
if(pData != 0U)
{
HWREGB(base + LIN_O_TD0 + ((uint16_t)i ^ 3U)) = *pData;
pData--;
}
}
}
//*****************************************************************************
//
// LIN_getData
//
//*****************************************************************************
void
LIN_getData(uint32_t base, uint16_t * const data)
{
uint16_t i;
uint16_t length;
uint16_t *pData = data;
//
// Check the arguments.
//
ASSERT(LIN_isBaseValid(base));
//
// Get the length from the SCIFORMAT register.
//
length = (uint16_t)((HWREG_BP(base + LIN_O_SCIFORMAT) &
LIN_SCIFORMAT_LENGTH_M) >> LIN_SCIFORMAT_LENGTH_S);
//
// Read each 8-bit piece of data.
//
for(i = 0U; i <= length; i++)
{
if(pData != 0U)
{
*pData = HWREGB(base + LIN_O_RD0 + ((uint32_t)i ^ 3U));
pData++;
}
}
}