summaryrefslogtreecommitdiff
path: root/sensorlib/i2cm_drv.h
blob: 397c04dbc5b1abe407434ced02a8bcc96849273f (plain)
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
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
//*****************************************************************************
//
// i2cm_drv.h - Prototypes for the interrupt-driven I2C master driver.
//
// Copyright (c) 2012-2014 Texas Instruments Incorporated.  All rights reserved.
// Software License Agreement
// 
// Texas Instruments (TI) is supplying this software for use solely and
// exclusively on TI's microcontroller products. The software is owned by
// TI and/or its suppliers, and is protected under applicable copyright
// laws. You may not combine this software with "viral" open-source
// software in order to form a larger program.
// 
// THIS SOFTWARE IS PROVIDED "AS IS" AND WITH ALL FAULTS.
// NO WARRANTIES, WHETHER EXPRESS, IMPLIED OR STATUTORY, INCLUDING, BUT
// NOT LIMITED TO, IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
// A PARTICULAR PURPOSE APPLY TO THIS SOFTWARE. TI SHALL NOT, UNDER ANY
// CIRCUMSTANCES, BE LIABLE FOR SPECIAL, INCIDENTAL, OR CONSEQUENTIAL
// DAMAGES, FOR ANY REASON WHATSOEVER.
// 
// This is part of revision 2.1.0.12573 of the Tiva Firmware Development Package.
//
//*****************************************************************************

#ifndef __SENSORLIB_I2CM_DRV_H__
#define __SENSORLIB_I2CM_DRV_H__

