Il y avait des problèmes dans la libraire...

Dependents:   X_NUCLEO_CCA02M1

Fork of ST_I2S by ST

drivers/I2S.h

Committer:
Wolfgang Betz
Date:
2017-01-27
Revision:
19:ef6ef1795e30
Parent:
17:7a4a4631672c
Child:
22:e04af8667cad

File content as of revision 19:ef6ef1795e30:

#ifndef MBED_I2S_H
#define MBED_I2S_H

#include "platform/platform.h"

#if DEVICE_I2S

#include "platform/PlatformMutex.h"
#include "hal/stm_i2s_api.h"
#include "platform/SingletonPtr.h"

#include "platform/CThunk.h"
#include "hal/stm_dma_api.h"
#include "platform/CircularBuffer.h"
#include "platform/FunctionPointer.h"
#include "platform/Transaction.h"

#include "events/EventQueue.h"

/** A I2S Master/Slave, used for communicating with I2S slave/master devices
 *
 * The default format is set to master transmission mode, one-shot (i.e. not circular) 
 * 16 data bits & 16 bits per frame, clock polarity 0, 
 * protocol PHILIPS, and a clock frequency of 44.1kHz
 *
 * Most I2S devices will also require Reset signals. These
 * can be controlled using <DigitalOut> pins
 *
 * @Note Synchronization level: Thread safe
 *
 */
class I2S {

public:
    /** Create a I2S master connected to the specified pins
     *
     *  @param dpin  I2S data input/output pin
     *  @param clk   I2S clock output pin
     *  @param wsel  I2S word select output pin (might be NC for PDM sources)
     *  @param fdpin I2S data input pin (for full-duplex operation, default = NC)
     *  @param mck   I2S master clock output (additional pin when needed for some external audio devices, default = NC)
     *
     *  @Note It is up to the application programmer to not generate at the same time two I2S instances with the
     *        same pin (NC excluded) for one of the parameters, otherwise the correct operation of this class cannot be
     *        guaranteed (e.g. things like SPI/I2S clock enabling and above all disabling might not work correctly)!
     */
    I2S(PinName dpin, PinName clk, PinName wsel, PinName fdpin = NC, PinName mck = NC);

    /** Configure the data transmission format
     *
     *  @param dbits Number of data bits per I2S frame (16, 24, or 32)
     *  @param fbits Number of bits per I2S frame (16 or 32)
     *  @param polarity Clock polarity (either 0/low or 1/high, default = 0)
     *  @return Zero if the usage was set, -1 if a transaction is on-going
     */
    int format(int dbits, int fbits, int polarity = 0);

    /** Set the i2s audio frequency
     *
     *  @param hz audio frequency in hz
     *  @return Zero if the usage was set, -1 if a transaction is on-going
     */
    int audio_frequency(unsigned int hz);

    /** Get the i2s audio frequency
     *
     *  @return Currently set audio frequency
     */
    unsigned int get_audio_frequency(void) {
	return _hz;
    }

    /** Set the i2s bus protocol
     *
     *  @param protocol I2S protocol to be used
     *  @return Zero if the usage was set, -1 if a transaction is on-going
     */
    int protocol(i2s_bitorder_t protocol);

    /** Set the i2s mode
     *
     *  @param mode     I2S mode to be used
     *  @param circular I2S should read/write buffers continuously (in circular mode)
     *  @return Zero if the usage was set, -1 if a transaction is on-going
     */
    int mode(i2s_mode_t mode, bool circular);

    /** Start non-blocking I2S transfer as configured with above methods
     *
     * @param tx_buffer The TX buffer with data to be transfered. If NULL is passed,
     *                  no transmission will be set up 
     * @param tx_length The length of TX buffer in bytes
     * @param rx_buffer The RX buffer which is used for received data. If NULL is passed,
     *                  received data will be ignored
     * @param rx_length The length of RX buffer in bytes
     * @param callback  The event callback function
     * @param event     The logical OR of events to notify. Look at i2s hal header file for I2S events.
     * @return Zero if the transfer has started (or been queued), or 
     *         -1   if I2S peripheral is busy (or out of resources)
     */
    template<typename Type>
	int transfer(const Type *tx_buffer, int tx_length, Type *rx_buffer, int rx_length, const mbed::event_callback_t& callback, int event) {
	int ret = 0;

	lock();

	if (i2s_active(&_i2s)
#if TRANSACTION_QUEUE_SIZE_I2S
	    || !_transaction_buffer.empty()
#endif
	    ) {
	    ret = queue_transfer(tx_buffer, tx_length, rx_buffer, rx_length, callback, event);
	} else {
	    start_transfer(tx_buffer, tx_length, rx_buffer, rx_length, callback, event);
	}

	unlock();
	return ret;
    }
    
