RZ/A Flexible Software Package Documentation  Release v3.0.0

 
I2C Slave (r_riic_slave)

Functions

fsp_err_t R_RIIC_SLAVE_Open (i2c_slave_ctrl_t *const p_api_ctrl, i2c_slave_cfg_t const *const p_cfg)
 
fsp_err_t R_RIIC_SLAVE_Read (i2c_slave_ctrl_t *const p_api_ctrl, uint8_t *const p_dest, uint32_t const bytes)
 
fsp_err_t R_RIIC_SLAVE_Write (i2c_slave_ctrl_t *const p_api_ctrl, uint8_t *const p_src, uint32_t const bytes)
 
fsp_err_t R_RIIC_SLAVE_Close (i2c_slave_ctrl_t *const p_api_ctrl)
 
fsp_err_t R_RIIC_SLAVE_CallbackSet (i2c_slave_ctrl_t *const p_api_ctrl, void(*p_callback)(i2c_slave_callback_args_t *), void const *const p_context, i2c_slave_callback_args_t *const p_callback_memory)
 

Detailed Description

Driver for the RIIC peripheral on RZ MPUs. This module implements the I2C Slave Interface.

Overview

Features

Configuration

Build Time Configurations for r_riic_slave

The following build time configurations are defined in fsp_cfg/r_riic_slave_cfg.h:

ConfigurationOptionsDefaultDescription
Parameter Checking
  • Default (BSP)
  • Enabled
  • Disabled
Default (BSP) If selected code for parameter checking is included in the build.
DMAC Support
  • Enabled
  • Disabled
Disabled If enabled, DMAC instances will be included in the build for both transmission and reception.

Configurations for Connectivity > I2C Slave Driver on r_riic_slave

This module can be added to the Stacks tab via New Stack > Connectivity > I2C Slave Driver on r_riic_slave.

ConfigurationOptionsDefaultDescription
Interrupt Priority Level > Transmit, Receive, and Transmit EndValue must be an integer between 0 and 3124 Select the interrupt priority level. This is set for TXI, RXI, and TEI interrupts.
Interrupt Priority Level > NACK, Start, Stop, Timeout, Arbitration lostValue must be an integer between 0 and 3124 Select the interrupt priority level. This is set for NAKI, SPI, STI, ALI, TMOI interrupt.
NameName must be a valid C symbolg_i2c_slave0 Module name.
ChannelValue must be an integer between 0 and 30 Specify the RIIC channel.
Rate
  • Standard
  • Fast-mode
  • Fast-mode plus
Standard Select the transfer rate.
Internal Reference Clock
  • P0CLK / 1
  • P0CLK / 2
  • P0CLK / 4
  • P0CLK / 8
  • P0CLK / 16
  • P0CLK / 32
  • P0CLK / 64
  • P0CLK / 128
P0CLK / 1 Select the internal reference clock for RIIC slave. The internal reference clock is used only to determine the clock frequency of the noise filter samples.
Digital Noise Filter Stage Select
  • Disabled
  • Single-stage filter
  • 2-stage filter
  • 3-stage filter
  • 4-stage filter
3-stage filter Select the number of digital filter stages for RIIC Slave.
Slave AddressValue must be non-negative0x00 Specify the slave address.
General Call
  • Disabled
  • Enabled
Disabled Allows the slave to respond to general call address: 0x00.
Address Mode
  • 7-Bit
  • 10-Bit
7-Bit Select the slave address mode.
Clock Stretching
  • Disabled
  • Enabled
Disabled Configure Clock Stretching.
CallbackName must be a valid C symbolNULL A user callback function must be provided. This will be called from the interrupt service routine (ISR) to report I2C Slave transaction events and status.

Clock Configuration

The RIIC peripheral module uses the P0 clock as its clock source. The actual I2C transfer rate will be calculated and set by the tooling depending on the selected transfer rate. If the P0 clock is configured in such a manner that the selected transfer rate cannot be achieved, an error will be returned.

Pin Configuration

