Link: https://lore.kernel.org/r/20260217200002.683975158@linuxfoundation.org Tested-by: Florian Fainelli <florian.fainelli@broadcom.com> Tested-by: Takeshi Ogasawara <takeshi.ogasawara@futuring-girl.com> Tested-by: Peter Schneider <pschneider1968@googlemail.com> Tested-by: Jon Hunter <jonathanh@nvidia.com> Tested-by: Salvatore Bonaccorso <carnil@debian.org> Tested-by: Brett A C Sheffield <bacs@librecast.net> Tested-by: Mark Brown <broonie@kernel.org> Tested-by: Luna Jernberg <droidbittin@gmail.com> Tested-by: Ronald Warsow <rwarsow@gmx.de> Tested-by: Justin M. Forbes <jforbes@fedoraproject.org> Tested-by: Ron Economos <re@w6rz.net> Tested-by: Miguel Ojeda <ojeda@kernel.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
41 lines
1.1 KiB
C
41 lines
1.1 KiB
C
/* SPDX-License-Identifier: GPL-2.0+ */
|
|
/* SC16IS7xx SPI/I2C tty serial driver */
|
|
|
|
#ifndef _SC16IS7XX_H_
|
|
#define _SC16IS7XX_H_
|
|
|
|
#include <linux/mod_devicetable.h>
|
|
#include <linux/regmap.h>
|
|
#include <linux/types.h>
|
|
|
|
#define SC16IS7XX_MAX_PORTS 2 /* Maximum number of UART ports per IC. */
|
|
|
|
struct device;
|
|
|
|
struct sc16is7xx_devtype {
|
|
char name[10];
|
|
int nr_gpio;
|
|
int nr_uart;
|
|
};
|
|
|
|
extern const struct regmap_config sc16is7xx_regcfg;
|
|
|
|
extern const struct of_device_id sc16is7xx_dt_ids[];
|
|
|
|
extern const struct sc16is7xx_devtype sc16is74x_devtype;
|
|
extern const struct sc16is7xx_devtype sc16is750_devtype;
|
|
extern const struct sc16is7xx_devtype sc16is752_devtype;
|
|
extern const struct sc16is7xx_devtype sc16is760_devtype;
|
|
extern const struct sc16is7xx_devtype sc16is762_devtype;
|
|
|
|
const char *sc16is7xx_regmap_name(u8 port_id);
|
|
|
|
unsigned int sc16is7xx_regmap_port_mask(unsigned int port_id);
|
|
|
|
int sc16is7xx_probe(struct device *dev, const struct sc16is7xx_devtype *devtype,
|
|
struct regmap *regmaps[], int irq);
|
|
|
|
void sc16is7xx_remove(struct device *dev);
|
|
|
|
#endif /* _SC16IS7XX_H_ */
|