mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-19 02:07:01 +07:00
5c0904488a
pinctrl variants that include pinctrl-paris.h (and not pinctrl-mtk-common.h) also need to use pm_ops to setup wake mask properly, so copy over the pm_ops from common to paris variant. It is not easy to merge the 2 copies (or move mtk_eint_suspend/resume to mtk-eint.c), as we need to dereference pctrl->eint, and struct mtk_pinctrl *pctl has a different structure definition for v1 and v2 (which is what paris variant uses). Signed-off-by: Nicolas Boichat <drinkcat@chromium.org> Acked-by: Sean Wang <sean.wang@kernel.org> Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
66 lines
1.5 KiB
C
66 lines
1.5 KiB
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/*
|
|
* Copyright (C) 2018 MediaTek Inc.
|
|
*
|
|
* Author: Sean Wang <sean.wang@mediatek.com>
|
|
* Zhiyong Tao <zhiyong.tao@mediatek.com>
|
|
* Hongzhou.Yang <hongzhou.yang@mediatek.com>
|
|
*/
|
|
#ifndef __PINCTRL_PARIS_H
|
|
#define __PINCTRL_PARIS_H
|
|
|
|
#include <linux/io.h>
|
|
#include <linux/init.h>
|
|
#include <linux/of.h>
|
|
#include <linux/of_platform.h>
|
|
#include <linux/platform_device.h>
|
|
#include <linux/pinctrl/pinctrl.h>
|
|
#include <linux/pinctrl/pinmux.h>
|
|
#include <linux/pinctrl/pinconf.h>
|
|
#include <linux/pinctrl/pinconf-generic.h>
|
|
|
|
#include "../core.h"
|
|
#include "../pinconf.h"
|
|
#include "../pinctrl-utils.h"
|
|
#include "../pinmux.h"
|
|
#include "mtk-eint.h"
|
|
#include "pinctrl-mtk-common-v2.h"
|
|
|
|
#define MTK_RANGE(_a) { .range = (_a), .nranges = ARRAY_SIZE(_a), }
|
|
|
|
#define MTK_EINT_FUNCTION(_eintmux, _eintnum) \
|
|
{ \
|
|
.eint_m = _eintmux, \
|
|
.eint_n = _eintnum, \
|
|
}
|
|
|
|
#define MTK_FUNCTION(_val, _name) \
|
|
{ \
|
|
.muxval = _val, \
|
|
.name = _name, \
|
|
}
|
|
|
|
#define MTK_PIN(_number, _name, _eint, _drv_n, ...) { \
|
|
.number = _number, \
|
|
.name = _name, \
|
|
.eint = _eint, \
|
|
.drv_n = _drv_n, \
|
|
.funcs = (struct mtk_func_desc[]){ \
|
|
__VA_ARGS__, { } }, \
|
|
}
|
|
|
|
#define PINCTRL_PIN_GROUP(name, id) \
|
|
{ \
|
|
name, \
|
|
id##_pins, \
|
|
ARRAY_SIZE(id##_pins), \
|
|
id##_funcs, \
|
|
}
|
|
|
|
int mtk_paris_pinctrl_probe(struct platform_device *pdev,
|
|
const struct mtk_pin_soc *soc);
|
|
|
|
extern const struct dev_pm_ops mtk_paris_pinctrl_pm_ops;
|
|
|
|
#endif /* __PINCTRL_PARIS_H */
|