ffbabea05742a6c8fd79f0e069938efb1b74d98c
[firefly-linux-kernel-4.4.55.git] / include / linux / mmc / rk_mmc.h
1 /*
2  * Synopsys DesignWare Multimedia Card Interface driver
3  *  (Based on NXP driver for lpc 31xx)
4  *
5  * Copyright (C) 2009 NXP Semiconductors
6  * Copyright (C) 2009, 2010 Imagination Technologies Ltd.
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation; either version 2 of the License, or
11  * (at your option) any later version.
12  */
13
14 #ifndef LINUX_MMC_DW_MMC_H
15 #define LINUX_MMC_DW_MMC_H
16
17 #include <linux/scatterlist.h>
18 #include <linux/mmc/core.h>
19 #include <linux/dmaengine.h>
20
21 #define MAX_MCI_SLOTS   2
22
23 enum dw_mci_state {
24         STATE_IDLE = 0,
25         STATE_SENDING_CMD,
26         STATE_SENDING_DATA,
27         STATE_DATA_BUSY,
28         STATE_SENDING_STOP,
29         STATE_DATA_ERROR,
30 };
31
32 enum {
33         EVENT_CMD_COMPLETE = 0,
34         EVENT_XFER_COMPLETE,
35         EVENT_DATA_COMPLETE,
36         EVENT_DATA_ERROR,
37         EVENT_XFER_ERROR
38 };
39
40 struct dw_mci_dma_slave {
41         struct dma_chan *ch;
42         enum dma_transfer_direction direction;
43         unsigned int dmach;
44 };
45
46
47 struct mmc_data;
48
49 /**
50  * struct dw_mci - MMC controller state shared between all slots
51  * @lock: Spinlock protecting the queue and associated data.
52  * @regs: Pointer to MMIO registers.
53  * @sg: Scatterlist entry currently being processed by PIO code, if any.
54  * @sg_miter: PIO mapping scatterlist iterator.
55  * @cur_slot: The slot which is currently using the controller.
56  * @mrq: The request currently being processed on @cur_slot,
57  *      or NULL if the controller is idle.
58  * @cmd: The command currently being sent to the card, or NULL.
59  * @data: The data currently being transferred, or NULL if no data
60  *      transfer is in progress.
61  * @use_dma: Whether DMA channel is initialized or not.
62  * @using_dma: Whether DMA is in use for the current transfer.
63  * @sg_dma: Bus address of DMA buffer.
64  * @sg_cpu: Virtual address of DMA buffer.
65  * @dma_ops: Pointer to platform-specific DMA callbacks.
66  * @cmd_status: Snapshot of SR taken upon completion of the current
67  *      command. Only valid when EVENT_CMD_COMPLETE is pending.
68  * @data_status: Snapshot of SR taken upon completion of the current
69  *      data transfer. Only valid when EVENT_DATA_COMPLETE or
70  *      EVENT_DATA_ERROR is pending.
71  * @stop_cmdr: Value to be loaded into CMDR when the stop command is
72  *      to be sent.
73  * @dir_status: Direction of current transfer.
74  * @tasklet: Tasklet running the request state machine.
75  * @card_tasklet: Tasklet handling card detect.
76  * @pending_events: Bitmask of events flagged by the interrupt handler
77  *      to be processed by the tasklet.
78  * @completed_events: Bitmask of events which the state machine has
79  *      processed.
80  * @state: Tasklet state.
81  * @queue: List of slots waiting for access to the controller.
82  * @bus_hz: The rate of @mck in Hz. This forms the basis for MMC bus
83  *      rate and timeout calculations.
84  * @current_speed: Configured rate of the controller.
85  * @num_slots: Number of slots available.
86  * @verid: Denote Version ID.
87  * @data_offset: Set the offset of DATA register according to VERID.
88  * @dev: Device associated with the MMC controller.
89  * @pdata: Platform data associated with the MMC controller.
90  * @drv_data: Driver specific data for identified variant of the controller
91  * @priv: Implementation defined private data.
92  * @biu_clk: Pointer to bus interface unit clock instance.
93  * @ciu_clk: Pointer to card interface unit clock instance.
94  * @slot: Slots sharing this MMC controller.
95  * @fifo_depth: depth of FIFO.
96  * @data_shift: log2 of FIFO item size.
97  * @part_buf_start: Start index in part_buf.
98  * @part_buf_count: Bytes of partial data in part_buf.
99  * @part_buf: Simple buffer for partial fifo reads/writes.
100  * @push_data: Pointer to FIFO push function.
101  * @pull_data: Pointer to FIFO pull function.
102  * @quirks: Set of quirks that apply to specific versions of the IP.
103  * @irq_flags: The flags to be passed to request_irq.
104  * @irq: The irq value to be passed to request_irq.
105  *
106  * Locking
107  * =======
108  *
109  * @lock is a softirq-safe spinlock protecting @queue as well as
110  * @cur_slot, @mrq and @state. These must always be updated
111  * at the same time while holding @lock.
112  *
113  * The @mrq field of struct dw_mci_slot is also protected by @lock,
114  * and must always be written at the same time as the slot is added to
115  * @queue.
116  *
117  * @pending_events and @completed_events are accessed using atomic bit
118  * operations, so they don't need any locking.
119  *
120  * None of the fields touched by the interrupt handler need any
121  * locking. However, ordering is important: Before EVENT_DATA_ERROR or
122  * EVENT_DATA_COMPLETE is set in @pending_events, all data-related
123  * interrupts must be disabled and @data_status updated with a
124  * snapshot of SR. Similarly, before EVENT_CMD_COMPLETE is set, the
125  * CMDRDY interrupt must be disabled and @cmd_status updated with a
126  * snapshot of SR, and before EVENT_XFER_COMPLETE can be set, the
127  * bytes_xfered field of @data must be written. This is ensured by
128  * using barriers.
129  */
130 struct dw_mci {
131         spinlock_t              lock;
132         void __iomem            *regs;
133
134         struct scatterlist      *sg;
135         struct sg_mapping_iter  sg_miter;
136
137         struct dw_mci_slot      *cur_slot;
138         struct mmc_request      *mrq;
139         struct mmc_command      *cmd;
140         struct mmc_data         *data;
141         struct mmc_command      stop_abort;
142         unsigned int            prev_blksz;
143         unsigned char           timing;
144         struct workqueue_struct *card_workqueue;
145
146         /* DMA interface members*/
147         int                     use_dma;
148         int                     using_dma;
149
150         dma_addr_t              sg_dma;
151         void                    *sg_cpu;
152         const struct dw_mci_dma_ops     *dma_ops;
153 #ifdef CONFIG_MMC_DW_IDMAC
154         unsigned int            ring_size;
155 #else
156         struct dw_mci_dma_data  *dma_data;
157 #endif
158
159 #ifdef CONFIG_MMC_DW_EDMAC
160         struct dw_mci_dma_slave *dms;
161 #endif
162         u32                     cmd_status;
163         u32                     data_status;
164         u32                     stop_cmdr;
165         u32                     dir_status;
166         struct tasklet_struct   tasklet;
167         struct work_struct      card_work;
168         unsigned long           pending_events;
169         unsigned long           completed_events;
170         enum dw_mci_state       state;
171         struct list_head        queue;
172
173         u32                     bus_hz;
174         u32                     current_speed;
175         u32         set_speed;
176         u32         set_div;
177         u32                     num_slots;
178         u32                     fifoth_val;
179         u16                     verid;
180         u16                     data_offset;
181         struct device           *dev;
182         struct dw_mci_board     *pdata;
183         const struct dw_mci_drv_data    *drv_data;
184         void                    *priv;
185         struct clk      *hclk_mmc;
186         struct clk      *clk_mmc;
187         struct dw_mci_slot      *slot[MAX_MCI_SLOTS];
188         struct mmc_host         *mmc;
189         struct mmc_command      *pre_cmd;
190         unsigned int    hold_reg_flag;//to fix the hold_reg value
191
192         /* FIFO push and pull */
193         int                     fifo_depth;
194         int                     data_shift;
195         u8                      part_buf_start;
196         u8                      part_buf_count;
197         union {
198                 u16             part_buf16;
199                 u32             part_buf32;
200                 u64             part_buf;
201         };
202         void (*push_data)(struct dw_mci *host, void *buf, int cnt);
203         void (*pull_data)(struct dw_mci *host, void *buf, int cnt);
204
205         /* Workaround flags */
206         u32                     quirks;
207         bool        irq_state;
208         u32                     svi_flags; /*switch voltage interrupt flags*/
209         struct regulator        *vmmc;  /* Power regulator */
210         unsigned long           irq_flags; /* IRQ flags */
211         int                     irq;
212         u32         cmd_rto;     /*cmd response timeout hold times*/
213         struct pinctrl *pinctrl; /*Pinctrl state*/
214         struct pinctrl_state    *pins_default;
215         struct pinctrl_state    *pins_idle;
216         struct pinctrl_state    *pins_sleep;
217 };
218
219 /* DMA ops for Internal/External DMAC interface */
220 struct dw_mci_dma_ops {
221         /* DMA Ops */
222         int (*init)(struct dw_mci *host);
223         void (*start)(struct dw_mci *host, unsigned int sg_len);
224         void (*complete)(void *host);
225         void (*stop)(struct dw_mci *host);
226         void (*cleanup)(struct dw_mci *host);
227         void (*exit)(struct dw_mci *host);
228 };
229
230 /* IP Quirks/flags. */
231 /* DTO fix for command transmission with IDMAC configured */
232 #define DW_MCI_QUIRK_IDMAC_DTO                  BIT(0)
233 /* delay needed between retries on some 2.11a implementations */
234 #define DW_MCI_QUIRK_RETRY_DELAY                BIT(1)
235 /* High Speed Capable - Supports HS cards (up to 50MHz) */
236 #define DW_MCI_QUIRK_HIGHSPEED                  BIT(2)
237 /* Unreliable card detection */
238 #define DW_MCI_QUIRK_BROKEN_CARD_DETECTION      BIT(3)
239
240 /* Slot level quirks */
241 /* This slot has no write protect */
242 #define DW_MCI_SLOT_QUIRK_NO_WRITE_PROTECT      BIT(0)
243
244 struct dma_pdata;
245
246 struct block_settings {
247         unsigned short  max_segs;       /* see blk_queue_max_segments */
248         unsigned int    max_blk_size;   /* maximum size of one mmc block */
249         unsigned int    max_blk_count;  /* maximum number of blocks in one req*/
250         unsigned int    max_req_size;   /* maximum number of bytes in one req*/
251         unsigned int    max_seg_size;   /* see blk_queue_max_segment_size */
252 };
253
254 /* Board platform data */
255 struct dw_mci_board {
256         u32 num_slots;
257
258         u32 quirks; /* Workaround / Quirk flags */
259         unsigned int bus_hz; /* Clock speed at the cclk_in pad */
260
261         u32 caps;       /* Capabilities */
262         u32 caps2;      /* More capabilities */
263         u32 pm_caps;    /* PM capabilities */
264         u32 cardtype_restrict;  /*restrict the SDMMC controller to support card type;1--SD card; 2--sdio; 4--eMMC */
265         /*
266          * Override fifo depth. If 0, autodetect it from the FIFOTH register,
267          * but note that this may not be reliable after a bootloader has used
268          * it.
269          */
270         unsigned int fifo_depth;
271
272         /* delay in mS before detecting cards after interrupt */
273         u32 detect_delay_ms;
274
275         int (*init)(u32 slot_id, irq_handler_t , void *);
276         int (*get_ro)(u32 slot_id);
277         int (*get_cd)(u32 slot_id);
278         int (*get_ocr)(u32 slot_id);
279         int (*get_bus_wd)(u32 slot_id);
280         /*
281          * Enable power to selected slot and set voltage to desired level.
282          * Voltage levels are specified using MMC_VDD_xxx defines defined
283          * in linux/mmc/host.h file.
284          */
285         void (*setpower)(u32 slot_id, u32 volt);
286         void (*exit)(u32 slot_id);
287         void (*select_slot)(u32 slot_id);
288
289         struct dw_mci_dma_ops *dma_ops;
290         struct dma_pdata *data;
291         struct block_settings *blk_settings;
292 };
293
294 #endif /* LINUX_MMC_DW_MMC_H */