blob: fd1adf0a6485e4da7eeb0db69c990ddd860c4d51 [file] [log] [blame]
Alok Chauhan3a2b4d92013-02-15 16:04:20 +05301/* Copyright (c) 2008-2013, The Linux Foundation. All rights reserved.
Harini Jayaramanc710a5e2011-11-22 12:02:43 -07002 *
3 * This program is free software; you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License version 2 and
5 * only version 2 as published by the Free Software Foundation.
6 *
7 * This program is distributed in the hope that it will be useful,
8 * but WITHOUT ANY WARRANTY; without even the implied warranty of
9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10 * GNU General Public License for more details.
11 *
12 */
13
14#ifndef _SPI_QSD_H
15#define _SPI_QSD_H
16
17#define SPI_DRV_NAME "spi_qsd"
18
19#if defined(CONFIG_SPI_QSD) || defined(CONFIG_SPI_QSD_MODULE)
20
21#define QSD_REG(x) (x)
22#define QUP_REG(x)
23
24#define SPI_FIFO_WORD_CNT 0x0048
25
26#else
27
28#define QSD_REG(x)
29#define QUP_REG(x) (x)
30
31#define QUP_CONFIG 0x0000 /* N & NO_INPUT/NO_OUPUT bits */
32#define QUP_ERROR_FLAGS_EN 0x030C
33#define QUP_ERR_MASK 0x3
34#define SPI_OUTPUT_FIFO_WORD_CNT 0x010C
35#define SPI_INPUT_FIFO_WORD_CNT 0x0214
36#define QUP_MX_WRITE_COUNT 0x0150
37#define QUP_MX_WRITE_CNT_CURRENT 0x0154
38
39#define QUP_CONFIG_SPI_MODE 0x0100
40#endif
41
42#define GSBI_CTRL_REG 0x0
43#define GSBI_SPI_CONFIG 0x30
Gilad Avidovd0262342012-10-24 16:52:30 -060044/* B-family only registers */
Harini Jayaramanc710a5e2011-11-22 12:02:43 -070045#define QUP_HARDWARE_VER 0x0030
Gilad Avidovd0262342012-10-24 16:52:30 -060046#define QUP_HARDWARE_VER_2_1_1 0X20010001
Harini Jayaramanc710a5e2011-11-22 12:02:43 -070047#define QUP_OPERATIONAL_MASK 0x0028
Gilad Avidovd0262342012-10-24 16:52:30 -060048#define QUP_OP_MASK_OUTPUT_SERVICE_FLAG 0x100
49#define QUP_OP_MASK_INPUT_SERVICE_FLAG 0x200
50
Harini Jayaramanc710a5e2011-11-22 12:02:43 -070051#define QUP_ERROR_FLAGS 0x0308
52
53#define SPI_CONFIG QSD_REG(0x0000) QUP_REG(0x0300)
54#define SPI_IO_CONTROL QSD_REG(0x0004) QUP_REG(0x0304)
55#define SPI_IO_MODES QSD_REG(0x0008) QUP_REG(0x0008)
56#define SPI_SW_RESET QSD_REG(0x000C) QUP_REG(0x000C)
57#define SPI_TIME_OUT_CURRENT QSD_REG(0x0014) QUP_REG(0x0014)
58#define SPI_MX_OUTPUT_COUNT QSD_REG(0x0018) QUP_REG(0x0100)
59#define SPI_MX_OUTPUT_CNT_CURRENT QSD_REG(0x001C) QUP_REG(0x0104)
60#define SPI_MX_INPUT_COUNT QSD_REG(0x0020) QUP_REG(0x0200)
61#define SPI_MX_INPUT_CNT_CURRENT QSD_REG(0x0024) QUP_REG(0x0204)
62#define SPI_MX_READ_COUNT QSD_REG(0x0028) QUP_REG(0x0208)
63#define SPI_MX_READ_CNT_CURRENT QSD_REG(0x002C) QUP_REG(0x020C)
64#define SPI_OPERATIONAL QSD_REG(0x0030) QUP_REG(0x0018)
65#define SPI_ERROR_FLAGS QSD_REG(0x0034) QUP_REG(0x001C)
66#define SPI_ERROR_FLAGS_EN QSD_REG(0x0038) QUP_REG(0x0020)
67#define SPI_DEASSERT_WAIT QSD_REG(0x003C) QUP_REG(0x0310)
68#define SPI_OUTPUT_DEBUG QSD_REG(0x0040) QUP_REG(0x0108)
69#define SPI_INPUT_DEBUG QSD_REG(0x0044) QUP_REG(0x0210)
70#define SPI_TEST_CTRL QSD_REG(0x004C) QUP_REG(0x0024)
71#define SPI_OUTPUT_FIFO QSD_REG(0x0100) QUP_REG(0x0110)
72#define SPI_INPUT_FIFO QSD_REG(0x0200) QUP_REG(0x0218)
73#define SPI_STATE QSD_REG(SPI_OPERATIONAL) QUP_REG(0x0004)
74
Gilad Avidov91c2ab4c2013-03-12 11:01:22 -060075/* QUP_CONFIG fields */
76#define SPI_CFG_N 0x0000001F
Harini Jayaramanc710a5e2011-11-22 12:02:43 -070077#define SPI_NO_INPUT 0x00000080
78#define SPI_NO_OUTPUT 0x00000040
Gilad Avidovd0262342012-10-24 16:52:30 -060079#define SPI_EN_EXT_OUT_FLAG 0x00010000
Harini Jayaramanc710a5e2011-11-22 12:02:43 -070080
Gilad Avidov91c2ab4c2013-03-12 11:01:22 -060081/* SPI_CONFIG fields */
82#define SPI_CFG_LOOPBACK 0x00000100
83#define SPI_CFG_INPUT_FIRST 0x00000200
84#define SPI_CFG_HS_MODE 0x00000400
85
Harini Jayaramanc710a5e2011-11-22 12:02:43 -070086/* SPI_IO_CONTROL fields */
87#define SPI_IO_C_FORCE_CS 0x00000800
88#define SPI_IO_C_CLK_IDLE_HIGH 0x00000400
89#define SPI_IO_C_MX_CS_MODE 0x00000100
90#define SPI_IO_C_CS_N_POLARITY 0x000000F0
91#define SPI_IO_C_CS_N_POLARITY_0 0x00000010
92#define SPI_IO_C_CS_SELECT 0x0000000C
93#define SPI_IO_C_TRISTATE_CS 0x00000002
94#define SPI_IO_C_NO_TRI_STATE 0x00000001
95
96/* SPI_IO_MODES fields */
97#define SPI_IO_M_OUTPUT_BIT_SHIFT_EN QSD_REG(0x00004000) QUP_REG(0x00010000)
98#define SPI_IO_M_PACK_EN QSD_REG(0x00002000) QUP_REG(0x00008000)
99#define SPI_IO_M_UNPACK_EN QSD_REG(0x00001000) QUP_REG(0x00004000)
100#define SPI_IO_M_INPUT_MODE QSD_REG(0x00000C00) QUP_REG(0x00003000)
101#define SPI_IO_M_OUTPUT_MODE QSD_REG(0x00000300) QUP_REG(0x00000C00)
102#define SPI_IO_M_INPUT_FIFO_SIZE QSD_REG(0x000000C0) QUP_REG(0x00000380)
103#define SPI_IO_M_INPUT_BLOCK_SIZE QSD_REG(0x00000030) QUP_REG(0x00000060)
104#define SPI_IO_M_OUTPUT_FIFO_SIZE QSD_REG(0x0000000C) QUP_REG(0x0000001C)
105#define SPI_IO_M_OUTPUT_BLOCK_SIZE QSD_REG(0x00000003) QUP_REG(0x00000003)
106
107#define INPUT_BLOCK_SZ_SHIFT QSD_REG(4) QUP_REG(5)
108#define INPUT_FIFO_SZ_SHIFT QSD_REG(6) QUP_REG(7)
109#define OUTPUT_BLOCK_SZ_SHIFT QSD_REG(0) QUP_REG(0)
110#define OUTPUT_FIFO_SZ_SHIFT QSD_REG(2) QUP_REG(2)
111#define OUTPUT_MODE_SHIFT QSD_REG(8) QUP_REG(10)
112#define INPUT_MODE_SHIFT QSD_REG(10) QUP_REG(12)
113
114/* SPI_OPERATIONAL fields */
115#define SPI_OP_MAX_INPUT_DONE_FLAG 0x00000800
116#define SPI_OP_MAX_OUTPUT_DONE_FLAG 0x00000400
117#define SPI_OP_INPUT_SERVICE_FLAG 0x00000200
118#define SPI_OP_OUTPUT_SERVICE_FLAG 0x00000100
119#define SPI_OP_INPUT_FIFO_FULL 0x00000080
120#define SPI_OP_OUTPUT_FIFO_FULL 0x00000040
121#define SPI_OP_IP_FIFO_NOT_EMPTY 0x00000020
122#define SPI_OP_OP_FIFO_NOT_EMPTY 0x00000010
123#define SPI_OP_STATE_VALID 0x00000004
124#define SPI_OP_STATE 0x00000003
125
126#define SPI_OP_STATE_CLEAR_BITS 0x2
127enum msm_spi_state {
128 SPI_OP_STATE_RESET = 0x00000000,
129 SPI_OP_STATE_RUN = 0x00000001,
130 SPI_OP_STATE_PAUSE = 0x00000003,
131};
132
133/* SPI_ERROR_FLAGS fields */
134#define SPI_ERR_OUTPUT_OVER_RUN_ERR 0x00000020
135#define SPI_ERR_INPUT_UNDER_RUN_ERR 0x00000010
136#define SPI_ERR_OUTPUT_UNDER_RUN_ERR 0x00000008
137#define SPI_ERR_INPUT_OVER_RUN_ERR 0x00000004
138#define SPI_ERR_CLK_OVER_RUN_ERR 0x00000002
139#define SPI_ERR_CLK_UNDER_RUN_ERR 0x00000001
140
141/* We don't allow transactions larger than 4K-64 or 64K-64 due to
142 mx_input/output_cnt register size */
143#define SPI_MAX_TRANSFERS QSD_REG(0xFC0) QUP_REG(0xFC0)
144#define SPI_MAX_LEN (SPI_MAX_TRANSFERS * dd->bytes_per_word)
145
146#define SPI_NUM_CHIPSELECTS 4
147#define SPI_SUPPORTED_MODES (SPI_CPOL | SPI_CPHA | SPI_CS_HIGH | SPI_LOOP)
148
Gilad Avidov91c2ab4c2013-03-12 11:01:22 -0600149/* high speed mode is when bus rate is greater then 26MHz */
150#define SPI_HS_MIN_RATE (26000000)
151
Harini Jayaramanc710a5e2011-11-22 12:02:43 -0700152#define SPI_DELAY_THRESHOLD 1
153/* Default timeout is 10 milliseconds */
154#define SPI_DEFAULT_TIMEOUT 10
155/* 250 microseconds */
156#define SPI_TRYLOCK_DELAY 250
157
158/* Data Mover burst size */
159#define DM_BURST_SIZE 16
160/* Data Mover commands should be aligned to 64 bit(8 bytes) */
161#define DM_BYTE_ALIGN 8
162
Gilad Avidovd0262342012-10-24 16:52:30 -0600163enum msm_spi_qup_version {
164 SPI_QUP_VERSION_NONE = 0x0,
165 SPI_QUP_VERSION_BFAM = 0x2,
166};
167
168enum msm_spi_pipe_direction {
169 SPI_BAM_CONSUMER_PIPE = 0x0,
170 SPI_BAM_PRODUCER_PIPE = 0x1,
171};
172
173#define SPI_BAM_MAX_DESC_NUM 32
174#define SPI_MAX_TRFR_BTWN_RESETS ((64 * 1024) - 16) /* 64KB - 16byte */
Harini Jayaramanc710a5e2011-11-22 12:02:43 -0700175
176static char const * const spi_rsrcs[] = {
177 "spi_clk",
178 "spi_miso",
179 "spi_mosi"
180};
181
182static char const * const spi_cs_rsrcs[] = {
183 "spi_cs",
184 "spi_cs1",
185 "spi_cs2",
186 "spi_cs3",
187};
188
189enum msm_spi_mode {
190 SPI_FIFO_MODE = 0x0, /* 00 */
191 SPI_BLOCK_MODE = 0x1, /* 01 */
192 SPI_DMOV_MODE = 0x2, /* 10 */
193 SPI_BAM_MODE = 0x3, /* 11 */
194 SPI_MODE_NONE = 0xFF, /* invalid value */
195};
196
197/* Structure for SPI CS GPIOs */
198struct spi_cs_gpio {
199 int gpio_num;
200 bool valid;
201};
202
203/* Structures for Data Mover */
204struct spi_dmov_cmd {
205 dmov_box box; /* data aligned to max(dm_burst_size, block_size)
206 (<= fifo_size) */
207 dmov_s single_pad; /* data unaligned to max(dm_burst_size, block_size)
208 padded to fit */
209 dma_addr_t cmd_ptr;
210};
211
Steve Mucklef132c6c2012-06-06 18:30:57 -0700212static struct pm_qos_request qos_req_list;
Harini Jayaramanc710a5e2011-11-22 12:02:43 -0700213
214#ifdef CONFIG_DEBUG_FS
215/* Used to create debugfs entries */
216static const struct {
217 const char *name;
218 mode_t mode;
219 int offset;
220} debugfs_spi_regs[] = {
221 {"config", S_IRUGO | S_IWUSR, SPI_CONFIG},
222 {"io_control", S_IRUGO | S_IWUSR, SPI_IO_CONTROL},
223 {"io_modes", S_IRUGO | S_IWUSR, SPI_IO_MODES},
224 {"sw_reset", S_IWUSR, SPI_SW_RESET},
225 {"time_out_current", S_IRUGO, SPI_TIME_OUT_CURRENT},
226 {"mx_output_count", S_IRUGO | S_IWUSR, SPI_MX_OUTPUT_COUNT},
227 {"mx_output_cnt_current", S_IRUGO, SPI_MX_OUTPUT_CNT_CURRENT},
228 {"mx_input_count", S_IRUGO | S_IWUSR, SPI_MX_INPUT_COUNT},
229 {"mx_input_cnt_current", S_IRUGO, SPI_MX_INPUT_CNT_CURRENT},
230 {"mx_read_count", S_IRUGO | S_IWUSR, SPI_MX_READ_COUNT},
231 {"mx_read_cnt_current", S_IRUGO, SPI_MX_READ_CNT_CURRENT},
232 {"operational", S_IRUGO | S_IWUSR, SPI_OPERATIONAL},
233 {"error_flags", S_IRUGO | S_IWUSR, SPI_ERROR_FLAGS},
234 {"error_flags_en", S_IRUGO | S_IWUSR, SPI_ERROR_FLAGS_EN},
235 {"deassert_wait", S_IRUGO | S_IWUSR, SPI_DEASSERT_WAIT},
236 {"output_debug", S_IRUGO, SPI_OUTPUT_DEBUG},
237 {"input_debug", S_IRUGO, SPI_INPUT_DEBUG},
238 {"test_ctrl", S_IRUGO | S_IWUSR, SPI_TEST_CTRL},
239 {"output_fifo", S_IWUSR, SPI_OUTPUT_FIFO},
240 {"input_fifo" , S_IRUSR, SPI_INPUT_FIFO},
241 {"spi_state", S_IRUGO | S_IWUSR, SPI_STATE},
242#if defined(CONFIG_SPI_QSD) || defined(CONFIG_SPI_QSD_MODULE)
243 {"fifo_word_cnt", S_IRUGO, SPI_FIFO_WORD_CNT},
244#else
245 {"qup_config", S_IRUGO | S_IWUSR, QUP_CONFIG},
246 {"qup_error_flags", S_IRUGO | S_IWUSR, QUP_ERROR_FLAGS},
247 {"qup_error_flags_en", S_IRUGO | S_IWUSR, QUP_ERROR_FLAGS_EN},
248 {"mx_write_cnt", S_IRUGO | S_IWUSR, QUP_MX_WRITE_COUNT},
249 {"mx_write_cnt_current", S_IRUGO, QUP_MX_WRITE_CNT_CURRENT},
250 {"output_fifo_word_cnt", S_IRUGO, SPI_OUTPUT_FIFO_WORD_CNT},
251 {"input_fifo_word_cnt", S_IRUGO, SPI_INPUT_FIFO_WORD_CNT},
252#endif
253};
254#endif
255
Gilad Avidovd0262342012-10-24 16:52:30 -0600256struct msm_spi_bam_pipe {
257 struct sps_pipe *handle;
258 struct sps_connect config;
259 bool teardown_required;
260};
261
262struct msm_spi_bam {
263 void __iomem *base;
264 u32 phys_addr;
265 u32 handle;
266 u32 irq;
267 struct msm_spi_bam_pipe prod;
268 struct msm_spi_bam_pipe cons;
269 bool deregister_required;
270};
271
Harini Jayaramanc710a5e2011-11-22 12:02:43 -0700272struct msm_spi {
273 u8 *read_buf;
274 const u8 *write_buf;
275 void __iomem *base;
276 struct device *dev;
277 spinlock_t queue_lock;
278 struct mutex core_lock;
279 struct list_head queue;
280 struct workqueue_struct *workqueue;
281 struct work_struct work_data;
282 struct spi_message *cur_msg;
283 struct spi_transfer *cur_transfer;
284 struct completion transfer_complete;
Gilad Avidovd0262342012-10-24 16:52:30 -0600285 struct clk *clk; /* core clock */
286 struct clk *pclk; /* interface clock */
Harini Jayaramanc710a5e2011-11-22 12:02:43 -0700287 unsigned long mem_phys_addr;
288 size_t mem_size;
289 int input_fifo_size;
290 int output_fifo_size;
291 u32 rx_bytes_remaining;
292 u32 tx_bytes_remaining;
293 u32 clock_speed;
294 int irq_in;
295 int read_xfr_cnt;
296 int write_xfr_cnt;
297 int write_len;
298 int read_len;
299#if defined(CONFIG_SPI_QSD) || defined(CONFIG_SPI_QSD_MODULE)
300 int irq_out;
301 int irq_err;
302#endif
303 int bytes_per_word;
304 bool suspended;
305 bool transfer_pending;
306 wait_queue_head_t continue_suspend;
307 /* DMA data */
308 enum msm_spi_mode mode;
309 bool use_dma;
310 int tx_dma_chan;
311 int tx_dma_crci;
312 int rx_dma_chan;
313 int rx_dma_crci;
Gilad Avidovd0262342012-10-24 16:52:30 -0600314 int (*dma_init) (struct msm_spi *dd);
315 void (*dma_teardown) (struct msm_spi *dd);
316 struct msm_spi_bam bam;
Harini Jayaramanc710a5e2011-11-22 12:02:43 -0700317 /* Data Mover Commands */
318 struct spi_dmov_cmd *tx_dmov_cmd;
319 struct spi_dmov_cmd *rx_dmov_cmd;
320 /* Physical address of the tx dmov box command */
321 dma_addr_t tx_dmov_cmd_dma;
322 dma_addr_t rx_dmov_cmd_dma;
323 struct msm_dmov_cmd tx_hdr;
324 struct msm_dmov_cmd rx_hdr;
325 int input_block_size;
326 int output_block_size;
Alok Chauhan3a2b4d92013-02-15 16:04:20 +0530327 int input_burst_size;
328 int output_burst_size;
Harini Jayaramanc710a5e2011-11-22 12:02:43 -0700329 atomic_t rx_irq_called;
Kiran Gunda54eb06e2012-05-18 15:17:06 +0530330 atomic_t tx_irq_called;
Harini Jayaramanc710a5e2011-11-22 12:02:43 -0700331 /* Used to pad messages unaligned to block size */
332 u8 *tx_padding;
333 dma_addr_t tx_padding_dma;
334 u8 *rx_padding;
335 dma_addr_t rx_padding_dma;
Alok Chauhan3a2b4d92013-02-15 16:04:20 +0530336 u32 tx_unaligned_len;
337 u32 rx_unaligned_len;
Harini Jayaramanc710a5e2011-11-22 12:02:43 -0700338 /* DMA statistics */
339 int stat_dmov_tx_err;
340 int stat_dmov_rx_err;
341 int stat_rx;
342 int stat_dmov_rx;
343 int stat_tx;
344 int stat_dmov_tx;
345#ifdef CONFIG_DEBUG_FS
346 struct dentry *dent_spi;
347 struct dentry *debugfs_spi_regs[ARRAY_SIZE(debugfs_spi_regs)];
348#endif
349 struct msm_spi_platform_data *pdata; /* Platform data */
350 /* Remote Spinlock Data */
351 bool use_rlock;
352 remote_mutex_t r_lock;
353 uint32_t pm_lat;
354 /* When set indicates multiple transfers in a single message */
355 bool multi_xfr;
356 bool done;
357 u32 cur_msg_len;
358 /* Used in FIFO mode to keep track of the transfer being processed */
359 struct spi_transfer *cur_tx_transfer;
360 struct spi_transfer *cur_rx_transfer;
361 /* Temporary buffer used for WR-WR or WR-RD transfers */
362 u8 *temp_buf;
363 /* GPIO pin numbers for SPI clk, miso and mosi */
364 int spi_gpios[ARRAY_SIZE(spi_rsrcs)];
365 /* SPI CS GPIOs for each slave */
366 struct spi_cs_gpio cs_gpios[ARRAY_SIZE(spi_cs_rsrcs)];
Gilad Avidovd0262342012-10-24 16:52:30 -0600367 enum msm_spi_qup_version qup_ver;
Kiran Gundac5fbd7f2012-07-30 13:22:39 +0530368 int max_trfr_len;
Harini Jayaramanc710a5e2011-11-22 12:02:43 -0700369};
370
371/* Forward declaration */
372static irqreturn_t msm_spi_input_irq(int irq, void *dev_id);
373static irqreturn_t msm_spi_output_irq(int irq, void *dev_id);
374static irqreturn_t msm_spi_error_irq(int irq, void *dev_id);
375static inline int msm_spi_set_state(struct msm_spi *dd,
376 enum msm_spi_state state);
377static void msm_spi_write_word_to_fifo(struct msm_spi *dd);
378static inline void msm_spi_write_rmn_to_fifo(struct msm_spi *dd);
Gilad Avidovd0262342012-10-24 16:52:30 -0600379static irqreturn_t msm_spi_qup_irq(int irq, void *dev_id);
Harini Jayaramanc710a5e2011-11-22 12:02:43 -0700380
381#if defined(CONFIG_SPI_QSD) || defined(CONFIG_SPI_QSD_MODULE)
382static inline void msm_spi_disable_irqs(struct msm_spi *dd)
383{
384 disable_irq(dd->irq_in);
385 disable_irq(dd->irq_out);
386 disable_irq(dd->irq_err);
387}
388
389static inline void msm_spi_enable_irqs(struct msm_spi *dd)
390{
391 enable_irq(dd->irq_in);
392 enable_irq(dd->irq_out);
393 enable_irq(dd->irq_err);
394}
395
396static inline int msm_spi_request_irq(struct msm_spi *dd,
397 struct platform_device *pdev,
398 struct spi_master *master)
399{
400 int rc;
401
402 dd->irq_in = platform_get_irq(pdev, 0);
403 dd->irq_out = platform_get_irq(pdev, 1);
404 dd->irq_err = platform_get_irq(pdev, 2);
405 if ((dd->irq_in < 0) || (dd->irq_out < 0) || (dd->irq_err < 0))
406 return -EINVAL;
407
408 rc = devm_request_irq(dd->dev, dd->irq_in, msm_spi_input_irq,
409 IRQF_TRIGGER_RISING, pdev->name, dd);
410 if (rc)
411 goto error_irq;
412
413 rc = devm_request_irq(dd->dev, dd->irq_out, msm_spi_output_irq,
414 IRQF_TRIGGER_RISING, pdev->name, dd);
415 if (rc)
416 goto error_irq;
417
418 rc = devm_request_irq(dd->dev, dd->irq_err, msm_spi_error_irq,
419 IRQF_TRIGGER_RISING, pdev->name, master);
420 if (rc)
421 goto error_irq;
422
423error_irq:
424 return rc;
425}
426
427static inline void msm_spi_get_clk_err(struct msm_spi *dd, u32 *spi_err) {}
428static inline void msm_spi_ack_clk_err(struct msm_spi *dd) {}
429static inline void msm_spi_set_qup_config(struct msm_spi *dd, int bpw) {}
430
Gilad Avidovd0262342012-10-24 16:52:30 -0600431static inline int msm_spi_prepare_for_write(struct msm_spi *dd) { return 0; }
Harini Jayaramanc710a5e2011-11-22 12:02:43 -0700432static inline void msm_spi_start_write(struct msm_spi *dd, u32 read_count)
433{
434 msm_spi_write_word_to_fifo(dd);
435}
436static inline void msm_spi_set_write_count(struct msm_spi *dd, int val) {}
437
438static inline void msm_spi_complete(struct msm_spi *dd)
439{
440 complete(&dd->transfer_complete);
441}
442
443static inline void msm_spi_enable_error_flags(struct msm_spi *dd)
444{
445 writel_relaxed(0x0000007B, dd->base + SPI_ERROR_FLAGS_EN);
446}
447
448static inline void msm_spi_clear_error_flags(struct msm_spi *dd)
449{
450 writel_relaxed(0x0000007F, dd->base + SPI_ERROR_FLAGS);
451}
452
453#else
454/* In QUP the same interrupt line is used for input, output and error*/
455static inline int msm_spi_request_irq(struct msm_spi *dd,
456 struct platform_device *pdev,
457 struct spi_master *master)
458{
459 dd->irq_in = platform_get_irq(pdev, 0);
460 if (dd->irq_in < 0)
461 return -EINVAL;
462
463 return devm_request_irq(dd->dev, dd->irq_in, msm_spi_qup_irq,
464 IRQF_TRIGGER_HIGH, pdev->name, dd);
465}
466
467static inline void msm_spi_disable_irqs(struct msm_spi *dd)
468{
469 disable_irq(dd->irq_in);
470}
471
472static inline void msm_spi_enable_irqs(struct msm_spi *dd)
473{
474 enable_irq(dd->irq_in);
475}
476
477static inline void msm_spi_get_clk_err(struct msm_spi *dd, u32 *spi_err)
478{
479 *spi_err = readl_relaxed(dd->base + QUP_ERROR_FLAGS);
480}
481
482static inline void msm_spi_ack_clk_err(struct msm_spi *dd)
483{
484 writel_relaxed(QUP_ERR_MASK, dd->base + QUP_ERROR_FLAGS);
485}
486
Gilad Avidovd0262342012-10-24 16:52:30 -0600487static inline void
488msm_spi_set_bpw_and_no_io_flags(struct msm_spi *dd, u32 *config, int n);
Harini Jayaramanc710a5e2011-11-22 12:02:43 -0700489
Gilad Avidovd0262342012-10-24 16:52:30 -0600490/**
491 * msm_spi_set_qup_config: set QUP_CONFIG to no_input, no_output, and N bits
492 */
Harini Jayaramanc710a5e2011-11-22 12:02:43 -0700493static inline void msm_spi_set_qup_config(struct msm_spi *dd, int bpw)
494{
495 u32 qup_config = readl_relaxed(dd->base + QUP_CONFIG);
496
Gilad Avidovd0262342012-10-24 16:52:30 -0600497 msm_spi_set_bpw_and_no_io_flags(dd, &qup_config, bpw-1);
498 writel_relaxed(qup_config | QUP_CONFIG_SPI_MODE, dd->base + QUP_CONFIG);
Harini Jayaramanc710a5e2011-11-22 12:02:43 -0700499}
500
501static inline int msm_spi_prepare_for_write(struct msm_spi *dd)
502{
503 if (msm_spi_set_state(dd, SPI_OP_STATE_RUN))
504 return -EINVAL;
505 if (msm_spi_set_state(dd, SPI_OP_STATE_PAUSE))
506 return -EINVAL;
507 return 0;
508}
509
510static inline void msm_spi_start_write(struct msm_spi *dd, u32 read_count)
511{
512 if (read_count <= dd->input_fifo_size)
513 msm_spi_write_rmn_to_fifo(dd);
514 else
515 msm_spi_write_word_to_fifo(dd);
516}
517
518static inline void msm_spi_set_write_count(struct msm_spi *dd, int val)
519{
520 writel_relaxed(val, dd->base + QUP_MX_WRITE_COUNT);
521}
522
523static inline void msm_spi_complete(struct msm_spi *dd)
524{
525 dd->done = 1;
526}
527
528static inline void msm_spi_enable_error_flags(struct msm_spi *dd)
529{
Gilad Avidovd0262342012-10-24 16:52:30 -0600530 if (dd->qup_ver == SPI_QUP_VERSION_BFAM)
531 writel_relaxed(
532 SPI_ERR_CLK_UNDER_RUN_ERR | SPI_ERR_CLK_OVER_RUN_ERR,
533 dd->base + SPI_ERROR_FLAGS_EN);
534 else
535 writel_relaxed(0x00000078, dd->base + SPI_ERROR_FLAGS_EN);
Harini Jayaramanc710a5e2011-11-22 12:02:43 -0700536}
537
538static inline void msm_spi_clear_error_flags(struct msm_spi *dd)
539{
Gilad Avidovd0262342012-10-24 16:52:30 -0600540 if (dd->qup_ver == SPI_QUP_VERSION_BFAM)
541 writel_relaxed(
542 SPI_ERR_CLK_UNDER_RUN_ERR | SPI_ERR_CLK_OVER_RUN_ERR,
543 dd->base + SPI_ERROR_FLAGS);
544 else
545 writel_relaxed(0x0000007C, dd->base + SPI_ERROR_FLAGS);
Harini Jayaramanc710a5e2011-11-22 12:02:43 -0700546}
547
548#endif
549#endif