aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/pinctrl/bcm/pinctrl-bcm4908.c
blob: cdfa165fc03328a9ed9cda52c9476fa2f0dc0449 (plain) (blame)
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
// SPDX-License-Identifier: GPL-2.0
/* Copyright (C) 2021 Rafał Miłecki <rafal@milecki.pl> */

#include <linux/err.h>
#include <linux/io.h>
#include <linux/mod_devicetable.h>
#include <linux/module.h>
#include <linux/pinctrl/pinconf-generic.h>
#include <linux/pinctrl/pinctrl.h>
#include <linux/pinctrl/pinmux.h>
#include <linux/platform_device.h>
#include <linux/slab.h>
#include <linux/string_helpers.h>

#include "../core.h"
#include "../pinmux.h"

#define BCM4908_NUM_PINS			86

#define BCM4908_TEST_PORT_BLOCK_EN_LSB			0x00
#define BCM4908_TEST_PORT_BLOCK_DATA_MSB		0x04
#define BCM4908_TEST_PORT_BLOCK_DATA_LSB		0x08
#define  BCM4908_TEST_PORT_LSB_PINMUX_DATA_SHIFT	12
#define BCM4908_TEST_PORT_COMMAND			0x0c
#define  BCM4908_TEST_PORT_CMD_LOAD_MUX_REG		0x00000021

struct bcm4908_pinctrl {
	struct device *dev;
	void __iomem *base;
	struct mutex mutex;
	struct pinctrl_dev *pctldev;
	struct pinctrl_desc pctldesc;
};

/*
 * Groups
 */

struct bcm4908_pinctrl_pin_setup {
	unsigned int number;
	unsigned int function;
};

static const struct bcm4908_pinctrl_pin_setup led_0_pins_a[] = {
	{ 0, 3 },
};

static const struct bcm4908_pinctrl_pin_setup led_1_pins_a[] = {
	{ 1, 3 },
};

static const struct bcm4908_pinctrl_pin_setup led_2_pins_a[] = {
	{ 2, 3 },
};

static const struct bcm4908_pinctrl_pin_setup led_3_pins_a[] = {
	{ 3, 3 },
};

static const struct bcm4908_pinctrl_pin_setup led_4_pins_a[] = {
	{ 4, 3 },
};

static const struct bcm4908_pinctrl_pin_setup led_5_pins_a[] = {
	{ 5, 3 },
};

static const struct bcm4908_pinctrl_pin_setup led_6_pins_a[] = {
	{ 6, 3 },
};

static const struct bcm4908_pinctrl_pin_setup led_7_pins_a[] = {
	{ 7, 3 },
};

static const struct bcm4908_pinctrl_pin_setup led_8_pins_a[] = {
	{ 8, 3 },
};

static const struct bcm4908_pinctrl_pin_setup led_9_pins_a[] = {
	{ 9, 3 },
};

static const struct bcm4908_pinctrl_pin_setup led_10_pins_a[] = {
	{ 10, 3 },
};

static const struct bcm4908_pinctrl_pin_setup led_11_pins_a[] = {
	{ 11, 3 },
};

static const struct bcm4908_pinctrl_pin_setup led_12_pins_a[] = {
	{ 12, 3 },
};

static const struct bcm4908_pinctrl_pin_setup led_13_pins_a[] = {
	{ 13, 3 },
};

static const struct bcm4908_pinctrl_pin_setup led_14_pins_a[] = {
	{ 14, 3 },
};

static const struct bcm4908_pinctrl_pin_setup led_15_pins_a[] = {
	{ 15, 3 },
};

static const struct bcm4908_pinctrl_pin_setup led_16_pins_a[] = {
	{ 16, 3 },
};

static const struct bcm4908_pinctrl_pin_setup led_17_pins_a[] = {
	{ 17, 3 },
};

static const struct bcm4908_pinctrl_pin_setup led_18_pins_a[] = {
	{ 18, 3 },
};

static const struct bcm4908_pinctrl_pin_setup led_19_pins_a[] = {
	{ 19, 3 },
};

static const struct bcm4908_pinctrl_pin_setup led_20_pins_a[] = {
	{ 20, 3 },
};

static const struct bcm4908_pinctrl_pin_setup led_21_pins_a[] = {
	{ 21, 3 },
};

static const struct bcm4908_pinctrl_pin_setup led_22_pins_a[] = {
	{ 22, 3 },
};

