source: EcnlProtoTool/trunk/asp3_dcre/mbed/hal/spi_api.h@ 321

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

文字コードを設定

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