1 /* $NetBSD: sun50i_a64_gpio.c,v 1.4 2019/02/02 17:26:38 jmcneill Exp $ */ 2 3 /*- 4 * Copyright (c) 2016 Jared McNeill <jmcneill@invisible.ca> 5 * All rights reserved. 6 * 7 * Redistribution and use in source and binary forms, with or without 8 * modification, are permitted provided that the following conditions 9 * are met: 10 * 1. Redistributions of source code must retain the above copyright 11 * notice, this list of conditions and the following disclaimer. 12 * 2. Redistributions in binary form must reproduce the above copyright 13 * notice, this list of conditions and the following disclaimer in the 14 * documentation and/or other materials provided with the distribution. 15 * 16 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR 17 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES 18 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. 19 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, 20 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, 21 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; 22 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED 23 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, 24 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 25 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 26 * SUCH DAMAGE. 27 */ 28 29 #include <sys/cdefs.h> 30 __KERNEL_RCSID(0, "$NetBSD: sun50i_a64_gpio.c,v 1.4 2019/02/02 17:26:38 jmcneill Exp $"); 31 32 #include <sys/param.h> 33 #include <sys/systm.h> 34 #include <sys/kernel.h> 35 #include <sys/types.h> 36 37 #include <arm/sunxi/sunxi_gpio.h> 38 39 static const struct sunxi_gpio_pins a64_pins[] = { 40 { "PB0", 1, 0, { "gpio_in", "gpio_out", "uart2", NULL, "jtag", NULL, "irq" }, 6, 0}, 41 { "PB1", 1, 1, { "gpio_in", "gpio_out", "uart2", NULL, "jtag", "sim", "irq" }, 6, 1}, 42 { "PB2", 1, 2, { "gpio_in", "gpio_out", "uart2", NULL, "jtag", "sim", "irq" }, 6, 2}, 43 { "PB3", 1, 3, { "gpio_in", "gpio_out", "uart2", "i2s0", "jtag", "sim", "irq" }, 6, 3}, 44 { "PB4", 1, 4, { "gpio_in", "gpio_out", "aif2", "pcm0", NULL, "sim", "irq" }, 6, 4}, 45 { "PB5", 1, 5, { "gpio_in", "gpio_out", "aif2", "pcm0", NULL, "sim", "irq" }, 6, 5}, 46 { "PB6", 1, 6, { "gpio_in", "gpio_out", "aif2", "pcm0", NULL, "sim", "irq" }, 6, 6}, 47 { "PB7", 1, 7, { "gpio_in", "gpio_out", "aif2", "pcm0", NULL, "sim", "irq" }, 6, 7}, 48 { "PB8", 1, 8, { "gpio_in", "gpio_out", NULL, NULL, "uart0", NULL, "irq" }, 6, 8}, 49 { "PB9", 1, 9, { "gpio_in", "gpio_out", NULL, NULL, "uart0", NULL, "irq" }, 6, 9}, 50 51 { "PC0", 2, 0, { "gpio_in", "gpio_out", "nand", NULL, "spi0" } }, 52 { "PC1", 2, 1, { "gpio_in", "gpio_out", "nand", "mmc2", "spi0" } }, 53 { "PC2", 2, 2, { "gpio_in", "gpio_out", "nand", NULL, "spi0" } }, 54 { "PC3", 2, 3, { "gpio_in", "gpio_out", "nand", NULL, "spi0" } }, 55 { "PC4", 2, 4, { "gpio_in", "gpio_out", "nand" } }, 56 { "PC5", 2, 5, { "gpio_in", "gpio_out", "nand", "mmc2" } }, 57 { "PC6", 2, 6, { "gpio_in", "gpio_out", "nand", "mmc2" } }, 58 { "PC7", 2, 7, { "gpio_in", "gpio_out", "nand" } }, 59 { "PC8", 2, 8, { "gpio_in", "gpio_out", "nand", "mmc2" } }, 60 { "PC9", 2, 9, { "gpio_in", "gpio_out", "nand", "mmc2" } }, 61 { "PC10", 2, 10, { "gpio_in", "gpio_out", "nand", "mmc2" } }, 62 { "PC11", 2, 11, { "gpio_in", "gpio_out", "nand", "mmc2" } }, 63 { "PC12", 2, 12, { "gpio_in", "gpio_out", "nand", "mmc2" } }, 64 { "PC13", 2, 13, { "gpio_in", "gpio_out", "nand", "mmc2" } }, 65 { "PC14", 2, 14, { "gpio_in", "gpio_out", "nand", "mmc2" } }, 66 { "PC15", 2, 15, { "gpio_in", "gpio_out", "nand", "mmc2" } }, 67 { "PC16", 2, 16, { "gpio_in", "gpio_out", "nand", "mmc2" } }, 68 69 { "PD0", 3, 0, { "gpio_in", "gpio_out", "lcd0", "uart3", "spi1", "ccir" } }, 70 { "PD1", 3, 1, { "gpio_in", "gpio_out", "lcd0", "uart3", "spi1", "ccir" } }, 71 { "PD2", 3, 2, { "gpio_in", "gpio_out", "lcd0", "uart4", "spi1", "ccir" } }, 72 { "PD3", 3, 3, { "gpio_in", "gpio_out", "lcd0", "uart4", "spi1", "ccir" } }, 73 { "PD4", 3, 4, { "gpio_in", "gpio_out", "lcd0", "uart4", "spi1", "ccir" } }, 74 { "PD5", 3, 5, { "gpio_in", "gpio_out", "lcd0", "uart4", "spi1", "ccir" } }, 75 { "PD6", 3, 6, { "gpio_in", "gpio_out", "lcd0", NULL, NULL, "ccir" } }, 76 { "PD7", 3, 7, { "gpio_in", "gpio_out", "lcd0", NULL, NULL, "ccir" } }, 77 { "PD8", 3, 8, { "gpio_in", "gpio_out", "lcd0", NULL, "emac", "ccir" } }, 78 { "PD9", 3, 9, { "gpio_in", "gpio_out", "lcd0", NULL, "emac", "ccir" } }, 79 { "PD10", 3, 10, { "gpio_in", "gpio_out", "lcd0", NULL, "emac" } }, 80 { "PD11", 3, 11, { "gpio_in", "gpio_out", "lcd0", NULL, "emac" } }, 81 { "PD12", 3, 12, { "gpio_in", "gpio_out", "lcd0", "lvds", "emac" } }, 82 { "PD13", 3, 13, { "gpio_in", "gpio_out", "lcd0", "lvds", "emac" } }, 83 { "PD14", 3, 14, { "gpio_in", "gpio_out", "lcd0", "lvds", "emac" } }, 84 { "PD15", 3, 15, { "gpio_in", "gpio_out", "lcd0", "lvds", "emac", "ccir" } }, 85 { "PD16", 3, 16, { "gpio_in", "gpio_out", "lcd0", "lvds", "emac", "ccir" } }, 86 { "PD17", 3, 17, { "gpio_in", "gpio_out", "lcd0", "lvds", "emac" } }, 87 { "PD18", 3, 18, { "gpio_in", "gpio_out", "lcd0", "lvds", "emac" } }, 88 { "PD19", 3, 19, { "gpio_in", "gpio_out", "lcd0", "lvds", "emac" } }, 89 { "PD20", 3, 20, { "gpio_in", "gpio_out", "lcd0", "lvds", "emac" } }, 90 { "PD21", 3, 21, { "gpio_in", "gpio_out", "lcd0", "lvds", "emac" } }, 91 { "PD22", 3, 22, { "gpio_in", "gpio_out", "pwm", NULL, "emac" } }, 92 { "PD23", 3, 23, { "gpio_in", "gpio_out", NULL, NULL, "emac" } }, 93 { "PD24", 3, 24, { "gpio_in", "gpio_out" } }, 94 95 { "PE0", 4, 0, { "gpio_in", "gpio_out", "csi", NULL, "ts" } }, 96 { "PE1", 4, 1, { "gpio_in", "gpio_out", "csi", NULL, "ts" } }, 97 { "PE2", 4, 2, { "gpio_in", "gpio_out", "csi", NULL, "ts" } }, 98 { "PE3", 4, 3, { "gpio_in", "gpio_out", "csi", NULL, "ts" } }, 99 { "PE4", 4, 4, { "gpio_in", "gpio_out", "csi", NULL, "ts" } }, 100 { "PE5", 4, 5, { "gpio_in", "gpio_out", "csi", NULL, "ts" } }, 101 { "PE6", 4, 6, { "gpio_in", "gpio_out", "csi", NULL, "ts" } }, 102 { "PE7", 4, 7, { "gpio_in", "gpio_out", "csi", NULL, "ts" } }, 103 { "PE8", 4, 8, { "gpio_in", "gpio_out", "csi", NULL, "ts" } }, 104 { "PE9", 4, 9, { "gpio_in", "gpio_out", "csi", NULL, "ts" } }, 105 { "PE10", 4, 10, { "gpio_in", "gpio_out", "csi", NULL, "ts" } }, 106 { "PE11", 4, 11, { "gpio_in", "gpio_out", "csi", NULL, "ts" } }, 107 { "PE12", 4, 12, { "gpio_in", "gpio_out", "csi" } }, 108 { "PE13", 4, 13, { "gpio_in", "gpio_out", "csi" } }, 109 { "PE14", 4, 14, { "gpio_in", "gpio_out", "pll_lock", "twi2" } }, 110 { "PE15", 4, 15, { "gpio_in", "gpio_out", NULL, "twi2" } }, 111 { "PE16", 4, 16, { "gpio_in", "gpio_out" } }, 112 { "PE17", 4, 17, { "gpio_in", "gpio_out" } }, 113 114 { "PF0", 5, 0, { "gpio_in", "gpio_out", "mmc0", "jtag" } }, 115 { "PF1", 5, 1, { "gpio_in", "gpio_out", "mmc0", "jtag" } }, 116 { "PF2", 5, 2, { "gpio_in", "gpio_out", "mmc0", "uart0" } }, 117 { "PF3", 5, 3, { "gpio_in", "gpio_out", "mmc0", "jtag" } }, 118 { "PF4", 5, 4, { "gpio_in", "gpio_out", "mmc0", "uart0" } }, 119 { "PF5", 5, 5, { "gpio_in", "gpio_out", "mmc0", "jtag" } }, 120 { "PF6", 5, 6, { "gpio_in", "gpio_out" } }, 121 122 { "PG0", 6, 0, { "gpio_in", "gpio_out", "mmc1", NULL, NULL, NULL, "irq" }, 6, 0}, 123 { "PG1", 6, 1, { "gpio_in", "gpio_out", "mmc1", NULL, NULL, NULL, "irq" }, 6, 1}, 124 { "PG2", 6, 2, { "gpio_in", "gpio_out", "mmc1", NULL, NULL, NULL, "irq" }, 6, 2}, 125 { "PG3", 6, 3, { "gpio_in", "gpio_out", "mmc1", NULL, NULL, NULL, "irq" }, 6, 3}, 126 { "PG4", 6, 4, { "gpio_in", "gpio_out", "mmc1", NULL, NULL, NULL, "irq" }, 6, 4}, 127 { "PG5", 6, 5, { "gpio_in", "gpio_out", "mmc1", NULL, NULL, NULL, "irq" }, 6, 5}, 128 { "PG6", 6, 6, { "gpio_in", "gpio_out", "uart1", NULL, NULL, NULL, "irq" }, 6, 6}, 129 { "PG7", 6, 7, { "gpio_in", "gpio_out", "uart1", NULL, NULL, NULL, "irq" }, 6, 7}, 130 { "PG8", 6, 8, { "gpio_in", "gpio_out", "uart1", NULL, NULL, NULL, "irq" }, 6, 8}, 131 { "PG9", 6, 9, { "gpio_in", "gpio_out", "uart1", NULL, NULL, NULL, "irq" }, 6, 9}, 132 { "PG10", 6, 10, { "gpio_in", "gpio_out", "aif3", "pcm1", NULL, NULL, "irq" }, 6, 10}, 133 { "PG11", 6, 11, { "gpio_in", "gpio_out", "aif3", "pcm1", NULL, NULL, "irq" }, 6, 11}, 134 { "PG12", 6, 12, { "gpio_in", "gpio_out", "aif3", "pcm1", NULL, NULL, "irq" }, 6, 12}, 135 { "PG13", 6, 13, { "gpio_in", "gpio_out", "aif3", "pcm1", NULL, NULL, "irq" }, 6, 13}, 136 137 { "PH0", 7, 0, { "gpio_in", "gpio_out", "i2c0", NULL, NULL, NULL, "irq" }, 6, 0}, 138 { "PH1", 7, 1, { "gpio_in", "gpio_out", "i2c0", NULL, NULL, NULL, "irq" }, 6, 1}, 139 { "PH2", 7, 2, { "gpio_in", "gpio_out", "i2c1", NULL, NULL, NULL, "irq" }, 6, 2}, 140 { "PH3", 7, 3, { "gpio_in", "gpio_out", "i2c1", NULL, NULL, NULL, "irq" }, 6, 3}, 141 { "PH4", 7, 4, { "gpio_in", "gpio_out", "uart3", NULL, NULL, NULL, "irq" }, 6, 4}, 142 { "PH5", 7, 5, { "gpio_in", "gpio_out", "uart3", NULL, NULL, NULL, "irq" }, 6, 5}, 143 { "PH6", 7, 6, { "gpio_in", "gpio_out", "uart3", NULL, NULL, NULL, "irq" }, 6, 6}, 144 { "PH7", 7, 7, { "gpio_in", "gpio_out", "uart3", NULL, NULL, NULL, "irq" }, 6, 7}, 145 { "PH8", 7, 8, { "gpio_in", "gpio_out", "owa", NULL, NULL, NULL, "irq" }, 6, 8}, 146 { "PH9", 7, 9, { "gpio_in", "gpio_out", NULL, NULL, NULL, NULL, "irq" }, 6, 9}, 147 { "PH10", 7, 10, { "gpio_in", "gpio_out", "mic", NULL, NULL, NULL, "irq" }, 6, 10}, 148 { "PH11", 7, 11, { "gpio_in", "gpio_out", "mic", NULL, NULL, NULL, "irq" }, 6, 11}, 149 }; 150 151 static const struct sunxi_gpio_pins a64_r_pins[] = { 152 { "PL0", 0, 0, { "gpio_in", "gpio_out", "s_rsb", "s_i2c", NULL, NULL, "irq" }, 6, 0}, 153 { "PL1", 0, 1, { "gpio_in", "gpio_out", "s_rsb", "s_i2c", NULL, NULL, "irq" }, 6, 1}, 154 { "PL2", 0, 2, { "gpio_in", "gpio_out", "s_uart", NULL, NULL, NULL, "irq" }, 6, 2}, 155 { "PL3", 0, 3, { "gpio_in", "gpio_out", "s_uart", NULL, NULL, NULL, "irq" }, 6, 3}, 156 { "PL4", 0, 4, { "gpio_in", "gpio_out", "s_jtag", NULL, NULL, NULL, "irq" }, 6, 4}, 157 { "PL5", 0, 5, { "gpio_in", "gpio_out", "s_jtag", NULL, NULL, NULL, "irq" }, 6, 5}, 158 { "PL6", 0, 6, { "gpio_in", "gpio_out", "s_jtag", NULL, NULL, NULL, "irq" }, 6, 6}, 159 { "PL7", 0, 7, { "gpio_in", "gpio_out", "s_jtag", NULL, NULL, NULL, "irq" }, 6, 7}, 160 { "PL8", 0, 8, { "gpio_in", "gpio_out", "s_i2c", NULL, NULL, NULL, "irq" }, 6, 8}, 161 { "PL9", 0, 9, { "gpio_in", "gpio_out", "s_i2c", NULL, NULL, NULL, "irq" }, 6, 9}, 162 { "PL10", 0, 10, { "gpio_in", "gpio_out", "s_pwm", NULL, NULL, NULL, "irq" }, 6, 10}, 163 { "PL11", 0, 11, { "gpio_in", "gpio_out", "s_cir", NULL, NULL, NULL, "irq" }, 6, 11}, 164 { "PL12", 0, 12, { "gpio_in", "gpio_out", NULL, NULL, NULL, NULL, "irq" }, 6, 12}, 165 }; 166 167 const struct sunxi_gpio_padconf sun50i_a64_padconf = { 168 .npins = __arraycount(a64_pins), 169 .pins = a64_pins, 170 }; 171 172 const struct sunxi_gpio_padconf sun50i_a64_r_padconf = { 173 .npins = __arraycount(a64_r_pins), 174 .pins = a64_r_pins, 175 }; 176