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
|
/*
* linux/arch/arm/mach-tegra/include/mach/pinmux.h
*
* Copyright (C) 2010 Google, Inc.
* Copyright (C) 2011-2012 NVIDIA Corporation.
*
* This software is licensed under the terms of the GNU General Public
* License version 2, as published by the Free Software Foundation, and
* may be copied, distributed, and modified under those terms.
*
* This program 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.
*
*/
#ifndef __MACH_TEGRA_PINMUX_H
#define __MACH_TEGRA_PINMUX_H
#if defined(CONFIG_ARCH_TEGRA_2x_SOC)
#include "pinmux-t2.h"
#elif defined(CONFIG_ARCH_TEGRA_3x_SOC)
#include "pinmux-t3.h"
#elif defined(CONFIG_ARCH_TEGRA_11x_SOC)
#include "pinmux-t11.h"
#elif defined(CONFIG_ARCH_TEGRA_14x_SOC)
#include "pinmux-t14.h"
#else
#error "Undefined Tegra architecture"
#endif
#define TEGRA_MUX_LIST \
TEGRA_MUX(NONE) \
TEGRA_MUX(AHB_CLK) \
TEGRA_MUX(APB_CLK) \
TEGRA_MUX(AUDIO_SYNC) \
TEGRA_MUX(CRT) \
TEGRA_MUX(DAP1) \
TEGRA_MUX(DAP2) \
TEGRA_MUX(DAP3) \
TEGRA_MUX(DAP4) \
TEGRA_MUX(DAP5) \
TEGRA_MUX(DISPLAYA) \
TEGRA_MUX(DISPLAYB) \
TEGRA_MUX(EMC_TEST0_DLL) \
TEGRA_MUX(EMC_TEST1_DLL) \
TEGRA_MUX(GMI) \
TEGRA_MUX(GMI_INT) \
TEGRA_MUX(HDMI) \
TEGRA_MUX(I2C1) \
TEGRA_MUX(I2C2) \
TEGRA_MUX(I2C3) \
TEGRA_MUX(IDE) \
TEGRA_MUX(IRDA) \
TEGRA_MUX(KBC) \
TEGRA_MUX(MIO) \
TEGRA_MUX(MIPI_HS) \
TEGRA_MUX(NAND) \
TEGRA_MUX(OSC) \
TEGRA_MUX(OWR) \
TEGRA_MUX(PCIE) \
TEGRA_MUX(PLLA_OUT) \
TEGRA_MUX(PLLC_OUT1) \
TEGRA_MUX(PLLM_OUT1) \
TEGRA_MUX(PLLP_OUT2) \
TEGRA_MUX(PLLP_OUT3) \
TEGRA_MUX(PLLP_OUT4) \
TEGRA_MUX(PWM) \
TEGRA_MUX(PWR_INTR) \
TEGRA_MUX(PWR_ON) \
TEGRA_MUX(RTCK) \
TEGRA_MUX(SDIO1) \
TEGRA_MUX(SDIO2) \
TEGRA_MUX(SDIO3) \
TEGRA_MUX(SDIO4) \
TEGRA_MUX(SFLASH) \
TEGRA_MUX(SPDIF) \
TEGRA_MUX(SPI1) \
TEGRA_MUX(SPI2) \
TEGRA_MUX(SPI2_ALT) \
TEGRA_MUX(SPI3) \
TEGRA_MUX(SPI4) \
TEGRA_MUX(TRACE) \
TEGRA_MUX(TWC) \
TEGRA_MUX(UARTA) \
TEGRA_MUX(UARTB) \
TEGRA_MUX(UARTC) \
TEGRA_MUX(UARTD) \
TEGRA_MUX(UARTE) \
TEGRA_MUX(ULPI) \
TEGRA_MUX(VI) \
TEGRA_MUX(VI_SENSOR_CLK) \
TEGRA_MUX(XIO) \
/* End of Tegra2 MUX selectors */ \
TEGRA_MUX(BLINK) \
TEGRA_MUX(CEC) \
TEGRA_MUX(CLK12) \
TEGRA_MUX(DAP) \
TEGRA_MUX(DAPSDMMC2) \
TEGRA_MUX(DDR) \
TEGRA_MUX(DEV3) \
TEGRA_MUX(DTV) \
TEGRA_MUX(VI_ALT1) \
TEGRA_MUX(VI_ALT2) \
TEGRA_MUX(VI_ALT3) \
TEGRA_MUX(EMC_DLL) \
TEGRA_MUX(EXTPERIPH1) \
TEGRA_MUX(EXTPERIPH2) \
TEGRA_MUX(EXTPERIPH3) \
TEGRA_MUX(GMI_ALT) \
TEGRA_MUX(HDA) \
TEGRA_MUX(HSI) \
TEGRA_MUX(I2C4) \
TEGRA_MUX(I2C5) \
TEGRA_MUX(I2CPWR) \
TEGRA_MUX(I2S0) \
TEGRA_MUX(I2S1) \
TEGRA_MUX(I2S2) \
TEGRA_MUX(I2S3) \
TEGRA_MUX(I2S4) \
TEGRA_MUX(NAND_ALT) \
TEGRA_MUX(POPSDIO4) \
TEGRA_MUX(POPSDMMC4) \
TEGRA_MUX(PWM0) \
TEGRA_MUX(PWM1) \
TEGRA_MUX(PWM2) \
TEGRA_MUX(PWM3) \
TEGRA_MUX(SATA) \
TEGRA_MUX(SPI5) \
TEGRA_MUX(SPI6) \
TEGRA_MUX(SYSCLK) \
TEGRA_MUX(VGP1) \
TEGRA_MUX(VGP2) \
TEGRA_MUX(VGP3) \
TEGRA_MUX(VGP4) \
TEGRA_MUX(VGP5) \
TEGRA_MUX(VGP6) \
/* End of Tegra3 MUX selectors */ \
TEGRA_MUX(USB) \
TEGRA_MUX(SOC) \
TEGRA_MUX(CPU) \
TEGRA_MUX(CLK) \
TEGRA_MUX(PWRON) \
TEGRA_MUX(PMI) \
TEGRA_MUX(CLDVFS) \
TEGRA_MUX(RESET_OUT_N) \
TEGRA_MUX(I2C6) \
TEGRA_MUX(DMIC0) \
TEGRA_MUX(DMIC1) \
TEGRA_MUX(DDR0) \
/* End of Tegra114 MUX selectors */
enum tegra_mux_func {
#define TEGRA_MUX(mux) TEGRA_MUX_##mux,
TEGRA_MUX_LIST
#undef TEGRA_MUX
TEGRA_MUX_SAFE, /* "Safe" default mux selector */
TEGRA_MAX_MUX, /* Number of mux selectors */
TEGRA_MUX_TEGRA2_LAST = TEGRA_MUX_XIO,
TEGRA_MUX_TEGRA3_LAST = TEGRA_MUX_VGP6,
/* Mux selector aliases */
TEGRA_MUX_I2C = TEGRA_MUX_I2C1,
TEGRA_MUX_SDMMC1 = TEGRA_MUX_SDIO1,
TEGRA_MUX_SDMMC2 = TEGRA_MUX_SDIO2,
TEGRA_MUX_SDMMC3 = TEGRA_MUX_SDIO3,
TEGRA_MUX_SDMMC4 = TEGRA_MUX_SDIO4,
/* Special mux selector values */
TEGRA_MUX_INVALID = 0x4000,
TEGRA_MUX_RSVD = 0x8000,
TEGRA_MUX_RSVD0 = TEGRA_MUX_RSVD,
TEGRA_MUX_RSVD1 = 0x8001,
TEGRA_MUX_RSVD2 = 0x8002,
TEGRA_MUX_RSVD3 = 0x8003,
TEGRA_MUX_RSVD4 = 0x8004,
};
enum tegra_pullupdown {
TEGRA_PUPD_NORMAL = 0,
TEGRA_PUPD_PULL_DOWN,
TEGRA_PUPD_PULL_UP,
};
enum tegra_tristate {
TEGRA_TRI_NORMAL = 0,
TEGRA_TRI_TRISTATE = 1,
};
enum tegra_pin_io {
TEGRA_PIN_OUTPUT = 0,
TEGRA_PIN_INPUT = 1,
};
enum tegra_pin_lock {
TEGRA_PIN_LOCK_DEFAULT = 0,
TEGRA_PIN_LOCK_DISABLE,
TEGRA_PIN_LOCK_ENABLE,
};
enum tegra_pin_od {
TEGRA_PIN_OD_DEFAULT = 0,
TEGRA_PIN_OD_DISABLE,
TEGRA_PIN_OD_ENABLE,
};
enum tegra_pin_ioreset {
TEGRA_PIN_IO_RESET_DEFAULT = 0,
TEGRA_PIN_IO_RESET_DISABLE,
TEGRA_PIN_IO_RESET_ENABLE,
};
enum tegra_pin_rcv_sel {
TEGRA_PIN_RCV_SEL_DEFAULT = 0,
TEGRA_PIN_RCV_SEL_NORMAL,
TEGRA_PIN_RCV_SEL_HIGH,
};
enum tegra_vddio {
TEGRA_VDDIO_BB = 0,
TEGRA_VDDIO_LCD,
TEGRA_VDDIO_VI,
TEGRA_VDDIO_UART,
TEGRA_VDDIO_DDR,
TEGRA_VDDIO_NAND,
TEGRA_VDDIO_SYS,
TEGRA_VDDIO_AUDIO,
TEGRA_VDDIO_SD,
TEGRA_VDDIO_CAM,
TEGRA_VDDIO_GMI,
TEGRA_VDDIO_PEXCTL,
TEGRA_VDDIO_SDMMC1,
TEGRA_VDDIO_SDMMC3,
TEGRA_VDDIO_SDMMC4,
};
struct tegra_pingroup_config {
int pingroup;
enum tegra_mux_func func;
enum tegra_pullupdown pupd;
enum tegra_tristate tristate;
enum tegra_pin_io io;
enum tegra_pin_lock lock;
enum tegra_pin_od od;
enum tegra_pin_ioreset ioreset;
enum tegra_pin_rcv_sel rcv_sel;
};
enum tegra_slew {
TEGRA_SLEW_FASTEST = 0,
TEGRA_SLEW_FAST,
TEGRA_SLEW_SLOW,
TEGRA_SLEW_SLOWEST,
TEGRA_MAX_SLEW,
};
enum tegra_pull_strength {
TEGRA_PULL_0 = 0,
TEGRA_PULL_1,
TEGRA_PULL_2,
TEGRA_PULL_3,
TEGRA_PULL_4,
TEGRA_PULL_5,
TEGRA_PULL_6,
TEGRA_PULL_7,
TEGRA_PULL_8,
TEGRA_PULL_9,
TEGRA_PULL_10,
TEGRA_PULL_11,
TEGRA_PULL_12,
TEGRA_PULL_13,
TEGRA_PULL_14,
TEGRA_PULL_15,
TEGRA_PULL_16,
TEGRA_PULL_17,
TEGRA_PULL_18,
TEGRA_PULL_19,
TEGRA_PULL_20,
TEGRA_PULL_21,
TEGRA_PULL_22,
TEGRA_PULL_23,
TEGRA_PULL_24,
TEGRA_PULL_25,
TEGRA_PULL_26,
TEGRA_PULL_27,
TEGRA_PULL_28,
TEGRA_PULL_29,
TEGRA_PULL_30,
TEGRA_PULL_31,
TEGRA_PULL_32,
TEGRA_PULL_33,
TEGRA_PULL_34,
TEGRA_PULL_35,
TEGRA_PULL_36,
TEGRA_PULL_37,
TEGRA_PULL_38,
TEGRA_PULL_39,
TEGRA_PULL_40,
TEGRA_PULL_41,
TEGRA_PULL_42,
TEGRA_PULL_43,
TEGRA_PULL_44,
TEGRA_PULL_45,
TEGRA_PULL_46,
TEGRA_PULL_47,
TEGRA_PULL_48,
TEGRA_PULL_49,
TEGRA_PULL_50,
TEGRA_PULL_51,
TEGRA_PULL_52,
TEGRA_PULL_53,
TEGRA_PULL_54,
TEGRA_PULL_55,
TEGRA_PULL_56,
TEGRA_PULL_57,
TEGRA_PULL_58,
TEGRA_PULL_59,
TEGRA_PULL_60,
TEGRA_PULL_61,
TEGRA_PULL_62,
TEGRA_PULL_63,
TEGRA_PULL_64,
TEGRA_PULL_65,
TEGRA_PULL_66,
TEGRA_PULL_67,
TEGRA_PULL_68,
TEGRA_PULL_69,
TEGRA_PULL_70,
TEGRA_PULL_71,
TEGRA_PULL_72,
TEGRA_PULL_73,
TEGRA_PULL_74,
TEGRA_PULL_75,
TEGRA_PULL_76,
TEGRA_PULL_77,
TEGRA_PULL_78,
TEGRA_PULL_79,
TEGRA_PULL_80,
TEGRA_PULL_81,
TEGRA_PULL_82,
TEGRA_PULL_83,
TEGRA_PULL_84,
TEGRA_PULL_85,
TEGRA_PULL_86,
TEGRA_PULL_87,
TEGRA_PULL_88,
TEGRA_PULL_89,
TEGRA_PULL_90,
TEGRA_PULL_91,
TEGRA_PULL_92,
TEGRA_PULL_93,
TEGRA_PULL_94,
TEGRA_PULL_95,
TEGRA_PULL_96,
TEGRA_PULL_97,
TEGRA_PULL_98,
TEGRA_PULL_99,
TEGRA_PULL_100,
TEGRA_PULL_101,
TEGRA_PULL_102,
TEGRA_PULL_103,
TEGRA_PULL_104,
TEGRA_PULL_105,
TEGRA_PULL_106,
TEGRA_PULL_107,
TEGRA_PULL_108,
TEGRA_PULL_109,
TEGRA_PULL_110,
TEGRA_PULL_111,
TEGRA_PULL_112,
TEGRA_PULL_113,
TEGRA_PULL_114,
TEGRA_PULL_115,
TEGRA_PULL_116,
TEGRA_PULL_117,
TEGRA_PULL_118,
TEGRA_PULL_119,
TEGRA_PULL_120,
TEGRA_PULL_121,
TEGRA_PULL_122,
TEGRA_PULL_123,
TEGRA_PULL_124,
TEGRA_PULL_125,
TEGRA_PULL_126,
TEGRA_PULL_127,
TEGRA_MAX_PULL,
};
enum tegra_drive {
TEGRA_DRIVE_DIV_8 = 0,
TEGRA_DRIVE_DIV_4,
TEGRA_DRIVE_DIV_2,
TEGRA_DRIVE_DIV_1,
TEGRA_MAX_DRIVE,
};
enum tegra_drive_type {
TEGRA_DRIVE_TYPE_0 = 0,
TEGRA_DRIVE_TYPE_1,
TEGRA_DRIVE_TYPE_2,
TEGRA_DRIVE_TYPE_3,
TEGRA_MAX_DRIVE_TYPE,
};
enum tegra_hsm {
TEGRA_HSM_DISABLE = 0,
TEGRA_HSM_ENABLE,
};
enum tegra_schmitt {
TEGRA_SCHMITT_DISABLE = 0,
TEGRA_SCHMITT_ENABLE,
};
struct tegra_drive_pingroup_config {
int pingroup;
enum tegra_hsm hsm;
enum tegra_schmitt schmitt;
enum tegra_drive drive;
enum tegra_pull_strength pull_down;
enum tegra_pull_strength pull_up;
enum tegra_slew slew_rising;
enum tegra_slew slew_falling;
enum tegra_drive_type drive_type;
};
struct tegra_drive_pingroup_desc {
const char *name;
s16 reg_bank;
s16 reg;
u8 drvup_offset;
u16 drvup_mask;
u8 drvdown_offset;
u16 drvdown_mask;
u8 slewrise_offset;
u16 slewrise_mask;
u8 slewfall_offset;
u16 slewfall_mask;
u8 drvtype_valid;
u8 drvtype_offset;
u8 drvtype_mask;
const char *dev_id;
};
struct tegra_pingroup_desc {
const char *name;
int funcs[4];
int func_safe;
int vddio;
enum tegra_pin_io io_default;
s16 tri_bank; /* Register bank the tri_reg exists within */
s16 mux_bank; /* Register bank the mux_reg exists within */
s16 pupd_bank; /* Register bank the pupd_reg exists within */
s16 tri_reg; /* offset into the TRISTATE_REG_* register bank */
s16 mux_reg; /* offset into the PIN_MUX_CTL_* register bank */
s16 pupd_reg; /* offset into the PULL_UPDOWN_REG_* register bank */
s8 tri_bit; /* offset into the TRISTATE_REG_* register bit */
s8 mux_bit; /* offset into the PIN_MUX_CTL_* register bit */
s8 pupd_bit; /* offset into the PULL_UPDOWN_REG_* register bit */
s8 lock_bit; /* offset of the LOCK bit into mux register bit */
s8 od_bit; /* offset of the OD bit into mux register bit */
s8 ioreset_bit; /* offset of the IO_RESET bit into mux register bit */
s8 rcv_sel_bit; /* offset of the RCV_SEL bit into mux register bit */
int gpionr;
};
u32 pg_readl(u32 bank, u32 reg);
void pg_writel(u32 val, u32 bank, u32 reg);
typedef void (*pinmux_init) (const struct tegra_pingroup_desc **pg,
int *pg_max, const struct tegra_drive_pingroup_desc **pgdrive,
int *pgdrive_max, const int **gpiomap, int *gpiomap_max);
void tegra20_pinmux_init(const struct tegra_pingroup_desc **pg, int *pg_max,
const struct tegra_drive_pingroup_desc **pgdrive, int *pgdrive_max,
const int **gpiomap, int *gpiomap_max);
void tegra30_pinmux_init(const struct tegra_pingroup_desc **pg, int *pg_max,
const struct tegra_drive_pingroup_desc **pgdrive, int *pgdrive_max,
const int **gpiomap, int *gpiomap_max);
void tegra11x_pinmux_init(const struct tegra_pingroup_desc **pg, int *pg_max,
const struct tegra_drive_pingroup_desc **pgdrive, int *pgdrive_max,
const int **gpiomap, int *gpiomap_max);
int tegra_pinmux_get_func(int pg);
int tegra_pinmux_set_tristate(int pg, enum tegra_tristate tristate);
int tegra_pinmux_set_io(int pg, enum tegra_pin_io input);
int tegra_pinmux_get_pingroup(int gpio_nr);
int tegra_pinmux_set_pullupdown(int pg, enum tegra_pullupdown pupd);
void tegra_pinmux_config_table(const struct tegra_pingroup_config *config,
int len);
void tegra_drive_pinmux_config_table(struct tegra_drive_pingroup_config *config,
int len);
int tegra_drive_pinmux_set_pull_down(int pg,
enum tegra_pull_strength pull_down);
int tegra_drive_pinmux_set_pull_up(int pg, enum tegra_pull_strength pull_up);
struct device;
int tegra_drive_get_pingroup(struct device *dev);
void tegra_pinmux_set_safe_pinmux_table(const struct tegra_pingroup_config *config,
int len);
void tegra_pinmux_config_pinmux_table(const struct tegra_pingroup_config *config,
int len);
void tegra_pinmux_config_tristate_table(const struct tegra_pingroup_config *config,
int len, enum tegra_tristate tristate);
void tegra_pinmux_config_pullupdown_table(const struct tegra_pingroup_config *config,
int len, enum tegra_pullupdown pupd);
#endif
|