diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2012-01-10 13:19:57 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2012-01-10 13:19:57 -0500 |
commit | d52739c62e0096dccea59f012d80256c6e359a98 (patch) | |
tree | 4df8ae0640c360eb79b6d0511f084b2337e21e12 /arch/arm/mach-u300 | |
parent | abce00f962a11ed6f748c2569e11695a30716b53 (diff) | |
parent | 0d2006bbf09e817f125ba1e42b2549bc2c5d7351 (diff) |
Merge branch 'for-next' of git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl
* 'for-next' of git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl: (31 commits)
pinctrl: remove unnecessary max pin number
pinctrl: correct a offset while enumerating pins
pinctrl: some typo fixes
pinctrl: rename U300 and SIRF pin controllers
pinctrl: pass name instead of device to pin_config_*
pinctrl: add "struct seq_file;" to pinconf.h
pinctrl: conjure names for unnamed pins
pinctrl: add a group-specific hog macro
pinctrl: don't create a device for each pin controller
arm/u300: don't use PINMUX_MAP_PRIMARY*
pinctrl: implement PINMUX_MAP_SYS_HOG
pinctrl: add a pin config interface
pinctrl/coh901: driver to request its pins
pinctrl: u300-pinmux: register proper GPIO ranges
pinctrl: move the U300 GPIO driver to pinctrl
ARM: u300: localize GPIO assignments
pinctrl: make it possible to add multiple maps
pinctrl: make a copy of pinmux map
pinctrl: GPIO direction support for muxing
pinctrl: print pin range in GPIO range debugs
...
Diffstat (limited to 'arch/arm/mach-u300')
-rw-r--r-- | arch/arm/mach-u300/Kconfig | 4 | ||||
-rw-r--r-- | arch/arm/mach-u300/core.c | 14 | ||||
-rw-r--r-- | arch/arm/mach-u300/include/mach/gpio-u300.h | 115 | ||||
-rw-r--r-- | arch/arm/mach-u300/include/mach/irqs.h | 2 | ||||
-rw-r--r-- | arch/arm/mach-u300/mmc.c | 2 | ||||
-rw-r--r-- | arch/arm/mach-u300/u300-gpio.h | 114 |
6 files changed, 125 insertions, 126 deletions
diff --git a/arch/arm/mach-u300/Kconfig b/arch/arm/mach-u300/Kconfig index 1cbcd4fc1e17..54d8f34fdee5 100644 --- a/arch/arm/mach-u300/Kconfig +++ b/arch/arm/mach-u300/Kconfig | |||
@@ -7,8 +7,8 @@ comment "ST-Ericsson Mobile Platform Products" | |||
7 | config MACH_U300 | 7 | config MACH_U300 |
8 | bool "U300" | 8 | bool "U300" |
9 | select PINCTRL | 9 | select PINCTRL |
10 | select PINMUX_U300 | 10 | select PINCTRL_U300 |
11 | select GPIO_U300 | 11 | select PINCTRL_COH901 |
12 | 12 | ||
13 | comment "ST-Ericsson U300/U330/U335/U365 Feature Selections" | 13 | comment "ST-Ericsson U300/U330/U335/U365 Feature Selections" |
14 | 14 | ||
diff --git a/arch/arm/mach-u300/core.c b/arch/arm/mach-u300/core.c index 697930761b3e..b4c6926a700c 100644 --- a/arch/arm/mach-u300/core.c +++ b/arch/arm/mach-u300/core.c | |||
@@ -1605,15 +1605,15 @@ static struct platform_device pinmux_device = { | |||
1605 | }; | 1605 | }; |
1606 | 1606 | ||
1607 | /* Pinmux settings */ | 1607 | /* Pinmux settings */ |
1608 | static struct pinmux_map u300_pinmux_map[] = { | 1608 | static struct pinmux_map __initdata u300_pinmux_map[] = { |
1609 | /* anonymous maps for chip power and EMIFs */ | 1609 | /* anonymous maps for chip power and EMIFs */ |
1610 | PINMUX_MAP_PRIMARY_SYS_HOG("POWER", "power"), | 1610 | PINMUX_MAP_SYS_HOG("POWER", "pinmux-u300", "power"), |
1611 | PINMUX_MAP_PRIMARY_SYS_HOG("EMIF0", "emif0"), | 1611 | PINMUX_MAP_SYS_HOG("EMIF0", "pinmux-u300", "emif0"), |
1612 | PINMUX_MAP_PRIMARY_SYS_HOG("EMIF1", "emif1"), | 1612 | PINMUX_MAP_SYS_HOG("EMIF1", "pinmux-u300", "emif1"), |
1613 | /* per-device maps for MMC/SD, SPI and UART */ | 1613 | /* per-device maps for MMC/SD, SPI and UART */ |
1614 | PINMUX_MAP_PRIMARY("MMCSD", "mmc0", "mmci"), | 1614 | PINMUX_MAP("MMCSD", "pinmux-u300", "mmc0", "mmci"), |
1615 | PINMUX_MAP_PRIMARY("SPI", "spi0", "pl022"), | 1615 | PINMUX_MAP("SPI", "pinmux-u300", "spi0", "pl022"), |
1616 | PINMUX_MAP_PRIMARY("UART0", "uart0", "uart0"), | 1616 | PINMUX_MAP("UART0", "pinmux-u300", "uart0", "uart0"), |
1617 | }; | 1617 | }; |
1618 | 1618 | ||
1619 | struct u300_mux_hog { | 1619 | struct u300_mux_hog { |
diff --git a/arch/arm/mach-u300/include/mach/gpio-u300.h b/arch/arm/mach-u300/include/mach/gpio-u300.h index 0c2b2021951a..bf4c7935aecd 100644 --- a/arch/arm/mach-u300/include/mach/gpio-u300.h +++ b/arch/arm/mach-u300/include/mach/gpio-u300.h | |||
@@ -9,121 +9,6 @@ | |||
9 | #ifndef __MACH_U300_GPIO_U300_H | 9 | #ifndef __MACH_U300_GPIO_U300_H |
10 | #define __MACH_U300_GPIO_U300_H | 10 | #define __MACH_U300_GPIO_U300_H |
11 | 11 | ||
12 | /* | ||
13 | * Individual pin assignments for the B26/S26. Notice that the | ||
14 | * actual usage of these pins depends on the PAD MUX settings, that | ||
15 | * is why the same number can potentially appear several times. | ||
16 | * In the reference design each pin is only used for one purpose. | ||
17 | * These were determined by inspecting the B26/S26 schematic: | ||
18 | * 2/1911-ROA 128 1603 | ||
19 | */ | ||
20 | #ifdef CONFIG_MACH_U300_BS2X | ||
21 | #define U300_GPIO_PIN_UART_RX 0 | ||
22 | #define U300_GPIO_PIN_UART_TX 1 | ||
23 | #define U300_GPIO_PIN_GPIO02 2 /* Unrouted */ | ||
24 | #define U300_GPIO_PIN_GPIO03 3 /* Unrouted */ | ||
25 | #define U300_GPIO_PIN_CAM_SLEEP 4 | ||
26 | #define U300_GPIO_PIN_CAM_REG_EN 5 | ||
27 | #define U300_GPIO_PIN_GPIO06 6 /* Unrouted */ | ||
28 | #define U300_GPIO_PIN_GPIO07 7 /* Unrouted */ | ||
29 | |||
30 | #define U300_GPIO_PIN_GPIO08 8 /* Service point SP2321 */ | ||
31 | #define U300_GPIO_PIN_GPIO09 9 /* Service point SP2322 */ | ||
32 | #define U300_GPIO_PIN_PHFSENSE 10 /* Headphone jack sensing */ | ||
33 | #define U300_GPIO_PIN_MMC_CLKRET 11 /* Clock return from MMC/SD card */ | ||
34 | #define U300_GPIO_PIN_MMC_CD 12 /* MMC Card insertion detection */ | ||
35 | #define U300_GPIO_PIN_FLIPSENSE 13 /* Mechanical flip sensing */ | ||
36 | #define U300_GPIO_PIN_GPIO14 14 /* DSP JTAG Port RTCK */ | ||
37 | #define U300_GPIO_PIN_GPIO15 15 /* Unrouted */ | ||
38 | |||
39 | #define U300_GPIO_PIN_GPIO16 16 /* Unrouted */ | ||
40 | #define U300_GPIO_PIN_GPIO17 17 /* Unrouted */ | ||
41 | #define U300_GPIO_PIN_GPIO18 18 /* Unrouted */ | ||
42 | #define U300_GPIO_PIN_GPIO19 19 /* Unrouted */ | ||
43 | #define U300_GPIO_PIN_GPIO20 20 /* Unrouted */ | ||
44 | #define U300_GPIO_PIN_GPIO21 21 /* Unrouted */ | ||
45 | #define U300_GPIO_PIN_GPIO22 22 /* Unrouted */ | ||
46 | #define U300_GPIO_PIN_GPIO23 23 /* Unrouted */ | ||
47 | #endif | ||
48 | |||
49 | /* | ||
50 | * Individual pin assignments for the B330/S330 and B365/S365. | ||
51 | * Notice that the actual usage of these pins depends on the | ||
52 | * PAD MUX settings, that is why the same number can potentially | ||
53 | * appear several times. In the reference design each pin is only | ||
54 | * used for one purpose. These were determined by inspecting the | ||
55 | * S365 schematic. | ||
56 | */ | ||
57 | #if defined(CONFIG_MACH_U300_BS330) || defined(CONFIG_MACH_U300_BS365) || \ | ||
58 | defined(CONFIG_MACH_U300_BS335) | ||
59 | #define U300_GPIO_PIN_UART_RX 0 | ||
60 | #define U300_GPIO_PIN_UART_TX 1 | ||
61 | #define U300_GPIO_PIN_UART_CTS 2 | ||
62 | #define U300_GPIO_PIN_UART_RTS 3 | ||
63 | #define U300_GPIO_PIN_CAM_MAIN_STANDBY 4 /* Camera MAIN standby */ | ||
64 | #define U300_GPIO_PIN_GPIO05 5 /* Unrouted */ | ||
65 | #define U300_GPIO_PIN_MS_CD 6 /* Memory Stick Card insertion */ | ||
66 | #define U300_GPIO_PIN_GPIO07 7 /* Test point TP2430 */ | ||
67 | |||
68 | #define U300_GPIO_PIN_GPIO08 8 /* Test point TP2437 */ | ||
69 | #define U300_GPIO_PIN_GPIO09 9 /* Test point TP2431 */ | ||
70 | #define U300_GPIO_PIN_GPIO10 10 /* Test point TP2432 */ | ||
71 | #define U300_GPIO_PIN_MMC_CLKRET 11 /* Clock return from MMC/SD card */ | ||
72 | #define U300_GPIO_PIN_MMC_CD 12 /* MMC Card insertion detection */ | ||
73 | #define U300_GPIO_PIN_CAM_SUB_STANDBY 13 /* Camera SUB standby */ | ||
74 | #define U300_GPIO_PIN_GPIO14 14 /* Test point TP2436 */ | ||
75 | #define U300_GPIO_PIN_GPIO15 15 /* Unrouted */ | ||
76 | |||
77 | #define U300_GPIO_PIN_GPIO16 16 /* Test point TP2438 */ | ||
78 | #define U300_GPIO_PIN_PHFSENSE 17 /* Headphone jack sensing */ | ||
79 | #define U300_GPIO_PIN_GPIO18 18 /* Test point TP2439 */ | ||
80 | #define U300_GPIO_PIN_GPIO19 19 /* Routed somewhere */ | ||
81 | #define U300_GPIO_PIN_GPIO20 20 /* Unrouted */ | ||
82 | #define U300_GPIO_PIN_GPIO21 21 /* Unrouted */ | ||
83 | #define U300_GPIO_PIN_GPIO22 22 /* Unrouted */ | ||
84 | #define U300_GPIO_PIN_GPIO23 23 /* Unrouted */ | ||
85 | |||
86 | #define U300_GPIO_PIN_GPIO24 24 /* Unrouted */ | ||
87 | #define U300_GPIO_PIN_GPIO25 25 /* Unrouted */ | ||
88 | #define U300_GPIO_PIN_GPIO26 26 /* Unrouted */ | ||
89 | #define U300_GPIO_PIN_GPIO27 27 /* Unrouted */ | ||
90 | #define U300_GPIO_PIN_GPIO28 28 /* Unrouted */ | ||
91 | #define U300_GPIO_PIN_GPIO29 29 /* Unrouted */ | ||
92 | #define U300_GPIO_PIN_GPIO30 30 /* Unrouted */ | ||
93 | #define U300_GPIO_PIN_GPIO31 31 /* Unrouted */ | ||
94 | |||
95 | #define U300_GPIO_PIN_GPIO32 32 /* Unrouted */ | ||
96 | #define U300_GPIO_PIN_GPIO33 33 /* Unrouted */ | ||
97 | #define U300_GPIO_PIN_GPIO34 34 /* Unrouted */ | ||
98 | #define U300_GPIO_PIN_GPIO35 35 /* Unrouted */ | ||
99 | #define U300_GPIO_PIN_GPIO36 36 /* Unrouted */ | ||
100 | #define U300_GPIO_PIN_GPIO37 37 /* Unrouted */ | ||
101 | #define U300_GPIO_PIN_GPIO38 38 /* Unrouted */ | ||
102 | #define U300_GPIO_PIN_GPIO39 39 /* Unrouted */ | ||
103 | |||
104 | #ifdef CONFIG_MACH_U300_BS335 | ||
105 | |||
106 | #define U300_GPIO_PIN_GPIO40 40 /* Unrouted */ | ||
107 | #define U300_GPIO_PIN_GPIO41 41 /* Unrouted */ | ||
108 | #define U300_GPIO_PIN_GPIO42 42 /* Unrouted */ | ||
109 | #define U300_GPIO_PIN_GPIO43 43 /* Unrouted */ | ||
110 | #define U300_GPIO_PIN_GPIO44 44 /* Unrouted */ | ||
111 | #define U300_GPIO_PIN_GPIO45 45 /* Unrouted */ | ||
112 | #define U300_GPIO_PIN_GPIO46 46 /* Unrouted */ | ||
113 | #define U300_GPIO_PIN_GPIO47 47 /* Unrouted */ | ||
114 | |||
115 | #define U300_GPIO_PIN_GPIO48 48 /* Unrouted */ | ||
116 | #define U300_GPIO_PIN_GPIO49 49 /* Unrouted */ | ||
117 | #define U300_GPIO_PIN_GPIO50 50 /* Unrouted */ | ||
118 | #define U300_GPIO_PIN_GPIO51 51 /* Unrouted */ | ||
119 | #define U300_GPIO_PIN_GPIO52 52 /* Unrouted */ | ||
120 | #define U300_GPIO_PIN_GPIO53 53 /* Unrouted */ | ||
121 | #define U300_GPIO_PIN_GPIO54 54 /* Unrouted */ | ||
122 | #define U300_GPIO_PIN_GPIO55 55 /* Unrouted */ | ||
123 | #endif | ||
124 | |||
125 | #endif | ||
126 | |||
127 | /** | 12 | /** |
128 | * enum u300_gpio_variant - the type of U300 GPIO employed | 13 | * enum u300_gpio_variant - the type of U300 GPIO employed |
129 | */ | 14 | */ |
diff --git a/arch/arm/mach-u300/include/mach/irqs.h b/arch/arm/mach-u300/include/mach/irqs.h index db3fbfa1d6e9..ee78a26707eb 100644 --- a/arch/arm/mach-u300/include/mach/irqs.h +++ b/arch/arm/mach-u300/include/mach/irqs.h | |||
@@ -110,7 +110,7 @@ | |||
110 | #endif | 110 | #endif |
111 | 111 | ||
112 | /* Maximum 8*7 GPIO lines */ | 112 | /* Maximum 8*7 GPIO lines */ |
113 | #ifdef CONFIG_GPIO_U300 | 113 | #ifdef CONFIG_PINCTRL_COH901 |
114 | #define IRQ_U300_GPIO_BASE (U300_VIC_IRQS_END) | 114 | #define IRQ_U300_GPIO_BASE (U300_VIC_IRQS_END) |
115 | #define IRQ_U300_GPIO_END (IRQ_U300_GPIO_BASE + 56) | 115 | #define IRQ_U300_GPIO_END (IRQ_U300_GPIO_BASE + 56) |
116 | #else | 116 | #else |
diff --git a/arch/arm/mach-u300/mmc.c b/arch/arm/mach-u300/mmc.c index 4d482aacc272..05abd6ad9fab 100644 --- a/arch/arm/mach-u300/mmc.c +++ b/arch/arm/mach-u300/mmc.c | |||
@@ -18,8 +18,8 @@ | |||
18 | #include <linux/slab.h> | 18 | #include <linux/slab.h> |
19 | #include <mach/coh901318.h> | 19 | #include <mach/coh901318.h> |
20 | #include <mach/dma_channels.h> | 20 | #include <mach/dma_channels.h> |
21 | #include <mach/gpio-u300.h> | ||
22 | 21 | ||
22 | #include "u300-gpio.h" | ||
23 | #include "mmc.h" | 23 | #include "mmc.h" |
24 | 24 | ||
25 | static struct mmci_platform_data mmc0_plat_data = { | 25 | static struct mmci_platform_data mmc0_plat_data = { |
diff --git a/arch/arm/mach-u300/u300-gpio.h b/arch/arm/mach-u300/u300-gpio.h new file mode 100644 index 000000000000..847dc25300c6 --- /dev/null +++ b/arch/arm/mach-u300/u300-gpio.h | |||
@@ -0,0 +1,114 @@ | |||
1 | /* | ||
2 | * Individual pin assignments for the B26/S26. Notice that the | ||
3 | * actual usage of these pins depends on the PAD MUX settings, that | ||
4 | * is why the same number can potentially appear several times. | ||
5 | * In the reference design each pin is only used for one purpose. | ||
6 | * These were determined by inspecting the B26/S26 schematic: | ||
7 | * 2/1911-ROA 128 1603 | ||
8 | */ | ||
9 | #ifdef CONFIG_MACH_U300_BS2X | ||
10 | #define U300_GPIO_PIN_UART_RX 0 | ||
11 | #define U300_GPIO_PIN_UART_TX 1 | ||
12 | #define U300_GPIO_PIN_GPIO02 2 /* Unrouted */ | ||
13 | #define U300_GPIO_PIN_GPIO03 3 /* Unrouted */ | ||
14 | #define U300_GPIO_PIN_CAM_SLEEP 4 | ||
15 | #define U300_GPIO_PIN_CAM_REG_EN 5 | ||
16 | #define U300_GPIO_PIN_GPIO06 6 /* Unrouted */ | ||
17 | #define U300_GPIO_PIN_GPIO07 7 /* Unrouted */ | ||
18 | |||
19 | #define U300_GPIO_PIN_GPIO08 8 /* Service point SP2321 */ | ||
20 | #define U300_GPIO_PIN_GPIO09 9 /* Service point SP2322 */ | ||
21 | #define U300_GPIO_PIN_PHFSENSE 10 /* Headphone jack sensing */ | ||
22 | #define U300_GPIO_PIN_MMC_CLKRET 11 /* Clock return from MMC/SD card */ | ||
23 | #define U300_GPIO_PIN_MMC_CD 12 /* MMC Card insertion detection */ | ||
24 | #define U300_GPIO_PIN_FLIPSENSE 13 /* Mechanical flip sensing */ | ||
25 | #define U300_GPIO_PIN_GPIO14 14 /* DSP JTAG Port RTCK */ | ||
26 | #define U300_GPIO_PIN_GPIO15 15 /* Unrouted */ | ||
27 | |||
28 | #define U300_GPIO_PIN_GPIO16 16 /* Unrouted */ | ||
29 | #define U300_GPIO_PIN_GPIO17 17 /* Unrouted */ | ||
30 | #define U300_GPIO_PIN_GPIO18 18 /* Unrouted */ | ||
31 | #define U300_GPIO_PIN_GPIO19 19 /* Unrouted */ | ||
32 | #define U300_GPIO_PIN_GPIO20 20 /* Unrouted */ | ||
33 | #define U300_GPIO_PIN_GPIO21 21 /* Unrouted */ | ||
34 | #define U300_GPIO_PIN_GPIO22 22 /* Unrouted */ | ||
35 | #define U300_GPIO_PIN_GPIO23 23 /* Unrouted */ | ||
36 | #endif | ||
37 | |||
38 | /* | ||
39 | * Individual pin assignments for the B330/S330 and B365/S365. | ||
40 | * Notice that the actual usage of these pins depends on the | ||
41 | * PAD MUX settings, that is why the same number can potentially | ||
42 | * appear several times. In the reference design each pin is only | ||
43 | * used for one purpose. These were determined by inspecting the | ||
44 | * S365 schematic. | ||
45 | */ | ||
46 | #if defined(CONFIG_MACH_U300_BS330) || defined(CONFIG_MACH_U300_BS365) || \ | ||
47 | defined(CONFIG_MACH_U300_BS335) | ||
48 | #define U300_GPIO_PIN_UART_RX 0 | ||
49 | #define U300_GPIO_PIN_UART_TX 1 | ||
50 | #define U300_GPIO_PIN_UART_CTS 2 | ||
51 | #define U300_GPIO_PIN_UART_RTS 3 | ||
52 | #define U300_GPIO_PIN_CAM_MAIN_STANDBY 4 /* Camera MAIN standby */ | ||
53 | #define U300_GPIO_PIN_GPIO05 5 /* Unrouted */ | ||
54 | #define U300_GPIO_PIN_MS_CD 6 /* Memory Stick Card insertion */ | ||
55 | #define U300_GPIO_PIN_GPIO07 7 /* Test point TP2430 */ | ||
56 | |||
57 | #define U300_GPIO_PIN_GPIO08 8 /* Test point TP2437 */ | ||
58 | #define U300_GPIO_PIN_GPIO09 9 /* Test point TP2431 */ | ||
59 | #define U300_GPIO_PIN_GPIO10 10 /* Test point TP2432 */ | ||
60 | #define U300_GPIO_PIN_MMC_CLKRET 11 /* Clock return from MMC/SD card */ | ||
61 | #define U300_GPIO_PIN_MMC_CD 12 /* MMC Card insertion detection */ | ||
62 | #define U300_GPIO_PIN_CAM_SUB_STANDBY 13 /* Camera SUB standby */ | ||
63 | #define U300_GPIO_PIN_GPIO14 14 /* Test point TP2436 */ | ||
64 | #define U300_GPIO_PIN_GPIO15 15 /* Unrouted */ | ||
65 | |||
66 | #define U300_GPIO_PIN_GPIO16 16 /* Test point TP2438 */ | ||
67 | #define U300_GPIO_PIN_PHFSENSE 17 /* Headphone jack sensing */ | ||
68 | #define U300_GPIO_PIN_GPIO18 18 /* Test point TP2439 */ | ||
69 | #define U300_GPIO_PIN_GPIO19 19 /* Routed somewhere */ | ||
70 | #define U300_GPIO_PIN_GPIO20 20 /* Unrouted */ | ||
71 | #define U300_GPIO_PIN_GPIO21 21 /* Unrouted */ | ||
72 | #define U300_GPIO_PIN_GPIO22 22 /* Unrouted */ | ||
73 | #define U300_GPIO_PIN_GPIO23 23 /* Unrouted */ | ||
74 | |||
75 | #define U300_GPIO_PIN_GPIO24 24 /* Unrouted */ | ||
76 | #define U300_GPIO_PIN_GPIO25 25 /* Unrouted */ | ||
77 | #define U300_GPIO_PIN_GPIO26 26 /* Unrouted */ | ||
78 | #define U300_GPIO_PIN_GPIO27 27 /* Unrouted */ | ||
79 | #define U300_GPIO_PIN_GPIO28 28 /* Unrouted */ | ||
80 | #define U300_GPIO_PIN_GPIO29 29 /* Unrouted */ | ||
81 | #define U300_GPIO_PIN_GPIO30 30 /* Unrouted */ | ||
82 | #define U300_GPIO_PIN_GPIO31 31 /* Unrouted */ | ||
83 | |||
84 | #define U300_GPIO_PIN_GPIO32 32 /* Unrouted */ | ||
85 | #define U300_GPIO_PIN_GPIO33 33 /* Unrouted */ | ||
86 | #define U300_GPIO_PIN_GPIO34 34 /* Unrouted */ | ||
87 | #define U300_GPIO_PIN_GPIO35 35 /* Unrouted */ | ||
88 | #define U300_GPIO_PIN_GPIO36 36 /* Unrouted */ | ||
89 | #define U300_GPIO_PIN_GPIO37 37 /* Unrouted */ | ||
90 | #define U300_GPIO_PIN_GPIO38 38 /* Unrouted */ | ||
91 | #define U300_GPIO_PIN_GPIO39 39 /* Unrouted */ | ||
92 | |||
93 | #ifdef CONFIG_MACH_U300_BS335 | ||
94 | |||
95 | #define U300_GPIO_PIN_GPIO40 40 /* Unrouted */ | ||
96 | #define U300_GPIO_PIN_GPIO41 41 /* Unrouted */ | ||
97 | #define U300_GPIO_PIN_GPIO42 42 /* Unrouted */ | ||
98 | #define U300_GPIO_PIN_GPIO43 43 /* Unrouted */ | ||
99 | #define U300_GPIO_PIN_GPIO44 44 /* Unrouted */ | ||
100 | #define U300_GPIO_PIN_GPIO45 45 /* Unrouted */ | ||
101 | #define U300_GPIO_PIN_GPIO46 46 /* Unrouted */ | ||
102 | #define U300_GPIO_PIN_GPIO47 47 /* Unrouted */ | ||
103 | |||
104 | #define U300_GPIO_PIN_GPIO48 48 /* Unrouted */ | ||
105 | #define U300_GPIO_PIN_GPIO49 49 /* Unrouted */ | ||
106 | #define U300_GPIO_PIN_GPIO50 50 /* Unrouted */ | ||
107 | #define U300_GPIO_PIN_GPIO51 51 /* Unrouted */ | ||
108 | #define U300_GPIO_PIN_GPIO52 52 /* Unrouted */ | ||
109 | #define U300_GPIO_PIN_GPIO53 53 /* Unrouted */ | ||
110 | #define U300_GPIO_PIN_GPIO54 54 /* Unrouted */ | ||
111 | #define U300_GPIO_PIN_GPIO55 55 /* Unrouted */ | ||
112 | #endif | ||
113 | |||
114 | #endif | ||