blob: f1bd6d4198d4d547c20d305dcff840976a89349e [file] [log] [blame]
Ben Dooksedb5a982008-06-30 22:40:29 +01001#ifndef _ARCH_MCI_H
2#define _ARCH_MCI_H
3
4struct s3c24xx_mci_pdata {
Ben Dookscf0984c2008-06-30 22:40:30 +01005 unsigned int wprotect_invert : 1;
Ben Dooks50a84572008-06-30 22:40:36 +01006 unsigned int detect_invert : 1; /* set => detect active high. */
Ben Dooks26f14942009-10-01 15:44:18 -07007 unsigned int use_dma : 1;
Ben Dookscf0984c2008-06-30 22:40:30 +01008
Ben Dooksedb5a982008-06-30 22:40:29 +01009 unsigned int gpio_detect;
10 unsigned int gpio_wprotect;
11 unsigned long ocr_avail;
12 void (*set_power)(unsigned char power_mode,
13 unsigned short vdd);
14};
15
16#endif /* _ARCH_NCI_H */