summaryrefslogtreecommitdiff
path: root/kernel/testcases/lsm303dlh/sensor_lsm303dlh.c
blob: e6c0b9df60caa0301576f04aeb0acdc79dbf2dfd (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
545
546
547
548
549
550
551
552
553
554
555
556
557
/*
 * Copyright (C) 2011 ST-Ericsson
 * License terms: GNU General Public License (GPL) version 2
 *
 * Author: 2011, Chethan Krishna N <chethan.krishna@stericsson.com>
 */


/******************************************************************************/
/* Description: Test x, y and z axis values from acceleromter and magnetometer
*              drivers.
*
* Test Assertion and Strategy: Assert if all three axes data is valid.
*
******************************************************************************/

/* Harness Specific Include Files. */
#include "test.h"
#include "usctest.h"

#include <sys/types.h>
#include <sys/ioctl.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <unistd.h>

#include <errno.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>

/* Extern Global Variables */
extern int Tst_count;		/* counter for tst_xxx routines.         */
extern char *TESTDIR;		/* temporary dir created by tst_tmpdir() */

/* Global Variables */
char *TCID = "lsm303dlh";	/* test program identifier.             */

/* total number of tests in this file. */
int TST_TOTAL = 1;
int id;

#define INVALID_DATA_READ -1
#define VALID_DATA 0
#define MAX_LENGTH 100

char acc_filepath[MAX_LENGTH] =          "/sys/devices/platform/nmk-i2c.2/i2c-2/2-0018/data";
char acc_filepath_activate[MAX_LENGTH] = "/sys/devices/platform/nmk-i2c.2/i2c-2/2-0018/mode";
char acc_filepath_range[MAX_LENGTH] = "/sys/devices/platform/nmk-i2c.2/i2c-2/2-0018/range";
char acc_filepath_sleepwake[MAX_LENGTH] = "/sys/devices/platform/nmk-i2c.2/i2c-2/2-0018/sleep_wake";
char acc_filepath_id[MAX_LENGTH] = "/sys/devices/platform/nmk-i2c.2/i2c-2/2-0018/id";
char acc_filepath_rate[MAX_LENGTH] = "/sys/devices/platform/nmk-i2c.2/i2c-2/2-0018/rate";

char *mag_filepath_range = "/sys/devices/platform/nmk-i2c.2/i2c-2/2-001e/range";
char *mag_filepath =          "/sys/devices/platform/nmk-i2c.2/i2c-2/2-001e/data";
char *mag_filepath_activate = "/sys/devices/platform/nmk-i2c.2/i2c-2/2-001e/mode";
char *mag_filepath_rate = "/sys/devices/platform/nmk-i2c.2/i2c-2/2-001e/rate";
char *mag_filepath_gain = "/sys/devices/platform/nmk-i2c.2/i2c-2/2-001e/gain";

int get_val(char *fname)
{
	FILE *f;
	int data[3], ret;

	f = fopen(fname, "r");
	if (f == NULL)
		return -1;

	if (fscanf(f, "%8x:%8x:%8x", &data[0], &data[1], &data[2]) != 3)
		ret = INVALID_DATA_READ;
	else
		ret = VALID_DATA;

	fclose(f);
	return ret;
}

int acc_set_val()
{
	FILE *f;
	unsigned long val = -1;

	/* Before acrivating device try writting to rate,
	 * range and sleepwake & read out data to cover error cases.
	 */
	if(id == 50) {
		/*write sampling rate value */
		f = fopen(acc_filepath_rate, "w");
		if (f == NULL)
			return -1;
		fputc((int)'0', f);
		fclose(f);

		/*write sampling sleepwake value */
		f = fopen(acc_filepath_sleepwake, "w");
		if (f == NULL)
			return -1;
		fputc((int)'0', f);
		fclose(f);
	}

	/*write range value */
	f = fopen(acc_filepath_range, "w");
	if (f == NULL)
		return -1;
	fputc((int)'1', f);
	fclose(f);

	/*read the output data*/
	get_val(acc_filepath);

	f = fopen(acc_filepath_activate, "w");
	if (f == NULL)
		return -1;

	/* Activate LSM device */
	if (fputc((int)'1', f) == EOF)
		val = EOF;
	else
		val = 0;

	fclose(f);
	return val;
}

int acc_set_properties()
{
	FILE *f;
	unsigned long val = -1;

	if (id == 50) {
		f = fopen(acc_filepath_rate, "w");
		if (f == NULL)
			return -1;

		/*write sampling rate value */
		if (fputc((int)'0', f) == EOF)
			val = EOF;
		else
			val = 0;

		fclose(f);

		f = fopen(acc_filepath_sleepwake, "w");
		if (f == NULL)
			return -1;

		/*write sampling sleepwake value */
		if (fputc((int)'0', f) == EOF)
			val = EOF;
		else
			val = 0;

		fclose(f);
	}

	f = fopen(acc_filepath_range, "w");
	if (f == NULL)
		return -1;

	/*write all the range value specified in datasheet*/
	if (fputc((int)'1', f) == EOF)
		val = EOF;
	else
		val = 0;
	fflush(f);

	if (fputc((int)'2', f) == EOF)
		val = EOF;
	else
		val = 0;
	fflush(f);

	if (fputc((int)'3', f) == EOF)
		val = EOF;
	else
		val = 0;
	fflush(f);

	if (fputc((int)'0', f) == EOF)
		val = EOF;
	else
		val = 0;

	fclose(f);

	return val;
}

int mag_set_properties()
{
	FILE *f;
	unsigned long val = -1;

	f = fopen(mag_filepath_rate, "w");
	if (f == NULL)
		return -1;

	/*write sampling rate value */
	if (fputc((int)'4', f) == EOF)
		val = EOF;
	else
		val = 0;

	fclose(f);

	f = fopen(mag_filepath_range, "w");
	if (f == NULL)
		return -1;

	/*write range value */
	if (fputc((int)'1', f) == EOF)
		val = EOF;
	else
		val = 0;
	fflush(f);

	if (fputc((int)'2', f) == EOF)
		val = EOF;
	else
		val = 0;
	fflush(f);

	if (fputc((int)'3', f) == EOF)
		val = EOF;
	else
		val = 0;
	fflush(f);

	if (fputc((int)'5', f) == EOF)
		val = EOF;
	else
		val = 0;
	fflush(f);

	if (fputc((int)'6', f) == EOF)
		val = EOF;
	else
		val = 0;
	fflush(f);

	if (fputc((int)'7', f) == EOF)
		val = EOF;
	else
		val = 0;
	fflush(f);
	if (fputc((int)'8', f) == EOF)
		val = EOF;
	else
		val = 0;
	fflush(f);
	if (fputc((int)'4', f) == EOF)
		val = EOF;
	else
		val = 0;
	fclose(f);

	return val;
}

int mag_set_val()
{
	FILE *f;
	unsigned long val = -1;

	/* Before acrivating device try writting to rate,
	 * range & read out value to cover error cases.
	 */
	/*write sampling rate value */
	f = fopen(mag_filepath_rate, "w");
	if (f == NULL)
		return -1;
	fputc((int)'4', f);
	fclose(f);

	/*write range value */
	f = fopen(mag_filepath_range, "w");
	if (f == NULL)
		return -1;

	fputc((int)'1', f);
	fclose(f);

	/*read the output data*/
	get_val(mag_filepath);

	f = fopen(mag_filepath_activate, "w");
	if (f == NULL)
		return -1;

	/* Activate LSM device */
	if (fputc((int)'0', f) == EOF)
		val = EOF;
	else
		val = 0;

	fclose(f);
	return val;
}

int acc_get_properties()
{
	FILE *f;
	int data;
	int ret = 4;

	/* read power mode */
	f = fopen(acc_filepath_activate, "r");
	if (f == NULL)
		return -1;

	if (fscanf(f, "%d", &data) != 1)
		goto error;
	else
	    ret--;
	fclose(f);

	/* read range */
	f = fopen(acc_filepath_range, "r");
	if (f == NULL)
		return -1;

	if (fscanf(f, "%d", &data) != 1)
		goto error;
	else
	    ret--;
	if(id == 50) {
		fclose(f);
		/* read data rate */
		f = fopen(acc_filepath_rate, "r");
		if (f == NULL)
			return -1;

		if (fscanf(f, "%d", &data) != 1)
			goto error;
		else
		    ret--;
		fclose(f);

		/* read sleep-to-wake */
		f = fopen(acc_filepath_sleepwake, "r");
		if (f == NULL)
			return -1;

		if (fscanf(f, "%d", &data) != 1)
			goto error;
		else
		    ret--;
	}
	else
		ret -=2;

	error:
		fclose(f);

	return ret;
}

int mag_get_properties()
{
	FILE *f;
	int data[3];
	int ret = 4;

	/* read power mode */
	f = fopen(mag_filepath_activate, "r");
	if (f == NULL)
		return -1;

	if (fscanf(f, "%d", &data[0]) != 1)
		goto error;
	else
	    ret--;
	fclose(f);

	/* read range */
	f = fopen(mag_filepath_range, "r");
	if (f == NULL)
		return -1;

	if (fscanf(f, "%d", &data[0]) != 1)
		goto error;
	else
	    ret--;
	fclose(f);

	/* read data rate */
	f = fopen(mag_filepath_rate, "r");
	if (f == NULL)
		return -1;

	if (fscanf(f, "%d", &data[0]) != 1)
		goto error;
	else
	    ret--;
	fclose(f);

	/* read gain */
	f = fopen(mag_filepath_gain, "r");
	if (f == NULL)
		return -1;

	if (fscanf(f, "%8x:%8x:%8x", &data[0], &data[1], &data[2]) != 3)
		goto error;
	else
	    ret--;

	error:
		fclose(f);

	return ret;
}

int check_acc_devid()
{
	FILE *f = NULL;
	int ret = 0;
	f = fopen(acc_filepath, "r");
	if (f == NULL) {
		f = fopen("/sys/devices/platform/nmk-i2c.2/i2c-2/2-0019/data", "r");
		if (f == NULL)
			return -1;
		strncpy(acc_filepath,"/sys/devices/platform/nmk-i2c.2/i2c-2/2-0019/data",(MAX_LENGTH -1));
		strncpy(acc_filepath_activate,"/sys/devices/platform/nmk-i2c.2/i2c-2/2-0019/mode",(MAX_LENGTH -1));
		strncpy(acc_filepath_range,"/sys/devices/platform/nmk-i2c.2/i2c-2/2-0019/range",(MAX_LENGTH -1));
		strncpy(acc_filepath_rate,"/sys/devices/platform/nmk-i2c.2/i2c-2/2-0019/rate",(MAX_LENGTH -1));
		strncpy(acc_filepath_sleepwake,"/sys/devices/platform/nmk-i2c.2/i2c-2/2-0019/sleep_wake",(MAX_LENGTH -1));
		strncpy(acc_filepath_id,"/sys/devices/platform/nmk-i2c.2/i2c-2/2-0019/id",(MAX_LENGTH -1));
	}
	fclose(f);
	/* read id */
	f = fopen(acc_filepath_id, "r");
	if (f == NULL)
		return -1;

	if (fscanf(f, "%d", &id) != 1)
		ret = -1;
	fclose(f);
	return ret;
}

int main(int argc, const char **argv)
{

	int lc;			/* loop counter */
	char *msg;		/* message returned from parse_opts */

	/***************************************************************
	 * parse standard options
	 ***************************************************************/
	if ((msg = parse_opts(argc, argv, (option_t *) NULL, NULL)) != (char *) NULL) {
		tst_brkm(TBROK, NULL, "OPTION PARSING ERROR - %s", msg);
		tst_exit();
	}

	/***************************************************************
	 * check looping state if -c option given
	 ***************************************************************/
	for (lc = 0; TEST_LOOPING(lc); lc++) {

		/***************************************************************
		 * only perform functional verification if flag set (-f not given)
		 ***************************************************************/
		if (STD_FUNCTIONAL_TEST) {

			for (Tst_count = 0; Tst_count < TST_TOTAL;) {

				switch (Tst_count) {
					case 0:
						TEST(check_acc_devid());
						TEST(acc_set_val());
						if (TEST_RETURN == 0)
							tst_resm(TPASS, "Functional test %d OK\n", Tst_count);
						else if (TEST_RETURN == EOF)
							tst_resm(TFAIL, "Functional test %d failed. Error activating accelerometer,"
									"confirm hardware presence. TCID: %s File: %s", Tst_count, TCID, __FILE__);
						else
							tst_resm(TFAIL, "Functional test %d failed. FilePath: %s not found. TCID: %s File: %s\n"
									, Tst_count, acc_filepath_activate, TCID, __FILE__);

						TEST(acc_set_properties());
						if (TEST_RETURN == 0)
							tst_resm(TPASS, "Functional test %d OK\n", Tst_count);
						else if (TEST_RETURN == EOF)
							tst_resm(TFAIL, "Functional test %d failed. Error setting accelerometer properties,"
									"TCID: %s File: %s", Tst_count, TCID, __FILE__);
						else
							tst_resm(TFAIL, "Functional test %d failed. TCID: %s File: %s\n", Tst_count, TCID, __FILE__);

						TEST(get_val(acc_filepath));
						if (TEST_RETURN == 0)
							tst_resm(TPASS, "Functional test %d OK\n", Tst_count);
						else if (TEST_RETURN == INVALID_DATA_READ) {
							tst_resm(TFAIL, "Functional test %d failed. Accelerometer XYZ values not read completely"
									"TCID: %s File: %s", Tst_count, TCID, __FILE__);
						} else {
							tst_resm(TFAIL, "Functional test %d failed. Filepath: %s not found. TCID: %s File: %s\n"
									, Tst_count, acc_filepath, TCID, __FILE__);
						}

						TEST(mag_set_val());
						if (TEST_RETURN == 0)
							tst_resm(TPASS, "Functional test %d OK\n", Tst_count);
						else if (TEST_RETURN == EOF)
							tst_resm(TFAIL, "Functional test %d failed. Error when activating magnetometer,"
									"confirm hardware presence. TCID: %s File: %s" , Tst_count, TCID, __FILE__);
						else
							tst_resm(TFAIL, "Functional test %d failed. FilePath: %s not found. TCID: %s File: %s\n"
									, Tst_count, acc_filepath_activate, TCID, __FILE__);

						TEST(mag_set_properties());
						if (TEST_RETURN == 0)
							tst_resm(TPASS, "Functional test %d OK\n", Tst_count);
						else if (TEST_RETURN == EOF)
							tst_resm(TFAIL, "Functional test %d failed. Error setting magnetometer properties,"
									"TCID: %s File: %s", Tst_count, TCID, __FILE__);
						else
							tst_resm(TFAIL, "Functional test %d failed. TCID: %s File: %s\n", Tst_count, TCID, __FILE__);

						TEST(get_val(mag_filepath));
						if (TEST_RETURN == 0)
							tst_resm(TPASS, "Functional test %d OK\n", Tst_count);
						else if (TEST_RETURN == INVALID_DATA_READ) {
							tst_resm(TFAIL, "Functional test %d failed. Magnetometer XYZ values not read completely"
									"TCID: %s File: %s", Tst_count, TCID, __FILE__);
						} else {
							tst_resm(TFAIL, "Functional test %d failed. Filepath: %s not found. TCID: %s File: %s\n"
									, Tst_count, mag_filepath, TCID, __FILE__);
						}

						TEST(acc_get_properties());
						if (TEST_RETURN == 0)
							tst_resm(TPASS, "Functional test %d OK\n", Tst_count);
						else if (TEST_RETURN > 0) {
							tst_resm(TFAIL, "Functional test %d failed. accelerometer property values not read completely"
									"TCID: %s File: %s", Tst_count, TCID, __FILE__);
						} else {
							tst_resm(TFAIL, "Functional test %d failed. TCID: %s File: %s\n", Tst_count, TCID, __FILE__);
						}

						TEST(mag_get_properties());
						if (TEST_RETURN == 0)
							tst_resm(TPASS, "Functional test %d OK\n", Tst_count);
						else if (TEST_RETURN > 0) {
							tst_resm(TFAIL, "Functional test %d failed. magnetometer property values not read completely"
									"TCID: %s File: %s", Tst_count, TCID, __FILE__);
						} else {
							tst_resm(TFAIL, "Functional test %d failed. TCID: %s File: %s\n", Tst_count, TCID, __FILE__);
						}
						break;
				}
			}
		}
		tst_exit();
		return 0;
	}
}