]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - include/linux/spi/mxs-spi.h
mmc: spi: Pull out parts shared between MMC and SPI
[mirror_ubuntu-bionic-kernel.git] / include / linux / spi / mxs-spi.h
CommitLineData
8be3d3b2
MV
1/*
2 * include/linux/spi/mxs-spi.h
3 *
4 * Freescale i.MX233/i.MX28 SPI controller register definition
5 *
6 * Copyright 2008 Embedded Alley Solutions, Inc.
7 * Copyright 2009-2011 Freescale Semiconductor, Inc.
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License along
20 * with this program; if not, write to the Free Software Foundation, Inc.,
21 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
22 */
23
24#ifndef __LINUX_SPI_MXS_SPI_H__
25#define __LINUX_SPI_MXS_SPI_H__
26
600a991f 27#define ssp_is_old(host) ((host)->devid == IMX23_SSP)
8be3d3b2
MV
28
29/* SSP registers */
30#define HW_SSP_CTRL0 0x000
31#define BM_SSP_CTRL0_RUN (1 << 29)
32#define BM_SSP_CTRL0_SDIO_IRQ_CHECK (1 << 28)
f83b7380 33#define BM_SSP_CTRL0_LOCK_CS (1 << 27)
8be3d3b2
MV
34#define BM_SSP_CTRL0_IGNORE_CRC (1 << 26)
35#define BM_SSP_CTRL0_READ (1 << 25)
36#define BM_SSP_CTRL0_DATA_XFER (1 << 24)
37#define BP_SSP_CTRL0_BUS_WIDTH 22
38#define BM_SSP_CTRL0_BUS_WIDTH (0x3 << 22)
39#define BM_SSP_CTRL0_WAIT_FOR_IRQ (1 << 21)
f83b7380 40#define BM_SSP_CTRL0_WAIT_FOR_CMD (1 << 20)
8be3d3b2
MV
41#define BM_SSP_CTRL0_LONG_RESP (1 << 19)
42#define BM_SSP_CTRL0_GET_RESP (1 << 17)
43#define BM_SSP_CTRL0_ENABLE (1 << 16)
44#define BP_SSP_CTRL0_XFER_COUNT 0
45#define BM_SSP_CTRL0_XFER_COUNT 0xffff
46#define HW_SSP_CMD0 0x010
47#define BM_SSP_CMD0_DBL_DATA_RATE_EN (1 << 25)
48#define BM_SSP_CMD0_SLOW_CLKING_EN (1 << 22)
49#define BM_SSP_CMD0_CONT_CLKING_EN (1 << 21)
50#define BM_SSP_CMD0_APPEND_8CYC (1 << 20)
51#define BP_SSP_CMD0_BLOCK_SIZE 16
52#define BM_SSP_CMD0_BLOCK_SIZE (0xf << 16)
53#define BP_SSP_CMD0_BLOCK_COUNT 8
54#define BM_SSP_CMD0_BLOCK_COUNT (0xff << 8)
55#define BP_SSP_CMD0_CMD 0
56#define BM_SSP_CMD0_CMD 0xff
57#define HW_SSP_CMD1 0x020
58#define HW_SSP_XFER_SIZE 0x030
59#define HW_SSP_BLOCK_SIZE 0x040
60#define BP_SSP_BLOCK_SIZE_BLOCK_COUNT 4
61#define BM_SSP_BLOCK_SIZE_BLOCK_COUNT (0xffffff << 4)
62#define BP_SSP_BLOCK_SIZE_BLOCK_SIZE 0
63#define BM_SSP_BLOCK_SIZE_BLOCK_SIZE 0xf
64#define HW_SSP_TIMING(h) (ssp_is_old(h) ? 0x050 : 0x070)
65#define BP_SSP_TIMING_TIMEOUT 16
66#define BM_SSP_TIMING_TIMEOUT (0xffff << 16)
67#define BP_SSP_TIMING_CLOCK_DIVIDE 8
68#define BM_SSP_TIMING_CLOCK_DIVIDE (0xff << 8)
f83b7380
MV
69#define BF_SSP_TIMING_CLOCK_DIVIDE(v) \
70 (((v) << 8) & BM_SSP_TIMING_CLOCK_DIVIDE)
8be3d3b2
MV
71#define BP_SSP_TIMING_CLOCK_RATE 0
72#define BM_SSP_TIMING_CLOCK_RATE 0xff
f83b7380
MV
73#define BF_SSP_TIMING_CLOCK_RATE(v) \
74 (((v) << 0) & BM_SSP_TIMING_CLOCK_RATE)
8be3d3b2
MV
75#define HW_SSP_CTRL1(h) (ssp_is_old(h) ? 0x060 : 0x080)
76#define BM_SSP_CTRL1_SDIO_IRQ (1 << 31)
77#define BM_SSP_CTRL1_SDIO_IRQ_EN (1 << 30)
78#define BM_SSP_CTRL1_RESP_ERR_IRQ (1 << 29)
79#define BM_SSP_CTRL1_RESP_ERR_IRQ_EN (1 << 28)
80#define BM_SSP_CTRL1_RESP_TIMEOUT_IRQ (1 << 27)
81#define BM_SSP_CTRL1_RESP_TIMEOUT_IRQ_EN (1 << 26)
82#define BM_SSP_CTRL1_DATA_TIMEOUT_IRQ (1 << 25)
83#define BM_SSP_CTRL1_DATA_TIMEOUT_IRQ_EN (1 << 24)
84#define BM_SSP_CTRL1_DATA_CRC_IRQ (1 << 23)
85#define BM_SSP_CTRL1_DATA_CRC_IRQ_EN (1 << 22)
86#define BM_SSP_CTRL1_FIFO_UNDERRUN_IRQ (1 << 21)
87#define BM_SSP_CTRL1_FIFO_UNDERRUN_IRQ_EN (1 << 20)
88#define BM_SSP_CTRL1_RECV_TIMEOUT_IRQ (1 << 17)
89#define BM_SSP_CTRL1_RECV_TIMEOUT_IRQ_EN (1 << 16)
90#define BM_SSP_CTRL1_FIFO_OVERRUN_IRQ (1 << 15)
91#define BM_SSP_CTRL1_FIFO_OVERRUN_IRQ_EN (1 << 14)
92#define BM_SSP_CTRL1_DMA_ENABLE (1 << 13)
f83b7380 93#define BM_SSP_CTRL1_PHASE (1 << 10)
8be3d3b2
MV
94#define BM_SSP_CTRL1_POLARITY (1 << 9)
95#define BP_SSP_CTRL1_WORD_LENGTH 4
96#define BM_SSP_CTRL1_WORD_LENGTH (0xf << 4)
f83b7380
MV
97#define BF_SSP_CTRL1_WORD_LENGTH(v) \
98 (((v) << 4) & BM_SSP_CTRL1_WORD_LENGTH)
99#define BV_SSP_CTRL1_WORD_LENGTH__FOUR_BITS 0x3
100#define BV_SSP_CTRL1_WORD_LENGTH__EIGHT_BITS 0x7
101#define BV_SSP_CTRL1_WORD_LENGTH__SIXTEEN_BITS 0xF
8be3d3b2
MV
102#define BP_SSP_CTRL1_SSP_MODE 0
103#define BM_SSP_CTRL1_SSP_MODE 0xf
f83b7380
MV
104#define BF_SSP_CTRL1_SSP_MODE(v) \
105 (((v) << 0) & BM_SSP_CTRL1_SSP_MODE)
106#define BV_SSP_CTRL1_SSP_MODE__SPI 0x0
107#define BV_SSP_CTRL1_SSP_MODE__SSI 0x1
108#define BV_SSP_CTRL1_SSP_MODE__SD_MMC 0x3
109#define BV_SSP_CTRL1_SSP_MODE__MS 0x4
110
111#define HW_SSP_DATA(h) (ssp_is_old(h) ? 0x070 : 0x090)
112
8be3d3b2
MV
113#define HW_SSP_SDRESP0(h) (ssp_is_old(h) ? 0x080 : 0x0a0)
114#define HW_SSP_SDRESP1(h) (ssp_is_old(h) ? 0x090 : 0x0b0)
115#define HW_SSP_SDRESP2(h) (ssp_is_old(h) ? 0x0a0 : 0x0c0)
116#define HW_SSP_SDRESP3(h) (ssp_is_old(h) ? 0x0b0 : 0x0d0)
117#define HW_SSP_STATUS(h) (ssp_is_old(h) ? 0x0c0 : 0x100)
118#define BM_SSP_STATUS_CARD_DETECT (1 << 28)
119#define BM_SSP_STATUS_SDIO_IRQ (1 << 17)
f83b7380 120#define BM_SSP_STATUS_FIFO_EMPTY (1 << 5)
8be3d3b2
MV
121
122#define BF_SSP(value, field) (((value) << BP_SSP_##field) & BM_SSP_##field)
123
124#define SSP_PIO_NUM 3
125
600a991f
MV
126enum mxs_ssp_id {
127 IMX23_SSP,
128 IMX28_SSP,
8be3d3b2
MV
129};
130
829c1bf4
MV
131struct mxs_ssp {
132 struct device *dev;
133 void __iomem *base;
134 struct clk *clk;
135 unsigned int clk_rate;
136 enum mxs_ssp_id devid;
137};
138
8be3d3b2 139#endif /* __LINUX_SPI_MXS_SPI_H__ */