Lines Matching defs:s3cmci_host
20 struct s3cmci_host { struct
21 struct platform_device *pdev;
22 struct s3c24xx_mci_pdata *pdata;
23 struct mmc_host *mmc;
24 struct resource *mem;
25 struct clk *clk;
26 void __iomem *base;
27 int irq;
28 int irq_cd;
29 int dma;
31 unsigned long clk_rate;
32 unsigned long clk_div;
33 unsigned long real_rate;
34 u8 prescaler;
36 int is2440;
37 unsigned sdiimsk;
38 unsigned sdidata;
39 int dodma;
40 int dmatogo;
42 bool irq_disabled;
43 bool irq_enabled;
44 bool irq_state;
45 int sdio_irqen;
47 struct mmc_request *mrq;
48 int cmd_is_stop;
50 spinlock_t complete_lock;
51 enum s3cmci_waitfor complete_what;
53 int dma_complete;
55 u32 pio_sgptr;
56 u32 pio_bytes;
57 u32 pio_count;
58 u32 *pio_ptr;
62 u32 pio_active;
64 int bus_width;
66 char dbgmsg_cmd[301];
67 char dbgmsg_dat[301];
68 char *status;
70 unsigned int ccnt, dcnt;
71 struct tasklet_struct pio_tasklet;
74 struct dentry *debug_root;
75 struct dentry *debug_state;
76 struct dentry *debug_regs;
80 struct notifier_block freq_transition;