blob: ff3512a0f6f73892843165a4c3b6e62932bbb5e3 [file] [log] [blame]
Thomas Chou661ba142010-04-30 11:34:16 +08001/*
2 * Altera SPI driver
3 *
4 * based on bfin_spi.c
5 * Copyright (c) 2005-2008 Analog Devices Inc.
6 * Copyright (C) 2010 Thomas Chou <thomas@wytron.com.tw>
7 *
Jagannadha Sutradharudu Tekie7b1e452013-10-14 13:31:24 +05308 * SPDX-License-Identifier: GPL-2.0+
Thomas Chou661ba142010-04-30 11:34:16 +08009 */
10#include <common.h>
Thomas Chou15a56f92015-10-14 08:33:34 +080011#include <dm.h>
12#include <errno.h>
Thomas Chou661ba142010-04-30 11:34:16 +080013#include <malloc.h>
14#include <spi.h>
Thomas Chou15a56f92015-10-14 08:33:34 +080015#include <fdtdec.h>
16#include <asm/io.h>
17
18DECLARE_GLOBAL_DATA_PTR;
Thomas Chou661ba142010-04-30 11:34:16 +080019
Marek Vasutcdcdad82014-10-22 21:56:04 +020020#ifndef CONFIG_ALTERA_SPI_IDLE_VAL
21#define CONFIG_ALTERA_SPI_IDLE_VAL 0xff
22#endif
23
Marek Vasuteef67022014-10-22 21:55:58 +020024struct altera_spi_regs {
25 u32 rxdata;
26 u32 txdata;
27 u32 status;
28 u32 control;
29 u32 _reserved;
30 u32 slave_sel;
31};
Thomas Chou661ba142010-04-30 11:34:16 +080032
Thomas Chou15a56f92015-10-14 08:33:34 +080033struct altera_spi_platdata {
34 struct altera_spi_regs *regs;
35};
Thomas Chou661ba142010-04-30 11:34:16 +080036
Thomas Chou15a56f92015-10-14 08:33:34 +080037struct altera_spi_priv {
38 struct altera_spi_regs *regs;
39};
40
41#define ALTERA_SPI_STATUS_RRDY_MSK (1 << 7)
Marek Vasut2e13da12014-10-22 21:55:59 +020042#define ALTERA_SPI_CONTROL_SSO_MSK (1 << 10)
Thomas Chou661ba142010-04-30 11:34:16 +080043
Thomas Chou15a56f92015-10-14 08:33:34 +080044static void spi_cs_activate(struct udevice *dev, uint cs)
Thomas Chou661ba142010-04-30 11:34:16 +080045{
Thomas Chou15a56f92015-10-14 08:33:34 +080046 struct udevice *bus = dev->parent;
47 struct altera_spi_priv *priv = dev_get_priv(bus);
48 struct altera_spi_regs *const regs = priv->regs;
49
50 writel(1 << cs, &regs->slave_sel);
51 writel(ALTERA_SPI_CONTROL_SSO_MSK, &regs->control);
Thomas Chou661ba142010-04-30 11:34:16 +080052}
53
Thomas Chou15a56f92015-10-14 08:33:34 +080054static void spi_cs_deactivate(struct udevice *dev)
Thomas Chou661ba142010-04-30 11:34:16 +080055{
Thomas Chou15a56f92015-10-14 08:33:34 +080056 struct udevice *bus = dev->parent;
57 struct altera_spi_priv *priv = dev_get_priv(bus);
58 struct altera_spi_regs *const regs = priv->regs;
59
60 writel(0, &regs->control);
61 writel(0, &regs->slave_sel);
Thomas Chou661ba142010-04-30 11:34:16 +080062}
63
Thomas Chou15a56f92015-10-14 08:33:34 +080064static int altera_spi_claim_bus(struct udevice *dev)
Thomas Chou661ba142010-04-30 11:34:16 +080065{
Thomas Chou15a56f92015-10-14 08:33:34 +080066 struct udevice *bus = dev->parent;
67 struct altera_spi_priv *priv = dev_get_priv(bus);
68 struct altera_spi_regs *const regs = priv->regs;
Thomas Chou661ba142010-04-30 11:34:16 +080069
Thomas Chou15a56f92015-10-14 08:33:34 +080070 writel(0, &regs->control);
71 writel(0, &regs->slave_sel);
Thomas Chou661ba142010-04-30 11:34:16 +080072
Thomas Chou661ba142010-04-30 11:34:16 +080073 return 0;
74}
75
Thomas Chou15a56f92015-10-14 08:33:34 +080076static int altera_spi_release_bus(struct udevice *dev)
Thomas Chou661ba142010-04-30 11:34:16 +080077{
Thomas Chou15a56f92015-10-14 08:33:34 +080078 struct udevice *bus = dev->parent;
79 struct altera_spi_priv *priv = dev_get_priv(bus);
80 struct altera_spi_regs *const regs = priv->regs;
Thomas Chou661ba142010-04-30 11:34:16 +080081
Thomas Chou15a56f92015-10-14 08:33:34 +080082 writel(0, &regs->slave_sel);
83
84 return 0;
Thomas Chou661ba142010-04-30 11:34:16 +080085}
86
Thomas Chou15a56f92015-10-14 08:33:34 +080087static int altera_spi_xfer(struct udevice *dev, unsigned int bitlen,
88 const void *dout, void *din, unsigned long flags)
Thomas Chou661ba142010-04-30 11:34:16 +080089{
Thomas Chou15a56f92015-10-14 08:33:34 +080090 struct udevice *bus = dev->parent;
91 struct altera_spi_priv *priv = dev_get_priv(bus);
92 struct altera_spi_regs *const regs = priv->regs;
93 struct dm_spi_slave_platdata *slave_plat = dev_get_parent_platdata(dev);
94
Thomas Chou661ba142010-04-30 11:34:16 +080095 /* assume spi core configured to do 8 bit transfers */
Marek Vasutbc76b822014-10-22 21:56:02 +020096 unsigned int bytes = bitlen / 8;
97 const unsigned char *txp = dout;
98 unsigned char *rxp = din;
99 uint32_t reg, data, start;
Thomas Chou661ba142010-04-30 11:34:16 +0800100
101 debug("%s: bus:%i cs:%i bitlen:%i bytes:%i flags:%lx\n", __func__,
Thomas Chou15a56f92015-10-14 08:33:34 +0800102 bus->seq, slave_plat->cs, bitlen, bytes, flags);
Marek Vasut37dcc132014-10-22 21:56:00 +0200103
Thomas Chou661ba142010-04-30 11:34:16 +0800104 if (bitlen == 0)
105 goto done;
106
107 if (bitlen % 8) {
108 flags |= SPI_XFER_END;
109 goto done;
110 }
111
112 /* empty read buffer */
Thomas Chou15a56f92015-10-14 08:33:34 +0800113 if (readl(&regs->status) & ALTERA_SPI_STATUS_RRDY_MSK)
114 readl(&regs->rxdata);
Marek Vasut37dcc132014-10-22 21:56:00 +0200115
Thomas Chou661ba142010-04-30 11:34:16 +0800116 if (flags & SPI_XFER_BEGIN)
Thomas Chou15a56f92015-10-14 08:33:34 +0800117 spi_cs_activate(dev, slave_plat->cs);
Thomas Chou661ba142010-04-30 11:34:16 +0800118
119 while (bytes--) {
Marek Vasutbc76b822014-10-22 21:56:02 +0200120 if (txp)
121 data = *txp++;
122 else
123 data = CONFIG_ALTERA_SPI_IDLE_VAL;
Marek Vasut37dcc132014-10-22 21:56:00 +0200124
Marek Vasutbc76b822014-10-22 21:56:02 +0200125 debug("%s: tx:%x ", __func__, data);
Thomas Chou15a56f92015-10-14 08:33:34 +0800126 writel(data, &regs->txdata);
Marek Vasut37dcc132014-10-22 21:56:00 +0200127
Marek Vasut80d73332014-10-22 21:56:01 +0200128 start = get_timer(0);
129 while (1) {
Thomas Chou15a56f92015-10-14 08:33:34 +0800130 reg = readl(&regs->status);
Marek Vasut80d73332014-10-22 21:56:01 +0200131 if (reg & ALTERA_SPI_STATUS_RRDY_MSK)
132 break;
133 if (get_timer(start) > (CONFIG_SYS_HZ / 1000)) {
Thomas Chou15a56f92015-10-14 08:33:34 +0800134 debug("%s: Transmission timed out!\n", __func__);
135 return -1;
Marek Vasut80d73332014-10-22 21:56:01 +0200136 }
137 }
Marek Vasut37dcc132014-10-22 21:56:00 +0200138
Thomas Chou15a56f92015-10-14 08:33:34 +0800139 data = readl(&regs->rxdata);
Thomas Chou661ba142010-04-30 11:34:16 +0800140 if (rxp)
Marek Vasutbc76b822014-10-22 21:56:02 +0200141 *rxp++ = data & 0xff;
Marek Vasut37dcc132014-10-22 21:56:00 +0200142
Marek Vasutbc76b822014-10-22 21:56:02 +0200143 debug("rx:%x\n", data);
Thomas Chou661ba142010-04-30 11:34:16 +0800144 }
Marek Vasut37dcc132014-10-22 21:56:00 +0200145
146done:
Thomas Chou661ba142010-04-30 11:34:16 +0800147 if (flags & SPI_XFER_END)
Thomas Chou15a56f92015-10-14 08:33:34 +0800148 spi_cs_deactivate(dev);
Thomas Chou661ba142010-04-30 11:34:16 +0800149
150 return 0;
151}
Thomas Chou15a56f92015-10-14 08:33:34 +0800152
153static int altera_spi_set_speed(struct udevice *bus, uint speed)
154{
155 return 0;
156}
157
158static int altera_spi_set_mode(struct udevice *bus, uint mode)
159{
160 return 0;
161}
162
163static int altera_spi_probe(struct udevice *bus)
164{
165 struct altera_spi_platdata *plat = dev_get_platdata(bus);
166 struct altera_spi_priv *priv = dev_get_priv(bus);
167
168 priv->regs = plat->regs;
169
170 return 0;
171}
172
173static int altera_spi_ofdata_to_platdata(struct udevice *bus)
174{
175 struct altera_spi_platdata *plat = dev_get_platdata(bus);
176
177 plat->regs = ioremap(dev_get_addr(bus),
178 sizeof(struct altera_spi_regs));
179
180 return 0;
181}
182
183static const struct dm_spi_ops altera_spi_ops = {
184 .claim_bus = altera_spi_claim_bus,
185 .release_bus = altera_spi_release_bus,
186 .xfer = altera_spi_xfer,
187 .set_speed = altera_spi_set_speed,
188 .set_mode = altera_spi_set_mode,
189 /*
190 * cs_info is not needed, since we require all chip selects to be
191 * in the device tree explicitly
192 */
193};
194
195static const struct udevice_id altera_spi_ids[] = {
196 { .compatible = "altr,spi-1.0", },
197 { }
198};
199
200U_BOOT_DRIVER(altera_spi) = {
201 .name = "altera_spi",
202 .id = UCLASS_SPI,
203 .of_match = altera_spi_ids,
204 .ops = &altera_spi_ops,
205 .ofdata_to_platdata = altera_spi_ofdata_to_platdata,
206 .platdata_auto_alloc_size = sizeof(struct altera_spi_platdata),
207 .priv_auto_alloc_size = sizeof(struct altera_spi_priv),
208 .probe = altera_spi_probe,
209};