1/*
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/* mmc_cmds.c */
18int do_read_extcsd(int nargs, char **argv);
19int do_write_extcsd(int nargs, char **argv);
20int do_writeprotect_get(int nargs, char **argv);
21int do_writeprotect_set(int nargs, char **argv);
22int do_disable_512B_emulation(int nargs, char **argv);
23int do_write_boot_en(int nargs, char **argv);
24int do_boot_bus_conditions_set(int nargs, char **argv);
25int do_write_bkops_en(int nargs, char **argv);
26int do_hwreset_en(int nargs, char **argv);
27int do_hwreset_dis(int nargs, char **argv);
28int do_sanitize(int nargs, char **argv);
29int do_status_get(int nargs, char **argv);
30int do_create_gp_partition(int nargs, char **argv);
31int do_enh_area_set(int nargs, char **argv);
32int do_write_reliability_set(int nargs, char **argv);
33int do_rpmb_write_key(int nargs, char **argv);
34int do_rpmb_read_counter(int nargs, char **argv);
35int do_rpmb_read_block(int nargs, char **argv);
36int do_rpmb_write_block(int nargs, char **argv);
37int do_cache_en(int nargs, char **argv);
38int do_cache_dis(int nargs, char **argv);
39