blob: 8540f3dd0d552850c91d13780f09bec17035fb40 [file] [log] [blame]
Johan RUDHOLMa8bfde72012-02-12 11:46:44 -05001/*
2 * This program is free software; you can redistribute it and/or
3 * modify it under the terms of the GNU General Public
4 * License v2 as published by the Free Software Foundation.
5 *
6 * This program is distributed in the hope that it will be useful,
7 * but WITHOUT ANY WARRANTY; without even the implied warranty of
8 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
9 * General Public License for more details.
10 *
11 * You should have received a copy of the GNU General Public
12 * License along with this program; if not, write to the
13 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
14 * Boston, MA 021110-1307, USA.
15 */
16
17#include <asm-generic/int-ll64.h>
18#include <linux/mmc/ioctl.h>
19#include <linux/major.h>
20#include <stdio.h>
21
22#define CHECK(expr, msg, err_stmt) { if (expr) { fprintf(stderr, msg); err_stmt; } }
23
24/* From kernel linux/mmc/mmc.h */
25#define MMC_SWITCH 6 /* ac [31:0] See below R1b */
26#define MMC_SEND_EXT_CSD 8 /* adtc R1 */
27#define MMC_SWITCH_MODE_WRITE_BYTE 0x03 /* Set target to value */
28
29/*
30 * EXT_CSD fields
31 */
32#define EXT_CSD_BOOT_WP 173 /* R/W */
33#define EXT_CSD_PART_SWITCH_TIME 199 /* RO */
34
35/*
36 * EXT_CSD field definitions
37 */
38#define EXT_CSD_CMD_SET_NORMAL (1<<0)
39#define EXT_CSD_BOOT_WP_B_PWR_WP_DIS (0x40)
40#define EXT_CSD_BOOT_WP_B_PERM_WP_DIS (0x10)
41#define EXT_CSD_BOOT_WP_B_PERM_WP_EN (0x04)
42#define EXT_CSD_BOOT_WP_B_PWR_WP_EN (0x01)
43
44/* From kernel linux/mmc/core.h */
45#define MMC_RSP_PRESENT (1 << 0)
46#define MMC_RSP_136 (1 << 1) /* 136 bit response */
47#define MMC_RSP_CRC (1 << 2) /* expect valid crc */
48#define MMC_RSP_BUSY (1 << 3) /* card may send busy */
49#define MMC_RSP_OPCODE (1 << 4) /* response contains opcode */
50
51#define MMC_CMD_AC (0 << 5)
52#define MMC_CMD_ADTC (1 << 5)
53
54#define MMC_RSP_SPI_S1 (1 << 7) /* one status byte */
55#define MMC_RSP_SPI_BUSY (1 << 10) /* card may send busy */
56
57#define MMC_RSP_SPI_R1 (MMC_RSP_SPI_S1)
58#define MMC_RSP_SPI_R1B (MMC_RSP_SPI_S1|MMC_RSP_SPI_BUSY)
59
60#define MMC_RSP_R1 (MMC_RSP_PRESENT|MMC_RSP_CRC|MMC_RSP_OPCODE)
61#define MMC_RSP_R1B (MMC_RSP_PRESENT|MMC_RSP_CRC|MMC_RSP_OPCODE|MMC_RSP_BUSY)