2008-10-15 21:15:53 +02:00
|
|
|
/****************************************************************************
|
2015-12-30 00:31:17 +01:00
|
|
|
* drivers/mmcsd/mmcsd.h
|
2008-10-15 21:15:53 +02:00
|
|
|
*
|
2021-03-04 07:10:42 +01:00
|
|
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
|
|
|
* contributor license agreements. See the NOTICE file distributed with
|
|
|
|
* this work for additional information regarding copyright ownership. The
|
|
|
|
* ASF licenses this file to you under the Apache License, Version 2.0 (the
|
|
|
|
* "License"); you may not use this file except in compliance with the
|
|
|
|
* License. You may obtain a copy of the License at
|
2008-10-15 21:15:53 +02:00
|
|
|
*
|
2021-03-04 07:10:42 +01:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2008-10-15 21:15:53 +02:00
|
|
|
*
|
2021-03-04 07:10:42 +01:00
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
|
|
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
|
|
* License for the specific language governing permissions and limitations
|
|
|
|
* under the License.
|
2008-10-15 21:15:53 +02:00
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
2015-12-30 00:31:17 +01:00
|
|
|
#ifndef __DRIVERS_MMCSD_MMCSD_H
|
|
|
|
#define __DRIVERS_MMCSD_MMCSD_H
|
2008-10-15 21:15:53 +02:00
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Included Files
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#include <nuttx/config.h>
|
2009-12-15 15:25:14 +01:00
|
|
|
#include <stdint.h>
|
2009-06-25 19:44:35 +02:00
|
|
|
#include <debug.h>
|
2008-10-15 21:15:53 +02:00
|
|
|
|
|
|
|
/****************************************************************************
|
2015-04-08 15:15:32 +02:00
|
|
|
* Pre-processor Definitions
|
2008-10-15 21:15:53 +02:00
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/* Enable excessive debug options */
|
|
|
|
|
|
|
|
#undef CONFIG_MMCSD_DUMPALL /* MUST BE DEFINED MANUALLY */
|
|
|
|
|
2016-06-11 19:50:18 +02:00
|
|
|
#if !defined(CONFIG_DEBUG_INFO) || !defined(CONFIG_DEBUG_FS)
|
2008-10-15 21:15:53 +02:00
|
|
|
# undef CONFIG_MMCSD_DUMPALL
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Card type */
|
|
|
|
|
2009-05-26 18:07:25 +02:00
|
|
|
#define MMCSD_CARDTYPE_UNKNOWN 0 /* Unknown card type */
|
|
|
|
#define MMCSD_CARDTYPE_MMC 1 /* Bit 0: MMC card */
|
|
|
|
#define MMCSD_CARDTYPE_SDV1 2 /* Bit 1: SD version 1.x */
|
2009-11-11 22:20:49 +01:00
|
|
|
#define MMCSD_CARDTYPE_SDV2 4 /* Bit 2: SD version 2.x with byte addressing */
|
2019-08-21 17:23:29 +02:00
|
|
|
#define MMCSD_CARDTYPE_BLOCK 8 /* Bit 3: SD version 2.x or MMC with block addressing */
|
2009-05-26 18:07:25 +02:00
|
|
|
|
|
|
|
#define IS_MMC(t) (((t) & MMCSD_CARDTYPE_MMC) != 0)
|
|
|
|
#define IS_SD(t) (((t) & (MMCSD_CARDTYPE_SDV1|MMCSD_CARDTYPE_SDV2)) != 0)
|
2009-11-14 23:00:54 +01:00
|
|
|
#define IS_SDV1(t) (((t) & MMCSD_CARDTYPE_SDV1) != 0)
|
2009-05-26 18:07:25 +02:00
|
|
|
#define IS_SDV2(t) (((t) & MMCSD_CARDTYPE_SDV2) != 0)
|
|
|
|
#define IS_BLOCK(t) (((t) & MMCSD_CARDTYPE_BLOCK) != 0)
|
2008-10-15 21:15:53 +02:00
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Public Types
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
2021-03-04 08:02:21 +01:00
|
|
|
* Public Functions Definitions
|
2008-10-15 21:15:53 +02:00
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#undef EXTERN
|
|
|
|
#if defined(__cplusplus)
|
|
|
|
#define EXTERN extern "C"
|
2019-08-21 17:23:29 +02:00
|
|
|
extern "C"
|
|
|
|
{
|
2008-10-15 21:15:53 +02:00
|
|
|
#else
|
|
|
|
#define EXTERN extern
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef CONFIG_MMCSD_DUMPALL
|
2016-06-11 19:59:51 +02:00
|
|
|
# define mmcsd_dumpbuffer(m,b,l) finfodumpbuffer(m,b,l)
|
2008-10-15 21:15:53 +02:00
|
|
|
#else
|
2009-06-25 19:44:35 +02:00
|
|
|
# define mmcsd_dumpbuffer(m,b,l)
|
2008-10-15 21:15:53 +02:00
|
|
|
#endif
|
|
|
|
|
2016-06-11 19:50:18 +02:00
|
|
|
#if defined(CONFIG_DEBUG_INFO) && defined(CONFIG_DEBUG_FS)
|
2009-12-15 15:25:14 +01:00
|
|
|
EXTERN void mmcsd_dmpcsd(FAR const uint8_t *csd, uint8_t cardtype);
|
2008-10-15 21:15:53 +02:00
|
|
|
#else
|
|
|
|
# define mmcsd_dmpcsd(csd,cadtype)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#undef EXTERN
|
|
|
|
#if defined(__cplusplus)
|
|
|
|
}
|
|
|
|
#endif
|
2015-12-30 00:31:17 +01:00
|
|
|
#endif /* __DRIVERS_MMCSD_MMCSD_H */
|