static const struct bcm4908_pinctrl_pin_setup led_23_pins_a[] = {
	{ 23, 3 },
};

static const struct bcm4908_pinctrl_pin_setup led_24_pins_a[] = {
	{ 24, 3 },
};

static const struct bcm4908_pinctrl_pin_setup led_25_pins_a[] = {
	{ 25, 3 },
};

static const struct bcm4908_pinctrl_pin_setup led_26_pins_a[] = {
	{ 26, 3 },
};

static const struct bcm4908_pinctrl_pin_setup led_27_pins_a[] = {
	{ 27, 3 },
};

static const struct bcm4908_pinctrl_pin_setup led_28_pins_a[] = {
	{ 28, 3 },
};

static const struct bcm4908_pinctrl_pin_setup led_29_pins_a[] = {
	{ 29, 3 },
};

static const struct bcm4908_pinctrl_pin_setup led_30_pins_a[] = {
	{ 30, 3 },
};

static const struct bcm4908_pinctrl_pin_setup led_31_pins_a[] = {
	{ 31, 3 },
};

static const struct bcm4908_pinctrl_pin_setup led_10_pins_b[] = {
	{ 8, 2 },
};

static const struct bcm4908_pinctrl_pin_setup led_11_pins_b[] = {
	{ 9, 2 },
};

static const struct bcm4908_pinctrl_pin_setup led_12_pins_b[] = {
	{ 0, 2 },
};

static const struct bcm4908_pinctrl_pin_setup led_13_pins_b[] = {
	{ 1, 2 },
};

static const struct bcm4908_pinctrl_pin_setup led_31_pins_b[] = {
	{ 30, 2 },
};

static const struct bcm4908_pinctrl_pin_setup hs_uart_pins[] = {
	{ 10, 0 },	/* CTS */
	{ 11, 0 },	/* RTS */
	{ 12, 0 },	/* RXD */
	{ 13, 0 },	/* TXD */
};

static const struct bcm4908_pinctrl_pin_setup i2c_pins_a[] = {
	{ 18, 0 },	/* SDA */
	{ 19, 0 },	/* SCL */
};

static const struct bcm4908_pinctrl_pin_setup i2c_pins_b[] = {
	{ 22, 0 },	/* SDA */
	{ 23, 0 },	/* SCL */
};

static const struct bcm4908_pinctrl_pin_setup i2s_pins[] = {
	{ 27, 0 },	/* MCLK */
	{ 28, 0 },	/* LRCK */
	{ 29, 0 },	/* SDATA */
	{ 30, 0 },	/* SCLK */
};

static const struct bcm4908_pinctrl_pin_setup nand_ctrl_pins[] = {
	{ 32, 0 },
	{ 33, 0 },
	{ 34, 0 },
	{ 43, 0 },
	{ 44, 0 },
	{ 45, 0 },
	{ 56, 1 },
};

static const struct bcm4908_pinctrl_pin_setup nand_data_pins[] = {
	{ 35, 0 },
	{ 36, 0 },
	{ 37, 0 },
	{ 38, 0 },
	{ 39, 0 },
	{ 40, 0 },
	{ 41, 0 },
	{ 42, 0 },
};

static const struct bcm4908_pinctrl_pin_setup emmc_ctrl_pins[] = {
	{ 46, 0 },
	{ 47, 0 },
};

static const struct bcm4908_pinctrl_pin_setup usb0_pwr_pins[] = {
	{ 63, 0 },
	{ 64, 0 },
};

static const struct bcm4908_pinctrl_pin_setup usb1_pwr_pins[] = {
	{ 66, 0 },
	{ 67, 0 },
};

struct bcm4908_pinctrl_grp {
	const char *name;
	const struct bcm4908_pinctrl_pin_setup *pins;
	const unsigned int num_pins;
};

