2010-08-17 08:50:00 +00:00
|
|
|
/*
|
2011-03-18 18:38:08 +00:00
|
|
|
ChibiOS/RT - Copyright (C) 2006,2007,2008,2009,2010,
|
2013-02-02 10:58:09 +00:00
|
|
|
2011,2012,2013 Giovanni Di Sirio.
|
2010-08-17 08:50:00 +00:00
|
|
|
|
|
|
|
This file is part of ChibiOS/RT.
|
|
|
|
|
|
|
|
ChibiOS/RT is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
ChibiOS/RT is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @file templates/i2c_lld.h
|
|
|
|
* @brief I2C Driver subsystem low level driver header template.
|
|
|
|
*
|
2010-10-25 18:48:13 +00:00
|
|
|
* @addtogroup I2C
|
2010-08-17 08:50:00 +00:00
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _I2C_LLD_H_
|
|
|
|
#define _I2C_LLD_H_
|
|
|
|
|
2010-11-01 17:29:56 +00:00
|
|
|
#if HAL_USE_I2C || defined(__DOXYGEN__)
|
2010-08-17 08:50:00 +00:00
|
|
|
|
|
|
|
/*===========================================================================*/
|
|
|
|
/* Driver constants. */
|
|
|
|
/*===========================================================================*/
|
|
|
|
|
|
|
|
/*===========================================================================*/
|
|
|
|
/* Driver pre-compile time settings. */
|
|
|
|
/*===========================================================================*/
|
|
|
|
|
2013-02-24 10:07:54 +00:00
|
|
|
/**
|
|
|
|
* @name Configuration options
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
/**
|
|
|
|
* @brief I2C1 driver enable switch.
|
|
|
|
* @details If set to @p TRUE the support for I2C1 is included.
|
|
|
|
* @note The default is @p FALSE.
|
|
|
|
*/
|
|
|
|
#if !defined(PLATFORM_I2C_USE_I2C1) || defined(__DOXYGEN__)
|
|
|
|
#define PLATFORM_I2C_USE_I2C1 FALSE
|
|
|
|
#endif
|
2013-02-24 10:37:03 +00:00
|
|
|
/** @} */
|
2013-02-24 10:07:54 +00:00
|
|
|
|
2010-08-17 08:50:00 +00:00
|
|
|
/*===========================================================================*/
|
|
|
|
/* Derived constants and error checks. */
|
|
|
|
/*===========================================================================*/
|
|
|
|
|
|
|
|
/*===========================================================================*/
|
|
|
|
/* Driver data structures and types. */
|
|
|
|
/*===========================================================================*/
|
|
|
|
|
2013-02-24 10:07:54 +00:00
|
|
|
/**
|
|
|
|
* @brief Type representing I2C address.
|
|
|
|
*/
|
|
|
|
typedef uint16_t i2caddr_t;
|
2010-10-08 18:16:38 +00:00
|
|
|
|
|
|
|
/**
|
2013-02-24 10:07:54 +00:00
|
|
|
* @brief Type of I2C Driver condition flags.
|
2010-10-08 18:16:38 +00:00
|
|
|
*/
|
2013-02-24 10:07:54 +00:00
|
|
|
typedef uint32_t i2cflags_t;
|
2010-10-08 18:16:38 +00:00
|
|
|
|
2010-08-17 08:50:00 +00:00
|
|
|
/**
|
|
|
|
* @brief Driver configuration structure.
|
2010-09-07 13:37:22 +00:00
|
|
|
* @note Implementations may extend this structure to contain more,
|
|
|
|
* architecture dependent, fields.
|
2010-08-17 08:50:00 +00:00
|
|
|
*/
|
2013-02-24 10:07:54 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Driver configuration structure.
|
|
|
|
*/
|
2010-08-17 08:50:00 +00:00
|
|
|
typedef struct {
|
2013-02-24 10:07:54 +00:00
|
|
|
uint32_t dummy;
|
2010-08-17 08:50:00 +00:00
|
|
|
} I2CConfig;
|
|
|
|
|
|
|
|
/**
|
2013-02-24 10:07:54 +00:00
|
|
|
* @brief Type of a structure representing an I2C driver.
|
|
|
|
*/
|
|
|
|
typedef struct I2CDriver I2CDriver;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Structure representing an I2C driver.
|
2010-08-17 08:50:00 +00:00
|
|
|
*/
|
2013-02-24 10:22:59 +00:00
|
|
|
struct I2CDriver {
|
2013-02-24 10:07:54 +00:00
|
|
|
/**
|
|
|
|
* @brief Driver state.
|
|
|
|
*/
|
|
|
|
i2cstate_t state;
|
|
|
|
/**
|
|
|
|
* @brief Current configuration data.
|
|
|
|
*/
|
|
|
|
const I2CConfig *config;
|
|
|
|
/**
|
|
|
|
* @brief Error flags.
|
|
|
|
*/
|
|
|
|
i2cflags_t errors;
|
|
|
|
#if I2C_USE_MUTUAL_EXCLUSION || defined(__DOXYGEN__)
|
|
|
|
#if CH_USE_MUTEXES || defined(__DOXYGEN__)
|
|
|
|
/**
|
|
|
|
* @brief Mutex protecting the bus.
|
|
|
|
*/
|
|
|
|
Mutex mutex;
|
|
|
|
#elif CH_USE_SEMAPHORES
|
|
|
|
Semaphore semaphore;
|
|
|
|
#endif
|
|
|
|
#endif /* I2C_USE_MUTUAL_EXCLUSION */
|
2010-10-08 18:16:38 +00:00
|
|
|
#if defined(I2C_DRIVER_EXT_FIELDS)
|
|
|
|
I2C_DRIVER_EXT_FIELDS
|
|
|
|
#endif
|
2010-08-17 08:50:00 +00:00
|
|
|
/* End of the mandatory fields.*/
|
2010-10-08 18:16:38 +00:00
|
|
|
};
|
2010-08-17 08:50:00 +00:00
|
|
|
|
|
|
|
/*===========================================================================*/
|
|
|
|
/* Driver macros. */
|
|
|
|
/*===========================================================================*/
|
|
|
|
|
2013-02-24 10:07:54 +00:00
|
|
|
/**
|
|
|
|
* @brief Get errors from I2C driver.
|
|
|
|
*
|
|
|
|
* @param[in] i2cp pointer to the @p I2CDriver object
|
|
|
|
*
|
|
|
|
* @notapi
|
|
|
|
*/
|
|
|
|
#define i2c_lld_get_errors(i2cp) ((i2cp)->errors)
|
|
|
|
|
2010-08-17 08:50:00 +00:00
|
|
|
/*===========================================================================*/
|
|
|
|
/* External declarations. */
|
|
|
|
/*===========================================================================*/
|
|
|
|
|
2013-02-24 10:07:54 +00:00
|
|
|
#if !defined(__DOXYGEN__)
|
|
|
|
#if PLATFORM_I2C_USE_I2C1
|
|
|
|
extern I2CDriver I2CD1;
|
|
|
|
#endif
|
2013-02-24 10:22:59 +00:00
|
|
|
#endif
|
2013-02-24 10:07:54 +00:00
|
|
|
|
2010-08-17 08:50:00 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
void i2c_lld_init(void);
|
|
|
|
void i2c_lld_start(I2CDriver *i2cp);
|
|
|
|
void i2c_lld_stop(I2CDriver *i2cp);
|
2013-02-24 10:07:54 +00:00
|
|
|
msg_t i2c_lld_master_transmit_timeout(I2CDriver *i2cp, i2caddr_t addr,
|
|
|
|
const uint8_t *txbuf, size_t txbytes,
|
|
|
|
uint8_t *rxbuf, size_t rxbytes,
|
|
|
|
systime_t timeout);
|
|
|
|
msg_t i2c_lld_master_receive_timeout(I2CDriver *i2cp, i2caddr_t addr,
|
|
|
|
uint8_t *rxbuf, size_t rxbytes,
|
|
|
|
systime_t timeout);
|
2010-08-17 08:50:00 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2010-11-01 17:29:56 +00:00
|
|
|
#endif /* HAL_USE_I2C */
|
2010-08-17 08:50:00 +00:00
|
|
|
|
|
|
|
#endif /* _I2C_LLD_H_ */
|
|
|
|
|
|
|
|
/** @} */
|