Ben Dooks | edb5a98 | 2008-06-30 22:40:29 +0100 | [diff] [blame] | 1 | #ifndef _ARCH_MCI_H |
| 2 | #define _ARCH_MCI_H |
| 3 | |
| 4 | struct s3c24xx_mci_pdata { |
Ben Dooks | cf0984c | 2008-06-30 22:40:30 +0100 | [diff] [blame] | 5 | unsigned int wprotect_invert : 1; |
Ben Dooks | 50a8457 | 2008-06-30 22:40:36 +0100 | [diff] [blame] | 6 | unsigned int detect_invert : 1; /* set => detect active high. */ |
Ben Dooks | cf0984c | 2008-06-30 22:40:30 +0100 | [diff] [blame] | 7 | |
Ben Dooks | edb5a98 | 2008-06-30 22:40:29 +0100 | [diff] [blame] | 8 | unsigned int gpio_detect; |
| 9 | unsigned int gpio_wprotect; |
| 10 | unsigned long ocr_avail; |
| 11 | void (*set_power)(unsigned char power_mode, |
| 12 | unsigned short vdd); |
| 13 | }; |
| 14 | |
| 15 | #endif /* _ARCH_NCI_H */ |