    /** Abort the on-going I2S transfer, and continue with transfer's in the queue if any.
     */
    void abort_transfer();

    /** Clear the transaction buffer
     */
    void clear_transfer_buffer();

    /** Clear the transaction buffer and abort on-going transfer.
     */
    void abort_all_transfers();

    /** Get transfer status
     *
     *  @return -1 if a transaction is on-going, zero otherwise
     */
    int get_transfer_status();

    /** Get internal module id
     *
     *  @return internal module id
     */
    unsigned int get_module();

    /** Configure DMA priority for transfers
     *
     *  @param prio The DMA priority to be used
     *  @return Zero if the usage was set, -1 if a transaction is on-going
     */
    int set_dma_priority(i2s_dma_prio_t prio);

    /** Harmonize the frequencies of the given I2S objects so that they are
     *  the exact multiple one of the other. It can be useful whenever two I2S
     *  peripherals have to work together and no drift is allowed between them.
     *
     *  @param dev_i2s_1 reference to the first I2S object.
     *  @param dev_i2s_2 reference to the second I2S object.
     *  @return Zero if the frequencies have been harmonized correctly, -1
     *          otherwise.
     */
    static int harmonize(I2S &dev_i2s_1, I2S &dev_i2s_2);


    /** Bottom-half & transactions event queue for all I2S objects
     *  Must be used by application programmer to schedule/execute bottom-halves
     *  (i.e. transfer event callback functions) and automatically start queued
     *  transactions (i.e. transfers), e.g. by calling `events::EventQueue::dispatch_forever()`! */
    static events::EventQueue i2s_bh_queue;

protected:
    /** Acquire exclusive access to this I2S bus
     */
    virtual void lock(void);

    /** Release exclusive access to this I2S bus
     */
    virtual void unlock(void);

    /** I2S TX DMA IRQ handler
     *
     */
    void irq_handler_asynch_tx(void);

    /** I2S RX DMA IRQ handler
     *
     */
    void irq_handler_asynch_rx(void);

    /** Add a transfer to the queue
     * @param data Transaction data
     * @return Zero if a transfer was added to the queue, or -1 if the queue is full
     */
    int queue_transfer(const void *tx_buffer, int tx_length, void *rx_buffer, int rx_length, 
		       const mbed::event_callback_t& callback, int event);
    
    /** Configures a callback, i2s peripheral and initiate a new transfer
     *
     * @param data Transaction data
     */
    void start_transfer(const void *tx_buffer, int tx_length, void *rx_buffer, int rx_length, 
			const mbed::event_callback_t& callback, int event);

    class I2sBhHandler {
	friend class I2S;

	static void i2s_defer_function(const mbed::event_callback_t& bottom_half, int event) {
	    i2s_bh_queue.call(bottom_half, event);
	}

	static void i2s_defer_function(const mbed::Callback<void()>& bottom_half) {
	    i2s_bh_queue.call(bottom_half);
	}
    };

#if TRANSACTION_QUEUE_SIZE_I2S
    /** Start a new transaction
     *
     *  @param data Transaction data
     */
    void start_transaction(mbed::transaction_t *data);

    /** Dequeue a transaction
     *
     */
    void dequeue_transaction();

    mbed::CircularBuffer<mbed::Transaction<I2S>, TRANSACTION_QUEUE_SIZE_I2S> _transaction_buffer;
#endif // TRANSACTION_QUEUE_SIZE_I2S

public:
    virtual ~I2S() {
	/* TODO: cleanup has still to be revised completely! */
	abort_all_transfers();
	i2s_free(&_i2s);
    }

protected:
    i2s_t _i2s;

    CThunk<I2S> _irq_tx;
    CThunk<I2S> _irq_rx;
    mbed::event_callback_t _callback;
    i2s_dma_prio_t _priority; // DMA priority

    void acquire(void);

    static I2S *_owner;
    static SingletonPtr<PlatformMutex> _mutex;

    int _dbits;
    int _fbits;
    int _polarity;
    i2s_bitorder_t _protocol;
    i2s_mode_t _mode;
    bool _circular;
    unsigned int _hz;
};

#endif // DEVICE_I2S

#endif // MBED_I2S_H