Home | History | Annotate | Line # | Download | only in i2c
      1      1.1  jmcneill /*	$NetBSD: i2c.h,v 1.1.1.2 2020/01/03 14:33:03 skrll Exp $	*/
      2      1.1  jmcneill 
      3  1.1.1.2     skrll /* SPDX-License-Identifier: GPL-2.0-only */
      4      1.1  jmcneill /*
      5      1.1  jmcneill  * This header provides constants for I2C bindings
      6      1.1  jmcneill  *
      7      1.1  jmcneill  * Copyright (C) 2015 by Sang Engineering
      8      1.1  jmcneill  * Copyright (C) 2015 by Renesas Electronics Corporation
      9      1.1  jmcneill  *
     10      1.1  jmcneill  * Wolfram Sang <wsa (at) sang-engineering.com>
     11      1.1  jmcneill  */
     12      1.1  jmcneill 
     13      1.1  jmcneill #ifndef _DT_BINDINGS_I2C_I2C_H
     14      1.1  jmcneill #define _DT_BINDINGS_I2C_I2C_H
     15      1.1  jmcneill 
     16      1.1  jmcneill #define I2C_TEN_BIT_ADDRESS	(1 << 31)
     17      1.1  jmcneill #define I2C_OWN_SLAVE_ADDRESS	(1 << 30)
     18      1.1  jmcneill 
     19      1.1  jmcneill #endif
     20