1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- /*
- * File : i2c.h
- * This file is part of RT-Thread RTOS
- * COPYRIGHT (C) 2006 - 2012, RT-Thread Development Team
- *
- * The license and distribution terms for this file may be
- * found in the file LICENSE in this distribution or at
- * http://www.rt-thread.org/license/LICENSE
- *
- * Change Logs:
- * Date Author Notes
- * 2012-04-25 weety first version
- */
- #ifndef __I2C_H__
- #define __I2C_H__
- #include <rtthread.h>
- #ifdef __cplusplus
- extern "C" {
- #endif
- #define RT_I2C_WR 0x0000
- #define RT_I2C_RD (1u << 0)
- #define RT_I2C_ADDR_10BIT (1u << 2) /* this is a ten bit chip address */
- #define RT_I2C_NO_START (1u << 4)
- #define RT_I2C_IGNORE_NACK (1u << 5)
- #define RT_I2C_NO_READ_ACK (1u << 6) /* when I2C reading, we do not ACK */
- struct rt_i2c_msg
- {
- rt_uint16_t addr;
- rt_uint16_t flags;
- rt_uint16_t len;
- rt_uint8_t *buf;
- };
- struct rt_i2c_bus_device;
- struct rt_i2c_bus_device_ops
- {
- rt_size_t (*master_xfer)(struct rt_i2c_bus_device *bus,
- struct rt_i2c_msg msgs[],
- rt_uint32_t num);
- rt_size_t (*slave_xfer)(struct rt_i2c_bus_device *bus,
- struct rt_i2c_msg msgs[],
- rt_uint32_t num);
- rt_err_t (*i2c_bus_control)(struct rt_i2c_bus_device *bus,
- rt_uint32_t,
- rt_uint32_t);
- };
- /*for i2c bus driver*/
- struct rt_i2c_bus_device
- {
- struct rt_device parent;
- const struct rt_i2c_bus_device_ops *ops;
- rt_uint16_t flags;
- rt_uint16_t addr;
- struct rt_mutex lock;
- rt_uint32_t timeout;
- rt_uint32_t retries;
- void *priv;
- };
- #ifdef RT_I2C_DEBUG
- #define i2c_dbg(fmt, ...) rt_kprintf(fmt, ##__VA_ARGS__)
- #else
- #define i2c_dbg(fmt, ...)
- #endif
- rt_err_t rt_i2c_bus_device_register(struct rt_i2c_bus_device *bus,
- const char *bus_name);
- struct rt_i2c_bus_device *rt_i2c_bus_device_find(const char *bus_name);
- rt_size_t rt_i2c_transfer(struct rt_i2c_bus_device *bus,
- struct rt_i2c_msg msgs[],
- rt_uint32_t num);
- rt_size_t rt_i2c_master_send(struct rt_i2c_bus_device *bus,
- rt_uint16_t addr,
- rt_uint16_t flags,
- const rt_uint8_t *buf,
- rt_uint32_t count);
- rt_size_t rt_i2c_master_recv(struct rt_i2c_bus_device *bus,
- rt_uint16_t addr,
- rt_uint16_t flags,
- rt_uint8_t *buf,
- rt_uint32_t count);
- rt_err_t rt_i2c_core_init(void);
- #ifdef __cplusplus
- }
- #endif
- #endif
|