blob: bea9edb466a686aa27f5e784461d7972d27c0083 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
/*
* include/linux/mmc/uhs2.h
*
* Copyright (C) 2011-2012 NVIDIA Corporation.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or (at
* your option) any later version.
*/
#ifndef MMC_UHS2_H
#define MMC_UHS2_H
/* UHS2 commands */
#define UHS2_FULL_RESET 0x00
#define UHS2_GO_DORMANT_STATE 0x01
#define UHS2_DEVICE_INIT 0x02
#define UHS2_ENUMERATE 0x03
#define UHS2_TRANS_ABORT 0x04
#endif
|