Add first implementation of hsmci controller for sam3x.
[bertos.git] / bertos / cpu / cortex-m3 / drv / hsmci_sam3.h
1 /**
2  * \file
3  * <!--
4  * This file is part of BeRTOS.
5  *
6  * Bertos is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
19  *
20  * As a special exception, you may use this file as part of a free software
21  * library without restriction.  Specifically, if other files instantiate
22  * templates or use macros or inline functions from this file, or you compile
23  * this file and link it with other files to produce an executable, this
24  * file does not by itself cause the resulting executable to be covered by
25  * the GNU General Public License.  This exception does not however
26  * invalidate any other reasons why the executable file might be covered by
27  * the GNU General Public License.
28  *
29  * Copyright 2011 Develer S.r.l. (http://www.develer.com/)
30  *
31  * -->
32  *
33  * \brief HSMCI driver functions.
34  *
35  * \author Daniele Basile <asterix@develer.com>
36  */
37
38 #ifndef DRV_HSMCI_SAM3_H
39 #define DRV_HSMCI_SAM3_H
40
41 #include <io/cm3.h>
42 #include <cfg/macros.h>
43
44 #define CMD8_V_RANGE_CHECK_PAT    0xAA
45 #define CMD8_V_RANGE_27V_36V      (0x100 | CMD8_V_RANGE_CHECK_PAT)
46 #define CMD8_V_RANGE_LOW          (0x1000 | CMD8_V_RANGE_CHECK_PAT)
47 #define CMD8_V_ECHO_REPLY         0xFF
48 #define CMD8_SUPP_V_RANGE_REPLY   0xFF00
49
50
51 #define SD_OCR_CCS              BV(30)     /**< SD Card Capacity Status (CCS) */
52 #define SD_OCR_BUSY             BV(31)     /**< SD/MMC Card power up status bit (busy) */
53
54 #define SD_OCR_VDD_27_28        BV(15)
55 #define SD_OCR_VDD_28_29        BV(16)
56 #define SD_OCR_VDD_29_30        BV(17)
57 #define SD_OCR_VDD_30_31        BV(18)
58 #define SD_OCR_VDD_31_32        BV(19)
59 #define SD_OCR_VDD_32_33        BV(20)
60
61
62 #define SD_HOST_VOLTAGE_RANGE     (SD_OCR_VDD_27_28 | \
63                                    SD_OCR_VDD_28_29 | \
64                                    SD_OCR_VDD_29_30 | \
65                                    SD_OCR_VDD_30_31 | \
66                                    SD_OCR_VDD_31_32 | \
67                                    SD_OCR_VDD_32_33)
68
69 typedef struct Hsmci
70 {
71 } Hsmci;
72
73 void hsmci_readResp(void *resp, size_t len);
74 bool hsmci_sendCmd(uint8_t index, uint32_t argument, uint32_t reply_type);
75
76 void hsmci_init(Hsmci *hsmci);
77
78 #endif /* DRV_HSMCI_SAM3_H */