mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-15 16:24:13 +08:00
0e3db16300
The pin control header provides struct pingroup and PINCTRL_PINGROUP() macro. Utilize them instead of open coded variants in the driver. Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com> Link: https://lore.kernel.org/r/20220620165053.74170-1-andriy.shevchenko@linux.intel.com Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
46 lines
982 B
C
46 lines
982 B
C
// SPDX-License-Identifier: GPL-2.0+
|
|
/*
|
|
* Copyright (C) 2021 Álvaro Fernández Rojas <noltari@gmail.com>
|
|
* Copyright (C) 2016 Jonas Gorski <jonas.gorski@gmail.com>
|
|
*/
|
|
|
|
#ifndef __PINCTRL_BCM63XX_H__
|
|
#define __PINCTRL_BCM63XX_H__
|
|
|
|
#include <linux/pinctrl/pinctrl.h>
|
|
|
|
#define BCM63XX_BANK_GPIOS 32
|
|
|
|
struct bcm63xx_pinctrl_soc {
|
|
const struct pinctrl_ops *pctl_ops;
|
|
const struct pinmux_ops *pmx_ops;
|
|
|
|
const struct pinctrl_pin_desc *pins;
|
|
unsigned npins;
|
|
|
|
unsigned int ngpios;
|
|
};
|
|
|
|
#define BCM_PIN_GROUP(n) PINCTRL_PINGROUP(#n, n##_pins, ARRAY_SIZE(n##_pins))
|
|
|
|
struct bcm63xx_pinctrl {
|
|
struct device *dev;
|
|
struct regmap *regs;
|
|
|
|
struct pinctrl_desc pctl_desc;
|
|
struct pinctrl_dev *pctl_dev;
|
|
|
|
void *driver_data;
|
|
};
|
|
|
|
static inline unsigned int bcm63xx_bank_pin(unsigned int pin)
|
|
{
|
|
return pin % BCM63XX_BANK_GPIOS;
|
|
}
|
|
|
|
int bcm63xx_pinctrl_probe(struct platform_device *pdev,
|
|
const struct bcm63xx_pinctrl_soc *soc,
|
|
void *driver_data);
|
|
|
|
#endif /* __PINCTRL_BCM63XX_H__ */
|