]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/blame - arch/arm/mach-omap2/mux.c
Fix common misspellings
[mirror_ubuntu-zesty-kernel.git] / arch / arm / mach-omap2 / mux.c
CommitLineData
1dbae815
TL
1/*
2 * linux/arch/arm/mach-omap2/mux.c
3 *
112485e9 4 * OMAP2, OMAP3 and OMAP4 pin multiplexing configurations
1dbae815 5 *
112485e9 6 * Copyright (C) 2004 - 2010 Texas Instruments Inc.
9330899e 7 * Copyright (C) 2003 - 2008 Nokia Corporation
1dbae815 8 *
9330899e 9 * Written by Tony Lindgren
1dbae815
TL
10 *
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2 of the License, or
14 * (at your option) any later version.
15 *
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
20 *
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, write to the Free Software
23 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
24 *
25 */
4814ced5 26#include <linux/kernel.h>
1dbae815 27#include <linux/init.h>
fced80c7 28#include <linux/io.h>
15ac7afe 29#include <linux/list.h>
4814ced5 30#include <linux/slab.h>
4b715efc
TL
31#include <linux/ctype.h>
32#include <linux/debugfs.h>
33#include <linux/seq_file.h>
34#include <linux/uaccess.h>
1dbae815 35
fced80c7
RK
36#include <asm/system.h>
37
9796b323
TL
38#include <plat/omap_hwmod.h>
39
4814ced5 40#include "control.h"
15ac7afe 41#include "mux.h"
1dbae815 42
92c9f501
MR
43#define OMAP_MUX_BASE_OFFSET 0x30 /* Offset from CTRL_BASE */
44#define OMAP_MUX_BASE_SZ 0x5ca
45
15ac7afe
TL
46struct omap_mux_entry {
47 struct omap_mux mux;
48 struct list_head node;
49};
50
112485e9
BC
51static LIST_HEAD(mux_partitions);
52static DEFINE_MUTEX(muxmode_mutex);
53
54struct omap_mux_partition *omap_mux_get(const char *name)
55{
56 struct omap_mux_partition *partition;
57
58 list_for_each_entry(partition, &mux_partitions, node) {
59 if (!strcmp(name, partition->name))
60 return partition;
61 }
92c9f501 62
112485e9
BC
63 return NULL;
64}
65
66u16 omap_mux_read(struct omap_mux_partition *partition, u16 reg)
92c9f501 67{
112485e9
BC
68 if (partition->flags & OMAP_MUX_REG_8BIT)
69 return __raw_readb(partition->base + reg);
92c9f501 70 else
112485e9 71 return __raw_readw(partition->base + reg);
92c9f501
MR
72}
73
112485e9
BC
74void omap_mux_write(struct omap_mux_partition *partition, u16 val,
75 u16 reg)
92c9f501 76{
112485e9
BC
77 if (partition->flags & OMAP_MUX_REG_8BIT)
78 __raw_writeb(val, partition->base + reg);
92c9f501 79 else
112485e9 80 __raw_writew(val, partition->base + reg);
92c9f501 81}
7d7f665d 82
112485e9
BC
83void omap_mux_write_array(struct omap_mux_partition *partition,
84 struct omap_board_mux *board_mux)
d4bb72e5 85{
112485e9
BC
86 while (board_mux->reg_offset != OMAP_MUX_TERMINATOR) {
87 omap_mux_write(partition, board_mux->value,
88 board_mux->reg_offset);
d4bb72e5
TL
89 board_mux++;
90 }
91}
92
15ac7afe
TL
93#ifdef CONFIG_OMAP_MUX
94
95static char *omap_mux_options;
96
112485e9
BC
97static int __init _omap_mux_init_gpio(struct omap_mux_partition *partition,
98 int gpio, int val)
15ac7afe
TL
99{
100 struct omap_mux_entry *e;
ca828760 101 struct omap_mux *gpio_mux = NULL;
8a6f7e14
GI
102 u16 old_mode;
103 u16 mux_mode;
15ac7afe 104 int found = 0;
112485e9 105 struct list_head *muxmodes = &partition->muxmodes;
15ac7afe
TL
106
107 if (!gpio)
108 return -EINVAL;
109
112485e9 110 list_for_each_entry(e, muxmodes, node) {
15ac7afe
TL
111 struct omap_mux *m = &e->mux;
112 if (gpio == m->gpio) {
8a6f7e14 113 gpio_mux = m;
15ac7afe
TL
114 found++;
115 }
116 }
117
8a6f7e14 118 if (found == 0) {
032a6424 119 pr_err("%s: Could not set gpio%i\n", __func__, gpio);
8a6f7e14
GI
120 return -ENODEV;
121 }
15ac7afe
TL
122
123 if (found > 1) {
032a6424 124 pr_info("%s: Multiple gpio paths (%d) for gpio%i\n", __func__,
1cbb3a9a 125 found, gpio);
15ac7afe
TL
126 return -EINVAL;
127 }
128
112485e9 129 old_mode = omap_mux_read(partition, gpio_mux->reg_offset);
8a6f7e14 130 mux_mode = val & ~(OMAP_MUX_NR_MODES - 1);
112485e9 131 if (partition->flags & OMAP_MUX_GPIO_IN_MODE3)
8a6f7e14
GI
132 mux_mode |= OMAP_MUX_MODE3;
133 else
134 mux_mode |= OMAP_MUX_MODE4;
032a6424 135 pr_debug("%s: Setting signal %s.gpio%i 0x%04x -> 0x%04x\n", __func__,
1cbb3a9a 136 gpio_mux->muxnames[0], gpio, old_mode, mux_mode);
112485e9 137 omap_mux_write(partition, mux_mode, gpio_mux->reg_offset);
15ac7afe 138
8a6f7e14 139 return 0;
15ac7afe
TL
140}
141
112485e9
BC
142int __init omap_mux_init_gpio(int gpio, int val)
143{
144 struct omap_mux_partition *partition;
145 int ret;
146
147 list_for_each_entry(partition, &mux_partitions, node) {
148 ret = _omap_mux_init_gpio(partition, gpio, val);
149 if (!ret)
150 return ret;
151 }
152
153 return -ENODEV;
154}
155
8419fdba
TL
156static int __init _omap_mux_get_by_name(struct omap_mux_partition *partition,
157 const char *muxname,
158 struct omap_mux **found_mux)
15ac7afe 159{
8419fdba 160 struct omap_mux *mux = NULL;
15ac7afe 161 struct omap_mux_entry *e;
5a3b2f7a 162 const char *mode_name;
afb7d709 163 int found = 0, found_mode = 0, mode0_len = 0;
112485e9 164 struct list_head *muxmodes = &partition->muxmodes;
15ac7afe
TL
165
166 mode_name = strchr(muxname, '.');
167 if (mode_name) {
5a3b2f7a 168 mode0_len = strlen(muxname) - strlen(mode_name);
15ac7afe 169 mode_name++;
15ac7afe
TL
170 } else {
171 mode_name = muxname;
172 }
173
112485e9 174 list_for_each_entry(e, muxmodes, node) {
8419fdba 175 char *m0_entry;
15ac7afe
TL
176 int i;
177
8419fdba
TL
178 mux = &e->mux;
179 m0_entry = mux->muxnames[0];
180
5a3b2f7a
TL
181 /* First check for full name in mode0.muxmode format */
182 if (mode0_len && strncmp(muxname, m0_entry, mode0_len))
15ac7afe
TL
183 continue;
184
5a3b2f7a 185 /* Then check for muxmode only */
15ac7afe 186 for (i = 0; i < OMAP_MUX_NR_MODES; i++) {
8419fdba 187 char *mode_cur = mux->muxnames[i];
15ac7afe
TL
188
189 if (!mode_cur)
190 continue;
191
192 if (!strcmp(mode_name, mode_cur)) {
8419fdba 193 *found_mux = mux;
15ac7afe 194 found++;
8419fdba 195 found_mode = i;
15ac7afe
TL
196 }
197 }
198 }
199
8419fdba
TL
200 if (found == 1) {
201 return found_mode;
202 }
15ac7afe
TL
203
204 if (found > 1) {
032a6424 205 pr_err("%s: Multiple signal paths (%i) for %s\n", __func__,
1cbb3a9a 206 found, muxname);
15ac7afe
TL
207 return -EINVAL;
208 }
209
8419fdba 210 pr_err("%s: Could not find signal %s\n", __func__, muxname);
15ac7afe
TL
211
212 return -ENODEV;
213}
214
8419fdba
TL
215static int __init
216omap_mux_get_by_name(const char *muxname,
217 struct omap_mux_partition **found_partition,
218 struct omap_mux **found_mux)
112485e9
BC
219{
220 struct omap_mux_partition *partition;
112485e9
BC
221
222 list_for_each_entry(partition, &mux_partitions, node) {
8419fdba
TL
223 struct omap_mux *mux = NULL;
224 int mux_mode = _omap_mux_get_by_name(partition, muxname, &mux);
225 if (mux_mode < 0)
226 continue;
227
228 *found_partition = partition;
229 *found_mux = mux;
230
231 return mux_mode;
112485e9
BC
232 }
233
234 return -ENODEV;
8419fdba 235}
112485e9 236
8419fdba
TL
237int __init omap_mux_init_signal(const char *muxname, int val)
238{
239 struct omap_mux_partition *partition = NULL;
240 struct omap_mux *mux = NULL;
241 u16 old_mode;
242 int mux_mode;
243
244 mux_mode = omap_mux_get_by_name(muxname, &partition, &mux);
245 if (mux_mode < 0)
246 return mux_mode;
247
248 old_mode = omap_mux_read(partition, mux->reg_offset);
249 mux_mode |= val;
250 pr_debug("%s: Setting signal %s 0x%04x -> 0x%04x\n",
251 __func__, muxname, old_mode, mux_mode);
252 omap_mux_write(partition, mux_mode, mux->reg_offset);
253
254 return 0;
112485e9
BC
255}
256
9796b323
TL
257struct omap_hwmod_mux_info * __init
258omap_hwmod_mux_init(struct omap_device_pad *bpads, int nr_pads)
259{
260 struct omap_hwmod_mux_info *hmux;
029268e4 261 int i, nr_pads_dynamic = 0;
9796b323
TL
262
263 if (!bpads || nr_pads < 1)
264 return NULL;
265
266 hmux = kzalloc(sizeof(struct omap_hwmod_mux_info), GFP_KERNEL);
267 if (!hmux)
268 goto err1;
269
270 hmux->nr_pads = nr_pads;
271
272 hmux->pads = kzalloc(sizeof(struct omap_device_pad) *
273 nr_pads, GFP_KERNEL);
274 if (!hmux->pads)
275 goto err2;
276
277 for (i = 0; i < hmux->nr_pads; i++) {
278 struct omap_mux_partition *partition;
279 struct omap_device_pad *bpad = &bpads[i], *pad = &hmux->pads[i];
280 struct omap_mux *mux;
281 int mux_mode;
282
283 mux_mode = omap_mux_get_by_name(bpad->name, &partition, &mux);
284 if (mux_mode < 0)
285 goto err3;
286 if (!pad->partition)
287 pad->partition = partition;
288 if (!pad->mux)
289 pad->mux = mux;
290
291 pad->name = kzalloc(strlen(bpad->name) + 1, GFP_KERNEL);
292 if (!pad->name) {
293 int j;
294
295 for (j = i - 1; j >= 0; j--)
296 kfree(hmux->pads[j].name);
297 goto err3;
298 }
299 strcpy(pad->name, bpad->name);
300
301 pad->flags = bpad->flags;
302 pad->enable = bpad->enable;
303 pad->idle = bpad->idle;
304 pad->off = bpad->off;
029268e4
TL
305
306 if (pad->flags & OMAP_DEVICE_PAD_REMUX)
307 nr_pads_dynamic++;
308
9796b323
TL
309 pr_debug("%s: Initialized %s\n", __func__, pad->name);
310 }
311
029268e4
TL
312 if (!nr_pads_dynamic)
313 return hmux;
314
315 /*
316 * Add pads that need dynamic muxing into a separate list
317 */
318
319 hmux->nr_pads_dynamic = nr_pads_dynamic;
320 hmux->pads_dynamic = kzalloc(sizeof(struct omap_device_pad *) *
321 nr_pads_dynamic, GFP_KERNEL);
322 if (!hmux->pads_dynamic) {
323 pr_err("%s: Could not allocate dynamic pads\n", __func__);
324 return hmux;
325 }
326
327 nr_pads_dynamic = 0;
328 for (i = 0; i < hmux->nr_pads; i++) {
329 struct omap_device_pad *pad = &hmux->pads[i];
330
331 if (pad->flags & OMAP_DEVICE_PAD_REMUX) {
332 pr_debug("%s: pad %s tagged dynamic\n",
333 __func__, pad->name);
334 hmux->pads_dynamic[nr_pads_dynamic] = pad;
335 nr_pads_dynamic++;
336 }
337 }
338
9796b323
TL
339 return hmux;
340
341err3:
342 kfree(hmux->pads);
343err2:
344 kfree(hmux);
345err1:
346 pr_err("%s: Could not allocate device mux entry\n", __func__);
347
348 return NULL;
349}
350
8d9af88f
TL
351/* Assumes the calling function takes care of locking */
352void omap_hwmod_mux(struct omap_hwmod_mux_info *hmux, u8 state)
353{
354 int i;
355
029268e4
TL
356 /* Runtime idling of dynamic pads */
357 if (state == _HWMOD_STATE_IDLE && hmux->enabled) {
358 for (i = 0; i < hmux->nr_pads_dynamic; i++) {
359 struct omap_device_pad *pad = hmux->pads_dynamic[i];
360 int val = -EINVAL;
361
029268e4
TL
362 val = pad->idle;
363 omap_mux_write(pad->partition, val,
364 pad->mux->reg_offset);
365 }
366
367 return;
368 }
369
370 /* Runtime enabling of dynamic pads */
86c79bf4
S
371 if ((state == _HWMOD_STATE_ENABLED) && hmux->pads_dynamic
372 && hmux->enabled) {
029268e4
TL
373 for (i = 0; i < hmux->nr_pads_dynamic; i++) {
374 struct omap_device_pad *pad = hmux->pads_dynamic[i];
375 int val = -EINVAL;
376
029268e4
TL
377 val = pad->enable;
378 omap_mux_write(pad->partition, val,
379 pad->mux->reg_offset);
029268e4
TL
380 }
381
86c79bf4 382 return;
029268e4
TL
383 }
384
385 /* Enabling or disabling of all pads */
8d9af88f
TL
386 for (i = 0; i < hmux->nr_pads; i++) {
387 struct omap_device_pad *pad = &hmux->pads[i];
388 int flags, val = -EINVAL;
389
390 flags = pad->flags;
391
392 switch (state) {
393 case _HWMOD_STATE_ENABLED:
8d9af88f
TL
394 val = pad->enable;
395 pr_debug("%s: Enabling %s %x\n", __func__,
396 pad->name, val);
397 break;
8d9af88f 398 case _HWMOD_STATE_DISABLED:
8d9af88f
TL
399 /* Use safe mode unless OMAP_DEVICE_PAD_REMUX */
400 if (flags & OMAP_DEVICE_PAD_REMUX)
401 val = pad->off;
402 else
403 val = OMAP_MUX_MODE7;
8d9af88f
TL
404 pr_debug("%s: Disabling %s %x\n", __func__,
405 pad->name, val);
86c79bf4
S
406 break;
407 default:
408 /* Nothing to be done */
409 break;
8d9af88f
TL
410 };
411
412 if (val >= 0) {
413 omap_mux_write(pad->partition, val,
414 pad->mux->reg_offset);
415 pad->flags = flags;
416 }
417 }
029268e4
TL
418
419 if (state == _HWMOD_STATE_ENABLED)
420 hmux->enabled = true;
421 else
422 hmux->enabled = false;
8d9af88f
TL
423}
424
4b715efc
TL
425#ifdef CONFIG_DEBUG_FS
426
427#define OMAP_MUX_MAX_NR_FLAGS 10
428#define OMAP_MUX_TEST_FLAG(val, mask) \
429 if (((val) & (mask)) == (mask)) { \
430 i++; \
431 flags[i] = #mask; \
432 }
433
434/* REVISIT: Add checking for non-optimal mux settings */
435static inline void omap_mux_decode(struct seq_file *s, u16 val)
436{
437 char *flags[OMAP_MUX_MAX_NR_FLAGS];
78737ae1 438 char mode[sizeof("OMAP_MUX_MODE") + 1];
4b715efc
TL
439 int i = -1;
440
441 sprintf(mode, "OMAP_MUX_MODE%d", val & 0x7);
442 i++;
443 flags[i] = mode;
444
445 OMAP_MUX_TEST_FLAG(val, OMAP_PIN_OFF_WAKEUPENABLE);
446 if (val & OMAP_OFF_EN) {
447 if (!(val & OMAP_OFFOUT_EN)) {
448 if (!(val & OMAP_OFF_PULL_UP)) {
449 OMAP_MUX_TEST_FLAG(val,
450 OMAP_PIN_OFF_INPUT_PULLDOWN);
451 } else {
452 OMAP_MUX_TEST_FLAG(val,
453 OMAP_PIN_OFF_INPUT_PULLUP);
454 }
455 } else {
456 if (!(val & OMAP_OFFOUT_VAL)) {
457 OMAP_MUX_TEST_FLAG(val,
458 OMAP_PIN_OFF_OUTPUT_LOW);
459 } else {
460 OMAP_MUX_TEST_FLAG(val,
461 OMAP_PIN_OFF_OUTPUT_HIGH);
462 }
463 }
464 }
465
466 if (val & OMAP_INPUT_EN) {
467 if (val & OMAP_PULL_ENA) {
468 if (!(val & OMAP_PULL_UP)) {
469 OMAP_MUX_TEST_FLAG(val,
470 OMAP_PIN_INPUT_PULLDOWN);
471 } else {
472 OMAP_MUX_TEST_FLAG(val, OMAP_PIN_INPUT_PULLUP);
473 }
474 } else {
475 OMAP_MUX_TEST_FLAG(val, OMAP_PIN_INPUT);
476 }
477 } else {
478 i++;
479 flags[i] = "OMAP_PIN_OUTPUT";
480 }
481
482 do {
483 seq_printf(s, "%s", flags[i]);
484 if (i > 0)
485 seq_printf(s, " | ");
486 } while (i-- > 0);
487}
488
112485e9 489#define OMAP_MUX_DEFNAME_LEN 32
4b715efc
TL
490
491static int omap_mux_dbg_board_show(struct seq_file *s, void *unused)
492{
112485e9 493 struct omap_mux_partition *partition = s->private;
4b715efc 494 struct omap_mux_entry *e;
112485e9 495 u8 omap_gen = omap_rev() >> 28;
4b715efc 496
112485e9 497 list_for_each_entry(e, &partition->muxmodes, node) {
4b715efc
TL
498 struct omap_mux *m = &e->mux;
499 char m0_def[OMAP_MUX_DEFNAME_LEN];
500 char *m0_name = m->muxnames[0];
501 u16 val;
502 int i, mode;
503
504 if (!m0_name)
505 continue;
506
78737ae1 507 /* REVISIT: Needs to be updated if mode0 names get longer */
4b715efc
TL
508 for (i = 0; i < OMAP_MUX_DEFNAME_LEN; i++) {
509 if (m0_name[i] == '\0') {
510 m0_def[i] = m0_name[i];
511 break;
512 }
513 m0_def[i] = toupper(m0_name[i]);
514 }
112485e9 515 val = omap_mux_read(partition, m->reg_offset);
4b715efc 516 mode = val & OMAP_MUX_MODE7;
112485e9
BC
517 if (mode != 0)
518 seq_printf(s, "/* %s */\n", m->muxnames[mode]);
519
520 /*
25985edc 521 * XXX: Might be revisited to support differences across
112485e9
BC
522 * same OMAP generation.
523 */
524 seq_printf(s, "OMAP%d_MUX(%s, ", omap_gen, m0_def);
4b715efc
TL
525 omap_mux_decode(s, val);
526 seq_printf(s, "),\n");
527 }
528
529 return 0;
530}
531
532static int omap_mux_dbg_board_open(struct inode *inode, struct file *file)
533{
112485e9 534 return single_open(file, omap_mux_dbg_board_show, inode->i_private);
4b715efc
TL
535}
536
537static const struct file_operations omap_mux_dbg_board_fops = {
538 .open = omap_mux_dbg_board_open,
539 .read = seq_read,
540 .llseek = seq_lseek,
541 .release = single_release,
542};
543
112485e9
BC
544static struct omap_mux_partition *omap_mux_get_partition(struct omap_mux *mux)
545{
546 struct omap_mux_partition *partition;
547
548 list_for_each_entry(partition, &mux_partitions, node) {
549 struct list_head *muxmodes = &partition->muxmodes;
550 struct omap_mux_entry *e;
551
552 list_for_each_entry(e, muxmodes, node) {
553 struct omap_mux *m = &e->mux;
554
555 if (m == mux)
556 return partition;
557 }
558 }
559
560 return NULL;
561}
562
4b715efc
TL
563static int omap_mux_dbg_signal_show(struct seq_file *s, void *unused)
564{
565 struct omap_mux *m = s->private;
112485e9 566 struct omap_mux_partition *partition;
4b715efc
TL
567 const char *none = "NA";
568 u16 val;
569 int mode;
570
112485e9
BC
571 partition = omap_mux_get_partition(m);
572 if (!partition)
573 return 0;
574
575 val = omap_mux_read(partition, m->reg_offset);
4b715efc
TL
576 mode = val & OMAP_MUX_MODE7;
577
112485e9 578 seq_printf(s, "name: %s.%s (0x%08x/0x%03x = 0x%04x), b %s, t %s\n",
4b715efc 579 m->muxnames[0], m->muxnames[mode],
112485e9 580 partition->phys + m->reg_offset, m->reg_offset, val,
4b715efc
TL
581 m->balls[0] ? m->balls[0] : none,
582 m->balls[1] ? m->balls[1] : none);
583 seq_printf(s, "mode: ");
584 omap_mux_decode(s, val);
585 seq_printf(s, "\n");
586 seq_printf(s, "signals: %s | %s | %s | %s | %s | %s | %s | %s\n",
587 m->muxnames[0] ? m->muxnames[0] : none,
588 m->muxnames[1] ? m->muxnames[1] : none,
589 m->muxnames[2] ? m->muxnames[2] : none,
590 m->muxnames[3] ? m->muxnames[3] : none,
591 m->muxnames[4] ? m->muxnames[4] : none,
592 m->muxnames[5] ? m->muxnames[5] : none,
593 m->muxnames[6] ? m->muxnames[6] : none,
594 m->muxnames[7] ? m->muxnames[7] : none);
595
596 return 0;
597}
598
599#define OMAP_MUX_MAX_ARG_CHAR 7
600
601static ssize_t omap_mux_dbg_signal_write(struct file *file,
112485e9
BC
602 const char __user *user_buf,
603 size_t count, loff_t *ppos)
4b715efc
TL
604{
605 char buf[OMAP_MUX_MAX_ARG_CHAR];
606 struct seq_file *seqf;
607 struct omap_mux *m;
608 unsigned long val;
609 int buf_size, ret;
112485e9 610 struct omap_mux_partition *partition;
4b715efc
TL
611
612 if (count > OMAP_MUX_MAX_ARG_CHAR)
613 return -EINVAL;
614
615 memset(buf, 0, sizeof(buf));
616 buf_size = min(count, sizeof(buf) - 1);
617
618 if (copy_from_user(buf, user_buf, buf_size))
619 return -EFAULT;
620
621 ret = strict_strtoul(buf, 0x10, &val);
622 if (ret < 0)
623 return ret;
624
625 if (val > 0xffff)
626 return -EINVAL;
627
628 seqf = file->private_data;
629 m = seqf->private;
630
112485e9
BC
631 partition = omap_mux_get_partition(m);
632 if (!partition)
633 return -ENODEV;
634
635 omap_mux_write(partition, (u16)val, m->reg_offset);
4b715efc
TL
636 *ppos += count;
637
638 return count;
639}
640
641static int omap_mux_dbg_signal_open(struct inode *inode, struct file *file)
642{
643 return single_open(file, omap_mux_dbg_signal_show, inode->i_private);
644}
645
646static const struct file_operations omap_mux_dbg_signal_fops = {
647 .open = omap_mux_dbg_signal_open,
648 .read = seq_read,
649 .write = omap_mux_dbg_signal_write,
650 .llseek = seq_lseek,
651 .release = single_release,
652};
653
654static struct dentry *mux_dbg_dir;
655
112485e9
BC
656static void __init omap_mux_dbg_create_entry(
657 struct omap_mux_partition *partition,
658 struct dentry *mux_dbg_dir)
4b715efc
TL
659{
660 struct omap_mux_entry *e;
661
112485e9
BC
662 list_for_each_entry(e, &partition->muxmodes, node) {
663 struct omap_mux *m = &e->mux;
664
9b12771a 665 (void)debugfs_create_file(m->muxnames[0], S_IWUSR, mux_dbg_dir,
112485e9
BC
666 m, &omap_mux_dbg_signal_fops);
667 }
668}
669
670static void __init omap_mux_dbg_init(void)
671{
672 struct omap_mux_partition *partition;
673 static struct dentry *mux_dbg_board_dir;
674
4b715efc
TL
675 mux_dbg_dir = debugfs_create_dir("omap_mux", NULL);
676 if (!mux_dbg_dir)
677 return;
678
112485e9
BC
679 mux_dbg_board_dir = debugfs_create_dir("board", mux_dbg_dir);
680 if (!mux_dbg_board_dir)
681 return;
4b715efc 682
112485e9
BC
683 list_for_each_entry(partition, &mux_partitions, node) {
684 omap_mux_dbg_create_entry(partition, mux_dbg_dir);
685 (void)debugfs_create_file(partition->name, S_IRUGO,
686 mux_dbg_board_dir, partition,
687 &omap_mux_dbg_board_fops);
4b715efc
TL
688 }
689}
690
691#else
692static inline void omap_mux_dbg_init(void)
693{
694}
695#endif /* CONFIG_DEBUG_FS */
696
15ac7afe
TL
697static void __init omap_mux_free_names(struct omap_mux *m)
698{
699 int i;
700
701 for (i = 0; i < OMAP_MUX_NR_MODES; i++)
702 kfree(m->muxnames[i]);
703
704#ifdef CONFIG_DEBUG_FS
705 for (i = 0; i < OMAP_MUX_NR_SIDES; i++)
706 kfree(m->balls[i]);
707#endif
708
709}
710
711/* Free all data except for GPIO pins unless CONFIG_DEBUG_FS is set */
712static int __init omap_mux_late_init(void)
713{
112485e9 714 struct omap_mux_partition *partition;
15ac7afe 715
112485e9
BC
716 list_for_each_entry(partition, &mux_partitions, node) {
717 struct omap_mux_entry *e, *tmp;
718 list_for_each_entry_safe(e, tmp, &partition->muxmodes, node) {
719 struct omap_mux *m = &e->mux;
720 u16 mode = omap_mux_read(partition, m->reg_offset);
15ac7afe 721
112485e9
BC
722 if (OMAP_MODE_GPIO(mode))
723 continue;
15ac7afe
TL
724
725#ifndef CONFIG_DEBUG_FS
112485e9
BC
726 mutex_lock(&muxmode_mutex);
727 list_del(&e->node);
728 mutex_unlock(&muxmode_mutex);
729 omap_mux_free_names(m);
730 kfree(m);
1dbae815 731#endif
112485e9 732 }
15ac7afe
TL
733 }
734
4b715efc
TL
735 omap_mux_dbg_init();
736
15ac7afe
TL
737 return 0;
738}
739late_initcall(omap_mux_late_init);
740
741static void __init omap_mux_package_fixup(struct omap_mux *p,
742 struct omap_mux *superset)
743{
744 while (p->reg_offset != OMAP_MUX_TERMINATOR) {
745 struct omap_mux *s = superset;
746 int found = 0;
747
748 while (s->reg_offset != OMAP_MUX_TERMINATOR) {
749 if (s->reg_offset == p->reg_offset) {
750 *s = *p;
751 found++;
752 break;
753 }
754 s++;
755 }
756 if (!found)
032a6424 757 pr_err("%s: Unknown entry offset 0x%x\n", __func__,
1cbb3a9a 758 p->reg_offset);
15ac7afe
TL
759 p++;
760 }
761}
762
763#ifdef CONFIG_DEBUG_FS
764
765static void __init omap_mux_package_init_balls(struct omap_ball *b,
766 struct omap_mux *superset)
767{
768 while (b->reg_offset != OMAP_MUX_TERMINATOR) {
769 struct omap_mux *s = superset;
770 int found = 0;
771
772 while (s->reg_offset != OMAP_MUX_TERMINATOR) {
773 if (s->reg_offset == b->reg_offset) {
774 s->balls[0] = b->balls[0];
775 s->balls[1] = b->balls[1];
776 found++;
777 break;
778 }
779 s++;
780 }
781 if (!found)
032a6424 782 pr_err("%s: Unknown ball offset 0x%x\n", __func__,
1cbb3a9a 783 b->reg_offset);
15ac7afe
TL
784 b++;
785 }
786}
787
788#else /* CONFIG_DEBUG_FS */
789
790static inline void omap_mux_package_init_balls(struct omap_ball *b,
791 struct omap_mux *superset)
792{
793}
794
795#endif /* CONFIG_DEBUG_FS */
796
797static int __init omap_mux_setup(char *options)
798{
799 if (!options)
800 return 0;
801
802 omap_mux_options = options;
803
804 return 1;
805}
806__setup("omap_mux=", omap_mux_setup);
807
808/*
809 * Note that the omap_mux=some.signal1=0x1234,some.signal2=0x1234
810 * cmdline options only override the bootloader values.
811 * During development, please enable CONFIG_DEBUG_FS, and use the
812 * signal specific entries under debugfs.
813 */
814static void __init omap_mux_set_cmdline_signals(void)
815{
816 char *options, *next_opt, *token;
817
818 if (!omap_mux_options)
819 return;
820
821 options = kmalloc(strlen(omap_mux_options) + 1, GFP_KERNEL);
822 if (!options)
823 return;
824
825 strcpy(options, omap_mux_options);
826 next_opt = options;
827
828 while ((token = strsep(&next_opt, ",")) != NULL) {
829 char *keyval, *name;
830 unsigned long val;
831
832 keyval = token;
833 name = strsep(&keyval, "=");
834 if (name) {
835 int res;
836
837 res = strict_strtoul(keyval, 0x10, &val);
838 if (res < 0)
839 continue;
840
841 omap_mux_init_signal(name, (u16)val);
842 }
843 }
844
845 kfree(options);
846}
847
15ac7afe 848static int __init omap_mux_copy_names(struct omap_mux *src,
112485e9 849 struct omap_mux *dst)
15ac7afe
TL
850{
851 int i;
852
853 for (i = 0; i < OMAP_MUX_NR_MODES; i++) {
854 if (src->muxnames[i]) {
855 dst->muxnames[i] =
856 kmalloc(strlen(src->muxnames[i]) + 1,
857 GFP_KERNEL);
858 if (!dst->muxnames[i])
859 goto free;
860 strcpy(dst->muxnames[i], src->muxnames[i]);
861 }
862 }
863
864#ifdef CONFIG_DEBUG_FS
865 for (i = 0; i < OMAP_MUX_NR_SIDES; i++) {
866 if (src->balls[i]) {
867 dst->balls[i] =
868 kmalloc(strlen(src->balls[i]) + 1,
869 GFP_KERNEL);
870 if (!dst->balls[i])
871 goto free;
872 strcpy(dst->balls[i], src->balls[i]);
873 }
874 }
875#endif
876
877 return 0;
878
879free:
880 omap_mux_free_names(dst);
881 return -ENOMEM;
882
883}
884
885#endif /* CONFIG_OMAP_MUX */
886
112485e9
BC
887static struct omap_mux *omap_mux_get_by_gpio(
888 struct omap_mux_partition *partition,
889 int gpio)
15ac7afe
TL
890{
891 struct omap_mux_entry *e;
112485e9 892 struct omap_mux *ret = NULL;
15ac7afe 893
112485e9 894 list_for_each_entry(e, &partition->muxmodes, node) {
15ac7afe
TL
895 struct omap_mux *m = &e->mux;
896 if (m->gpio == gpio) {
112485e9 897 ret = m;
15ac7afe
TL
898 break;
899 }
900 }
901
112485e9 902 return ret;
15ac7afe
TL
903}
904
905/* Needed for dynamic muxing of GPIO pins for off-idle */
906u16 omap_mux_get_gpio(int gpio)
907{
112485e9
BC
908 struct omap_mux_partition *partition;
909 struct omap_mux *m;
15ac7afe 910
112485e9
BC
911 list_for_each_entry(partition, &mux_partitions, node) {
912 m = omap_mux_get_by_gpio(partition, gpio);
913 if (m)
914 return omap_mux_read(partition, m->reg_offset);
15ac7afe
TL
915 }
916
112485e9 917 if (!m || m->reg_offset == OMAP_MUX_TERMINATOR)
032a6424 918 pr_err("%s: Could not get gpio%i\n", __func__, gpio);
112485e9
BC
919
920 return OMAP_MUX_TERMINATOR;
15ac7afe
TL
921}
922
923/* Needed for dynamic muxing of GPIO pins for off-idle */
924void omap_mux_set_gpio(u16 val, int gpio)
925{
112485e9
BC
926 struct omap_mux_partition *partition;
927 struct omap_mux *m = NULL;
15ac7afe 928
112485e9
BC
929 list_for_each_entry(partition, &mux_partitions, node) {
930 m = omap_mux_get_by_gpio(partition, gpio);
931 if (m) {
932 omap_mux_write(partition, val, m->reg_offset);
933 return;
934 }
15ac7afe
TL
935 }
936
112485e9 937 if (!m || m->reg_offset == OMAP_MUX_TERMINATOR)
032a6424 938 pr_err("%s: Could not set gpio%i\n", __func__, gpio);
15ac7afe
TL
939}
940
112485e9
BC
941static struct omap_mux * __init omap_mux_list_add(
942 struct omap_mux_partition *partition,
943 struct omap_mux *src)
15ac7afe
TL
944{
945 struct omap_mux_entry *entry;
946 struct omap_mux *m;
947
948 entry = kzalloc(sizeof(struct omap_mux_entry), GFP_KERNEL);
949 if (!entry)
950 return NULL;
951
952 m = &entry->mux;
30833142 953 entry->mux = *src;
15ac7afe
TL
954
955#ifdef CONFIG_OMAP_MUX
956 if (omap_mux_copy_names(src, m)) {
957 kfree(entry);
958 return NULL;
959 }
960#endif
961
962 mutex_lock(&muxmode_mutex);
112485e9 963 list_add_tail(&entry->node, &partition->muxmodes);
15ac7afe
TL
964 mutex_unlock(&muxmode_mutex);
965
966 return m;
967}
968
969/*
970 * Note if CONFIG_OMAP_MUX is not selected, we will only initialize
971 * the GPIO to mux offset mapping that is needed for dynamic muxing
972 * of GPIO pins for off-idle.
973 */
112485e9
BC
974static void __init omap_mux_init_list(struct omap_mux_partition *partition,
975 struct omap_mux *superset)
15ac7afe
TL
976{
977 while (superset->reg_offset != OMAP_MUX_TERMINATOR) {
978 struct omap_mux *entry;
979
b72c7d54
RL
980#ifdef CONFIG_OMAP_MUX
981 if (!superset->muxnames || !superset->muxnames[0]) {
15ac7afe
TL
982 superset++;
983 continue;
984 }
b72c7d54
RL
985#else
986 /* Skip pins that are not muxed as GPIO by bootloader */
112485e9
BC
987 if (!OMAP_MODE_GPIO(omap_mux_read(partition,
988 superset->reg_offset))) {
9ecef433
TL
989 superset++;
990 continue;
991 }
992#endif
993
112485e9 994 entry = omap_mux_list_add(partition, superset);
15ac7afe 995 if (!entry) {
032a6424 996 pr_err("%s: Could not add entry\n", __func__);
15ac7afe
TL
997 return;
998 }
999 superset++;
1000 }
1001}
1002
321cfc85
TL
1003#ifdef CONFIG_OMAP_MUX
1004
1005static void omap_mux_init_package(struct omap_mux *superset,
1006 struct omap_mux *package_subset,
1007 struct omap_ball *package_balls)
1008{
1009 if (package_subset)
1010 omap_mux_package_fixup(package_subset, superset);
1011 if (package_balls)
1012 omap_mux_package_init_balls(package_balls, superset);
1013}
1014
112485e9
BC
1015static void omap_mux_init_signals(struct omap_mux_partition *partition,
1016 struct omap_board_mux *board_mux)
321cfc85
TL
1017{
1018 omap_mux_set_cmdline_signals();
112485e9 1019 omap_mux_write_array(partition, board_mux);
321cfc85
TL
1020}
1021
1022#else
1023
1024static void omap_mux_init_package(struct omap_mux *superset,
1025 struct omap_mux *package_subset,
1026 struct omap_ball *package_balls)
1027{
1028}
1029
112485e9
BC
1030static void omap_mux_init_signals(struct omap_mux_partition *partition,
1031 struct omap_board_mux *board_mux)
321cfc85
TL
1032{
1033}
1034
1035#endif
1036
112485e9 1037static u32 mux_partitions_cnt;
15ac7afe 1038
112485e9
BC
1039int __init omap_mux_init(const char *name, u32 flags,
1040 u32 mux_pbase, u32 mux_size,
1041 struct omap_mux *superset,
1042 struct omap_mux *package_subset,
1043 struct omap_board_mux *board_mux,
1044 struct omap_ball *package_balls)
1045{
1046 struct omap_mux_partition *partition;
1047
1048 partition = kzalloc(sizeof(struct omap_mux_partition), GFP_KERNEL);
1049 if (!partition)
1050 return -ENOMEM;
1051
1052 partition->name = name;
1053 partition->flags = flags;
1054 partition->size = mux_size;
1055 partition->phys = mux_pbase;
1056 partition->base = ioremap(mux_pbase, mux_size);
1057 if (!partition->base) {
032a6424
DM
1058 pr_err("%s: Could not ioremap mux partition at 0x%08x\n",
1059 __func__, partition->phys);
9d47e309 1060 kfree(partition);
15ac7afe
TL
1061 return -ENODEV;
1062 }
1063
112485e9
BC
1064 INIT_LIST_HEAD(&partition->muxmodes);
1065
1066 list_add_tail(&partition->node, &mux_partitions);
1067 mux_partitions_cnt++;
032a6424 1068 pr_info("%s: Add partition: #%d: %s, flags: %x\n", __func__,
112485e9 1069 mux_partitions_cnt, partition->name, partition->flags);
d5425be6 1070
321cfc85 1071 omap_mux_init_package(superset, package_subset, package_balls);
112485e9
BC
1072 omap_mux_init_list(partition, superset);
1073 omap_mux_init_signals(partition, board_mux);
2cb0c54f 1074
15ac7afe
TL
1075 return 0;
1076}
1077