1a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich/**************************************************************************** 2a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich **************************************************************************** 3a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich *** 4a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich *** This header was automatically generated from a Linux kernel header 5a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich *** of the same name, to make information necessary for userspace to 6a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich *** call into the kernel available to libc. It contains only constants, 7a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich *** structures, and macros generated from the original header, and thus, 8a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich *** contains no copyrightable information. 9a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich *** 10a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich *** To edit the content of this header, modify the corresponding 11a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich *** source file (e.g. under external/kernel-headers/original/) then 12a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich *** run bionic/libc/kernel/tools/update_all.py 13a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich *** 14a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich *** Any manual change here will be lost the next time this script will 15a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich *** be run. You've been warned! 16a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich *** 17a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich **************************************************************************** 18a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich ****************************************************************************/ 19655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng#ifndef LINUX_MMC_IOCTL_H 20655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng#define LINUX_MMC_IOCTL_H 21655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng#include <linux/types.h> 22655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Chengstruct mmc_ioc_cmd { 23d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao int write_flag; 24d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao int is_acmd; 25d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao __u32 opcode; 26d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao __u32 arg; 27d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao __u32 response[4]; 28d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao unsigned int flags; 29d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao unsigned int blksz; 30d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao unsigned int blocks; 31d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao unsigned int postsleep_min_us; 32d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao unsigned int postsleep_max_us; 33d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao unsigned int data_timeout_ns; 34d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao unsigned int cmd_timeout_ms; 35d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao __u32 __pad; 36d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao __u64 data_ptr; 37655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng}; 38d7db594b8d1dab36b711bd887a9dd21675c87243Tao Bao#define mmc_ioc_cmd_set_data(ic,ptr) ic.data_ptr = (__u64) (unsigned long) ptr 3905d08e9716b5974d6ed08973f44930804890b902Christopher Ferrisstruct mmc_ioc_multi_cmd { 4005d08e9716b5974d6ed08973f44930804890b902Christopher Ferris __u64 num_of_cmds; 4105d08e9716b5974d6ed08973f44930804890b902Christopher Ferris struct mmc_ioc_cmd cmds[0]; 4205d08e9716b5974d6ed08973f44930804890b902Christopher Ferris}; 43655a7c081f83b8351ed5f11a6c6accd9458293a8Ben Cheng#define MMC_IOC_CMD _IOWR(MMC_BLOCK_MAJOR, 0, struct mmc_ioc_cmd) 4405d08e9716b5974d6ed08973f44930804890b902Christopher Ferris#define MMC_IOC_MULTI_CMD _IOWR(MMC_BLOCK_MAJOR, 1, struct mmc_ioc_multi_cmd) 4548af7cb2e205dcc2f09a1a1b8a1a37c93e1943f0Christopher Ferris#define MMC_IOC_MAX_BYTES (512L * 1024) 4605d08e9716b5974d6ed08973f44930804890b902Christopher Ferris#define MMC_IOC_MAX_CMDS 255 47a67e4de6620b570dabe0f92985228af0d0204f2cNick Kralevich#endif 48