no-OS
Loading...
Searching...
No Matches
linux_i2c.h
Go to the documentation of this file.
1/*******************************************************************************
2 * @file linux/linux_i2c.h
3 * @brief Header containing extra types used by the I2C driver.
4 * @author Dragos Bogdan (dragos.bogdan@analog.com)
5 * @author Jamila Macagba (Jamila.Macagba@analog.com)
6********************************************************************************
7 * Copyright 2020, 2025(c) Analog Devices, Inc.
8 *
9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions are met:
11 *
12 * 1. Redistributions of source code must retain the above copyright notice,
13 * this list of conditions and the following disclaimer.
14 *
15 * 2. Redistributions in binary form must reproduce the above copyright notice,
16 * this list of conditions and the following disclaimer in the documentation
17 * and/or other materials provided with the distribution.
18 *
19 * 3. Neither the name of Analog Devices, Inc. nor the names of its
20 * contributors may be used to endorse or promote products derived from this
21 * software without specific prior written permission.
22 *
23 * THIS SOFTWARE IS PROVIDED BY ANALOG DEVICES, INC. “AS IS” AND ANY EXPRESS OR
24 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
25 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
26 * EVENT SHALL ANALOG DEVICES, INC. BE LIABLE FOR ANY DIRECT, INDIRECT,
27 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
28 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,
29 * OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
30 * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
31 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
32 * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
33*******************************************************************************/
34#ifndef LINUX_I2C_H_
35#define LINUX_I2C_H_
36
37#include <stdint.h>
38
46 uint32_t device_id;
47};
48
52extern const struct no_os_i2c_platform_ops linux_i2c_ops;
53
54#endif // LINUX_I2C_H_
const struct no_os_i2c_platform_ops linux_i2c_ops
Linux platform specific I2C platform ops structure.
Definition linux_i2c.c:279
Structure holding the initialization parameters for Linux platform specific I2C parameters.
Definition linux_i2c.h:44
uint32_t device_id
Definition linux_i2c.h:46
Structure holding I2C function pointers that point to the platform specific function.
Definition no_os_i2c.h:109