forked from joan2937/lg
-
Notifications
You must be signed in to change notification settings - Fork 2
/
lgSPI.c
218 lines (165 loc) · 5.04 KB
/
lgSPI.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
/*
This is free and unencumbered software released into the public domain.
Anyone is free to copy, modify, publish, use, compile, sell, or
distribute this software, either in source code form or as a compiled
binary, for any purpose, commercial or non-commercial, and by any
means.
In jurisdictions that recognize copyright laws, the author or authors
of this software dedicate any and all copyright interest in the
software to the public domain. We make this dedication for the benefit
of the public at large and to the detriment of our heirs and
successors. We intend this dedication to be an overt act of
relinquishment in perpetuity of all present and future rights to this
software under copyright law.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR
OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
OTHER DEALINGS IN THE SOFTWARE.
For more information, please refer to <http://unlicense.org/>
*/
#include <stdlib.h>
#include <linux/spi/spidev.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <sys/ioctl.h>
#include <fcntl.h>
#include <unistd.h>
#include <string.h>
#include "lgpio.h"
#include "lgDbg.h"
#include "lgHdl.h"
typedef struct
{
int speed;
int fd;
uint32_t flags;
} lgSpiObj_t, *lgSpiObj_p;
static int xSpiXfer(
int fd, int speed, const char *txBuf, char *rxBuf, int count)
{
struct spi_ioc_transfer spi;
memset(&spi, 0, sizeof(spi));
spi.tx_buf = (uintptr_t)txBuf;
spi.rx_buf = (uintptr_t)rxBuf;
spi.len = count;
spi.speed_hz = speed;
spi.delay_usecs = 0;
spi.bits_per_word = 8;
spi.cs_change = 0;
if (ioctl(fd, SPI_IOC_MESSAGE(1), &spi) >= 0)
return count;
else
return LG_SPI_XFER_FAILED;
}
static void _lgSpiClose(lgSpiObj_p spi)
{
if (spi) close(spi->fd);
}
int lgSpiOpen(
int spiDev, int spiChan, int baud, int spiFlags)
{
int handle;
lgSpiObj_p spi;
int fd;
char spiMode;
char spiBits = 8;
char dev[128];
LG_DBG(LG_DEBUG_TRACE, "spiDev=%d spiChan=%d baud=%d spiFlags=0x%X",
spiDev, spiChan, baud, spiFlags);
spiMode = spiFlags & 3;
spiBits = 8;
sprintf(dev, "/dev/spidev%d.%d", spiDev, spiChan);
if ((fd = open(dev, O_RDWR)) < 0)
{
return LG_SPI_OPEN_FAILED;
}
if (ioctl(fd, SPI_IOC_WR_MODE, &spiMode) < 0)
{
close(fd);
return LG_SPI_IOCTL_FAILED;
}
if (ioctl(fd, SPI_IOC_WR_BITS_PER_WORD, &spiBits) < 0)
{
close(fd);
return LG_SPI_IOCTL_FAILED;
}
if (ioctl(fd, SPI_IOC_WR_MAX_SPEED_HZ, &baud) < 0)
{
close(fd);
return LG_SPI_IOCTL_FAILED;
}
handle = lgHdlAlloc(
LG_HDL_TYPE_SPI, sizeof(lgSpiObj_t), (void **)&spi, _lgSpiClose);
if (handle < 0)
{
PARAM_ERROR(LG_NO_HANDLE, "no free handles");
}
spi->fd = fd;
spi->speed = baud;
spi->flags = spiFlags;
return handle;
}
int lgSpiClose(int handle)
{
int status;
lgSpiObj_p spi;
LG_DBG(LG_DEBUG_TRACE, "handle=%d", handle);
status = lgHdlGetLockedObj(handle, LG_HDL_TYPE_SPI, (void **)&spi);
if (status == LG_OKAY)
{
status = lgHdlFree(handle, LG_HDL_TYPE_SPI);
lgHdlUnlock(handle);
}
return status;
}
int lgSpiRead(int handle, char *rxBuf, int count)
{
int status;
lgSpiObj_p spi;
LG_DBG(LG_DEBUG_TRACE, "handle=%d count=%d [%s]",
handle, count, lgDbgBuf2Str(count, rxBuf));
if (((unsigned)count > LG_MAX_SPI_DEVICE_COUNT) || !count)
PARAM_ERROR(LG_BAD_SPI_COUNT, "bad count (%d)", count);
status = lgHdlGetLockedObj(handle, LG_HDL_TYPE_SPI, (void **)&spi);
if (status == LG_OKAY)
{
status = xSpiXfer(spi->fd, spi->speed, NULL, rxBuf, count);
lgHdlUnlock(handle);
}
return status;
}
int lgSpiWrite(int handle, const char *txBuf, int count)
{
int status;
lgSpiObj_p spi;
LG_DBG(LG_DEBUG_TRACE, "handle=%d count=%d [%s]",
handle, count, lgDbgBuf2Str(count, txBuf));
if (((unsigned)count > LG_MAX_SPI_DEVICE_COUNT) || !count)
PARAM_ERROR(LG_BAD_SPI_COUNT, "bad count (%d)", count);
status = lgHdlGetLockedObj(handle, LG_HDL_TYPE_SPI, (void **)&spi);
if (status == LG_OKAY)
{
status = xSpiXfer(spi->fd, spi->speed, txBuf, NULL, count);
lgHdlUnlock(handle);
}
return status;
}
int lgSpiXfer(int handle, const char *txBuf, char *rxBuf, int count)
{
int status;
lgSpiObj_p spi;
LG_DBG(LG_DEBUG_TRACE, "handle=%d count=%d [%s]",
handle, count, lgDbgBuf2Str(count, txBuf));
if (((unsigned)count > LG_MAX_SPI_DEVICE_COUNT) || !count)
PARAM_ERROR(LG_BAD_SPI_COUNT, "bad count (%d)", count);
status = lgHdlGetLockedObj(handle, LG_HDL_TYPE_SPI, (void **)&spi);
if (status == LG_OKAY)
{
status = xSpiXfer(spi->fd, spi->speed, txBuf, rxBuf, count);
lgHdlUnlock(handle);
}
return status;
}