Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 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 | |
Robert P. J. Day | 100e918 | 2011-05-27 16:04:03 -0400 | [diff] [blame] | 14 | #ifndef LINUX_MMC_DW_MMC_H |
| 15 | #define LINUX_MMC_DW_MMC_H |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 16 | |
Seungwon Jeon | f9c2a0d | 2012-02-09 14:32:43 +0900 | [diff] [blame] | 17 | #include <linux/scatterlist.h> |
| 18 | |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 19 | #define MAX_MCI_SLOTS 2 |
| 20 | |
| 21 | enum dw_mci_state { |
| 22 | STATE_IDLE = 0, |
| 23 | STATE_SENDING_CMD, |
| 24 | STATE_SENDING_DATA, |
| 25 | STATE_DATA_BUSY, |
| 26 | STATE_SENDING_STOP, |
| 27 | STATE_DATA_ERROR, |
| 28 | }; |
| 29 | |
| 30 | enum { |
| 31 | EVENT_CMD_COMPLETE = 0, |
| 32 | EVENT_XFER_COMPLETE, |
| 33 | EVENT_DATA_COMPLETE, |
| 34 | EVENT_DATA_ERROR, |
| 35 | EVENT_XFER_ERROR |
| 36 | }; |
| 37 | |
| 38 | struct mmc_data; |
| 39 | |
| 40 | /** |
| 41 | * struct dw_mci - MMC controller state shared between all slots |
| 42 | * @lock: Spinlock protecting the queue and associated data. |
| 43 | * @regs: Pointer to MMIO registers. |
| 44 | * @sg: Scatterlist entry currently being processed by PIO code, if any. |
Seungwon Jeon | f9c2a0d | 2012-02-09 14:32:43 +0900 | [diff] [blame] | 45 | * @sg_miter: PIO mapping scatterlist iterator. |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 46 | * @cur_slot: The slot which is currently using the controller. |
| 47 | * @mrq: The request currently being processed on @cur_slot, |
| 48 | * or NULL if the controller is idle. |
| 49 | * @cmd: The command currently being sent to the card, or NULL. |
| 50 | * @data: The data currently being transferred, or NULL if no data |
| 51 | * transfer is in progress. |
| 52 | * @use_dma: Whether DMA channel is initialized or not. |
James Hogan | 03e8cb5 | 2011-06-29 09:28:43 +0100 | [diff] [blame] | 53 | * @using_dma: Whether DMA is in use for the current transfer. |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 54 | * @sg_dma: Bus address of DMA buffer. |
| 55 | * @sg_cpu: Virtual address of DMA buffer. |
| 56 | * @dma_ops: Pointer to platform-specific DMA callbacks. |
| 57 | * @cmd_status: Snapshot of SR taken upon completion of the current |
| 58 | * command. Only valid when EVENT_CMD_COMPLETE is pending. |
| 59 | * @data_status: Snapshot of SR taken upon completion of the current |
| 60 | * data transfer. Only valid when EVENT_DATA_COMPLETE or |
| 61 | * EVENT_DATA_ERROR is pending. |
| 62 | * @stop_cmdr: Value to be loaded into CMDR when the stop command is |
| 63 | * to be sent. |
| 64 | * @dir_status: Direction of current transfer. |
| 65 | * @tasklet: Tasklet running the request state machine. |
| 66 | * @card_tasklet: Tasklet handling card detect. |
| 67 | * @pending_events: Bitmask of events flagged by the interrupt handler |
| 68 | * to be processed by the tasklet. |
| 69 | * @completed_events: Bitmask of events which the state machine has |
| 70 | * processed. |
| 71 | * @state: Tasklet state. |
| 72 | * @queue: List of slots waiting for access to the controller. |
| 73 | * @bus_hz: The rate of @mck in Hz. This forms the basis for MMC bus |
| 74 | * rate and timeout calculations. |
| 75 | * @current_speed: Configured rate of the controller. |
| 76 | * @num_slots: Number of slots available. |
Jaehoon Chung | 4e0a5ad | 2011-10-17 19:36:23 +0900 | [diff] [blame] | 77 | * @verid: Denote Version ID. |
| 78 | * @data_offset: Set the offset of DATA register according to VERID. |
Shashidhar Hiremath | 62ca803 | 2012-01-13 16:04:57 +0530 | [diff] [blame] | 79 | * @dev: Device associated with the MMC controller. |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 80 | * @pdata: Platform data associated with the MMC controller. |
| 81 | * @slot: Slots sharing this MMC controller. |
James Hogan | b86d825 | 2011-06-24 13:57:18 +0100 | [diff] [blame] | 82 | * @fifo_depth: depth of FIFO. |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 83 | * @data_shift: log2 of FIFO item size. |
James Hogan | 34b664a | 2011-06-24 13:57:56 +0100 | [diff] [blame] | 84 | * @part_buf_start: Start index in part_buf. |
| 85 | * @part_buf_count: Bytes of partial data in part_buf. |
| 86 | * @part_buf: Simple buffer for partial fifo reads/writes. |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 87 | * @push_data: Pointer to FIFO push function. |
| 88 | * @pull_data: Pointer to FIFO pull function. |
| 89 | * @quirks: Set of quirks that apply to specific versions of the IP. |
Shashidhar Hiremath | 62ca803 | 2012-01-13 16:04:57 +0530 | [diff] [blame] | 90 | * @irq_flags: The flags to be passed to request_irq. |
| 91 | * @irq: The irq value to be passed to request_irq. |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 92 | * |
| 93 | * Locking |
| 94 | * ======= |
| 95 | * |
| 96 | * @lock is a softirq-safe spinlock protecting @queue as well as |
| 97 | * @cur_slot, @mrq and @state. These must always be updated |
| 98 | * at the same time while holding @lock. |
| 99 | * |
| 100 | * The @mrq field of struct dw_mci_slot is also protected by @lock, |
| 101 | * and must always be written at the same time as the slot is added to |
| 102 | * @queue. |
| 103 | * |
| 104 | * @pending_events and @completed_events are accessed using atomic bit |
| 105 | * operations, so they don't need any locking. |
| 106 | * |
| 107 | * None of the fields touched by the interrupt handler need any |
| 108 | * locking. However, ordering is important: Before EVENT_DATA_ERROR or |
| 109 | * EVENT_DATA_COMPLETE is set in @pending_events, all data-related |
| 110 | * interrupts must be disabled and @data_status updated with a |
| 111 | * snapshot of SR. Similarly, before EVENT_CMD_COMPLETE is set, the |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 112 | * CMDRDY interrupt must be disabled and @cmd_status updated with a |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 113 | * snapshot of SR, and before EVENT_XFER_COMPLETE can be set, the |
| 114 | * bytes_xfered field of @data must be written. This is ensured by |
| 115 | * using barriers. |
| 116 | */ |
| 117 | struct dw_mci { |
| 118 | spinlock_t lock; |
| 119 | void __iomem *regs; |
| 120 | |
| 121 | struct scatterlist *sg; |
Seungwon Jeon | f9c2a0d | 2012-02-09 14:32:43 +0900 | [diff] [blame] | 122 | struct sg_mapping_iter sg_miter; |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 123 | |
| 124 | struct dw_mci_slot *cur_slot; |
| 125 | struct mmc_request *mrq; |
| 126 | struct mmc_command *cmd; |
| 127 | struct mmc_data *data; |
| 128 | |
| 129 | /* DMA interface members*/ |
| 130 | int use_dma; |
James Hogan | 03e8cb5 | 2011-06-29 09:28:43 +0100 | [diff] [blame] | 131 | int using_dma; |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 132 | |
| 133 | dma_addr_t sg_dma; |
| 134 | void *sg_cpu; |
| 135 | struct dw_mci_dma_ops *dma_ops; |
| 136 | #ifdef CONFIG_MMC_DW_IDMAC |
| 137 | unsigned int ring_size; |
| 138 | #else |
| 139 | struct dw_mci_dma_data *dma_data; |
| 140 | #endif |
| 141 | u32 cmd_status; |
| 142 | u32 data_status; |
| 143 | u32 stop_cmdr; |
| 144 | u32 dir_status; |
| 145 | struct tasklet_struct tasklet; |
James Hogan | 1791b13e | 2011-06-24 13:55:55 +0100 | [diff] [blame] | 146 | struct work_struct card_work; |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 147 | unsigned long pending_events; |
| 148 | unsigned long completed_events; |
| 149 | enum dw_mci_state state; |
| 150 | struct list_head queue; |
| 151 | |
| 152 | u32 bus_hz; |
| 153 | u32 current_speed; |
| 154 | u32 num_slots; |
Jaehoon Chung | e61cf11 | 2011-03-17 20:32:33 +0900 | [diff] [blame] | 155 | u32 fifoth_val; |
Jaehoon Chung | 4e0a5ad | 2011-10-17 19:36:23 +0900 | [diff] [blame] | 156 | u16 verid; |
| 157 | u16 data_offset; |
Shashidhar Hiremath | 62ca803 | 2012-01-13 16:04:57 +0530 | [diff] [blame] | 158 | struct device dev; |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 159 | struct dw_mci_board *pdata; |
| 160 | struct dw_mci_slot *slot[MAX_MCI_SLOTS]; |
| 161 | |
| 162 | /* FIFO push and pull */ |
James Hogan | b86d825 | 2011-06-24 13:57:18 +0100 | [diff] [blame] | 163 | int fifo_depth; |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 164 | int data_shift; |
James Hogan | 34b664a | 2011-06-24 13:57:56 +0100 | [diff] [blame] | 165 | u8 part_buf_start; |
| 166 | u8 part_buf_count; |
| 167 | union { |
| 168 | u16 part_buf16; |
| 169 | u32 part_buf32; |
| 170 | u64 part_buf; |
| 171 | }; |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 172 | void (*push_data)(struct dw_mci *host, void *buf, int cnt); |
| 173 | void (*pull_data)(struct dw_mci *host, void *buf, int cnt); |
| 174 | |
| 175 | /* Workaround flags */ |
| 176 | u32 quirks; |
Jaehoon Chung | c07946a | 2011-02-25 11:08:14 +0900 | [diff] [blame] | 177 | |
| 178 | struct regulator *vmmc; /* Power regulator */ |
Shashidhar Hiremath | 62ca803 | 2012-01-13 16:04:57 +0530 | [diff] [blame] | 179 | unsigned long irq_flags; /* IRQ flags */ |
| 180 | unsigned int irq; |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 181 | }; |
| 182 | |
| 183 | /* DMA ops for Internal/External DMAC interface */ |
| 184 | struct dw_mci_dma_ops { |
| 185 | /* DMA Ops */ |
| 186 | int (*init)(struct dw_mci *host); |
| 187 | void (*start)(struct dw_mci *host, unsigned int sg_len); |
| 188 | void (*complete)(struct dw_mci *host); |
| 189 | void (*stop)(struct dw_mci *host); |
| 190 | void (*cleanup)(struct dw_mci *host); |
| 191 | void (*exit)(struct dw_mci *host); |
| 192 | }; |
| 193 | |
| 194 | /* IP Quirks/flags. */ |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 195 | /* DTO fix for command transmission with IDMAC configured */ |
Jaehoon Chung | fc3d772 | 2011-02-25 11:08:15 +0900 | [diff] [blame] | 196 | #define DW_MCI_QUIRK_IDMAC_DTO BIT(0) |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 197 | /* delay needed between retries on some 2.11a implementations */ |
Jaehoon Chung | fc3d772 | 2011-02-25 11:08:15 +0900 | [diff] [blame] | 198 | #define DW_MCI_QUIRK_RETRY_DELAY BIT(1) |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 199 | /* High Speed Capable - Supports HS cards (up to 50MHz) */ |
Jaehoon Chung | fc3d772 | 2011-02-25 11:08:15 +0900 | [diff] [blame] | 200 | #define DW_MCI_QUIRK_HIGHSPEED BIT(2) |
| 201 | /* Unreliable card detection */ |
| 202 | #define DW_MCI_QUIRK_BROKEN_CARD_DETECTION BIT(3) |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 203 | |
| 204 | |
| 205 | struct dma_pdata; |
| 206 | |
| 207 | struct block_settings { |
| 208 | unsigned short max_segs; /* see blk_queue_max_segments */ |
| 209 | unsigned int max_blk_size; /* maximum size of one mmc block */ |
| 210 | unsigned int max_blk_count; /* maximum number of blocks in one req*/ |
| 211 | unsigned int max_req_size; /* maximum number of bytes in one req*/ |
| 212 | unsigned int max_seg_size; /* see blk_queue_max_segment_size */ |
| 213 | }; |
| 214 | |
| 215 | /* Board platform data */ |
| 216 | struct dw_mci_board { |
| 217 | u32 num_slots; |
| 218 | |
| 219 | u32 quirks; /* Workaround / Quirk flags */ |
| 220 | unsigned int bus_hz; /* Bus speed */ |
| 221 | |
Jaehoon Chung | fc3d772 | 2011-02-25 11:08:15 +0900 | [diff] [blame] | 222 | unsigned int caps; /* Capabilities */ |
Seungwon Jeon | 4f408cc | 2011-12-09 14:55:52 +0900 | [diff] [blame] | 223 | unsigned int caps2; /* More capabilities */ |
James Hogan | b86d825 | 2011-06-24 13:57:18 +0100 | [diff] [blame] | 224 | /* |
| 225 | * Override fifo depth. If 0, autodetect it from the FIFOTH register, |
| 226 | * but note that this may not be reliable after a bootloader has used |
| 227 | * it. |
| 228 | */ |
| 229 | unsigned int fifo_depth; |
Jaehoon Chung | fc3d772 | 2011-02-25 11:08:15 +0900 | [diff] [blame] | 230 | |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 231 | /* delay in mS before detecting cards after interrupt */ |
| 232 | u32 detect_delay_ms; |
| 233 | |
| 234 | int (*init)(u32 slot_id, irq_handler_t , void *); |
| 235 | int (*get_ro)(u32 slot_id); |
| 236 | int (*get_cd)(u32 slot_id); |
| 237 | int (*get_ocr)(u32 slot_id); |
| 238 | int (*get_bus_wd)(u32 slot_id); |
| 239 | /* |
| 240 | * Enable power to selected slot and set voltage to desired level. |
| 241 | * Voltage levels are specified using MMC_VDD_xxx defines defined |
| 242 | * in linux/mmc/host.h file. |
| 243 | */ |
| 244 | void (*setpower)(u32 slot_id, u32 volt); |
| 245 | void (*exit)(u32 slot_id); |
| 246 | void (*select_slot)(u32 slot_id); |
| 247 | |
| 248 | struct dw_mci_dma_ops *dma_ops; |
| 249 | struct dma_pdata *data; |
| 250 | struct block_settings *blk_settings; |
| 251 | }; |
| 252 | |
Robert P. J. Day | 100e918 | 2011-05-27 16:04:03 -0400 | [diff] [blame] | 253 | #endif /* LINUX_MMC_DW_MMC_H */ |