summaryrefslogtreecommitdiff
path: root/mtac_mfser.c
blob: c38cb1e66ac0d59e8e1b5e7344b29c52c1dce65b (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
#define DRIVER_VERSION  "v2.0.0"
#define DRIVER_AUTHOR   "Multi-Tech"
#define DRIVER_DESC "MTS Multi-Fuction Serial Accessory Card"
#define DRIVER_NAME "mtac-mfser"

#include <linux/types.h>
#include <linux/platform_device.h>
#include <linux/kmod.h>
#include <linux/bitops.h>
#include <linux/module.h>
#include <linux/slab.h>
#include <linux/mtac.h>
#include <linux/mts_io.h>
#include <linux/gpio/consumer.h>

static struct gpio_pin gpio_pins_mtac_mfser[] = {
	// gpio pins for Accessory Card 1
	{
		.name = "AP1_GPIO1",
		.pin = {
			.gpio = ~0U,
			.flags = GPIOD_OUT_LOW,
			.label = "ap1-gpio1",
		},
		.active_low = 1,
                .do_gpio_desc = 1,
	},
	{
		.name = "AP1_GPIO2",
		.pin = {
			.gpio =  ~0U,
			.flags = GPIOD_OUT_LOW,
			.label = "ap1-gpio2",
		},
                .do_gpio_desc = 1,
        },
	{
		.name = "AP1_GPIO3",
		.pin = {
			.gpio =  ~0U,
			.flags = GPIOD_OUT_LOW,
			.label = "ap1-gpio3",
		},
                .do_gpio_desc = 1,
	},
	{
		.name = "AP1_GPIO4",
		.pin = {
			.gpio =  ~0U,
			.flags = GPIOD_OUT_LOW,
			.label = "ap1-gpio4",
		},
                .do_gpio_desc = 1,
	},
	

	// gpio pins for Accessory Card 2
	{
		.name = "AP2_GPIO1",
		.pin = {
			.gpio =  ~0U,
			.flags = GPIOD_OUT_LOW,
			.label = "ap2-gpio1",
		},
		.active_low = 1,
                .do_gpio_desc = 1,
	},
	{
		.name = "AP2_GPIO2",
		.pin = {
			.gpio = ~0U,
			.flags = GPIOD_OUT_LOW,
			.label = "ap2-gpio2",
		},
                .do_gpio_desc = 1,
	},
	{
		.name = "AP2_GPIO3",
		.pin = {
			.gpio = ~0U,
			.flags = GPIOD_OUT_LOW,
			.label = "ap2-gpio3",
		},
                .do_gpio_desc = 1,
	},
	{
		.name = "AP2_GPIO4",
		.pin = {
			.gpio = ~0U,
			.flags = GPIOD_OUT_LOW,
			.label = "ap2-gpio4",
		},
                .do_gpio_desc = 1,
	},
	{ },
};

static char* mfser_gpio_pin_name_by_attr_name(const char* name, int port) {
	switch (port) {
		case port_1:
			if (! strcmp(name, "rs4xx-term-res")) {
				return "ap1-gpio3";
			} else if (! strcmp(name, "rts-override")) {
				return "ap1-gpio4";
			} else {
				log_error("attirbute name [%s] is invalid for MFSER in port %d", name, port);
				return "";
			}

		case port_2:
			if (! strcmp(name, "rs4xx-term-res")) {
				return "ap2-gpio3";
			} else if (! strcmp(name, "rts-override")) {
				return "ap2-gpio4";
			} else {
				log_error("attribute name [%s] is invalid for MFSER in port %d", name, port);
				return "";
			}
	}
	return "";
}

static ssize_t mts_attr_show_mfser_mode(struct kobject *kobj,
			struct kobj_attribute *attr,
			char *buf)
{
	int ret;
	int port;
	int modesel0;
	int modesel1;
	int port_index;

	struct gpio_pin *pin_modesel0;
	struct gpio_pin *pin_modesel1;

	port = mtac_port_from_kobject(kobj);
	if (port < 0) {
		log_error("mtac_port_from_kobject returned %d", port);
		return -EINVAL;
	}

	port_index = port - 1;
	switch (port) {
		case port_1:
			pin_modesel0 = mtac_gpio_pin_by_name("AP1_GPIO1",port_index);
			pin_modesel1 = mtac_gpio_pin_by_name("AP1_GPIO2",port_index);
			break;

		case port_2:
			pin_modesel0 = mtac_gpio_pin_by_name("AP2_GPIO1",port_index);
			pin_modesel1 = mtac_gpio_pin_by_name("AP2_GPIO2",port_index);
			break;

		default:
			log_error("unknown serial-mode attr [%s]", attr->attr.name);
			return -ENODEV;
	}

	if (!pin_modesel0 || !pin_modesel1)
		return -ENODEV;

	mutex_lock(&mtac_mutex);

	modesel0 = gpiod_get_value(pin_modesel0->desc);
	modesel1 = gpiod_get_value(pin_modesel1->desc);

	if (modesel1 == 0 && modesel0 == 0)
		ret = sprintf(buf, "loopback\n");
	else if (modesel1 == 0 && modesel0 == 1)
		ret = sprintf(buf, "rs232\n");
	else if (modesel1 == 1 && modesel0 == 0)
		ret = sprintf(buf, "rs485-half\n");
	else if (modesel1 == 1 && modesel0 == 1)
		ret = sprintf(buf, "rs422-485-full\n");
	else
		ret = sprintf(buf, "error\n");

	mutex_unlock(&mtac_mutex);

	return ret;
}

static ssize_t mts_attr_store_mfser_mode(struct kobject *kobj,
		struct kobj_attribute *attr, const char *buf, size_t count)
{
	int port;
	int modesel0;
	int modesel1;
	struct gpio_pin *pin_modesel0;
	struct gpio_pin *pin_modesel1;
	int port_index;

	port = mtac_port_from_kobject(kobj);
	if (port < 0) {
		log_error("mtac_port_from_kobject returned %d", port);
		return -EINVAL;
	}

	port_index = port - 1;
	switch (port) {
		case port_1:
			pin_modesel0 = mtac_gpio_pin_by_name("AP1_GPIO1",port_index);
			pin_modesel1 = mtac_gpio_pin_by_name("AP1_GPIO2",port_index);
			break;

		case port_2:
			pin_modesel0 = mtac_gpio_pin_by_name("AP2_GPIO1",port_index);
			pin_modesel1 = mtac_gpio_pin_by_name("AP2_GPIO2",port_index);
			break;

		default:
			log_error("unknown serial-mode attr [%s]", attr->attr.name);
			return -ENODEV;
	}

	if (!pin_modesel0 || !pin_modesel1)
		return -ENODEV;

	if (!strcasecmp(buf, "loopback")) {
		modesel1 = 0;
		modesel0 = 0;
	}
	else if (!strcasecmp(buf, "rs232")) {
		modesel1 = 0;
		modesel0 = 1;
	}
	else if (!strcasecmp(buf, "rs485-half")) {
		modesel1 = 1;
		modesel0 = 0;
	}
	else if (!strcasecmp(buf, "rs422-485-full")) {
		modesel1 = 1;
		modesel0 = 1;
	}
	else  {
		return -EINVAL;
	}

	mutex_lock(&mtac_mutex);

	gpiod_set_value(pin_modesel0->desc, modesel0);
	gpiod_set_value(pin_modesel1->desc, modesel1);

	mutex_unlock(&mtac_mutex);

	return count;
}

// 1 serial mode
// 1 rs4xx term resistor
// 1 rts override
// 1 vendor-id
// 1 product-id
// 1 device-id
// 1 hw-version
// NULL
static size_t ap_mfser_attrs_size = 8;

static bool mfser_setup(enum ap port) {
	int i;
	int port_index = port - 1;
	int index = 0;
	int count = 0;
	int ret;
	char buf[32];
	struct kobj_attribute* attr;
	struct attribute **attrs;
	struct kobject *subdir;

	log_info("loading MFSER accessory card in port %d", port);

	sprintf(buf, "ap%d", port);
	subdir = kobject_create_and_add(buf, &mts_io_platform_device->dev.kobj);
	if (! subdir) {
		log_error("kobject_create_and_add for MFSER in port %d failed", port);
		return false;
	}

	mtac_set_port_pins(port_index,gpio_pins_mtac_mfser,subdir);

	// create the link to the apX directory this card is in
	// if we're in the first slot, we get plain "mfser"
	// if we're in a different slot, we might need to use "mfser-2" to differentiate
	if (port > 1) {
		for (i = 1; i < port; i++) {
			if (mtac_port_info[i - 1]) {
				if (strstr(mtac_port_info[i - 1]->product_id, PRODUCT_ID_MTAC_MFSER)) {
					count++;
				}
			}
		}
	}
	if (count > 0) {
		sprintf(buf, "mfser-%d", count + 1);
	} else {
		sprintf(buf, "mfser");
	}
	ret = sysfs_create_link(mtac_port_info[port_index]->subdirs->parent, mtac_port_info[port_index]->subdirs, buf);
	if (ret) {
		log_error("failed to link [%s] to [%s], %d", buf, mtac_port_info[port_index]->subdirs->name, ret);
	}

	attrs = kzalloc(sizeof(struct attribute*) * ap_mfser_attrs_size, GFP_KERNEL);
	if (! attrs) {
		log_error("failed to allocate attribute space for port %d", port);
		return false;
	}

	sprintf(buf, "serial-mode");
	attr = mtac_create_attribute(buf, MTS_ATTR_MODE_RW);
	if (! attr) {
		log_error("failed to create attribute [%s] for MFSER in port %d", buf, port);
		return false;
	}
	attr->show = mts_attr_show_mfser_mode;
	attr->store = mts_attr_store_mfser_mode;
	attrs[index++] = &attr->attr;

	sprintf(buf, "rs4xx-term-res");
	attr = mtac_create_attribute(buf, MTS_ATTR_MODE_RW);
	if (! attr) {
		log_error("failed to create attribute [%s] for MFSER in port %d", buf, port);
		return false;
	}
	attr->show = mtac_attr_show_ap_gpio_pin;
	attr->store = mtac_attr_store_ap_gpio_pin;
	attrs[index++] = &attr->attr;

	sprintf(buf, "rts-override");
	attr = mtac_create_attribute(buf, MTS_ATTR_MODE_RW);
	if (! attr) {
		log_error("failed to create attribute [%s] for MFSER in port %d", buf, port);
		return false;
	}
	attr->show = mtac_attr_show_ap_gpio_pin;
	attr->store = mtac_attr_store_ap_gpio_pin;
	attrs[index++] = &attr->attr;

	// add attributes for eeprom contents
	if (! mtac_add_product_info_attributes(port, attrs, &index)) {
		log_error("failed to add product info attributes for MFSER in port %d", port);
		return false;
	}

	attrs[index] = NULL;

	mtac_port_info[port_index]->attr_group.attrs = attrs;
	if (sysfs_create_group(mtac_port_info[port_index]->subdirs, &mtac_port_info[port_index]->attr_group)) {
		log_error("sysfs_create_group failed for MFSER in port %d", port);
		return false;
	}

	return true;
}

static bool mfser_teardown(enum ap port) {
	int i;
	int port_index = port - 1;
	struct attribute **attrs = mtac_port_info[port_index]->attr_group.attrs;

	log_info("unloading MFSER accessory card in port %d", port);

	// clean up allocated memory for attributes
	for (i = 0; i < ap_mfser_attrs_size; i++) {
		if (attrs[i]) {
			if (attrs[i]->name)
				kfree(attrs[i]->name);

			kfree(attrs[i]);
		}
	}

	kfree(attrs);

	// clean up our "apX/" kobject if it exists
	if (mtac_port_info[port_index]->subdirs) {
		kobject_put(mtac_port_info[port_index]->subdirs);
	}

	mtac_clear_port_pins(port_index);

	return true;
}

void set_mfser_info(struct ap_info* info) {
	snprintf(info->product_id, 32, "%s", PRODUCT_ID_MTAC_MFSER);
	info->setup = &mfser_setup;
	info->teardown = &mfser_teardown;
	info->gpio_pin_name_by_attr_name = &mfser_gpio_pin_name_by_attr_name;
}

/*
 * Loop through all the slots, and set up the
 * mtac-mfser driver for all slots.
 */
static int __init mtac_mfser_init(void)
{
	int slot_count = 0;

	slot_count = mtac_find(set_mfser_info,PRODUCT_ID_MTAC_MFSER);

	if (slot_count < 1) {
		log_debug("No MTAC MFSER found");
		if (slot_count < 0)
			return slot_count;
		else
			return -ENXIO;

	}

	return 0;
}

/* We can only tear down our own device */
static void __exit mtac_mfser_exit(void)
{
	mtac_free(PRODUCT_ID_MTAC_MFSER,mfser_setup,"mfser");
	log_info("exiting");
}

module_init(mtac_mfser_init);
module_exit(mtac_mfser_exit);

MODULE_AUTHOR(DRIVER_AUTHOR);
MODULE_DESCRIPTION(DRIVER_DESC);
MODULE_VERSION(DRIVER_VERSION);
MODULE_LICENSE("GPL");