pinctrl: mediatek: add mt6779 eint support
authorHanks Chen <hanks.chen@mediatek.com>
Thu, 23 Jul 2020 11:19:55 +0000 (19:19 +0800)
committerLinus Walleij <linus.walleij@linaro.org>
Mon, 3 Aug 2020 23:29:10 +0000 (01:29 +0200)
add driver setting to support mt6779 eint

Signed-off-by: Mars Cheng <mars.cheng@mediatek.com>
Signed-off-by: Hanks Chen <hanks.chen@mediatek.com>
Acked-by: Sean Wang <sean.wang@kernel.org>
Link: https://lore.kernel.org/r/1595503197-15246-6-git-send-email-hanks.chen@mediatek.com
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
drivers/pinctrl/mediatek/pinctrl-mt6779.c

index ede185b..bb0851c 100644 (file)
@@ -732,11 +732,19 @@ static const char * const mt6779_pinctrl_register_base_names[] = {
        "iocfg_rt", "iocfg_lt", "iocfg_tl",
 };
 
+static const struct mtk_eint_hw mt6779_eint_hw = {
+       .port_mask = 7,
+       .ports     = 6,
+       .ap_num    = 195,
+       .db_cnt    = 13,
+};
+
 static const struct mtk_pin_soc mt6779_data = {
        .reg_cal = mt6779_reg_cals,
        .pins = mtk_pins_mt6779,
        .npins = ARRAY_SIZE(mtk_pins_mt6779),
        .ngrps = ARRAY_SIZE(mtk_pins_mt6779),
+       .eint_hw = &mt6779_eint_hw,
        .gpio_m = 0,
        .ies_present = true,
        .base_names = mt6779_pinctrl_register_base_names,