1
2
3
4
5
6
7
8#define LOG_CATEGORY UCLASS_SPI
9
10#include <common.h>
11#include <bootstage.h>
12#include <div64.h>
13#include <dm.h>
14#include <dt-structs.h>
15#include <errno.h>
16#include <log.h>
17#include <malloc.h>
18#include <pch.h>
19#include <pci.h>
20#include <pci_ids.h>
21#include <spi.h>
22#include <spi_flash.h>
23#include <spi-mem.h>
24#include <spl.h>
25#include <asm/fast_spi.h>
26#include <asm/io.h>
27#include <dm/uclass-internal.h>
28#include <asm/mtrr.h>
29#include <linux/bitops.h>
30#include <linux/delay.h>
31#include <linux/sizes.h>
32
33#include "ich.h"
34
35#ifdef DEBUG_TRACE
36#define debug_trace(fmt, args...) debug(fmt, ##args)
37#else
38#define debug_trace(x, args...)
39#endif
40
41struct ich_spi_platdata {
42#if CONFIG_IS_ENABLED(OF_PLATDATA)
43 struct dtd_intel_fast_spi dtplat;
44#endif
45 enum ich_version ich_version;
46 bool lockdown;
47 ulong mmio_base;
48 pci_dev_t bdf;
49 bool hwseq;
50};
51
52static u8 ich_readb(struct ich_spi_priv *priv, int reg)
53{
54 u8 value = readb(priv->base + reg);
55
56 debug_trace("read %2.2x from %4.4x\n", value, reg);
57
58 return value;
59}
60
61static u16 ich_readw(struct ich_spi_priv *priv, int reg)
62{
63 u16 value = readw(priv->base + reg);
64
65 debug_trace("read %4.4x from %4.4x\n", value, reg);
66
67 return value;
68}
69
70static u32 ich_readl(struct ich_spi_priv *priv, int reg)
71{
72 u32 value = readl(priv->base + reg);
73
74 debug_trace("read %8.8x from %4.4x\n", value, reg);
75
76 return value;
77}
78
79static void ich_writeb(struct ich_spi_priv *priv, u8 value, int reg)
80{
81 writeb(value, priv->base + reg);
82 debug_trace("wrote %2.2x to %4.4x\n", value, reg);
83}
84
85static void ich_writew(struct ich_spi_priv *priv, u16 value, int reg)
86{
87 writew(value, priv->base + reg);
88 debug_trace("wrote %4.4x to %4.4x\n", value, reg);
89}
90
91static void ich_writel(struct ich_spi_priv *priv, u32 value, int reg)
92{
93 writel(value, priv->base + reg);
94 debug_trace("wrote %8.8x to %4.4x\n", value, reg);
95}
96
97static void write_reg(struct ich_spi_priv *priv, const void *value,
98 int dest_reg, uint32_t size)
99{
100 memcpy_toio(priv->base + dest_reg, value, size);
101}
102
103static void read_reg(struct ich_spi_priv *priv, int src_reg, void *value,
104 uint32_t size)
105{
106 memcpy_fromio(value, priv->base + src_reg, size);
107}
108
109static void ich_set_bbar(struct ich_spi_priv *ctlr, uint32_t minaddr)
110{
111 const uint32_t bbar_mask = 0x00ffff00;
112 uint32_t ichspi_bbar;
113
114 if (ctlr->bbar) {
115 minaddr &= bbar_mask;
116 ichspi_bbar = ich_readl(ctlr, ctlr->bbar) & ~bbar_mask;
117 ichspi_bbar |= minaddr;
118 ich_writel(ctlr, ichspi_bbar, ctlr->bbar);
119 }
120}
121
122
123static bool ich9_can_do_33mhz(struct udevice *dev)
124{
125 struct ich_spi_priv *priv = dev_get_priv(dev);
126 u32 fdod, speed;
127
128 if (!CONFIG_IS_ENABLED(PCI))
129 return false;
130
131 dm_pci_write_config32(priv->pch, 0xb0, 0x1000);
132
133
134 dm_pci_read_config32(priv->pch, 0xb4, &fdod);
135
136
137 speed = (fdod >> 21) & 7;
138
139 return speed == 1;
140}
141
142static void spi_lock_down(struct ich_spi_platdata *plat, void *sbase)
143{
144 if (plat->ich_version == ICHV_7) {
145 struct ich7_spi_regs *ich7_spi = sbase;
146
147 setbits_le16(&ich7_spi->spis, SPIS_LOCK);
148 } else if (plat->ich_version == ICHV_9) {
149 struct ich9_spi_regs *ich9_spi = sbase;
150
151 setbits_le16(&ich9_spi->hsfs, HSFS_FLOCKDN);
152 }
153}
154
155static bool spi_lock_status(struct ich_spi_platdata *plat, void *sbase)
156{
157 int lock = 0;
158
159 if (plat->ich_version == ICHV_7) {
160 struct ich7_spi_regs *ich7_spi = sbase;
161
162 lock = readw(&ich7_spi->spis) & SPIS_LOCK;
163 } else if (plat->ich_version == ICHV_9) {
164 struct ich9_spi_regs *ich9_spi = sbase;
165
166 lock = readw(&ich9_spi->hsfs) & HSFS_FLOCKDN;
167 }
168
169 return lock != 0;
170}
171
172static int spi_setup_opcode(struct ich_spi_priv *ctlr, struct spi_trans *trans,
173 bool lock)
174{
175 uint16_t optypes;
176 uint8_t opmenu[ctlr->menubytes];
177
178 if (!lock) {
179
180 ich_writeb(ctlr, trans->opcode, ctlr->opmenu);
181 optypes = ich_readw(ctlr, ctlr->optype);
182 optypes = (optypes & 0xfffc) | (trans->type & 0x3);
183 ich_writew(ctlr, optypes, ctlr->optype);
184 return 0;
185 } else {
186
187 uint8_t optype;
188 uint16_t opcode_index;
189
190
191 if (trans->opcode == SPI_OPCODE_WREN)
192 return 0;
193
194 read_reg(ctlr, ctlr->opmenu, opmenu, sizeof(opmenu));
195 for (opcode_index = 0; opcode_index < ctlr->menubytes;
196 opcode_index++) {
197 if (opmenu[opcode_index] == trans->opcode)
198 break;
199 }
200
201 if (opcode_index == ctlr->menubytes) {
202 debug("ICH SPI: Opcode %x not found\n", trans->opcode);
203 return -EINVAL;
204 }
205
206 optypes = ich_readw(ctlr, ctlr->optype);
207 optype = (optypes >> (opcode_index * 2)) & 0x3;
208
209 if (optype != trans->type) {
210 debug("ICH SPI: Transaction doesn't fit type %d\n",
211 optype);
212 return -ENOSPC;
213 }
214 return opcode_index;
215 }
216}
217
218
219
220
221
222
223
224
225static int ich_status_poll(struct ich_spi_priv *ctlr, u16 bitmask,
226 int wait_til_set)
227{
228 int timeout = 600000;
229 u16 status = 0;
230
231 while (timeout--) {
232 status = ich_readw(ctlr, ctlr->status);
233 if (wait_til_set ^ ((status & bitmask) == 0)) {
234 if (wait_til_set) {
235 ich_writew(ctlr, status & bitmask,
236 ctlr->status);
237 }
238 return status;
239 }
240 udelay(10);
241 }
242 debug("ICH SPI: SCIP timeout, read %x, expected %x, wts %x %x\n",
243 status, bitmask, wait_til_set, status & bitmask);
244
245 return -ETIMEDOUT;
246}
247
248static void ich_spi_config_opcode(struct udevice *dev)
249{
250 struct ich_spi_priv *ctlr = dev_get_priv(dev);
251
252
253
254
255
256
257 ich_writew(ctlr, SPI_OPPREFIX, ctlr->preop);
258 ich_writew(ctlr, SPI_OPTYPE, ctlr->optype);
259 ich_writel(ctlr, SPI_OPMENU_LOWER, ctlr->opmenu);
260 ich_writel(ctlr, SPI_OPMENU_UPPER, ctlr->opmenu + sizeof(u32));
261}
262
263static int ich_spi_exec_op_swseq(struct spi_slave *slave,
264 const struct spi_mem_op *op)
265{
266 struct udevice *bus = dev_get_parent(slave->dev);
267 struct ich_spi_platdata *plat = dev_get_platdata(bus);
268 struct ich_spi_priv *ctlr = dev_get_priv(bus);
269 uint16_t control;
270 int16_t opcode_index;
271 int with_address;
272 int status;
273 struct spi_trans *trans = &ctlr->trans;
274 bool lock = spi_lock_status(plat, ctlr->base);
275 int ret = 0;
276
277 trans->in = NULL;
278 trans->out = NULL;
279 trans->type = 0xFF;
280
281 if (op->data.nbytes) {
282 if (op->data.dir == SPI_MEM_DATA_IN) {
283 trans->in = op->data.buf.in;
284 trans->bytesin = op->data.nbytes;
285 } else {
286 trans->out = op->data.buf.out;
287 trans->bytesout = op->data.nbytes;
288 }
289 }
290
291 if (trans->opcode != op->cmd.opcode)
292 trans->opcode = op->cmd.opcode;
293
294 if (lock && trans->opcode == SPI_OPCODE_WRDIS)
295 return 0;
296
297 if (trans->opcode == SPI_OPCODE_WREN) {
298
299
300
301
302
303 if (!lock)
304 ich_writew(ctlr, trans->opcode, ctlr->preop);
305 return 0;
306 }
307
308 ret = ich_status_poll(ctlr, SPIS_SCIP, 0);
309 if (ret < 0)
310 return ret;
311
312 if (plat->ich_version == ICHV_7)
313 ich_writew(ctlr, SPIS_CDS | SPIS_FCERR, ctlr->status);
314 else
315 ich_writeb(ctlr, SPIS_CDS | SPIS_FCERR, ctlr->status);
316
317
318 if (op->data.dir == SPI_MEM_DATA_OUT) {
319 if (op->addr.nbytes)
320 trans->type = SPI_OPCODE_TYPE_WRITE_WITH_ADDRESS;
321 else
322 trans->type = SPI_OPCODE_TYPE_WRITE_NO_ADDRESS;
323 } else {
324 if (op->addr.nbytes)
325 trans->type = SPI_OPCODE_TYPE_READ_WITH_ADDRESS;
326 else
327 trans->type = SPI_OPCODE_TYPE_READ_NO_ADDRESS;
328 }
329
330 if (op->addr.nbytes && !op->data.buswidth)
331 trans->type = SPI_OPCODE_TYPE_WRITE_WITH_ADDRESS;
332
333 opcode_index = spi_setup_opcode(ctlr, trans, lock);
334 if (opcode_index < 0)
335 return -EINVAL;
336
337 if (op->addr.nbytes) {
338 trans->offset = op->addr.val;
339 with_address = 1;
340 }
341
342 if (ctlr->speed && ctlr->max_speed >= 33000000) {
343 int byte;
344
345 byte = ich_readb(ctlr, ctlr->speed);
346 if (ctlr->cur_speed >= 33000000)
347 byte |= SSFC_SCF_33MHZ;
348 else
349 byte &= ~SSFC_SCF_33MHZ;
350 ich_writeb(ctlr, byte, ctlr->speed);
351 }
352
353
354 control = SPIC_SCGO | ((opcode_index & 0x07) << 4);
355
356
357 if (ich_readw(ctlr, ctlr->preop))
358 control |= SPIC_ACS;
359
360 if (!trans->bytesout && !trans->bytesin) {
361
362 if (with_address) {
363 ich_writel(ctlr, trans->offset & 0x00FFFFFF,
364 ctlr->addr);
365 }
366
367
368
369
370
371
372 ich_writew(ctlr, control, ctlr->control);
373
374
375 status = ich_status_poll(ctlr, SPIS_CDS | SPIS_FCERR, 1);
376 if (status < 0)
377 return status;
378
379 if (status & SPIS_FCERR) {
380 debug("ICH SPI: Command transaction error\n");
381 return -EIO;
382 }
383
384 return 0;
385 }
386
387 while (trans->bytesout || trans->bytesin) {
388 uint32_t data_length;
389
390
391 ich_writel(ctlr, trans->offset & 0x00FFFFFF, ctlr->addr);
392
393 if (trans->bytesout)
394 data_length = min(trans->bytesout, ctlr->databytes);
395 else
396 data_length = min(trans->bytesin, ctlr->databytes);
397
398
399 if (trans->bytesout) {
400 write_reg(ctlr, trans->out, ctlr->data, data_length);
401 trans->bytesout -= data_length;
402 }
403
404
405 control &= ~((ctlr->databytes - 1) << 8);
406 control |= SPIC_DS;
407 control |= (data_length - 1) << 8;
408
409
410 ich_writew(ctlr, control, ctlr->control);
411
412
413 status = ich_status_poll(ctlr, SPIS_CDS | SPIS_FCERR, 1);
414 if (status < 0)
415 return status;
416
417 if (status & SPIS_FCERR) {
418 debug("ICH SPI: Data transaction error %x\n", status);
419 return -EIO;
420 }
421
422 if (trans->bytesin) {
423 read_reg(ctlr, ctlr->data, trans->in, data_length);
424 trans->bytesin -= data_length;
425 }
426 }
427
428
429 if (!lock)
430 ich_writew(ctlr, 0, ctlr->preop);
431
432 return 0;
433}
434
435
436
437
438
439static uint get_xfer_len(u32 offset, int len, int page_size)
440{
441 uint xfer_len = min(len, SPIBAR_FDATA_FIFO_SIZE);
442 uint bytes_left = ALIGN(offset, page_size) - offset;
443
444 if (bytes_left)
445 xfer_len = min(xfer_len, bytes_left);
446
447 return xfer_len;
448}
449
450
451static void fill_xfer_fifo(struct fast_spi_regs *regs, const void *data,
452 uint len)
453{
454 memcpy(regs->fdata, data, len);
455}
456
457
458static void drain_xfer_fifo(struct fast_spi_regs *regs, void *dest, uint len)
459{
460 memcpy(dest, regs->fdata, len);
461}
462
463
464static void start_hwseq_xfer(struct fast_spi_regs *regs, uint hsfsts_cycle,
465 uint offset, uint len)
466{
467
468 u32 hsfsts;
469
470 hsfsts = readl(®s->hsfsts_ctl);
471 hsfsts &= ~(HSFSTS_FCYCLE_MASK | HSFSTS_FDBC_MASK);
472 hsfsts |= HSFSTS_AEL | HSFSTS_FCERR | HSFSTS_FDONE;
473
474
475 hsfsts |= hsfsts_cycle << HSFSTS_FCYCLE_SHIFT;
476 hsfsts |= ((len - 1) << HSFSTS_FDBC_SHIFT) & HSFSTS_FDBC_MASK;
477 hsfsts |= HSFSTS_FGO;
478
479 writel(offset, ®s->faddr);
480 writel(hsfsts, ®s->hsfsts_ctl);
481}
482
483static int wait_for_hwseq_xfer(struct fast_spi_regs *regs, uint offset)
484{
485 ulong start;
486 u32 hsfsts;
487
488 start = get_timer(0);
489 do {
490 hsfsts = readl(®s->hsfsts_ctl);
491 if (hsfsts & HSFSTS_FCERR) {
492 debug("SPI transaction error at offset %x HSFSTS = %08x\n",
493 offset, hsfsts);
494 return -EIO;
495 }
496 if (hsfsts & HSFSTS_AEL)
497 return -EPERM;
498
499 if (hsfsts & HSFSTS_FDONE)
500 return 0;
501 } while (get_timer(start) < SPIBAR_HWSEQ_XFER_TIMEOUT_MS);
502
503 debug("SPI transaction timeout at offset %x HSFSTS = %08x, timer %d\n",
504 offset, hsfsts, (uint)get_timer(start));
505
506 return -ETIMEDOUT;
507}
508
509
510
511
512
513
514
515
516
517
518
519
520
521static int exec_sync_hwseq_xfer(struct fast_spi_regs *regs, uint hsfsts_cycle,
522 uint offset, uint len)
523{
524 start_hwseq_xfer(regs, hsfsts_cycle, offset, len);
525
526 return wait_for_hwseq_xfer(regs, offset);
527}
528
529static int ich_spi_exec_op_hwseq(struct spi_slave *slave,
530 const struct spi_mem_op *op)
531{
532 struct spi_flash *flash = dev_get_uclass_priv(slave->dev);
533 struct udevice *bus = dev_get_parent(slave->dev);
534 struct ich_spi_priv *priv = dev_get_priv(bus);
535 struct fast_spi_regs *regs = priv->base;
536 uint page_size;
537 uint offset;
538 int cycle;
539 uint len;
540 bool out;
541 int ret;
542 u8 *buf;
543
544 offset = op->addr.val;
545 len = op->data.nbytes;
546
547 switch (op->cmd.opcode) {
548 case SPINOR_OP_RDID:
549 cycle = HSFSTS_CYCLE_RDID;
550 break;
551 case SPINOR_OP_READ_FAST:
552 cycle = HSFSTS_CYCLE_READ;
553 break;
554 case SPINOR_OP_PP:
555 cycle = HSFSTS_CYCLE_WRITE;
556 break;
557 case SPINOR_OP_WREN:
558
559 return 0;
560 case SPINOR_OP_WRSR:
561 cycle = HSFSTS_CYCLE_WR_STATUS;
562 break;
563 case SPINOR_OP_RDSR:
564 cycle = HSFSTS_CYCLE_RD_STATUS;
565 break;
566 case SPINOR_OP_WRDI:
567 return 0;
568 case SPINOR_OP_BE_4K:
569 cycle = HSFSTS_CYCLE_4K_ERASE;
570 ret = exec_sync_hwseq_xfer(regs, cycle, offset, 0);
571 return ret;
572 default:
573 debug("Unknown cycle %x\n", op->cmd.opcode);
574 return -EINVAL;
575 };
576
577 out = op->data.dir == SPI_MEM_DATA_OUT;
578 buf = out ? (u8 *)op->data.buf.out : op->data.buf.in;
579 page_size = flash->page_size ? : 256;
580
581 while (len) {
582 uint xfer_len = get_xfer_len(offset, len, page_size);
583
584 if (out)
585 fill_xfer_fifo(regs, buf, xfer_len);
586
587 ret = exec_sync_hwseq_xfer(regs, cycle, offset, xfer_len);
588 if (ret)
589 return ret;
590
591 if (!out)
592 drain_xfer_fifo(regs, buf, xfer_len);
593
594 offset += xfer_len;
595 buf += xfer_len;
596 len -= xfer_len;
597 }
598
599 return 0;
600}
601
602static int ich_spi_exec_op(struct spi_slave *slave, const struct spi_mem_op *op)
603{
604 struct udevice *bus = dev_get_parent(slave->dev);
605 struct ich_spi_platdata *plat = dev_get_platdata(bus);
606 int ret;
607
608 bootstage_start(BOOTSTAGE_ID_ACCUM_SPI, "fast_spi");
609 if (plat->hwseq)
610 ret = ich_spi_exec_op_hwseq(slave, op);
611 else
612 ret = ich_spi_exec_op_swseq(slave, op);
613 bootstage_accum(BOOTSTAGE_ID_ACCUM_SPI);
614
615 return ret;
616}
617
618#if !CONFIG_IS_ENABLED(OF_PLATDATA)
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633static int ich_spi_get_basics(struct udevice *bus, bool can_probe,
634 struct udevice **pchp,
635 enum ich_version *ich_versionp, ulong *mmio_basep)
636{
637 struct udevice *pch = NULL;
638 int ret = 0;
639
640
641 if (can_probe) {
642 pch = dev_get_parent(bus);
643 if (device_get_uclass_id(pch) != UCLASS_PCH) {
644 uclass_first_device(UCLASS_PCH, &pch);
645 if (!pch)
646 return log_msg_ret("uclass", -EPROTOTYPE);
647 }
648 }
649
650 *ich_versionp = dev_get_driver_data(bus);
651 if (*ich_versionp == ICHV_APL)
652 *mmio_basep = dm_pci_read_bar32(bus, 0);
653 else if (pch)
654 ret = pch_get_spi_base(pch, mmio_basep);
655 else
656 return -EAGAIN;
657 *pchp = pch;
658
659 return ret;
660}
661#endif
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682static int ich_get_mmap_bus(struct udevice *bus, ulong *map_basep,
683 uint *map_sizep, uint *offsetp)
684{
685 pci_dev_t spi_bdf;
686#if !CONFIG_IS_ENABLED(OF_PLATDATA)
687 if (device_is_on_pci_bus(bus)) {
688 struct pci_child_platdata *pplat;
689
690 pplat = dev_get_parent_platdata(bus);
691 spi_bdf = pplat->devfn;
692 } else {
693 enum ich_version ich_version;
694 struct fast_spi_regs *regs;
695 struct udevice *pch;
696 ulong mmio_base;
697 int ret;
698
699 ret = ich_spi_get_basics(bus, device_active(bus), &pch,
700 &ich_version, &mmio_base);
701 if (ret)
702 return log_msg_ret("basics", ret);
703 regs = (struct fast_spi_regs *)mmio_base;
704
705 return fast_spi_get_bios_mmap_regs(regs, map_basep, map_sizep,
706 offsetp);
707 }
708#else
709 struct ich_spi_platdata *plat = dev_get_platdata(bus);
710
711
712
713
714
715
716 spi_bdf = pci_ofplat_get_devfn(plat->dtplat.reg[0]);
717#endif
718
719 return fast_spi_get_bios_mmap(spi_bdf, map_basep, map_sizep, offsetp);
720}
721
722static int ich_get_mmap(struct udevice *dev, ulong *map_basep, uint *map_sizep,
723 uint *offsetp)
724{
725 struct udevice *bus = dev_get_parent(dev);
726
727 return ich_get_mmap_bus(bus, map_basep, map_sizep, offsetp);
728}
729
730static int ich_spi_adjust_size(struct spi_slave *slave, struct spi_mem_op *op)
731{
732 unsigned int page_offset;
733 int addr = op->addr.val;
734 unsigned int byte_count = op->data.nbytes;
735
736 if (hweight32(ICH_BOUNDARY) == 1) {
737 page_offset = addr & (ICH_BOUNDARY - 1);
738 } else {
739 u64 aux = addr;
740
741 page_offset = do_div(aux, ICH_BOUNDARY);
742 }
743
744 if (op->data.dir == SPI_MEM_DATA_IN) {
745 if (slave->max_read_size) {
746 op->data.nbytes = min(ICH_BOUNDARY - page_offset,
747 slave->max_read_size);
748 }
749 } else if (slave->max_write_size) {
750 op->data.nbytes = min(ICH_BOUNDARY - page_offset,
751 slave->max_write_size);
752 }
753
754 op->data.nbytes = min(op->data.nbytes, byte_count);
755
756 return 0;
757}
758
759static int ich_protect_lockdown(struct udevice *dev)
760{
761 struct ich_spi_platdata *plat = dev_get_platdata(dev);
762 struct ich_spi_priv *priv = dev_get_priv(dev);
763 int ret = -ENOSYS;
764
765
766 if (priv->pch)
767 ret = pch_set_spi_protect(priv->pch, false);
768 if (ret == -ENOSYS) {
769 u8 bios_cntl;
770
771 bios_cntl = ich_readb(priv, priv->bcr);
772 bios_cntl &= ~BIT(5);
773 bios_cntl |= 1;
774 ich_writeb(priv, bios_cntl, priv->bcr);
775 } else if (ret) {
776 debug("%s: Failed to disable write-protect: err=%d\n",
777 __func__, ret);
778 return ret;
779 }
780
781
782 if (plat->lockdown) {
783 ich_spi_config_opcode(dev);
784 spi_lock_down(plat, priv->base);
785 }
786
787 return 0;
788}
789
790static int ich_init_controller(struct udevice *dev,
791 struct ich_spi_platdata *plat,
792 struct ich_spi_priv *ctlr)
793{
794 if (spl_phase() == PHASE_TPL) {
795 struct ich_spi_platdata *plat = dev_get_platdata(dev);
796 int ret;
797
798 ret = fast_spi_early_init(plat->bdf, plat->mmio_base);
799 if (ret)
800 return ret;
801 }
802
803 ctlr->base = (void *)plat->mmio_base;
804 if (plat->ich_version == ICHV_7) {
805 struct ich7_spi_regs *ich7_spi = ctlr->base;
806
807 ctlr->opmenu = offsetof(struct ich7_spi_regs, opmenu);
808 ctlr->menubytes = sizeof(ich7_spi->opmenu);
809 ctlr->optype = offsetof(struct ich7_spi_regs, optype);
810 ctlr->addr = offsetof(struct ich7_spi_regs, spia);
811 ctlr->data = offsetof(struct ich7_spi_regs, spid);
812 ctlr->databytes = sizeof(ich7_spi->spid);
813 ctlr->status = offsetof(struct ich7_spi_regs, spis);
814 ctlr->control = offsetof(struct ich7_spi_regs, spic);
815 ctlr->bbar = offsetof(struct ich7_spi_regs, bbar);
816 ctlr->preop = offsetof(struct ich7_spi_regs, preop);
817 } else if (plat->ich_version == ICHV_9) {
818 struct ich9_spi_regs *ich9_spi = ctlr->base;
819
820 ctlr->opmenu = offsetof(struct ich9_spi_regs, opmenu);
821 ctlr->menubytes = sizeof(ich9_spi->opmenu);
822 ctlr->optype = offsetof(struct ich9_spi_regs, optype);
823 ctlr->addr = offsetof(struct ich9_spi_regs, faddr);
824 ctlr->data = offsetof(struct ich9_spi_regs, fdata);
825 ctlr->databytes = sizeof(ich9_spi->fdata);
826 ctlr->status = offsetof(struct ich9_spi_regs, ssfs);
827 ctlr->control = offsetof(struct ich9_spi_regs, ssfc);
828 ctlr->speed = ctlr->control + 2;
829 ctlr->bbar = offsetof(struct ich9_spi_regs, bbar);
830 ctlr->preop = offsetof(struct ich9_spi_regs, preop);
831 ctlr->bcr = offsetof(struct ich9_spi_regs, bcr);
832 ctlr->pr = &ich9_spi->pr[0];
833 } else if (plat->ich_version == ICHV_APL) {
834 } else {
835 debug("ICH SPI: Unrecognised ICH version %d\n",
836 plat->ich_version);
837 return -EINVAL;
838 }
839
840
841 ctlr->max_speed = 20000000;
842 if (plat->ich_version == ICHV_9 && ich9_can_do_33mhz(dev))
843 ctlr->max_speed = 33000000;
844 debug("ICH SPI: Version ID %d detected at %lx, speed %ld\n",
845 plat->ich_version, plat->mmio_base, ctlr->max_speed);
846
847 ich_set_bbar(ctlr, 0);
848
849 return 0;
850}
851
852static int ich_cache_bios_region(struct udevice *dev)
853{
854 ulong map_base;
855 uint map_size;
856 uint offset;
857 ulong base;
858 int ret;
859
860 ret = ich_get_mmap_bus(dev, &map_base, &map_size, &offset);
861 if (ret)
862 return ret;
863
864
865 base = SZ_4G - map_size;
866 mtrr_set_next_var(MTRR_TYPE_WRPROT, base, map_size);
867 log_debug("BIOS cache base=%lx, size=%x\n", base, (uint)map_size);
868
869 return 0;
870}
871
872static int ich_spi_probe(struct udevice *dev)
873{
874 struct ich_spi_platdata *plat = dev_get_platdata(dev);
875 struct ich_spi_priv *priv = dev_get_priv(dev);
876 int ret;
877
878 ret = ich_init_controller(dev, plat, priv);
879 if (ret)
880 return ret;
881
882 if (spl_phase() == PHASE_TPL) {
883
884 ret = ich_cache_bios_region(dev);
885 if (ret)
886 return ret;
887 } else {
888 ret = ich_protect_lockdown(dev);
889 if (ret)
890 return ret;
891 }
892 priv->cur_speed = priv->max_speed;
893
894 return 0;
895}
896
897static int ich_spi_remove(struct udevice *bus)
898{
899
900
901
902
903 ich_spi_config_opcode(bus);
904
905 return 0;
906}
907
908static int ich_spi_set_speed(struct udevice *bus, uint speed)
909{
910 struct ich_spi_priv *priv = dev_get_priv(bus);
911
912 priv->cur_speed = speed;
913
914 return 0;
915}
916
917static int ich_spi_set_mode(struct udevice *bus, uint mode)
918{
919 debug("%s: mode=%d\n", __func__, mode);
920
921 return 0;
922}
923
924static int ich_spi_child_pre_probe(struct udevice *dev)
925{
926 struct udevice *bus = dev_get_parent(dev);
927 struct ich_spi_platdata *plat = dev_get_platdata(bus);
928 struct ich_spi_priv *priv = dev_get_priv(bus);
929 struct spi_slave *slave = dev_get_parent_priv(dev);
930
931
932
933
934
935
936 if (!plat->hwseq)
937 slave->max_write_size = priv->databytes;
938
939
940
941
942 if (plat->ich_version == ICHV_7)
943 slave->mode = SPI_RX_SLOW | SPI_TX_BYTE;
944
945 return 0;
946}
947
948static int ich_spi_ofdata_to_platdata(struct udevice *dev)
949{
950 struct ich_spi_platdata *plat = dev_get_platdata(dev);
951
952#if !CONFIG_IS_ENABLED(OF_PLATDATA)
953 struct ich_spi_priv *priv = dev_get_priv(dev);
954 int ret;
955
956 ret = ich_spi_get_basics(dev, true, &priv->pch, &plat->ich_version,
957 &plat->mmio_base);
958 if (ret)
959 return log_msg_ret("basics", ret);
960 plat->lockdown = dev_read_bool(dev, "intel,spi-lock-down");
961
962
963
964
965 plat->hwseq = dev_read_u32_default(dev, "intel,hardware-seq", 0);
966#else
967 plat->ich_version = ICHV_APL;
968 plat->mmio_base = plat->dtplat.early_regs[0];
969 plat->bdf = pci_ofplat_get_devfn(plat->dtplat.reg[0]);
970 plat->hwseq = plat->dtplat.intel_hardware_seq;
971#endif
972 debug("%s: mmio_base=%lx\n", __func__, plat->mmio_base);
973
974 return 0;
975}
976
977static const struct spi_controller_mem_ops ich_controller_mem_ops = {
978 .adjust_op_size = ich_spi_adjust_size,
979 .supports_op = NULL,
980 .exec_op = ich_spi_exec_op,
981};
982
983static const struct dm_spi_ops ich_spi_ops = {
984
985 .set_speed = ich_spi_set_speed,
986 .set_mode = ich_spi_set_mode,
987 .mem_ops = &ich_controller_mem_ops,
988 .get_mmap = ich_get_mmap,
989
990
991
992
993};
994
995static const struct udevice_id ich_spi_ids[] = {
996 { .compatible = "intel,ich7-spi", ICHV_7 },
997 { .compatible = "intel,ich9-spi", ICHV_9 },
998 { .compatible = "intel,fast-spi", ICHV_APL },
999 { }
1000};
1001
1002U_BOOT_DRIVER(intel_fast_spi) = {
1003 .name = "intel_fast_spi",
1004 .id = UCLASS_SPI,
1005 .of_match = ich_spi_ids,
1006 .ops = &ich_spi_ops,
1007 .ofdata_to_platdata = ich_spi_ofdata_to_platdata,
1008 .platdata_auto_alloc_size = sizeof(struct ich_spi_platdata),
1009 .priv_auto_alloc_size = sizeof(struct ich_spi_priv),
1010 .child_pre_probe = ich_spi_child_pre_probe,
1011 .probe = ich_spi_probe,
1012 .remove = ich_spi_remove,
1013 .flags = DM_FLAG_OS_PREPARE,
1014};
1015