2018-03-30 12:20:42 +08:00
|
|
|
/*
|
|
|
|
* File : drv_spi_bus.c
|
|
|
|
* This file is part of RT-Thread RTOS
|
|
|
|
* COPYRIGHT (C) 2006-2013, RT-Thread Development Team
|
|
|
|
*
|
|
|
|
* The license and distribution terms for this file may be
|
|
|
|
* found in the file LICENSE in this distribution or at
|
|
|
|
* http://www.rt-thread.org/license/LICENSE
|
|
|
|
*
|
|
|
|
* Change Logs:
|
|
|
|
* Date Author Notes
|
|
|
|
* 2018-03-27 Liuguang the first version.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "drv_spi_bus.h"
|
|
|
|
|
|
|
|
#include "fsl_common.h"
|
|
|
|
#include "fsl_iomuxc.h"
|
|
|
|
#include "fsl_lpspi.h"
|
|
|
|
|
2018-04-13 00:50:19 +08:00
|
|
|
#if defined(RT_USING_SPIBUS1) || defined(RT_USING_SPIBUS2) || \
|
|
|
|
defined(RT_USING_SPIBUS3) || defined(RT_USING_SPIBUS4)
|
2018-03-30 12:20:42 +08:00
|
|
|
|
|
|
|
#if defined(FSL_SDK_DISABLE_DRIVER_CLOCK_CONTROL) && FSL_SDK_DISABLE_DRIVER_CLOCK_CONTROL
|
|
|
|
#error "Please don't define 'FSL_SDK_DISABLE_DRIVER_CLOCK_CONTROL'!"
|
|
|
|
#endif
|
|
|
|
|
2018-03-31 20:25:13 +08:00
|
|
|
#if !defined(LPSPI_CLK_SOURCE)
|
|
|
|
#define LPSPI_CLK_SOURCE (1U) /* PLL3 PFD0 */
|
|
|
|
#endif
|
|
|
|
#if !defined(LPSPI_CLK_SOURCE_DIVIDER)
|
2018-04-13 00:50:19 +08:00
|
|
|
#define LPSPI_CLK_SOURCE_DIVIDER (8U) /* 8div */
|
2018-03-31 20:25:13 +08:00
|
|
|
#endif
|
|
|
|
|
|
|
|
/* LPSPI1 SCK SDO SDI IOMUX Config */
|
|
|
|
#if defined(LPSPI1_SCK_GPIO_1)
|
|
|
|
#define LPSPI1_SCK_GPIO IOMUXC_GPIO_EMC_27_LPSPI1_SCK
|
|
|
|
#elif defined(LPSPI1_SCK_GPIO_2)
|
|
|
|
#define LPSPI1_SCK_GPIO IOMUXC_GPIO_SD_B0_00_LPSPI1_SCK
|
|
|
|
#else
|
|
|
|
#define LPSPI1_SCK_GPIO IOMUXC_GPIO_SD_B0_00_LPSPI1_SCK
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(LPSPI1_SDO_GPIO_1)
|
|
|
|
#define LPSPI1_SDO_GPIO IOMUXC_GPIO_EMC_28_LPSPI1_SDO
|
|
|
|
#elif defined(LPSPI1_SDO_GPIO_2)
|
|
|
|
#define LPSPI1_SDO_GPIO IOMUXC_GPIO_SD_B0_02_LPSPI1_SDO
|
|
|
|
#else
|
|
|
|
#define LPSPI1_SDO_GPIO IOMUXC_GPIO_SD_B0_02_LPSPI1_SDO
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(LPSPI1_SDI_GPIO_1)
|
|
|
|
#define LPSPI1_SDI_GPIO IOMUXC_GPIO_EMC_29_LPSPI1_SDI
|
|
|
|
#elif defined(LPSPI1_SDI_GPIO_2)
|
|
|
|
#define LPSPI1_SDI_GPIO IOMUXC_GPIO_SD_B0_03_LPSPI1_SDI
|
|
|
|
#else
|
|
|
|
#define LPSPI1_SDI_GPIO IOMUXC_GPIO_SD_B0_03_LPSPI1_SDI
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* LPSPI2 SCK SDO SDI IOMUX Config */
|
|
|
|
#if defined(LPSPI2_SCK_GPIO_1)
|
|
|
|
#define LPSPI2_SCK_GPIO IOMUXC_GPIO_SD_B1_07_LPSPI2_SCK
|
|
|
|
#elif defined(LPSPI2_SCK_GPIO_2)
|
|
|
|
#define LPSPI2_SCK_GPIO IOMUXC_GPIO_EMC_00_LPSPI2_SCK
|
|
|
|
#else
|
|
|
|
#define LPSPI2_SCK_GPIO IOMUXC_GPIO_SD_B1_07_LPSPI2_SCK
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(LPSPI2_SDO_GPIO_1)
|
|
|
|
#define LPSPI2_SDO_GPIO IOMUXC_GPIO_SD_B1_08_LPSPI2_SD0
|
|
|
|
#elif defined(LPSPI2_SDO_GPIO_2)
|
|
|
|
#define LPSPI2_SDO_GPIO IOMUXC_GPIO_EMC_02_LPSPI2_SDO
|
|
|
|
#else
|
|
|
|
#define LPSPI2_SDO_GPIO IOMUXC_GPIO_SD_B1_08_LPSPI2_SD0
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(LPSPI2_SDI_GPIO_1)
|
|
|
|
#define LPSPI2_SDI_GPIO IOMUXC_GPIO_SD_B1_09_LPSPI2_SDI
|
|
|
|
#elif defined(LPSPI2_SDI_GPIO_2)
|
|
|
|
#define LPSPI2_SDI_GPIO IOMUXC_GPIO_EMC_03_LPSPI2_SDI
|
|
|
|
#else
|
|
|
|
#define LPSPI2_SDI_GPIO IOMUXC_GPIO_SD_B1_09_LPSPI2_SDI
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* LPSPI3 SCK SDO SDI IOMUX Config */
|
|
|
|
#if defined(LPSPI3_SCK_GPIO_1)
|
|
|
|
#define LPSPI3_SCK_GPIO IOMUXC_GPIO_AD_B1_15_LPSPI3_SCK
|
|
|
|
#elif defined(LPSPI3_SCK_GPIO_2)
|
|
|
|
#define LPSPI3_SCK_GPIO IOMUXC_GPIO_AD_B0_00_LPSPI3_SCK
|
|
|
|
#else
|
|
|
|
#define LPSPI3_SCK_GPIO IOMUXC_GPIO_AD_B0_00_LPSPI3_SCK
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(LPSPI3_SDO_GPIO_1)
|
|
|
|
#define LPSPI3_SDO_GPIO IOMUXC_GPIO_AD_B1_14_LPSPI3_SDO
|
|
|
|
#elif defined(LPSPI3_SDO_GPIO_2)
|
|
|
|
#define LPSPI3_SDO_GPIO IOMUXC_GPIO_AD_B0_01_LPSPI3_SDO
|
|
|
|
#else
|
|
|
|
#define LPSPI3_SDO_GPIO IOMUXC_GPIO_AD_B0_01_LPSPI3_SDO
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(LPSPI3_SDI_GPIO_1)
|
|
|
|
#define LPSPI3_SDI_GPIO IOMUXC_GPIO_AD_B1_13_LPSPI3_SDI
|
|
|
|
#elif defined(LPSPI3_SDI_GPIO_2)
|
|
|
|
#define LPSPI3_SDI_GPIO IOMUXC_GPIO_AD_B0_02_LPSPI3_SDI
|
|
|
|
#else
|
|
|
|
#define LPSPI3_SDI_GPIO IOMUXC_GPIO_AD_B0_02_LPSPI3_SDI
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* LPSPI4 SCK SDO SDI IOMUX Config */
|
|
|
|
#if defined(LPSPI4_SCK_GPIO_1)
|
|
|
|
#define LPSPI4_SCK_GPIO IOMUXC_GPIO_B0_03_LPSPI4_SCK
|
|
|
|
#elif defined(LPSPI4_SCK_GPIO_2)
|
|
|
|
#define LPSPI4_SCK_GPIO IOMUXC_GPIO_B1_07_LPSPI4_SCK
|
|
|
|
#else
|
|
|
|
#define LPSPI4_SCK_GPIO IOMUXC_GPIO_B0_03_LPSPI4_SCK
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(LPSPI4_SDO_GPIO_1)
|
|
|
|
#define LPSPI4_SDO_GPIO IOMUXC_GPIO_B0_02_LPSPI4_SDO
|
|
|
|
#elif defined(LPSPI4_SDO_GPIO_2)
|
|
|
|
#define LPSPI4_SDO_GPIO IOMUXC_GPIO_B1_06_LPSPI4_SDO
|
|
|
|
#else
|
|
|
|
#define LPSPI4_SDO_GPIO IOMUXC_GPIO_B0_02_LPSPI4_SDO
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(LPSPI4_SDI_GPIO_1)
|
|
|
|
#define LPSPI4_SDI_GPIO IOMUXC_GPIO_B0_01_LPSPI4_SDI
|
|
|
|
#elif defined(LPSPI4_SDI_GPIO_2)
|
|
|
|
#define LPSPI4_SDI_GPIO IOMUXC_GPIO_B1_05_LPSPI4_SDI
|
|
|
|
#else
|
|
|
|
#define LPSPI4_SDI_GPIO IOMUXC_GPIO_B0_01_LPSPI4_SDI
|
|
|
|
#endif
|
|
|
|
|
2018-03-30 12:20:42 +08:00
|
|
|
struct rt1050_spi
|
|
|
|
{
|
|
|
|
LPSPI_Type *base;
|
|
|
|
struct rt_spi_configuration *cfg;
|
|
|
|
};
|
|
|
|
|
2018-03-31 20:25:13 +08:00
|
|
|
struct rt1050_sw_spi_cs
|
2018-03-30 12:20:42 +08:00
|
|
|
{
|
|
|
|
rt_uint32_t pin;
|
|
|
|
};
|
|
|
|
|
|
|
|
static uint32_t rt1050_get_lpspi_freq(void)
|
|
|
|
{
|
|
|
|
uint32_t freq = 0;
|
|
|
|
|
|
|
|
/* CLOCK_GetMux(kCLOCK_LpspiMux):
|
|
|
|
00b: derive clock from PLL3 PFD1 720M
|
|
|
|
01b: derive clock from PLL3 PFD0 720M
|
|
|
|
10b: derive clock from PLL2 528M
|
|
|
|
11b: derive clock from PLL2 PFD2 396M
|
|
|
|
*/
|
|
|
|
switch(CLOCK_GetMux(kCLOCK_LpspiMux))
|
|
|
|
{
|
|
|
|
case 0:
|
|
|
|
freq = CLOCK_GetFreq(kCLOCK_Usb1PllPfd1Clk);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 1:
|
|
|
|
freq = CLOCK_GetFreq(kCLOCK_Usb1PllPfd0Clk);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 2:
|
|
|
|
freq = CLOCK_GetFreq(kCLOCK_SysPllClk);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 3:
|
|
|
|
freq = CLOCK_GetFreq(kCLOCK_SysPllPfd2Clk);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
freq /= (CLOCK_GetDiv(kCLOCK_LpspiDiv) + 1U);
|
|
|
|
|
|
|
|
return freq;
|
|
|
|
}
|
|
|
|
|
|
|
|
static rt_err_t rt1050_spi_init(LPSPI_Type *base, struct rt_spi_configuration *cfg)
|
|
|
|
{
|
|
|
|
lpspi_master_config_t masterConfig;
|
|
|
|
|
2018-03-31 20:25:13 +08:00
|
|
|
RT_ASSERT(cfg != RT_NULL);
|
|
|
|
|
2018-03-30 12:20:42 +08:00
|
|
|
if(cfg->data_width != 8 && cfg->data_width != 16 && cfg->data_width != 32)
|
|
|
|
{
|
|
|
|
return RT_EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
#if defined(RT_USING_SPIBUS1)
|
|
|
|
if(base == LPSPI1)
|
|
|
|
{
|
2018-03-31 20:25:13 +08:00
|
|
|
IOMUXC_SetPinMux (LPSPI1_SCK_GPIO, 0U);
|
|
|
|
IOMUXC_SetPinConfig(LPSPI1_SCK_GPIO, 0x10B0u);
|
|
|
|
IOMUXC_SetPinMux (LPSPI1_SDO_GPIO, 0U);
|
|
|
|
IOMUXC_SetPinConfig(LPSPI1_SDO_GPIO, 0x10B0u);
|
|
|
|
IOMUXC_SetPinMux (LPSPI1_SDI_GPIO, 0U);
|
|
|
|
IOMUXC_SetPinConfig(LPSPI1_SDI_GPIO, 0x10B0u);
|
2018-03-30 12:20:42 +08:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(RT_USING_SPIBUS2)
|
|
|
|
if(base == LPSPI2)
|
|
|
|
{
|
2018-03-31 20:25:13 +08:00
|
|
|
IOMUXC_SetPinMux (LPSPI2_SCK_GPIO, 0U);
|
|
|
|
IOMUXC_SetPinConfig(LPSPI2_SCK_GPIO, 0x10B0u);
|
|
|
|
IOMUXC_SetPinMux (LPSPI2_SDO_GPIO, 0U);
|
|
|
|
IOMUXC_SetPinConfig(LPSPI2_SDO_GPIO, 0x10B0u);
|
|
|
|
IOMUXC_SetPinMux (LPSPI2_SDI_GPIO, 0U);
|
|
|
|
IOMUXC_SetPinConfig(LPSPI2_SDI_GPIO, 0x10B0u);
|
2018-03-30 12:20:42 +08:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(RT_USING_SPIBUS3)
|
|
|
|
if(base == LPSPI3)
|
|
|
|
{
|
2018-03-31 20:25:13 +08:00
|
|
|
IOMUXC_SetPinMux (LPSPI3_SCK_GPIO, 0U);
|
|
|
|
IOMUXC_SetPinConfig(LPSPI3_SCK_GPIO, 0x10B0u);
|
|
|
|
IOMUXC_SetPinMux (LPSPI3_SDO_GPIO, 0U);
|
|
|
|
IOMUXC_SetPinConfig(LPSPI3_SDO_GPIO, 0x10B0u);
|
|
|
|
IOMUXC_SetPinMux (LPSPI3_SDI_GPIO, 0U);
|
|
|
|
IOMUXC_SetPinConfig(LPSPI3_SDI_GPIO, 0x10B0u);
|
2018-03-30 12:20:42 +08:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(RT_USING_SPIBUS4)
|
|
|
|
if(base == LPSPI4)
|
|
|
|
{
|
2018-03-31 20:25:13 +08:00
|
|
|
IOMUXC_SetPinMux (LPSPI4_SCK_GPIO, 0U);
|
|
|
|
IOMUXC_SetPinConfig(LPSPI4_SCK_GPIO, 0x10B0u);
|
|
|
|
IOMUXC_SetPinMux (LPSPI4_SDO_GPIO, 0U);
|
|
|
|
IOMUXC_SetPinConfig(LPSPI4_SDO_GPIO, 0x10B0u);
|
|
|
|
IOMUXC_SetPinMux (LPSPI4_SDI_GPIO, 0U);
|
|
|
|
IOMUXC_SetPinConfig(LPSPI4_SDI_GPIO, 0x10B0u);
|
2018-03-30 12:20:42 +08:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
LPSPI_MasterGetDefaultConfig(&masterConfig);
|
|
|
|
|
2018-03-31 20:25:13 +08:00
|
|
|
if(cfg->max_hz > 40*1000*1000)
|
|
|
|
{
|
|
|
|
cfg->max_hz = 40*1000*1000;
|
|
|
|
}
|
2018-03-30 12:20:42 +08:00
|
|
|
masterConfig.baudRate = cfg->max_hz;
|
|
|
|
masterConfig.bitsPerFrame = cfg->data_width;
|
|
|
|
|
|
|
|
if(cfg->mode & RT_SPI_MSB)
|
|
|
|
{
|
|
|
|
masterConfig.direction = kLPSPI_MsbFirst;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
masterConfig.direction = kLPSPI_LsbFirst;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(cfg->mode & RT_SPI_CPHA)
|
|
|
|
{
|
|
|
|
masterConfig.cpha = kLPSPI_ClockPhaseSecondEdge;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
masterConfig.cpha = kLPSPI_ClockPhaseFirstEdge;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(cfg->mode & RT_SPI_CPOL)
|
|
|
|
{
|
|
|
|
masterConfig.cpol = kLPSPI_ClockPolarityActiveLow;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
masterConfig.cpol = kLPSPI_ClockPolarityActiveHigh;
|
|
|
|
}
|
|
|
|
|
|
|
|
masterConfig.pinCfg = kLPSPI_SdiInSdoOut;
|
|
|
|
masterConfig.dataOutConfig = kLpspiDataOutTristate;
|
|
|
|
masterConfig.pcsToSckDelayInNanoSec = 1000000000 / masterConfig.baudRate;
|
|
|
|
masterConfig.lastSckToPcsDelayInNanoSec = 1000000000 / masterConfig.baudRate;
|
|
|
|
masterConfig.betweenTransferDelayInNanoSec = 1000000000 / masterConfig.baudRate;
|
|
|
|
|
|
|
|
LPSPI_MasterInit(base, &masterConfig, rt1050_get_lpspi_freq());
|
|
|
|
base->CFGR1 |= LPSPI_CFGR1_PCSCFG_MASK;
|
|
|
|
|
|
|
|
return RT_EOK;
|
|
|
|
}
|
|
|
|
|
|
|
|
rt_err_t rt1050_spi_bus_attach_device(const char *bus_name, const char *device_name, rt_uint32_t pin)
|
|
|
|
{
|
2018-03-31 20:25:13 +08:00
|
|
|
rt_err_t ret = RT_EOK;
|
2018-03-30 12:20:42 +08:00
|
|
|
|
|
|
|
struct rt_spi_device *spi_device = (struct rt_spi_device *)rt_malloc(sizeof(struct rt_spi_device));
|
|
|
|
RT_ASSERT(spi_device != RT_NULL);
|
|
|
|
|
2018-03-31 20:25:13 +08:00
|
|
|
struct rt1050_sw_spi_cs *cs_pin = (struct rt1050_sw_spi_cs *)rt_malloc(sizeof(struct rt1050_sw_spi_cs));
|
2018-03-30 12:20:42 +08:00
|
|
|
RT_ASSERT(cs_pin != RT_NULL);
|
|
|
|
|
|
|
|
cs_pin->pin = pin;
|
|
|
|
rt_pin_mode(pin, PIN_MODE_OUTPUT);
|
|
|
|
rt_pin_write(pin, PIN_HIGH);
|
|
|
|
|
|
|
|
ret = rt_spi_bus_attach_device(spi_device, device_name, bus_name, (void *)cs_pin);
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static rt_err_t spi_configure(struct rt_spi_device *device, struct rt_spi_configuration *cfg)
|
|
|
|
{
|
2018-03-31 20:25:13 +08:00
|
|
|
rt_err_t ret = RT_EOK;
|
2018-03-30 12:20:42 +08:00
|
|
|
struct rt1050_spi *spi = RT_NULL;
|
|
|
|
|
|
|
|
RT_ASSERT(cfg != RT_NULL);
|
|
|
|
RT_ASSERT(device != RT_NULL);
|
|
|
|
|
|
|
|
spi = (struct rt1050_spi *)(device->bus->parent.user_data);
|
|
|
|
spi->cfg = cfg;
|
|
|
|
ret = rt1050_spi_init(spi->base, cfg);
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static rt_uint32_t spixfer(struct rt_spi_device *device, struct rt_spi_message *message)
|
|
|
|
{
|
|
|
|
lpspi_transfer_t transfer;
|
|
|
|
|
|
|
|
RT_ASSERT(device != RT_NULL);
|
|
|
|
RT_ASSERT(device->bus != RT_NULL);
|
|
|
|
RT_ASSERT(device->bus->parent.user_data != RT_NULL);
|
|
|
|
|
|
|
|
struct rt1050_spi *spi = (struct rt1050_spi *)(device->bus->parent.user_data);
|
2018-03-31 20:25:13 +08:00
|
|
|
struct rt1050_sw_spi_cs *cs = device->parent.user_data;
|
2018-03-30 12:20:42 +08:00
|
|
|
|
|
|
|
if(message->cs_take)
|
|
|
|
{
|
|
|
|
rt_pin_write(cs->pin, PIN_LOW);
|
|
|
|
}
|
|
|
|
|
|
|
|
transfer.dataSize = message->length;
|
2018-03-31 20:25:13 +08:00
|
|
|
transfer.rxData = (uint8_t *)(message->recv_buf);
|
|
|
|
transfer.txData = (uint8_t *)(message->send_buf);
|
|
|
|
|
|
|
|
LPSPI_MasterTransferBlocking(spi->base, &transfer);
|
2018-03-30 12:20:42 +08:00
|
|
|
|
|
|
|
if(message->cs_release)
|
|
|
|
{
|
|
|
|
rt_pin_write(cs->pin, PIN_HIGH);
|
|
|
|
}
|
|
|
|
|
|
|
|
return message->length;
|
|
|
|
}
|
|
|
|
|
|
|
|
#if defined(RT_USING_SPIBUS1)
|
|
|
|
static struct rt1050_spi spi1 =
|
|
|
|
{
|
|
|
|
.base = LPSPI1
|
|
|
|
};
|
|
|
|
static struct rt_spi_bus spi1_bus =
|
|
|
|
{
|
|
|
|
.parent.user_data = &spi1
|
|
|
|
};
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(RT_USING_SPIBUS2)
|
|
|
|
static struct rt1050_spi spi2 =
|
|
|
|
{
|
|
|
|
.base = LPSPI2
|
|
|
|
};
|
|
|
|
static struct rt_spi_bus spi2_bus =
|
|
|
|
{
|
|
|
|
.parent.user_data = &spi2
|
|
|
|
};
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(RT_USING_SPIBUS3)
|
|
|
|
static struct rt1050_spi spi3 =
|
|
|
|
{
|
|
|
|
.base = LPSPI3
|
|
|
|
};
|
|
|
|
static struct rt_spi_bus spi3_bus =
|
|
|
|
{
|
|
|
|
.parent.user_data = &spi3
|
|
|
|
};
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(RT_USING_SPIBUS4)
|
|
|
|
static struct rt1050_spi spi4 =
|
|
|
|
{
|
|
|
|
.base = LPSPI4
|
|
|
|
};
|
|
|
|
static struct rt_spi_bus spi4_bus =
|
|
|
|
{
|
|
|
|
.parent.user_data = &spi4
|
|
|
|
};
|
|
|
|
#endif
|
|
|
|
|
|
|
|
static struct rt_spi_ops rt1050_spi_ops =
|
|
|
|
{
|
|
|
|
.configure = spi_configure,
|
|
|
|
.xfer = spixfer
|
|
|
|
};
|
|
|
|
|
|
|
|
int rt_hw_spi_bus_init(void)
|
|
|
|
{
|
|
|
|
CLOCK_SetMux(kCLOCK_LpspiMux, LPSPI_CLK_SOURCE);
|
2018-04-13 00:50:19 +08:00
|
|
|
CLOCK_SetDiv(kCLOCK_LpspiDiv, LPSPI_CLK_SOURCE_DIVIDER-1);
|
2018-03-30 12:20:42 +08:00
|
|
|
|
|
|
|
CLOCK_EnableClock(kCLOCK_Iomuxc);
|
|
|
|
|
|
|
|
#if defined(RT_USING_SPIBUS1)
|
2018-03-31 20:25:13 +08:00
|
|
|
rt_spi_bus_register(&spi1_bus, "spi1", &rt1050_spi_ops);
|
2018-03-30 12:20:42 +08:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(RT_USING_SPIBUS2)
|
2018-03-31 20:25:13 +08:00
|
|
|
rt_spi_bus_register(&spi2_bus, "spi2", &rt1050_spi_ops);
|
2018-03-30 12:20:42 +08:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(RT_USING_SPIBUS3)
|
2018-03-31 20:25:13 +08:00
|
|
|
rt_spi_bus_register(&spi3_bus, "spi3", &rt1050_spi_ops);
|
2018-03-30 12:20:42 +08:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#if defined(RT_USING_SPIBUS4)
|
2018-03-31 20:25:13 +08:00
|
|
|
rt_spi_bus_register(&spi4_bus, "spi4", &rt1050_spi_ops);
|
2018-03-30 12:20:42 +08:00
|
|
|
#endif
|
|
|
|
|
|
|
|
return RT_EOK;
|
|
|
|
}
|
|
|
|
INIT_BOARD_EXPORT(rt_hw_spi_bus_init);
|
|
|
|
|
|
|
|
#endif
|