static const struct bcm4908_pinctrl_grp bcm4908_pinctrl_grps[] = {
	{ "led_0_grp_a", led_0_pins_a, ARRAY_SIZE(led_0_pins_a) },
	{ "led_1_grp_a", led_1_pins_a, ARRAY_SIZE(led_1_pins_a) },
	{ "led_2_grp_a", led_2_pins_a, ARRAY_SIZE(led_2_pins_a) },
	{ "led_3_grp_a", led_3_pins_a, ARRAY_SIZE(led_3_pins_a) },
	{ "led_4_grp_a", led_4_pins_a, ARRAY_SIZE(led_4_pins_a) },
	{ "led_5_grp_a", led_5_pins_a, ARRAY_SIZE(led_5_pins_a) },
	{ "led_6_grp_a", led_6_pins_a, ARRAY_SIZE(led_6_pins_a) },
	{ "led_7_grp_a", led_7_pins_a, ARRAY_SIZE(led_7_pins_a) },
	{ "led_8_grp_a", led_8_pins_a, ARRAY_SIZE(led_8_pins_a) },
	{ "led_9_grp_a", led_9_pins_a, ARRAY_SIZE(led_9_pins_a) },
	{ "led_10_grp_a", led_10_pins_a, ARRAY_SIZE(led_10_pins_a) },
	{ "led_11_grp_a", led_11_pins_a, ARRAY_SIZE(led_11_pins_a) },
	{ "led_12_grp_a", led_12_pins_a, ARRAY_SIZE(led_12_pins_a) },
	{ "led_13_grp_a", led_13_pins_a, ARRAY_SIZE(led_13_pins_a) },
	{ "led_14_grp_a", led_14_pins_a, ARRAY_SIZE(led_14_pins_a) },
	{ "led_15_grp_a", led_15_pins_a, ARRAY_SIZE(led_15_pins_a) },
	{ "led_16_grp_a", led_16_pins_a, ARRAY_SIZE(led_16_pins_a) },
	{ "led_17_grp_a", led_17_pins_a, ARRAY_SIZE(led_17_pins_a) },
	{ "led_18_grp_a", led_18_pins_a, ARRAY_SIZE(led_18_pins_a) },
	{ "led_19_grp_a", led_19_pins_a, ARRAY_SIZE(led_19_pins_a) },
	{ "led_20_grp_a", led_20_pins_a, ARRAY_SIZE(led_20_pins_a) },
	{ "led_21_grp_a", led_21_pins_a, ARRAY_SIZE(led_21_pins_a) },
	{ "led_22_grp_a", led_22_pins_a, ARRAY_SIZE(led_22_pins_a) },
	{ "led_23_grp_a", led_23_pins_a, ARRAY_SIZE(led_23_pins_a) },
	{ "led_24_grp_a", led_24_pins_a, ARRAY_SIZE(led_24_pins_a) },
	{ "led_25_grp_a", led_25_pins_a, ARRAY_SIZE(led_25_pins_a) },
	{ "led_26_grp_a", led_26_pins_a, ARRAY_SIZE(led_26_pins_a) },
	{ "led_27_grp_a", led_27_pins_a, ARRAY_SIZE(led_27_pins_a) },
	{ "led_28_grp_a", led_28_pins_a, ARRAY_SIZE(led_28_pins_a) },
	{ "led_29_grp_a", led_29_pins_a, ARRAY_SIZE(led_29_pins_a) },
	{ "led_30_grp_a", led_30_pins_a, ARRAY_SIZE(led_30_pins_a) },
	{ "led_31_grp_a", led_31_pins_a, ARRAY_SIZE(led_31_pins_a) },
	{ "led_10_grp_b", led_10_pins_b, ARRAY_SIZE(led_10_pins_b) },
	{ "led_11_grp_b", led_11_pins_b, ARRAY_SIZE(led_11_pins_b) },
	{ "led_12_grp_b", led_12_pins_b, ARRAY_SIZE(led_12_pins_b) },
	{ "led_13_grp_b", led_13_pins_b, ARRAY_SIZE(led_13_pins_b) },
	{ "led_31_grp_b", led_31_pins_b, ARRAY_SIZE(led_31_pins_b) },
	{ "hs_uart_grp", hs_uart_pins, ARRAY_SIZE(hs_uart_pins) },
	{ "i2c_grp_a", i2c_pins_a, ARRAY_SIZE(i2c_pins_a) },
	{ "i2c_grp_b", i2c_pins_b, ARRAY_SIZE(i2c_pins_b) },
	{ "i2s_grp", i2s_pins, ARRAY_SIZE(i2s_pins) },
	{ "nand_ctrl_grp", nand_ctrl_pins, ARRAY_SIZE(nand_ctrl_pins) },
	{ "nand_data_grp", nand_data_pins, ARRAY_SIZE(nand_data_pins) },
	{ "emmc_ctrl_grp", emmc_ctrl_pins, ARRAY_SIZE(emmc_ctrl_pins) },
	{ "usb0_pwr_grp", usb0_pwr_pins, ARRAY_SIZE(usb0_pwr_pins) },
	{ "usb1_pwr_grp", usb1_pwr_pins, ARRAY_SIZE(usb1_pwr_pins) },
};

