| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202 |
- //*****************************************************************************
- // cc_pal.h
- //
- // Simplelink abstraction header file for CC3200
- //
- // Copyright (C) 2014 Texas Instruments Incorporated - http://www.ti.com/
- //
- //
- // Redistribution and use in source and binary forms, with or without
- // modification, are permitted provided that the following conditions
- // are met:
- //
- // Redistributions of source code must retain the above copyright
- // notice, this list of conditions and the following disclaimer.
- //
- // Redistributions in binary form must reproduce the above copyright
- // notice, this list of conditions and the following disclaimer in the
- // documentation and/or other materials provided with the
- // distribution.
- //
- // Neither the name of Texas Instruments Incorporated nor the names of
- // its contributors may be used to endorse or promote products derived
- // from this software without specific prior written permission.
- //
- // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
- // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
- // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
- // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
- // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
- // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
- // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
- // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
- // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- //
- //*****************************************************************************
- #ifndef __CC31xx_PAL_H__
- #define __CC31xx_PAL_H__
- #ifdef __cplusplus
- extern "C" {
- #endif
- /*!
- \brief type definition for the spi channel file descriptor
- \note On each porting or platform the type could be whatever is needed - integer, pointer to structure etc.
- */
- typedef int Fd_t;
- /*!
- \brief type definition for the host interrupt handler
- \param pValue - pointer to any memory strcuture. The value of this pointer is givven on
- registration of a new interrupt handler
- \note
- */
- typedef void (*SL_P_EVENT_HANDLER)(void);
- #define P_EVENT_HANDLER SL_P_EVENT_HANDLER
- /*!
- \brief open spi communication port to be used for communicating with a SimpleLink device
- Given an interface name and option flags, this function opens the spi communication port
- and creates a file descriptor. This file descriptor can be used afterwards to read and
- write data from and to this specific spi channel.
- The SPI speed, clock polarity, clock phase, chip select and all other attributes are all
- set to hardcoded values in this function.
- \param ifName - points to the interface name/path. The interface name is an
- optional attributes that the simple link driver receives
- on opening the device. in systems that the spi channel is
- not implemented as part of the os device drivers, this
- parameter could be NULL.
- \param flags - option flags
- \return upon successful completion, the function shall open the spi channel and return
- a non-negative integer representing the file descriptor.
- Otherwise, -1 shall be returned
- \sa spi_Close , spi_Read , spi_Write
- \note
- \warning
- */
- Fd_t spi_Open(char *ifName, unsigned long flags);
- /*!
- \brief closes an opened spi communication port
- \param fd - file descriptor of an opened SPI channel
- \return upon successful completion, the function shall return 0.
- Otherwise, -1 shall be returned
- \sa spi_Open
- \note
- \warning
- */
- int spi_Close(Fd_t fd);
- /*!
- \brief attempts to read up to len bytes from SPI channel into a buffer starting at pBuff.
- \param fd - file descriptor of an opened SPI channel
- \param pBuff - points to first location to start writing the data
- \param len - number of bytes to read from the SPI channel
- \return upon successful completion, the function shall return 0.
- Otherwise, -1 shall be returned
- \sa spi_Open , spi_Write
- \note
- \warning
- */
- int spi_Read(Fd_t fd, unsigned char *pBuff, int len);
- /*!
- \brief attempts to write up to len bytes to the SPI channel
- \param fd - file descriptor of an opened SPI channel
- \param pBuff - points to first location to start getting the data from
- \param len - number of bytes to write to the SPI channel
- \return upon successful completion, the function shall return 0.
- Otherwise, -1 shall be returned
- \sa spi_Open , spi_Read
- \note This function could be implemented as zero copy and return only upon successful completion
- of writing the whole buffer, but in cases that memory allocation is not too tight, the
- function could copy the data to internal buffer, return back and complete the write in
- parallel to other activities as long as the other SPI activities would be blocked untill
- the entire buffer write would be completed
- \warning
- */
- int spi_Write(Fd_t fd, unsigned char *pBuff, int len);
- /*!
- \brief register an interrupt handler for the host IRQ
- \param InterruptHdl - pointer to interrupt handler function
- \param pValue - pointer to a memory strcuture that is passed to the interrupt handler.
- \return upon successful registration, the function shall return 0.
- Otherwise, -1 shall be returned
- \sa
- \note If there is already registered interrupt handler, the function should overwrite the old handler
- with the new one
- \warning
- */
- int NwpRegisterInterruptHandler(P_EVENT_HANDLER InterruptHdl , void* pValue);
- /*!
- \brief Masks host IRQ
- \sa NwpUnMaskInterrupt
- \warning
- */
- void NwpMaskInterrupt();
- /*!
- \brief Unmasks host IRQ
- \sa NwpMaskInterrupt
- \warning
- */
- void NwpUnMaskInterrupt();
- void NwpPowerOnPreamble(void);
- void NwpPowerOff(void);
- void NwpPowerOn(void);
- #ifdef __cplusplus
- }
- #endif // __cplusplus
- #endif
|