mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-19 00:16:57 +07:00
d2912cb15b
Based on 2 normalized pattern(s): this program is free software you can redistribute it and or modify it under the terms of the gnu general public license version 2 as published by the free software foundation this program is free software you can redistribute it and or modify it under the terms of the gnu general public license version 2 as published by the free software foundation # extracted by the scancode license scanner the SPDX license identifier GPL-2.0-only has been chosen to replace the boilerplate/reference in 4122 file(s). Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Reviewed-by: Enrico Weigelt <info@metux.net> Reviewed-by: Kate Stewart <kstewart@linuxfoundation.org> Reviewed-by: Allison Randal <allison@lohutok.net> Cc: linux-spdx@vger.kernel.org Link: https://lkml.kernel.org/r/20190604081206.933168790@linutronix.de Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
41 lines
1.2 KiB
C
41 lines
1.2 KiB
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
/*
|
|
* i2c-mux-gpio interface to platform code
|
|
*
|
|
* Peter Korsgaard <peter.korsgaard@barco.com>
|
|
*/
|
|
|
|
#ifndef _LINUX_I2C_MUX_GPIO_H
|
|
#define _LINUX_I2C_MUX_GPIO_H
|
|
|
|
/* MUX has no specific idle mode */
|
|
#define I2C_MUX_GPIO_NO_IDLE ((unsigned)-1)
|
|
|
|
/**
|
|
* struct i2c_mux_gpio_platform_data - Platform-dependent data for i2c-mux-gpio
|
|
* @parent: Parent I2C bus adapter number
|
|
* @base_nr: Base I2C bus number to number adapters from or zero for dynamic
|
|
* @values: Array of bitmasks of GPIO settings (low/high) for each
|
|
* position
|
|
* @n_values: Number of multiplexer positions (busses to instantiate)
|
|
* @classes: Optional I2C auto-detection classes
|
|
* @gpio_chip: Optional GPIO chip name; if set, GPIO pin numbers are given
|
|
* relative to the base GPIO number of that chip
|
|
* @gpios: Array of GPIO numbers used to control MUX
|
|
* @n_gpios: Number of GPIOs used to control MUX
|
|
* @idle: Bitmask to write to MUX when idle or GPIO_I2CMUX_NO_IDLE if not used
|
|
*/
|
|
struct i2c_mux_gpio_platform_data {
|
|
int parent;
|
|
int base_nr;
|
|
const unsigned *values;
|
|
int n_values;
|
|
const unsigned *classes;
|
|
char *gpio_chip;
|
|
const unsigned *gpios;
|
|
int n_gpios;
|
|
unsigned idle;
|
|
};
|
|
|
|
#endif /* _LINUX_I2C_MUX_GPIO_H */
|