xref: /linux/drivers/hwmon/sch56xx-common.h (revision 1a59d1b8e05ea6ab45f7e18897de1ef0e6bc3da6)
1*1a59d1b8SThomas Gleixner /* SPDX-License-Identifier: GPL-2.0-or-later */
228ff2f7aSHans de Goede /***************************************************************************
3312869ecSHans de Goede  *   Copyright (C) 2010-2012 Hans de Goede <hdegoede@redhat.com>           *
428ff2f7aSHans de Goede  *                                                                         *
528ff2f7aSHans de Goede  ***************************************************************************/
628ff2f7aSHans de Goede 
7312869ecSHans de Goede #include <linux/mutex.h>
8312869ecSHans de Goede 
9312869ecSHans de Goede struct sch56xx_watchdog_data;
10312869ecSHans de Goede 
1128ff2f7aSHans de Goede int sch56xx_read_virtual_reg(u16 addr, u16 reg);
1228ff2f7aSHans de Goede int sch56xx_write_virtual_reg(u16 addr, u16 reg, u8 val);
1328ff2f7aSHans de Goede int sch56xx_read_virtual_reg16(u16 addr, u16 reg);
1428ff2f7aSHans de Goede int sch56xx_read_virtual_reg12(u16 addr, u16 msb_reg, u16 lsn_reg,
1528ff2f7aSHans de Goede 			       int high_nibble);
16312869ecSHans de Goede 
17fb551405SHans de Goede struct sch56xx_watchdog_data *sch56xx_watchdog_register(struct device *parent,
18312869ecSHans de Goede 	u16 addr, u32 revision, struct mutex *io_lock, int check_enabled);
19312869ecSHans de Goede void sch56xx_watchdog_unregister(struct sch56xx_watchdog_data *data);
20