2009-06-08 13:24:26 +00:00
|
|
|
/****************************************************************************
|
2019-08-14 14:43:29 +00:00
|
|
|
* boards/arm/str71x/olimex-strp711/src/str71_appinit.c
|
2009-06-08 13:24:26 +00:00
|
|
|
*
|
2016-05-24 10:51:22 -06:00
|
|
|
* Copyright (C) 2009-2010, 2016 Gregory Nutt. All rights reserved.
|
2012-09-13 18:32:24 +00:00
|
|
|
* Author: Gregory Nutt <gnutt@nuttx.org>
|
2009-06-08 13:24:26 +00:00
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Included Files
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#include <nuttx/config.h>
|
|
|
|
|
|
|
|
#include <stdio.h>
|
2014-10-08 14:28:55 -06:00
|
|
|
#include <syslog.h>
|
2009-06-08 13:24:26 +00:00
|
|
|
#include <errno.h>
|
|
|
|
|
2015-03-31 10:21:31 -06:00
|
|
|
#include <nuttx/board.h>
|
2013-07-01 08:11:54 -06:00
|
|
|
#include <nuttx/spi/spi.h>
|
2009-06-08 13:24:26 +00:00
|
|
|
#include <nuttx/mmcsd.h>
|
|
|
|
|
2016-01-27 08:49:49 -06:00
|
|
|
#include "str71x.h"
|
|
|
|
|
2009-06-08 13:24:26 +00:00
|
|
|
/****************************************************************************
|
2015-03-21 14:42:30 -06:00
|
|
|
* Pre-processor Definitions
|
2009-06-08 13:24:26 +00:00
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/* Configuration ************************************************************/
|
|
|
|
|
|
|
|
/* PORT and SLOT number probably depend on the board configuration */
|
|
|
|
|
2016-02-04 14:14:43 -06:00
|
|
|
#define NSH_HAVEUSBDEV 1
|
|
|
|
#ifdef CONFIG_STR71X_BSPI1
|
|
|
|
# define NSH_HAVEMMCSD 1
|
|
|
|
# ifdef CONFIG_NSH_ARCHINIT
|
2011-03-18 20:35:31 +00:00
|
|
|
# if !defined(CONFIG_NSH_MMCSDSPIPORTNO) || CONFIG_NSH_MMCSDSPIPORTNO != 1
|
2009-06-08 13:24:26 +00:00
|
|
|
# error "The Olimex STR-P711 MMC/SD is on BSPI1"
|
2011-03-18 20:35:31 +00:00
|
|
|
# undef CONFIG_NSH_MMCSDSPIPORTNO
|
|
|
|
# define CONFIG_NSH_MMCSDSPIPORTNO 0
|
2009-06-08 13:24:26 +00:00
|
|
|
# endif
|
2011-03-18 20:35:31 +00:00
|
|
|
# if !defined(CONFIG_NSH_MMCSDSLOTNO) || CONFIG_NSH_MMCSDSLOTNO != 0
|
2009-06-08 13:24:26 +00:00
|
|
|
# error "The Olimex STR-P711 MMC/SD is on BSPI1 slot 0"
|
2011-03-18 20:35:31 +00:00
|
|
|
# undef CONFIG_NSH_MMCSDSLOTNO
|
|
|
|
# define CONFIG_NSH_MMCSDSLOTNO 0
|
2009-06-08 13:24:26 +00:00
|
|
|
# endif
|
|
|
|
# else
|
2016-02-04 14:14:43 -06:00
|
|
|
# undef CONFIG_NSH_MMCSDSPIPORTNO
|
|
|
|
# define CONFIG_NSH_MMCSDSPIPORTNO 0
|
|
|
|
# undef CONFIG_NSH_MMCSDSLOTNO
|
|
|
|
# define CONFIG_NSH_MMCSDSLOTNO 0
|
2009-06-08 13:24:26 +00:00
|
|
|
# endif
|
|
|
|
#else
|
2012-09-08 13:56:21 +00:00
|
|
|
# undef NSH_HAVEMMCSD
|
2009-06-08 13:24:26 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Can't support USB features if USB is not enabled */
|
|
|
|
|
|
|
|
#ifndef CONFIG_USBDEV
|
2012-09-08 13:56:21 +00:00
|
|
|
# undef NSH_HAVEUSBDEV
|
2009-06-08 13:24:26 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Can't support MMC/SD features if mountpoints are disabled */
|
|
|
|
|
|
|
|
#if defined(CONFIG_DISABLE_MOUNTPOINT)
|
2012-09-08 13:56:21 +00:00
|
|
|
# undef NSH_HAVEMMCSD
|
2009-06-08 13:24:26 +00:00
|
|
|
#endif
|
|
|
|
|
2011-03-18 20:35:31 +00:00
|
|
|
#ifndef CONFIG_NSH_MMCSDMINOR
|
|
|
|
# define CONFIG_NSH_MMCSDMINOR 0
|
2009-06-08 13:24:26 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Public Functions
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
2015-03-31 10:21:31 -06:00
|
|
|
* Name: board_app_initialize
|
2009-06-08 13:24:26 +00:00
|
|
|
*
|
|
|
|
* Description:
|
2016-05-24 10:51:22 -06:00
|
|
|
* Perform application specific initialization. This function is never
|
|
|
|
* called directly from application code, but only indirectly via the
|
|
|
|
* (non-standard) boardctl() interface using the command BOARDIOC_INIT.
|
|
|
|
*
|
|
|
|
* Input Parameters:
|
|
|
|
* arg - The boardctl() argument is passed to the board_app_initialize()
|
|
|
|
* implementation without modification. The argument has no
|
|
|
|
* meaning to NuttX; the meaning of the argument is a contract
|
2019-08-21 09:32:59 -06:00
|
|
|
* between the board-specific initialization logic and the
|
2020-05-14 11:52:49 -04:00
|
|
|
* matching application logic. The value could be such things as a
|
2016-05-24 10:51:22 -06:00
|
|
|
* mode enumeration value, a set of DIP switch switch settings, a
|
|
|
|
* pointer to configuration data read from a file or serial FLASH,
|
|
|
|
* or whatever you would like to do with it. Every implementation
|
|
|
|
* should accept zero/NULL as a default configuration.
|
|
|
|
*
|
|
|
|
* Returned Value:
|
|
|
|
* Zero (OK) is returned on success; a negated errno value is returned on
|
|
|
|
* any failure to indicate the nature of the failure.
|
2009-06-08 13:24:26 +00:00
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
2016-05-24 10:51:22 -06:00
|
|
|
int board_app_initialize(uintptr_t arg)
|
2009-06-08 13:24:26 +00:00
|
|
|
{
|
2014-02-10 18:08:49 -06:00
|
|
|
#ifdef NSH_HAVEMMCSD
|
2009-06-08 13:24:26 +00:00
|
|
|
FAR struct spi_dev_s *spi;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
/* Get the SPI port */
|
|
|
|
|
2014-10-08 14:28:55 -06:00
|
|
|
syslog(LOG_INFO, "Initializing SPI port %d\n",
|
|
|
|
CONFIG_NSH_MMCSDSPIPORTNO);
|
2009-06-08 13:24:26 +00:00
|
|
|
|
2016-01-27 08:49:49 -06:00
|
|
|
spi = str71_spibus_initialize(CONFIG_NSH_MMCSDSPIPORTNO);
|
2009-06-08 13:24:26 +00:00
|
|
|
if (!spi)
|
|
|
|
{
|
2014-10-08 14:28:55 -06:00
|
|
|
syslog(LOG_ERR, "ERROR: Failed to initialize SPI port %d\n",
|
|
|
|
CONFIG_NSH_MMCSDSPIPORTNO);
|
2009-06-08 13:24:26 +00:00
|
|
|
return -ENODEV;
|
|
|
|
}
|
|
|
|
|
2014-10-08 14:28:55 -06:00
|
|
|
syslog(LOG_INFO, "Successfully initialized SPI port %d\n",
|
|
|
|
CONFIG_NSH_MMCSDSPIPORTNO);
|
2009-06-08 13:24:26 +00:00
|
|
|
|
|
|
|
/* Bind the SPI port to the slot */
|
|
|
|
|
2014-10-08 14:28:55 -06:00
|
|
|
syslog(LOG_INFO, "Binding SPI port %d to MMC/SD slot %d\n",
|
|
|
|
CONFIG_NSH_MMCSDSPIPORTNO, CONFIG_NSH_MMCSDSLOTNO);
|
2009-06-08 13:24:26 +00:00
|
|
|
|
2019-08-14 14:43:29 +00:00
|
|
|
ret = mmcsd_spislotinitialize(CONFIG_NSH_MMCSDMINOR, CONFIG_NSH_MMCSDSLOTNO,
|
|
|
|
spi);
|
2009-06-08 13:24:26 +00:00
|
|
|
if (ret < 0)
|
|
|
|
{
|
2019-08-14 14:43:29 +00:00
|
|
|
syslog(LOG_ERR,
|
|
|
|
"ERROR: Failed to bind SPI port %d to MMC/SD slot %d: %d\n",
|
2014-10-08 14:28:55 -06:00
|
|
|
CONFIG_NSH_MMCSDSPIPORTNO, CONFIG_NSH_MMCSDSLOTNO, ret);
|
2009-06-08 13:24:26 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2014-10-08 14:28:55 -06:00
|
|
|
syslog(LOG_INFO, "Successfully bound SPI port %d to MMC/SD slot %d\n",
|
|
|
|
CONFIG_NSH_MMCSDSPIPORTNO, CONFIG_NSH_MMCSDSLOTNO);
|
2009-06-08 13:24:26 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
return OK;
|
|
|
|
}
|