The IIC peripheral module uses pins on the MPU to communicate to external devices. I/O pins must be selected and configured as required by the external device. An I2C channel would consist of two pins - SDA and SCL for data/address and clock respectively.

Usage Notes

Interrupt Configuration

Callback

RIIC Slave Callback Event RIIC Slave API expected to be called
I2C_SLAVE_EVENT_ABORTED Handle event based on application
I2C_SLAVE_EVENT_RX_COMPLETE Handle event based on application
I2C_SLAVE_EVENT_TX_COMPLETE Handle event based on application
I2C_SLAVE_EVENT_RX_REQUEST R_RIIC_SLAVE_Read API. If the slave is a Write Only device call this API with 0 bytes to send a NACK to the master.
I2C_SLAVE_EVENT_TX_REQUEST R_RIIC_SLAVE_Write API
I2C_SLAVE_EVENT_RX_MORE_REQUEST R_RIIC_SLAVE_Read API. If the slave cannot read any more data call this API with 0 bytes to send a NACK to the master.
I2C_SLAVE_EVENT_TX_MORE_REQUEST R_RIIC_SLAVE_Write API
I2C_SLAVE_EVENT_GENERAL_CALL R_RIIC_SLAVE_Read

RIIC Slave Rate Calculation

Limitations

Examples

Basic Example

This is a basic example of minimal use of the R_RIIC_SLAVE in an application. This example shows how this driver can be used for basic read and write operations.

