Thomas Gleixner | 1621633 | 2019-05-19 15:51:31 +0200 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0-or-later */ |
Michael Lawnick | 0826374 | 2010-08-11 18:21:02 +0200 | [diff] [blame] | 2 | /* |
| 3 | * |
| 4 | * i2c-mux.h - functions for the i2c-bus mux support |
| 5 | * |
| 6 | * Copyright (c) 2008-2009 Rodolfo Giometti <giometti@linux.it> |
| 7 | * Copyright (c) 2008-2009 Eurotech S.p.A. <info@eurotech.it> |
| 8 | * Michael Lawnick <michael.lawnick.ext@nsn.com> |
Michael Lawnick | 0826374 | 2010-08-11 18:21:02 +0200 | [diff] [blame] | 9 | */ |
| 10 | |
| 11 | #ifndef _LINUX_I2C_MUX_H |
| 12 | #define _LINUX_I2C_MUX_H |
| 13 | |
| 14 | #ifdef __KERNEL__ |
| 15 | |
Peter Rosin | 6ef91fc | 2016-05-04 22:15:29 +0200 | [diff] [blame] | 16 | #include <linux/bitops.h> |
| 17 | |
Peter Rosin | a7ab723 | 2016-04-20 08:38:50 +0200 | [diff] [blame] | 18 | struct i2c_mux_core { |
| 19 | struct i2c_adapter *parent; |
| 20 | struct device *dev; |
Peter Rosin | b2d57b5 | 2016-07-09 21:53:42 +0200 | [diff] [blame] | 21 | unsigned int mux_locked:1; |
| 22 | unsigned int arbitrator:1; |
| 23 | unsigned int gate:1; |
Peter Rosin | a7ab723 | 2016-04-20 08:38:50 +0200 | [diff] [blame] | 24 | |
| 25 | void *priv; |
| 26 | |
| 27 | int (*select)(struct i2c_mux_core *, u32 chan_id); |
| 28 | int (*deselect)(struct i2c_mux_core *, u32 chan_id); |
| 29 | |
| 30 | int num_adapters; |
| 31 | int max_adapters; |
Gustavo A. R. Silva | 8695e0b | 2020-05-07 13:53:29 -0500 | [diff] [blame] | 32 | struct i2c_adapter *adapter[]; |
Peter Rosin | a7ab723 | 2016-04-20 08:38:50 +0200 | [diff] [blame] | 33 | }; |
| 34 | |
| 35 | struct i2c_mux_core *i2c_mux_alloc(struct i2c_adapter *parent, |
| 36 | struct device *dev, int max_adapters, |
| 37 | int sizeof_priv, u32 flags, |
| 38 | int (*select)(struct i2c_mux_core *, u32), |
| 39 | int (*deselect)(struct i2c_mux_core *, u32)); |
| 40 | |
Peter Rosin | 6ef91fc | 2016-05-04 22:15:29 +0200 | [diff] [blame] | 41 | /* flags for i2c_mux_alloc */ |
Peter Rosin | b2d57b5 | 2016-07-09 21:53:42 +0200 | [diff] [blame] | 42 | #define I2C_MUX_LOCKED BIT(0) |
| 43 | #define I2C_MUX_ARBITRATOR BIT(1) |
| 44 | #define I2C_MUX_GATE BIT(2) |
Peter Rosin | 6ef91fc | 2016-05-04 22:15:29 +0200 | [diff] [blame] | 45 | |
Peter Rosin | a7ab723 | 2016-04-20 08:38:50 +0200 | [diff] [blame] | 46 | static inline void *i2c_mux_priv(struct i2c_mux_core *muxc) |
| 47 | { |
| 48 | return muxc->priv; |
| 49 | } |
| 50 | |
Peter Rosin | 6ef91fc | 2016-05-04 22:15:29 +0200 | [diff] [blame] | 51 | struct i2c_adapter *i2c_root_adapter(struct device *dev); |
| 52 | |
Michael Lawnick | 0826374 | 2010-08-11 18:21:02 +0200 | [diff] [blame] | 53 | /* |
Peter Rosin | a7ab723 | 2016-04-20 08:38:50 +0200 | [diff] [blame] | 54 | * Called to create an i2c bus on a multiplexed bus segment. |
| 55 | * The chan_id parameter is passed to the select and deselect |
| 56 | * callback functions to perform hardware-specific mux control. |
| 57 | */ |
| 58 | int i2c_mux_add_adapter(struct i2c_mux_core *muxc, |
| 59 | u32 force_nr, u32 chan_id, |
| 60 | unsigned int class); |
Michael Lawnick | 0826374 | 2010-08-11 18:21:02 +0200 | [diff] [blame] | 61 | |
Peter Rosin | a7ab723 | 2016-04-20 08:38:50 +0200 | [diff] [blame] | 62 | void i2c_mux_del_adapters(struct i2c_mux_core *muxc); |
Michael Lawnick | 0826374 | 2010-08-11 18:21:02 +0200 | [diff] [blame] | 63 | |
| 64 | #endif /* __KERNEL__ */ |
| 65 | |
| 66 | #endif /* _LINUX_I2C_MUX_H */ |