2019-08-19 17:16:08 +02:00
|
|
|
/****************************************************************************
|
|
|
|
* boards/arm/stm32/viewtool-stm32f107/src/stm32_spi.c
|
2013-11-30 19:14:15 +01:00
|
|
|
*
|
|
|
|
* Copyright (C) 2013 Gregory Nutt. All rights reserved.
|
|
|
|
* Author: Gregory Nutt <gnutt@nuttx.org>
|
|
|
|
*
|
|
|
|
* 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 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 NuttX nor the names of its contributors may be
|
|
|
|
* used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
|
|
|
|
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
|
|
|
* COPYRIGHT OWNER 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.
|
|
|
|
*
|
2019-08-19 17:16:08 +02:00
|
|
|
****************************************************************************/
|
2013-11-30 19:14:15 +01:00
|
|
|
|
2019-08-19 17:16:08 +02:00
|
|
|
/****************************************************************************
|
2013-11-30 19:14:15 +01:00
|
|
|
* Included Files
|
2019-08-19 17:16:08 +02:00
|
|
|
****************************************************************************/
|
2013-11-30 19:14:15 +01:00
|
|
|
|
|
|
|
#include <nuttx/config.h>
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include <debug.h>
|
|
|
|
|
|
|
|
#include <nuttx/spi/spi.h>
|
|
|
|
#include <arch/board/board.h>
|
|
|
|
|
2020-05-01 03:20:29 +02:00
|
|
|
#include "arm_arch.h"
|
2013-11-30 19:14:15 +01:00
|
|
|
#include "chip.h"
|
|
|
|
#include "stm32.h"
|
|
|
|
#include "viewtool_stm32f107.h"
|
|
|
|
|
|
|
|
#if defined(CONFIG_STM32_SPI1) || defined(CONFIG_STM32_SPI2) || defined(CONFIG_STM32_SPI3)
|
|
|
|
|
2019-08-19 17:16:08 +02:00
|
|
|
/****************************************************************************
|
2013-11-30 19:14:15 +01:00
|
|
|
* Public Functions
|
2019-08-19 17:16:08 +02:00
|
|
|
****************************************************************************/
|
2013-11-30 19:14:15 +01:00
|
|
|
|
2019-08-19 17:16:08 +02:00
|
|
|
/****************************************************************************
|
2016-01-26 19:21:39 +01:00
|
|
|
* Name: stm32_spidev_initialize
|
2013-11-30 19:14:15 +01:00
|
|
|
*
|
|
|
|
* Description:
|
2014-01-09 17:57:17 +01:00
|
|
|
* Called to configure SPI chip select GPIO pins for the Viewtool stm32f103/107
|
|
|
|
* board.
|
2013-11-30 19:14:15 +01:00
|
|
|
*
|
2019-08-19 17:16:08 +02:00
|
|
|
****************************************************************************/
|
2013-11-30 19:14:15 +01:00
|
|
|
|
2016-01-26 19:21:39 +01:00
|
|
|
void weak_function stm32_spidev_initialize(void)
|
2013-11-30 19:14:15 +01:00
|
|
|
{
|
|
|
|
/* NOTE: Clocking for SPIx was already provided in stm32_rcc.c.
|
|
|
|
* Configurations of SPI pins is performed in stm32_spi.c.
|
|
|
|
* Here, we only initialize chip select pins unique to the board
|
|
|
|
* architecture.
|
|
|
|
*/
|
2014-01-09 17:57:17 +01:00
|
|
|
|
|
|
|
#if defined(CONFIG_STM32_SPI2) && defined(CONFIG_INPUT_ADS7843E)
|
|
|
|
/* Configure the XPT2046 SPI2 CS pin as an output */
|
|
|
|
|
2020-01-02 17:49:34 +01:00
|
|
|
stm32_configgpio(GPIO_LCDTP_CS);
|
2014-01-09 17:57:17 +01:00
|
|
|
#endif
|
2015-02-12 19:08:06 +01:00
|
|
|
|
2017-08-24 18:48:20 +02:00
|
|
|
#if defined(CONFIG_STM32_SPI3) && defined(CONFIG_SENSORS_MPL115A)
|
2015-02-12 19:08:06 +01:00
|
|
|
/* Configure the MPL115A SPI3 CS pin as an output */
|
|
|
|
|
2020-01-02 17:49:34 +01:00
|
|
|
stm32_configgpio(GPIO_MPL115A_CS);
|
2015-02-12 19:08:06 +01:00
|
|
|
#endif
|
2018-02-24 20:11:27 +01:00
|
|
|
|
|
|
|
#if defined(CONFIG_VIEWTOOL_FT80X_SPI1) || defined(CONFIG_VIEWTOOL_FT80X_SPI2)
|
|
|
|
/* Configure the FT80x CS pin as an input */
|
|
|
|
|
2020-01-02 17:49:34 +01:00
|
|
|
stm32_configgpio(GPIO_FT80X_CS);
|
2018-02-24 20:11:27 +01:00
|
|
|
#endif
|
2018-07-13 18:34:33 +02:00
|
|
|
|
|
|
|
#if defined(CONFIG_VIEWTOOL_MAX3421E_SPI1) || defined(CONFIG_VIEWTOOL_MAX3421E_SPI2)
|
|
|
|
/* Configure the MAX3421E CS pin as an input */
|
|
|
|
|
2020-01-02 17:49:34 +01:00
|
|
|
stm32_configgpio(GPIO_MAX3421E_CS);
|
2018-07-13 18:34:33 +02:00
|
|
|
#endif
|
2013-11-30 19:14:15 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: stm32_spi1/2/3select and stm32_spi1/2/3status
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* The external functions, stm32_spi1/2/3select and stm32_spi1/2/3status must be
|
|
|
|
* provided by board-specific logic. They are implementations of the select
|
|
|
|
* and status methods of the SPI interface defined by struct spi_ops_s (see
|
2016-01-26 19:21:39 +01:00
|
|
|
* include/nuttx/spi/spi.h). All other methods (including stm32_spibus_initialize())
|
2013-11-30 19:14:15 +01:00
|
|
|
* are provided by common STM32 logic. To use this common SPI logic on your
|
|
|
|
* board:
|
|
|
|
*
|
|
|
|
* 1. Provide logic in stm32_boardinitialize() to configure SPI chip select
|
|
|
|
* pins.
|
|
|
|
* 2. Provide stm32_spi1/2/3select() and stm32_spi1/2/3status() functions in your
|
|
|
|
* board-specific logic. These functions will perform chip selection and
|
|
|
|
* status operations using GPIOs in the way your board is configured.
|
2016-01-26 19:21:39 +01:00
|
|
|
* 3. Add a calls to stm32_spibus_initialize() in your low level application
|
2013-11-30 19:14:15 +01:00
|
|
|
* initialization logic
|
2016-01-26 19:21:39 +01:00
|
|
|
* 4. The handle returned by stm32_spibus_initialize() may then be used to bind the
|
2013-11-30 19:14:15 +01:00
|
|
|
* SPI driver to higher level logic (e.g., calling
|
|
|
|
* mmcsd_spislotinitialize(), for example, will bind the SPI driver to
|
|
|
|
* the SPI MMC/SD driver).
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#ifdef CONFIG_STM32_SPI1
|
2017-04-28 18:30:23 +02:00
|
|
|
void stm32_spi1select(FAR struct spi_dev_s *dev, uint32_t devid, bool selected)
|
2013-11-30 19:14:15 +01:00
|
|
|
{
|
2016-06-13 01:02:46 +02:00
|
|
|
spiinfo("devid: %d CS: %s\n", (int)devid, selected ? "assert" : "de-assert");
|
2018-02-24 20:11:27 +01:00
|
|
|
|
|
|
|
#ifdef CONFIG_VIEWTOOL_FT80X_SPI1
|
|
|
|
/* Select/de-select the FT80x */
|
|
|
|
|
|
|
|
if (devid == SPIDEV_DISPLAY(0))
|
|
|
|
{
|
|
|
|
stm32_gpiowrite(GPIO_FT80X_CS, !selected);
|
|
|
|
}
|
|
|
|
else
|
2018-07-13 18:34:33 +02:00
|
|
|
#endif
|
|
|
|
#ifdef CONFIG_VIEWTOOL_MAX3421E_SPI1
|
|
|
|
/* Select/de-select the MAX3421E */
|
|
|
|
|
|
|
|
if (devid == SPIDEV_USBHOST(0))
|
|
|
|
{
|
|
|
|
stm32_gpiowrite(GPIO_MAX3421E_CS, !selected);
|
|
|
|
}
|
|
|
|
else
|
2018-02-24 20:11:27 +01:00
|
|
|
#endif
|
|
|
|
{
|
|
|
|
spierr("ERROR: Unrecognized devid: %08lx\n", (unsigned long)devid);
|
|
|
|
}
|
2013-11-30 19:14:15 +01:00
|
|
|
}
|
|
|
|
|
2017-04-28 18:30:23 +02:00
|
|
|
uint8_t stm32_spi1status(FAR struct spi_dev_s *dev, uint32_t devid)
|
2013-11-30 19:14:15 +01:00
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef CONFIG_STM32_SPI2
|
2017-04-28 18:30:23 +02:00
|
|
|
void stm32_spi2select(FAR struct spi_dev_s *dev, uint32_t devid, bool selected)
|
2013-11-30 19:14:15 +01:00
|
|
|
{
|
2016-06-13 01:02:46 +02:00
|
|
|
spiinfo("devid: %d CS: %s\n", (int)devid, selected ? "assert" : "de-assert");
|
2014-01-09 17:57:17 +01:00
|
|
|
|
|
|
|
#ifdef CONFIG_INPUT_ADS7843E
|
|
|
|
/* Select/de-select the touchscreen */
|
|
|
|
|
2017-04-29 20:26:52 +02:00
|
|
|
if (devid == SPIDEV_TOUCHSCREEN(0))
|
2014-01-09 17:57:17 +01:00
|
|
|
{
|
|
|
|
stm32_gpiowrite(GPIO_LCDTP_CS, !selected);
|
|
|
|
}
|
2018-02-24 20:11:27 +01:00
|
|
|
else
|
|
|
|
#endif
|
|
|
|
#ifdef CONFIG_VIEWTOOL_FT80X_SPI2
|
|
|
|
/* Select/de-select the FT80x */
|
|
|
|
|
|
|
|
if (devid == SPIDEV_DISPLAY(0))
|
|
|
|
{
|
|
|
|
stm32_gpiowrite(GPIO_FT80X_CS, !selected);
|
|
|
|
}
|
|
|
|
else
|
2018-07-13 18:34:33 +02:00
|
|
|
#endif
|
|
|
|
#ifdef CONFIG_VIEWTOOL_MAX3421E_SPI2
|
|
|
|
/* Select/de-select the MAX3421E */
|
|
|
|
|
|
|
|
if (devid == SPIDEV_USBHOST(0))
|
|
|
|
{
|
|
|
|
stm32_gpiowrite(GPIO_MAX3421E_CS, !selected);
|
|
|
|
}
|
|
|
|
else
|
2014-01-09 17:57:17 +01:00
|
|
|
#endif
|
2018-02-24 20:11:27 +01:00
|
|
|
{
|
|
|
|
spierr("ERROR: Unrecognized devid: %08lx\n", (unsigned long)devid);
|
|
|
|
}
|
2013-11-30 19:14:15 +01:00
|
|
|
}
|
|
|
|
|
2017-04-28 18:30:23 +02:00
|
|
|
uint8_t stm32_spi2status(FAR struct spi_dev_s *dev, uint32_t devid)
|
2013-11-30 19:14:15 +01:00
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2014-01-09 17:57:17 +01:00
|
|
|
#ifdef CONFIG_STM32_SPI3
|
2017-04-28 18:30:23 +02:00
|
|
|
void stm32_spi3select(FAR struct spi_dev_s *dev, uint32_t devid, bool selected)
|
2013-11-30 19:14:15 +01:00
|
|
|
{
|
2016-06-13 01:02:46 +02:00
|
|
|
spiinfo("devid: %d CS: %s\n", (int)devid, selected ? "assert" : "de-assert");
|
2013-11-30 19:14:15 +01:00
|
|
|
}
|
|
|
|
|
2017-04-28 18:30:23 +02:00
|
|
|
uint8_t stm32_spi3status(FAR struct spi_dev_s *dev, uint32_t devid)
|
2013-11-30 19:14:15 +01:00
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* CONFIG_STM32_SPI1 || CONFIG_STM32_SPI2 || CONFIG_STM32_SPI3*/
|