blob: 2a67a61cebe764d0dd0bb8f8e39f36e27c13ef07 [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
Gilad Avidov23350552013-05-21 09:26:46 -0600176enum msm_spi_clk_path_vec_idx {
177 MSM_SPI_CLK_PATH_SUSPEND_VEC = 0,
178 MSM_SPI_CLK_PATH_RESUME_VEC = 1,
179};
180#define MSM_SPI_CLK_PATH_AVRG_BW(dd) (dd->pdata->max_clock_speed * 8)
181#define MSM_SPI_CLK_PATH_BRST_BW(dd) (dd->pdata->max_clock_speed * 8)
182
Harini Jayaramanc710a5e2011-11-22 12:02:43 -0700183static char const * const spi_rsrcs[] = {
184 "spi_clk",
185 "spi_miso",
186 "spi_mosi"
187};
188
189static char const * const spi_cs_rsrcs[] = {
190 "spi_cs",
191 "spi_cs1",
192 "spi_cs2",
193 "spi_cs3",
194};
195
196enum msm_spi_mode {
197 SPI_FIFO_MODE = 0x0, /* 00 */
198 SPI_BLOCK_MODE = 0x1, /* 01 */
199 SPI_DMOV_MODE = 0x2, /* 10 */
200 SPI_BAM_MODE = 0x3, /* 11 */
201 SPI_MODE_NONE = 0xFF, /* invalid value */
202};
203
204/* Structure for SPI CS GPIOs */
205struct spi_cs_gpio {
206 int gpio_num;
207 bool valid;
208};
209
210/* Structures for Data Mover */
211struct spi_dmov_cmd {
212 dmov_box box; /* data aligned to max(dm_burst_size, block_size)
213 (<= fifo_size) */
214 dmov_s single_pad; /* data unaligned to max(dm_burst_size, block_size)
215 padded to fit */
216 dma_addr_t cmd_ptr;
217};
218
Steve Mucklef132c6c2012-06-06 18:30:57 -0700219static struct pm_qos_request qos_req_list;
Harini Jayaramanc710a5e2011-11-22 12:02:43 -0700220
221#ifdef CONFIG_DEBUG_FS
222/* Used to create debugfs entries */
223static const struct {
224 const char *name;
225 mode_t mode;
226 int offset;
227} debugfs_spi_regs[] = {
228 {"config", S_IRUGO | S_IWUSR, SPI_CONFIG},
229 {"io_control", S_IRUGO | S_IWUSR, SPI_IO_CONTROL},
230 {"io_modes", S_IRUGO | S_IWUSR, SPI_IO_MODES},
231 {"sw_reset", S_IWUSR, SPI_SW_RESET},
232 {"time_out_current", S_IRUGO, SPI_TIME_OUT_CURRENT},
233 {"mx_output_count", S_IRUGO | S_IWUSR, SPI_MX_OUTPUT_COUNT},
234 {"mx_output_cnt_current", S_IRUGO, SPI_MX_OUTPUT_CNT_CURRENT},
235 {"mx_input_count", S_IRUGO | S_IWUSR, SPI_MX_INPUT_COUNT},
236 {"mx_input_cnt_current", S_IRUGO, SPI_MX_INPUT_CNT_CURRENT},
237 {"mx_read_count", S_IRUGO | S_IWUSR, SPI_MX_READ_COUNT},
238 {"mx_read_cnt_current", S_IRUGO, SPI_MX_READ_CNT_CURRENT},
239 {"operational", S_IRUGO | S_IWUSR, SPI_OPERATIONAL},
240 {"error_flags", S_IRUGO | S_IWUSR, SPI_ERROR_FLAGS},
241 {"error_flags_en", S_IRUGO | S_IWUSR, SPI_ERROR_FLAGS_EN},
242 {"deassert_wait", S_IRUGO | S_IWUSR, SPI_DEASSERT_WAIT},
243 {"output_debug", S_IRUGO, SPI_OUTPUT_DEBUG},
244 {"input_debug", S_IRUGO, SPI_INPUT_DEBUG},
245 {"test_ctrl", S_IRUGO | S_IWUSR, SPI_TEST_CTRL},
246 {"output_fifo", S_IWUSR, SPI_OUTPUT_FIFO},
247 {"input_fifo" , S_IRUSR, SPI_INPUT_FIFO},
248 {"spi_state", S_IRUGO | S_IWUSR, SPI_STATE},
249#if defined(CONFIG_SPI_QSD) || defined(CONFIG_SPI_QSD_MODULE)
250 {"fifo_word_cnt", S_IRUGO, SPI_FIFO_WORD_CNT},
251#else
252 {"qup_config", S_IRUGO | S_IWUSR, QUP_CONFIG},
253 {"qup_error_flags", S_IRUGO | S_IWUSR, QUP_ERROR_FLAGS},
254 {"qup_error_flags_en", S_IRUGO | S_IWUSR, QUP_ERROR_FLAGS_EN},
255 {"mx_write_cnt", S_IRUGO | S_IWUSR, QUP_MX_WRITE_COUNT},
256 {"mx_write_cnt_current", S_IRUGO, QUP_MX_WRITE_CNT_CURRENT},
257 {"output_fifo_word_cnt", S_IRUGO, SPI_OUTPUT_FIFO_WORD_CNT},
258 {"input_fifo_word_cnt", S_IRUGO, SPI_INPUT_FIFO_WORD_CNT},
259#endif
260};
261#endif
262
Gilad Avidov23350552013-05-21 09:26:46 -0600263/**
264 * qup_i2c_clk_path_vote: data to use bus scaling driver for clock path vote
265 *
266 * @client_hdl when zero, client is not registered with the bus scaling driver,
267 * and bus scaling functionality should not be used. When non zero, it
268 * is a bus scaling client id and may be used to vote for clock path.
269 * @reg_err when true, registration error was detected and an error message was
270 * logged. i2c will attempt to re-register but will log error only once.
271 * once registration succeed, the flag is set to false.
272 */
273struct qup_i2c_clk_path_vote {
274 u32 client_hdl;
275 struct msm_bus_scale_pdata *pdata;
276 bool reg_err;
277};
278
Gilad Avidovd0262342012-10-24 16:52:30 -0600279struct msm_spi_bam_pipe {
Gilad Avidov799cfeb2013-06-26 17:18:36 -0600280 const char *name;
Gilad Avidovd0262342012-10-24 16:52:30 -0600281 struct sps_pipe *handle;
282 struct sps_connect config;
283 bool teardown_required;
284};
285
286struct msm_spi_bam {
287 void __iomem *base;
288 u32 phys_addr;
289 u32 handle;
290 u32 irq;
291 struct msm_spi_bam_pipe prod;
292 struct msm_spi_bam_pipe cons;
293 bool deregister_required;
294};
295
Harini Jayaramanc710a5e2011-11-22 12:02:43 -0700296struct msm_spi {
297 u8 *read_buf;
298 const u8 *write_buf;
299 void __iomem *base;
300 struct device *dev;
301 spinlock_t queue_lock;
302 struct mutex core_lock;
303 struct list_head queue;
304 struct workqueue_struct *workqueue;
305 struct work_struct work_data;
306 struct spi_message *cur_msg;
307 struct spi_transfer *cur_transfer;
308 struct completion transfer_complete;
Gilad Avidovd0262342012-10-24 16:52:30 -0600309 struct clk *clk; /* core clock */
310 struct clk *pclk; /* interface clock */
Gilad Avidov23350552013-05-21 09:26:46 -0600311 struct qup_i2c_clk_path_vote clk_path_vote;
Harini Jayaramanc710a5e2011-11-22 12:02:43 -0700312 unsigned long mem_phys_addr;
313 size_t mem_size;
314 int input_fifo_size;
315 int output_fifo_size;
316 u32 rx_bytes_remaining;
317 u32 tx_bytes_remaining;
318 u32 clock_speed;
319 int irq_in;
320 int read_xfr_cnt;
321 int write_xfr_cnt;
322 int write_len;
323 int read_len;
324#if defined(CONFIG_SPI_QSD) || defined(CONFIG_SPI_QSD_MODULE)
325 int irq_out;
326 int irq_err;
327#endif
328 int bytes_per_word;
329 bool suspended;
330 bool transfer_pending;
331 wait_queue_head_t continue_suspend;
332 /* DMA data */
333 enum msm_spi_mode mode;
334 bool use_dma;
335 int tx_dma_chan;
336 int tx_dma_crci;
337 int rx_dma_chan;
338 int rx_dma_crci;
Gilad Avidovd0262342012-10-24 16:52:30 -0600339 int (*dma_init) (struct msm_spi *dd);
340 void (*dma_teardown) (struct msm_spi *dd);
341 struct msm_spi_bam bam;
Harini Jayaramanc710a5e2011-11-22 12:02:43 -0700342 /* Data Mover Commands */
343 struct spi_dmov_cmd *tx_dmov_cmd;
344 struct spi_dmov_cmd *rx_dmov_cmd;
345 /* Physical address of the tx dmov box command */
346 dma_addr_t tx_dmov_cmd_dma;
347 dma_addr_t rx_dmov_cmd_dma;
348 struct msm_dmov_cmd tx_hdr;
349 struct msm_dmov_cmd rx_hdr;
350 int input_block_size;
351 int output_block_size;
Alok Chauhan3a2b4d92013-02-15 16:04:20 +0530352 int input_burst_size;
353 int output_burst_size;
Harini Jayaramanc710a5e2011-11-22 12:02:43 -0700354 atomic_t rx_irq_called;
Kiran Gunda54eb06e2012-05-18 15:17:06 +0530355 atomic_t tx_irq_called;
Harini Jayaramanc710a5e2011-11-22 12:02:43 -0700356 /* Used to pad messages unaligned to block size */
357 u8 *tx_padding;
358 dma_addr_t tx_padding_dma;
359 u8 *rx_padding;
360 dma_addr_t rx_padding_dma;
Alok Chauhan3a2b4d92013-02-15 16:04:20 +0530361 u32 tx_unaligned_len;
362 u32 rx_unaligned_len;
Harini Jayaramanc710a5e2011-11-22 12:02:43 -0700363 /* DMA statistics */
364 int stat_dmov_tx_err;
365 int stat_dmov_rx_err;
366 int stat_rx;
367 int stat_dmov_rx;
368 int stat_tx;
369 int stat_dmov_tx;
370#ifdef CONFIG_DEBUG_FS
371 struct dentry *dent_spi;
372 struct dentry *debugfs_spi_regs[ARRAY_SIZE(debugfs_spi_regs)];
373#endif
374 struct msm_spi_platform_data *pdata; /* Platform data */
375 /* Remote Spinlock Data */
376 bool use_rlock;
377 remote_mutex_t r_lock;
378 uint32_t pm_lat;
379 /* When set indicates multiple transfers in a single message */
380 bool multi_xfr;
381 bool done;
382 u32 cur_msg_len;
383 /* Used in FIFO mode to keep track of the transfer being processed */
384 struct spi_transfer *cur_tx_transfer;
385 struct spi_transfer *cur_rx_transfer;
386 /* Temporary buffer used for WR-WR or WR-RD transfers */
387 u8 *temp_buf;
388 /* GPIO pin numbers for SPI clk, miso and mosi */
389 int spi_gpios[ARRAY_SIZE(spi_rsrcs)];
390 /* SPI CS GPIOs for each slave */
391 struct spi_cs_gpio cs_gpios[ARRAY_SIZE(spi_cs_rsrcs)];
Gilad Avidovd0262342012-10-24 16:52:30 -0600392 enum msm_spi_qup_version qup_ver;
Kiran Gundac5fbd7f2012-07-30 13:22:39 +0530393 int max_trfr_len;
Harini Jayaramanc710a5e2011-11-22 12:02:43 -0700394};
395
396/* Forward declaration */
397static irqreturn_t msm_spi_input_irq(int irq, void *dev_id);
398static irqreturn_t msm_spi_output_irq(int irq, void *dev_id);
399static irqreturn_t msm_spi_error_irq(int irq, void *dev_id);
400static inline int msm_spi_set_state(struct msm_spi *dd,
401 enum msm_spi_state state);
402static void msm_spi_write_word_to_fifo(struct msm_spi *dd);
403static inline void msm_spi_write_rmn_to_fifo(struct msm_spi *dd);
Gilad Avidovd0262342012-10-24 16:52:30 -0600404static irqreturn_t msm_spi_qup_irq(int irq, void *dev_id);
Harini Jayaramanc710a5e2011-11-22 12:02:43 -0700405
406#if defined(CONFIG_SPI_QSD) || defined(CONFIG_SPI_QSD_MODULE)
407static inline void msm_spi_disable_irqs(struct msm_spi *dd)
408{
409 disable_irq(dd->irq_in);
410 disable_irq(dd->irq_out);
411 disable_irq(dd->irq_err);
412}
413
414static inline void msm_spi_enable_irqs(struct msm_spi *dd)
415{
416 enable_irq(dd->irq_in);
417 enable_irq(dd->irq_out);
418 enable_irq(dd->irq_err);
419}
420
421static inline int msm_spi_request_irq(struct msm_spi *dd,
422 struct platform_device *pdev,
423 struct spi_master *master)
424{
425 int rc;
426
427 dd->irq_in = platform_get_irq(pdev, 0);
428 dd->irq_out = platform_get_irq(pdev, 1);
429 dd->irq_err = platform_get_irq(pdev, 2);
430 if ((dd->irq_in < 0) || (dd->irq_out < 0) || (dd->irq_err < 0))
431 return -EINVAL;
432
433 rc = devm_request_irq(dd->dev, dd->irq_in, msm_spi_input_irq,
434 IRQF_TRIGGER_RISING, pdev->name, dd);
435 if (rc)
436 goto error_irq;
437
438 rc = devm_request_irq(dd->dev, dd->irq_out, msm_spi_output_irq,
439 IRQF_TRIGGER_RISING, pdev->name, dd);
440 if (rc)
441 goto error_irq;
442
443 rc = devm_request_irq(dd->dev, dd->irq_err, msm_spi_error_irq,
444 IRQF_TRIGGER_RISING, pdev->name, master);
445 if (rc)
446 goto error_irq;
447
448error_irq:
449 return rc;
450}
451
452static inline void msm_spi_get_clk_err(struct msm_spi *dd, u32 *spi_err) {}
453static inline void msm_spi_ack_clk_err(struct msm_spi *dd) {}
454static inline void msm_spi_set_qup_config(struct msm_spi *dd, int bpw) {}
455
Gilad Avidovd0262342012-10-24 16:52:30 -0600456static inline int msm_spi_prepare_for_write(struct msm_spi *dd) { return 0; }
Harini Jayaramanc710a5e2011-11-22 12:02:43 -0700457static inline void msm_spi_start_write(struct msm_spi *dd, u32 read_count)
458{
459 msm_spi_write_word_to_fifo(dd);
460}
461static inline void msm_spi_set_write_count(struct msm_spi *dd, int val) {}
462
463static inline void msm_spi_complete(struct msm_spi *dd)
464{
465 complete(&dd->transfer_complete);
466}
467
468static inline void msm_spi_enable_error_flags(struct msm_spi *dd)
469{
470 writel_relaxed(0x0000007B, dd->base + SPI_ERROR_FLAGS_EN);
471}
472
473static inline void msm_spi_clear_error_flags(struct msm_spi *dd)
474{
475 writel_relaxed(0x0000007F, dd->base + SPI_ERROR_FLAGS);
476}
477
478#else
479/* In QUP the same interrupt line is used for input, output and error*/
480static inline int msm_spi_request_irq(struct msm_spi *dd,
481 struct platform_device *pdev,
482 struct spi_master *master)
483{
484 dd->irq_in = platform_get_irq(pdev, 0);
485 if (dd->irq_in < 0)
486 return -EINVAL;
487
488 return devm_request_irq(dd->dev, dd->irq_in, msm_spi_qup_irq,
489 IRQF_TRIGGER_HIGH, pdev->name, dd);
490}
491
492static inline void msm_spi_disable_irqs(struct msm_spi *dd)
493{
494 disable_irq(dd->irq_in);
495}
496
497static inline void msm_spi_enable_irqs(struct msm_spi *dd)
498{
499 enable_irq(dd->irq_in);
500}
501
502static inline void msm_spi_get_clk_err(struct msm_spi *dd, u32 *spi_err)
503{
504 *spi_err = readl_relaxed(dd->base + QUP_ERROR_FLAGS);
505}
506
507static inline void msm_spi_ack_clk_err(struct msm_spi *dd)
508{
509 writel_relaxed(QUP_ERR_MASK, dd->base + QUP_ERROR_FLAGS);
510}
511
Gilad Avidovd0262342012-10-24 16:52:30 -0600512static inline void
513msm_spi_set_bpw_and_no_io_flags(struct msm_spi *dd, u32 *config, int n);
Harini Jayaramanc710a5e2011-11-22 12:02:43 -0700514
Gilad Avidovd0262342012-10-24 16:52:30 -0600515/**
516 * msm_spi_set_qup_config: set QUP_CONFIG to no_input, no_output, and N bits
517 */
Harini Jayaramanc710a5e2011-11-22 12:02:43 -0700518static inline void msm_spi_set_qup_config(struct msm_spi *dd, int bpw)
519{
520 u32 qup_config = readl_relaxed(dd->base + QUP_CONFIG);
521
Gilad Avidovd0262342012-10-24 16:52:30 -0600522 msm_spi_set_bpw_and_no_io_flags(dd, &qup_config, bpw-1);
523 writel_relaxed(qup_config | QUP_CONFIG_SPI_MODE, dd->base + QUP_CONFIG);
Harini Jayaramanc710a5e2011-11-22 12:02:43 -0700524}
525
526static inline int msm_spi_prepare_for_write(struct msm_spi *dd)
527{
528 if (msm_spi_set_state(dd, SPI_OP_STATE_RUN))
529 return -EINVAL;
530 if (msm_spi_set_state(dd, SPI_OP_STATE_PAUSE))
531 return -EINVAL;
532 return 0;
533}
534
535static inline void msm_spi_start_write(struct msm_spi *dd, u32 read_count)
536{
537 if (read_count <= dd->input_fifo_size)
538 msm_spi_write_rmn_to_fifo(dd);
539 else
540 msm_spi_write_word_to_fifo(dd);
541}
542
543static inline void msm_spi_set_write_count(struct msm_spi *dd, int val)
544{
545 writel_relaxed(val, dd->base + QUP_MX_WRITE_COUNT);
546}
547
548static inline void msm_spi_complete(struct msm_spi *dd)
549{
550 dd->done = 1;
551}
552
553static inline void msm_spi_enable_error_flags(struct msm_spi *dd)
554{
Gilad Avidovd0262342012-10-24 16:52:30 -0600555 if (dd->qup_ver == SPI_QUP_VERSION_BFAM)
556 writel_relaxed(
557 SPI_ERR_CLK_UNDER_RUN_ERR | SPI_ERR_CLK_OVER_RUN_ERR,
558 dd->base + SPI_ERROR_FLAGS_EN);
559 else
560 writel_relaxed(0x00000078, dd->base + SPI_ERROR_FLAGS_EN);
Harini Jayaramanc710a5e2011-11-22 12:02:43 -0700561}
562
563static inline void msm_spi_clear_error_flags(struct msm_spi *dd)
564{
Gilad Avidovd0262342012-10-24 16:52:30 -0600565 if (dd->qup_ver == SPI_QUP_VERSION_BFAM)
566 writel_relaxed(
567 SPI_ERR_CLK_UNDER_RUN_ERR | SPI_ERR_CLK_OVER_RUN_ERR,
568 dd->base + SPI_ERROR_FLAGS);
569 else
570 writel_relaxed(0x0000007C, dd->base + SPI_ERROR_FLAGS);
Harini Jayaramanc710a5e2011-11-22 12:02:43 -0700571}
572
573#endif
574#endif