cachepc-linux

Fork of AMDESE/linux with modifications for CachePC side-channel attack
git clone https://git.sinitax.com/sinitax/cachepc-linux
Log | Files | Refs | README | LICENSE | sfeed.txt

pinctrl-meson-g12a.c (44490B)


      1// SPDX-License-Identifier: (GPL-2.0+ or MIT)
      2/*
      3 * Pin controller and GPIO driver for Amlogic Meson G12A SoC.
      4 *
      5 * Copyright (c) 2018 Amlogic, Inc. All rights reserved.
      6 * Author: Xingyu Chen <xingyu.chen@amlogic.com>
      7 * Author: Yixun Lan <yixun.lan@amlogic.com>
      8 */
      9
     10#include <dt-bindings/gpio/meson-g12a-gpio.h>
     11#include "pinctrl-meson.h"
     12#include "pinctrl-meson-axg-pmx.h"
     13
     14static const struct pinctrl_pin_desc meson_g12a_periphs_pins[] = {
     15	MESON_PIN(GPIOZ_0),
     16	MESON_PIN(GPIOZ_1),
     17	MESON_PIN(GPIOZ_2),
     18	MESON_PIN(GPIOZ_3),
     19	MESON_PIN(GPIOZ_4),
     20	MESON_PIN(GPIOZ_5),
     21	MESON_PIN(GPIOZ_6),
     22	MESON_PIN(GPIOZ_7),
     23	MESON_PIN(GPIOZ_8),
     24	MESON_PIN(GPIOZ_9),
     25	MESON_PIN(GPIOZ_10),
     26	MESON_PIN(GPIOZ_11),
     27	MESON_PIN(GPIOZ_12),
     28	MESON_PIN(GPIOZ_13),
     29	MESON_PIN(GPIOZ_14),
     30	MESON_PIN(GPIOZ_15),
     31	MESON_PIN(GPIOH_0),
     32	MESON_PIN(GPIOH_1),
     33	MESON_PIN(GPIOH_2),
     34	MESON_PIN(GPIOH_3),
     35	MESON_PIN(GPIOH_4),
     36	MESON_PIN(GPIOH_5),
     37	MESON_PIN(GPIOH_6),
     38	MESON_PIN(GPIOH_7),
     39	MESON_PIN(GPIOH_8),
     40	MESON_PIN(BOOT_0),
     41	MESON_PIN(BOOT_1),
     42	MESON_PIN(BOOT_2),
     43	MESON_PIN(BOOT_3),
     44	MESON_PIN(BOOT_4),
     45	MESON_PIN(BOOT_5),
     46	MESON_PIN(BOOT_6),
     47	MESON_PIN(BOOT_7),
     48	MESON_PIN(BOOT_8),
     49	MESON_PIN(BOOT_9),
     50	MESON_PIN(BOOT_10),
     51	MESON_PIN(BOOT_11),
     52	MESON_PIN(BOOT_12),
     53	MESON_PIN(BOOT_13),
     54	MESON_PIN(BOOT_14),
     55	MESON_PIN(BOOT_15),
     56	MESON_PIN(GPIOC_0),
     57	MESON_PIN(GPIOC_1),
     58	MESON_PIN(GPIOC_2),
     59	MESON_PIN(GPIOC_3),
     60	MESON_PIN(GPIOC_4),
     61	MESON_PIN(GPIOC_5),
     62	MESON_PIN(GPIOC_6),
     63	MESON_PIN(GPIOC_7),
     64	MESON_PIN(GPIOA_0),
     65	MESON_PIN(GPIOA_1),
     66	MESON_PIN(GPIOA_2),
     67	MESON_PIN(GPIOA_3),
     68	MESON_PIN(GPIOA_4),
     69	MESON_PIN(GPIOA_5),
     70	MESON_PIN(GPIOA_6),
     71	MESON_PIN(GPIOA_7),
     72	MESON_PIN(GPIOA_8),
     73	MESON_PIN(GPIOA_9),
     74	MESON_PIN(GPIOA_10),
     75	MESON_PIN(GPIOA_11),
     76	MESON_PIN(GPIOA_12),
     77	MESON_PIN(GPIOA_13),
     78	MESON_PIN(GPIOA_14),
     79	MESON_PIN(GPIOA_15),
     80	MESON_PIN(GPIOX_0),
     81	MESON_PIN(GPIOX_1),
     82	MESON_PIN(GPIOX_2),
     83	MESON_PIN(GPIOX_3),
     84	MESON_PIN(GPIOX_4),
     85	MESON_PIN(GPIOX_5),
     86	MESON_PIN(GPIOX_6),
     87	MESON_PIN(GPIOX_7),
     88	MESON_PIN(GPIOX_8),
     89	MESON_PIN(GPIOX_9),
     90	MESON_PIN(GPIOX_10),
     91	MESON_PIN(GPIOX_11),
     92	MESON_PIN(GPIOX_12),
     93	MESON_PIN(GPIOX_13),
     94	MESON_PIN(GPIOX_14),
     95	MESON_PIN(GPIOX_15),
     96	MESON_PIN(GPIOX_16),
     97	MESON_PIN(GPIOX_17),
     98	MESON_PIN(GPIOX_18),
     99	MESON_PIN(GPIOX_19),
    100};
    101
    102static const struct pinctrl_pin_desc meson_g12a_aobus_pins[] = {
    103	MESON_PIN(GPIOAO_0),
    104	MESON_PIN(GPIOAO_1),
    105	MESON_PIN(GPIOAO_2),
    106	MESON_PIN(GPIOAO_3),
    107	MESON_PIN(GPIOAO_4),
    108	MESON_PIN(GPIOAO_5),
    109	MESON_PIN(GPIOAO_6),
    110	MESON_PIN(GPIOAO_7),
    111	MESON_PIN(GPIOAO_8),
    112	MESON_PIN(GPIOAO_9),
    113	MESON_PIN(GPIOAO_10),
    114	MESON_PIN(GPIOAO_11),
    115	MESON_PIN(GPIOE_0),
    116	MESON_PIN(GPIOE_1),
    117	MESON_PIN(GPIOE_2),
    118};
    119
    120/* emmc */
    121static const unsigned int emmc_nand_d0_pins[]		= { BOOT_0 };
    122static const unsigned int emmc_nand_d1_pins[]		= { BOOT_1 };
    123static const unsigned int emmc_nand_d2_pins[]		= { BOOT_2 };
    124static const unsigned int emmc_nand_d3_pins[]		= { BOOT_3 };
    125static const unsigned int emmc_nand_d4_pins[]		= { BOOT_4 };
    126static const unsigned int emmc_nand_d5_pins[]		= { BOOT_5 };
    127static const unsigned int emmc_nand_d6_pins[]		= { BOOT_6 };
    128static const unsigned int emmc_nand_d7_pins[]		= { BOOT_7 };
    129static const unsigned int emmc_clk_pins[]		= { BOOT_8 };
    130static const unsigned int emmc_cmd_pins[]		= { BOOT_10 };
    131static const unsigned int emmc_nand_ds_pins[]		= { BOOT_13 };
    132
    133/* nand */
    134static const unsigned int nand_wen_clk_pins[]		= { BOOT_8 };
    135static const unsigned int nand_ale_pins[]		= { BOOT_9 };
    136static const unsigned int nand_cle_pins[]		= { BOOT_10 };
    137static const unsigned int nand_ce0_pins[]		= { BOOT_11 };
    138static const unsigned int nand_ren_wr_pins[]		= { BOOT_12 };
    139static const unsigned int nand_rb0_pins[]		= { BOOT_14 };
    140static const unsigned int nand_ce1_pins[]		= { BOOT_15 };
    141
    142/* nor */
    143static const unsigned int nor_hold_pins[]		= { BOOT_3 };
    144static const unsigned int nor_d_pins[]			= { BOOT_4 };
    145static const unsigned int nor_q_pins[]			= { BOOT_5 };
    146static const unsigned int nor_c_pins[]			= { BOOT_6 };
    147static const unsigned int nor_wp_pins[]			= { BOOT_7 };
    148static const unsigned int nor_cs_pins[]			= { BOOT_14 };
    149
    150/* sdio */
    151static const unsigned int sdio_d0_pins[]		= { GPIOX_0 };
    152static const unsigned int sdio_d1_pins[]		= { GPIOX_1 };
    153static const unsigned int sdio_d2_pins[]		= { GPIOX_2 };
    154static const unsigned int sdio_d3_pins[]		= { GPIOX_3 };
    155static const unsigned int sdio_clk_pins[]		= { GPIOX_4 };
    156static const unsigned int sdio_cmd_pins[]		= { GPIOX_5 };
    157
    158/* sdcard */
    159static const unsigned int sdcard_d0_c_pins[]		= { GPIOC_0 };
    160static const unsigned int sdcard_d1_c_pins[]		= { GPIOC_1 };
    161static const unsigned int sdcard_d2_c_pins[]		= { GPIOC_2 };
    162static const unsigned int sdcard_d3_c_pins[]		= { GPIOC_3 };
    163static const unsigned int sdcard_clk_c_pins[]		= { GPIOC_4 };
    164static const unsigned int sdcard_cmd_c_pins[]		= { GPIOC_5 };
    165
    166static const unsigned int sdcard_d0_z_pins[]		= { GPIOZ_2 };
    167static const unsigned int sdcard_d1_z_pins[]		= { GPIOZ_3 };
    168static const unsigned int sdcard_d2_z_pins[]		= { GPIOZ_4 };
    169static const unsigned int sdcard_d3_z_pins[]		= { GPIOZ_5 };
    170static const unsigned int sdcard_clk_z_pins[]		= { GPIOZ_6 };
    171static const unsigned int sdcard_cmd_z_pins[]		= { GPIOZ_7 };
    172
    173/* spi0 */
    174static const unsigned int spi0_mosi_c_pins[]		= { GPIOC_0 };
    175static const unsigned int spi0_miso_c_pins[]		= { GPIOC_1 };
    176static const unsigned int spi0_ss0_c_pins[]		= { GPIOC_2 };
    177static const unsigned int spi0_clk_c_pins[]		= { GPIOC_3 };
    178
    179static const unsigned int spi0_mosi_x_pins[]		= { GPIOX_8 };
    180static const unsigned int spi0_miso_x_pins[]		= { GPIOX_9 };
    181static const unsigned int spi0_ss0_x_pins[]		= { GPIOX_10 };
    182static const unsigned int spi0_clk_x_pins[]		= { GPIOX_11 };
    183
    184/* spi1 */
    185static const unsigned int spi1_mosi_pins[]		= { GPIOH_4 };
    186static const unsigned int spi1_miso_pins[]		= { GPIOH_5 };
    187static const unsigned int spi1_ss0_pins[]		= { GPIOH_6 };
    188static const unsigned int spi1_clk_pins[]		= { GPIOH_7 };
    189
    190/* i2c0 */
    191static const unsigned int i2c0_sda_c_pins[]		= { GPIOC_5 };
    192static const unsigned int i2c0_sck_c_pins[]		= { GPIOC_6 };
    193static const unsigned int i2c0_sda_z0_pins[]		= { GPIOZ_0 };
    194static const unsigned int i2c0_sck_z1_pins[]		= { GPIOZ_1 };
    195static const unsigned int i2c0_sda_z7_pins[]		= { GPIOZ_7 };
    196static const unsigned int i2c0_sck_z8_pins[]		= { GPIOZ_8 };
    197
    198/* i2c1 */
    199static const unsigned int i2c1_sda_x_pins[]		= { GPIOX_10 };
    200static const unsigned int i2c1_sck_x_pins[]		= { GPIOX_11 };
    201static const unsigned int i2c1_sda_h2_pins[]		= { GPIOH_2 };
    202static const unsigned int i2c1_sck_h3_pins[]		= { GPIOH_3 };
    203static const unsigned int i2c1_sda_h6_pins[]		= { GPIOH_6 };
    204static const unsigned int i2c1_sck_h7_pins[]		= { GPIOH_7 };
    205
    206/* i2c2 */
    207static const unsigned int i2c2_sda_x_pins[]		= { GPIOX_17 };
    208static const unsigned int i2c2_sck_x_pins[]		= { GPIOX_18 };
    209static const unsigned int i2c2_sda_z_pins[]		= { GPIOZ_14 };
    210static const unsigned int i2c2_sck_z_pins[]		= { GPIOZ_15 };
    211
    212/* i2c3 */
    213static const unsigned int i2c3_sda_h_pins[]		= { GPIOH_0 };
    214static const unsigned int i2c3_sck_h_pins[]		= { GPIOH_1 };
    215static const unsigned int i2c3_sda_a_pins[]		= { GPIOA_14 };
    216static const unsigned int i2c3_sck_a_pins[]		= { GPIOA_15 };
    217
    218/* uart_a */
    219static const unsigned int uart_a_tx_pins[]		= { GPIOX_12 };
    220static const unsigned int uart_a_rx_pins[]		= { GPIOX_13 };
    221static const unsigned int uart_a_cts_pins[]		= { GPIOX_14 };
    222static const unsigned int uart_a_rts_pins[]		= { GPIOX_15 };
    223
    224/* uart_b */
    225static const unsigned int uart_b_tx_pins[]		= { GPIOX_6 };
    226static const unsigned int uart_b_rx_pins[]		= { GPIOX_7 };
    227
    228/* uart_c */
    229static const unsigned int uart_c_rts_pins[]		= { GPIOH_4 };
    230static const unsigned int uart_c_cts_pins[]		= { GPIOH_5 };
    231static const unsigned int uart_c_rx_pins[]		= { GPIOH_6 };
    232static const unsigned int uart_c_tx_pins[]		= { GPIOH_7 };
    233
    234/* uart_ao_a_c */
    235static const unsigned int uart_ao_a_rx_c_pins[]		= { GPIOC_2 };
    236static const unsigned int uart_ao_a_tx_c_pins[]		= { GPIOC_3 };
    237
    238/* iso7816 */
    239static const unsigned int iso7816_clk_c_pins[]		= { GPIOC_5 };
    240static const unsigned int iso7816_data_c_pins[]		= { GPIOC_6 };
    241static const unsigned int iso7816_clk_x_pins[]		= { GPIOX_8 };
    242static const unsigned int iso7816_data_x_pins[]		= { GPIOX_9 };
    243static const unsigned int iso7816_clk_h_pins[]		= { GPIOH_6 };
    244static const unsigned int iso7816_data_h_pins[]		= { GPIOH_7 };
    245static const unsigned int iso7816_clk_z_pins[]		= { GPIOZ_0 };
    246static const unsigned int iso7816_data_z_pins[]		= { GPIOZ_1 };
    247
    248/* eth */
    249static const unsigned int eth_mdio_pins[]		= { GPIOZ_0 };
    250static const unsigned int eth_mdc_pins[]		= { GPIOZ_1 };
    251static const unsigned int eth_rgmii_rx_clk_pins[]	= { GPIOZ_2 };
    252static const unsigned int eth_rx_dv_pins[]		= { GPIOZ_3 };
    253static const unsigned int eth_rxd0_pins[]		= { GPIOZ_4 };
    254static const unsigned int eth_rxd1_pins[]		= { GPIOZ_5 };
    255static const unsigned int eth_rxd2_rgmii_pins[]		= { GPIOZ_6 };
    256static const unsigned int eth_rxd3_rgmii_pins[]		= { GPIOZ_7 };
    257static const unsigned int eth_rgmii_tx_clk_pins[]	= { GPIOZ_8 };
    258static const unsigned int eth_txen_pins[]		= { GPIOZ_9 };
    259static const unsigned int eth_txd0_pins[]		= { GPIOZ_10 };
    260static const unsigned int eth_txd1_pins[]		= { GPIOZ_11 };
    261static const unsigned int eth_txd2_rgmii_pins[]		= { GPIOZ_12 };
    262static const unsigned int eth_txd3_rgmii_pins[]		= { GPIOZ_13 };
    263static const unsigned int eth_link_led_pins[]		= { GPIOZ_14 };
    264static const unsigned int eth_act_led_pins[]		= { GPIOZ_15 };
    265
    266/* pwm_a */
    267static const unsigned int pwm_a_pins[]			= { GPIOX_6 };
    268
    269/* pwm_b */
    270static const unsigned int pwm_b_x7_pins[]		= { GPIOX_7 };
    271static const unsigned int pwm_b_x19_pins[]		= { GPIOX_19 };
    272
    273/* pwm_c */
    274static const unsigned int pwm_c_c_pins[]		= { GPIOC_4 };
    275static const unsigned int pwm_c_x5_pins[]		= { GPIOX_5 };
    276static const unsigned int pwm_c_x8_pins[]		= { GPIOX_8 };
    277
    278/* pwm_d */
    279static const unsigned int pwm_d_x3_pins[]		= { GPIOX_3 };
    280static const unsigned int pwm_d_x6_pins[]		= { GPIOX_6 };
    281
    282/* pwm_e */
    283static const unsigned int pwm_e_pins[]			= { GPIOX_16 };
    284
    285/* pwm_f */
    286static const unsigned int pwm_f_z_pins[]		= { GPIOZ_12 };
    287static const unsigned int pwm_f_a_pins[]		= { GPIOA_11 };
    288static const unsigned int pwm_f_x_pins[]		= { GPIOX_7 };
    289static const unsigned int pwm_f_h_pins[]		= { GPIOH_5 };
    290
    291/* cec_ao */
    292static const unsigned int cec_ao_a_h_pins[]		= { GPIOH_3 };
    293static const unsigned int cec_ao_b_h_pins[]		= { GPIOH_3 };
    294
    295/* jtag_b */
    296static const unsigned int jtag_b_tdo_pins[]		= { GPIOC_0 };
    297static const unsigned int jtag_b_tdi_pins[]		= { GPIOC_1 };
    298static const unsigned int jtag_b_clk_pins[]		= { GPIOC_4 };
    299static const unsigned int jtag_b_tms_pins[]		= { GPIOC_5 };
    300
    301/* bt565_a */
    302static const unsigned int bt565_a_vs_pins[]		= { GPIOZ_0 };
    303static const unsigned int bt565_a_hs_pins[]		= { GPIOZ_1 };
    304static const unsigned int bt565_a_clk_pins[]		= { GPIOZ_3 };
    305static const unsigned int bt565_a_din0_pins[]		= { GPIOZ_4 };
    306static const unsigned int bt565_a_din1_pins[]		= { GPIOZ_5 };
    307static const unsigned int bt565_a_din2_pins[]		= { GPIOZ_6 };
    308static const unsigned int bt565_a_din3_pins[]		= { GPIOZ_7 };
    309static const unsigned int bt565_a_din4_pins[]		= { GPIOZ_8 };
    310static const unsigned int bt565_a_din5_pins[]		= { GPIOZ_9 };
    311static const unsigned int bt565_a_din6_pins[]		= { GPIOZ_10 };
    312static const unsigned int bt565_a_din7_pins[]		= { GPIOZ_11 };
    313
    314/* tsin_a */
    315static const unsigned int tsin_a_valid_pins[]		= { GPIOX_2 };
    316static const unsigned int tsin_a_sop_pins[]		= { GPIOX_1 };
    317static const unsigned int tsin_a_din0_pins[]		= { GPIOX_0 };
    318static const unsigned int tsin_a_clk_pins[]		= { GPIOX_3 };
    319
    320/* tsin_b */
    321static const unsigned int tsin_b_valid_x_pins[]		= { GPIOX_9 };
    322static const unsigned int tsin_b_sop_x_pins[]		= { GPIOX_8 };
    323static const unsigned int tsin_b_din0_x_pins[]		= { GPIOX_10 };
    324static const unsigned int tsin_b_clk_x_pins[]		= { GPIOX_11 };
    325
    326static const unsigned int tsin_b_valid_z_pins[]		= { GPIOZ_2 };
    327static const unsigned int tsin_b_sop_z_pins[]		= { GPIOZ_3 };
    328static const unsigned int tsin_b_din0_z_pins[]		= { GPIOZ_4 };
    329static const unsigned int tsin_b_clk_z_pins[]		= { GPIOZ_5 };
    330
    331static const unsigned int tsin_b_fail_pins[]		= { GPIOZ_6 };
    332static const unsigned int tsin_b_din1_pins[]		= { GPIOZ_7 };
    333static const unsigned int tsin_b_din2_pins[]		= { GPIOZ_8 };
    334static const unsigned int tsin_b_din3_pins[]		= { GPIOZ_9 };
    335static const unsigned int tsin_b_din4_pins[]		= { GPIOZ_10 };
    336static const unsigned int tsin_b_din5_pins[]		= { GPIOZ_11 };
    337static const unsigned int tsin_b_din6_pins[]		= { GPIOZ_12 };
    338static const unsigned int tsin_b_din7_pins[]		= { GPIOZ_13 };
    339
    340/* hdmitx */
    341static const unsigned int hdmitx_sda_pins[]		= { GPIOH_0 };
    342static const unsigned int hdmitx_sck_pins[]		= { GPIOH_1 };
    343static const unsigned int hdmitx_hpd_in_pins[]		= { GPIOH_2 };
    344
    345/* pdm */
    346static const unsigned int pdm_din0_c_pins[]		= { GPIOC_0 };
    347static const unsigned int pdm_din1_c_pins[]		= { GPIOC_1 };
    348static const unsigned int pdm_din2_c_pins[]		= { GPIOC_2 };
    349static const unsigned int pdm_din3_c_pins[]		= { GPIOC_3 };
    350static const unsigned int pdm_dclk_c_pins[]		= { GPIOC_4 };
    351
    352static const unsigned int pdm_din0_x_pins[]		= { GPIOX_0 };
    353static const unsigned int pdm_din1_x_pins[]		= { GPIOX_1 };
    354static const unsigned int pdm_din2_x_pins[]		= { GPIOX_2 };
    355static const unsigned int pdm_din3_x_pins[]		= { GPIOX_3 };
    356static const unsigned int pdm_dclk_x_pins[]		= { GPIOX_4 };
    357
    358static const unsigned int pdm_din0_z_pins[]		= { GPIOZ_2 };
    359static const unsigned int pdm_din1_z_pins[]		= { GPIOZ_3 };
    360static const unsigned int pdm_din2_z_pins[]		= { GPIOZ_4 };
    361static const unsigned int pdm_din3_z_pins[]		= { GPIOZ_5 };
    362static const unsigned int pdm_dclk_z_pins[]		= { GPIOZ_6 };
    363
    364static const unsigned int pdm_din0_a_pins[]		= { GPIOA_8 };
    365static const unsigned int pdm_din1_a_pins[]		= { GPIOA_9 };
    366static const unsigned int pdm_din2_a_pins[]		= { GPIOA_6 };
    367static const unsigned int pdm_din3_a_pins[]		= { GPIOA_5 };
    368static const unsigned int pdm_dclk_a_pins[]		= { GPIOA_7 };
    369
    370/* spdif_in */
    371static const unsigned int spdif_in_h_pins[]		= { GPIOH_5 };
    372static const unsigned int spdif_in_a10_pins[]		= { GPIOA_10 };
    373static const unsigned int spdif_in_a12_pins[]		= { GPIOA_12 };
    374
    375/* spdif_out */
    376static const unsigned int spdif_out_h_pins[]		= { GPIOH_4 };
    377static const unsigned int spdif_out_a11_pins[]		= { GPIOA_11 };
    378static const unsigned int spdif_out_a13_pins[]		= { GPIOA_13 };
    379
    380/* mclk0 */
    381static const unsigned int mclk0_a_pins[]		= { GPIOA_0 };
    382
    383/* mclk1 */
    384static const unsigned int mclk1_x_pins[]		= { GPIOX_5 };
    385static const unsigned int mclk1_z_pins[]		= { GPIOZ_8 };
    386static const unsigned int mclk1_a_pins[]		= { GPIOA_11 };
    387
    388/* tdm */
    389static const unsigned int tdm_a_slv_sclk_pins[]		= { GPIOX_11 };
    390static const unsigned int tdm_a_slv_fs_pins[]		= { GPIOX_10 };
    391static const unsigned int tdm_a_sclk_pins[]		= { GPIOX_11 };
    392static const unsigned int tdm_a_fs_pins[]		= { GPIOX_10 };
    393static const unsigned int tdm_a_din0_pins[]		= { GPIOX_9 };
    394static const unsigned int tdm_a_din1_pins[]		= { GPIOX_8 };
    395static const unsigned int tdm_a_dout0_pins[]		= { GPIOX_9 };
    396static const unsigned int tdm_a_dout1_pins[]		= { GPIOX_8 };
    397
    398static const unsigned int tdm_b_slv_sclk_pins[]		= { GPIOA_1 };
    399static const unsigned int tdm_b_slv_fs_pins[]		= { GPIOA_2 };
    400static const unsigned int tdm_b_sclk_pins[]		= { GPIOA_1 };
    401static const unsigned int tdm_b_fs_pins[]		= { GPIOA_2 };
    402static const unsigned int tdm_b_din0_pins[]		= { GPIOA_3 };
    403static const unsigned int tdm_b_din1_pins[]		= { GPIOA_4 };
    404static const unsigned int tdm_b_din2_pins[]		= { GPIOA_5 };
    405static const unsigned int tdm_b_din3_a_pins[]		= { GPIOA_6 };
    406static const unsigned int tdm_b_din3_h_pins[]		= { GPIOH_5 };
    407static const unsigned int tdm_b_dout0_pins[]		= { GPIOA_3 };
    408static const unsigned int tdm_b_dout1_pins[]		= { GPIOA_4 };
    409static const unsigned int tdm_b_dout2_pins[]		= { GPIOA_5 };
    410static const unsigned int tdm_b_dout3_a_pins[]		= { GPIOA_6 };
    411static const unsigned int tdm_b_dout3_h_pins[]		= { GPIOH_5 };
    412
    413static const unsigned int tdm_c_slv_sclk_a_pins[]	= { GPIOA_12 };
    414static const unsigned int tdm_c_slv_fs_a_pins[]		= { GPIOA_13 };
    415static const unsigned int tdm_c_slv_sclk_z_pins[]	= { GPIOZ_7 };
    416static const unsigned int tdm_c_slv_fs_z_pins[]		= { GPIOZ_6 };
    417static const unsigned int tdm_c_sclk_a_pins[]		= { GPIOA_12 };
    418static const unsigned int tdm_c_fs_a_pins[]		= { GPIOA_13 };
    419static const unsigned int tdm_c_sclk_z_pins[]		= { GPIOZ_7 };
    420static const unsigned int tdm_c_fs_z_pins[]		= { GPIOZ_6 };
    421static const unsigned int tdm_c_din0_a_pins[]		= { GPIOA_10 };
    422static const unsigned int tdm_c_din1_a_pins[]		= { GPIOA_9 };
    423static const unsigned int tdm_c_din2_a_pins[]		= { GPIOA_8 };
    424static const unsigned int tdm_c_din3_a_pins[]		= { GPIOA_7 };
    425static const unsigned int tdm_c_din0_z_pins[]		= { GPIOZ_2 };
    426static const unsigned int tdm_c_din1_z_pins[]		= { GPIOZ_3 };
    427static const unsigned int tdm_c_din2_z_pins[]		= { GPIOZ_4 };
    428static const unsigned int tdm_c_din3_z_pins[]		= { GPIOZ_5 };
    429static const unsigned int tdm_c_dout0_a_pins[]		= { GPIOA_10 };
    430static const unsigned int tdm_c_dout1_a_pins[]		= { GPIOA_9 };
    431static const unsigned int tdm_c_dout2_a_pins[]		= { GPIOA_8 };
    432static const unsigned int tdm_c_dout3_a_pins[]		= { GPIOA_7 };
    433static const unsigned int tdm_c_dout0_z_pins[]		= { GPIOZ_2 };
    434static const unsigned int tdm_c_dout1_z_pins[]		= { GPIOZ_3 };
    435static const unsigned int tdm_c_dout2_z_pins[]		= { GPIOZ_4 };
    436static const unsigned int tdm_c_dout3_z_pins[]		= { GPIOZ_5 };
    437
    438static struct meson_pmx_group meson_g12a_periphs_groups[] = {
    439	GPIO_GROUP(GPIOZ_0),
    440	GPIO_GROUP(GPIOZ_1),
    441	GPIO_GROUP(GPIOZ_2),
    442	GPIO_GROUP(GPIOZ_3),
    443	GPIO_GROUP(GPIOZ_4),
    444	GPIO_GROUP(GPIOZ_5),
    445	GPIO_GROUP(GPIOZ_6),
    446	GPIO_GROUP(GPIOZ_7),
    447	GPIO_GROUP(GPIOZ_8),
    448	GPIO_GROUP(GPIOZ_9),
    449	GPIO_GROUP(GPIOZ_10),
    450	GPIO_GROUP(GPIOZ_11),
    451	GPIO_GROUP(GPIOZ_12),
    452	GPIO_GROUP(GPIOZ_13),
    453	GPIO_GROUP(GPIOZ_14),
    454	GPIO_GROUP(GPIOZ_15),
    455	GPIO_GROUP(GPIOH_0),
    456	GPIO_GROUP(GPIOH_1),
    457	GPIO_GROUP(GPIOH_2),
    458	GPIO_GROUP(GPIOH_3),
    459	GPIO_GROUP(GPIOH_4),
    460	GPIO_GROUP(GPIOH_5),
    461	GPIO_GROUP(GPIOH_6),
    462	GPIO_GROUP(GPIOH_7),
    463	GPIO_GROUP(GPIOH_8),
    464	GPIO_GROUP(BOOT_0),
    465	GPIO_GROUP(BOOT_1),
    466	GPIO_GROUP(BOOT_2),
    467	GPIO_GROUP(BOOT_3),
    468	GPIO_GROUP(BOOT_4),
    469	GPIO_GROUP(BOOT_5),
    470	GPIO_GROUP(BOOT_6),
    471	GPIO_GROUP(BOOT_7),
    472	GPIO_GROUP(BOOT_8),
    473	GPIO_GROUP(BOOT_9),
    474	GPIO_GROUP(BOOT_10),
    475	GPIO_GROUP(BOOT_11),
    476	GPIO_GROUP(BOOT_12),
    477	GPIO_GROUP(BOOT_13),
    478	GPIO_GROUP(BOOT_14),
    479	GPIO_GROUP(BOOT_15),
    480	GPIO_GROUP(GPIOC_0),
    481	GPIO_GROUP(GPIOC_1),
    482	GPIO_GROUP(GPIOC_2),
    483	GPIO_GROUP(GPIOC_3),
    484	GPIO_GROUP(GPIOC_4),
    485	GPIO_GROUP(GPIOC_5),
    486	GPIO_GROUP(GPIOC_6),
    487	GPIO_GROUP(GPIOC_7),
    488	GPIO_GROUP(GPIOA_0),
    489	GPIO_GROUP(GPIOA_1),
    490	GPIO_GROUP(GPIOA_2),
    491	GPIO_GROUP(GPIOA_3),
    492	GPIO_GROUP(GPIOA_4),
    493	GPIO_GROUP(GPIOA_5),
    494	GPIO_GROUP(GPIOA_6),
    495	GPIO_GROUP(GPIOA_7),
    496	GPIO_GROUP(GPIOA_8),
    497	GPIO_GROUP(GPIOA_9),
    498	GPIO_GROUP(GPIOA_10),
    499	GPIO_GROUP(GPIOA_11),
    500	GPIO_GROUP(GPIOA_12),
    501	GPIO_GROUP(GPIOA_13),
    502	GPIO_GROUP(GPIOA_14),
    503	GPIO_GROUP(GPIOA_15),
    504	GPIO_GROUP(GPIOX_0),
    505	GPIO_GROUP(GPIOX_1),
    506	GPIO_GROUP(GPIOX_2),
    507	GPIO_GROUP(GPIOX_3),
    508	GPIO_GROUP(GPIOX_4),
    509	GPIO_GROUP(GPIOX_5),
    510	GPIO_GROUP(GPIOX_6),
    511	GPIO_GROUP(GPIOX_7),
    512	GPIO_GROUP(GPIOX_8),
    513	GPIO_GROUP(GPIOX_9),
    514	GPIO_GROUP(GPIOX_10),
    515	GPIO_GROUP(GPIOX_11),
    516	GPIO_GROUP(GPIOX_12),
    517	GPIO_GROUP(GPIOX_13),
    518	GPIO_GROUP(GPIOX_14),
    519	GPIO_GROUP(GPIOX_15),
    520	GPIO_GROUP(GPIOX_16),
    521	GPIO_GROUP(GPIOX_17),
    522	GPIO_GROUP(GPIOX_18),
    523	GPIO_GROUP(GPIOX_19),
    524
    525	/* bank BOOT */
    526	GROUP(emmc_nand_d0,		1),
    527	GROUP(emmc_nand_d1,		1),
    528	GROUP(emmc_nand_d2,		1),
    529	GROUP(emmc_nand_d3,		1),
    530	GROUP(emmc_nand_d4,		1),
    531	GROUP(emmc_nand_d5,		1),
    532	GROUP(emmc_nand_d6,		1),
    533	GROUP(emmc_nand_d7,		1),
    534	GROUP(emmc_clk,			1),
    535	GROUP(emmc_cmd,			1),
    536	GROUP(emmc_nand_ds,		1),
    537	GROUP(nand_ce0,			2),
    538	GROUP(nand_ale,			2),
    539	GROUP(nand_cle,			2),
    540	GROUP(nand_wen_clk,		2),
    541	GROUP(nand_ren_wr,		2),
    542	GROUP(nand_rb0,			2),
    543	GROUP(nand_ce1,			2),
    544	GROUP(nor_hold,			3),
    545	GROUP(nor_d,			3),
    546	GROUP(nor_q,			3),
    547	GROUP(nor_c,			3),
    548	GROUP(nor_wp,			3),
    549	GROUP(nor_cs,			3),
    550
    551	/* bank GPIOZ */
    552	GROUP(sdcard_d0_z,		5),
    553	GROUP(sdcard_d1_z,		5),
    554	GROUP(sdcard_d2_z,		5),
    555	GROUP(sdcard_d3_z,		5),
    556	GROUP(sdcard_clk_z,		5),
    557	GROUP(sdcard_cmd_z,		5),
    558	GROUP(i2c0_sda_z0,		4),
    559	GROUP(i2c0_sck_z1,		4),
    560	GROUP(i2c0_sda_z7,		7),
    561	GROUP(i2c0_sck_z8,		7),
    562	GROUP(i2c2_sda_z,		3),
    563	GROUP(i2c2_sck_z,		3),
    564	GROUP(iso7816_clk_z,		3),
    565	GROUP(iso7816_data_z,		3),
    566	GROUP(eth_mdio,			1),
    567	GROUP(eth_mdc,			1),
    568	GROUP(eth_rgmii_rx_clk,		1),
    569	GROUP(eth_rx_dv,		1),
    570	GROUP(eth_rxd0,			1),
    571	GROUP(eth_rxd1,			1),
    572	GROUP(eth_rxd2_rgmii,		1),
    573	GROUP(eth_rxd3_rgmii,		1),
    574	GROUP(eth_rgmii_tx_clk,		1),
    575	GROUP(eth_txen,			1),
    576	GROUP(eth_txd0,			1),
    577	GROUP(eth_txd1,			1),
    578	GROUP(eth_txd2_rgmii,		1),
    579	GROUP(eth_txd3_rgmii,		1),
    580	GROUP(eth_link_led,		1),
    581	GROUP(eth_act_led,		1),
    582	GROUP(bt565_a_vs,		2),
    583	GROUP(bt565_a_hs,		2),
    584	GROUP(bt565_a_clk,		2),
    585	GROUP(bt565_a_din0,		2),
    586	GROUP(bt565_a_din1,		2),
    587	GROUP(bt565_a_din2,		2),
    588	GROUP(bt565_a_din3,		2),
    589	GROUP(bt565_a_din4,		2),
    590	GROUP(bt565_a_din5,		2),
    591	GROUP(bt565_a_din6,		2),
    592	GROUP(bt565_a_din7,		2),
    593	GROUP(tsin_b_valid_z,		3),
    594	GROUP(tsin_b_sop_z,		3),
    595	GROUP(tsin_b_din0_z,		3),
    596	GROUP(tsin_b_clk_z,		3),
    597	GROUP(tsin_b_fail,		3),
    598	GROUP(tsin_b_din1,		3),
    599	GROUP(tsin_b_din2,		3),
    600	GROUP(tsin_b_din3,		3),
    601	GROUP(tsin_b_din4,		3),
    602	GROUP(tsin_b_din5,		3),
    603	GROUP(tsin_b_din6,		3),
    604	GROUP(tsin_b_din7,		3),
    605	GROUP(pdm_din0_z,		7),
    606	GROUP(pdm_din1_z,		7),
    607	GROUP(pdm_din2_z,		7),
    608	GROUP(pdm_din3_z,		7),
    609	GROUP(pdm_dclk_z,		7),
    610	GROUP(tdm_c_slv_sclk_z,		6),
    611	GROUP(tdm_c_slv_fs_z,		6),
    612	GROUP(tdm_c_din0_z,		6),
    613	GROUP(tdm_c_din1_z,		6),
    614	GROUP(tdm_c_din2_z,		6),
    615	GROUP(tdm_c_din3_z,		6),
    616	GROUP(tdm_c_sclk_z,		4),
    617	GROUP(tdm_c_fs_z,		4),
    618	GROUP(tdm_c_dout0_z,		4),
    619	GROUP(tdm_c_dout1_z,		4),
    620	GROUP(tdm_c_dout2_z,		4),
    621	GROUP(tdm_c_dout3_z,		4),
    622	GROUP(mclk1_z,			4),
    623	GROUP(pwm_f_z,			5),
    624
    625	/* bank GPIOX */
    626	GROUP(sdio_d0,			1),
    627	GROUP(sdio_d1,			1),
    628	GROUP(sdio_d2,			1),
    629	GROUP(sdio_d3,			1),
    630	GROUP(sdio_clk,			1),
    631	GROUP(sdio_cmd,			1),
    632	GROUP(spi0_mosi_x,		4),
    633	GROUP(spi0_miso_x,		4),
    634	GROUP(spi0_ss0_x,		4),
    635	GROUP(spi0_clk_x,		4),
    636	GROUP(i2c1_sda_x,		5),
    637	GROUP(i2c1_sck_x,		5),
    638	GROUP(i2c2_sda_x,		1),
    639	GROUP(i2c2_sck_x,		1),
    640	GROUP(uart_a_tx,		1),
    641	GROUP(uart_a_rx,		1),
    642	GROUP(uart_a_cts,		1),
    643	GROUP(uart_a_rts,		1),
    644	GROUP(uart_b_tx,		2),
    645	GROUP(uart_b_rx,		2),
    646	GROUP(iso7816_clk_x,		6),
    647	GROUP(iso7816_data_x,		6),
    648	GROUP(pwm_a,			1),
    649	GROUP(pwm_b_x7,			4),
    650	GROUP(pwm_b_x19,		1),
    651	GROUP(pwm_c_x5,			4),
    652	GROUP(pwm_c_x8,			5),
    653	GROUP(pwm_d_x3,			4),
    654	GROUP(pwm_d_x6,			4),
    655	GROUP(pwm_e,			1),
    656	GROUP(pwm_f_x,			1),
    657	GROUP(tsin_a_valid,		3),
    658	GROUP(tsin_a_sop,		3),
    659	GROUP(tsin_a_din0,		3),
    660	GROUP(tsin_a_clk,		3),
    661	GROUP(tsin_b_valid_x,		3),
    662	GROUP(tsin_b_sop_x,		3),
    663	GROUP(tsin_b_din0_x,		3),
    664	GROUP(tsin_b_clk_x,		3),
    665	GROUP(pdm_din0_x,		2),
    666	GROUP(pdm_din1_x,		2),
    667	GROUP(pdm_din2_x,		2),
    668	GROUP(pdm_din3_x,		2),
    669	GROUP(pdm_dclk_x,		2),
    670	GROUP(tdm_a_slv_sclk,		2),
    671	GROUP(tdm_a_slv_fs,		2),
    672	GROUP(tdm_a_din0,		2),
    673	GROUP(tdm_a_din1,		2),
    674	GROUP(tdm_a_sclk,		1),
    675	GROUP(tdm_a_fs,			1),
    676	GROUP(tdm_a_dout0,		1),
    677	GROUP(tdm_a_dout1,		1),
    678	GROUP(mclk1_x,			2),
    679
    680	/* bank GPIOC */
    681	GROUP(sdcard_d0_c,		1),
    682	GROUP(sdcard_d1_c,		1),
    683	GROUP(sdcard_d2_c,		1),
    684	GROUP(sdcard_d3_c,		1),
    685	GROUP(sdcard_clk_c,		1),
    686	GROUP(sdcard_cmd_c,		1),
    687	GROUP(spi0_mosi_c,		5),
    688	GROUP(spi0_miso_c,		5),
    689	GROUP(spi0_ss0_c,		5),
    690	GROUP(spi0_clk_c,		5),
    691	GROUP(i2c0_sda_c,		3),
    692	GROUP(i2c0_sck_c,		3),
    693	GROUP(uart_ao_a_rx_c,		2),
    694	GROUP(uart_ao_a_tx_c,		2),
    695	GROUP(iso7816_clk_c,		5),
    696	GROUP(iso7816_data_c,		5),
    697	GROUP(pwm_c_c,			5),
    698	GROUP(jtag_b_tdo,		2),
    699	GROUP(jtag_b_tdi,		2),
    700	GROUP(jtag_b_clk,		2),
    701	GROUP(jtag_b_tms,		2),
    702	GROUP(pdm_din0_c,		4),
    703	GROUP(pdm_din1_c,		4),
    704	GROUP(pdm_din2_c,		4),
    705	GROUP(pdm_din3_c,		4),
    706	GROUP(pdm_dclk_c,		4),
    707
    708	/* bank GPIOH */
    709	GROUP(spi1_mosi,		3),
    710	GROUP(spi1_miso,		3),
    711	GROUP(spi1_ss0,			3),
    712	GROUP(spi1_clk,			3),
    713	GROUP(i2c1_sda_h2,		2),
    714	GROUP(i2c1_sck_h3,		2),
    715	GROUP(i2c1_sda_h6,		4),
    716	GROUP(i2c1_sck_h7,		4),
    717	GROUP(i2c3_sda_h,		2),
    718	GROUP(i2c3_sck_h,		2),
    719	GROUP(uart_c_tx,		2),
    720	GROUP(uart_c_rx,		2),
    721	GROUP(uart_c_cts,		2),
    722	GROUP(uart_c_rts,		2),
    723	GROUP(iso7816_clk_h,		1),
    724	GROUP(iso7816_data_h,		1),
    725	GROUP(pwm_f_h,			4),
    726	GROUP(cec_ao_a_h,		4),
    727	GROUP(cec_ao_b_h,		5),
    728	GROUP(hdmitx_sda,		1),
    729	GROUP(hdmitx_sck,		1),
    730	GROUP(hdmitx_hpd_in,		1),
    731	GROUP(spdif_out_h,		1),
    732	GROUP(spdif_in_h,		1),
    733	GROUP(tdm_b_din3_h,		6),
    734	GROUP(tdm_b_dout3_h,		5),
    735
    736	/* bank GPIOA */
    737	GROUP(i2c3_sda_a,		2),
    738	GROUP(i2c3_sck_a,		2),
    739	GROUP(pdm_din0_a,		1),
    740	GROUP(pdm_din1_a,		1),
    741	GROUP(pdm_din2_a,		1),
    742	GROUP(pdm_din3_a,		1),
    743	GROUP(pdm_dclk_a,		1),
    744	GROUP(spdif_in_a10,		1),
    745	GROUP(spdif_in_a12,		1),
    746	GROUP(spdif_out_a11,		1),
    747	GROUP(spdif_out_a13,		1),
    748	GROUP(tdm_b_slv_sclk,		2),
    749	GROUP(tdm_b_slv_fs,		2),
    750	GROUP(tdm_b_din0,		2),
    751	GROUP(tdm_b_din1,		2),
    752	GROUP(tdm_b_din2,		2),
    753	GROUP(tdm_b_din3_a,		2),
    754	GROUP(tdm_b_sclk,		1),
    755	GROUP(tdm_b_fs,			1),
    756	GROUP(tdm_b_dout0,		1),
    757	GROUP(tdm_b_dout1,		1),
    758	GROUP(tdm_b_dout2,		3),
    759	GROUP(tdm_b_dout3_a,		3),
    760	GROUP(tdm_c_slv_sclk_a,		3),
    761	GROUP(tdm_c_slv_fs_a,		3),
    762	GROUP(tdm_c_din0_a,		3),
    763	GROUP(tdm_c_din1_a,		3),
    764	GROUP(tdm_c_din2_a,		3),
    765	GROUP(tdm_c_din3_a,		3),
    766	GROUP(tdm_c_sclk_a,		2),
    767	GROUP(tdm_c_fs_a,		2),
    768	GROUP(tdm_c_dout0_a,		2),
    769	GROUP(tdm_c_dout1_a,		2),
    770	GROUP(tdm_c_dout2_a,		2),
    771	GROUP(tdm_c_dout3_a,		2),
    772	GROUP(mclk0_a,			1),
    773	GROUP(mclk1_a,			2),
    774	GROUP(pwm_f_a,			3),
    775};
    776
    777/* uart_ao_a */
    778static const unsigned int uart_ao_a_tx_pins[]		= { GPIOAO_0 };
    779static const unsigned int uart_ao_a_rx_pins[]		= { GPIOAO_1 };
    780static const unsigned int uart_ao_a_cts_pins[]		= { GPIOE_0 };
    781static const unsigned int uart_ao_a_rts_pins[]		= { GPIOE_1 };
    782
    783/* uart_ao_b */
    784static const unsigned int uart_ao_b_tx_2_pins[]		= { GPIOAO_2 };
    785static const unsigned int uart_ao_b_rx_3_pins[]		= { GPIOAO_3 };
    786static const unsigned int uart_ao_b_tx_8_pins[]		= { GPIOAO_8 };
    787static const unsigned int uart_ao_b_rx_9_pins[]		= { GPIOAO_9 };
    788static const unsigned int uart_ao_b_cts_pins[]		= { GPIOE_0 };
    789static const unsigned int uart_ao_b_rts_pins[]		= { GPIOE_1 };
    790
    791/* i2c_ao */
    792static const unsigned int i2c_ao_sck_pins[]		= { GPIOAO_2 };
    793static const unsigned int i2c_ao_sda_pins[]		= { GPIOAO_3 };
    794
    795static const unsigned int i2c_ao_sck_e_pins[]		= { GPIOE_0 };
    796static const unsigned int i2c_ao_sda_e_pins[]		= { GPIOE_1 };
    797
    798/* i2c_ao_slave */
    799static const unsigned int i2c_ao_slave_sck_pins[]	= { GPIOAO_2 };
    800static const unsigned int i2c_ao_slave_sda_pins[]	= { GPIOAO_3 };
    801
    802/* ir_in */
    803static const unsigned int remote_ao_input_pins[]	= { GPIOAO_5 };
    804
    805/* ir_out */
    806static const unsigned int remote_ao_out_pins[]		= { GPIOAO_4 };
    807
    808/* pwm_a_e */
    809static const unsigned int pwm_a_e_pins[]		= { GPIOE_2 };
    810
    811/* pwm_ao_a */
    812static const unsigned int pwm_ao_a_pins[]		= { GPIOAO_11 };
    813static const unsigned int pwm_ao_a_hiz_pins[]		= { GPIOAO_11 };
    814
    815/* pwm_ao_b */
    816static const unsigned int pwm_ao_b_pins[]		= { GPIOE_0 };
    817
    818/* pwm_ao_c */
    819static const unsigned int pwm_ao_c_4_pins[]		= { GPIOAO_4 };
    820static const unsigned int pwm_ao_c_hiz_pins[]		= { GPIOAO_4 };
    821static const unsigned int pwm_ao_c_6_pins[]		= { GPIOAO_6 };
    822
    823/* pwm_ao_d */
    824static const unsigned int pwm_ao_d_5_pins[]		= { GPIOAO_5 };
    825static const unsigned int pwm_ao_d_10_pins[]		= { GPIOAO_10 };
    826static const unsigned int pwm_ao_d_e_pins[]		= { GPIOE_1 };
    827
    828/* jtag_a */
    829static const unsigned int jtag_a_tdi_pins[]		= { GPIOAO_8 };
    830static const unsigned int jtag_a_tdo_pins[]		= { GPIOAO_9 };
    831static const unsigned int jtag_a_clk_pins[]		= { GPIOAO_6 };
    832static const unsigned int jtag_a_tms_pins[]		= { GPIOAO_7 };
    833
    834/* cec_ao */
    835static const unsigned int cec_ao_a_pins[]		= { GPIOAO_10 };
    836static const unsigned int cec_ao_b_pins[]		= { GPIOAO_10 };
    837
    838/* tsin_ao_a */
    839static const unsigned int tsin_ao_asop_pins[]		= { GPIOAO_6 };
    840static const unsigned int tsin_ao_adin0_pins[]		= { GPIOAO_7 };
    841static const unsigned int tsin_ao_aclk_pins[]		= { GPIOAO_8 };
    842static const unsigned int tsin_ao_a_valid_pins[]	= { GPIOAO_9 };
    843
    844/* spdif_ao_out */
    845static const unsigned int spdif_ao_out_pins[]		= { GPIOAO_10 };
    846
    847/* tdm_ao_b */
    848static const unsigned int tdm_ao_b_slv_fs_pins[]	= { GPIOAO_7 };
    849static const unsigned int tdm_ao_b_slv_sclk_pins[]	= { GPIOAO_8 };
    850static const unsigned int tdm_ao_b_fs_pins[]		= { GPIOAO_7 };
    851static const unsigned int tdm_ao_b_sclk_pins[]		= { GPIOAO_8 };
    852static const unsigned int tdm_ao_b_din0_pins[]		= { GPIOAO_4 };
    853static const unsigned int tdm_ao_b_din1_pins[]		= { GPIOAO_10 };
    854static const unsigned int tdm_ao_b_din2_pins[]		= { GPIOAO_6 };
    855static const unsigned int tdm_ao_b_dout0_pins[]		= { GPIOAO_4 };
    856static const unsigned int tdm_ao_b_dout1_pins[]		= { GPIOAO_10 };
    857static const unsigned int tdm_ao_b_dout2_pins[]		= { GPIOAO_6 };
    858
    859/* mclk0_ao */
    860static const unsigned int mclk0_ao_pins[]		= { GPIOAO_9 };
    861
    862static struct meson_pmx_group meson_g12a_aobus_groups[] = {
    863	GPIO_GROUP(GPIOAO_0),
    864	GPIO_GROUP(GPIOAO_1),
    865	GPIO_GROUP(GPIOAO_2),
    866	GPIO_GROUP(GPIOAO_3),
    867	GPIO_GROUP(GPIOAO_4),
    868	GPIO_GROUP(GPIOAO_5),
    869	GPIO_GROUP(GPIOAO_6),
    870	GPIO_GROUP(GPIOAO_7),
    871	GPIO_GROUP(GPIOAO_8),
    872	GPIO_GROUP(GPIOAO_9),
    873	GPIO_GROUP(GPIOAO_10),
    874	GPIO_GROUP(GPIOAO_11),
    875	GPIO_GROUP(GPIOE_0),
    876	GPIO_GROUP(GPIOE_1),
    877	GPIO_GROUP(GPIOE_2),
    878
    879	/* bank AO */
    880	GROUP(uart_ao_a_tx,		1),
    881	GROUP(uart_ao_a_rx,		1),
    882	GROUP(uart_ao_a_cts,		1),
    883	GROUP(uart_ao_a_rts,		1),
    884	GROUP(uart_ao_b_tx_2,		2),
    885	GROUP(uart_ao_b_rx_3,		2),
    886	GROUP(uart_ao_b_tx_8,		3),
    887	GROUP(uart_ao_b_rx_9,		3),
    888	GROUP(uart_ao_b_cts,		2),
    889	GROUP(uart_ao_b_rts,		2),
    890	GROUP(i2c_ao_sck,		1),
    891	GROUP(i2c_ao_sda,		1),
    892	GROUP(i2c_ao_sck_e,		4),
    893	GROUP(i2c_ao_sda_e,		4),
    894	GROUP(i2c_ao_slave_sck,		3),
    895	GROUP(i2c_ao_slave_sda,		3),
    896	GROUP(remote_ao_input,		1),
    897	GROUP(remote_ao_out,		1),
    898	GROUP(pwm_a_e,			3),
    899	GROUP(pwm_ao_a,			3),
    900	GROUP(pwm_ao_a_hiz,		2),
    901	GROUP(pwm_ao_b,			3),
    902	GROUP(pwm_ao_c_4,		3),
    903	GROUP(pwm_ao_c_hiz,		4),
    904	GROUP(pwm_ao_c_6,		3),
    905	GROUP(pwm_ao_d_5,		3),
    906	GROUP(pwm_ao_d_10,		3),
    907	GROUP(pwm_ao_d_e,		3),
    908	GROUP(jtag_a_tdi,		1),
    909	GROUP(jtag_a_tdo,		1),
    910	GROUP(jtag_a_clk,		1),
    911	GROUP(jtag_a_tms,		1),
    912	GROUP(cec_ao_a,			1),
    913	GROUP(cec_ao_b,			2),
    914	GROUP(tsin_ao_asop,		4),
    915	GROUP(tsin_ao_adin0,		4),
    916	GROUP(tsin_ao_aclk,		4),
    917	GROUP(tsin_ao_a_valid,		4),
    918	GROUP(spdif_ao_out,		4),
    919	GROUP(tdm_ao_b_dout0,		5),
    920	GROUP(tdm_ao_b_dout1,		5),
    921	GROUP(tdm_ao_b_dout2,		5),
    922	GROUP(tdm_ao_b_fs,		5),
    923	GROUP(tdm_ao_b_sclk,		5),
    924	GROUP(tdm_ao_b_din0,		6),
    925	GROUP(tdm_ao_b_din1,		6),
    926	GROUP(tdm_ao_b_din2,		6),
    927	GROUP(tdm_ao_b_slv_fs,		6),
    928	GROUP(tdm_ao_b_slv_sclk,	6),
    929	GROUP(mclk0_ao,			5),
    930};
    931
    932static const char * const gpio_periphs_groups[] = {
    933	"GPIOZ_0", "GPIOZ_1", "GPIOZ_2", "GPIOZ_3", "GPIOZ_4",
    934	"GPIOZ_5", "GPIOZ_6", "GPIOZ_7", "GPIOZ_8", "GPIOZ_9",
    935	"GPIOZ_10", "GPIOZ_11", "GPIOZ_12", "GPIOZ_13", "GPIOZ_14",
    936	"GPIOZ_15",
    937
    938	"GPIOH_0", "GPIOH_1", "GPIOH_2", "GPIOH_3", "GPIOH_4",
    939	"GPIOH_5", "GPIOH_6", "GPIOH_7", "GPIOH_8",
    940
    941	"BOOT_0", "BOOT_1", "BOOT_2", "BOOT_3", "BOOT_4",
    942	"BOOT_5", "BOOT_6", "BOOT_7", "BOOT_8", "BOOT_9",
    943	"BOOT_10", "BOOT_11", "BOOT_12", "BOOT_13", "BOOT_14",
    944	"BOOT_15",
    945
    946	"GPIOC_0", "GPIOC_1", "GPIOC_2", "GPIOC_3", "GPIOC_4",
    947	"GPIOC_5", "GPIOC_6", "GPIOC_7",
    948
    949	"GPIOA_0", "GPIOA_1", "GPIOA_2", "GPIOA_3", "GPIOA_4",
    950	"GPIOA_5", "GPIOA_6", "GPIOA_7", "GPIOA_8", "GPIOA_9",
    951	"GPIOA_10", "GPIOA_11", "GPIOA_12", "GPIOA_13", "GPIOA_14",
    952	"GPIOA_15",
    953
    954	"GPIOX_0", "GPIOX_1", "GPIOX_2", "GPIOX_3", "GPIOX_4",
    955	"GPIOX_5", "GPIOX_6", "GPIOX_7", "GPIOX_8", "GPIOX_9",
    956	"GPIOX_10", "GPIOX_11", "GPIOX_12", "GPIOX_13", "GPIOX_14",
    957	"GPIOX_15", "GPIOX_16", "GPIOX_17", "GPIOX_18", "GPIOX_19",
    958};
    959
    960static const char * const emmc_groups[] = {
    961	"emmc_nand_d0", "emmc_nand_d1", "emmc_nand_d2",
    962	"emmc_nand_d3", "emmc_nand_d4", "emmc_nand_d5",
    963	"emmc_nand_d6", "emmc_nand_d7",
    964	"emmc_clk", "emmc_cmd", "emmc_nand_ds",
    965};
    966
    967static const char * const nand_groups[] = {
    968	"emmc_nand_d0", "emmc_nand_d1", "emmc_nand_d2",
    969	"emmc_nand_d3", "emmc_nand_d4", "emmc_nand_d5",
    970	"emmc_nand_d6", "emmc_nand_d7",
    971	"nand_ce0", "nand_ale", "nand_cle",
    972	"nand_wen_clk", "nand_ren_wr", "nand_rb0",
    973	"emmc_nand_ds", "nand_ce1",
    974};
    975
    976static const char * const nor_groups[] = {
    977	"nor_d", "nor_q", "nor_c", "nor_cs",
    978	"nor_hold", "nor_wp",
    979};
    980
    981static const char * const sdio_groups[] = {
    982	"sdio_d0", "sdio_d1", "sdio_d2", "sdio_d3",
    983	"sdio_cmd", "sdio_clk", "sdio_dummy",
    984};
    985
    986static const char * const sdcard_groups[] = {
    987	"sdcard_d0_c", "sdcard_d1_c", "sdcard_d2_c", "sdcard_d3_c",
    988	"sdcard_clk_c", "sdcard_cmd_c",
    989	"sdcard_d0_z", "sdcard_d1_z", "sdcard_d2_z", "sdcard_d3_z",
    990	"sdcard_clk_z", "sdcard_cmd_z",
    991};
    992
    993static const char * const spi0_groups[] = {
    994	"spi0_mosi_c", "spi0_miso_c", "spi0_ss0_c", "spi0_clk_c",
    995	"spi0_mosi_x", "spi0_miso_x", "spi0_ss0_x", "spi0_clk_x",
    996};
    997
    998static const char * const spi1_groups[] = {
    999	"spi1_mosi", "spi1_miso", "spi1_ss0", "spi1_clk",
   1000};
   1001
   1002static const char * const i2c0_groups[] = {
   1003	"i2c0_sda_c", "i2c0_sck_c",
   1004	"i2c0_sda_z0", "i2c0_sck_z1",
   1005	"i2c0_sda_z7", "i2c0_sck_z8",
   1006};
   1007
   1008static const char * const i2c1_groups[] = {
   1009	"i2c1_sda_x", "i2c1_sck_x",
   1010	"i2c1_sda_h2", "i2c1_sck_h3",
   1011	"i2c1_sda_h6", "i2c1_sck_h7",
   1012};
   1013
   1014static const char * const i2c2_groups[] = {
   1015	"i2c2_sda_x", "i2c2_sck_x",
   1016	"i2c2_sda_z", "i2c2_sck_z",
   1017};
   1018
   1019static const char * const i2c3_groups[] = {
   1020	"i2c3_sda_h", "i2c3_sck_h",
   1021	"i2c3_sda_a", "i2c3_sck_a",
   1022};
   1023
   1024static const char * const uart_a_groups[] = {
   1025	"uart_a_tx", "uart_a_rx", "uart_a_cts", "uart_a_rts",
   1026};
   1027
   1028static const char * const uart_b_groups[] = {
   1029	"uart_b_tx", "uart_b_rx",
   1030};
   1031
   1032static const char * const uart_c_groups[] = {
   1033	"uart_c_tx", "uart_c_rx", "uart_c_cts", "uart_c_rts",
   1034};
   1035
   1036static const char * const uart_ao_a_c_groups[] = {
   1037	"uart_ao_a_rx_c", "uart_ao_a_tx_c",
   1038};
   1039
   1040static const char * const iso7816_groups[] = {
   1041	"iso7816_clk_c", "iso7816_data_c",
   1042	"iso7816_clk_x", "iso7816_data_x",
   1043	"iso7816_clk_h", "iso7816_data_h",
   1044	"iso7816_clk_z", "iso7816_data_z",
   1045};
   1046
   1047static const char * const eth_groups[] = {
   1048	"eth_rxd2_rgmii", "eth_rxd3_rgmii", "eth_rgmii_tx_clk",
   1049	"eth_txd2_rgmii", "eth_txd3_rgmii", "eth_rgmii_rx_clk",
   1050	"eth_txd0", "eth_txd1", "eth_txen", "eth_mdc",
   1051	"eth_rxd0", "eth_rxd1", "eth_rx_dv", "eth_mdio",
   1052	"eth_link_led", "eth_act_led",
   1053};
   1054
   1055static const char * const pwm_a_groups[] = {
   1056	"pwm_a",
   1057};
   1058
   1059static const char * const pwm_b_groups[] = {
   1060	"pwm_b_x7", "pwm_b_x19",
   1061};
   1062
   1063static const char * const pwm_c_groups[] = {
   1064	"pwm_c_c", "pwm_c_x5", "pwm_c_x8",
   1065};
   1066
   1067static const char * const pwm_d_groups[] = {
   1068	"pwm_d_x3", "pwm_d_x6",
   1069};
   1070
   1071static const char * const pwm_e_groups[] = {
   1072	"pwm_e",
   1073};
   1074
   1075static const char * const pwm_f_groups[] = {
   1076	"pwm_f_z", "pwm_f_a", "pwm_f_x", "pwm_f_h",
   1077};
   1078
   1079static const char * const cec_ao_a_h_groups[] = {
   1080	"cec_ao_a_h",
   1081};
   1082
   1083static const char * const cec_ao_b_h_groups[] = {
   1084	"cec_ao_b_h",
   1085};
   1086
   1087static const char * const jtag_b_groups[] = {
   1088	"jtag_b_tdi", "jtag_b_tdo", "jtag_b_clk", "jtag_b_tms",
   1089};
   1090
   1091static const char * const bt565_a_groups[] = {
   1092	"bt565_a_vs", "bt565_a_hs", "bt565_a_clk",
   1093	"bt565_a_din0", "bt565_a_din1", "bt565_a_din2",
   1094	"bt565_a_din3", "bt565_a_din4", "bt565_a_din5",
   1095	"bt565_a_din6", "bt565_a_din7",
   1096};
   1097
   1098static const char * const tsin_a_groups[] = {
   1099	"tsin_a_valid", "tsin_a_sop", "tsin_a_din0",
   1100	"tsin_a_clk",
   1101};
   1102
   1103static const char * const tsin_b_groups[] = {
   1104	"tsin_b_valid_x", "tsin_b_sop_x", "tsin_b_din0_x", "tsin_b_clk_x",
   1105	"tsin_b_valid_z", "tsin_b_sop_z", "tsin_b_din0_z", "tsin_b_clk_z",
   1106	"tsin_b_fail", "tsin_b_din1", "tsin_b_din2", "tsin_b_din3",
   1107	"tsin_b_din4", "tsin_b_din5", "tsin_b_din6", "tsin_b_din7",
   1108};
   1109
   1110static const char * const hdmitx_groups[] = {
   1111	"hdmitx_sda", "hdmitx_sck", "hdmitx_hpd_in",
   1112};
   1113
   1114static const char * const pdm_groups[] = {
   1115	"pdm_din0_c", "pdm_din1_c", "pdm_din2_c", "pdm_din3_c",
   1116	"pdm_dclk_c",
   1117	"pdm_din0_x", "pdm_din1_x", "pdm_din2_x", "pdm_din3_x",
   1118	"pdm_dclk_x",
   1119	"pdm_din0_z", "pdm_din1_z", "pdm_din2_z", "pdm_din3_z",
   1120	"pdm_dclk_z",
   1121	"pdm_din0_a", "pdm_din1_a", "pdm_din2_a", "pdm_din3_a",
   1122	"pdm_dclk_a",
   1123};
   1124
   1125static const char * const spdif_in_groups[] = {
   1126	"spdif_in_h", "spdif_in_a10", "spdif_in_a12",
   1127};
   1128
   1129static const char * const spdif_out_groups[] = {
   1130	"spdif_out_h", "spdif_out_a11", "spdif_out_a13",
   1131};
   1132
   1133static const char * const mclk0_groups[] = {
   1134	"mclk0_a",
   1135};
   1136
   1137static const char * const mclk1_groups[] = {
   1138	"mclk1_x", "mclk1_z", "mclk1_a",
   1139};
   1140
   1141static const char * const tdm_a_groups[] = {
   1142	"tdm_a_slv_sclk", "tdm_a_slv_fs", "tdm_a_sclk", "tdm_a_fs",
   1143	"tdm_a_din0", "tdm_a_din1", "tdm_a_dout0", "tdm_a_dout1",
   1144};
   1145
   1146static const char * const tdm_b_groups[] = {
   1147	"tdm_b_slv_sclk", "tdm_b_slv_fs", "tdm_b_sclk", "tdm_b_fs",
   1148	"tdm_b_din0", "tdm_b_din1", "tdm_b_din2",
   1149	"tdm_b_din3_a", "tdm_b_din3_h",
   1150	"tdm_b_dout0", "tdm_b_dout1", "tdm_b_dout2",
   1151	"tdm_b_dout3_a", "tdm_b_dout3_h",
   1152};
   1153
   1154static const char * const tdm_c_groups[] = {
   1155	"tdm_c_slv_sclk_a", "tdm_c_slv_fs_a",
   1156	"tdm_c_slv_sclk_z", "tdm_c_slv_fs_z",
   1157	"tdm_c_sclk_a", "tdm_c_fs_a",
   1158	"tdm_c_sclk_z", "tdm_c_fs_z",
   1159	"tdm_c_din0_a", "tdm_c_din1_a",
   1160	"tdm_c_din2_a", "tdm_c_din3_a",
   1161	"tdm_c_din0_z", "tdm_c_din1_z",
   1162	"tdm_c_din2_z", "tdm_c_din3_z",
   1163	"tdm_c_dout0_a", "tdm_c_dout1_a",
   1164	"tdm_c_dout2_a", "tdm_c_dout3_a",
   1165	"tdm_c_dout0_z", "tdm_c_dout1_z",
   1166	"tdm_c_dout2_z", "tdm_c_dout3_z",
   1167};
   1168
   1169static const char * const gpio_aobus_groups[] = {
   1170	"GPIOAO_0", "GPIOAO_1", "GPIOAO_2", "GPIOAO_3", "GPIOAO_4",
   1171	"GPIOAO_5", "GPIOAO_6", "GPIOAO_7", "GPIOAO_8", "GPIOAO_9",
   1172	"GPIOAO_10", "GPIOAO_11", "GPIOE_0", "GPIOE_1", "GPIOE_2",
   1173};
   1174
   1175static const char * const uart_ao_a_groups[] = {
   1176	"uart_ao_a_tx", "uart_ao_a_rx",
   1177	"uart_ao_a_cts", "uart_ao_a_rts",
   1178};
   1179
   1180static const char * const uart_ao_b_groups[] = {
   1181	"uart_ao_b_tx_2", "uart_ao_b_rx_3",
   1182	"uart_ao_b_tx_8", "uart_ao_b_rx_9",
   1183	"uart_ao_b_cts", "uart_ao_b_rts",
   1184};
   1185
   1186static const char * const i2c_ao_groups[] = {
   1187	"i2c_ao_sck", "i2c_ao_sda",
   1188	"i2c_ao_sck_e", "i2c_ao_sda_e",
   1189};
   1190
   1191static const char * const i2c_ao_slave_groups[] = {
   1192	"i2c_ao_slave_sck", "i2c_ao_slave_sda",
   1193};
   1194
   1195static const char * const remote_ao_input_groups[] = {
   1196	"remote_ao_input",
   1197};
   1198
   1199static const char * const remote_ao_out_groups[] = {
   1200	"remote_ao_out",
   1201};
   1202
   1203static const char * const pwm_a_e_groups[] = {
   1204	"pwm_a_e",
   1205};
   1206
   1207static const char * const pwm_ao_a_groups[] = {
   1208	"pwm_ao_a", "pwm_ao_a_hiz",
   1209};
   1210
   1211static const char * const pwm_ao_b_groups[] = {
   1212	"pwm_ao_b",
   1213};
   1214
   1215static const char * const pwm_ao_c_groups[] = {
   1216	"pwm_ao_c_4", "pwm_ao_c_hiz",
   1217	"pwm_ao_c_6",
   1218};
   1219
   1220static const char * const pwm_ao_d_groups[] = {
   1221	"pwm_ao_d_5", "pwm_ao_d_10", "pwm_ao_d_e",
   1222};
   1223
   1224static const char * const jtag_a_groups[] = {
   1225	"jtag_a_tdi", "jtag_a_tdo", "jtag_a_clk", "jtag_a_tms",
   1226};
   1227
   1228static const char * const cec_ao_a_groups[] = {
   1229	"cec_ao_a",
   1230};
   1231
   1232static const char * const cec_ao_b_groups[] = {
   1233	"cec_ao_b",
   1234};
   1235
   1236static const char * const tsin_ao_a_groups[] = {
   1237	"tsin_ao_asop", "tsin_ao_adin0", "tsin_ao_aclk", "tsin_ao_a_valid",
   1238};
   1239
   1240static const char * const spdif_ao_out_groups[] = {
   1241	"spdif_ao_out",
   1242};
   1243
   1244static const char * const tdm_ao_b_groups[] = {
   1245	"tdm_ao_b_dout0", "tdm_ao_b_dout1", "tdm_ao_b_dout2",
   1246	"tdm_ao_b_fs", "tdm_ao_b_sclk",
   1247	"tdm_ao_b_din0", "tdm_ao_b_din1", "tdm_ao_b_din2",
   1248	"tdm_ao_b_slv_fs", "tdm_ao_b_slv_sclk",
   1249};
   1250
   1251static const char * const mclk0_ao_groups[] = {
   1252	"mclk0_ao",
   1253};
   1254
   1255static struct meson_pmx_func meson_g12a_periphs_functions[] = {
   1256	FUNCTION(gpio_periphs),
   1257	FUNCTION(emmc),
   1258	FUNCTION(nor),
   1259	FUNCTION(spi0),
   1260	FUNCTION(spi1),
   1261	FUNCTION(sdio),
   1262	FUNCTION(nand),
   1263	FUNCTION(sdcard),
   1264	FUNCTION(i2c0),
   1265	FUNCTION(i2c1),
   1266	FUNCTION(i2c2),
   1267	FUNCTION(i2c3),
   1268	FUNCTION(uart_a),
   1269	FUNCTION(uart_b),
   1270	FUNCTION(uart_c),
   1271	FUNCTION(uart_ao_a_c),
   1272	FUNCTION(iso7816),
   1273	FUNCTION(eth),
   1274	FUNCTION(pwm_a),
   1275	FUNCTION(pwm_b),
   1276	FUNCTION(pwm_c),
   1277	FUNCTION(pwm_d),
   1278	FUNCTION(pwm_e),
   1279	FUNCTION(pwm_f),
   1280	FUNCTION(cec_ao_a_h),
   1281	FUNCTION(cec_ao_b_h),
   1282	FUNCTION(jtag_b),
   1283	FUNCTION(bt565_a),
   1284	FUNCTION(tsin_a),
   1285	FUNCTION(tsin_b),
   1286	FUNCTION(hdmitx),
   1287	FUNCTION(pdm),
   1288	FUNCTION(spdif_out),
   1289	FUNCTION(spdif_in),
   1290	FUNCTION(mclk0),
   1291	FUNCTION(mclk1),
   1292	FUNCTION(tdm_a),
   1293	FUNCTION(tdm_b),
   1294	FUNCTION(tdm_c),
   1295};
   1296
   1297static struct meson_pmx_func meson_g12a_aobus_functions[] = {
   1298	FUNCTION(gpio_aobus),
   1299	FUNCTION(uart_ao_a),
   1300	FUNCTION(uart_ao_b),
   1301	FUNCTION(i2c_ao),
   1302	FUNCTION(i2c_ao_slave),
   1303	FUNCTION(remote_ao_input),
   1304	FUNCTION(remote_ao_out),
   1305	FUNCTION(pwm_a_e),
   1306	FUNCTION(pwm_ao_a),
   1307	FUNCTION(pwm_ao_b),
   1308	FUNCTION(pwm_ao_c),
   1309	FUNCTION(pwm_ao_d),
   1310	FUNCTION(jtag_a),
   1311	FUNCTION(cec_ao_a),
   1312	FUNCTION(cec_ao_b),
   1313	FUNCTION(tsin_ao_a),
   1314	FUNCTION(spdif_ao_out),
   1315	FUNCTION(tdm_ao_b),
   1316	FUNCTION(mclk0_ao),
   1317};
   1318
   1319static struct meson_bank meson_g12a_periphs_banks[] = {
   1320	/* name  first  last  irq  pullen  pull  dir  out  in  ds */
   1321	BANK_DS("Z",    GPIOZ_0,    GPIOZ_15, 12, 27,
   1322		4,  0,  4,  0,  12,  0,  13, 0,  14, 0, 5, 0),
   1323	BANK_DS("H",    GPIOH_0,    GPIOH_8, 28, 36,
   1324		3,  0,  3,  0,  9,  0,  10,  0,  11,  0, 4, 0),
   1325	BANK_DS("BOOT", BOOT_0,     BOOT_15,  37, 52,
   1326		0,  0,  0,  0,  0, 0,  1, 0,  2, 0, 0, 0),
   1327	BANK_DS("C",    GPIOC_0,    GPIOC_7,  53, 60,
   1328		1,  0,  1,  0,  3, 0,  4, 0,  5, 0, 1, 0),
   1329	BANK_DS("A",    GPIOA_0,    GPIOA_15,  61, 76,
   1330		5,  0,  5,  0,  16,  0,  17,  0,  18,  0, 6, 0),
   1331	BANK_DS("X",    GPIOX_0,    GPIOX_19,   77, 96,
   1332		2,  0,  2,  0,  6,  0,  7,  0,  8,  0, 2, 0),
   1333};
   1334
   1335static struct meson_bank meson_g12a_aobus_banks[] = {
   1336	/* name  first  last  irq  pullen  pull  dir  out  in  ds */
   1337	BANK_DS("AO", GPIOAO_0, GPIOAO_11, 0, 11, 3, 0, 2, 0, 0, 0, 4, 0, 1, 0,
   1338		0, 0),
   1339	/* GPIOE actually located in the AO bank */
   1340	BANK_DS("E", GPIOE_0, GPIOE_2, 97, 99, 3, 16, 2, 16, 0, 16, 4, 16, 1,
   1341		16, 1, 0),
   1342};
   1343
   1344static struct meson_pmx_bank meson_g12a_periphs_pmx_banks[] = {
   1345	/*	 name	 first		lask	   reg	offset  */
   1346	BANK_PMX("Z",    GPIOZ_0, GPIOZ_15, 0x6, 0),
   1347	BANK_PMX("H",    GPIOH_0, GPIOH_8,  0xb, 0),
   1348	BANK_PMX("BOOT", BOOT_0,  BOOT_15,  0x0, 0),
   1349	BANK_PMX("C",    GPIOC_0, GPIOC_7,  0x9, 0),
   1350	BANK_PMX("A",    GPIOA_0, GPIOA_15, 0xd, 0),
   1351	BANK_PMX("X",    GPIOX_0, GPIOX_19, 0x3, 0),
   1352};
   1353
   1354static struct meson_axg_pmx_data meson_g12a_periphs_pmx_banks_data = {
   1355	.pmx_banks	= meson_g12a_periphs_pmx_banks,
   1356	.num_pmx_banks	= ARRAY_SIZE(meson_g12a_periphs_pmx_banks),
   1357};
   1358
   1359static struct meson_pmx_bank meson_g12a_aobus_pmx_banks[] = {
   1360	BANK_PMX("AO",  GPIOAO_0, GPIOAO_11, 0x0, 0),
   1361	BANK_PMX("E",   GPIOE_0,  GPIOE_2,   0x1, 16),
   1362};
   1363
   1364static struct meson_axg_pmx_data meson_g12a_aobus_pmx_banks_data = {
   1365	.pmx_banks	= meson_g12a_aobus_pmx_banks,
   1366	.num_pmx_banks	= ARRAY_SIZE(meson_g12a_aobus_pmx_banks),
   1367};
   1368
   1369static int meson_g12a_aobus_parse_dt_extra(struct meson_pinctrl *pc)
   1370{
   1371	pc->reg_pull = pc->reg_gpio;
   1372	pc->reg_pullen = pc->reg_gpio;
   1373
   1374	return 0;
   1375}
   1376
   1377static struct meson_pinctrl_data meson_g12a_periphs_pinctrl_data = {
   1378	.name		= "periphs-banks",
   1379	.pins		= meson_g12a_periphs_pins,
   1380	.groups		= meson_g12a_periphs_groups,
   1381	.funcs		= meson_g12a_periphs_functions,
   1382	.banks		= meson_g12a_periphs_banks,
   1383	.num_pins	= ARRAY_SIZE(meson_g12a_periphs_pins),
   1384	.num_groups	= ARRAY_SIZE(meson_g12a_periphs_groups),
   1385	.num_funcs	= ARRAY_SIZE(meson_g12a_periphs_functions),
   1386	.num_banks	= ARRAY_SIZE(meson_g12a_periphs_banks),
   1387	.pmx_ops	= &meson_axg_pmx_ops,
   1388	.pmx_data	= &meson_g12a_periphs_pmx_banks_data,
   1389};
   1390
   1391static struct meson_pinctrl_data meson_g12a_aobus_pinctrl_data = {
   1392	.name		= "aobus-banks",
   1393	.pins		= meson_g12a_aobus_pins,
   1394	.groups		= meson_g12a_aobus_groups,
   1395	.funcs		= meson_g12a_aobus_functions,
   1396	.banks		= meson_g12a_aobus_banks,
   1397	.num_pins	= ARRAY_SIZE(meson_g12a_aobus_pins),
   1398	.num_groups	= ARRAY_SIZE(meson_g12a_aobus_groups),
   1399	.num_funcs	= ARRAY_SIZE(meson_g12a_aobus_functions),
   1400	.num_banks	= ARRAY_SIZE(meson_g12a_aobus_banks),
   1401	.pmx_ops	= &meson_axg_pmx_ops,
   1402	.pmx_data	= &meson_g12a_aobus_pmx_banks_data,
   1403	.parse_dt	= meson_g12a_aobus_parse_dt_extra,
   1404};
   1405
   1406static const struct of_device_id meson_g12a_pinctrl_dt_match[] = {
   1407	{
   1408		.compatible = "amlogic,meson-g12a-periphs-pinctrl",
   1409		.data = &meson_g12a_periphs_pinctrl_data,
   1410	},
   1411	{
   1412		.compatible = "amlogic,meson-g12a-aobus-pinctrl",
   1413		.data = &meson_g12a_aobus_pinctrl_data,
   1414	},
   1415	{ },
   1416};
   1417MODULE_DEVICE_TABLE(of, meson_g12a_pinctrl_dt_match);
   1418
   1419static struct platform_driver meson_g12a_pinctrl_driver = {
   1420	.probe  = meson_pinctrl_probe,
   1421	.driver = {
   1422		.name	= "meson-g12a-pinctrl",
   1423		.of_match_table = meson_g12a_pinctrl_dt_match,
   1424	},
   1425};
   1426
   1427module_platform_driver(meson_g12a_pinctrl_driver);
   1428MODULE_LICENSE("Dual BSD/GPL");