blob: 7c0cb499cfd98b2d06ef8dd3b88a534d89427c22 [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>
Johan RUDHOLMa8bfde72012-02-12 11:46:44 -050019#include <stdio.h>
20
21#define CHECK(expr, msg, err_stmt) { if (expr) { fprintf(stderr, msg); err_stmt; } }
22
Oleg Matcovschi294bf862013-05-23 17:11:06 -070023/* From kernel linux/major.h */
24#define MMC_BLOCK_MAJOR 179
25
Johan RUDHOLMa8bfde72012-02-12 11:46:44 -050026/* From kernel linux/mmc/mmc.h */
27#define MMC_SWITCH 6 /* ac [31:0] See below R1b */
28#define MMC_SEND_EXT_CSD 8 /* adtc R1 */
29#define MMC_SWITCH_MODE_WRITE_BYTE 0x03 /* Set target to value */
30
31/*
32 * EXT_CSD fields
33 */
Giuseppe CAVALLAROa5bf4a22012-02-20 09:45:29 +010034#define EXT_CSD_S_CMD_SET 504
35#define EXT_CSD_HPI_FEATURE 503
Jaehoon Chung86496512012-09-21 10:08:05 +000036#define EXT_CSD_BKOPS_SUPPORT 502 /* RO */
Giuseppe CAVALLAROa5bf4a22012-02-20 09:45:29 +010037#define EXT_CSD_BOOT_INFO 228 /* R/W */
38#define EXT_CSD_PART_SWITCH_TIME 199
39#define EXT_CSD_BOOT_CFG 179
Giuseppe CAVALLARO7bd13202012-04-19 10:58:37 +020040#define EXT_CSD_PART_CONFIG 179
Saugata Dasb7e25992012-05-17 09:26:34 -040041#define EXT_CSD_BOOT_WP 173
42#define EXT_CSD_WR_REL_PARAM 166
Yaniv Gardi21bb4732013-05-26 13:25:33 -040043#define EXT_CSD_SANITIZE_START 165
Jaehoon Chung86496512012-09-21 10:08:05 +000044#define EXT_CSD_BKOPS_EN 163 /* R/W */
Chris Ballf74dfe22012-10-19 16:49:55 -040045#define EXT_CSD_RST_N_FUNCTION 162 /* R/W */
Ben Gardiner82bd9502013-06-27 11:04:10 -040046#define EXT_CSD_PARTITIONING_SUPPORT 160 /* RO */
Saugata Dasb7e25992012-05-17 09:26:34 -040047#define EXT_CSD_NATIVE_SECTOR_SIZE 63 /* R */
48#define EXT_CSD_USE_NATIVE_SECTOR 62 /* R/W */
49#define EXT_CSD_DATA_SECTOR_SIZE 61 /* R */
50
51/*
52 * WR_REL_PARAM field definitions
53 */
54#define HS_CTRL_REL (1<<0)
55#define EN_REL_WR (1<<2)
Johan RUDHOLMa8bfde72012-02-12 11:46:44 -050056
57/*
Jaehoon Chung86496512012-09-21 10:08:05 +000058 * BKOPS_EN field definition
59 */
60#define BKOPS_ENABLE (1<<0)
61
62/*
Johan RUDHOLMa8bfde72012-02-12 11:46:44 -050063 * EXT_CSD field definitions
64 */
Giuseppe CAVALLAROa5bf4a22012-02-20 09:45:29 +010065#define EXT_CSD_HPI_SUPP (1<<0)
66#define EXT_CSD_HPI_IMPL (1<<1)
Johan RUDHOLMa8bfde72012-02-12 11:46:44 -050067#define EXT_CSD_CMD_SET_NORMAL (1<<0)
68#define EXT_CSD_BOOT_WP_B_PWR_WP_DIS (0x40)
69#define EXT_CSD_BOOT_WP_B_PERM_WP_DIS (0x10)
70#define EXT_CSD_BOOT_WP_B_PERM_WP_EN (0x04)
71#define EXT_CSD_BOOT_WP_B_PWR_WP_EN (0x01)
Giuseppe CAVALLAROa5bf4a22012-02-20 09:45:29 +010072#define EXT_CSD_BOOT_INFO_HS_MODE (1<<2)
73#define EXT_CSD_BOOT_INFO_DDR_DDR (1<<1)
74#define EXT_CSD_BOOT_INFO_ALT (1<<0)
75#define EXT_CSD_BOOT_CFG_ACK (1<<6)
76#define EXT_CSD_BOOT_CFG_EN (0x38)
Mario Schuknecht8c0c40d2013-05-15 08:28:04 +020077#define EXT_CSD_BOOT_CFG_ACC (0x07)
Chris Ballf74dfe22012-10-19 16:49:55 -040078#define EXT_CSD_RST_N_EN_MASK (0x03)
79#define EXT_CSD_HW_RESET_EN (0x01)
80#define EXT_CSD_HW_RESET_DIS (0x02)
Giuseppe CAVALLARO7bd13202012-04-19 10:58:37 +020081#define EXT_CSD_PART_CONFIG_ACC_MASK (0x7)
82#define EXT_CSD_PART_CONFIG_ACC_BOOT0 (0x1)
83#define EXT_CSD_PART_CONFIG_ACC_BOOT1 (0x2)
84#define EXT_CSD_PART_CONFIG_ACC_USER_AREA (0x7)
85#define EXT_CSD_PART_CONFIG_ACC_ACK (0x40)
Ben Gardiner82bd9502013-06-27 11:04:10 -040086#define EXT_CSD_PARTITIONING_EN (1<<0)
87#define EXT_CSD_ENH_ATTRIBUTE_EN (1<<1)
Johan RUDHOLMa8bfde72012-02-12 11:46:44 -050088
89/* From kernel linux/mmc/core.h */
90#define MMC_RSP_PRESENT (1 << 0)
91#define MMC_RSP_136 (1 << 1) /* 136 bit response */
92#define MMC_RSP_CRC (1 << 2) /* expect valid crc */
93#define MMC_RSP_BUSY (1 << 3) /* card may send busy */
94#define MMC_RSP_OPCODE (1 << 4) /* response contains opcode */
95
96#define MMC_CMD_AC (0 << 5)
97#define MMC_CMD_ADTC (1 << 5)
98
99#define MMC_RSP_SPI_S1 (1 << 7) /* one status byte */
100#define MMC_RSP_SPI_BUSY (1 << 10) /* card may send busy */
101
102#define MMC_RSP_SPI_R1 (MMC_RSP_SPI_S1)
103#define MMC_RSP_SPI_R1B (MMC_RSP_SPI_S1|MMC_RSP_SPI_BUSY)
104
105#define MMC_RSP_R1 (MMC_RSP_PRESENT|MMC_RSP_CRC|MMC_RSP_OPCODE)
106#define MMC_RSP_R1B (MMC_RSP_PRESENT|MMC_RSP_CRC|MMC_RSP_OPCODE|MMC_RSP_BUSY)