//*****************************************************************************
//
// If building with a C++ compiler, make all of the definitions in this header
// have a C binding.
//
//*****************************************************************************
#ifdef __cplusplus
extern "C"
{
#endif

//*****************************************************************************
//
// A prototype for the callback function used by the I2C master driver.
//
//*****************************************************************************
typedef void (tSensorCallback)(void *pvData, uint_fast8_t ui8Status);

//*****************************************************************************
//
// The possible status values that can be returned by the I2C command callback.
//
//*****************************************************************************
#define I2CM_STATUS_SUCCESS     0
#define I2CM_STATUS_ADDR_NACK   1
#define I2CM_STATUS_DATA_NACK   2
#define I2CM_STATUS_ARB_LOST    3
#define I2CM_STATUS_ERROR       4
#define I2CM_STATUS_BATCH_DONE  5
#define I2CM_STATUS_BATCH_READY 6

//*****************************************************************************
//
// The maximum number of outstanding commands for each I2C master instance.
//
//*****************************************************************************
#define NUM_I2CM_COMMANDS       10

//*****************************************************************************
//
// The structure that defines an I2C master command.
//
//*****************************************************************************
typedef struct
{
    //
    // The I2C address of the device being accessed.
    //
    uint8_t ui8Addr;

    //
    // The data buffer containing the data to be written.
    //
    const uint8_t *pui8WriteData;

    //
    // The total number of bytes to be written by the command.
    //
    uint16_t ui16WriteCount;

    //
    // The number of bytes to be written in each batch.
    //
    uint16_t ui16WriteBatchSize;

    //
    // The data buffer to store data that has been read.
    //
    uint8_t *pui8ReadData;

    //
    // The total number of bytes to be read by the command.
    //
    uint16_t ui16ReadCount;

    //
    // The number of bytes to be read in each chuck.
    //
    uint16_t ui16ReadBatchSize;

    //
    // The function that is called when this command has been transferred.
    //
    tSensorCallback *pfnCallback;

    //
    // The pointer provided to the callback function.
    //
    void *pvCallbackData;
}
tI2CMCommand;

//*****************************************************************************
//
// The structure that contains the state of an I2C master instance.
//
//*****************************************************************************
typedef struct
{
    //
    // The base address of the I2C module.
    //
    uint32_t ui32Base;

    //
    // The interrupt number associated with the I2C module.
    //
    uint8_t ui8Int;

    //
    // The uDMA channel used to write data to the I2C module.
    //
    uint8_t ui8TxDMA;

    //
    // The uDMA channel used to read data from the I2C module.
    //
    uint8_t ui8RxDMA;

    //
    // The current state of the I2C master driver.
    //
    uint8_t ui8State;

    //
    // The offset of the next command to be read.  The buffer is empty when
    // this value is equal to the write pointer.
    //
    uint8_t ui8ReadPtr;

    //
    // The offset of the next space in the buffer to write a command.  The
    // buffer is full if this value is one less than the read pointer.
    //
    uint8_t ui8WritePtr;

    //
    // The index into the data buffer of the next byte to be transferred.
    //
    uint16_t ui16Index;

    //
    // An array of commands queued up to be sent via the I2C module.
    //
    tI2CMCommand pCommands[NUM_I2CM_COMMANDS];
}
tI2CMInstance;

//*****************************************************************************
//
// The structure that contains the state of an I2C read-modify-write request of
// 8 bits of data.
//
//*****************************************************************************
typedef struct
{
    //
    // A pointer to the I2C master interface instance used for the
    // read-modify-write request.
    //
    tI2CMInstance *psI2CInst;

    //
    // The buffer used for the I2C transfers.
    //
    uint8_t pui8Buffer[4];

    //
    // The current state of the I2C read-modify-write state machine.
    //
    uint8_t ui8State;

    //
    // The I2C address of the device being accessed.
    //
    uint8_t ui8Addr;

    //
    // The value to AND with the I2C register data.
    //
    uint8_t ui8Mask;

    //
    // The value to OR with the I2C register data.
    //
    uint8_t ui8Value;

    //
    // The function that is called when the read-modify-write has been
    // completed.
    //
    tSensorCallback *pfnCallback;

    //
    // The pointer provided to the callback function.
    //
    void *pvCallbackData;
}
tI2CMReadModifyWrite8;

//*****************************************************************************
//
// The structure that contains the state of an I2C read-modify-write request of
// 16 bits of data.
//
//*****************************************************************************
typedef struct
{
    //
    // A pointer to the I2C master interface instance used for the
    // read-modify-write request.
    //
    tI2CMInstance *psI2CInst;

    //
    // The buffer used for the I2C transfers.
    //
    uint8_t pui8Buffer[4];

    //
    // The current state of the I2C read-modify-write state machine.
    //
    uint8_t ui8State;

    //
    // The I2C address of the device being accessed.
    //
    uint8_t ui8Addr;

    //
    // The value to AND with the I2C register data.
    //
    uint16_t ui16Mask;

    //
    // The value to OR with the I2C register data.
    //
    uint16_t ui16Value;

    //
    // The function that is called when the read-modify-write has been
    // completed.
    //
    tSensorCallback *pfnCallback;

    //
    // The pointer provided to the callback function.
    //
    void *pvCallbackData;
}
tI2CMReadModifyWrite16;

//*****************************************************************************
//
// The structure that contains the state of an I2C write request of 8-bit data.
//
//*****************************************************************************
typedef struct
{
    //
    // A pointer to the I2C master interface instance used for the write
    // request.
    //
    tI2CMInstance *psI2CInst;

    //
    // The buffer used for the I2C transfers.
    //
    uint8_t pui8Buffer[2];

    //
    // The number of values to write to the I2C device.
    //
    uint16_t ui16Count;

    //
    // A pointer to the buffer containing the data to write to the I2C device.
    //
    const uint8_t *pui8Data;

    //
    // The function that is called when the write has been completed.
    //
    tSensorCallback *pfnCallback;

    //
    // The pointer provided to the callback function.
    //
    void *pvCallbackData;
}
tI2CMWrite8;

//*****************************************************************************
//
// The structure that contains the state of an I2C read request of 16-bit data
// from a big-endian device.
//
//*****************************************************************************
typedef struct
{
    //
    // A pointer to the I2C master interface instance used for the read
    // request.
    //
    tI2CMInstance *psI2CInst;

    //
    // A pointer to the buffer containing the data read from the I2C device.
    //
    uint8_t *pui8Data;

    //
    // The number of 16-bit values to read from the I2C device.
    //
    uint16_t ui16Count;

    //
    // The function that is called when the read has been completed.
    //
    tSensorCallback *pfnCallback;

    //
    // The pointer provided to the callback function.
    //
    void *pvCallbackData;
}
tI2CMRead16BE;

//*****************************************************************************
//
// The structure that contains the state of an I2C write request of 16-bit data
// to a big-endian device.
//
//*****************************************************************************
typedef struct
{
    //
    // A pointer to the I2C master interface instance used for the write
    // request.
    //
    tI2CMInstance *psI2CInst;

    //
    // The buffer used for the I2C transfers.
    //
    uint8_t pui8Buffer[2];

    //
    // The number of 16-bit values to write to the I2C device.
    //
    uint16_t ui16Count;

    //
    // A pointer to the buffer containing the data to write to the I2C device.
    //
    const uint8_t *pui8Data;

    //
    // The function that is called when the write has been completed.
    //
    tSensorCallback *pfnCallback;

    //
    // The pointer provided to the callback function.
    //
    void *pvCallbackData;
}
tI2CMWrite16BE;

//*****************************************************************************
//
// Prototypes.
//
//*****************************************************************************
extern void I2CMIntHandler(tI2CMInstance *psInst);
extern void I2CMInit(tI2CMInstance *psInst, uint32_t ui32Base,
                     uint_fast8_t ui8Int, uint_fast8_t ui8TxDMA,
                     uint_fast8_t ui8RxDMA, uint32_t ui32Clock);
extern uint_fast8_t I2CMCommand(tI2CMInstance *psInst, uint_fast8_t ui8Addr,
                                const uint8_t *pui8WriteData,
                                uint_fast16_t ui16WriteCount,
                                uint_fast16_t ui16WriteBatchSize,
                                uint8_t *pui8ReadData,
                                uint_fast16_t ui16ReadCount,
                                uint_fast16_t ui16ReadBatchSize,
                                tSensorCallback *pfnCallback,
                                void *pvCallbackData);
extern uint_fast8_t I2CMTransferResume(tI2CMInstance *psInst,
                                       uint8_t *pui8Data);
extern uint_fast8_t I2CMReadModifyWrite8(tI2CMReadModifyWrite8 *psInst,
                                         tI2CMInstance *psI2CInst,
                                         uint_fast8_t ui8Addr,
                                         uint_fast8_t ui8Reg,
                                         uint_fast8_t ui8Mask,
                                         uint_fast8_t ui8Value,
                                         tSensorCallback *pfnCallback,
                                         void *pvCallbackData);
extern uint_fast8_t I2CMReadModifyWrite16LE(tI2CMReadModifyWrite16 *psInst,
                                            tI2CMInstance *psI2CInst,
                                            uint_fast8_t ui8Addr,
                                            uint_fast8_t ui8Reg,
                                            uint_fast16_t ui16Mask,
                                            uint_fast16_t ui16Value,
                                            tSensorCallback *pfnCallback,
                                            void *pvCallbackData);
extern uint_fast8_t I2CMWrite8(tI2CMWrite8 *psInst, tI2CMInstance *psI2CInst,
                               uint_fast8_t ui8Addr, uint_fast8_t ui8Reg,
                               const uint8_t *pui8Data,
                               uint_fast16_t ui16Count,
                               tSensorCallback *pfnCallback,
                               void *pvCallbackData);
extern uint_fast8_t I2CMRead16BE(tI2CMRead16BE *psInst,
                                 tI2CMInstance *psI2CInst,
                                 uint_fast8_t ui8Addr, uint_fast8_t ui8Reg,
                                 uint16_t *pui16Data, uint_fast16_t ui16Count,
                                 tSensorCallback *pfnCallback,
                                 void *pvCallbackData);
extern uint_fast8_t I2CMWrite16BE(tI2CMWrite16BE *psInst,
                                  tI2CMInstance *psI2CInst,
                                  uint_fast8_t ui8Addr, uint_fast8_t ui8Reg,
                                  const uint16_t *pui16Data,
                                  uint_fast16_t ui16Count,
                                  tSensorCallback *pfnCallback,
                                  void *pvCallbackData);

//*****************************************************************************
//
// A convenience wrapper around I2CMCommand to perform a write.
//
//*****************************************************************************
inline uint_fast8_t
I2CMWrite(tI2CMInstance *psInst, uint_fast8_t ui8Addr, const uint8_t *pui8Data,
          uint_fast16_t ui16Count, tSensorCallback *pfnCallback,
          void *pvCallbackData)
{
    return(I2CMCommand(psInst, ui8Addr, pui8Data, ui16Count, ui16Count, 0, 0,
                       0, pfnCallback, pvCallbackData));
}

//*****************************************************************************
//
// A convenience wrapper around I2CMCommand to perform a read.
//
//*****************************************************************************
inline uint_fast8_t
I2CMRead(tI2CMInstance *psInst, uint_fast8_t ui8Addr,
         const uint8_t *pui8WriteData, uint_fast16_t ui16WriteCount,
         uint8_t *pui8ReadData, uint_fast16_t ui16ReadCount,
         tSensorCallback *pfnCallback, void *pvCallbackData)
{
    return(I2CMCommand(psInst, ui8Addr, pui8WriteData, ui16WriteCount,
                       ui16WriteCount, pui8ReadData, ui16ReadCount,
                       ui16ReadCount, pfnCallback, pvCallbackData));
}

//*****************************************************************************
//
// A convenience wrapper around I2CMCommand to perform a batched write.
//
//*****************************************************************************
inline uint_fast8_t
I2CMWriteBatched(tI2CMInstance *psInst, uint_fast8_t ui8Addr,
                 const uint8_t *pui8Data, uint_fast16_t ui16Count,
                 uint_fast16_t ui16BatchSize, tSensorCallback *pfnCallback,
                 void *pvCallbackData)
{
    return(I2CMCommand(psInst, ui8Addr, pui8Data, ui16Count, ui16BatchSize, 0,
                       0, 0, pfnCallback, pvCallbackData));
}

//*****************************************************************************
//
// A convenience wrapper around I2CMCommand to perform a batched read.
//
//*****************************************************************************
inline uint_fast8_t
I2CMReadBatched(tI2CMInstance *psInst, uint_fast8_t ui8Addr,
                const uint8_t *pui8WriteData, uint_fast16_t ui16WriteCount,
                uint_fast16_t ui16WriteBatchSize, uint8_t *pui8ReadData,
                uint_fast16_t ui16ReadCount, uint_fast16_t ui16ReadBatchSize,
                tSensorCallback *pfnCallback, void *pvCallbackData)
{
    return(I2CMCommand(psInst, ui8Addr, pui8WriteData, ui16WriteCount,
                       ui16WriteBatchSize, pui8ReadData, ui16ReadCount,
                       ui16ReadBatchSize, pfnCallback, pvCallbackData));
}

//*****************************************************************************
//
// A 16-bit big-endian read-modify-write in terms of the little-endian version.
//
//*****************************************************************************
inline uint_fast8_t
I2CMReadModifyWrite16BE(tI2CMReadModifyWrite16 *psInst,
                        tI2CMInstance *psI2CInst, uint_fast8_t ui8Addr,
                        uint_fast8_t ui8Reg, uint_fast16_t ui16Mask,
                        uint_fast16_t ui16Value, tSensorCallback *pfnCallback,
                        void *pvCallbackData)
{
    return(I2CMReadModifyWrite16LE(psInst, psI2CInst, ui8Addr, ui8Reg,
                                   (((ui16Mask & 0xff00) >> 8) |
                                    ((ui16Mask & 0x00ff) << 8)),
                                   (((ui16Value & 0xff00) >> 8) |
                                    ((ui16Value & 0x00ff) << 8)),
                                   pfnCallback, pvCallbackData));
}

//*****************************************************************************
//
// Mark the end of the C bindings section for C++ compilers.
//
//*****************************************************************************
#ifdef __cplusplus
}
#endif

#endif // __SENSORLIB_I2CM_DRV_H__