aboutsummaryrefslogtreecommitdiffstats
path: root/samsung-ipc/modems/xmm626/xmm626_kernel_smdk4412.c
blob: cdac3e41d7c90ff9173842fa0e5291b02f7f9fa1 (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
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
/*
 * This file is part of libsamsung-ipc.
 *
 * Copyright (C) 2012 Alexander Tarasikov <alexander.tarasikov@gmail.com>
 * Copyright (C) 2013-2014 Paul Kocialkowski <contact@paulk.fr>
 *
 * libsamsung-ipc is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 2 of the License, or
 * (at your option) any later version.
 *
 * libsamsung-ipc is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with libsamsung-ipc.  If not, see <http://www.gnu.org/licenses/>.
 */

#define _GNU_SOURCE

#include <fcntl.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>

#include <sys/ioctl.h>
#include <sys/select.h>

#include <samsung-ipc.h>

#include "ipc.h"
#include "modems/xmm626/xmm626.h"
#include "modems/xmm626/xmm626_kernel_smdk4412.h"
#include "modems/xmm626/xmm626_modem_link_device_hsic.h"
#include "modems/xmm626/xmm626_modem_prj.h"

int xmm626_kernel_smdk4412_power(
	__attribute__((unused)) struct ipc_client *client, int device_fd,
	int power)
{
	int rc;

	if (device_fd < 0)
		return -1;

	rc = ioctl(device_fd, power ? IOCTL_MODEM_ON : IOCTL_MODEM_OFF, 0);
	if (rc < 0)
		return -1;

	return 0;
}

int xmm626_kernel_smdk4412_boot_power(
	__attribute__((unused)) struct ipc_client *client, int device_fd,
	int power)
{
	int rc;

	if (device_fd < 0)
		return -1;

	rc = ioctl(device_fd, power ?
		   IOCTL_MODEM_BOOT_ON : IOCTL_MODEM_BOOT_OFF,
		   0);
	if (rc < 0)
		return -1;

	return 0;
}

int xmm626_kernel_smdk4412_status_online_wait(
	__attribute__((unused)) struct ipc_client *client, int device_fd)
{
	int status;
	int i;

	if (device_fd < 0)
		return -1;

	i = 0;
	for (i = 0; i < 100; i++) {
		status = ioctl(device_fd, IOCTL_MODEM_STATUS, 0);
		if (status == STATE_ONLINE)
			return 0;

		usleep(50000);
	}

	return -1;
}

int xmm626_kernel_smdk4412_hci_power(
	__attribute__((unused)) struct ipc_client *client, int power)
{
	int ehci_rc, ohci_rc;

	ehci_rc = sysfs_value_write(XMM626_SEC_MODEM_EHCI_POWER_SYSFS, !!power);
	if (ehci_rc >= 0)
		usleep(50000);

	ohci_rc = sysfs_value_write(XMM626_SEC_MODEM_OHCI_POWER_SYSFS, !!power);
	if (ohci_rc >= 0)
		usleep(50000);

	if (ehci_rc < 0 && ohci_rc < 0)
		return -1;

	return 0;
}

int xmm626_kernel_smdk4412_link_control_enable(
	__attribute__((unused)) struct ipc_client *client,
	int device_fd, int enable)
{
	int rc;

	if (device_fd < 0)
		return -1;

	rc = ioctl(device_fd, IOCTL_LINK_CONTROL_ENABLE, &enable);
	if (rc < 0)
		return -1;

	return 0;
}

int xmm626_kernel_smdk4412_link_control_active(
	__attribute__((unused)) struct ipc_client *client, int device_fd,
	int active)
{
	int rc;

	if (device_fd < 0)
		return -1;

	rc = ioctl(device_fd, IOCTL_LINK_CONTROL_ACTIVE, &active);
	if (rc < 0)
		return -1;

	return 0;
}

int xmm626_kernel_smdk4412_link_connected_wait(
	__attribute__((unused)) struct ipc_client *client, int device_fd)
{
	int status;
	int i;

	if (device_fd < 0)
		return -1;

	i = 0;
	for (i = 0; i < 100; i++) {
		status = ioctl(device_fd, IOCTL_LINK_CONNECTED, 0);
		if (status)
			return 0;

		usleep(50000);
	}

	return -1;
}

int xmm626_kernel_smdk4412_link_get_hostwake_wait(
	__attribute__((unused)) struct ipc_client *client, int device_fd)
{
	int status;
	int i;

	if (device_fd < 0)
		return -1;

	i = 0;
	for (i = 0; i < 10; i++) {
		status = ioctl(device_fd, IOCTL_LINK_GET_HOSTWAKE, 0);
		if (status)
			return 0;

		usleep(50000);
	}

	return -1;
}

int xmm626_kernel_smdk4412_fmt_send(struct ipc_client *client,
				    struct ipc_message *message)
{
	struct ipc_fmt_header header;
	void *buffer;
	size_t length;
	size_t count;
	unsigned char *p;
	int rc;

	if (client == NULL || client->handlers == NULL ||
	    client->handlers->write == NULL || message == NULL) {
		return -1;
	}

	ipc_fmt_header_setup(&header, message);

	length = header.length;
	buffer = calloc(1, length);

	memcpy(buffer, &header, sizeof(struct ipc_fmt_header));
	if (message->data != NULL && message->size > 0) {
		memcpy((void *) ((unsigned char *) buffer +
				 sizeof(struct ipc_fmt_header)),
		       message->data, message->size);
	}

	ipc_client_log_send(client, message, __func__);

	p = (unsigned char *) buffer;

	count = 0;
	while (count < length) {
		rc = client->handlers->write(client,
					     client->handlers->transport_data,
					     p, length - count);
		if (rc <= 0) {
			ipc_client_log(client, "Writing FMT data failed");
			goto error;
		}

		count += rc;
		p += rc;
	}

	rc = 0;
	goto complete;

error:
	rc = -1;

complete:
	if (buffer != NULL)
		free(buffer);

	return rc;
}

int xmm626_kernel_smdk4412_fmt_recv(struct ipc_client *client,
				    struct ipc_message *message)
{
	struct ipc_fmt_header *header;
	void *buffer = NULL;
	size_t length;
	size_t count;
	unsigned char *p;
	int rc;

	if (client == NULL || client->handlers == NULL ||
	    client->handlers->read == NULL || message == NULL) {
		return -1;
	}

	length = XMM626_DATA_SIZE;
	buffer = calloc(1, length);

	rc = client->handlers->read(client, client->handlers->transport_data,
				    buffer, length);
	if (rc < (int) sizeof(struct ipc_fmt_header)) {
		ipc_client_log(client, "Reading FMT header failed");
		goto error;
	}

	header = (struct ipc_fmt_header *) buffer;

	ipc_fmt_message_setup(header, message);

	if (header->length > sizeof(struct ipc_fmt_header)) {
		message->size = header->length - sizeof(struct ipc_fmt_header);
		message->data = calloc(1, message->size);

		p = (unsigned char *) message->data;

		count = rc - sizeof(struct ipc_fmt_header);
		if (count > 0) {
			memcpy(p,
			       (void *) ((unsigned char *) buffer +
					 sizeof(struct ipc_fmt_header)),
			       count);
			p += count;
		}

		while (count < message->size) {
			rc = client->handlers->read(
				client, client->handlers->transport_data, p,
				message->size - count);
			if (rc <= 0) {
				ipc_client_log(client,
					       "Reading FMT data failed");
				goto error;
			}

			count += rc;
			p += rc;
		}
	}

	ipc_client_log_recv(client, message, __func__);

	rc = 0;
	goto complete;

error:
	rc = -1;

complete:
	if (buffer != NULL)
		free(buffer);

	return rc;
}

int xmm626_kernel_smdk4412_rfs_send(struct ipc_client *client,
				    struct ipc_message *message)
{
	struct ipc_rfs_header header;
	void *buffer;
	size_t length;
	size_t count;
	unsigned char *p;
	int rc;

	if (client == NULL || client->handlers == NULL ||
	    client->handlers->write == NULL || message == NULL) {
		return -1;
	}

	ipc_rfs_header_setup(&header, message);

	length = header.length;
	buffer = calloc(1, length);

	memcpy(buffer, &header, sizeof(struct ipc_rfs_header));
	if (message->data != NULL && message->size > 0) {
		memcpy((void *) (
			       (unsigned char *) buffer +
			       sizeof(struct ipc_rfs_header)),
		       message->data,
		       message->size);
	}

	ipc_client_log_send(client, message, __func__);

	p = (unsigned char *) buffer;

	count = 0;
	while (count < length) {
		rc = client->handlers->write(client,
					     client->handlers->transport_data,
					     p, length - count);
		if (rc <= 0) {
			ipc_client_log(client, "Writing RFS data failed");
			goto error;
		}

		count += rc;
		p += rc;
	}

	rc = 0;
	goto complete;

error:
	rc = -1;

complete:
	if (buffer != NULL)
		free(buffer);

	return rc;
}

int xmm626_kernel_smdk4412_rfs_recv(struct ipc_client *client,
				    struct ipc_message *message)
{
	struct ipc_rfs_header *header;
	void *buffer = NULL;
	size_t length;
	size_t count;
	unsigned char *p;
	int rc;

	if (client == NULL || client->handlers == NULL ||
	    client->handlers->read == NULL || message == NULL) {
		return -1;
	}

	length = XMM626_DATA_SIZE;
	buffer = calloc(1, length);

	rc = client->handlers->read(client, client->handlers->transport_data,
				    buffer, length);
	if (rc < (int) sizeof(struct ipc_rfs_header)) {
		ipc_client_log(client, "Reading RFS header failed");
		goto error;
	}

	header = (struct ipc_rfs_header *) buffer;
	if (header->length > XMM626_DATA_SIZE_LIMIT) {
		ipc_client_log(client, "Invalid RFS header length: %u",
			       header->length);
		goto error;
	}

	ipc_rfs_message_setup(header, message);

	if (header->length > sizeof(struct ipc_rfs_header)) {
		message->size = header->length - sizeof(struct ipc_rfs_header);
		message->data = calloc(1, message->size);

		p = (unsigned char *) message->data;

		count = rc - sizeof(struct ipc_rfs_header);
		if (count > 0) {
			memcpy(p,
			       (void *) ((unsigned char *) buffer +
					 sizeof(struct ipc_rfs_header)),
			       count);
			p += count;
		}

		while (count < message->size) {
			rc = client->handlers->read(
				client, client->handlers->transport_data, p,
				message->size - count);
			if (rc <= 0) {
				ipc_client_log(client,
					       "Reading RFS data failed");
				goto error;
			}

			count += rc;
			p += rc;
		}
	}

	ipc_client_log_recv(client, message, __func__);

	rc = 0;
	goto complete;

error:
	rc = -1;

complete:
	if (buffer != NULL)
		free(buffer);

	return rc;
}

int xmm626_kernel_smdk4412_open(
	__attribute__((unused)) struct ipc_client *client, int type)
{
	int fd;

	switch (type) {
	case IPC_CLIENT_TYPE_FMT:
		fd = open(XMM626_SEC_MODEM_IPC0_DEVICE,
			  O_RDWR | O_NOCTTY | O_NONBLOCK);
		break;
	case IPC_CLIENT_TYPE_RFS:
		fd = open(XMM626_SEC_MODEM_RFS0_DEVICE,
			  O_RDWR | O_NOCTTY | O_NONBLOCK);
		break;
	default:
		return -1;
	}

	return fd;
}

int xmm626_kernel_smdk4412_close(
	__attribute__((unused)) struct ipc_client *client, int fd)
{
	if (fd < 0)
		return -1;

	close(fd);

	return 0;
}

int xmm626_kernel_smdk4412_read(
	__attribute__((unused)) struct ipc_client *client, int fd, void *buffer,
	size_t length)
{
	int status;
	int rc;

	if (fd < 0 || buffer == NULL || length <= 0)
		return -1;

	status = ioctl(fd, IOCTL_MODEM_STATUS, 0);
	if (status != STATE_ONLINE && status != STATE_BOOTING)
		return -1;

	rc = read(fd, buffer, length);

	return rc;
}

int xmm626_kernel_smdk4412_write(
	__attribute__((unused)) struct ipc_client *client, int fd,
	const void *buffer, size_t length)
{
	int status;
	int rc;

	if (fd < 0 || buffer == NULL || length <= 0)
		return -1;

	status = ioctl(fd, IOCTL_MODEM_STATUS, 0);
	if (status != STATE_ONLINE && status != STATE_BOOTING)
		return -1;

	rc = write(fd, buffer, length);

	return rc;
}

int xmm626_kernel_smdk4412_poll(
	__attribute__((unused)) struct ipc_client *client,
	int fd, struct ipc_poll_fds *fds, struct timeval *timeout)
{
	int status;
	fd_set set;
	int fd_max;
	unsigned int i;
	unsigned int count;
	int rc;

	if (fd < 0)
		return -1;

	FD_ZERO(&set);
	FD_SET(fd, &set);

	fd_max = fd;

	if (fds != NULL && fds->fds != NULL && fds->count > 0) {
		for (i = 0; i < fds->count; i++) {
			if (fds->fds[i] >= 0) {
				FD_SET(fds->fds[i], &set);

				if (fds->fds[i] > fd_max)
					fd_max = fds->fds[i];
			}
		}
	}

	rc = select(fd_max + 1, &set, NULL, NULL, timeout);

	if (FD_ISSET(fd, &set)) {
		status = ioctl(fd, IOCTL_MODEM_STATUS, 0);
		if (status != STATE_ONLINE && status != STATE_BOOTING)
			return -1;
	}

	if (fds != NULL && fds->fds != NULL && fds->count > 0) {
		count = fds->count;

		for (i = 0; i < fds->count; i++) {
			if (!FD_ISSET(fds->fds[i], &set)) {
				fds->fds[i] = -1;
				count--;
			}
		}

		fds->count = count;
	}

	return rc;
}

char *xmm626_kernel_smdk4412_gprs_get_iface(
	__attribute__((unused)) struct ipc_client *client, unsigned int cid)
{
	char *iface = NULL;
	int rc;

	if (cid > XMM626_SEC_MODEM_GPRS_IFACE_COUNT)
		return NULL;

	rc = asprintf(&iface, "%s%d",
		      XMM626_SEC_MODEM_GPRS_IFACE_PREFIX, cid - 1);
	if (rc == -1) {
		ipc_client_log(client, "%s: asprintf failed", __func__);
		return NULL;
	}

	return iface;
}

int xmm626_kernel_smdk4412_gprs_get_capabilities(
	__attribute__((unused)) struct ipc_client *client,
	struct ipc_client_gprs_capabilities *capabilities)
{
	if (capabilities == NULL)
		return -1;

	capabilities->cid_count = XMM626_SEC_MODEM_GPRS_IFACE_COUNT;

	return 0;
}