source: asp3_tinet_ecnl_arm/trunk/asp3_dcre/mbed/hal/spi_api.h@ 352

Last change on this file since 352 was 352, checked in by coas-nagasima, 6 years ago

arm向けASP3版ECNLを追加

  • Property svn:eol-style set to native
  • Property svn:mime-type set to text/x-chdr;charset=UTF-8
File size: 6.6 KB
Line 
1
2/** \addtogroup hal */
3/** @{*/
4/* mbed Microcontroller Library
5 * Copyright (c) 2006-2013 ARM Limited
6 *
7 * Licensed under the Apache License, Version 2.0 (the "License");
8 * you may not use this file except in compliance with the License.
9 * You may obtain a copy of the License at
10 *
11 * http://www.apache.org/licenses/LICENSE-2.0
12 *
13 * Unless required by applicable law or agreed to in writing, software
14 * distributed under the License is distributed on an "AS IS" BASIS,
15 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 * See the License for the specific language governing permissions and
17 * limitations under the License.
18 */
19#ifndef MBED_SPI_API_H
20#define MBED_SPI_API_H
21
22#include "device.h"
23#include "hal/dma_api.h"
24#include "hal/buffer.h"
25
26#if DEVICE_SPI
27
28#define SPI_EVENT_ERROR (1 << 1)
29#define SPI_EVENT_COMPLETE (1 << 2)
30#define SPI_EVENT_RX_OVERFLOW (1 << 3)
31#define SPI_EVENT_ALL (SPI_EVENT_ERROR | SPI_EVENT_COMPLETE | SPI_EVENT_RX_OVERFLOW)
32
33#define SPI_EVENT_INTERNAL_TRANSFER_COMPLETE (1 << 30) // Internal flag to report that an event occurred
34
35#define SPI_FILL_WORD (0xFFFF)
36
37#if DEVICE_SPI_ASYNCH
38/** Asynch SPI HAL structure
39 */
40typedef struct {
41 struct spi_s spi; /**< Target specific SPI structure */
42 struct buffer_s tx_buff; /**< Tx buffer */
43 struct buffer_s rx_buff; /**< Rx buffer */
44} spi_t;
45
46#else
47/** Non-asynch SPI HAL structure
48 */
49typedef struct spi_s spi_t;
50
51#endif
52
53#ifdef __cplusplus
54extern "C" {
55#endif
56
57/**
58 * \defgroup hal_GeneralSPI SPI Configuration Functions
59 * @{
60 */
61
62/** Initialize the SPI peripheral
63 *
64 * Configures the pins used by SPI, sets a default format and frequency, and enables the peripheral
65 * @param[out] obj The SPI object to initialize
66 * @param[in] mosi The pin to use for MOSI
67 * @param[in] miso The pin to use for MISO
68 * @param[in] sclk The pin to use for SCLK
69 * @param[in] ssel The pin to use for SSEL
70 */
71void spi_init(spi_t *obj, PinName mosi, PinName miso, PinName sclk, PinName ssel);
72
73/** Release a SPI object
74 *
75 * TODO: spi_free is currently unimplemented
76 * This will require reference counting at the C++ level to be safe
77 *
78 * Return the pins owned by the SPI object to their reset state
79 * Disable the SPI peripheral
80 * Disable the SPI clock
81 * @param[in] obj The SPI object to deinitialize
82 */
83void spi_free(spi_t *obj);
84
85/** Configure the SPI format
86 *
87 * Set the number of bits per frame, configure clock polarity and phase, shift order and master/slave mode.
88 * The default bit order is MSB.
89 * @param[in,out] obj The SPI object to configure
90 * @param[in] bits The number of bits per frame
91 * @param[in] mode The SPI mode (clock polarity, phase, and shift direction)
92 * @param[in] slave Zero for master mode or non-zero for slave mode
93 */
94void spi_format(spi_t *obj, int bits, int mode, int slave);
95
96/** Set the SPI baud rate
97 *
98 * Actual frequency may differ from the desired frequency due to available dividers and bus clock
99 * Configures the SPI peripheral's baud rate
100 * @param[in,out] obj The SPI object to configure
101 * @param[in] hz The baud rate in Hz
102 */
103void spi_frequency(spi_t *obj, int hz);
104
105/**@}*/
106/**
107 * \defgroup SynchSPI Synchronous SPI Hardware Abstraction Layer
108 * @{
109 */
110
111/** Write a byte out in master mode and receive a value
112 *
113 * @param[in] obj The SPI peripheral to use for sending
114 * @param[in] value The value to send
115 * @return Returns the value received during send
116 */
117int spi_master_write(spi_t *obj, int value);
118
119/** Check if a value is available to read
120 *
121 * @param[in] obj The SPI peripheral to check
122 * @return non-zero if a value is available
123 */
124int spi_slave_receive(spi_t *obj);
125
126/** Get a received value out of the SPI receive buffer in slave mode
127 *
128 * Blocks until a value is available
129 * @param[in] obj The SPI peripheral to read
130 * @return The value received
131 */
132int spi_slave_read(spi_t *obj);
133
134/** Write a value to the SPI peripheral in slave mode
135 *
136 * Blocks until the SPI peripheral can be written to
137 * @param[in] obj The SPI peripheral to write
138 * @param[in] value The value to write
139 */
140void spi_slave_write(spi_t *obj, int value);
141
142/** Checks if the specified SPI peripheral is in use
143 *
144 * @param[in] obj The SPI peripheral to check
145 * @return non-zero if the peripheral is currently transmitting
146 */
147int spi_busy(spi_t *obj);
148
149/** Get the module number
150 *
151 * @param[in] obj The SPI peripheral to check
152 * @return The module number
153 */
154uint8_t spi_get_module(spi_t *obj);
155
156/**@}*/
157
158#if DEVICE_SPI_ASYNCH
159/**
160 * \defgroup AsynchSPI Asynchronous SPI Hardware Abstraction Layer
161 * @{
162 */
163
164/** Begin the SPI transfer. Buffer pointers and lengths are specified in tx_buff and rx_buff
165 *
166 * @param[in] obj The SPI object that holds the transfer information
167 * @param[in] tx The transmit buffer
168 * @param[in] tx_length The number of bytes to transmit
169 * @param[in] rx The receive buffer
170 * @param[in] rx_length The number of bytes to receive
171 * @param[in] bit_width The bit width of buffer words
172 * @param[in] event The logical OR of events to be registered
173 * @param[in] handler SPI interrupt handler
174 * @param[in] hint A suggestion for how to use DMA with this transfer
175 */
176void spi_master_transfer(spi_t *obj, const void *tx, size_t tx_length, void *rx, size_t rx_length, uint8_t bit_width, uint32_t handler, uint32_t event, DMAUsage hint);
177
178/** The asynchronous IRQ handler
179 *
180 * Reads the received values out of the RX FIFO, writes values into the TX FIFO and checks for transfer termination
181 * conditions, such as buffer overflows or transfer complete.
182 * @param[in] obj The SPI object that holds the transfer information
183 * @return Event flags if a transfer termination condition was met; otherwise 0.
184 */
185uint32_t spi_irq_handler_asynch(spi_t *obj);
186
187/** Attempts to determine if the SPI peripheral is already in use
188 *
189 * If a temporary DMA channel has been allocated, peripheral is in use.
190 * If a permanent DMA channel has been allocated, check if the DMA channel is in use. If not, proceed as though no DMA
191 * channel were allocated.
192 * If no DMA channel is allocated, check whether tx and rx buffers have been assigned. For each assigned buffer, check
193 * if the corresponding buffer position is less than the buffer length. If buffers do not indicate activity, check if
194 * there are any bytes in the FIFOs.
195 * @param[in] obj The SPI object to check for activity
196 * @return Non-zero if the SPI port is active or zero if it is not.
197 */
198uint8_t spi_active(spi_t *obj);
199
200/** Abort an SPI transfer
201 *
202 * @param obj The SPI peripheral to stop
203 */
204void spi_abort_asynch(spi_t *obj);
205
206
207#endif
208
209/**@}*/
210
211#ifdef __cplusplus
212}
213#endif // __cplusplus
214
215#endif // SPI_DEVICE
216
217#endif // MBED_SPI_API_H
218
219/** @}*/
Note: See TracBrowser for help on using the repository browser.