Home | History | Annotate | Line # | Download | only in i2c
i2cvar.h revision 1.24.2.5
      1  1.24.2.5   thorpej /*	$NetBSD: i2cvar.h,v 1.24.2.5 2021/05/17 00:05:56 thorpej Exp $	*/
      2       1.1   thorpej 
      3       1.1   thorpej /*
      4       1.1   thorpej  * Copyright (c) 2003 Wasabi Systems, Inc.
      5       1.1   thorpej  * All rights reserved.
      6       1.1   thorpej  *
      7       1.1   thorpej  * Written by Steve C. Woodford and Jason R. Thorpe for Wasabi Systems, Inc.
      8       1.1   thorpej  *
      9       1.1   thorpej  * Redistribution and use in source and binary forms, with or without
     10       1.1   thorpej  * modification, are permitted provided that the following conditions
     11       1.1   thorpej  * are met:
     12       1.1   thorpej  * 1. Redistributions of source code must retain the above copyright
     13       1.1   thorpej  *    notice, this list of conditions and the following disclaimer.
     14       1.1   thorpej  * 2. Redistributions in binary form must reproduce the above copyright
     15       1.1   thorpej  *    notice, this list of conditions and the following disclaimer in the
     16       1.1   thorpej  *    documentation and/or other materials provided with the distribution.
     17       1.1   thorpej  * 3. All advertising materials mentioning features or use of this software
     18       1.1   thorpej  *    must display the following acknowledgement:
     19       1.1   thorpej  *      This product includes software developed for the NetBSD Project by
     20       1.1   thorpej  *      Wasabi Systems, Inc.
     21       1.1   thorpej  * 4. The name of Wasabi Systems, Inc. may not be used to endorse
     22       1.1   thorpej  *    or promote products derived from this software without specific prior
     23       1.1   thorpej  *    written permission.
     24       1.1   thorpej  *
     25       1.1   thorpej  * THIS SOFTWARE IS PROVIDED BY WASABI SYSTEMS, INC. ``AS IS'' AND
     26       1.1   thorpej  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     27       1.1   thorpej  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     28       1.1   thorpej  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL WASABI SYSTEMS, INC
     29       1.1   thorpej  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     30       1.1   thorpej  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     31       1.1   thorpej  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     32       1.1   thorpej  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     33       1.1   thorpej  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     34       1.1   thorpej  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     35       1.1   thorpej  * POSSIBILITY OF SUCH DAMAGE.
     36       1.1   thorpej  */
     37       1.1   thorpej 
     38       1.1   thorpej #ifndef _DEV_I2C_I2CVAR_H_
     39       1.1   thorpej #define	_DEV_I2C_I2CVAR_H_
     40       1.1   thorpej 
     41      1.14   thorpej #include <sys/device.h>
     42      1.19   thorpej #include <sys/mutex.h>
     43       1.1   thorpej #include <dev/i2c/i2c_io.h>
     44       1.9  jmcneill #include <prop/proplib.h>
     45       1.1   thorpej 
     46       1.1   thorpej /* Flags passed to i2c routines. */
     47      1.21   thorpej #define	I2C_F_WRITE	0		/* new transfer is a write */
     48      1.21   thorpej #define	I2C_F_READ	__BIT(0)	/* new transfer is a read */
     49      1.21   thorpej #define	I2C_F_LAST	__BIT(1)	/* last byte of read */
     50      1.21   thorpej #define	I2C_F_STOP	__BIT(2)	/* send stop after byte */
     51      1.21   thorpej #define	I2C_F_POLL	__BIT(3)	/* poll, don't sleep */
     52      1.21   thorpej #define	I2C_F_PEC	__BIT(4)	/* smbus packet error checking */
     53      1.21   thorpej #define	I2C_F_SPEED	__BITS(28,31)	/* I2C transfer speed selector */
     54      1.21   thorpej 
     55      1.21   thorpej #define	I2C_SPEED_SM		0	/* standard mode (100Kb/s) */
     56      1.21   thorpej #define	I2C_SPEED_FM		1	/* fast mode (400Kb/s) */
     57      1.21   thorpej #define	I2C_SPEED_FMPLUS	2	/* fast mode+ (1Mb/s) */
     58      1.21   thorpej #define	I2C_SPEED_HS		3	/* high speed (3.4Mb/s) */
     59       1.1   thorpej 
     60      1.13   thorpej /* i2c bus instance properties */
     61      1.13   thorpej #define	I2C_PROP_INDIRECT_PROBE_STRATEGY	\
     62      1.13   thorpej 				"i2c-indirect-probe-strategy"
     63      1.13   thorpej #define	I2C_PROBE_STRATEGY_QUICK_WRITE		\
     64      1.13   thorpej 				"smbus-quick-write"
     65      1.13   thorpej #define	I2C_PROBE_STRATEGY_RECEIVE_BYTE		\
     66      1.13   thorpej 				"smbus-receive-byte"
     67      1.13   thorpej #define	I2C_PROBE_STRATEGY_NONE			\
     68      1.13   thorpej 				"none"
     69      1.13   thorpej 
     70      1.20   thorpej #define	I2C_PROP_INDIRECT_DEVICE_PERMITLIST	\
     71      1.20   thorpej 				"i2c-indirect-device-permitlist"
     72      1.13   thorpej 	/* value is a prop_array of prop_strings */
     73      1.13   thorpej 
     74       1.5  jmcneill struct ic_intr_list {
     75       1.5  jmcneill 	LIST_ENTRY(ic_intr_list) il_next;
     76       1.5  jmcneill 	int (*il_intr)(void *);
     77       1.5  jmcneill 	void *il_intrarg;
     78       1.5  jmcneill };
     79       1.5  jmcneill 
     80       1.1   thorpej /*
     81       1.1   thorpej  * This structure provides the interface between the i2c framework
     82       1.1   thorpej  * and the underlying i2c controller.
     83       1.1   thorpej  *
     84       1.1   thorpej  * Note that this structure is designed specifically to allow us
     85       1.1   thorpej  * to either use the autoconfiguration framework or not.  This
     86       1.1   thorpej  * allows a driver for a board with a private i2c bus use generic
     87       1.1   thorpej  * i2c client drivers for chips that might be on that board.
     88       1.1   thorpej  */
     89       1.1   thorpej typedef struct i2c_controller {
     90       1.1   thorpej 	void	*ic_cookie;		/* controller private */
     91       1.1   thorpej 
     92       1.1   thorpej 	/*
     93  1.24.2.4   thorpej 	 * Multi-channel i2c controllers and i2c muxes allow
     94  1.24.2.4   thorpej 	 * for multiple busses to be driven by a single block
     95  1.24.2.4   thorpej 	 * of controller logic.  Different platform device
     96  1.24.2.4   thorpej 	 * tree representations may find it useful to know
     97  1.24.2.4   thorpej 	 * which physical channel a given logical controller
     98  1.24.2.4   thorpej 	 * (represented by the i2c_tag_t) is associated with.
     99  1.24.2.4   thorpej 	 * We allow this to be stashed away here as a convenience.
    100  1.24.2.4   thorpej 	 * This is not used for anything else by the i2c layer.
    101  1.24.2.4   thorpej 	 */
    102  1.24.2.4   thorpej 	int	ic_channel;
    103  1.24.2.4   thorpej 
    104  1.24.2.4   thorpej 	/*
    105       1.1   thorpej 	 * These provide synchronization in the presence of
    106       1.1   thorpej 	 * multiple users of the i2c bus.  When a device
    107       1.1   thorpej 	 * driver wishes to perform transfers on the i2c
    108       1.1   thorpej 	 * bus, the driver should acquire the bus.  When
    109       1.1   thorpej 	 * the driver is finished, it should release the
    110       1.1   thorpej 	 * bus.
    111       1.1   thorpej 	 *
    112      1.19   thorpej 	 * The main synchronization logic is handled by the
    113      1.19   thorpej 	 * generic i2c layer, but optional hooks to back-end
    114      1.19   thorpej 	 * drivers are provided in case additional processing
    115      1.19   thorpej 	 * is needed (e.g. enabling the i2c controller).
    116       1.1   thorpej 	 */
    117      1.19   thorpej 	kmutex_t ic_bus_lock;
    118       1.1   thorpej 	int	(*ic_acquire_bus)(void *, int);
    119       1.1   thorpej 	void	(*ic_release_bus)(void *, int);
    120       1.1   thorpej 
    121       1.1   thorpej 	/*
    122       1.1   thorpej 	 * The preferred API for clients of the i2c interface
    123       1.1   thorpej 	 * is the scripted API.  This handles i2c controllers
    124       1.1   thorpej 	 * that do not provide raw access to the i2c signals.
    125       1.1   thorpej 	 */
    126       1.1   thorpej 	int	(*ic_exec)(void *, i2c_op_t, i2c_addr_t, const void *, size_t,
    127       1.1   thorpej 		    void *, size_t, int);
    128       1.1   thorpej 
    129       1.1   thorpej 	int	(*ic_send_start)(void *, int);
    130       1.1   thorpej 	int	(*ic_send_stop)(void *, int);
    131       1.1   thorpej 	int	(*ic_initiate_xfer)(void *, i2c_addr_t, int);
    132       1.1   thorpej 	int	(*ic_read_byte)(void *, uint8_t *, int);
    133       1.1   thorpej 	int	(*ic_write_byte)(void *, uint8_t, int);
    134       1.5  jmcneill 
    135       1.5  jmcneill 	LIST_HEAD(, ic_intr_list) ic_list;
    136       1.5  jmcneill 	LIST_HEAD(, ic_intr_list) ic_proc_list;
    137       1.5  jmcneill 	volatile int	ic_running;
    138       1.5  jmcneill 	volatile int	ic_pending;
    139       1.6        ad 	struct lwp *ic_intr_thread;
    140       1.5  jmcneill 	const char *ic_devname;
    141       1.1   thorpej } *i2c_tag_t;
    142       1.1   thorpej 
    143       1.1   thorpej /* Used to attach the i2c framework to the controller. */
    144       1.1   thorpej struct i2cbus_attach_args {
    145       1.1   thorpej 	i2c_tag_t iba_tag;		/* the controller */
    146       1.1   thorpej };
    147       1.1   thorpej 
    148       1.1   thorpej /* Used to attach devices on the i2c bus. */
    149       1.1   thorpej struct i2c_attach_args {
    150       1.1   thorpej 	i2c_tag_t	ia_tag;		/* our controller */
    151       1.1   thorpej 	i2c_addr_t	ia_addr;	/* address of device */
    152       1.3  jmcneill 	int		ia_type;	/* bus type */
    153  1.24.2.1   thorpej 
    154       1.7    martin 	/* only set if using direct config */
    155       1.7    martin 	const char *	ia_name;	/* name of the device */
    156  1.24.2.1   thorpej 	const char *	ia_clist;	/* compatible strlist */
    157  1.24.2.1   thorpej 	size_t		ia_clist_size;	/* size of compatible strlist */
    158  1.24.2.1   thorpej 	prop_dictionary_t ia_prop;	/* property dictionary for the device */
    159  1.24.2.1   thorpej 	devhandle_t	ia_devhandle;	/* device handle for the device */
    160       1.1   thorpej };
    161       1.1   thorpej 
    162       1.1   thorpej /*
    163  1.24.2.1   thorpej  * i2c-enumerate-devices device call
    164  1.24.2.1   thorpej  *
    165  1.24.2.1   thorpej  *	Enumerate the devices connected to this I2C bus, filling out
    166  1.24.2.1   thorpej  *	the i2c_attach_args and invoking the callback for each one.
    167  1.24.2.1   thorpej  *	If the callback returns true, then enumeration continues.  If
    168  1.24.2.1   thorpej  *	the callback returns false, enumeration is stopped.
    169  1.24.2.1   thorpej  */
    170  1.24.2.1   thorpej struct i2c_enumerate_devices_args {
    171  1.24.2.1   thorpej 	struct i2c_attach_args *ia;
    172  1.24.2.1   thorpej 	bool (*callback)(device_t, struct i2c_enumerate_devices_args *);
    173  1.24.2.1   thorpej };
    174  1.24.2.1   thorpej 
    175  1.24.2.1   thorpej /*
    176       1.1   thorpej  * API presented to i2c controllers.
    177       1.1   thorpej  */
    178       1.1   thorpej int	iicbus_print(void *, const char *);
    179  1.24.2.2   thorpej int	iicbus_print_multi(void *, const char *);
    180      1.19   thorpej void	iic_tag_init(i2c_tag_t);
    181      1.19   thorpej void	iic_tag_fini(i2c_tag_t);
    182      1.14   thorpej 
    183      1.14   thorpej /*
    184      1.14   thorpej  * API presented to i2c devices.
    185      1.14   thorpej  */
    186      1.16   thorpej int	iic_compatible_match(const struct i2c_attach_args *,
    187      1.22   thorpej 			     const struct device_compatible_entry *);
    188      1.15   thorpej bool	iic_use_direct_match(const struct i2c_attach_args *, const cfdata_t,
    189      1.15   thorpej 			     const struct device_compatible_entry *, int *);
    190      1.22   thorpej const struct device_compatible_entry *
    191      1.22   thorpej 	iic_compatible_lookup(const struct i2c_attach_args *,
    192      1.22   thorpej 			      const struct device_compatible_entry *);
    193       1.1   thorpej 
    194      1.13   thorpej /*
    195      1.13   thorpej  * Constants to indicate the quality of a match made by a driver's
    196      1.13   thorpej  * match routine, from lowest to higest:
    197      1.13   thorpej  *
    198      1.13   thorpej  *	-- Address only; no other checks were made.
    199      1.13   thorpej  *
    200      1.13   thorpej  *	-- Address + device probed and recognized.
    201      1.13   thorpej  *
    202      1.13   thorpej  *	-- Direct-config match by "compatible" string.
    203      1.13   thorpej  *
    204      1.13   thorpej  *	-- Direct-config match by specific driver name.
    205      1.13   thorpej  */
    206      1.13   thorpej #define	I2C_MATCH_ADDRESS_ONLY		1
    207      1.13   thorpej #define	I2C_MATCH_ADDRESS_AND_PROBE	2
    208      1.13   thorpej #define	I2C_MATCH_DIRECT_COMPATIBLE	10
    209      1.14   thorpej #define	I2C_MATCH_DIRECT_COMPATIBLE_MAX	99
    210      1.14   thorpej #define	I2C_MATCH_DIRECT_SPECIFIC	100
    211      1.13   thorpej 
    212       1.1   thorpej #ifdef _I2C_PRIVATE
    213       1.1   thorpej /*
    214       1.1   thorpej  * Macros used internally by the i2c framework.
    215       1.1   thorpej  */
    216       1.1   thorpej #define	iic_send_start(ic, flags)					\
    217       1.1   thorpej 	(*(ic)->ic_send_start)((ic)->ic_cookie, (flags))
    218       1.1   thorpej #define	iic_send_stop(ic, flags)					\
    219       1.1   thorpej 	(*(ic)->ic_send_stop)((ic)->ic_cookie, (flags))
    220       1.1   thorpej #define	iic_initiate_xfer(ic, addr, flags)				\
    221       1.1   thorpej 	(*(ic)->ic_initiate_xfer)((ic)->ic_cookie, (addr), (flags))
    222       1.1   thorpej 
    223       1.1   thorpej #define	iic_read_byte(ic, bytep, flags)					\
    224       1.1   thorpej 	(*(ic)->ic_read_byte)((ic)->ic_cookie, (bytep), (flags))
    225       1.1   thorpej #define	iic_write_byte(ic, byte, flags)					\
    226       1.1   thorpej 	(*(ic)->ic_write_byte)((ic)->ic_cookie, (byte), (flags))
    227       1.1   thorpej #endif /* _I2C_PRIVATE */
    228       1.1   thorpej 
    229       1.1   thorpej /*
    230       1.1   thorpej  * Simplified API for clients of the i2c framework.  Definitions
    231       1.1   thorpej  * in <dev/i2c/i2c_io.h>.
    232       1.1   thorpej  */
    233      1.18   thorpej int	iic_acquire_bus(i2c_tag_t, int);
    234      1.18   thorpej void	iic_release_bus(i2c_tag_t, int);
    235       1.1   thorpej int	iic_exec(i2c_tag_t, i2c_op_t, i2c_addr_t, const void *,
    236       1.1   thorpej 	    size_t, void *, size_t, int);
    237       1.1   thorpej 
    238       1.1   thorpej int	iic_smbus_write_byte(i2c_tag_t, i2c_addr_t, uint8_t, uint8_t, int);
    239       1.3  jmcneill int	iic_smbus_write_word(i2c_tag_t, i2c_addr_t, uint8_t, uint16_t, int);
    240       1.1   thorpej int	iic_smbus_read_byte(i2c_tag_t, i2c_addr_t, uint8_t, uint8_t *, int);
    241       1.3  jmcneill int	iic_smbus_read_word(i2c_tag_t, i2c_addr_t, uint8_t, uint16_t *, int);
    242       1.1   thorpej int	iic_smbus_receive_byte(i2c_tag_t, i2c_addr_t, uint8_t *, int);
    243       1.3  jmcneill int	iic_smbus_send_byte(i2c_tag_t, i2c_addr_t, uint8_t, int);
    244       1.3  jmcneill int	iic_smbus_quick_read(i2c_tag_t, i2c_addr_t, int);
    245       1.3  jmcneill int	iic_smbus_quick_write(i2c_tag_t, i2c_addr_t, int);
    246       1.3  jmcneill int	iic_smbus_block_read(i2c_tag_t, i2c_addr_t, uint8_t, uint8_t *,
    247       1.3  jmcneill 	    size_t, int);
    248       1.3  jmcneill int	iic_smbus_block_write(i2c_tag_t, i2c_addr_t, uint8_t, uint8_t *,
    249       1.3  jmcneill 	    size_t, int);
    250       1.1   thorpej 
    251       1.5  jmcneill void *	iic_smbus_intr_establish(i2c_tag_t, int (*)(void *), void *);
    252       1.5  jmcneill void *	iic_smbus_intr_establish_proc(i2c_tag_t, int (*)(void *), void *);
    253       1.5  jmcneill void	iic_smbus_intr_disestablish(i2c_tag_t, void *);
    254       1.5  jmcneill void	iic_smbus_intr_disestablish_proc(i2c_tag_t, void *);
    255       1.5  jmcneill int	iic_smbus_intr(i2c_tag_t);
    256       1.5  jmcneill 
    257       1.1   thorpej #endif /* _DEV_I2C_I2CVAR_H_ */
    258