2014-02-13 00:21:28 +01:00
|
|
|
/****************************************************************************
|
|
|
|
* config/samd20-xplained/src/sam_mmcsd.c
|
|
|
|
*
|
|
|
|
* Copyright (C) 2014 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.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Included Files
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#include <nuttx/config.h>
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <debug.h>
|
|
|
|
#include <errno.h>
|
|
|
|
|
|
|
|
#include <nuttx/spi/spi.h>
|
|
|
|
#include <nuttx/mmcsd.h>
|
|
|
|
|
2014-02-13 01:29:23 +01:00
|
|
|
#include "sam_config.h"
|
2016-01-26 20:03:12 +01:00
|
|
|
#include "sam_spi.h"
|
|
|
|
|
2014-02-13 00:21:28 +01:00
|
|
|
#include "samd20-xplained.h"
|
|
|
|
|
2014-02-20 18:27:59 +01:00
|
|
|
#ifdef CONFIG_SAMD20_XPLAINED_IOMODULE
|
2014-02-13 00:21:28 +01:00
|
|
|
|
|
|
|
/****************************************************************************
|
2015-04-08 17:15:17 +02:00
|
|
|
* Pre-processor Definitions
|
2014-02-13 00:21:28 +01:00
|
|
|
****************************************************************************/
|
|
|
|
/* Configuration ************************************************************/
|
|
|
|
|
|
|
|
#ifdef CONFIG_DISABLE_MOUNTPOINT
|
|
|
|
# error Mountpoints are disabled (CONFIG_DISABLE_MOUNTPOINT=y)
|
|
|
|
#endif
|
|
|
|
|
2015-05-14 20:25:09 +02:00
|
|
|
#ifndef SAMDL_HAVE_SPI0
|
2014-02-13 01:29:23 +01:00
|
|
|
# error SERCOM0 SPI support is required
|
2014-02-13 00:21:28 +01:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef CONFIG_MMCSD
|
|
|
|
# error MMC/SD support is required (CONFIG_MMCSD)
|
|
|
|
#endif
|
|
|
|
|
2015-05-14 20:25:09 +02:00
|
|
|
#define SAMDL_MMCSDSLOTNO 0 /* There is only one slot */
|
2014-02-13 00:21:28 +01:00
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Public Functions
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Name: sam_sdinitialize
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Initialize the SPI-based SD card. Requires
|
2014-02-20 18:27:59 +01:00
|
|
|
* - CONFIG_SAMD20_XPLAINED_IOMODULE=y,
|
2014-02-13 00:21:28 +01:00
|
|
|
* - CONFIG_DISABLE_MOUNTPOINT=n,
|
|
|
|
* - CONFIG_MMCSD=y, and
|
2015-05-14 20:25:09 +02:00
|
|
|
* - SAMDL_HAVE_SPI0=y (CONFIG_SAMDL_SERCOM0 && CONFIG_SAMDL_SERCOM0_ISSPI)
|
2014-02-13 00:21:28 +01:00
|
|
|
*
|
2015-10-03 15:25:23 +02:00
|
|
|
****************************************************************************/
|
2014-02-13 00:21:28 +01:00
|
|
|
|
2014-02-20 18:27:59 +01:00
|
|
|
int sam_sdinitialize(int port, int minor)
|
2014-02-13 00:21:28 +01:00
|
|
|
{
|
|
|
|
FAR struct spi_dev_s *spi;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
/* Get the SPI driver instance for the SD chip select */
|
|
|
|
|
2016-06-11 19:59:51 +02:00
|
|
|
finfo("Initializing SERCOM SPI%d\n", port);
|
2014-02-13 00:21:28 +01:00
|
|
|
|
2016-01-26 20:03:12 +01:00
|
|
|
spi = sam_spibus_initialize(port);
|
2014-02-13 00:21:28 +01:00
|
|
|
if (!spi)
|
|
|
|
{
|
2016-06-13 15:43:55 +02:00
|
|
|
ferr("ERROR: Failed to initialize SPI%d\n", port);
|
2014-02-13 00:21:28 +01:00
|
|
|
return -ENODEV;
|
|
|
|
}
|
|
|
|
|
2016-06-11 19:59:51 +02:00
|
|
|
finfo("Successfully initialized SPI%d\n", port);
|
2014-02-13 00:21:28 +01:00
|
|
|
|
|
|
|
/* Bind the SPI device for the chip select to the slot */
|
|
|
|
|
2016-06-11 19:59:51 +02:00
|
|
|
finfo("Binding SPI%d to MMC/SD slot %d\n", port, SAMDL_MMCSDSLOTNO);
|
2014-02-13 00:21:28 +01:00
|
|
|
|
2015-05-14 20:25:09 +02:00
|
|
|
ret = mmcsd_spislotinitialize(minor, SAMDL_MMCSDSLOTNO, spi);
|
2014-02-13 00:21:28 +01:00
|
|
|
if (ret < 0)
|
|
|
|
{
|
2016-06-13 15:43:55 +02:00
|
|
|
ferr("ERROR: Failed to bind SPI%d to MMC/SD slot %d: %d\n",
|
2015-05-14 20:25:09 +02:00
|
|
|
port, SAMDL_MMCSDSLOTNO, ret);
|
2014-02-13 00:21:28 +01:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2016-06-11 19:59:51 +02:00
|
|
|
finfo("Successfuly bound SPI%d to MMC/SD slot %d\n",
|
2015-05-14 20:25:09 +02:00
|
|
|
port, SAMDL_MMCSDSLOTNO);
|
2014-02-13 00:21:28 +01:00
|
|
|
|
|
|
|
return OK;
|
|
|
|
}
|
|
|
|
|
2014-02-20 18:27:59 +01:00
|
|
|
#endif /* CONFIG_SAMD20_XPLAINED_IOMODULE */
|