/*
 * Functions
 */

struct bcm4908_pinctrl_function {
	const char *name;
	const char * const *groups;
	const unsigned int num_groups;
};

static const char * const led_0_groups[] = { "led_0_grp_a" };
static const char * const led_1_groups[] = { "led_1_grp_a" };
static const char * const led_2_groups[] = { "led_2_grp_a" };
static const char * const led_3_groups[] = { "led_3_grp_a" };
static const char * const led_4_groups[] = { "led_4_grp_a" };
static const char * const led_5_groups[] = { "led_5_grp_a" };
static const char * const led_6_groups[] = { "led_6_grp_a" };
static const char * const led_7_groups[] = { "led_7_grp_a" };
static const char * const led_8_groups[] = { "led_8_grp_a" };
static const char * const led_9_groups[] = { "led_9_grp_a" };
static const char * const led_10_groups[] = { "led_10_grp_a", "led_10_grp_b" };
static const char * const led_11_groups[] = { "led_11_grp_a", "led_11_grp_b" };
static const char * const led_12_groups[] = { "led_12_grp_a", "led_12_grp_b" };
static const char * const led_13_groups[] = { "led_13_grp_a", "led_13_grp_b" };
static const char * const led_14_groups[] = { "led_14_grp_a" };
static const char * const led_15_groups[] = { "led_15_grp_a" };
static const char * const led_16_groups[] = { "led_16_grp_a" };
static const char * const led_17_groups[] = { "led_17_grp_a" };
static const char * const led_18_groups[] = { "led_18_grp_a" };
static const char * const led_19_groups[] = { "led_19_grp_a" };
static const char * const led_20_groups[] = { "led_20_grp_a" };
static const char * const led_21_groups[] = { "led_21_grp_a" };
static const char * const led_22_groups[] = { "led_22_grp_a" };
static const char * const led_23_groups[] = { "led_23_grp_a" };
static const char * const led_24_groups[] = { "led_24_grp_a" };
static const char * const led_25_groups[] = { "led_25_grp_a" };
static const char * const led_26_groups[] = { "led_26_grp_a" };
static const char * const led_27_groups[] = { "led_27_grp_a" };
static const char * const led_28_groups[] = { "led_28_grp_a" };
static const char * const led_29_groups[] = { "led_29_grp_a" };
static const char * const led_30_groups[] = { "led_30_grp_a" };
static const char * const led_31_groups[] = { "led_31_grp_a", "led_31_grp_b" };
static const char * const hs_uart_groups[] = { "hs_uart_grp" };
static const char * const i2c_groups[] = { "i2c_grp_a", "i2c_grp_b" };
static const char * const i2s_groups[] = { "i2s_grp" };
static const char * const nand_ctrl_groups[] = { "nand_ctrl_grp" };
static const char * const nand_data_groups[] = { "nand_data_grp" };
static const char * const emmc_ctrl_groups[] = { "emmc_ctrl_grp" };
static const char * const usb0_pwr_groups[] = { "usb0_pwr_grp" };
static const char * const usb1_pwr_groups[] = { "usb1_pwr_grp" };

