blob: 927bbd708f11ee0be1efc9321fb576453ead45fa [file] [log] [blame]
Simon Glass18530302013-03-19 04:58:56 +00001/*
2 * Copyright (c) 2011-12 The Chromium OS Authors.
3 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02004 * SPDX-License-Identifier: GPL-2.0+
Simon Glass18530302013-03-19 04:58:56 +00005 *
6 * This file is derived from the flashrom project.
7 */
Bin Meng9eb43392016-02-01 01:40:36 -08008
Simon Glass18530302013-03-19 04:58:56 +00009#include <common.h>
Simon Glassba457562015-03-26 09:29:26 -060010#include <dm.h>
Simon Glass5093bad2015-01-27 22:13:43 -070011#include <errno.h>
Simon Glass18530302013-03-19 04:58:56 +000012#include <malloc.h>
Simon Glassf2b85ab2016-01-18 20:19:21 -070013#include <pch.h>
Simon Glass18530302013-03-19 04:58:56 +000014#include <pci.h>
15#include <pci_ids.h>
Simon Glassf2b85ab2016-01-18 20:19:21 -070016#include <spi.h>
Simon Glass18530302013-03-19 04:58:56 +000017#include <asm/io.h>
18
19#include "ich.h"
20
Bin Meng1f9eb592016-02-01 01:40:37 -080021DECLARE_GLOBAL_DATA_PTR;
22
Simon Glassfffe25d2016-01-18 20:19:20 -070023#ifdef DEBUG_TRACE
24#define debug_trace(fmt, args...) debug(fmt, ##args)
25#else
26#define debug_trace(x, args...)
27#endif
28
Simon Glassba457562015-03-26 09:29:26 -060029static u8 ich_readb(struct ich_spi_priv *priv, int reg)
Simon Glass18530302013-03-19 04:58:56 +000030{
Simon Glassba457562015-03-26 09:29:26 -060031 u8 value = readb(priv->base + reg);
Simon Glass18530302013-03-19 04:58:56 +000032
Simon Glassfffe25d2016-01-18 20:19:20 -070033 debug_trace("read %2.2x from %4.4x\n", value, reg);
Simon Glass18530302013-03-19 04:58:56 +000034
35 return value;
36}
37
Simon Glassba457562015-03-26 09:29:26 -060038static u16 ich_readw(struct ich_spi_priv *priv, int reg)
Simon Glass18530302013-03-19 04:58:56 +000039{
Simon Glassba457562015-03-26 09:29:26 -060040 u16 value = readw(priv->base + reg);
Simon Glass18530302013-03-19 04:58:56 +000041
Simon Glassfffe25d2016-01-18 20:19:20 -070042 debug_trace("read %4.4x from %4.4x\n", value, reg);
Simon Glass18530302013-03-19 04:58:56 +000043
44 return value;
45}
46
Simon Glassba457562015-03-26 09:29:26 -060047static u32 ich_readl(struct ich_spi_priv *priv, int reg)
Simon Glass18530302013-03-19 04:58:56 +000048{
Simon Glassba457562015-03-26 09:29:26 -060049 u32 value = readl(priv->base + reg);
Simon Glass18530302013-03-19 04:58:56 +000050
Simon Glassfffe25d2016-01-18 20:19:20 -070051 debug_trace("read %8.8x from %4.4x\n", value, reg);
Simon Glass18530302013-03-19 04:58:56 +000052
53 return value;
54}
55
Simon Glassba457562015-03-26 09:29:26 -060056static void ich_writeb(struct ich_spi_priv *priv, u8 value, int reg)
Simon Glass18530302013-03-19 04:58:56 +000057{
Simon Glassba457562015-03-26 09:29:26 -060058 writeb(value, priv->base + reg);
Simon Glassfffe25d2016-01-18 20:19:20 -070059 debug_trace("wrote %2.2x to %4.4x\n", value, reg);
Simon Glass18530302013-03-19 04:58:56 +000060}
61
Simon Glassba457562015-03-26 09:29:26 -060062static void ich_writew(struct ich_spi_priv *priv, u16 value, int reg)
Simon Glass18530302013-03-19 04:58:56 +000063{
Simon Glassba457562015-03-26 09:29:26 -060064 writew(value, priv->base + reg);
Simon Glassfffe25d2016-01-18 20:19:20 -070065 debug_trace("wrote %4.4x to %4.4x\n", value, reg);
Simon Glass18530302013-03-19 04:58:56 +000066}
67
Simon Glassba457562015-03-26 09:29:26 -060068static void ich_writel(struct ich_spi_priv *priv, u32 value, int reg)
Simon Glass18530302013-03-19 04:58:56 +000069{
Simon Glassba457562015-03-26 09:29:26 -060070 writel(value, priv->base + reg);
Simon Glassfffe25d2016-01-18 20:19:20 -070071 debug_trace("wrote %8.8x to %4.4x\n", value, reg);
Simon Glass18530302013-03-19 04:58:56 +000072}
73
Simon Glassba457562015-03-26 09:29:26 -060074static void write_reg(struct ich_spi_priv *priv, const void *value,
75 int dest_reg, uint32_t size)
Simon Glass18530302013-03-19 04:58:56 +000076{
Simon Glassba457562015-03-26 09:29:26 -060077 memcpy_toio(priv->base + dest_reg, value, size);
Simon Glass18530302013-03-19 04:58:56 +000078}
79
Simon Glassba457562015-03-26 09:29:26 -060080static void read_reg(struct ich_spi_priv *priv, int src_reg, void *value,
81 uint32_t size)
Simon Glass18530302013-03-19 04:58:56 +000082{
Simon Glassba457562015-03-26 09:29:26 -060083 memcpy_fromio(value, priv->base + src_reg, size);
Simon Glass18530302013-03-19 04:58:56 +000084}
85
Simon Glassba457562015-03-26 09:29:26 -060086static void ich_set_bbar(struct ich_spi_priv *ctlr, uint32_t minaddr)
Simon Glass18530302013-03-19 04:58:56 +000087{
88 const uint32_t bbar_mask = 0x00ffff00;
89 uint32_t ichspi_bbar;
90
91 minaddr &= bbar_mask;
Simon Glassba457562015-03-26 09:29:26 -060092 ichspi_bbar = ich_readl(ctlr, ctlr->bbar) & ~bbar_mask;
Simon Glass18530302013-03-19 04:58:56 +000093 ichspi_bbar |= minaddr;
Simon Glassba457562015-03-26 09:29:26 -060094 ich_writel(ctlr, ichspi_bbar, ctlr->bbar);
Simon Glass18530302013-03-19 04:58:56 +000095}
96
Simon Glass18530302013-03-19 04:58:56 +000097/* @return 1 if the SPI flash supports the 33MHz speed */
Simon Glassf2b85ab2016-01-18 20:19:21 -070098static int ich9_can_do_33mhz(struct udevice *dev)
Simon Glass18530302013-03-19 04:58:56 +000099{
100 u32 fdod, speed;
101
102 /* Observe SPI Descriptor Component Section 0 */
Simon Glassf2b85ab2016-01-18 20:19:21 -0700103 dm_pci_write_config32(dev->parent, 0xb0, 0x1000);
Simon Glass18530302013-03-19 04:58:56 +0000104
105 /* Extract the Write/Erase SPI Frequency from descriptor */
Simon Glassf2b85ab2016-01-18 20:19:21 -0700106 dm_pci_read_config32(dev->parent, 0xb4, &fdod);
Simon Glass18530302013-03-19 04:58:56 +0000107
108 /* Bits 23:21 have the fast read clock frequency, 0=20MHz, 1=33MHz */
109 speed = (fdod >> 21) & 7;
110
111 return speed == 1;
112}
113
Simon Glassf2b85ab2016-01-18 20:19:21 -0700114static int ich_init_controller(struct udevice *dev,
115 struct ich_spi_platdata *plat,
Simon Glassba457562015-03-26 09:29:26 -0600116 struct ich_spi_priv *ctlr)
Simon Glass18530302013-03-19 04:58:56 +0000117{
Simon Glassf2b85ab2016-01-18 20:19:21 -0700118 ulong sbase_addr;
119 void *sbase;
Simon Glass5093bad2015-01-27 22:13:43 -0700120
121 /* SBASE is similar */
Bin Meng3e389d82016-02-01 01:40:42 -0800122 pch_get_spi_base(dev->parent, &sbase_addr);
Simon Glassf2b85ab2016-01-18 20:19:21 -0700123 sbase = (void *)sbase_addr;
124 debug("%s: sbase=%p\n", __func__, sbase);
Simon Glass5093bad2015-01-27 22:13:43 -0700125
Bin Meng6e670b52016-02-01 01:40:38 -0800126 if (plat->ich_version == ICHV_7) {
Simon Glassf2b85ab2016-01-18 20:19:21 -0700127 struct ich7_spi_regs *ich7_spi = sbase;
Simon Glass18530302013-03-19 04:58:56 +0000128
Simon Glassba457562015-03-26 09:29:26 -0600129 ctlr->opmenu = offsetof(struct ich7_spi_regs, opmenu);
Simon Glass18530302013-03-19 04:58:56 +0000130 ctlr->menubytes = sizeof(ich7_spi->opmenu);
Simon Glassba457562015-03-26 09:29:26 -0600131 ctlr->optype = offsetof(struct ich7_spi_regs, optype);
132 ctlr->addr = offsetof(struct ich7_spi_regs, spia);
133 ctlr->data = offsetof(struct ich7_spi_regs, spid);
Simon Glass18530302013-03-19 04:58:56 +0000134 ctlr->databytes = sizeof(ich7_spi->spid);
Simon Glassba457562015-03-26 09:29:26 -0600135 ctlr->status = offsetof(struct ich7_spi_regs, spis);
136 ctlr->control = offsetof(struct ich7_spi_regs, spic);
137 ctlr->bbar = offsetof(struct ich7_spi_regs, bbar);
138 ctlr->preop = offsetof(struct ich7_spi_regs, preop);
Simon Glass18530302013-03-19 04:58:56 +0000139 ctlr->base = ich7_spi;
Bin Meng6e670b52016-02-01 01:40:38 -0800140 } else if (plat->ich_version == ICHV_9) {
Simon Glassf2b85ab2016-01-18 20:19:21 -0700141 struct ich9_spi_regs *ich9_spi = sbase;
Simon Glass18530302013-03-19 04:58:56 +0000142
Simon Glassba457562015-03-26 09:29:26 -0600143 ctlr->opmenu = offsetof(struct ich9_spi_regs, opmenu);
Simon Glass18530302013-03-19 04:58:56 +0000144 ctlr->menubytes = sizeof(ich9_spi->opmenu);
Simon Glassba457562015-03-26 09:29:26 -0600145 ctlr->optype = offsetof(struct ich9_spi_regs, optype);
146 ctlr->addr = offsetof(struct ich9_spi_regs, faddr);
147 ctlr->data = offsetof(struct ich9_spi_regs, fdata);
Simon Glass18530302013-03-19 04:58:56 +0000148 ctlr->databytes = sizeof(ich9_spi->fdata);
Simon Glassba457562015-03-26 09:29:26 -0600149 ctlr->status = offsetof(struct ich9_spi_regs, ssfs);
150 ctlr->control = offsetof(struct ich9_spi_regs, ssfc);
151 ctlr->speed = ctlr->control + 2;
152 ctlr->bbar = offsetof(struct ich9_spi_regs, bbar);
153 ctlr->preop = offsetof(struct ich9_spi_regs, preop);
Simon Glass50787922015-07-03 18:28:22 -0600154 ctlr->bcr = offsetof(struct ich9_spi_regs, bcr);
Simon Glass18530302013-03-19 04:58:56 +0000155 ctlr->pr = &ich9_spi->pr[0];
156 ctlr->base = ich9_spi;
157 } else {
Simon Glassba457562015-03-26 09:29:26 -0600158 debug("ICH SPI: Unrecognised ICH version %d\n",
159 plat->ich_version);
160 return -EINVAL;
Simon Glass18530302013-03-19 04:58:56 +0000161 }
Simon Glass18530302013-03-19 04:58:56 +0000162
163 /* Work out the maximum speed we can support */
164 ctlr->max_speed = 20000000;
Bin Meng6e670b52016-02-01 01:40:38 -0800165 if (plat->ich_version == ICHV_9 && ich9_can_do_33mhz(dev))
Simon Glass18530302013-03-19 04:58:56 +0000166 ctlr->max_speed = 33000000;
Simon Glassf2b85ab2016-01-18 20:19:21 -0700167 debug("ICH SPI: Version ID %d detected at %p, speed %ld\n",
Simon Glassba457562015-03-26 09:29:26 -0600168 plat->ich_version, ctlr->base, ctlr->max_speed);
Simon Glass18530302013-03-19 04:58:56 +0000169
170 ich_set_bbar(ctlr, 0);
171
172 return 0;
173}
174
Simon Glass18530302013-03-19 04:58:56 +0000175static inline void spi_use_out(struct spi_trans *trans, unsigned bytes)
176{
177 trans->out += bytes;
178 trans->bytesout -= bytes;
179}
180
181static inline void spi_use_in(struct spi_trans *trans, unsigned bytes)
182{
183 trans->in += bytes;
184 trans->bytesin -= bytes;
185}
186
Bin Mengab201072017-10-18 18:20:57 -0700187static void spi_lock_down(struct ich_spi_platdata *plat, void *sbase)
188{
189 if (plat->ich_version == ICHV_7) {
190 struct ich7_spi_regs *ich7_spi = sbase;
191
192 setbits_le16(&ich7_spi->spis, SPIS_LOCK);
193 } else if (plat->ich_version == ICHV_9) {
194 struct ich9_spi_regs *ich9_spi = sbase;
195
196 setbits_le16(&ich9_spi->hsfs, HSFS_FLOCKDN);
197 }
198}
199
Bin Meng3e791412017-08-15 22:38:29 -0700200static bool spi_lock_status(struct ich_spi_platdata *plat, void *sbase)
201{
202 int lock = 0;
203
204 if (plat->ich_version == ICHV_7) {
205 struct ich7_spi_regs *ich7_spi = sbase;
206
207 lock = readw(&ich7_spi->spis) & SPIS_LOCK;
208 } else if (plat->ich_version == ICHV_9) {
209 struct ich9_spi_regs *ich9_spi = sbase;
210
211 lock = readw(&ich9_spi->hsfs) & HSFS_FLOCKDN;
212 }
213
214 return lock != 0;
215}
216
Simon Glass18530302013-03-19 04:58:56 +0000217static void spi_setup_type(struct spi_trans *trans, int data_bytes)
218{
219 trans->type = 0xFF;
220
Bin Meng9eb43392016-02-01 01:40:36 -0800221 /* Try to guess spi type from read/write sizes */
Simon Glass18530302013-03-19 04:58:56 +0000222 if (trans->bytesin == 0) {
223 if (trans->bytesout + data_bytes > 4)
224 /*
225 * If bytesin = 0 and bytesout > 4, we presume this is
226 * a write data operation, which is accompanied by an
227 * address.
228 */
229 trans->type = SPI_OPCODE_TYPE_WRITE_WITH_ADDRESS;
230 else
231 trans->type = SPI_OPCODE_TYPE_WRITE_NO_ADDRESS;
232 return;
233 }
234
235 if (trans->bytesout == 1) { /* and bytesin is > 0 */
236 trans->type = SPI_OPCODE_TYPE_READ_NO_ADDRESS;
237 return;
238 }
239
240 if (trans->bytesout == 4) /* and bytesin is > 0 */
241 trans->type = SPI_OPCODE_TYPE_READ_WITH_ADDRESS;
242
243 /* Fast read command is called with 5 bytes instead of 4 */
244 if (trans->out[0] == SPI_OPCODE_FAST_READ && trans->bytesout == 5) {
245 trans->type = SPI_OPCODE_TYPE_READ_WITH_ADDRESS;
246 --trans->bytesout;
247 }
248}
249
Bin Meng3e791412017-08-15 22:38:29 -0700250static int spi_setup_opcode(struct ich_spi_priv *ctlr, struct spi_trans *trans,
251 bool lock)
Simon Glass18530302013-03-19 04:58:56 +0000252{
253 uint16_t optypes;
Simon Glassba457562015-03-26 09:29:26 -0600254 uint8_t opmenu[ctlr->menubytes];
Simon Glass18530302013-03-19 04:58:56 +0000255
256 trans->opcode = trans->out[0];
257 spi_use_out(trans, 1);
Bin Meng3e791412017-08-15 22:38:29 -0700258 if (!lock) {
Simon Glass18530302013-03-19 04:58:56 +0000259 /* The lock is off, so just use index 0. */
Simon Glassba457562015-03-26 09:29:26 -0600260 ich_writeb(ctlr, trans->opcode, ctlr->opmenu);
261 optypes = ich_readw(ctlr, ctlr->optype);
Simon Glass18530302013-03-19 04:58:56 +0000262 optypes = (optypes & 0xfffc) | (trans->type & 0x3);
Simon Glassba457562015-03-26 09:29:26 -0600263 ich_writew(ctlr, optypes, ctlr->optype);
Simon Glass18530302013-03-19 04:58:56 +0000264 return 0;
265 } else {
266 /* The lock is on. See if what we need is on the menu. */
267 uint8_t optype;
268 uint16_t opcode_index;
269
270 /* Write Enable is handled as atomic prefix */
271 if (trans->opcode == SPI_OPCODE_WREN)
272 return 0;
273
Simon Glassba457562015-03-26 09:29:26 -0600274 read_reg(ctlr, ctlr->opmenu, opmenu, sizeof(opmenu));
275 for (opcode_index = 0; opcode_index < ctlr->menubytes;
Simon Glass18530302013-03-19 04:58:56 +0000276 opcode_index++) {
277 if (opmenu[opcode_index] == trans->opcode)
278 break;
279 }
280
Simon Glassba457562015-03-26 09:29:26 -0600281 if (opcode_index == ctlr->menubytes) {
Simon Glass18530302013-03-19 04:58:56 +0000282 printf("ICH SPI: Opcode %x not found\n",
283 trans->opcode);
Simon Glassba457562015-03-26 09:29:26 -0600284 return -EINVAL;
Simon Glass18530302013-03-19 04:58:56 +0000285 }
286
Simon Glassba457562015-03-26 09:29:26 -0600287 optypes = ich_readw(ctlr, ctlr->optype);
Simon Glass18530302013-03-19 04:58:56 +0000288 optype = (optypes >> (opcode_index * 2)) & 0x3;
289 if (trans->type == SPI_OPCODE_TYPE_WRITE_NO_ADDRESS &&
290 optype == SPI_OPCODE_TYPE_WRITE_WITH_ADDRESS &&
291 trans->bytesout >= 3) {
292 /* We guessed wrong earlier. Fix it up. */
293 trans->type = optype;
294 }
295 if (optype != trans->type) {
296 printf("ICH SPI: Transaction doesn't fit type %d\n",
297 optype);
Simon Glassba457562015-03-26 09:29:26 -0600298 return -ENOSPC;
Simon Glass18530302013-03-19 04:58:56 +0000299 }
300 return opcode_index;
301 }
302}
303
304static int spi_setup_offset(struct spi_trans *trans)
305{
Bin Meng9eb43392016-02-01 01:40:36 -0800306 /* Separate the SPI address and data */
Simon Glass18530302013-03-19 04:58:56 +0000307 switch (trans->type) {
308 case SPI_OPCODE_TYPE_READ_NO_ADDRESS:
309 case SPI_OPCODE_TYPE_WRITE_NO_ADDRESS:
310 return 0;
311 case SPI_OPCODE_TYPE_READ_WITH_ADDRESS:
312 case SPI_OPCODE_TYPE_WRITE_WITH_ADDRESS:
313 trans->offset = ((uint32_t)trans->out[0] << 16) |
314 ((uint32_t)trans->out[1] << 8) |
315 ((uint32_t)trans->out[2] << 0);
316 spi_use_out(trans, 3);
317 return 1;
318 default:
319 printf("Unrecognized SPI transaction type %#x\n", trans->type);
Simon Glassba457562015-03-26 09:29:26 -0600320 return -EPROTO;
Simon Glass18530302013-03-19 04:58:56 +0000321 }
322}
323
324/*
325 * Wait for up to 6s til status register bit(s) turn 1 (in case wait_til_set
York Sun472d5462013-04-01 11:29:11 -0700326 * below is true) or 0. In case the wait was for the bit(s) to set - write
Simon Glass18530302013-03-19 04:58:56 +0000327 * those bits back, which would cause resetting them.
328 *
329 * Return the last read status value on success or -1 on failure.
330 */
Simon Glassba457562015-03-26 09:29:26 -0600331static int ich_status_poll(struct ich_spi_priv *ctlr, u16 bitmask,
332 int wait_til_set)
Simon Glass18530302013-03-19 04:58:56 +0000333{
334 int timeout = 600000; /* This will result in 6s */
335 u16 status = 0;
336
337 while (timeout--) {
Simon Glassba457562015-03-26 09:29:26 -0600338 status = ich_readw(ctlr, ctlr->status);
Simon Glass18530302013-03-19 04:58:56 +0000339 if (wait_til_set ^ ((status & bitmask) == 0)) {
Simon Glassba457562015-03-26 09:29:26 -0600340 if (wait_til_set) {
341 ich_writew(ctlr, status & bitmask,
342 ctlr->status);
343 }
Simon Glass18530302013-03-19 04:58:56 +0000344 return status;
345 }
346 udelay(10);
347 }
348
349 printf("ICH SPI: SCIP timeout, read %x, expected %x\n",
350 status, bitmask);
Simon Glassba457562015-03-26 09:29:26 -0600351 return -ETIMEDOUT;
Simon Glass18530302013-03-19 04:58:56 +0000352}
353
Bin Mengb42711f2017-08-15 22:38:30 -0700354void ich_spi_config_opcode(struct udevice *dev)
355{
356 struct ich_spi_priv *ctlr = dev_get_priv(dev);
357
358 /*
359 * PREOP, OPTYPE, OPMENU1/OPMENU2 registers can be locked down
360 * to prevent accidental or intentional writes. Before they get
361 * locked down, these registers should be initialized properly.
362 */
363 ich_writew(ctlr, SPI_OPPREFIX, ctlr->preop);
364 ich_writew(ctlr, SPI_OPTYPE, ctlr->optype);
365 ich_writel(ctlr, SPI_OPMENU_LOWER, ctlr->opmenu);
366 ich_writel(ctlr, SPI_OPMENU_UPPER, ctlr->opmenu + sizeof(u32));
367}
368
Simon Glassba457562015-03-26 09:29:26 -0600369static int ich_spi_xfer(struct udevice *dev, unsigned int bitlen,
370 const void *dout, void *din, unsigned long flags)
Simon Glass18530302013-03-19 04:58:56 +0000371{
Simon Glassba457562015-03-26 09:29:26 -0600372 struct udevice *bus = dev_get_parent(dev);
Simon Glasse1e332c2015-07-03 18:28:21 -0600373 struct ich_spi_platdata *plat = dev_get_platdata(bus);
Simon Glassba457562015-03-26 09:29:26 -0600374 struct ich_spi_priv *ctlr = dev_get_priv(bus);
Simon Glass18530302013-03-19 04:58:56 +0000375 uint16_t control;
376 int16_t opcode_index;
377 int with_address;
378 int status;
379 int bytes = bitlen / 8;
Simon Glassba457562015-03-26 09:29:26 -0600380 struct spi_trans *trans = &ctlr->trans;
Simon Glass18530302013-03-19 04:58:56 +0000381 unsigned type = flags & (SPI_XFER_BEGIN | SPI_XFER_END);
382 int using_cmd = 0;
Bin Meng3e791412017-08-15 22:38:29 -0700383 bool lock = spi_lock_status(plat, ctlr->base);
Simon Glassba457562015-03-26 09:29:26 -0600384 int ret;
Simon Glass18530302013-03-19 04:58:56 +0000385
Simon Glass5d4a7572015-06-07 08:50:33 -0600386 /* We don't support writing partial bytes */
Simon Glass18530302013-03-19 04:58:56 +0000387 if (bitlen % 8) {
388 debug("ICH SPI: Accessing partial bytes not supported\n");
Simon Glassba457562015-03-26 09:29:26 -0600389 return -EPROTONOSUPPORT;
Simon Glass18530302013-03-19 04:58:56 +0000390 }
391
392 /* An empty end transaction can be ignored */
393 if (type == SPI_XFER_END && !dout && !din)
394 return 0;
395
396 if (type & SPI_XFER_BEGIN)
397 memset(trans, '\0', sizeof(*trans));
398
399 /* Dp we need to come back later to finish it? */
400 if (dout && type == SPI_XFER_BEGIN) {
401 if (bytes > ICH_MAX_CMD_LEN) {
402 debug("ICH SPI: Command length limit exceeded\n");
Simon Glassba457562015-03-26 09:29:26 -0600403 return -ENOSPC;
Simon Glass18530302013-03-19 04:58:56 +0000404 }
405 memcpy(trans->cmd, dout, bytes);
406 trans->cmd_len = bytes;
Simon Glassfffe25d2016-01-18 20:19:20 -0700407 debug_trace("ICH SPI: Saved %d bytes\n", bytes);
Simon Glass18530302013-03-19 04:58:56 +0000408 return 0;
409 }
410
411 /*
412 * We process a 'middle' spi_xfer() call, which has no
413 * SPI_XFER_BEGIN/END, as an independent transaction as if it had
414 * an end. We therefore repeat the command. This is because ICH
415 * seems to have no support for this, or because interest (in digging
416 * out the details and creating a special case in the code) is low.
417 */
418 if (trans->cmd_len) {
419 trans->out = trans->cmd;
420 trans->bytesout = trans->cmd_len;
421 using_cmd = 1;
Simon Glassfffe25d2016-01-18 20:19:20 -0700422 debug_trace("ICH SPI: Using %d bytes\n", trans->cmd_len);
Simon Glass18530302013-03-19 04:58:56 +0000423 } else {
424 trans->out = dout;
425 trans->bytesout = dout ? bytes : 0;
426 }
427
428 trans->in = din;
429 trans->bytesin = din ? bytes : 0;
430
Bin Meng9eb43392016-02-01 01:40:36 -0800431 /* There has to always at least be an opcode */
Simon Glass18530302013-03-19 04:58:56 +0000432 if (!trans->bytesout) {
433 debug("ICH SPI: No opcode for transfer\n");
Simon Glassba457562015-03-26 09:29:26 -0600434 return -EPROTO;
Simon Glass18530302013-03-19 04:58:56 +0000435 }
436
Simon Glassba457562015-03-26 09:29:26 -0600437 ret = ich_status_poll(ctlr, SPIS_SCIP, 0);
438 if (ret < 0)
439 return ret;
Simon Glass18530302013-03-19 04:58:56 +0000440
Bin Meng6e670b52016-02-01 01:40:38 -0800441 if (plat->ich_version == ICHV_7)
Simon Glasse1e332c2015-07-03 18:28:21 -0600442 ich_writew(ctlr, SPIS_CDS | SPIS_FCERR, ctlr->status);
443 else
444 ich_writeb(ctlr, SPIS_CDS | SPIS_FCERR, ctlr->status);
Simon Glass18530302013-03-19 04:58:56 +0000445
446 spi_setup_type(trans, using_cmd ? bytes : 0);
Bin Meng3e791412017-08-15 22:38:29 -0700447 opcode_index = spi_setup_opcode(ctlr, trans, lock);
Simon Glass18530302013-03-19 04:58:56 +0000448 if (opcode_index < 0)
Simon Glassba457562015-03-26 09:29:26 -0600449 return -EINVAL;
Simon Glass18530302013-03-19 04:58:56 +0000450 with_address = spi_setup_offset(trans);
451 if (with_address < 0)
Simon Glassba457562015-03-26 09:29:26 -0600452 return -EINVAL;
Simon Glass18530302013-03-19 04:58:56 +0000453
454 if (trans->opcode == SPI_OPCODE_WREN) {
455 /*
456 * Treat Write Enable as Atomic Pre-Op if possible
457 * in order to prevent the Management Engine from
458 * issuing a transaction between WREN and DATA.
459 */
Bin Meng3e791412017-08-15 22:38:29 -0700460 if (!lock)
Simon Glassba457562015-03-26 09:29:26 -0600461 ich_writew(ctlr, trans->opcode, ctlr->preop);
Simon Glass18530302013-03-19 04:58:56 +0000462 return 0;
463 }
464
Simon Glassba457562015-03-26 09:29:26 -0600465 if (ctlr->speed && ctlr->max_speed >= 33000000) {
Simon Glass18530302013-03-19 04:58:56 +0000466 int byte;
467
Simon Glassba457562015-03-26 09:29:26 -0600468 byte = ich_readb(ctlr, ctlr->speed);
469 if (ctlr->cur_speed >= 33000000)
Simon Glass18530302013-03-19 04:58:56 +0000470 byte |= SSFC_SCF_33MHZ;
471 else
472 byte &= ~SSFC_SCF_33MHZ;
Simon Glassba457562015-03-26 09:29:26 -0600473 ich_writeb(ctlr, byte, ctlr->speed);
Simon Glass18530302013-03-19 04:58:56 +0000474 }
475
476 /* See if we have used up the command data */
477 if (using_cmd && dout && bytes) {
478 trans->out = dout;
479 trans->bytesout = bytes;
Simon Glassfffe25d2016-01-18 20:19:20 -0700480 debug_trace("ICH SPI: Moving to data, %d bytes\n", bytes);
Simon Glass18530302013-03-19 04:58:56 +0000481 }
482
483 /* Preset control fields */
Simon Glass18530302013-03-19 04:58:56 +0000484 control = SPIC_SCGO | ((opcode_index & 0x07) << 4);
485
486 /* Issue atomic preop cycle if needed */
Simon Glassba457562015-03-26 09:29:26 -0600487 if (ich_readw(ctlr, ctlr->preop))
Simon Glass18530302013-03-19 04:58:56 +0000488 control |= SPIC_ACS;
489
490 if (!trans->bytesout && !trans->bytesin) {
491 /* SPI addresses are 24 bit only */
Simon Glassba457562015-03-26 09:29:26 -0600492 if (with_address) {
493 ich_writel(ctlr, trans->offset & 0x00FFFFFF,
494 ctlr->addr);
495 }
Simon Glass18530302013-03-19 04:58:56 +0000496 /*
497 * This is a 'no data' command (like Write Enable), its
498 * bitesout size was 1, decremented to zero while executing
499 * spi_setup_opcode() above. Tell the chip to send the
500 * command.
501 */
Simon Glassba457562015-03-26 09:29:26 -0600502 ich_writew(ctlr, control, ctlr->control);
Simon Glass18530302013-03-19 04:58:56 +0000503
504 /* wait for the result */
Simon Glassba457562015-03-26 09:29:26 -0600505 status = ich_status_poll(ctlr, SPIS_CDS | SPIS_FCERR, 1);
506 if (status < 0)
507 return status;
Simon Glass18530302013-03-19 04:58:56 +0000508
509 if (status & SPIS_FCERR) {
510 debug("ICH SPI: Command transaction error\n");
Simon Glassba457562015-03-26 09:29:26 -0600511 return -EIO;
Simon Glass18530302013-03-19 04:58:56 +0000512 }
513
514 return 0;
515 }
516
517 /*
518 * Check if this is a write command atempting to transfer more bytes
519 * than the controller can handle. Iterations for writes are not
520 * supported here because each SPI write command needs to be preceded
521 * and followed by other SPI commands, and this sequence is controlled
522 * by the SPI chip driver.
523 */
Simon Glassba457562015-03-26 09:29:26 -0600524 if (trans->bytesout > ctlr->databytes) {
Simon Glass18530302013-03-19 04:58:56 +0000525 debug("ICH SPI: Too much to write. This should be prevented by the driver's max_write_size?\n");
Simon Glassba457562015-03-26 09:29:26 -0600526 return -EPROTO;
Simon Glass18530302013-03-19 04:58:56 +0000527 }
528
529 /*
530 * Read or write up to databytes bytes at a time until everything has
531 * been sent.
532 */
533 while (trans->bytesout || trans->bytesin) {
534 uint32_t data_length;
Simon Glass18530302013-03-19 04:58:56 +0000535
536 /* SPI addresses are 24 bit only */
Simon Glassba457562015-03-26 09:29:26 -0600537 ich_writel(ctlr, trans->offset & 0x00FFFFFF, ctlr->addr);
Simon Glass18530302013-03-19 04:58:56 +0000538
539 if (trans->bytesout)
Simon Glassba457562015-03-26 09:29:26 -0600540 data_length = min(trans->bytesout, ctlr->databytes);
Simon Glass18530302013-03-19 04:58:56 +0000541 else
Simon Glassba457562015-03-26 09:29:26 -0600542 data_length = min(trans->bytesin, ctlr->databytes);
Simon Glass18530302013-03-19 04:58:56 +0000543
544 /* Program data into FDATA0 to N */
545 if (trans->bytesout) {
Simon Glassba457562015-03-26 09:29:26 -0600546 write_reg(ctlr, trans->out, ctlr->data, data_length);
Simon Glass18530302013-03-19 04:58:56 +0000547 spi_use_out(trans, data_length);
548 if (with_address)
549 trans->offset += data_length;
550 }
551
552 /* Add proper control fields' values */
Simon Glassba457562015-03-26 09:29:26 -0600553 control &= ~((ctlr->databytes - 1) << 8);
Simon Glass18530302013-03-19 04:58:56 +0000554 control |= SPIC_DS;
555 control |= (data_length - 1) << 8;
556
557 /* write it */
Simon Glassba457562015-03-26 09:29:26 -0600558 ich_writew(ctlr, control, ctlr->control);
Simon Glass18530302013-03-19 04:58:56 +0000559
Bin Meng9eb43392016-02-01 01:40:36 -0800560 /* Wait for Cycle Done Status or Flash Cycle Error */
Simon Glassba457562015-03-26 09:29:26 -0600561 status = ich_status_poll(ctlr, SPIS_CDS | SPIS_FCERR, 1);
562 if (status < 0)
563 return status;
Simon Glass18530302013-03-19 04:58:56 +0000564
565 if (status & SPIS_FCERR) {
Simon Glass5d4a7572015-06-07 08:50:33 -0600566 debug("ICH SPI: Data transaction error %x\n", status);
Simon Glassba457562015-03-26 09:29:26 -0600567 return -EIO;
Simon Glass18530302013-03-19 04:58:56 +0000568 }
569
570 if (trans->bytesin) {
Simon Glassba457562015-03-26 09:29:26 -0600571 read_reg(ctlr, ctlr->data, trans->in, data_length);
Simon Glass18530302013-03-19 04:58:56 +0000572 spi_use_in(trans, data_length);
573 if (with_address)
574 trans->offset += data_length;
575 }
576 }
577
578 /* Clear atomic preop now that xfer is done */
Bin Mengd2ca80c2017-08-26 19:22:59 -0700579 if (!lock)
580 ich_writew(ctlr, 0, ctlr->preop);
Simon Glass18530302013-03-19 04:58:56 +0000581
582 return 0;
583}
584
Simon Glassf2b85ab2016-01-18 20:19:21 -0700585static int ich_spi_probe(struct udevice *dev)
Simon Glassba457562015-03-26 09:29:26 -0600586{
Simon Glassf2b85ab2016-01-18 20:19:21 -0700587 struct ich_spi_platdata *plat = dev_get_platdata(dev);
588 struct ich_spi_priv *priv = dev_get_priv(dev);
Simon Glassba457562015-03-26 09:29:26 -0600589 uint8_t bios_cntl;
590 int ret;
591
Simon Glassf2b85ab2016-01-18 20:19:21 -0700592 ret = ich_init_controller(dev, plat, priv);
Simon Glassba457562015-03-26 09:29:26 -0600593 if (ret)
594 return ret;
Simon Glassf2b85ab2016-01-18 20:19:21 -0700595 /* Disable the BIOS write protect so write commands are allowed */
596 ret = pch_set_spi_protect(dev->parent, false);
597 if (ret == -ENOSYS) {
Simon Glass50787922015-07-03 18:28:22 -0600598 bios_cntl = ich_readb(priv, priv->bcr);
Jagan Teki69fd4c32015-10-23 01:37:56 +0530599 bios_cntl &= ~BIT(5); /* clear Enable InSMM_STS (EISS) */
Simon Glassba457562015-03-26 09:29:26 -0600600 bios_cntl |= 1; /* Write Protect Disable (WPD) */
Simon Glass50787922015-07-03 18:28:22 -0600601 ich_writeb(priv, bios_cntl, priv->bcr);
Simon Glassf2b85ab2016-01-18 20:19:21 -0700602 } else if (ret) {
603 debug("%s: Failed to disable write-protect: err=%d\n",
604 __func__, ret);
605 return ret;
Simon Glassba457562015-03-26 09:29:26 -0600606 }
607
Bin Mengab201072017-10-18 18:20:57 -0700608 /* Lock down SPI controller settings if required */
609 if (plat->lockdown) {
610 ich_spi_config_opcode(dev);
611 spi_lock_down(plat, priv->base);
612 }
613
Simon Glassba457562015-03-26 09:29:26 -0600614 priv->cur_speed = priv->max_speed;
615
616 return 0;
617}
618
Stefan Roese4759dff2017-04-24 09:48:04 +0200619static int ich_spi_remove(struct udevice *bus)
620{
Stefan Roese4759dff2017-04-24 09:48:04 +0200621 /*
622 * Configure SPI controller so that the Linux MTD driver can fully
623 * access the SPI NOR chip
624 */
Bin Mengb42711f2017-08-15 22:38:30 -0700625 ich_spi_config_opcode(bus);
Stefan Roese4759dff2017-04-24 09:48:04 +0200626
627 return 0;
628}
629
Simon Glassba457562015-03-26 09:29:26 -0600630static int ich_spi_set_speed(struct udevice *bus, uint speed)
631{
632 struct ich_spi_priv *priv = dev_get_priv(bus);
633
634 priv->cur_speed = speed;
635
636 return 0;
637}
638
639static int ich_spi_set_mode(struct udevice *bus, uint mode)
640{
641 debug("%s: mode=%d\n", __func__, mode);
642
643 return 0;
644}
645
646static int ich_spi_child_pre_probe(struct udevice *dev)
647{
648 struct udevice *bus = dev_get_parent(dev);
649 struct ich_spi_platdata *plat = dev_get_platdata(bus);
650 struct ich_spi_priv *priv = dev_get_priv(bus);
Simon Glassbcbe3d12015-09-28 23:32:01 -0600651 struct spi_slave *slave = dev_get_parent_priv(dev);
Simon Glassba457562015-03-26 09:29:26 -0600652
653 /*
654 * Yes this controller can only write a small number of bytes at
655 * once! The limit is typically 64 bytes.
656 */
657 slave->max_write_size = priv->databytes;
658 /*
659 * ICH 7 SPI controller only supports array read command
660 * and byte program command for SST flash
661 */
Jagan Teki08fe9c22016-08-08 17:12:12 +0530662 if (plat->ich_version == ICHV_7)
663 slave->mode = SPI_RX_SLOW | SPI_TX_BYTE;
Simon Glassba457562015-03-26 09:29:26 -0600664
665 return 0;
666}
667
Bin Meng1f9eb592016-02-01 01:40:37 -0800668static int ich_spi_ofdata_to_platdata(struct udevice *dev)
669{
670 struct ich_spi_platdata *plat = dev_get_platdata(dev);
Simon Glasse160f7d2017-01-17 16:52:55 -0700671 int node = dev_of_offset(dev);
Bin Meng1f9eb592016-02-01 01:40:37 -0800672 int ret;
673
Simon Glasse160f7d2017-01-17 16:52:55 -0700674 ret = fdt_node_check_compatible(gd->fdt_blob, node, "intel,ich7-spi");
Bin Meng1f9eb592016-02-01 01:40:37 -0800675 if (ret == 0) {
Bin Meng6e670b52016-02-01 01:40:38 -0800676 plat->ich_version = ICHV_7;
Bin Meng1f9eb592016-02-01 01:40:37 -0800677 } else {
Simon Glasse160f7d2017-01-17 16:52:55 -0700678 ret = fdt_node_check_compatible(gd->fdt_blob, node,
Bin Meng1f9eb592016-02-01 01:40:37 -0800679 "intel,ich9-spi");
680 if (ret == 0)
Bin Meng6e670b52016-02-01 01:40:38 -0800681 plat->ich_version = ICHV_9;
Bin Meng1f9eb592016-02-01 01:40:37 -0800682 }
683
Bin Mengab201072017-10-18 18:20:57 -0700684 plat->lockdown = fdtdec_get_bool(gd->fdt_blob, node,
685 "intel,spi-lock-down");
686
Bin Meng1f9eb592016-02-01 01:40:37 -0800687 return ret;
688}
689
Simon Glassba457562015-03-26 09:29:26 -0600690static const struct dm_spi_ops ich_spi_ops = {
691 .xfer = ich_spi_xfer,
692 .set_speed = ich_spi_set_speed,
693 .set_mode = ich_spi_set_mode,
694 /*
695 * cs_info is not needed, since we require all chip selects to be
696 * in the device tree explicitly
697 */
698};
699
700static const struct udevice_id ich_spi_ids[] = {
Bin Meng1f9eb592016-02-01 01:40:37 -0800701 { .compatible = "intel,ich7-spi" },
702 { .compatible = "intel,ich9-spi" },
Simon Glassba457562015-03-26 09:29:26 -0600703 { }
704};
705
706U_BOOT_DRIVER(ich_spi) = {
707 .name = "ich_spi",
708 .id = UCLASS_SPI,
709 .of_match = ich_spi_ids,
710 .ops = &ich_spi_ops,
Bin Meng1f9eb592016-02-01 01:40:37 -0800711 .ofdata_to_platdata = ich_spi_ofdata_to_platdata,
Simon Glassba457562015-03-26 09:29:26 -0600712 .platdata_auto_alloc_size = sizeof(struct ich_spi_platdata),
713 .priv_auto_alloc_size = sizeof(struct ich_spi_priv),
714 .child_pre_probe = ich_spi_child_pre_probe,
715 .probe = ich_spi_probe,
Stefan Roese4759dff2017-04-24 09:48:04 +0200716 .remove = ich_spi_remove,
717 .flags = DM_FLAG_OS_PREPARE,
Simon Glassba457562015-03-26 09:29:26 -0600718};