summaryrefslogtreecommitdiff
path: root/io-module/mtac_mfser.c
blob: 5871bfec10ee9cbdd1a9550476b2233838b106fd (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
struct gpio_pin *ap_mfser_pin_by_attr_name(const char *name) {
	struct gpio_pin *pin;
	char *pin_attr_name;

	if (!strcmp(name, "rs4xx-term-res:1")) {
		pin_attr_name = "ap1-gpio3";
	} else if (!strcmp(name, "rts-override:1")) {
		pin_attr_name = "ap1-gpio4";
	} else if (!strcmp(name, "rs4xx-term-res:2")) {
		pin_attr_name = "ap2-gpio3";
	} else if (!strcmp(name, "rts-override:2")) {
		pin_attr_name = "ap2-gpio4";
	} else {
		log_error("accessory card attribute %s not available", name);
		return NULL;
	}

	for (pin = gpio_pins; *pin->name; pin++) {
		if (!strcmp(pin->pin.label, pin_attr_name)) {
			return pin;
		}
	}

	log_error("pin with attr name %s not found", name);

	return NULL;
}


static ssize_t mts_attr_show_ap_mfser_pin(struct kobject *kobj,
			struct kobj_attribute *attr,
			char *buf)
{
	int value;
	struct gpio_pin *pin = ap_mfser_pin_by_attr_name(attr->attr.name);

	if (!pin) {
		return -ENODEV;
	}

	mutex_lock(&mts_io_mutex);

	value = gpio_get_value(pin->pin.gpio);

	mutex_unlock(&mts_io_mutex);

	if (value < 0) {
		return value;
	}

	if (pin->active_low) {
		value = !value;
	}

	return sprintf(buf, "%d\n", value);
}

static ssize_t mts_attr_store_ap_mfser_pin(struct kobject *kobj,
		struct kobj_attribute *attr, const char *buf, size_t count)
{
	int value;
	struct gpio_pin *pin = ap_mfser_pin_by_attr_name(attr->attr.name);

	if (!pin) {
		return -ENODEV;
	}

	if (sscanf(buf, "%i", &value) != 1) {
		return -EINVAL;
	}

	if (pin->active_low) {
		value = !value;
	}

	mutex_lock(&mts_io_mutex);

	gpio_set_value(pin->pin.gpio, value);

	mutex_unlock(&mts_io_mutex);

	return count;
}

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

	struct gpio_pin *pin_modesel0;
	struct gpio_pin *pin_modesel1;

	if (strstr(attr->attr.name, ":1")) {
		pin_modesel0 = gpio_pin_by_name("AP1_GPIO1");
		pin_modesel1 = gpio_pin_by_name("AP1_GPIO2");
	}
	else if (strstr(attr->attr.name, ":2")) {
		pin_modesel0 = gpio_pin_by_name("AP2_GPIO1");
		pin_modesel1 = gpio_pin_by_name("AP2_GPIO2");
	}
	else {
		log_error("unknown serial-mode attr %s", attr->attr.name);
		return -ENODEV;
	}

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

	mutex_lock(&mts_io_mutex);

	modesel0 = gpio_get_value(pin_modesel0->pin.gpio);
	modesel1 = gpio_get_value(pin_modesel1->pin.gpio);

	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(&mts_io_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 modesel0;
	int modesel1;
	struct gpio_pin *pin_modesel0;
	struct gpio_pin *pin_modesel1;

	if (strstr(attr->attr.name, ":1")) {
		pin_modesel0 = gpio_pin_by_name("AP1_GPIO1");
		pin_modesel1 = gpio_pin_by_name("AP1_GPIO2");
	}
	else if (strstr(attr->attr.name, ":2")) {
		pin_modesel0 = gpio_pin_by_name("AP2_GPIO1");
		pin_modesel1 = gpio_pin_by_name("AP2_GPIO2");
	}
	else {
		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(&mts_io_mutex);

	gpio_set_value(pin_modesel0->pin.gpio, modesel0);
	gpio_set_value(pin_modesel1->pin.gpio, modesel1);

	mutex_unlock(&mts_io_mutex);

	return count;
}

// 1 serial mode
// 1 rs4xx term resistor
// 1 rts override
static int ap_mfser_attrs_size = 3;

static bool mfser_setup(enum ap port) {
	struct kobj_attribute *attr;
	char buf[32];

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

	if (device_attrs_size + ap_mfser_attrs_size >= device_attrs_max_size) {
		log_error("can't load MFSER accessory card in port %d - not enough room for attributes", port);
		return false;
	}

	sprintf(buf, "serial-mode:%d", port);
	attr = create_attribute(buf, MTS_ATTR_MODE_RW);
	if (! attr) {
		log_error("failed to create attribute[%s]", buf);
		return false;
	}
	attr->show = mts_attr_show_mfser_mode;
	attr->store = mts_attr_store_mfser_mode;
	device_attrs[device_attrs_size++] = &attr->attr;

	sprintf(buf, "rs4xx-term-res:%d", port);
	attr = create_attribute(buf, MTS_ATTR_MODE_RW);
	if (! attr) {
		log_error("failed to create attribute[%s]", buf);
		return false;
	}
	attr->show = mts_attr_show_ap_mfser_pin;
	attr->store = mts_attr_store_ap_mfser_pin;
	device_attrs[device_attrs_size++] = &attr->attr;

	sprintf(buf, "rts-override:%d", port);
	attr = create_attribute(buf, MTS_ATTR_MODE_RW);
	if (! attr) {
		log_error("failed to create attribute[%s]", buf);
		return false;
	}
	attr->show = mts_attr_show_ap_mfser_pin;
	attr->store = mts_attr_store_ap_mfser_pin;
	device_attrs[device_attrs_size++] = &attr->attr;

	return true;
}

static bool mfser_teardown(enum ap port) {
	log_info("unloading MFSER accessory card in port %d", port);
	return true;
}

static struct ap_info mfser_info = {
	.product_id = MTAC_MFSER_0_0,
	.setup = &mfser_setup,
	.teardown = &mfser_teardown
};