blob: cdcb431771313be82ee9cc0382bccbd082b93d1d [file] [log] [blame]
Thomas Gleixner64b70da2019-05-20 19:08:15 +02001/* SPDX-License-Identifier: GPL-2.0-or-later */
Joseph Chan9f291632008-10-15 22:03:29 -07002/*
Harald Welte277d32a2009-05-23 00:35:39 +08003 * Copyright 1998-2009 VIA Technologies, Inc. All Rights Reserved.
Joseph Chan9f291632008-10-15 22:03:29 -07004 * Copyright 2001-2008 S3 Graphics, Inc. All Rights Reserved.
5
Joseph Chan9f291632008-10-15 22:03:29 -07006 */
7#ifndef __VIA_I2C_H__
8#define __VIA_I2C_H__
9
10#include <linux/i2c.h>
11#include <linux/i2c-algo-bit.h>
12
13struct via_i2c_stuff {
14 u16 i2c_port; /* GPIO or I2C port */
Jonathan Corbetb052d7f2009-12-28 10:04:02 -070015 u16 is_active; /* Being used as I2C? */
Joseph Chan9f291632008-10-15 22:03:29 -070016 struct i2c_adapter adapter;
17 struct i2c_algo_bit_data algo;
18};
19
Joseph Chan9f291632008-10-15 22:03:29 -070020
Harald Welte277d32a2009-05-23 00:35:39 +080021int viafb_i2c_readbyte(u8 adap, u8 slave_addr, u8 index, u8 *pdata);
22int viafb_i2c_writebyte(u8 adap, u8 slave_addr, u8 index, u8 data);
23int viafb_i2c_readbytes(u8 adap, u8 slave_addr, u8 index, u8 *buff, int buff_len);
Jonathan Corbetb8f7e5d2010-04-23 08:56:55 -060024struct i2c_adapter *viafb_find_i2c_adapter(enum viafb_i2c_adap which);
Harald Welte277d32a2009-05-23 00:35:39 +080025
Jonathan Corbet7582eb92010-04-22 17:39:34 -060026extern int viafb_i2c_init(void);
27extern void viafb_i2c_exit(void);
Joseph Chan9f291632008-10-15 22:03:29 -070028#endif /* __VIA_I2C_H__ */