pinctrl: uniphier: support pin configuration for dedicated pins
PH1-LD4 and PH1-sLD8 SoCs have pins that support pin configuration (pin biasing, drive strength control), but not pin-muxing. Allow to fill the mux value table with -1 for those pins; pins with mux value -1 will be skipped in the pin-mux set function. The mux value type should be changed from "unsigned" to "int" in order to accommodate -1 as a special case. Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com> Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
This commit is contained in:

committed by
Linus Walleij

parent
aa543888ca
commit
39ec9ace7a
@@ -518,43 +518,42 @@ static const struct pinctrl_pin_desc uniphier_ld4_pins[] = {
|
||||
};
|
||||
|
||||
static const unsigned emmc_pins[] = {21, 22, 23, 24, 25, 26, 27};
|
||||
static const unsigned emmc_muxvals[] = {0, 1, 1, 1, 1, 1, 1};
|
||||
static const int emmc_muxvals[] = {0, 1, 1, 1, 1, 1, 1};
|
||||
static const unsigned emmc_dat8_pins[] = {28, 29, 30, 31};
|
||||
static const unsigned emmc_dat8_muxvals[] = {1, 1, 1, 1};
|
||||
static const int emmc_dat8_muxvals[] = {1, 1, 1, 1};
|
||||
static const unsigned i2c0_pins[] = {102, 103};
|
||||
static const unsigned i2c0_muxvals[] = {0, 0};
|
||||
static const int i2c0_muxvals[] = {0, 0};
|
||||
static const unsigned i2c1_pins[] = {104, 105};
|
||||
static const unsigned i2c1_muxvals[] = {0, 0};
|
||||
static const int i2c1_muxvals[] = {0, 0};
|
||||
static const unsigned i2c2_pins[] = {108, 109};
|
||||
static const unsigned i2c2_muxvals[] = {2, 2};
|
||||
static const int i2c2_muxvals[] = {2, 2};
|
||||
static const unsigned i2c3_pins[] = {108, 109};
|
||||
static const unsigned i2c3_muxvals[] = {3, 3};
|
||||
static const int i2c3_muxvals[] = {3, 3};
|
||||
static const unsigned nand_pins[] = {24, 25, 26, 27, 28, 29, 30, 31, 158, 159,
|
||||
160, 161, 162, 163, 164};
|
||||
static const unsigned nand_muxvals[] = {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
|
||||
0, 0};
|
||||
static const int nand_muxvals[] = {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0};
|
||||
static const unsigned nand_cs1_pins[] = {22, 23};
|
||||
static const unsigned nand_cs1_muxvals[] = {0, 0};
|
||||
static const int nand_cs1_muxvals[] = {0, 0};
|
||||
static const unsigned sd_pins[] = {44, 45, 46, 47, 48, 49, 50, 51, 52};
|
||||
static const unsigned sd_muxvals[] = {0, 0, 0, 0, 0, 0, 0, 0, 0};
|
||||
static const int sd_muxvals[] = {0, 0, 0, 0, 0, 0, 0, 0, 0};
|
||||
static const unsigned uart0_pins[] = {85, 88};
|
||||
static const unsigned uart0_muxvals[] = {1, 1};
|
||||
static const int uart0_muxvals[] = {1, 1};
|
||||
static const unsigned uart1_pins[] = {155, 156};
|
||||
static const unsigned uart1_muxvals[] = {13, 13};
|
||||
static const int uart1_muxvals[] = {13, 13};
|
||||
static const unsigned uart1b_pins[] = {69, 70};
|
||||
static const unsigned uart1b_muxvals[] = {23, 23};
|
||||
static const int uart1b_muxvals[] = {23, 23};
|
||||
static const unsigned uart2_pins[] = {128, 129};
|
||||
static const unsigned uart2_muxvals[] = {13, 13};
|
||||
static const int uart2_muxvals[] = {13, 13};
|
||||
static const unsigned uart3_pins[] = {110, 111};
|
||||
static const unsigned uart3_muxvals[] = {1, 1};
|
||||
static const int uart3_muxvals[] = {1, 1};
|
||||
static const unsigned usb0_pins[] = {53, 54};
|
||||
static const unsigned usb0_muxvals[] = {0, 0};
|
||||
static const int usb0_muxvals[] = {0, 0};
|
||||
static const unsigned usb1_pins[] = {55, 56};
|
||||
static const unsigned usb1_muxvals[] = {0, 0};
|
||||
static const int usb1_muxvals[] = {0, 0};
|
||||
static const unsigned usb2_pins[] = {155, 156};
|
||||
static const unsigned usb2_muxvals[] = {4, 4};
|
||||
static const int usb2_muxvals[] = {4, 4};
|
||||
static const unsigned usb2b_pins[] = {67, 68};
|
||||
static const unsigned usb2b_muxvals[] = {23, 23};
|
||||
static const int usb2b_muxvals[] = {23, 23};
|
||||
static const unsigned port_range0_pins[] = {
|
||||
135, 136, 137, 138, 139, 140, 141, 142, /* PORT0x */
|
||||
143, 144, 145, 146, 147, 148, 149, 150, /* PORT1x */
|
||||
@@ -572,7 +571,7 @@ static const unsigned port_range0_pins[] = {
|
||||
98, 99, 100, 6, 101, 114, 115, 116, /* PORT13x */
|
||||
103, 108, 21, 22, 23, 117, 118, 119, /* PORT14x */
|
||||
};
|
||||
static const unsigned port_range0_muxvals[] = {
|
||||
static const int port_range0_muxvals[] = {
|
||||
0, 0, 0, 0, 0, 0, 0, 0, /* PORT0x */
|
||||
0, 0, 0, 0, 0, 0, 0, 0, /* PORT1x */
|
||||
0, 0, 0, 0, 0, 0, 0, 15, /* PORT2x */
|
||||
@@ -592,21 +591,21 @@ static const unsigned port_range0_muxvals[] = {
|
||||
static const unsigned port_range1_pins[] = {
|
||||
7, /* PORT166 */
|
||||
};
|
||||
static const unsigned port_range1_muxvals[] = {
|
||||
static const int port_range1_muxvals[] = {
|
||||
15, /* PORT166 */
|
||||
};
|
||||
static const unsigned xirq_range0_pins[] = {
|
||||
151, 123, 124, 125, 126, 127, 128, 129, /* XIRQ0-7 */
|
||||
130, 131, 132, 133, 62, /* XIRQ8-12 */
|
||||
};
|
||||
static const unsigned xirq_range0_muxvals[] = {
|
||||
static const int xirq_range0_muxvals[] = {
|
||||
14, 0, 0, 0, 0, 0, 0, 0, /* XIRQ0-7 */
|
||||
0, 0, 0, 0, 14, /* XIRQ8-12 */
|
||||
};
|
||||
static const unsigned xirq_range1_pins[] = {
|
||||
134, 63, /* XIRQ14-15 */
|
||||
};
|
||||
static const unsigned xirq_range1_muxvals[] = {
|
||||
static const int xirq_range1_muxvals[] = {
|
||||
0, 14, /* XIRQ14-15 */
|
||||
};
|
||||
|
||||
|
Reference in New Issue
Block a user