For Tiva/LM MCUs, rename up_spiinitialize to tiva_spibus_initialize
This commit is contained in:
parent
e792b09830
commit
5a650d94a0
@ -72,15 +72,15 @@
|
||||
void tiva_boardinitialize(void)
|
||||
{
|
||||
/* Configure SPI chip selects if 1) SSI is not disabled, and 2) the weak function
|
||||
* lm_ssiinitialize() has been brought into the link.
|
||||
* lm_spidev_initialize() has been brought into the link.
|
||||
*/
|
||||
|
||||
/* The Eagle100 microSD CS is on SSI0 */
|
||||
|
||||
#if defined(CONFIG_TIVA_SSI0) /* || defined(CONFIG_TIVA_SSI1) */
|
||||
if (lm_ssiinitialize)
|
||||
if (lm_spidev_initialize)
|
||||
{
|
||||
lm_ssiinitialize();
|
||||
lm_spidev_initialize();
|
||||
}
|
||||
#endif
|
||||
|
||||
|
@ -113,7 +113,7 @@ int board_app_initialize(void)
|
||||
syslog(LOG_INFO, "Initializing SPI port %d\n",
|
||||
CONFIG_NSH_MMCSDSPIPORTNO);
|
||||
|
||||
spi = up_spiinitialize(CONFIG_NSH_MMCSDSPIPORTNO);
|
||||
spi = tiva_spibus_initialize(CONFIG_NSH_MMCSDSPIPORTNO);
|
||||
if (!spi)
|
||||
{
|
||||
syslog(LOG_ERR, "ERROR: Failed to initialize SPI port %d\n",
|
||||
|
@ -94,35 +94,35 @@
|
||||
************************************************************************************/
|
||||
|
||||
/************************************************************************************
|
||||
* Name: lm_ssiinitialize
|
||||
* Name: lm_spidev_initialize
|
||||
*
|
||||
* Description:
|
||||
* Called to configure SPI chip select GPIO pins for the Eagle100 board.
|
||||
*
|
||||
************************************************************************************/
|
||||
|
||||
void weak_function lm_ssiinitialize(void)
|
||||
void weak_function lm_spidev_initialize(void)
|
||||
{
|
||||
/* Configure the SPI-based microSD CS GPIO */
|
||||
|
||||
ssi_dumpgpio("lm_ssiinitialize() before tiva_configgpio()");
|
||||
ssi_dumpgpio("lm_spidev_initialize() before tiva_configgpio()");
|
||||
tiva_configgpio(SDCCS_GPIO);
|
||||
ssi_dumpgpio("lm_ssiinitialize() after tiva_configgpio()");
|
||||
ssi_dumpgpio("lm_spidev_initialize() after tiva_configgpio()");
|
||||
}
|
||||
|
||||
/****************************************************************************
|
||||
* The external functions, tiva_spiselect and tiva_spistatus must be provided
|
||||
* by board-specific logic. The are implementations of the select and status
|
||||
* methods SPI interface defined by struct spi_ops_s (see include/nuttx/spi/spi.h).
|
||||
* All othermethods (including up_spiinitialize()) are provided by common
|
||||
* All othermethods (including tiva_spibus_initialize()) are provided by common
|
||||
* logic. To use this common SPI logic on your board:
|
||||
*
|
||||
* 1. Provide tiva_spiselect() and tiva_spistatus() functions in your
|
||||
* board-specific logic. This function will perform chip selection and
|
||||
* status operations using GPIOs in the way your board is configured.
|
||||
* 2. Add a call to up_spiinitialize() in your low level initialization
|
||||
* 2. Add a call to tiva_spibus_initialize() in your low level initialization
|
||||
* logic
|
||||
* 3. The handle returned by up_spiinitialize() may then be used to bind the
|
||||
* 3. The handle returned by tiva_spibus_initialize() may then be used to bind the
|
||||
* SPI driver to higher level logic (e.g., calling
|
||||
* mmcsd_spislotinitialize(), for example, will bind the SPI driver to
|
||||
* the SPI MMC/SD driver).
|
||||
|
@ -74,13 +74,13 @@
|
||||
void tiva_boardinitialize(void)
|
||||
{
|
||||
/* Configure chip selects if 1) SSI is not disabled, and 2) the weak function
|
||||
* lm_ssiinitialize() has been brought into the link.
|
||||
* lm_spidev_initialize() has been brought into the link.
|
||||
*/
|
||||
|
||||
#if defined(CONFIG_TIVA_SSI0) || defined(CONFIG_TIVA_SSI1)
|
||||
if (lm_ssiinitialize)
|
||||
if (lm_spidev_initialize)
|
||||
{
|
||||
lm_ssiinitialize();
|
||||
lm_spidev_initialize();
|
||||
}
|
||||
#endif
|
||||
|
||||
|
@ -95,19 +95,19 @@
|
||||
************************************************************************************/
|
||||
|
||||
/************************************************************************************
|
||||
* Name: lm_ssiinitialize
|
||||
* Name: lm_spidev_initialize
|
||||
*
|
||||
* Description:
|
||||
* Called to configure chip select GPIO pins for the LM3S9B96 Eval board.
|
||||
*
|
||||
************************************************************************************/
|
||||
|
||||
void weak_function lm_ssiinitialize(void)
|
||||
void weak_function lm_spidev_initialize(void)
|
||||
{
|
||||
/* Configure the CS GPIO */
|
||||
#if 0
|
||||
ssi_dumpgpio("lm_ssiinitialize() Entry");
|
||||
ssi_dumpgpio("lm_ssiinitialize() Exit");
|
||||
ssi_dumpgpio("lm_spidev_initialize() Entry");
|
||||
ssi_dumpgpio("lm_spidev_initialize() Exit");
|
||||
#endif
|
||||
}
|
||||
|
||||
@ -116,15 +116,15 @@ void weak_function lm_ssiinitialize(void)
|
||||
* The external functions, tiva_spiselect and tiva_spistatus must be provided
|
||||
* by board-specific logic. The are implementations of the select and status
|
||||
* methods SPI interface defined by struct spi_ops_s (see include/nuttx/spi/spi.h).
|
||||
* All othermethods (including up_spiinitialize()) are provided by common
|
||||
* All othermethods (including tiva_spibus_initialize()) are provided by common
|
||||
* logic. To use this common SPI logic on your board:
|
||||
*
|
||||
* 1. Provide tiva_spiselect() and tiva_spistatus() functions in your
|
||||
* board-specific logic. This function will perform chip selection and
|
||||
* status operations using GPIOs in the way your board is configured.
|
||||
* 2. Add a call to up_spiinitialize() in your low level initialization
|
||||
* 2. Add a call to tiva_spibus_initialize() in your low level initialization
|
||||
* logic
|
||||
* 3. The handle returned by up_spiinitialize() may then be used to bind the
|
||||
* 3. The handle returned by tiva_spibus_initialize() may then be used to bind the
|
||||
* SPI driver to higher level logic (e.g., calling
|
||||
* mmcsd_spislotinitialize(), for example, will bind the SPI driver to
|
||||
* the SPI MMC/SD driver).
|
||||
|
@ -92,35 +92,35 @@
|
||||
************************************************************************************/
|
||||
|
||||
/************************************************************************************
|
||||
* Name: lm_ssiinitialize
|
||||
* Name: lm_spidev_initialize
|
||||
*
|
||||
* Description:
|
||||
* Called to configure SPI chip select GPIO pins for the MDL-S2E.
|
||||
*
|
||||
************************************************************************************/
|
||||
|
||||
void weak_function lm_ssiinitialize(void)
|
||||
void weak_function lm_spidev_initialize(void)
|
||||
{
|
||||
/* Configure the SPI CS GPIO */
|
||||
|
||||
ssi_dumpgpio("lm_ssiinitialize() Entry)");
|
||||
ssi_dumpgpio("lm_spidev_initialize() Entry)");
|
||||
tiva_configgpio(SSICS_GPIO);
|
||||
ssi_dumpgpio("lm_ssiinitialize() Exit");
|
||||
ssi_dumpgpio("lm_spidev_initialize() Exit");
|
||||
}
|
||||
|
||||
/****************************************************************************
|
||||
* The external functions, tiva_spiselect and tiva_spistatus must be provided
|
||||
* by board-specific logic. The are implementations of the select and status
|
||||
* methods SPI interface defined by struct spi_ops_s (see include/nuttx/spi/spi.h).
|
||||
* All othermethods (including up_spiinitialize()) are provided by common
|
||||
* All othermethods (including tiva_spibus_initialize()) are provided by common
|
||||
* logic. To use this common SPI logic on your board:
|
||||
*
|
||||
* 1. Provide tiva_spiselect() and tiva_spistatus() functions in your
|
||||
* board-specific logic. This function will perform chip selection and
|
||||
* status operations using GPIOs in the way your board is configured.
|
||||
* 2. Add a call to up_spiinitialize() in your low level initialization
|
||||
* 2. Add a call to tiva_spibus_initialize() in your low level initialization
|
||||
* logic
|
||||
* 3. The handle returned by up_spiinitialize() may then be used to bind the
|
||||
* 3. The handle returned by tiva_spibus_initialize() may then be used to bind the
|
||||
* SPI driver to higher level logic (e.g., calling
|
||||
* mmcsd_spislotinitialize(), for example, will bind the SPI driver to
|
||||
* the SPI MMC/SD driver).
|
||||
|
@ -73,15 +73,15 @@
|
||||
void tiva_boardinitialize(void)
|
||||
{
|
||||
/* Configure SPI chip selects if 1) SSI is not disabled, and 2) the weak function
|
||||
* lm_ssiinitialize() has been brought into the link.
|
||||
* lm_spidev_initialize() has been brought into the link.
|
||||
*/
|
||||
|
||||
/* The LM3S6965 Eval Kit microSD CS and OLED are on SSI0 (Duh! There is no SSI1) */
|
||||
|
||||
#if defined(CONFIG_TIVA_SSI0) /* || defined(CONFIG_TIVA_SSI1) */
|
||||
if (lm_ssiinitialize)
|
||||
if (lm_spidev_initialize)
|
||||
{
|
||||
lm_ssiinitialize();
|
||||
lm_spidev_initialize();
|
||||
}
|
||||
#endif
|
||||
|
||||
|
@ -117,7 +117,7 @@ int board_app_initialize(void)
|
||||
syslog(LOG_INFO, "Initializing SPI port %d\n",
|
||||
CONFIG_NSH_MMCSDSPIPORTNO);
|
||||
|
||||
spi = up_spiinitialize(CONFIG_NSH_MMCSDSPIPORTNO);
|
||||
spi = tiva_spibus_initialize(CONFIG_NSH_MMCSDSPIPORTNO);
|
||||
if (!spi)
|
||||
{
|
||||
syslog(LOG_ERR, "ERROR: Failed to initialize SPI port %d\n",
|
||||
|
@ -109,7 +109,7 @@ FAR struct lcd_dev_s *board_graphics_setup(unsigned int devno)
|
||||
|
||||
/* Get the SSI port (configure as a Freescale SPI port) */
|
||||
|
||||
spi = up_spiinitialize(0);
|
||||
spi = tiva_spibus_initialize(0);
|
||||
if (!spi)
|
||||
{
|
||||
glldbg("Failed to initialize SSI port 0\n");
|
||||
|
@ -94,38 +94,38 @@
|
||||
************************************************************************************/
|
||||
|
||||
/************************************************************************************
|
||||
* Name: tiva_ssiinitialize
|
||||
* Name: tiva_spidev_initialize
|
||||
*
|
||||
* Description:
|
||||
* Called to configure SPI chip select GPIO pins for the LM3S6965 Eval Kit.
|
||||
*
|
||||
************************************************************************************/
|
||||
|
||||
void weak_function lm_ssiinitialize(void)
|
||||
void weak_function lm_spidev_initialize(void)
|
||||
{
|
||||
/* Configure the SPI-based microSD CS GPIO */
|
||||
|
||||
ssi_dumpgpio("lm_ssiinitialize() Entry)");
|
||||
ssi_dumpgpio("lm_spidev_initialize() Entry)");
|
||||
tiva_configgpio(SDCCS_GPIO);
|
||||
#ifdef CONFIG_NX_LCDDRIVER
|
||||
tiva_configgpio(OLEDCS_GPIO);
|
||||
#endif
|
||||
ssi_dumpgpio("lm_ssiinitialize() Exit");
|
||||
ssi_dumpgpio("lm_spidev_initialize() Exit");
|
||||
}
|
||||
|
||||
/****************************************************************************
|
||||
* The external functions, tiva_spiselect and tiva_spistatus must be provided
|
||||
* by board-specific logic. The are implementations of the select and status
|
||||
* methods SPI interface defined by struct spi_ops_s (see include/nuttx/spi/spi.h).
|
||||
* All othermethods (including up_spiinitialize()) are provided by common
|
||||
* All othermethods (including tiva_spibus_initialize()) are provided by common
|
||||
* logic. To use this common SPI logic on your board:
|
||||
*
|
||||
* 1. Provide tiva_spiselect() and tiva_spistatus() functions in your
|
||||
* board-specific logic. This function will perform chip selection and
|
||||
* status operations using GPIOs in the way your board is configured.
|
||||
* 2. Add a call to up_spiinitialize() in your low level initialization
|
||||
* 2. Add a call to tiva_spibus_initialize() in your low level initialization
|
||||
* logic
|
||||
* 3. The handle returned by up_spiinitialize() may then be used to bind the
|
||||
* 3. The handle returned by tiva_spibus_initialize() may then be used to bind the
|
||||
* SPI driver to higher level logic (e.g., calling
|
||||
* mmcsd_spislotinitialize(), for example, will bind the SPI driver to
|
||||
* the SPI MMC/SD driver).
|
||||
|
@ -73,15 +73,15 @@
|
||||
void tiva_boardinitialize(void)
|
||||
{
|
||||
/* Configure SPI chip selects if 1) SSI is not disabled, and 2) the weak function
|
||||
* lm_ssiinitialize() has been brought into the link.
|
||||
* lm_spidev_initialize() has been brought into the link.
|
||||
*/
|
||||
|
||||
/* The LM3S8962 Eval Kit microSD CS and OLED are on SSI0 (Duh! There is no SSI1) */
|
||||
|
||||
#if defined(CONFIG_TIVA_SSI0) /* || defined(CONFIG_TIVA_SSI1) */
|
||||
if (lm_ssiinitialize)
|
||||
if (lm_spidev_initialize)
|
||||
{
|
||||
lm_ssiinitialize();
|
||||
lm_spidev_initialize();
|
||||
}
|
||||
#endif
|
||||
|
||||
|
@ -116,7 +116,7 @@ int board_app_initialize(void)
|
||||
syslog(LOG_INFO, "Initializing SPI port %d\n",
|
||||
CONFIG_NSH_MMCSDSPIPORTNO);
|
||||
|
||||
spi = up_spiinitialize(CONFIG_NSH_MMCSDSPIPORTNO);
|
||||
spi = tiva_spibus_initialize(CONFIG_NSH_MMCSDSPIPORTNO);
|
||||
if (!spi)
|
||||
{
|
||||
syslog(LOG_ERR, "ERROR: Failed to initialize SPI port %d\n",
|
||||
|
@ -109,7 +109,7 @@ FAR struct lcd_dev_s *board_graphics_setup(unsigned int devno)
|
||||
|
||||
/* Get the SSI port (configure as a Freescale SPI port) */
|
||||
|
||||
spi = up_spiinitialize(0);
|
||||
spi = tiva_spibus_initialize(0);
|
||||
if (!spi)
|
||||
{
|
||||
glldbg("Failed to initialize SSI port 0\n");
|
||||
|
@ -94,38 +94,38 @@
|
||||
************************************************************************************/
|
||||
|
||||
/************************************************************************************
|
||||
* Name: tiva_ssiinitialize
|
||||
* Name: tiva_spidev_initialize
|
||||
*
|
||||
* Description:
|
||||
* Called to configure SPI chip select GPIO pins for the LM3S8962 Eval Kit.
|
||||
*
|
||||
************************************************************************************/
|
||||
|
||||
void weak_function lm_ssiinitialize(void)
|
||||
void weak_function lm_spidev_initialize(void)
|
||||
{
|
||||
/* Configure the SPI-based microSD CS GPIO */
|
||||
|
||||
ssi_dumpgpio("lm_ssiinitialize() Entry)");
|
||||
ssi_dumpgpio("lm_spidev_initialize() Entry)");
|
||||
tiva_configgpio(SDCCS_GPIO);
|
||||
#ifdef CONFIG_NX_LCDDRIVER
|
||||
tiva_configgpio(OLEDCS_GPIO);
|
||||
#endif
|
||||
ssi_dumpgpio("lm_ssiinitialize() Exit");
|
||||
ssi_dumpgpio("lm_spidev_initialize() Exit");
|
||||
}
|
||||
|
||||
/****************************************************************************
|
||||
* The external functions, tiva_spiselect and tiva_spistatus must be provided
|
||||
* by board-specific logic. The are implementations of the select and status
|
||||
* methods SPI interface defined by struct spi_ops_s (see include/nuttx/spi/spi.h).
|
||||
* All othermethods (including up_spiinitialize()) are provided by common
|
||||
* All othermethods (including tiva_spibus_initialize()) are provided by common
|
||||
* logic. To use this common SPI logic on your board:
|
||||
*
|
||||
* 1. Provide tiva_spiselect() and tiva_spistatus() functions in your
|
||||
* board-specific logic. This function will perform chip selection and
|
||||
* status operations using GPIOs in the way your board is configured.
|
||||
* 2. Add a call to up_spiinitialize() in your low level initialization
|
||||
* 2. Add a call to tiva_spibus_initialize() in your low level initialization
|
||||
* logic
|
||||
* 3. The handle returned by up_spiinitialize() may then be used to bind the
|
||||
* 3. The handle returned by tiva_spibus_initialize() may then be used to bind the
|
||||
* SPI driver to higher level logic (e.g., calling
|
||||
* mmcsd_spislotinitialize(), for example, will bind the SPI driver to
|
||||
* the SPI MMC/SD driver).
|
||||
|
@ -212,14 +212,14 @@
|
||||
************************************************************************************/
|
||||
|
||||
/************************************************************************************
|
||||
* Name: sam_spiinitialize
|
||||
* Name: sam_spidev_initialize
|
||||
*
|
||||
* Description:
|
||||
* Called to configure SPI chip select GPIO pins for the SAM3U-EK board.
|
||||
*
|
||||
************************************************************************************/
|
||||
|
||||
void weak_function sam_spiinitialize(void);
|
||||
void weak_function sam_spidev_initialize(void);
|
||||
|
||||
/************************************************************************************
|
||||
* Name: sam_hsmciinit
|
||||
|
@ -72,13 +72,13 @@
|
||||
void sam_boardinitialize(void)
|
||||
{
|
||||
/* Configure SPI chip selects if 1) SPI is not disabled, and 2) the weak function
|
||||
* sam_spiinitialize() has been brought into the link.
|
||||
* sam_spidev_initialize() has been brought into the link.
|
||||
*/
|
||||
|
||||
#ifdef CONFIG_SAM34_SPI0
|
||||
if (sam_spiinitialize)
|
||||
if (sam_spidev_initialize)
|
||||
{
|
||||
sam_spiinitialize();
|
||||
sam_spidev_initialize();
|
||||
}
|
||||
#endif
|
||||
|
||||
|
@ -377,14 +377,14 @@
|
||||
************************************************************************************/
|
||||
|
||||
/************************************************************************************
|
||||
* Name: sam_spiinitialize
|
||||
* Name: sam_spidev_initialize
|
||||
*
|
||||
* Description:
|
||||
* Called to configure SPI chip select GPIO pins for the SAM4E-EK board.
|
||||
*
|
||||
************************************************************************************/
|
||||
|
||||
void weak_function sam_spiinitialize(void);
|
||||
void weak_function sam_spidev_initialize(void);
|
||||
|
||||
/************************************************************************************
|
||||
* Name: sam_hsmci_initialize
|
||||
|
@ -101,13 +101,13 @@ void sam_boardinitialize(void)
|
||||
board_config_usart1();
|
||||
|
||||
/* Configure SPI chip selects if 1) SPI is not disabled, and 2) the weak function
|
||||
* sam_spiinitialize() has been brought into the link.
|
||||
* sam_spidev_initialize() has been brought into the link.
|
||||
*/
|
||||
|
||||
#ifdef CONFIG_SAM34_SPI0
|
||||
if (sam_spiinitialize)
|
||||
if (sam_spidev_initialize)
|
||||
{
|
||||
sam_spiinitialize();
|
||||
sam_spidev_initialize();
|
||||
}
|
||||
#endif
|
||||
|
||||
|
@ -323,14 +323,14 @@
|
||||
************************************************************************************/
|
||||
|
||||
/************************************************************************************
|
||||
* Name: sam_spiinitialize
|
||||
* Name: sam_spidev_initialize
|
||||
*
|
||||
* Description:
|
||||
* Called to configure SPI chip select GPIO pins for the SAM3U-EK board.
|
||||
*
|
||||
************************************************************************************/
|
||||
|
||||
void weak_function sam_spiinitialize(void);
|
||||
void weak_function sam_spidev_initialize(void);
|
||||
|
||||
/************************************************************************************
|
||||
* Name: sam_sdinitialize
|
||||
|
@ -70,13 +70,13 @@
|
||||
void sam_boardinitialize(void)
|
||||
{
|
||||
/* Configure SPI chip selects if 1) SPI is not disabled, and 2) the weak function
|
||||
* sam_spiinitialize() has been brought into the link.
|
||||
* sam_spidev_initialize() has been brought into the link.
|
||||
*/
|
||||
|
||||
#ifdef CONFIG_SAM34_SPI0
|
||||
if (sam_spiinitialize)
|
||||
if (sam_spidev_initialize)
|
||||
{
|
||||
sam_spiinitialize();
|
||||
sam_spidev_initialize();
|
||||
}
|
||||
#endif
|
||||
|
||||
|
@ -77,13 +77,13 @@ void sam_boardinitialize(void)
|
||||
#endif
|
||||
|
||||
/* Configure SPI chip selects if 1) SPI is enable, and 2) the weak function
|
||||
* sam_spiinitialize() has been brought into the link.
|
||||
* sam_spidev_initialize() has been brought into the link.
|
||||
*/
|
||||
|
||||
#if defined(CONFIG_SAMA5_SPI0) || defined(CONFIG_SAMA5_SPI1)
|
||||
if (sam_spiinitialize)
|
||||
if (sam_spidev_initialize)
|
||||
{
|
||||
sam_spiinitialize();
|
||||
sam_spidev_initialize();
|
||||
}
|
||||
#endif
|
||||
|
||||
|
@ -605,7 +605,7 @@
|
||||
************************************************************************************/
|
||||
|
||||
/************************************************************************************
|
||||
* Name: sam_spiinitialize
|
||||
* Name: sam_spidev_initialize
|
||||
*
|
||||
* Description:
|
||||
* Called to configure SPI chip select PIO pins for the SAMA5D3-Xplained board.
|
||||
@ -613,7 +613,7 @@
|
||||
************************************************************************************/
|
||||
|
||||
#if defined(CONFIG_SAMA5_SPI0) || defined(CONFIG_SAMA5_SPI1)
|
||||
void weak_function sam_spiinitialize(void);
|
||||
void weak_function sam_spidev_initialize(void);
|
||||
#endif
|
||||
|
||||
/************************************************************************************
|
||||
|
@ -77,13 +77,13 @@ void sam_boardinitialize(void)
|
||||
#endif
|
||||
|
||||
/* Configure SPI chip selects if 1) SPI is enable, and 2) the weak function
|
||||
* sam_spiinitialize() has been brought into the link.
|
||||
* sam_spidev_initialize() has been brought into the link.
|
||||
*/
|
||||
|
||||
#if defined(CONFIG_SAMA5_SPI0) || defined(CONFIG_SAMA5_SPI1)
|
||||
if (sam_spiinitialize)
|
||||
if (sam_spidev_initialize)
|
||||
{
|
||||
sam_spiinitialize();
|
||||
sam_spidev_initialize();
|
||||
}
|
||||
#endif
|
||||
|
||||
|
@ -675,7 +675,7 @@
|
||||
************************************************************************************/
|
||||
|
||||
/************************************************************************************
|
||||
* Name: sam_spiinitialize
|
||||
* Name: sam_spidev_initialize
|
||||
*
|
||||
* Description:
|
||||
* Called to configure SPI chip select PIO pins for the SAMA5D3x-EK board.
|
||||
@ -683,7 +683,7 @@
|
||||
************************************************************************************/
|
||||
|
||||
#if defined(CONFIG_SAMA5_SPI0) || defined(CONFIG_SAMA5_SPI1)
|
||||
void weak_function sam_spiinitialize(void);
|
||||
void weak_function sam_spidev_initialize(void);
|
||||
#endif
|
||||
|
||||
/************************************************************************************
|
||||
|
@ -77,14 +77,14 @@ void sam_boardinitialize(void)
|
||||
#endif
|
||||
|
||||
/* Configure SPI chip selects if 1) SPI is enable, and 2) the weak function
|
||||
* sam_spiinitialize() has been brought into the link.
|
||||
* sam_spidev_initialize() has been brought into the link.
|
||||
*/
|
||||
|
||||
#if defined(CONFIG_SAMA5_SPI0) || defined(CONFIG_SAMA5_SPI1) || \
|
||||
defined(CONFIG_SAMA5_SPI2)
|
||||
if (sam_spiinitialize)
|
||||
if (sam_spidev_initialize)
|
||||
{
|
||||
sam_spiinitialize();
|
||||
sam_spidev_initialize();
|
||||
}
|
||||
#endif
|
||||
|
||||
|
@ -877,7 +877,7 @@
|
||||
************************************************************************************/
|
||||
|
||||
/************************************************************************************
|
||||
* Name: sam_spiinitialize
|
||||
* Name: sam_spidev_initialize
|
||||
*
|
||||
* Description:
|
||||
* Called to configure SPI chip select PIO pins for the SAMA5D4-EK board.
|
||||
@ -885,7 +885,7 @@
|
||||
************************************************************************************/
|
||||
|
||||
#if defined(CONFIG_SAMA5_SPI0) || defined(CONFIG_SAMA5_SPI1)
|
||||
void weak_function sam_spiinitialize(void);
|
||||
void weak_function sam_spidev_initialize(void);
|
||||
#endif
|
||||
|
||||
/************************************************************************************
|
||||
|
@ -71,13 +71,13 @@
|
||||
void sam_boardinitialize(void)
|
||||
{
|
||||
/* Configure SPI chip selects if 1) SPI is not disabled, and 2) the weak function
|
||||
* sam_spiinitialize() has been brought into the link.
|
||||
* sam_spidev_initialize() has been brought into the link.
|
||||
*/
|
||||
|
||||
#ifdef SAMDL_HAVE_SPI
|
||||
if (sam_spiinitialize)
|
||||
if (sam_spidev_initialize)
|
||||
{
|
||||
sam_spiinitialize();
|
||||
sam_spidev_initialize();
|
||||
}
|
||||
#endif
|
||||
|
||||
|
@ -236,14 +236,14 @@
|
||||
************************************************************************************/
|
||||
|
||||
/************************************************************************************
|
||||
* Name: sam_spiinitialize
|
||||
* Name: sam_spidev_initialize
|
||||
*
|
||||
* Description:
|
||||
* Called to configure SPI chip select PORT pins for the SAM3U-EK board.
|
||||
*
|
||||
************************************************************************************/
|
||||
|
||||
void weak_function sam_spiinitialize(void);
|
||||
void weak_function sam_spidev_initialize(void);
|
||||
|
||||
/************************************************************************************
|
||||
* Name: sam_sdinitialize
|
||||
|
@ -71,13 +71,13 @@
|
||||
void sam_boardinitialize(void)
|
||||
{
|
||||
/* Configure SPI chip selects if 1) SPI is not disabled, and 2) the weak function
|
||||
* sam_spiinitialize() has been brought into the link.
|
||||
* sam_spidev_initialize() has been brought into the link.
|
||||
*/
|
||||
|
||||
#ifdef SAMDL_HAVE_SPI
|
||||
if (sam_spiinitialize)
|
||||
if (sam_spidev_initialize)
|
||||
{
|
||||
sam_spiinitialize();
|
||||
sam_spidev_initialize();
|
||||
}
|
||||
#endif
|
||||
|
||||
|
@ -236,14 +236,14 @@
|
||||
************************************************************************************/
|
||||
|
||||
/************************************************************************************
|
||||
* Name: sam_spiinitialize
|
||||
* Name: sam_spidev_initialize
|
||||
*
|
||||
* Description:
|
||||
* Called to configure SPI chip select PORT pins for the SAM3U-EK board.
|
||||
*
|
||||
************************************************************************************/
|
||||
|
||||
void weak_function sam_spiinitialize(void);
|
||||
void weak_function sam_spidev_initialize(void);
|
||||
|
||||
/************************************************************************************
|
||||
* Name: sam_sdinitialize
|
||||
|
@ -71,13 +71,13 @@
|
||||
void sam_boardinitialize(void)
|
||||
{
|
||||
/* Configure SPI chip selects if 1) SPI is not disabled, and 2) the weak function
|
||||
* sam_spiinitialize() has been brought into the link.
|
||||
* sam_spidev_initialize() has been brought into the link.
|
||||
*/
|
||||
|
||||
#ifdef SAMDL_HAVE_SPI
|
||||
if (sam_spiinitialize)
|
||||
if (sam_spidev_initialize)
|
||||
{
|
||||
sam_spiinitialize();
|
||||
sam_spidev_initialize();
|
||||
}
|
||||
#endif
|
||||
|
||||
|
@ -237,14 +237,14 @@
|
||||
************************************************************************************/
|
||||
|
||||
/************************************************************************************
|
||||
* Name: sam_spiinitialize
|
||||
* Name: sam_spidev_initialize
|
||||
*
|
||||
* Description:
|
||||
* Called to configure SPI chip select PORT pins for the SAM3U-EK board.
|
||||
*
|
||||
************************************************************************************/
|
||||
|
||||
void weak_function sam_spiinitialize(void);
|
||||
void weak_function sam_spidev_initialize(void);
|
||||
|
||||
/************************************************************************************
|
||||
* Name: sam_sdinitialize
|
||||
|
Loading…
Reference in New Issue
Block a user