xref: /freebsd-src/sys/contrib/device-tree/include/dt-bindings/i3c/i3c.h (revision 0e8011faf58b743cc652e3b2ad0f7671227610df)
1*0e8011faSEmmanuel Vadot /* SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause */
2*0e8011faSEmmanuel Vadot /*
3*0e8011faSEmmanuel Vadot  * Copyright 2024 NXP
4*0e8011faSEmmanuel Vadot  */
5*0e8011faSEmmanuel Vadot 
6*0e8011faSEmmanuel Vadot #ifndef _DT_BINDINGS_I3C_I3C_H
7*0e8011faSEmmanuel Vadot #define _DT_BINDINGS_I3C_I3C_H
8*0e8011faSEmmanuel Vadot 
9*0e8011faSEmmanuel Vadot #define I2C_FM      (1 << 4)
10*0e8011faSEmmanuel Vadot #define I2C_FM_PLUS (0 << 4)
11*0e8011faSEmmanuel Vadot 
12*0e8011faSEmmanuel Vadot #define I2C_FILTER  (0 << 5)
13*0e8011faSEmmanuel Vadot #define I2C_NO_FILTER_HIGH_FREQUENCY    (1 << 5)
14*0e8011faSEmmanuel Vadot #define I2C_NO_FILTER_LOW_FREQUENCY     (2 << 5)
15*0e8011faSEmmanuel Vadot 
16*0e8011faSEmmanuel Vadot #endif
17