blob: 2810f3b3e1cccc5b133595cf3d4b7676d46b7804 (
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
|
/*
* Device Tree Source for UniPhier SoCs default pinctrl settings
*
* Copyright (C) 2015 Masahiro Yamada <yamada.masahiro@socionext.com>
*
* SPDX-License-Identifier: GPL-2.0+ X11
*/
&pinctrl {
pinctrl_emmc: emmc_grp {
groups = "emmc", "emmc_dat8";
function = "emmc";
};
pinctrl_emmc_1v8: emmc_grp_1v8 {
groups = "emmc", "emmc_dat8";
function = "emmc";
};
pinctrl_i2c0: i2c0_grp {
groups = "i2c0";
function = "i2c0";
};
pinctrl_i2c1: i2c1_grp {
groups = "i2c1";
function = "i2c1";
};
pinctrl_i2c2: i2c2_grp {
groups = "i2c2";
function = "i2c2";
};
pinctrl_i2c3: i2c3_grp {
groups = "i2c3";
function = "i2c3";
};
pinctrl_i2c4: i2c4_grp {
groups = "i2c4";
function = "i2c4";
};
pinctrl_nand: nand_grp {
groups = "nand";
function = "nand";
};
pinctrl_nand2cs: nand2cs_grp {
groups = "nand", "nand_cs1";
function = "nand";
};
pinctrl_sd: sd_grp {
groups = "sd";
function = "sd";
};
pinctrl_sd_1v8: sd_grp_1v8 {
groups = "sd";
function = "sd";
};
pinctrl_sd1: sd1_grp {
groups = "sd1";
function = "sd1";
};
pinctrl_sd1_1v8: sd1_grp_1v8 {
groups = "sd1";
function = "sd1";
};
pinctrl_system_bus: system_bus_grp {
groups = "system_bus", "system_bus_cs1";
function = "system_bus";
};
pinctrl_uart0: uart0_grp {
groups = "uart0";
function = "uart0";
};
pinctrl_uart1: uart1_grp {
groups = "uart1";
function = "uart1";
};
pinctrl_uart2: uart2_grp {
groups = "uart2";
function = "uart2";
};
pinctrl_uart3: uart3_grp {
groups = "uart3";
function = "uart3";
};
pinctrl_usb0: usb0_grp {
groups = "usb0";
function = "usb0";
};
pinctrl_usb1: usb1_grp {
groups = "usb1";
function = "usb1";
};
pinctrl_usb2: usb2_grp {
groups = "usb2";
function = "usb2";
};
pinctrl_usb3: usb3_grp {
groups = "usb3";
function = "usb3";
};
};
|