iic_master_instance_ctrl_t g_i2c_master_ctrl;
i2c_master_cfg_t g_i2c_master_cfg =
{
.channel = I2C_MASTER_CHANNEL_0,
.slave = I2C_7BIT_ADDR_IIC_SLAVE,
.p_callback = i2c_master_callback, // Callback
.p_context = &g_i2c_master_ctrl,
.p_transfer_tx = NULL,
.p_transfer_rx = NULL,
.rxi_irq = RIIC0_RI_IRQn,
.txi_irq = RIIC0_TI_IRQn,
.tei_irq = RIIC0_TEI_IRQn,
.ipl = 24,
.p_extend = &g_iic_master_cfg_extend_standard_mode
};
iic_slave_instance_ctrl_t g_i2c_slave_ctrl;
i2c_slave_cfg_t g_i2c_slave_cfg =
{
.channel = I2C_SLAVE_CHANNEL_1,
.slave = I2C_7BIT_ADDR_IIC_SLAVE,
.rxi_irq = RIIC1_RI_IRQn,
.txi_irq = RIIC1_TI_IRQn,
.tei_irq = RIIC1_TEI_IRQn,
.ipl = 24,
.p_callback = i2c_slave_callback, // Callback
.p_context = &g_i2c_slave_ctrl,
.p_extend = &g_iic_slave_cfg_extend_standard_mode
};
void i2c_master_callback (i2c_master_callback_args_t * p_args)
{
g_i2c_master_callback_event = p_args->event;
}
void i2c_slave_callback (i2c_slave_callback_args_t * p_args)
{
g_i2c_slave_callback_event = p_args->event;
{
/* Transaction Successful */
}
{
/* Read from Master */
err = R_RIIC_SLAVE_Read(&g_i2c_slave_ctrl, g_i2c_slave_buffer, g_slave_transfer_length);
assert(FSP_SUCCESS == err);
}
{
/* Write to master */
err = R_RIIC_SLAVE_Write(&g_i2c_slave_ctrl, g_i2c_slave_buffer, g_slave_transfer_length);
assert(FSP_SUCCESS == err);
}
else
{
/* Error Event - reported through g_i2c_slave_callback_event */
}
}
void basic_example (void)
{
uint32_t i;
uint32_t timeout_ms = I2C_TRANSACTION_BUSY_DELAY;
g_slave_transfer_length = I2C_BUFFER_SIZE_BYTES;
/* Pin connections:
* Channel 0 SDA <--> Channel 1 SDA
* Channel 0 SCL <--> Channel 1 SCL
*/
/* Initialize the RIIC Slave module */
err = R_RIIC_SLAVE_Open(&g_i2c_slave_ctrl, &g_i2c_slave_cfg);
/* Handle any errors. This function should be defined by the user. */
assert(FSP_SUCCESS == err);
/* Initialize the RIIC Master module */
err = R_RIIC_MASTER_Open(&g_i2c_master_ctrl, &g_i2c_master_cfg);
assert(FSP_SUCCESS == err);
/* Write some data to the transmit buffer */
for (i = 0; i < I2C_BUFFER_SIZE_BYTES; i++)
{
g_i2c_master_tx_buffer[i] = (uint8_t) i;
}
/* Send data to I2C slave */
g_i2c_master_callback_event = I2C_MASTER_EVENT_ABORTED;
g_i2c_slave_callback_event = I2C_SLAVE_EVENT_ABORTED;
err = R_RIIC_MASTER_Write(&g_i2c_master_ctrl, &g_i2c_master_tx_buffer[0], I2C_BUFFER_SIZE_BYTES, false);
assert(FSP_SUCCESS == err);
/* Since there is nothing else to do, block until Callback triggers
* The Slave Callback will call the R_RIIC_SLAVE_Read API to service the Master Write Request.
*/
while ((I2C_MASTER_EVENT_TX_COMPLETE != g_i2c_master_callback_event ||
I2C_SLAVE_EVENT_RX_COMPLETE != g_i2c_slave_callback_event) && timeout_ms)
{
timeout_ms--;
}
if ((I2C_MASTER_EVENT_ABORTED == g_i2c_master_callback_event) ||
(I2C_SLAVE_EVENT_ABORTED == g_i2c_slave_callback_event))
{
__BKPT(0);
}
/* Read data back from the I2C slave */
g_i2c_master_callback_event = I2C_MASTER_EVENT_ABORTED;
g_i2c_slave_callback_event = I2C_SLAVE_EVENT_ABORTED;
timeout_ms = I2C_TRANSACTION_BUSY_DELAY;
err = R_RIIC_MASTER_Read(&g_i2c_master_ctrl, &g_i2c_master_rx_buffer[0], I2C_BUFFER_SIZE_BYTES, false);
assert(FSP_SUCCESS == err);
/* Since there is nothing else to do, block until Callback triggers
* The Slave Callback will call the R_RIIC_SLAVE_Write API to service the Master Read Request.
*/
while ((I2C_MASTER_EVENT_RX_COMPLETE != g_i2c_master_callback_event ||
I2C_SLAVE_EVENT_TX_COMPLETE != g_i2c_slave_callback_event) && timeout_ms)
{
timeout_ms--;
}
if ((I2C_MASTER_EVENT_ABORTED == g_i2c_master_callback_event) ||
(I2C_SLAVE_EVENT_ABORTED == g_i2c_slave_callback_event))
{
__BKPT(0);
}
/* Verify the read data */
if (0U != memcmp(g_i2c_master_tx_buffer, g_i2c_master_rx_buffer, I2C_BUFFER_SIZE_BYTES))
{
__BKPT(0);
}
}

Data Structures

struct  iic_slave_clock_settings_t
 
struct  riic_slave_extended_cfg_t
 

Data Structure Documentation

◆ iic_slave_clock_settings_t

struct iic_slave_clock_settings_t

I2C clock settings

Data Fields
uint8_t cks_value Internal Reference Clock Select.
uint8_t brl_value Low-level period of SCL clock.
uint8_t digital_filter_stages Number of digital filter stages based on brl_value.

◆ riic_slave_extended_cfg_t

struct riic_slave_extended_cfg_t

R_IIC_SLAVE extended configuration

Data Fields
iic_slave_clock_settings_t clock_settings I2C Clock settings.
IRQn_Type naki_irq NACK IRQ Number.
IRQn_Type sti_irq Start condition IRQ Number.
IRQn_Type spi_irq Stop condition IRQ Number.
IRQn_Type ali_irq Arbitration lost IRQ Number.
IRQn_Type tmoi_irq Timeout IRQ Number.

Function Documentation

◆ R_RIIC_SLAVE_Open()