static const struct bcm4908_pinctrl_function bcm4908_pinctrl_functions[] = {
	{ "led_0", led_0_groups, ARRAY_SIZE(led_0_groups) },
	{ "led_1", led_1_groups, ARRAY_SIZE(led_1_groups) },
	{ "led_2", led_2_groups, ARRAY_SIZE(led_2_groups) },
	{ "led_3", led_3_groups, ARRAY_SIZE(led_3_groups) },
	{ "led_4", led_4_groups, ARRAY_SIZE(led_4_groups) },
	{ "led_5", led_5_groups, ARRAY_SIZE(led_5_groups) },
	{ "led_6", led_6_groups, ARRAY_SIZE(led_6_groups) },
	{ "led_7", led_7_groups, ARRAY_SIZE(led_7_groups) },
	{ "led_8", led_8_groups, ARRAY_SIZE(led_8_groups) },
	{ "led_9", led_9_groups, ARRAY_SIZE(led_9_groups) },
	{ "led_10", led_10_groups, ARRAY_SIZE(led_10_groups) },
	{ "led_11", led_11_groups, ARRAY_SIZE(led_11_groups) },
	{ "led_12", led_12_groups, ARRAY_SIZE(led_12_groups) },
	{ "led_13", led_13_groups, ARRAY_SIZE(led_13_groups) },
	{ "led_14", led_14_groups, ARRAY_SIZE(led_14_groups) },
	{ "led_15", led_15_groups, ARRAY_SIZE(led_15_groups) },
	{ "led_16", led_16_groups, ARRAY_SIZE(led_16_groups) },
	{ "led_17", led_17_groups, ARRAY_SIZE(led_17_groups) },
	{ "led_18", led_18_groups, ARRAY_SIZE(led_18_groups) },
	{ "led_19", led_19_groups, ARRAY_SIZE(led_19_groups) },
	{ "led_20", led_20_groups, ARRAY_SIZE(led_20_groups) },
	{ "led_21", led_21_groups, ARRAY_SIZE(led_21_groups) },
	{ "led_22", led_22_groups, ARRAY_SIZE(led_22_groups) },
	{ "led_23", led_23_groups, ARRAY_SIZE(led_23_groups) },
	{ "led_24", led_24_groups, ARRAY_SIZE(led_24_groups) },
	{ "led_25", led_25_groups, ARRAY_SIZE(led_25_groups) },
	{ "led_26", led_26_groups, ARRAY_SIZE(led_26_groups) },
	{ "led_27", led_27_groups, ARRAY_SIZE(led_27_groups) },
	{ "led_28", led_28_groups, ARRAY_SIZE(led_28_groups) },
	{ "led_29", led_29_groups, ARRAY_SIZE(led_29_groups) },
	{ "led_30", led_30_groups, ARRAY_SIZE(led_30_groups) },
	{ "led_31", led_31_groups, ARRAY_SIZE(led_31_groups) },
	{ "hs_uart", hs_uart_groups, ARRAY_SIZE(hs_uart_groups) },
	{ "i2c", i2c_groups, ARRAY_SIZE(i2c_groups) },
	{ "i2s", i2s_groups, ARRAY_SIZE(i2s_groups) },
	{ "nand_ctrl", nand_ctrl_groups, ARRAY_SIZE(nand_ctrl_groups) },
	{ "nand_data", nand_data_groups, ARRAY_SIZE(nand_data_groups) },
	{ "emmc_ctrl", emmc_ctrl_groups, ARRAY_SIZE(emmc_ctrl_groups) },
	{ "usb0_pwr", usb0_pwr_groups, ARRAY_SIZE(usb0_pwr_groups) },
	{ "usb1_pwr", usb1_pwr_groups, ARRAY_SIZE(usb1_pwr_groups) },
};

/*
 * Groups code
 */

static const struct pinctrl_ops bcm4908_pinctrl_ops = {
	.get_groups_count = pinctrl_generic_get_group_count,
	.get_group_name = pinctrl_generic_get_group_name,
	.get_group_pins = pinctrl_generic_get_group_pins,
	.dt_node_to_map = pinconf_generic_dt_node_to_map_group,
	.dt_free_map = pinconf_generic_dt_free_map,
};

/*
 * Functions code
 */

static int bcm4908_pinctrl_set_mux(struct pinctrl_dev *pctrl_dev,
			      unsigned int func_selector,
			      unsigned int group_selector)
{
	struct bcm4908_pinctrl *bcm4908_pinctrl = pinctrl_dev_get_drvdata(pctrl_dev);
	const struct bcm4908_pinctrl_grp *group;
	struct group_desc *group_desc;
	int i;

	group_desc = pinctrl_generic_get_group(pctrl_dev, group_selector);
	if (!group_desc)
		return -EINVAL;
	group = group_desc->data;

	mutex_lock(&bcm4908_pinctrl->mutex);
	for (i = 0; i < group->num_pins; i++) {
		u32 lsb = 0;

		lsb |= group->pins[i].number;
		lsb |= group->pins[i].function << BCM4908_TEST_PORT_LSB_PINMUX_DATA_SHIFT;

		writel(0x0, bcm4908_pinctrl->base + BCM4908_TEST_PORT_BLOCK_DATA_MSB);
		writel(lsb, bcm4908_pinctrl->base + BCM4908_TEST_PORT_BLOCK_DATA_LSB);
		writel(BCM4908_TEST_PORT_CMD_LOAD_MUX_REG,
		       bcm4908_pinctrl->base + BCM4908_TEST_PORT_COMMAND);
	}
	mutex_unlock(&bcm4908_pinctrl->mutex);

	return 0;
}

