mirror of
https://github.com/jam422470459/EPD-nRF52-hema213.git
synced 2025-12-19 06:43:20 +08:00
move components to SDK dir
This commit is contained in:
438
SDK/12.3.0_d7731ad/components/drivers_nrf/i2s/nrf_drv_i2s.c
Normal file
438
SDK/12.3.0_d7731ad/components/drivers_nrf/i2s/nrf_drv_i2s.c
Normal file
@@ -0,0 +1,438 @@
|
||||
/**
|
||||
* Copyright (c) 2015 - 2017, Nordic Semiconductor ASA
|
||||
*
|
||||
* All rights reserved.
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without modification,
|
||||
* are permitted provided that the following conditions are met:
|
||||
*
|
||||
* 1. Redistributions of source code must retain the above copyright notice, this
|
||||
* list of conditions and the following disclaimer.
|
||||
*
|
||||
* 2. Redistributions in binary form, except as embedded into a Nordic
|
||||
* Semiconductor ASA integrated circuit in a product or a software update for
|
||||
* such product, 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.
|
||||
*
|
||||
* 3. Neither the name of Nordic Semiconductor ASA nor the names of its
|
||||
* contributors may be used to endorse or promote products derived from this
|
||||
* software without specific prior written permission.
|
||||
*
|
||||
* 4. This software, with or without modification, must only be used with a
|
||||
* Nordic Semiconductor ASA integrated circuit.
|
||||
*
|
||||
* 5. Any software provided in binary form under this license must not be reverse
|
||||
* engineered, decompiled, modified and/or disassembled.
|
||||
*
|
||||
* THIS SOFTWARE IS PROVIDED BY NORDIC SEMICONDUCTOR ASA "AS IS" AND ANY EXPRESS
|
||||
* OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
||||
* OF MERCHANTABILITY, NONINFRINGEMENT, AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
* DISCLAIMED. IN NO EVENT SHALL NORDIC SEMICONDUCTOR ASA 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.
|
||||
*
|
||||
*/
|
||||
|
||||
#include "sdk_common.h"
|
||||
#if NRF_MODULE_ENABLED(I2S)
|
||||
#include "nrf_drv_i2s.h"
|
||||
#include "nrf_drv_common.h"
|
||||
#include "nrf_gpio.h"
|
||||
#include "nrf_assert.h"
|
||||
#include "app_util_platform.h"
|
||||
|
||||
#define NRF_LOG_MODULE_NAME "I2S"
|
||||
|
||||
#if I2S_CONFIG_LOG_ENABLED
|
||||
#define NRF_LOG_LEVEL I2S_CONFIG_LOG_LEVEL
|
||||
#define NRF_LOG_INFO_COLOR I2S_CONFIG_INFO_COLOR
|
||||
#define NRF_LOG_DEBUG_COLOR I2S_CONFIG_DEBUG_COLOR
|
||||
#define EVT_TO_STR(event) (event == NRF_I2S_EVENT_RXPTRUPD ? "NRF_I2S_EVENT_RXPTRUPD" : \
|
||||
(event == NRF_I2S_EVENT_TXPTRUPD ? "NRF_I2S_EVENT_TXPTRUPD" : \
|
||||
(event == NRF_I2S_EVENT_STOPPED ? "NRF_I2S_EVENT_STOPPED" : "UNKNOWN EVENT")))
|
||||
#else //I2S_CONFIG_LOG_ENABLED
|
||||
#define EVT_TO_STR(event) ""
|
||||
#define NRF_LOG_LEVEL 0
|
||||
#endif //I2S_CONFIG_LOG_ENABLED
|
||||
#include "nrf_log.h"
|
||||
#include "nrf_log_ctrl.h"
|
||||
|
||||
#define MODULE_INITIALIZED (m_cb.state == NRF_DRV_STATE_INITIALIZED) /**< Macro designating whether the module has been initialized properly. */
|
||||
|
||||
// Control block - driver instance local data.
|
||||
typedef struct
|
||||
{
|
||||
nrf_drv_i2s_data_handler_t handler;
|
||||
nrf_drv_state_t state;
|
||||
|
||||
bool synchronized_mode : 1;
|
||||
bool rx_ready : 1;
|
||||
bool tx_ready : 1;
|
||||
bool just_started : 1;
|
||||
uint16_t buffer_half_size;
|
||||
uint32_t * p_rx_buffer;
|
||||
uint32_t * p_tx_buffer;
|
||||
} i2s_control_block_t;
|
||||
static i2s_control_block_t m_cb;
|
||||
|
||||
|
||||
static nrf_drv_i2s_config_t const m_default_config = NRF_DRV_I2S_DEFAULT_CONFIG;
|
||||
|
||||
|
||||
static void configure_pins(nrf_drv_i2s_config_t const * p_config)
|
||||
{
|
||||
uint32_t mck_pin, sdout_pin, sdin_pin;
|
||||
|
||||
// Configure pins used by the peripheral:
|
||||
|
||||
// - SCK and LRCK (required) - depending on the mode of operation these
|
||||
// pins are configured as outputs (in Master mode) or inputs (in Slave
|
||||
// mode).
|
||||
if (p_config->mode == NRF_I2S_MODE_MASTER)
|
||||
{
|
||||
nrf_gpio_cfg_output(p_config->sck_pin);
|
||||
nrf_gpio_cfg_output(p_config->lrck_pin);
|
||||
}
|
||||
else
|
||||
{
|
||||
nrf_gpio_cfg_input(p_config->sck_pin, NRF_GPIO_PIN_NOPULL);
|
||||
nrf_gpio_cfg_input(p_config->lrck_pin, NRF_GPIO_PIN_NOPULL);
|
||||
}
|
||||
|
||||
// - MCK (optional) - always output,
|
||||
if (p_config->mck_pin != NRF_DRV_I2S_PIN_NOT_USED)
|
||||
{
|
||||
mck_pin = p_config->mck_pin;
|
||||
nrf_gpio_cfg_output(mck_pin);
|
||||
}
|
||||
else
|
||||
{
|
||||
mck_pin = NRF_I2S_PIN_NOT_CONNECTED;
|
||||
}
|
||||
|
||||
// - SDOUT (optional) - always output,
|
||||
if (p_config->sdout_pin != NRF_DRV_I2S_PIN_NOT_USED)
|
||||
{
|
||||
sdout_pin = p_config->sdout_pin;
|
||||
nrf_gpio_cfg_output(sdout_pin);
|
||||
}
|
||||
else
|
||||
{
|
||||
sdout_pin = NRF_I2S_PIN_NOT_CONNECTED;
|
||||
}
|
||||
|
||||
// - SDIN (optional) - always input.
|
||||
if (p_config->sdin_pin != NRF_DRV_I2S_PIN_NOT_USED)
|
||||
{
|
||||
sdin_pin = p_config->sdin_pin;
|
||||
nrf_gpio_cfg_input(sdin_pin, NRF_GPIO_PIN_NOPULL);
|
||||
}
|
||||
else
|
||||
{
|
||||
sdin_pin = NRF_I2S_PIN_NOT_CONNECTED;
|
||||
}
|
||||
|
||||
nrf_i2s_pins_set(NRF_I2S, p_config->sck_pin, p_config->lrck_pin,
|
||||
mck_pin, sdout_pin, sdin_pin);
|
||||
}
|
||||
|
||||
|
||||
ret_code_t nrf_drv_i2s_init(nrf_drv_i2s_config_t const * p_config,
|
||||
nrf_drv_i2s_data_handler_t handler)
|
||||
{
|
||||
ASSERT(handler);
|
||||
|
||||
ret_code_t err_code;
|
||||
|
||||
if (m_cb.state != NRF_DRV_STATE_UNINITIALIZED)
|
||||
{
|
||||
err_code = NRF_ERROR_INVALID_STATE;
|
||||
NRF_LOG_WARNING("Function: %s, error code: %s.\r\n", (uint32_t)__func__, (uint32_t)ERR_TO_STR(err_code));
|
||||
return err_code;
|
||||
}
|
||||
|
||||
if (p_config == NULL)
|
||||
{
|
||||
p_config = &m_default_config;
|
||||
}
|
||||
|
||||
if (!nrf_i2s_configure(NRF_I2S, p_config->mode,
|
||||
p_config->format,
|
||||
p_config->alignment,
|
||||
p_config->sample_width,
|
||||
p_config->channels,
|
||||
p_config->mck_setup,
|
||||
p_config->ratio))
|
||||
{
|
||||
err_code = NRF_ERROR_INVALID_PARAM;
|
||||
NRF_LOG_WARNING("Function: %s, error code: %s.\r\n", (uint32_t)__func__, (uint32_t)ERR_TO_STR(err_code));
|
||||
return err_code;
|
||||
}
|
||||
configure_pins(p_config);
|
||||
|
||||
m_cb.handler = handler;
|
||||
|
||||
nrf_drv_common_irq_enable(I2S_IRQn, p_config->irq_priority);
|
||||
|
||||
m_cb.state = NRF_DRV_STATE_INITIALIZED;
|
||||
|
||||
err_code = NRF_SUCCESS;
|
||||
NRF_LOG_INFO("Function: %s, error code: %s.\r\n", (uint32_t)__func__, (uint32_t)ERR_TO_STR(err_code));
|
||||
return err_code;
|
||||
}
|
||||
|
||||
|
||||
void nrf_drv_i2s_uninit(void)
|
||||
{
|
||||
ASSERT(m_cb.state != NRF_DRV_STATE_UNINITIALIZED);
|
||||
|
||||
nrf_drv_i2s_stop();
|
||||
|
||||
nrf_drv_common_irq_disable(I2S_IRQn);
|
||||
|
||||
m_cb.state = NRF_DRV_STATE_UNINITIALIZED;
|
||||
NRF_LOG_INFO("Initialized.\r\n");
|
||||
}
|
||||
|
||||
|
||||
ret_code_t nrf_drv_i2s_start(uint32_t * p_rx_buffer,
|
||||
uint32_t * p_tx_buffer,
|
||||
uint16_t buffer_size,
|
||||
uint8_t flags)
|
||||
{
|
||||
ASSERT((p_rx_buffer != NULL) || (p_tx_buffer != NULL));
|
||||
|
||||
uint16_t buffer_half_size = buffer_size / 2;
|
||||
ASSERT(buffer_half_size != 0);
|
||||
|
||||
VERIFY_MODULE_INITIALIZED();
|
||||
|
||||
ret_code_t err_code;
|
||||
|
||||
if ((p_rx_buffer != NULL) && !nrf_drv_is_in_RAM(p_rx_buffer))
|
||||
{
|
||||
err_code = NRF_ERROR_INVALID_ADDR;
|
||||
NRF_LOG_WARNING("Function: %s, error code: %s.\r\n", (uint32_t)__func__, (uint32_t)ERR_TO_STR(err_code));
|
||||
return err_code;
|
||||
}
|
||||
|
||||
if ((p_tx_buffer != NULL) && !nrf_drv_is_in_RAM(p_tx_buffer))
|
||||
{
|
||||
err_code = NRF_ERROR_INVALID_ADDR;
|
||||
NRF_LOG_WARNING("Function: %s, error code: %s.\r\n", (uint32_t)__func__, (uint32_t)ERR_TO_STR(err_code));
|
||||
return err_code;
|
||||
}
|
||||
|
||||
// Initially we set up the peripheral to use the first half of each buffer,
|
||||
// then in 'I2S_IRQHandler' we will switch to the second half.
|
||||
nrf_i2s_transfer_set(NRF_I2S, buffer_half_size, p_rx_buffer, p_tx_buffer);
|
||||
|
||||
m_cb.p_rx_buffer = p_rx_buffer;
|
||||
m_cb.p_tx_buffer = p_tx_buffer;
|
||||
m_cb.buffer_half_size = buffer_half_size;
|
||||
m_cb.just_started = true;
|
||||
|
||||
if ((flags & NRF_DRV_I2S_FLAG_SYNCHRONIZED_MODE) &&
|
||||
// [synchronized mode makes sense only when both RX and TX are enabled]
|
||||
(m_cb.p_rx_buffer != NULL) && (m_cb.p_tx_buffer != NULL))
|
||||
{
|
||||
m_cb.synchronized_mode = true;
|
||||
m_cb.rx_ready = false;
|
||||
m_cb.tx_ready = false;
|
||||
}
|
||||
else
|
||||
{
|
||||
m_cb.synchronized_mode = false;
|
||||
}
|
||||
|
||||
nrf_i2s_enable(NRF_I2S);
|
||||
|
||||
m_cb.state = NRF_DRV_STATE_POWERED_ON;
|
||||
|
||||
if (m_cb.p_tx_buffer != NULL)
|
||||
{
|
||||
// Get from the application the first portion of data to be sent - we
|
||||
// need to have it in the transmit buffer before we start the transfer.
|
||||
// Unless the synchronized mode is active. In this mode we must wait
|
||||
// with this until the first portion of data is received, so here we
|
||||
// just make sure that there will be silence on the SDOUT line prior
|
||||
// to that moment.
|
||||
if (m_cb.synchronized_mode)
|
||||
{
|
||||
memset(m_cb.p_tx_buffer, 0, buffer_size);
|
||||
}
|
||||
else
|
||||
{
|
||||
m_cb.handler(NULL, m_cb.p_tx_buffer, m_cb.buffer_half_size);
|
||||
}
|
||||
}
|
||||
|
||||
nrf_i2s_event_clear(NRF_I2S, NRF_I2S_EVENT_RXPTRUPD);
|
||||
nrf_i2s_event_clear(NRF_I2S, NRF_I2S_EVENT_TXPTRUPD);
|
||||
nrf_i2s_int_enable(NRF_I2S,
|
||||
NRF_I2S_INT_RXPTRUPD_MASK | NRF_I2S_INT_TXPTRUPD_MASK);
|
||||
nrf_i2s_task_trigger(NRF_I2S, NRF_I2S_TASK_START);
|
||||
|
||||
err_code = NRF_SUCCESS;
|
||||
NRF_LOG_INFO("Function: %s, error code: %s.\r\n", (uint32_t)__func__, (uint32_t)ERR_TO_STR(err_code));
|
||||
return err_code;
|
||||
}
|
||||
|
||||
|
||||
void nrf_drv_i2s_stop(void)
|
||||
{
|
||||
ASSERT(m_cb.state != NRF_DRV_STATE_UNINITIALIZED);
|
||||
|
||||
// First disable interrupts, then trigger the STOP task, so no spurious
|
||||
// RXPTRUPD and TXPTRUPD events (see FTPAN-55) will be processed.
|
||||
nrf_i2s_int_disable(NRF_I2S,
|
||||
NRF_I2S_INT_RXPTRUPD_MASK | NRF_I2S_INT_TXPTRUPD_MASK);
|
||||
|
||||
nrf_i2s_task_trigger(NRF_I2S, NRF_I2S_TASK_STOP);
|
||||
|
||||
nrf_i2s_disable(NRF_I2S);
|
||||
|
||||
m_cb.state = NRF_DRV_STATE_INITIALIZED;
|
||||
|
||||
NRF_LOG_INFO("Disabled.");
|
||||
}
|
||||
|
||||
|
||||
void I2S_IRQHandler(void)
|
||||
{
|
||||
uint32_t * p_data_received = NULL;
|
||||
uint32_t * p_data_to_send = NULL;
|
||||
|
||||
if (nrf_i2s_event_check(NRF_I2S, NRF_I2S_EVENT_TXPTRUPD))
|
||||
{
|
||||
nrf_i2s_event_clear(NRF_I2S, NRF_I2S_EVENT_TXPTRUPD);
|
||||
NRF_LOG_DEBUG("Event: %s.\r\n", (uint32_t)EVT_TO_STR(NRF_I2S_EVENT_TXPTRUPD));
|
||||
|
||||
// If transmission is not enabled, but for some reason the TXPTRUPD
|
||||
// event has been generated, just ignore it.
|
||||
if (m_cb.p_tx_buffer != NULL)
|
||||
{
|
||||
uint32_t * p_tx_buffer_next;
|
||||
if (nrf_i2s_tx_buffer_get(NRF_I2S) == m_cb.p_tx_buffer)
|
||||
{
|
||||
p_tx_buffer_next = m_cb.p_tx_buffer + m_cb.buffer_half_size;
|
||||
}
|
||||
else
|
||||
{
|
||||
p_tx_buffer_next = m_cb.p_tx_buffer;
|
||||
}
|
||||
nrf_i2s_tx_buffer_set(NRF_I2S, p_tx_buffer_next);
|
||||
|
||||
m_cb.tx_ready = true;
|
||||
|
||||
// Now the part of the buffer that we've configured as "next" should
|
||||
// be filled by the application with proper data to be sent;
|
||||
// the peripheral is sending data from the other part of the buffer
|
||||
// (but it will finish soon...).
|
||||
p_data_to_send = p_tx_buffer_next;
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
if (nrf_i2s_event_check(NRF_I2S, NRF_I2S_EVENT_RXPTRUPD))
|
||||
{
|
||||
nrf_i2s_event_clear(NRF_I2S, NRF_I2S_EVENT_RXPTRUPD);
|
||||
NRF_LOG_DEBUG("Event: %s.\r\n", (uint32_t)EVT_TO_STR(NRF_I2S_EVENT_RXPTRUPD));
|
||||
|
||||
// If reception is not enabled, but for some reason the RXPTRUPD event
|
||||
// has been generated, just ignore it.
|
||||
if (m_cb.p_rx_buffer != NULL)
|
||||
{
|
||||
uint32_t * p_rx_buffer_next;
|
||||
if (nrf_i2s_rx_buffer_get(NRF_I2S) == m_cb.p_rx_buffer)
|
||||
{
|
||||
p_rx_buffer_next = m_cb.p_rx_buffer + m_cb.buffer_half_size;
|
||||
}
|
||||
else
|
||||
{
|
||||
p_rx_buffer_next = m_cb.p_rx_buffer;
|
||||
}
|
||||
nrf_i2s_rx_buffer_set(NRF_I2S, p_rx_buffer_next);
|
||||
|
||||
m_cb.rx_ready = true;
|
||||
|
||||
// The RXPTRUPD event is generated for the first time right after
|
||||
// the transfer is started. Since there is no data received yet at
|
||||
// this point we only update the buffer pointer (it is done above),
|
||||
// there is no callback to the application.
|
||||
// [for synchronized mode this has to be handled differently -
|
||||
// see below]
|
||||
if (m_cb.just_started && !m_cb.synchronized_mode)
|
||||
{
|
||||
m_cb.just_started = false;
|
||||
}
|
||||
else
|
||||
{
|
||||
// The RXPTRUPD event indicates that from now on the peripheral
|
||||
// will be filling the part of the buffer that was pointed at
|
||||
// the time the event has been generated, hence now we can let
|
||||
// the application process the data stored in the other part of
|
||||
// the buffer - the one that we've just set to be filled next.
|
||||
p_data_received = p_rx_buffer_next;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Call the data handler passing received data to the application and/or
|
||||
// requesting data to be sent.
|
||||
if (!m_cb.synchronized_mode)
|
||||
{
|
||||
if ((p_data_received != NULL) || (p_data_to_send != NULL))
|
||||
{
|
||||
if (p_data_received != NULL)
|
||||
{
|
||||
NRF_LOG_DEBUG("Rx data:\r\n");
|
||||
NRF_LOG_HEXDUMP_DEBUG((uint8_t *)p_data_received,
|
||||
m_cb.buffer_half_size * sizeof(p_data_received));
|
||||
}
|
||||
m_cb.handler(p_data_received, p_data_to_send,
|
||||
m_cb.buffer_half_size);
|
||||
if (p_data_to_send != NULL)
|
||||
{
|
||||
NRF_LOG_DEBUG("Tx data:\r\n");
|
||||
NRF_LOG_HEXDUMP_DEBUG((uint8_t *)p_data_to_send,
|
||||
m_cb.buffer_half_size * sizeof(p_data_to_send));
|
||||
}
|
||||
}
|
||||
}
|
||||
// In the synchronized mode wait until the events for both RX and TX occur.
|
||||
// And ignore the initial occurrences of these events, since they only
|
||||
// indicate that the transfer has started - no data is received yet at
|
||||
// that moment, so we have got nothing to pass to the application.
|
||||
else
|
||||
{
|
||||
if (m_cb.rx_ready && m_cb.tx_ready)
|
||||
{
|
||||
m_cb.rx_ready = false;
|
||||
m_cb.tx_ready = false;
|
||||
|
||||
if (m_cb.just_started)
|
||||
{
|
||||
m_cb.just_started = false;
|
||||
}
|
||||
else
|
||||
{
|
||||
NRF_LOG_DEBUG("Rx data:\r\n");
|
||||
NRF_LOG_HEXDUMP_DEBUG((uint8_t *)nrf_i2s_rx_buffer_get(NRF_I2S),
|
||||
m_cb.buffer_half_size * sizeof(p_data_to_send));
|
||||
m_cb.handler(nrf_i2s_rx_buffer_get(NRF_I2S),
|
||||
nrf_i2s_tx_buffer_get(NRF_I2S),
|
||||
m_cb.buffer_half_size);
|
||||
NRF_LOG_DEBUG("Tx data:\r\n");
|
||||
NRF_LOG_HEXDUMP_DEBUG((uint8_t *)nrf_i2s_tx_buffer_get(NRF_I2S),
|
||||
m_cb.buffer_half_size * sizeof(p_data_to_send));
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
#endif //NRF_MODULE_ENABLED(I2S)
|
||||
256
SDK/12.3.0_d7731ad/components/drivers_nrf/i2s/nrf_drv_i2s.h
Normal file
256
SDK/12.3.0_d7731ad/components/drivers_nrf/i2s/nrf_drv_i2s.h
Normal file
@@ -0,0 +1,256 @@
|
||||
/**
|
||||
* Copyright (c) 2015 - 2017, Nordic Semiconductor ASA
|
||||
*
|
||||
* All rights reserved.
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without modification,
|
||||
* are permitted provided that the following conditions are met:
|
||||
*
|
||||
* 1. Redistributions of source code must retain the above copyright notice, this
|
||||
* list of conditions and the following disclaimer.
|
||||
*
|
||||
* 2. Redistributions in binary form, except as embedded into a Nordic
|
||||
* Semiconductor ASA integrated circuit in a product or a software update for
|
||||
* such product, 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.
|
||||
*
|
||||
* 3. Neither the name of Nordic Semiconductor ASA nor the names of its
|
||||
* contributors may be used to endorse or promote products derived from this
|
||||
* software without specific prior written permission.
|
||||
*
|
||||
* 4. This software, with or without modification, must only be used with a
|
||||
* Nordic Semiconductor ASA integrated circuit.
|
||||
*
|
||||
* 5. Any software provided in binary form under this license must not be reverse
|
||||
* engineered, decompiled, modified and/or disassembled.
|
||||
*
|
||||
* THIS SOFTWARE IS PROVIDED BY NORDIC SEMICONDUCTOR ASA "AS IS" AND ANY EXPRESS
|
||||
* OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
||||
* OF MERCHANTABILITY, NONINFRINGEMENT, AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
||||
* DISCLAIMED. IN NO EVENT SHALL NORDIC SEMICONDUCTOR ASA 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.
|
||||
*
|
||||
*/
|
||||
|
||||
/**@file
|
||||
* @addtogroup nrf_i2s I2S HAL and driver
|
||||
* @ingroup nrf_drivers
|
||||
* @brief @tagAPI52 Inter-IC Sound (I2S) interface APIs.
|
||||
*
|
||||
* @defgroup nrf_drv_i2s I2S driver
|
||||
* @{
|
||||
* @ingroup nrf_i2s
|
||||
* @brief @tagAPI52 Inter-IC Sound (I2S) interface driver.
|
||||
*/
|
||||
|
||||
|
||||
#ifndef NRF_DRV_I2S_H__
|
||||
#define NRF_DRV_I2S_H__
|
||||
|
||||
#include "nordic_common.h"
|
||||
#include "sdk_config.h"
|
||||
#include "nrf_i2s.h"
|
||||
#include "sdk_errors.h"
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
|
||||
/**
|
||||
* @brief This value can be provided instead of a pin number for the signals
|
||||
* SDOUT, SDIN, and MCK to specify that a given signal is not used
|
||||
* and therefore does not need to be connected to a pin.
|
||||
*/
|
||||
#define NRF_DRV_I2S_PIN_NOT_USED 0xFF
|
||||
|
||||
/**
|
||||
* @brief Flag indicating that calls to the data handler for RX and TX should
|
||||
* be synchronized, thus always combined into one call.
|
||||
*
|
||||
* Use this flag when calling @ref nrf_drv_i2s_start to force a common call
|
||||
* to the @ref nrf_drv_i2s_data_handler_t "data handler" for RX and TX data.
|
||||
* This is useful, for example, when received data should be processed and
|
||||
* then be sent back. Obviously, this flag is only applicable when both
|
||||
* directions (RX and TX) are enabled.
|
||||
*/
|
||||
#define NRF_DRV_I2S_FLAG_SYNCHRONIZED_MODE 0x01
|
||||
|
||||
/**
|
||||
* @brief I2S driver configuration structure.
|
||||
*/
|
||||
typedef struct
|
||||
{
|
||||
uint8_t sck_pin; ///< SCK pin number.
|
||||
uint8_t lrck_pin; ///< LRCK pin number.
|
||||
uint8_t mck_pin; ///< MCK pin number.
|
||||
/**< Optional. Use @ref NRF_DRV_I2S_PIN_NOT_USED
|
||||
* if this signal is not needed. */
|
||||
uint8_t sdout_pin; ///< SDOUT pin number.
|
||||
/**< Optional. Use @ref NRF_DRV_I2S_PIN_NOT_USED
|
||||
* if this signal is not needed. */
|
||||
uint8_t sdin_pin; ///< SDIN pin number.
|
||||
/**< Optional. Use @ref NRF_DRV_I2S_PIN_NOT_USED
|
||||
* if this signal is not needed. */
|
||||
uint8_t irq_priority; ///< Interrupt priority.
|
||||
|
||||
nrf_i2s_mode_t mode; ///< Mode of operation.
|
||||
nrf_i2s_format_t format; ///< Frame format.
|
||||
nrf_i2s_align_t alignment; ///< Alignment of sample within a frame.
|
||||
nrf_i2s_swidth_t sample_width; ///< Sample width.
|
||||
nrf_i2s_channels_t channels; ///< Enabled channels.
|
||||
nrf_i2s_mck_t mck_setup; ///< Master clock setup.
|
||||
nrf_i2s_ratio_t ratio; ///< MCK/LRCK ratio.
|
||||
} nrf_drv_i2s_config_t;
|
||||
|
||||
/**
|
||||
* @brief I2S driver default configuration.
|
||||
*/
|
||||
#define NRF_DRV_I2S_DEFAULT_CONFIG \
|
||||
{ \
|
||||
.sck_pin = I2S_CONFIG_SCK_PIN, \
|
||||
.lrck_pin = I2S_CONFIG_LRCK_PIN, \
|
||||
.mck_pin = I2S_CONFIG_MCK_PIN, \
|
||||
.sdout_pin = I2S_CONFIG_SDOUT_PIN, \
|
||||
.sdin_pin = I2S_CONFIG_SDIN_PIN, \
|
||||
.irq_priority = I2S_CONFIG_IRQ_PRIORITY, \
|
||||
.mode = (nrf_i2s_mode_t)I2S_CONFIG_MASTER, \
|
||||
.format = (nrf_i2s_format_t)I2S_CONFIG_FORMAT, \
|
||||
.alignment = (nrf_i2s_align_t)I2S_CONFIG_ALIGN, \
|
||||
.sample_width = (nrf_i2s_swidth_t)I2S_CONFIG_SWIDTH, \
|
||||
.channels = (nrf_i2s_channels_t)I2S_CONFIG_CHANNELS, \
|
||||
.mck_setup = (nrf_i2s_mck_t)I2S_CONFIG_MCK_SETUP, \
|
||||
.ratio = (nrf_i2s_ratio_t)I2S_CONFIG_RATIO, \
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief I2S driver data handler type.
|
||||
*
|
||||
* A data handling function of this type must be specified during initialization
|
||||
* of the driver. The driver will call this function when a new portion of data
|
||||
* is received or a new portion of data should be prepared for transmission.
|
||||
* The first case is indicated by a non-NULL value in the @p p_data_received
|
||||
* parameter (which points to the memory containing the received data).
|
||||
* Similarly, the second case is indicated by a non-NULL value in the
|
||||
* @p p_data_to_send parameter (which points to where the data to be transmitted
|
||||
* should be placed).
|
||||
*
|
||||
* @note The two cases mentioned above may be indicated separately or combined
|
||||
* into one call (depending on the environment in which the driver is
|
||||
* used). Therefore, both parameters should be checked and handled
|
||||
* properly in every call. @ref NRF_DRV_I2S_FLAG_SYNCHRONIZED_MODE
|
||||
* "Synchronized mode" can be used to always combine these indications.
|
||||
*
|
||||
* @param[in] p_data_received Pointer to the buffer with received data,
|
||||
* or NULL if the handler is called to prepare
|
||||
* transmission only.
|
||||
* @param[out] p_data_to_send Pointer to the buffer where data to be sent
|
||||
* should be written, or NULL if the handler is
|
||||
* called for received data only.
|
||||
* @param[in] number_of_words Length of data received and/or to be written
|
||||
* (in 32-bit words). This value is always equal to
|
||||
* half the size of the buffers set by the call
|
||||
* to the @ref nrf_drv_i2s_start function.
|
||||
*/
|
||||
typedef void (* nrf_drv_i2s_data_handler_t)(uint32_t const * p_data_received,
|
||||
uint32_t * p_data_to_send,
|
||||
uint16_t number_of_words);
|
||||
|
||||
|
||||
/**
|
||||
* @brief Function for initializing the I2S driver.
|
||||
*
|
||||
* @param[in] p_config Pointer to the structure with initial configuration.
|
||||
* If NULL, the default configuration is used.
|
||||
* @param[in] handler Data handler provided by the user. Must not be NULL.
|
||||
*
|
||||
* @retval NRF_SUCCESS If initialization was successful.
|
||||
* @retval NRF_ERROR_INVALID_STATE If the driver was already initialized.
|
||||
* @retval NRF_ERROR_INVALID_PARAM If the requested combination of configuration
|
||||
* options is not allowed by the I2S peripheral.
|
||||
*/
|
||||
ret_code_t nrf_drv_i2s_init(nrf_drv_i2s_config_t const * p_config,
|
||||
nrf_drv_i2s_data_handler_t handler);
|
||||
|
||||
/**
|
||||
* @brief Function for uninitializing the I2S driver.
|
||||
*/
|
||||
void nrf_drv_i2s_uninit(void);
|
||||
|
||||
/**
|
||||
* @brief Function for starting the continuous I2S transfer.
|
||||
*
|
||||
* The I2S data transfer can be performed in one of three modes: RX (reception)
|
||||
* only, TX (transmission) only, or in both directions simultaneously.
|
||||
* The mode is selected by specifying a proper buffer for a given direction
|
||||
* in the call to this function or by passing NULL instead if this direction
|
||||
* should be disabled.
|
||||
*
|
||||
* The length of the buffer (which is a common value for RX and TX if both
|
||||
* directions are enabled) is specified in 32-bit words. One 32-bit memory
|
||||
* word can either contain four 8-bit samples, two 16-bit samples, or one
|
||||
* right-aligned 24-bit sample sign-extended to a 32-bit value.
|
||||
* For a detailed memory mapping for different supported configurations,
|
||||
* see the @linkProductSpecification52.
|
||||
*
|
||||
* The provided buffers are logically divided into two parts of equal size.
|
||||
* One of them is in use by the peripheral (for storing received data or for
|
||||
* getting data to be transmitted, respectively). The other part is provided
|
||||
* to the application via a call to the defined @ref nrf_drv_i2s_data_handler_t
|
||||
* "data handling function", so that the application can process the received
|
||||
* data or prepare the next portion of data to be sent. The two parts are
|
||||
* swapped every time @p buffer_size/2 data words are received or transmitted.
|
||||
*
|
||||
* Additional options are provided using the @p flags parameter:
|
||||
* - @ref NRF_DRV_I2S_FLAG_SYNCHRONIZED_MODE - the calls to data handler should
|
||||
* be done in a synchronized manner (one common call for TX and RX).
|
||||
* Applicable only when both RX and TX are enabled.
|
||||
*
|
||||
* @attention All data exchange is done in the data handler only. In particular,
|
||||
* no data should be written to the transmit buffer before calling
|
||||
* this function (a proper call to the data handler to get the first
|
||||
* portion of data to be sent will be done before the actual transfer
|
||||
* starts).
|
||||
*
|
||||
* @note Peripherals using EasyDMA (like I2S) require the transfer buffers
|
||||
* to be placed in the Data RAM region. If this condition is not met,
|
||||
* this function will fail with the error code NRF_ERROR_INVALID_ADDR.
|
||||
*
|
||||
* @param[in] p_rx_buffer Pointer to the receive buffer.
|
||||
* Pass NULL if reception is not required.
|
||||
* @param[in] p_tx_buffer Pointer to the transmit buffer.
|
||||
* Pass NULL if transmission is not required.
|
||||
* @param[in] buffer_size Size of the buffers (in 32-bit words).
|
||||
* The size must be an even number greater than 0.
|
||||
* @param[in] flags Transfer options (0 for default settings).
|
||||
*
|
||||
* @retval NRF_SUCCESS If the operation was successful.
|
||||
* @retval NRF_ERROR_INVALID_STATE If a transfer was already started or
|
||||
* the driver has not been initialized.
|
||||
* @retval NRF_ERROR_INVALID_ADDR If the provided buffers are not placed
|
||||
* in the Data RAM region.
|
||||
*/
|
||||
ret_code_t nrf_drv_i2s_start(uint32_t * p_rx_buffer,
|
||||
uint32_t * p_tx_buffer,
|
||||
uint16_t buffer_size,
|
||||
uint8_t flags);
|
||||
|
||||
/**
|
||||
* @brief Function for stopping the I2S transfer.
|
||||
*/
|
||||
void nrf_drv_i2s_stop(void);
|
||||
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif // NRF_DRV_I2S_H__
|
||||
|
||||
/** @} */
|
||||
Reference in New Issue
Block a user