fsp_err_t R_RIIC_SLAVE_Open ( i2c_slave_ctrl_t *const  p_api_ctrl,
i2c_slave_cfg_t const *const  p_cfg 
)

Opens the I2C slave device.

Return values
FSP_SUCCESSI2C slave device opened successfully.
FSP_ERR_ALREADY_OPENModule is already open.
FSP_ERR_IP_CHANNEL_NOT_PRESENTChannel is not available on this MPU.
FSP_ERR_INVALID_ARGUMENTNACK, Start, Stop, Timeout, Arbitration lost interrupt priority is lower than Transmit, Receive and Transmit End interrupt priority
FSP_ERR_ASSERTIONParameter check failure due to one or more reasons below:
  1. p_api_ctrl or p_cfg is NULL.
  2. extended parameter is NULL.
  3. Callback parameter is NULL.
  4. Set the rate to fast mode plus on a channel which does not support it.
  5. Invalid IRQ number assigned

◆ R_RIIC_SLAVE_Read()

fsp_err_t R_RIIC_SLAVE_Read ( i2c_slave_ctrl_t *const  p_api_ctrl,
uint8_t *const  p_dest,
uint32_t const  bytes 
)

Performs a read from the I2C Master device.

This function will fail if there is already an in-progress I2C transfer on the associated channel. Otherwise, the I2C slave read operation will begin. The caller will be notified when the operation has finished by an I2C_SLAVE_EVENT_RX_COMPLETE in the callback. In case the master continues to write more data, an I2C_SLAVE_EVENT_RX_MORE_REQUEST will be issued via callback. In case of errors, an I2C_SLAVE_EVENT_ABORTED will be issued via callback.

Return values
FSP_SUCCESSFunction executed without issue
FSP_ERR_ASSERTIONp_api_ctrl, bytes or p_dest is NULL.
FSP_ERR_IN_USEAnother transfer was in progress.
FSP_ERR_NOT_OPENDevice is not open.

◆ R_RIIC_SLAVE_Write()

fsp_err_t R_RIIC_SLAVE_Write ( i2c_slave_ctrl_t *const  p_api_ctrl,
uint8_t *const  p_src,
uint32_t const  bytes 
)

Performs a write to the I2C Master device.

This function will fail if there is already an in-progress I2C transfer on the associated channel. Otherwise, the I2C slave write operation will begin. The caller will be notified when the operation has finished by an I2C_SLAVE_EVENT_TX_COMPLETE in the callback. In case the master continues to read more data, an I2C_SLAVE_EVENT_TX_MORE_REQUEST will be issued via callback. In case of errors, an I2C_SLAVE_EVENT_ABORTED will be issued via callback.

Return values
FSP_SUCCESSFunction executed without issue.
FSP_ERR_ASSERTIONp_api_ctrl or p_src is NULL.
FSP_ERR_IN_USEAnother transfer was in progress.
FSP_ERR_NOT_OPENDevice is not open.

◆ R_RIIC_SLAVE_Close()

fsp_err_t R_RIIC_SLAVE_Close ( i2c_slave_ctrl_t *const  p_api_ctrl)

Closes the I2C device.

Return values
FSP_SUCCESSDevice closed successfully.
FSP_ERR_NOT_OPENDevice not opened.
FSP_ERR_ASSERTIONp_api_ctrl is NULL.

◆ R_RIIC_SLAVE_CallbackSet()

fsp_err_t R_RIIC_SLAVE_CallbackSet ( i2c_slave_ctrl_t *const  p_api_ctrl,
void(*)(i2c_slave_callback_args_t *)  p_callback,
void const *const  p_context,
i2c_slave_callback_args_t *const  p_callback_memory 
)

Updates the user callback and has option of providing memory for callback structure. Implements i2c_slave_api_t::callbackSet

Return values
FSP_SUCCESSCallback updated successfully.
FSP_ERR_ASSERTIONA required pointer is NULL.
FSP_ERR_NOT_OPENThe control block has not been opened.
FSP_ERR_NO_CALLBACK_MEMORYp_callback is non-secure and p_callback_memory is either secure or NULL.