2009-11-29 08:50:13 +00:00
|
|
|
/*
|
|
|
|
ChibiOS/RT - Copyright (C) 2006-2007 Giovanni Di Sirio.
|
|
|
|
|
|
|
|
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/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
2010-02-07 11:11:45 +00:00
|
|
|
* @file templates/pal_lld.h
|
|
|
|
* @brief PAL subsystem low level driver header template.
|
|
|
|
*
|
2009-11-29 08:50:13 +00:00
|
|
|
* @addtogroup PAL_LLD
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _PAL_LLD_H_
|
|
|
|
#define _PAL_LLD_H_
|
|
|
|
|
2009-11-29 10:37:31 +00:00
|
|
|
#if CH_HAL_USE_PAL || defined(__DOXYGEN__)
|
2009-11-29 08:50:13 +00:00
|
|
|
|
|
|
|
/*===========================================================================*/
|
|
|
|
/* Unsupported modes and specific modes */
|
|
|
|
/*===========================================================================*/
|
|
|
|
|
|
|
|
/*===========================================================================*/
|
|
|
|
/* I/O Ports Types and constants. */
|
|
|
|
/*===========================================================================*/
|
|
|
|
|
|
|
|
/**
|
2010-02-07 11:11:45 +00:00
|
|
|
* @brief Generic I/O ports static initializer.
|
2009-11-29 08:50:13 +00:00
|
|
|
* @details An instance of this structure must be passed to @p palInit() at
|
|
|
|
* system startup time in order to initialized the digital I/O
|
|
|
|
* subsystem. This represents only the initial setup, specific pads
|
|
|
|
* or whole ports can be reprogrammed at later time.
|
2010-02-07 11:11:45 +00:00
|
|
|
* @note This structure content is architecture dependent. The nome should
|
|
|
|
* be changed to include the architecture name following this
|
|
|
|
* pattern:<br>
|
|
|
|
* - [ARCH][CELL]Config.
|
|
|
|
* .
|
|
|
|
* As example:<br>
|
|
|
|
* - MSP430DIOConfig.
|
|
|
|
* .
|
2009-11-29 08:50:13 +00:00
|
|
|
*/
|
|
|
|
typedef struct {
|
|
|
|
|
|
|
|
} GenericConfig;
|
|
|
|
|
|
|
|
/**
|
2010-02-07 11:11:45 +00:00
|
|
|
* @brief Width, in bits, of an I/O port.
|
2009-11-29 08:50:13 +00:00
|
|
|
*/
|
|
|
|
#define PAL_IOPORTS_WIDTH 32
|
|
|
|
|
|
|
|
/**
|
2010-02-07 11:11:45 +00:00
|
|
|
* @brief Whole port mask.
|
|
|
|
* @brief This macro specifies all the valid bits into a port.
|
2009-11-29 08:50:13 +00:00
|
|
|
*/
|
|
|
|
#define PAL_WHOLE_PORT ((ioportmask_t)0xFFFFFFFF)
|
|
|
|
|
|
|
|
/**
|
2010-02-07 11:11:45 +00:00
|
|
|
* @brief Digital I/O port sized unsigned type.
|
2009-11-29 08:50:13 +00:00
|
|
|
*/
|
|
|
|
typedef uint32_t ioportmask_t;
|
|
|
|
|
|
|
|
/**
|
2010-02-07 11:11:45 +00:00
|
|
|
* @brief Port Identifier.
|
2009-11-29 08:50:13 +00:00
|
|
|
* @details This type can be a scalar or some kind of pointer, do not make
|
|
|
|
* any assumption about it, use the provided macros when populating
|
|
|
|
* variables of this type.
|
|
|
|
*/
|
|
|
|
typedef uint32_t ioportid_t;
|
|
|
|
|
|
|
|
/*===========================================================================*/
|
|
|
|
/* I/O Ports Identifiers. */
|
|
|
|
/*===========================================================================*/
|
|
|
|
|
|
|
|
/**
|
2010-02-07 11:11:45 +00:00
|
|
|
* @brief First I/O port identifier.
|
2009-11-29 08:50:13 +00:00
|
|
|
* @details Low level drivers can define multiple ports, it is suggested to
|
|
|
|
* use this naming convention.
|
|
|
|
*/
|
|
|
|
#define IOPORT1 0
|
|
|
|
|
|
|
|
/*===========================================================================*/
|
|
|
|
/* Implementation, some of the following macros could be implemented as */
|
|
|
|
/* functions, if so please put them in pal_lld.c. */
|
|
|
|
/*===========================================================================*/
|
|
|
|
|
|
|
|
/**
|
2010-02-07 11:11:45 +00:00
|
|
|
* @brief Low level PAL subsystem initialization.
|
2009-11-29 08:50:13 +00:00
|
|
|
*
|
2010-02-07 11:11:45 +00:00
|
|
|
* @param[in] config architecture-dependent ports configuration
|
2009-11-29 08:50:13 +00:00
|
|
|
*/
|
|
|
|
#define pal_lld_init(config)
|
|
|
|
|
|
|
|
/**
|
2010-02-07 11:11:45 +00:00
|
|
|
* @brief Reads the physical I/O port states.
|
|
|
|
* @note This function is not meant to be invoked directly by the
|
|
|
|
* application code.
|
2009-11-29 08:50:13 +00:00
|
|
|
*
|
2010-02-07 11:11:45 +00:00
|
|
|
* @param[in] port port identifier
|
|
|
|
* @return The port bits.
|
2009-11-29 08:50:13 +00:00
|
|
|
*/
|
|
|
|
#define pal_lld_readport(port)
|
|
|
|
|
|
|
|
/**
|
2010-02-07 11:11:45 +00:00
|
|
|
* @brief Reads the output latch.
|
2009-11-29 08:50:13 +00:00
|
|
|
* @details The purpose of this function is to read back the latched output
|
|
|
|
* value.
|
2010-02-07 11:11:45 +00:00
|
|
|
* @note This function is not meant to be invoked directly by the
|
|
|
|
* application code.
|
2009-11-29 08:50:13 +00:00
|
|
|
*
|
2010-02-07 11:11:45 +00:00
|
|
|
* @param[in] port port identifier
|
|
|
|
* @return The latched logical states.
|
2009-11-29 08:50:13 +00:00
|
|
|
*/
|
|
|
|
#define pal_lld_readlatch(port)
|
|
|
|
|
|
|
|
/**
|
2010-02-07 11:11:45 +00:00
|
|
|
* @brief Writes a bits mask on a I/O port.
|
|
|
|
* @note This function is not meant to be invoked directly by the
|
|
|
|
* application code.
|
2009-11-29 08:50:13 +00:00
|
|
|
*
|
2010-02-07 11:11:45 +00:00
|
|
|
* @param[in] port port identifier
|
|
|
|
* @param[in] bits bits to be written on the specified port
|
2009-11-29 08:50:13 +00:00
|
|
|
*/
|
|
|
|
#define pal_lld_writeport(port, bits)
|
|
|
|
|
|
|
|
/**
|
2010-02-07 11:11:45 +00:00
|
|
|
* @brief Sets a bits mask on a I/O port.
|
|
|
|
* @note This function is not meant to be invoked directly by the
|
|
|
|
* application code.
|
|
|
|
* @note The @ref PAL provides a default software implementation of this
|
|
|
|
* functionality, implement this function if can optimize it by using
|
|
|
|
* special hardware functionalities or special coding.
|
2009-11-29 08:50:13 +00:00
|
|
|
*
|
2010-02-07 11:11:45 +00:00
|
|
|
* @param[in] port port identifier
|
|
|
|
* @param[in] bits bits to be ORed on the specified port
|
2009-11-29 08:50:13 +00:00
|
|
|
*/
|
|
|
|
#define pal_lld_setport(port, bits)
|
|
|
|
|
|
|
|
/**
|
2010-02-07 11:11:45 +00:00
|
|
|
* @brief Clears a bits mask on a I/O port.
|
|
|
|
* @note This function is not meant to be invoked directly by the
|
|
|
|
* application code.
|
|
|
|
* @note The @ref PAL provides a default software implementation of this
|
|
|
|
* functionality, implement this function if can optimize it by using
|
|
|
|
* special hardware functionalities or special coding.
|
2009-11-29 08:50:13 +00:00
|
|
|
*
|
2010-02-07 11:11:45 +00:00
|
|
|
* @param[in] port port identifier
|
|
|
|
* @param[in] bits bits to be cleared on the specified port
|
2009-11-29 08:50:13 +00:00
|
|
|
*/
|
|
|
|
#define pal_lld_clearport(port, bits)
|
|
|
|
|
|
|
|
/**
|
2010-02-07 11:11:45 +00:00
|
|
|
* @brief Toggles a bits mask on a I/O port.
|
|
|
|
* @note This function is not meant to be invoked directly by the
|
|
|
|
* application code.
|
|
|
|
* @note The @ref PAL provides a default software implementation of this
|
|
|
|
* functionality, implement this function if can optimize it by using
|
|
|
|
* special hardware functionalities or special coding.
|
2009-11-29 08:50:13 +00:00
|
|
|
*
|
2010-02-07 11:11:45 +00:00
|
|
|
* @param[in] port port identifier
|
|
|
|
* @param[in] bits bits to be XORed on the specified port
|
2009-11-29 08:50:13 +00:00
|
|
|
*/
|
|
|
|
#define pal_lld_toggleport(port, bits)
|
|
|
|
|
|
|
|
/**
|
2010-02-07 11:11:45 +00:00
|
|
|
* @brief Reads a group of bits.
|
|
|
|
* @note This function is not meant to be invoked directly by the
|
|
|
|
* application code.
|
|
|
|
* @note The @ref PAL provides a default software implementation of this
|
|
|
|
* functionality, implement this function if can optimize it by using
|
|
|
|
* special hardware functionalities or special coding.
|
2009-11-29 08:50:13 +00:00
|
|
|
*
|
2010-02-07 11:11:45 +00:00
|
|
|
* @param[in] port port identifier
|
|
|
|
* @param[in] mask group mask
|
|
|
|
* @param[in] offset group bit offset within the port
|
|
|
|
* @return The group logical states.
|
2009-11-29 08:50:13 +00:00
|
|
|
*/
|
|
|
|
#define pal_lld_readgroup(port, mask, offset)
|
|
|
|
|
|
|
|
/**
|
2010-02-07 11:11:45 +00:00
|
|
|
* @brief Writes a group of bits.
|
|
|
|
* @note This function is not meant to be invoked directly by the
|
|
|
|
* application code.
|
|
|
|
* @note The @ref PAL provides a default software implementation of this
|
|
|
|
* functionality, implement this function if can optimize it by using
|
|
|
|
* special hardware functionalities or special coding.
|
2009-11-29 08:50:13 +00:00
|
|
|
*
|
2010-02-07 11:11:45 +00:00
|
|
|
* @param[in] port port identifier
|
|
|
|
* @param[in] mask group mask
|
|
|
|
* @param[in] offset group bit offset within the port
|
|
|
|
* @param[in] bits bits to be written. Values exceeding the group width
|
|
|
|
* are masked.
|
2009-11-29 08:50:13 +00:00
|
|
|
*/
|
|
|
|
#define pal_lld_writegroup(port, mask, offset, bits)
|
|
|
|
|
|
|
|
/**
|
2010-02-07 11:11:45 +00:00
|
|
|
* @brief Pads group mode setup.
|
2009-11-29 08:50:13 +00:00
|
|
|
* @details This function programs a pads group belonging to the same port
|
|
|
|
* with the specified mode.
|
2010-02-07 11:11:45 +00:00
|
|
|
* @note This function is not meant to be invoked directly by the
|
|
|
|
* application code.
|
|
|
|
* @note Programming an unknown or unsupported mode is silently ignored.
|
2009-11-29 08:50:13 +00:00
|
|
|
*
|
2010-02-07 11:11:45 +00:00
|
|
|
* @param[in] port port identifier
|
|
|
|
* @param[in] mask group mask
|
|
|
|
* @param[in] mode group mode
|
2009-11-29 08:50:13 +00:00
|
|
|
*/
|
|
|
|
#define pal_lld_setgroupmode(port, mask, mode)
|
|
|
|
|
|
|
|
/**
|
2010-02-07 11:11:45 +00:00
|
|
|
* @brief Reads a logical state from an I/O pad.
|
|
|
|
* @note This function is not meant to be invoked directly by the
|
|
|
|
* application code.
|
|
|
|
* @note The @ref PAL provides a default software implementation of this
|
|
|
|
* functionality, implement this function if can optimize it by using
|
|
|
|
* special hardware functionalities or special coding.
|
2009-11-29 08:50:13 +00:00
|
|
|
*
|
2010-02-07 11:11:45 +00:00
|
|
|
* @param[in] port port identifier
|
|
|
|
* @param[in] pad pad number within the port
|
|
|
|
* @return The logical state.
|
|
|
|
* @retval PAL_LOW low logical state.
|
|
|
|
* @retval PAL_HIGH high logical state.
|
2009-11-29 08:50:13 +00:00
|
|
|
*/
|
|
|
|
#define pal_lld_readpad(port, pad)
|
|
|
|
|
|
|
|
/**
|
2010-02-07 11:11:45 +00:00
|
|
|
* @brief Writes a logical state on an output pad.
|
|
|
|
* @note This function is not meant to be invoked directly by the
|
|
|
|
* application code.
|
|
|
|
* @note The @ref PAL provides a default software implementation of this
|
|
|
|
* functionality, implement this function if can optimize it by using
|
|
|
|
* special hardware functionalities or special coding.
|
2009-11-29 08:50:13 +00:00
|
|
|
*
|
2010-02-07 11:11:45 +00:00
|
|
|
* @param[in] port port identifier
|
|
|
|
* @param[in] pad pad number within the port
|
|
|
|
* @param[out] bit logical value, the value must be @p PAL_LOW or
|
|
|
|
* @p PAL_HIGH
|
2009-11-29 08:50:13 +00:00
|
|
|
*/
|
|
|
|
#define pal_lld_writepad(port, pad, bit)
|
|
|
|
|
|
|
|
/**
|
2010-02-07 11:11:45 +00:00
|
|
|
* @brief Sets a pad logical state to @p PAL_HIGH.
|
|
|
|
* @note This function is not meant to be invoked directly by the
|
|
|
|
* application code.
|
|
|
|
* @note The @ref PAL provides a default software implementation of this
|
|
|
|
* functionality, implement this function if can optimize it by using
|
|
|
|
* special hardware functionalities or special coding.
|
2009-11-29 08:50:13 +00:00
|
|
|
*
|
2010-02-07 11:11:45 +00:00
|
|
|
* @param[in] port port identifier
|
|
|
|
* @param[in] pad pad number within the port
|
2009-11-29 08:50:13 +00:00
|
|
|
*/
|
|
|
|
#define pal_lld_setpad(port, pad)
|
|
|
|
|
|
|
|
/**
|
2010-02-07 11:11:45 +00:00
|
|
|
* @brief Clears a pad logical state to @p PAL_LOW.
|
|
|
|
* @note This function is not meant to be invoked directly by the
|
|
|
|
* application code.
|
|
|
|
* @note The @ref PAL provides a default software implementation of this
|
|
|
|
* functionality, implement this function if can optimize it by using
|
|
|
|
* special hardware functionalities or special coding.
|
2009-11-29 08:50:13 +00:00
|
|
|
*
|
2010-02-07 11:11:45 +00:00
|
|
|
* @param[in] port port identifier
|
|
|
|
* @param[in] pad pad number within the port
|
2009-11-29 08:50:13 +00:00
|
|
|
*/
|
|
|
|
#define pal_lld_clearpad(port, pad)
|
|
|
|
|
|
|
|
/**
|
2010-02-07 11:11:45 +00:00
|
|
|
* @brief Toggles a pad logical state.
|
|
|
|
* @note This function is not meant to be invoked directly by the
|
|
|
|
* application code.
|
|
|
|
* @note The @ref PAL provides a default software implementation of this
|
|
|
|
* functionality, implement this function if can optimize it by using
|
|
|
|
* special hardware functionalities or special coding.
|
2009-11-29 08:50:13 +00:00
|
|
|
*
|
2010-02-07 11:11:45 +00:00
|
|
|
* @param[in] port port identifier
|
|
|
|
* @param[in] pad pad number within the port
|
2009-11-29 08:50:13 +00:00
|
|
|
*/
|
|
|
|
#define pal_lld_togglepad(port, pad)
|
|
|
|
|
|
|
|
/**
|
2010-02-07 11:11:45 +00:00
|
|
|
* @brief Pad mode setup.
|
2009-11-29 08:50:13 +00:00
|
|
|
* @details This function programs a pad with the specified mode.
|
2010-02-07 11:11:45 +00:00
|
|
|
* @note This function is not meant to be invoked directly by the
|
|
|
|
* application code.
|
|
|
|
* @note The @ref PAL provides a default software implementation of this
|
|
|
|
* functionality, implement this function if can optimize it by using
|
|
|
|
* special hardware functionalities or special coding.
|
|
|
|
* @note Programming an unknown or unsupported mode is silently ignored.
|
2009-11-29 08:50:13 +00:00
|
|
|
*
|
2010-02-07 11:11:45 +00:00
|
|
|
* @param[in] port port identifier
|
|
|
|
* @param[in] pad pad number within the port
|
|
|
|
* @param[in] mode pad mode
|
2009-11-29 08:50:13 +00:00
|
|
|
*/
|
|
|
|
#define pal_lld_setpadmode(port, pad, mode)
|
|
|
|
|
|
|
|
#endif /* CH_HAL_USE_PAL */
|
|
|
|
|
|
|
|
#endif /* _PAL_LLD_H_ */
|
|
|
|
|
|
|
|
/** @} */
|