blob: 696e7de83c794c624a42a6886862cb3423c488a3 [file] [log] [blame]
Thomas Gleixner16216332019-05-19 15:51:31 +02001/* SPDX-License-Identifier: GPL-2.0-or-later */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/* ------------------------------------------------------------------------- */
3/* adap-pcf.h i2c driver algorithms for PCF8584 adapters */
4/* ------------------------------------------------------------------------- */
5/* Copyright (C) 1995-97 Simon G. Vogl
6 1998-99 Hans Berglund
7
Thomas Gleixner16216332019-05-19 15:51:31 +02008 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07009/* ------------------------------------------------------------------------- */
10
John Anthony Kazos Jr121e70b2007-05-09 08:30:57 +020011/* With some changes from Kyösti Mälkki <kmalkki@cc.hut.fi> and even
Linus Torvalds1da177e2005-04-16 15:20:36 -070012 Frodo Looijaard <frodol@dds.nl> */
13
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#ifndef _LINUX_I2C_ALGO_PCF_H
15#define _LINUX_I2C_ALGO_PCF_H
16
17struct i2c_algo_pcf_data {
18 void *data; /* private data for lolevel routines */
19 void (*setpcf) (void *data, int ctl, int val);
20 int (*getpcf) (void *data, int ctl);
21 int (*getown) (void *data);
22 int (*getclock) (void *data);
David Miller08e53382008-10-22 20:21:29 +020023 void (*waitforpin) (void *data);
Linus Torvalds1da177e2005-04-16 15:20:36 -070024
David Miller30091402008-10-22 20:21:30 +020025 void (*xfer_begin) (void *data);
26 void (*xfer_end) (void *data);
27
Eric Brower0573d112008-07-14 22:38:31 +020028 /* Multi-master lost arbitration back-off delay (msecs)
29 * This should be set by the bus adapter or knowledgable client
30 * if bus is multi-mastered, else zero
31 */
32 unsigned long lab_mdelay;
Linus Torvalds1da177e2005-04-16 15:20:36 -070033};
34
Linus Torvalds1da177e2005-04-16 15:20:36 -070035int i2c_pcf_add_bus(struct i2c_adapter *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070036
37#endif /* _LINUX_I2C_ALGO_PCF_H */