mbed library sources. Supersedes mbed-src.

Dependents:   Nucleo_Hello_Encoder BLE_iBeaconScan AM1805_DEMO DISCO-F429ZI_ExportTemplate1 ... more

Committer:
AnnaBridge
Date:
Wed Jun 21 17:46:44 2017 +0100
Revision:
167:e84263d55307
Parent:
160:d5399cc887bb
Child:
169:e3b6fe271b81
This updates the lib to the mbed lib v 145

Who changed what in which revision?

UserRevisionLine numberNew contents of line
<> 149:156823d33999 1 /* mbed Microcontroller Library
<> 149:156823d33999 2 * Copyright (c) 2006-2013 ARM Limited
<> 149:156823d33999 3 *
<> 149:156823d33999 4 * Licensed under the Apache License, Version 2.0 (the "License");
<> 149:156823d33999 5 * you may not use this file except in compliance with the License.
<> 149:156823d33999 6 * You may obtain a copy of the License at
<> 149:156823d33999 7 *
<> 149:156823d33999 8 * http://www.apache.org/licenses/LICENSE-2.0
<> 149:156823d33999 9 *
<> 149:156823d33999 10 * Unless required by applicable law or agreed to in writing, software
<> 149:156823d33999 11 * distributed under the License is distributed on an "AS IS" BASIS,
<> 149:156823d33999 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
<> 149:156823d33999 13 * See the License for the specific language governing permissions and
<> 149:156823d33999 14 * limitations under the License.
<> 149:156823d33999 15 */
<> 149:156823d33999 16 #include "drivers/SPI.h"
<> 160:d5399cc887bb 17 #include "platform/mbed_critical.h"
<> 149:156823d33999 18
<> 149:156823d33999 19 #if DEVICE_SPI
<> 149:156823d33999 20
<> 149:156823d33999 21 namespace mbed {
<> 149:156823d33999 22
<> 149:156823d33999 23 #if DEVICE_SPI_ASYNCH && TRANSACTION_QUEUE_SIZE_SPI
<> 149:156823d33999 24 CircularBuffer<Transaction<SPI>, TRANSACTION_QUEUE_SIZE_SPI> SPI::_transaction_buffer;
<> 149:156823d33999 25 #endif
<> 149:156823d33999 26
<> 149:156823d33999 27 SPI::SPI(PinName mosi, PinName miso, PinName sclk, PinName ssel) :
<> 149:156823d33999 28 _spi(),
<> 149:156823d33999 29 #if DEVICE_SPI_ASYNCH
<> 149:156823d33999 30 _irq(this),
<> 149:156823d33999 31 _usage(DMA_USAGE_NEVER),
<> 149:156823d33999 32 #endif
<> 149:156823d33999 33 _bits(8),
<> 149:156823d33999 34 _mode(0),
<> 149:156823d33999 35 _hz(1000000) {
<> 149:156823d33999 36 // No lock needed in the constructor
<> 149:156823d33999 37
<> 149:156823d33999 38 spi_init(&_spi, mosi, miso, sclk, ssel);
<> 149:156823d33999 39 aquire();
<> 149:156823d33999 40 }
<> 149:156823d33999 41
<> 149:156823d33999 42 void SPI::format(int bits, int mode) {
<> 149:156823d33999 43 lock();
<> 149:156823d33999 44 _bits = bits;
<> 149:156823d33999 45 _mode = mode;
<> 149:156823d33999 46 SPI::_owner = NULL; // Not that elegant, but works. rmeyer
<> 149:156823d33999 47 aquire();
<> 149:156823d33999 48 unlock();
<> 149:156823d33999 49 }
<> 149:156823d33999 50
<> 149:156823d33999 51 void SPI::frequency(int hz) {
<> 149:156823d33999 52 lock();
<> 149:156823d33999 53 _hz = hz;
<> 149:156823d33999 54 SPI::_owner = NULL; // Not that elegant, but works. rmeyer
<> 149:156823d33999 55 aquire();
<> 149:156823d33999 56 unlock();
<> 149:156823d33999 57 }
<> 149:156823d33999 58
<> 149:156823d33999 59 SPI* SPI::_owner = NULL;
<> 149:156823d33999 60 SingletonPtr<PlatformMutex> SPI::_mutex;
<> 149:156823d33999 61
<> 149:156823d33999 62 // ignore the fact there are multiple physical spis, and always update if it wasnt us last
<> 149:156823d33999 63 void SPI::aquire() {
<> 149:156823d33999 64 lock();
<> 149:156823d33999 65 if (_owner != this) {
<> 149:156823d33999 66 spi_format(&_spi, _bits, _mode, 0);
<> 149:156823d33999 67 spi_frequency(&_spi, _hz);
<> 149:156823d33999 68 _owner = this;
<> 149:156823d33999 69 }
<> 149:156823d33999 70 unlock();
<> 149:156823d33999 71 }
<> 149:156823d33999 72
<> 149:156823d33999 73 int SPI::write(int value) {
<> 149:156823d33999 74 lock();
<> 149:156823d33999 75 aquire();
<> 149:156823d33999 76 int ret = spi_master_write(&_spi, value);
<> 149:156823d33999 77 unlock();
<> 149:156823d33999 78 return ret;
<> 149:156823d33999 79 }
<> 149:156823d33999 80
AnnaBridge 167:e84263d55307 81 int SPI::write(const char *tx_buffer, int tx_length, char *rx_buffer, int rx_length) {
AnnaBridge 167:e84263d55307 82 lock();
AnnaBridge 167:e84263d55307 83 aquire();
AnnaBridge 167:e84263d55307 84 int ret = spi_master_block_write(&_spi, tx_buffer, tx_length, rx_buffer, rx_length);
AnnaBridge 167:e84263d55307 85 unlock();
AnnaBridge 167:e84263d55307 86 return ret;
AnnaBridge 167:e84263d55307 87 }
AnnaBridge 167:e84263d55307 88
<> 149:156823d33999 89 void SPI::lock() {
<> 149:156823d33999 90 _mutex->lock();
<> 149:156823d33999 91 }
<> 149:156823d33999 92
<> 149:156823d33999 93 void SPI::unlock() {
<> 149:156823d33999 94 _mutex->unlock();
<> 149:156823d33999 95 }
<> 149:156823d33999 96
<> 149:156823d33999 97 #if DEVICE_SPI_ASYNCH
<> 149:156823d33999 98
<> 149:156823d33999 99 int SPI::transfer(const void *tx_buffer, int tx_length, void *rx_buffer, int rx_length, unsigned char bit_width, const event_callback_t& callback, int event)
<> 149:156823d33999 100 {
<> 149:156823d33999 101 if (spi_active(&_spi)) {
<> 149:156823d33999 102 return queue_transfer(tx_buffer, tx_length, rx_buffer, rx_length, bit_width, callback, event);
<> 149:156823d33999 103 }
<> 149:156823d33999 104 start_transfer(tx_buffer, tx_length, rx_buffer, rx_length, bit_width, callback, event);
<> 149:156823d33999 105 return 0;
<> 149:156823d33999 106 }
<> 149:156823d33999 107
<> 149:156823d33999 108 void SPI::abort_transfer()
<> 149:156823d33999 109 {
<> 149:156823d33999 110 spi_abort_asynch(&_spi);
<> 149:156823d33999 111 #if TRANSACTION_QUEUE_SIZE_SPI
<> 149:156823d33999 112 dequeue_transaction();
<> 149:156823d33999 113 #endif
<> 149:156823d33999 114 }
<> 149:156823d33999 115
<> 149:156823d33999 116
<> 149:156823d33999 117 void SPI::clear_transfer_buffer()
<> 149:156823d33999 118 {
<> 149:156823d33999 119 #if TRANSACTION_QUEUE_SIZE_SPI
<> 149:156823d33999 120 _transaction_buffer.reset();
<> 149:156823d33999 121 #endif
<> 149:156823d33999 122 }
<> 149:156823d33999 123
<> 149:156823d33999 124 void SPI::abort_all_transfers()
<> 149:156823d33999 125 {
<> 149:156823d33999 126 clear_transfer_buffer();
<> 149:156823d33999 127 abort_transfer();
<> 149:156823d33999 128 }
<> 149:156823d33999 129
<> 149:156823d33999 130 int SPI::set_dma_usage(DMAUsage usage)
<> 149:156823d33999 131 {
<> 149:156823d33999 132 if (spi_active(&_spi)) {
<> 149:156823d33999 133 return -1;
<> 149:156823d33999 134 }
<> 149:156823d33999 135 _usage = usage;
<> 149:156823d33999 136 return 0;
<> 149:156823d33999 137 }
<> 149:156823d33999 138
<> 149:156823d33999 139 int SPI::queue_transfer(const void *tx_buffer, int tx_length, void *rx_buffer, int rx_length, unsigned char bit_width, const event_callback_t& callback, int event)
<> 149:156823d33999 140 {
<> 149:156823d33999 141 #if TRANSACTION_QUEUE_SIZE_SPI
<> 149:156823d33999 142 transaction_t t;
<> 149:156823d33999 143
<> 149:156823d33999 144 t.tx_buffer = const_cast<void *>(tx_buffer);
<> 149:156823d33999 145 t.tx_length = tx_length;
<> 149:156823d33999 146 t.rx_buffer = rx_buffer;
<> 149:156823d33999 147 t.rx_length = rx_length;
<> 149:156823d33999 148 t.event = event;
<> 149:156823d33999 149 t.callback = callback;
<> 149:156823d33999 150 t.width = bit_width;
<> 149:156823d33999 151 Transaction<SPI> transaction(this, t);
<> 149:156823d33999 152 if (_transaction_buffer.full()) {
<> 149:156823d33999 153 return -1; // the buffer is full
<> 149:156823d33999 154 } else {
<> 149:156823d33999 155 core_util_critical_section_enter();
<> 149:156823d33999 156 _transaction_buffer.push(transaction);
<> 149:156823d33999 157 if (!spi_active(&_spi)) {
<> 149:156823d33999 158 dequeue_transaction();
<> 149:156823d33999 159 }
<> 149:156823d33999 160 core_util_critical_section_exit();
<> 149:156823d33999 161 return 0;
<> 149:156823d33999 162 }
<> 149:156823d33999 163 #else
<> 149:156823d33999 164 return -1;
<> 149:156823d33999 165 #endif
<> 149:156823d33999 166 }
<> 149:156823d33999 167
<> 149:156823d33999 168 void SPI::start_transfer(const void *tx_buffer, int tx_length, void *rx_buffer, int rx_length, unsigned char bit_width, const event_callback_t& callback, int event)
<> 149:156823d33999 169 {
<> 149:156823d33999 170 aquire();
<> 149:156823d33999 171 _callback = callback;
<> 149:156823d33999 172 _irq.callback(&SPI::irq_handler_asynch);
<> 149:156823d33999 173 spi_master_transfer(&_spi, tx_buffer, tx_length, rx_buffer, rx_length, bit_width, _irq.entry(), event , _usage);
<> 149:156823d33999 174 }
<> 149:156823d33999 175
<> 149:156823d33999 176 #if TRANSACTION_QUEUE_SIZE_SPI
<> 149:156823d33999 177
<> 149:156823d33999 178 void SPI::start_transaction(transaction_t *data)
<> 149:156823d33999 179 {
<> 149:156823d33999 180 start_transfer(data->tx_buffer, data->tx_length, data->rx_buffer, data->rx_length, data->width, data->callback, data->event);
<> 149:156823d33999 181 }
<> 149:156823d33999 182
<> 149:156823d33999 183 void SPI::dequeue_transaction()
<> 149:156823d33999 184 {
<> 149:156823d33999 185 Transaction<SPI> t;
<> 149:156823d33999 186 if (_transaction_buffer.pop(t)) {
<> 149:156823d33999 187 SPI* obj = t.get_object();
<> 149:156823d33999 188 transaction_t* data = t.get_transaction();
<> 149:156823d33999 189 obj->start_transaction(data);
<> 149:156823d33999 190 }
<> 149:156823d33999 191 }
<> 149:156823d33999 192
<> 149:156823d33999 193 #endif
<> 149:156823d33999 194
<> 149:156823d33999 195 void SPI::irq_handler_asynch(void)
<> 149:156823d33999 196 {
<> 149:156823d33999 197 int event = spi_irq_handler_asynch(&_spi);
<> 149:156823d33999 198 if (_callback && (event & SPI_EVENT_ALL)) {
<> 149:156823d33999 199 _callback.call(event & SPI_EVENT_ALL);
<> 149:156823d33999 200 }
<> 149:156823d33999 201 #if TRANSACTION_QUEUE_SIZE_SPI
<> 149:156823d33999 202 if (event & (SPI_EVENT_ALL | SPI_EVENT_INTERNAL_TRANSFER_COMPLETE)) {
<> 149:156823d33999 203 // SPI peripheral is free (event happend), dequeue transaction
<> 149:156823d33999 204 dequeue_transaction();
<> 149:156823d33999 205 }
<> 149:156823d33999 206 #endif
<> 149:156823d33999 207 }
<> 149:156823d33999 208
<> 149:156823d33999 209 #endif
<> 149:156823d33999 210
<> 149:156823d33999 211 } // namespace mbed
<> 149:156823d33999 212
<> 149:156823d33999 213 #endif