static const struct pinmux_ops bcm4908_pinctrl_pmxops = {
	.get_functions_count = pinmux_generic_get_function_count,
	.get_function_name = pinmux_generic_get_function_name,
	.get_function_groups = pinmux_generic_get_function_groups,
	.set_mux = bcm4908_pinctrl_set_mux,
};

/*
 * Controller code
 */

static struct pinctrl_desc bcm4908_pinctrl_desc = {
	.name = "bcm4908-pinctrl",
	.pctlops = &bcm4908_pinctrl_ops,
	.pmxops = &bcm4908_pinctrl_pmxops,
};

static const struct of_device_id bcm4908_pinctrl_of_match_table[] = {
	{ .compatible = "brcm,bcm4908-pinctrl", },
	{ }
};

static int bcm4908_pinctrl_probe(struct platform_device *pdev)
{
	struct device *dev = &pdev->dev;
	struct bcm4908_pinctrl *bcm4908_pinctrl;
	struct pinctrl_desc *pctldesc;
	struct pinctrl_pin_desc *pins;
	char **pin_names;
	int i;

	bcm4908_pinctrl = devm_kzalloc(dev, sizeof(*bcm4908_pinctrl), GFP_KERNEL);
	if (!bcm4908_pinctrl)
		return -ENOMEM;
	pctldesc = &bcm4908_pinctrl->pctldesc;
	platform_set_drvdata(pdev, bcm4908_pinctrl);

	/* Set basic properties */

	bcm4908_pinctrl->dev = dev;

	bcm4908_pinctrl->base = devm_platform_ioremap_resource(pdev, 0);
	if (IS_ERR(bcm4908_pinctrl->base))
		return PTR_ERR(bcm4908_pinctrl->base);

	mutex_init(&bcm4908_pinctrl->mutex);

	memcpy(pctldesc, &bcm4908_pinctrl_desc, sizeof(*pctldesc));

	/* Set pinctrl properties */

	pin_names = devm_kasprintf_strarray(dev, "pin", BCM4908_NUM_PINS);
	if (IS_ERR(pin_names))
		return PTR_ERR(pin_names);

	pins = devm_kcalloc(dev, BCM4908_NUM_PINS, sizeof(*pins), GFP_KERNEL);
	if (!pins)
		return -ENOMEM;
	for (i = 0; i < BCM4908_NUM_PINS; i++) {
		pins[i].number = i;
		pins[i].name = pin_names[i];
	}
	pctldesc->pins = pins;
	pctldesc->npins = BCM4908_NUM_PINS;

	/* Register */

	bcm4908_pinctrl->pctldev = devm_pinctrl_register(dev, pctldesc, bcm4908_pinctrl);
	if (IS_ERR(bcm4908_pinctrl->pctldev))
		return dev_err_probe(dev, PTR_ERR(bcm4908_pinctrl->pctldev),
				     "Failed to register pinctrl\n");

	/* Groups */

	for (i = 0; i < ARRAY_SIZE(bcm4908_pinctrl_grps); i++) {
		const struct bcm4908_pinctrl_grp *group = &bcm4908_pinctrl_grps[i];
		int *pins;
		int j;

		pins = devm_kcalloc(dev, group->num_pins, sizeof(*pins), GFP_KERNEL);
		if (!pins)
			return -ENOMEM;
		for (j = 0; j < group->num_pins; j++)
			pins[j] = group->pins[j].number;

		pinctrl_generic_add_group(bcm4908_pinctrl->pctldev, group->name,
					  pins, group->num_pins, (void *)group);
	}

	/* Functions */

	for (i = 0; i < ARRAY_SIZE(bcm4908_pinctrl_functions); i++) {
		const struct bcm4908_pinctrl_function *function = &bcm4908_pinctrl_functions[i];

		pinmux_generic_add_function(bcm4908_pinctrl->pctldev,
					    function->name,
					    function->groups,
					    function->num_groups, NULL);
	}

	return 0;
}

static struct platform_driver bcm4908_pinctrl_driver = {
	.probe = bcm4908_pinctrl_probe,
	.driver = {
		.name = "bcm4908-pinctrl",
		.of_match_table = bcm4908_pinctrl_of_match_table,
	},
};

module_platform_driver(bcm4908_pinctrl_driver);

MODULE_AUTHOR("Rafał Miłecki");
MODULE_LICENSE("GPL v2");
MODULE_DEVICE_TABLE(of, bcm4908_pinctrl_of_match_table);