1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
|
// SPDX-License-Identifier: GPL-2.0+
/*
* Copyright 2025 NXP
*/
#include <asm/arch/clock.h>
#include <asm/io.h>
#include <clk.h>
#include <dm.h>
#include <dm/device_compat.h>
#include <linux/bitops.h>
#include <linux/bug.h>
#include <linux/err.h>
#include <linux/iopoll.h>
#include <linux/kernel.h>
#include <linux/sizes.h>
#include <log.h>
#include <malloc.h>
#include <spi.h>
#include <spi-mem.h>
#include "nxp_xspi.h"
static inline void xspi_writel(u32 val, u32 addr)
{
void __iomem *_addr = (void __iomem *)(uintptr_t)addr;
out_le32(_addr, val);
};
static inline u32 xspi_readl(u32 addr)
{
return in_le32((uintptr_t)addr);
};
#define xspi_config_sfp_tg(x, env, sfar, ipcr) \
do { \
xspi_writel_offset(x, env, (sfar), SFP_TG_SFAR); \
xspi_writel_offset(x, env, (ipcr), SFP_TG_IPCR); \
} while (0)
static int xspi_readl_poll_tout(struct nxp_xspi *x, int env, u32 offset,
u32 mask, u32 delay_us, u32 timeout_us, bool wait_mask_set)
{
u32 reg;
void __iomem *addr = (void __iomem *)(uintptr_t)x->iobase + (env * ENV_ADDR_SIZE) + offset;
if (wait_mask_set)
return readl_poll_sleep_timeout(addr, reg, (reg & mask),
delay_us, timeout_us);
else
return readl_poll_sleep_timeout(addr, reg, !(reg & mask),
delay_us, timeout_us);
};
static struct nxp_xspi_devtype_data imx94_data = {
.rxfifo = SZ_512, /* RX fifo Size*/
.rx_buf_size = 64 * 4, /* RBDR buffer size */
.txfifo = SZ_1K,
.ahb_buf_size = SZ_4K,
.quirks = 0,
};
static const struct udevice_id nxp_xspi_ids[] = {
{ .compatible = "nxp,imx94-xspi", .data = (ulong)&imx94_data, },
{ }
};
static int nxp_xspi_claim_bus(struct udevice *dev)
{
return 0;
}
#if CONFIG_IS_ENABLED(CLK)
static int nxp_xspi_clk_prep_enable(struct nxp_xspi *x)
{
return clk_enable(&x->clk);
};
static void nxp_xspi_clk_disable_unprep(struct nxp_xspi *x)
{
clk_disable(&x->clk);
};
#endif
static int xspi_swreset(struct nxp_xspi *x)
{
u32 reg;
reg = xspi_readl_offset(x, 0, MCR);
reg |= (XSPI_MCR_SWRSTHD_MASK | XSPI_MCR_SWRSTSD_MASK);
xspi_writel_offset(x, 0, reg, MCR);
udelay(2);
reg &= ~(XSPI_MCR_SWRSTHD_MASK | XSPI_MCR_SWRSTSD_MASK);
xspi_writel_offset(x, 0, reg, MCR);
return 0;
};
static void nxp_xspi_dll_bypass(struct nxp_xspi *x)
{
u32 reg;
int ret;
xspi_swreset(x);
xspi_writel_offset(x, 0, 0, DLLCRA);
reg = XSPI_DLLCRA_SLV_EN_MASK;
xspi_writel_offset(x, 0, reg, DLLCRA);
reg = XSPI_DLLCRA_FREQEN_MASK | XSPI_DLLCRA_SLV_EN_MASK |
XSPI_DLLCRA_SLV_DLL_BYPASS_MASK | XSPI_DLLCRA_SLV_DLY_COARSE(7);
xspi_writel_offset(x, 0, reg, DLLCRA);
reg |= XSPI_DLLCRA_SLV_UPD_MASK;
xspi_writel_offset(x, 0, reg, DLLCRA);
ret = xspi_readl_poll_tout(x, 0, XSPI_DLLSR, XSPI_DLLSR_SLVA_LOCK_MASK, 1, POLL_TOUT, true);
if (ret)
dev_err(x->dev, "DLL SLVA unlock, the DLL status is %x, need to check!\n",
xspi_readl(x->iobase + XSPI_DLLSR));
reg &= ~XSPI_DLLCRA_SLV_UPD_MASK;
xspi_writel_offset(x, 0, reg, DLLCRA);
}
static void nxp_xspi_dll_auto(struct nxp_xspi *x, unsigned long rate)
{
u32 reg;
int ret;
xspi_swreset(x);
xspi_writel_offset(x, 0, 0, DLLCRA);
reg = XSPI_DLLCRA_SLV_EN_MASK;
xspi_writel_offset(x, 0, reg, DLLCRA);
reg = XSPI_DLLCRA_DLL_REFCNTR(2) | XSPI_DLLCRA_DLLRES(8) |
XSPI_DLLCRA_SLAVE_AUTO_UPDT_MASK | XSPI_DLLCRA_SLV_EN_MASK;
if (rate > MHZ(133))
reg |= XSPI_DLLCRA_FREQEN_MASK;
xspi_writel_offset(x, 0, reg, DLLCRA);
reg |= XSPI_DLLCRA_SLV_UPD_MASK;
xspi_writel_offset(x, 0, reg, DLLCRA);
reg |= XSPI_DLLCRA_DLLEN_MASK;
xspi_writel_offset(x, 0, reg, DLLCRA);
ret = xspi_readl_poll_tout(x, 0, XSPI_DLLSR,
XSPI_DLLSR_DLLA_LOCK_MASK | XSPI_DLLSR_SLVA_LOCK_MASK,
1, POLL_TOUT, true);
if (ret)
dev_err(x->dev, "the DLL status is %x, need to check!\n",
xspi_readl(x->iobase + XSPI_DLLSR));
}
static void nxp_xspi_disable_ddr(struct nxp_xspi *x)
{
u32 reg;
reg = xspi_readl_offset(x, 0, MCR);
reg |= XSPI_MCR_MDIS_MASK;
xspi_writel_offset(x, 0, reg, MCR);
reg &= ~(XSPI_MCR_DQS_EN_MASK | XSPI_MCR_DDR_EN_MASK);
reg &= ~XSPI_MCR_DQS_FA_SEL_MASK;
reg |= XSPI_MCR_DQS_FA_SEL(1);
xspi_writel_offset(x, 0, reg, MCR);
reg = xspi_readl_offset(x, 0, FLSHCR);
reg &= ~XSPI_FLSHCR_TDH_MASK;
xspi_writel_offset(x, 0, reg, FLSHCR);
xspi_writel_offset(x, 0, XSPI_SMPR_DLLFSMPFA(7), SMPR);
reg = xspi_readl_offset(x, 0, MCR);
reg &= ~XSPI_MCR_MDIS_MASK;
xspi_writel_offset(x, 0, reg, MCR);
x->support_max_rate = MHZ(133);
}
static void nxp_xspi_enable_ddr(struct nxp_xspi *x)
{
u32 reg;
reg = xspi_readl_offset(x, 0, MCR);
reg |= XSPI_MCR_MDIS_MASK;
xspi_writel_offset(x, 0, reg, MCR);
reg |= XSPI_MCR_DQS_EN_MASK | XSPI_MCR_DDR_EN_MASK;
reg &= ~XSPI_MCR_DQS_FA_SEL_MASK;
reg |= XSPI_MCR_DQS_FA_SEL(3);
xspi_writel_offset(x, 0, reg, MCR);
reg = xspi_readl_offset(x, 0, FLSHCR);
reg |= XSPI_FLSHCR_TDH(1);
xspi_writel_offset(x, 0, reg, FLSHCR);
xspi_writel_offset(x, 0, XSPI_SMPR_DLLFSMPFA(4), SMPR);
reg = xspi_readl_offset(x, 0, MCR);
reg &= ~XSPI_MCR_MDIS_MASK;
xspi_writel_offset(x, 0, reg, MCR);
x->support_max_rate = MHZ(200);
}
static int nxp_xspi_set_speed(struct udevice *bus, uint speed)
{
debug("%s: %u\n", __func__, speed);
#if CONFIG_IS_ENABLED(CLK)
struct nxp_xspi *x = dev_get_priv(bus);
int ret;
nxp_xspi_clk_disable_unprep(x);
ret = clk_set_rate(&x->clk, speed);
if (ret < 0)
return ret;
ret = nxp_xspi_clk_prep_enable(x);
if (ret)
return ret;
xspi_swreset(x);
#endif
return 0;
}
static int nxp_xspi_set_mode(struct udevice *bus, uint mode)
{
return 0;
}
static int nxp_xspi_adjust_op_size(struct spi_slave *slave,
struct spi_mem_op *op)
{
struct nxp_xspi *x;
struct udevice *bus;
bus = slave->dev->parent;
x = dev_get_priv(bus);
if (op->data.dir == SPI_MEM_DATA_OUT) {
if (op->data.nbytes > x->devtype_data->txfifo)
op->data.nbytes = x->devtype_data->txfifo;
} else {
if (op->data.nbytes > x->devtype_data->ahb_buf_size)
op->data.nbytes = x->devtype_data->ahb_buf_size;
else if (op->data.nbytes > x->devtype_data->rxfifo)
op->data.nbytes = ALIGN_DOWN(op->data.nbytes, 8);
}
return 0;
}
static int nxp_xspi_check_buswidth(struct nxp_xspi *x, u8 width)
{
switch (width) {
case 1:
case 2:
case 4:
case 8:
return 0;
}
return -ENOTSUPP;
}
static bool nxp_xspi_supports_op(struct spi_slave *slave,
const struct spi_mem_op *op)
{
struct nxp_xspi *x;
struct udevice *bus;
int ret;
bus = slave->dev->parent;
x = dev_get_priv(bus);
ret = nxp_xspi_check_buswidth(x, op->cmd.buswidth);
if (op->addr.nbytes)
ret |= nxp_xspi_check_buswidth(x, op->addr.buswidth);
if (op->dummy.nbytes)
ret |= nxp_xspi_check_buswidth(x, op->dummy.buswidth);
if (op->data.nbytes)
ret |= nxp_xspi_check_buswidth(x, op->data.buswidth);
if (ret)
return false;
/*
* The number of address bytes should be equal to or less than 4 bytes.
*/
if (op->addr.nbytes > 4)
return false;
/*
* If requested address value is greater than controller assigned
* memory mapped space, return error as it didn't fit in the range
* of assigned address space.
*/
if (op->addr.val >= x->a1_size + x->a2_size)
return false;
/* Max 64 dummy clock cycles supported */
if (op->dummy.buswidth &&
(op->dummy.nbytes * 8 / op->dummy.buswidth > 64))
return false;
/* Max data length, check controller limits and alignment */
if (op->data.dir == SPI_MEM_DATA_IN &&
(op->data.nbytes > x->devtype_data->ahb_buf_size ||
(op->data.nbytes > x->devtype_data->rxfifo &&
!IS_ALIGNED(op->data.nbytes, 8))))
return false;
if (op->data.dir == SPI_MEM_DATA_OUT &&
op->data.nbytes > x->devtype_data->txfifo)
return false;
if (op->cmd.dtr)
return spi_mem_dtr_supports_op(slave, op);
else
return spi_mem_default_supports_op(slave, op);
}
static int xspi_update_lut(struct nxp_xspi *x, u32 seq_index, const u32 *lut_base, u32 num_of_seq)
{
int ret;
ret = xspi_readl_poll_tout(x, 0, XSPI_SR, XSPI_SR_BUSY_MASK, 1, POLL_TOUT, false);
if (ret) {
dev_err(x->dev, "%s: Timeout while waiting for busy flag to clear.\n", __func__);
return ret;
}
xspi_writel_offset(x, 0, XSPI_LUT_KEY_VAL, LUTKEY);
xspi_writel_offset(x, 0, 0x2, LCKCR);
for (int i = 0; i < num_of_seq; i++)
xspi_writel(*(lut_base + i), x->iobase + XSPI_LUT + (seq_index * 5 + i) * 4);
xspi_writel_offset(x, 0, XSPI_LUT_KEY_VAL, LUTKEY);
xspi_writel_offset(x, 0, 0x1, LCKCR);
return 0;
}
static int nxp_xspi_prepare_lut(struct nxp_xspi *x,
const struct spi_mem_op *op)
{
u32 lutval[5] = {0};
int lutidx = 1;
int ret;
/* cmd */
if (op->cmd.dtr) {
lutval[0] |= LUT_DEF(0, CMD_DDR, LUT_PAD(op->cmd.buswidth),
op->cmd.opcode >> 8);
lutval[lutidx / 2] |= LUT_DEF(lutidx, CMD_DDR,
LUT_PAD(op->cmd.buswidth),
op->cmd.opcode & 0x00ff);
lutidx++;
} else {
lutval[0] |= LUT_DEF(0, CMD_SDR, LUT_PAD(op->cmd.buswidth),
op->cmd.opcode);
}
/* addr bytes */
if (op->addr.nbytes) {
lutval[lutidx / 2] |= LUT_DEF(lutidx, op->addr.dtr ? RADDR_DDR : RADDR_SDR,
LUT_PAD(op->addr.buswidth),
op->addr.nbytes * 8);
lutidx++;
}
/* dummy bytes, if needed */
if (op->dummy.nbytes) {
lutval[lutidx / 2] |= LUT_DEF(lutidx, DUMMY_CYCLE,
LUT_PAD(op->data.buswidth),
op->dummy.nbytes * 8 /
op->dummy.buswidth / (op->dummy.dtr ? 2 : 1));
lutidx++;
}
/* read/write data bytes */
if (op->data.nbytes) {
lutval[lutidx / 2] |= LUT_DEF(lutidx,
op->data.dir == SPI_MEM_DATA_IN ?
(op->data.dtr ? READ_DDR : READ_SDR) :
(op->data.dtr ? WRITE_DDR : WRITE_SDR),
LUT_PAD(op->data.buswidth),
0);
lutidx++;
}
/* stop condition. */
lutval[lutidx / 2] |= LUT_DEF(lutidx, CMD_STOP, 0, 0);
#ifdef DEBUG
print_buffer(0, lutval, 4, lutidx / 2 + 1, 4);
#endif
ret = xspi_update_lut(x, CMD_LUT_FOR_IP_CMD, lutval, ARRAY_SIZE(lutval));
if (ret)
return ret;
if (op->data.nbytes &&
(op->data.dir == SPI_MEM_DATA_IN || op->data.dir == SPI_MEM_DATA_OUT) &&
op->addr.nbytes) {
ret = xspi_update_lut(x, CMD_LUT_FOR_AHB_CMD, lutval, ARRAY_SIZE(lutval));
if (ret)
return ret;
}
return 0;
}
static void nxp_xspi_read_ahb(struct nxp_xspi *x, const struct spi_mem_op *op)
{
u32 len = op->data.nbytes;
/* Read out the data directly from the AHB buffer. */
memcpy_fromio(op->data.buf.in, (void *)(uintptr_t)(x->ahb_addr + op->addr.val), len);
}
static int nxp_xspi_fill_txfifo(struct nxp_xspi *x,
const struct spi_mem_op *op)
{
const u8 *buf = (u8 *)op->data.buf.out;
int xfer_remaining_size = op->data.nbytes;
u32 reg, val = 0;
int ret;
/* clear the TX FIFO. */
xspi_set_reg_field(x, x->config.env, 1, MCR, CLR_TXF);
ret = xspi_readl_poll_tout(x, x->config.env, XSPI_MCR,
XSPI_MCR_CLR_TXF_MASK, 1, POLL_TOUT, false);
if (ret) {
dev_err(x->dev, "%s: Timeout while waiting for TX FIFO clear\n", __func__);
return ret;
}
reg = XSPI_TBCT_WMRK((x->devtype_data->txfifo - ALIGN_DOWN(op->data.nbytes, 4)) / 4 + 1);
xspi_writel_offset(x, x->config.env, reg, TBCT);
reg = x->ahb_addr + op->addr.val;
xspi_writel_offset(x, x->config.env, reg, SFP_TG_SFAR);
udelay(2);
reg = XSPI_SFP_TG_IPCR_SEQID(CMD_LUT_FOR_IP_CMD) | XSPI_SFP_TG_IPCR_IDATSZ(op->data.nbytes);
u64 start = timer_get_us();
xspi_writel_offset(x, x->config.env, reg, SFP_TG_IPCR);
while (xfer_remaining_size > 0) {
if (xspi_get_reg_field(x, x->config.env, SR, TXFULL))
continue;
if (xfer_remaining_size > 4) {
memcpy(&val, buf, 4);
buf += 4;
} else {
val = 0;
memcpy(&val, buf, xfer_remaining_size);
buf += xfer_remaining_size;
}
xspi_writel_offset(x, x->config.env, val, TBDR);
xfer_remaining_size -= 4;
if (xspi_get_reg_field(x, x->config.env, FR, ILLINE))
break;
}
/* Wait for controller being ready. */
ret = xspi_readl_poll_tout(x, x->config.env, XSPI_SR,
XSPI_SR_BUSY_MASK, 1, POLL_TOUT, false);
if (ret) {
dev_err(x->dev, "%s: Timeout while waiting for busy flag to clear\n", __func__);
return ret;
}
u32 trctr = xspi_get_reg_field(x, x->config.env, TBSR, TRCTR);
if ((ALIGN(op->data.nbytes, 4) / 4) != trctr)
dev_dbg(x->dev, "Fail to write data. tx_size = %u, trctr = %u.\n",
op->data.nbytes, trctr * 4);
dev_dbg(x->dev, "tx data size: %u bytes, spend: %llu us\r\n",
op->data.nbytes, timer_get_us() - start);
return 0;
}
static int nxp_xspi_read_rxfifo(struct nxp_xspi *x,
const struct spi_mem_op *op)
{
u32 reg;
int ret, i;
u32 val;
u8 *buf = op->data.buf.in;
reg = XSPI_RBCT_WMRK(x->devtype_data->rx_buf_size / 4 - 1);
xspi_writel_offset(x, x->config.env, reg, RBCT);
/* clear the TX FIFO. */
xspi_set_reg_field(x, x->config.env, 1, MCR, CLR_RXF);
ret = xspi_readl_poll_tout(x, x->config.env, XSPI_MCR,
XSPI_MCR_CLR_RXF_MASK, 1, POLL_TOUT, false);
if (ret) {
dev_err(x->dev, "%s: Timeout while waiting for RX FIFO clear\n", __func__);
return ret;
}
xspi_writel_offset(x, x->config.env, x->ahb_addr + op->addr.val, SFP_TG_SFAR);
reg = XSPI_SFP_TG_IPCR_SEQID(CMD_LUT_FOR_IP_CMD) | XSPI_SFP_TG_IPCR_IDATSZ(op->data.nbytes);
u64 start = timer_get_us();
xspi_writel_offset(x, x->config.env, reg, SFP_TG_IPCR);
ret = xspi_readl_poll_tout(x, x->config.env, XSPI_SR, XSPI_SR_BUSY_MASK, 1,
POLL_TOUT, false);
if (ret) {
dev_err(x->dev, "%s: Timeout while waiting for busy flag to clear\n", __func__);
return ret;
}
for (i = 0; i < ALIGN_DOWN(op->data.nbytes, 4); i += 4) {
if (i == x->devtype_data->rx_buf_size) {
reg = xspi_readl_offset(x, x->config.env, FR);
reg |= XSPI_FR_RBDF_MASK;
xspi_writel_offset(x, x->config.env, reg, FR);
}
val = xspi_readl(x->iobase + (x->config.env * ENV_ADDR_SIZE) +
XSPI_RBDR + (i % x->devtype_data->rx_buf_size));
memcpy(buf + i, &val, 4);
}
if (i < op->data.nbytes) {
val = xspi_readl(x->iobase + (x->config.env * ENV_ADDR_SIZE) +
XSPI_RBDR + (i % x->devtype_data->rx_buf_size));
memcpy(buf + i, &val, op->data.nbytes - i);
}
/* clear the RX FIFO. */
xspi_set_reg_field(x, x->config.env, 1, MCR, CLR_RXF);
ret = xspi_readl_poll_tout(x, x->config.env, XSPI_MCR,
XSPI_MCR_CLR_RXF_MASK, 1, POLL_TOUT, false);
if (ret) {
dev_err(x->dev, "%s: Timeout while waiting for RX FIFO clear\n", __func__);
return ret;
}
dev_dbg(x->dev, "rx data size: %u bytes, spend: %llu us\r\n",
op->data.nbytes, timer_get_us() - start);
return 0;
}
static int nxp_xspi_xfer_cmd(struct nxp_xspi *x, const struct spi_mem_op *op)
{
u32 reg;
int ret;
xspi_writel_offset(x, x->config.env, x->ahb_addr + op->addr.val, SFP_TG_SFAR);
reg = XSPI_SFP_TG_IPCR_SEQID(CMD_LUT_FOR_IP_CMD) | XSPI_SFP_TG_IPCR_IDATSZ(op->data.nbytes);
xspi_writel_offset(x, x->config.env, reg, SFP_TG_IPCR);
/* Wait for controller being ready. */
ret = xspi_readl_poll_tout(x, x->config.env, XSPI_SR, XSPI_SR_BUSY_MASK, 1,
POLL_TOUT, false);
if (ret) {
dev_err(x->dev, "%s: Timeout while waiting for busy flag to clear\n", __func__);
return ret;
}
return 0;
}
static void nxp_xspi_select_mem(struct nxp_xspi *xspi, struct spi_slave *slave,
const struct spi_mem_op *op)
{
unsigned long rate = slave->max_hz;
if (xspi->selected == spi_chip_select(slave->dev) &&
xspi->dtr == op->cmd.dtr)
return;
if (!op->cmd.dtr) {
nxp_xspi_disable_ddr(xspi);
rate = min(xspi->support_max_rate, rate);
xspi->dtr = false;
} else {
nxp_xspi_enable_ddr(xspi);
rate = min(xspi->support_max_rate, rate);
rate *= 2;
xspi->dtr = true;
}
#if CONFIG_IS_ENABLED(CLK)
int ret;
nxp_xspi_clk_disable_unprep(xspi);
ret = clk_set_rate(&xspi->clk, rate);
if (ret < 0)
return;
ret = nxp_xspi_clk_prep_enable(xspi);
if (ret)
return;
#endif
xspi->selected = spi_chip_select(slave->dev);
if (!op->cmd.dtr || rate < MHZ(60))
nxp_xspi_dll_bypass(xspi);
else
nxp_xspi_dll_auto(xspi, rate);
}
static int nxp_xspi_exec_op(struct spi_slave *slave,
const struct spi_mem_op *op)
{
struct nxp_xspi *x;
struct udevice *bus;
int err = 0;
bus = slave->dev->parent;
x = dev_get_priv(bus);
dev_dbg(bus, "%s:%s:%d\n", __FILE__, __func__, __LINE__);
dev_dbg(bus, "buswidth = %u, nbytes = %u, dtr = %u, opcode = 0x%x\n",
op->cmd.buswidth, op->cmd.nbytes, op->cmd.dtr, op->cmd.opcode);
dev_dbg(bus, "buswidth = %u, nbytes = %u, dtr = %u, val = 0x%llx\n",
op->addr.buswidth, op->addr.nbytes, op->addr.dtr, op->addr.val);
dev_dbg(bus, "buswidth = %u, nbytes = %u, dtr = %u\n",
op->dummy.buswidth, op->dummy.nbytes, op->dummy.dtr);
dev_dbg(bus, "buswidth = %u, nbytes = %u, dtr = %u, dir = %u, buf = 0x%llx\n",
op->data.buswidth, op->data.nbytes, op->data.dtr, op->data.dir,
(u64)op->data.buf.in);
nxp_xspi_select_mem(x, slave, op);
nxp_xspi_prepare_lut(x, op);
/*
* If we have large chunks of data, we read them through the AHB bus by
* accessing the mapped memory. In all other cases we use IP commands
* to access the flash. Read via AHB bus may be corrupted due to
* existence of an errata and therefore discard AHB read in such cases.
*/
if (op->data.nbytes > (x->config.gmid ? x->devtype_data->rxfifo : DEFAULT_XMIT_SIZE) &&
op->data.dir == SPI_MEM_DATA_IN) {
dev_dbg(bus, "ahb read\n");
nxp_xspi_read_ahb(x, op);
} else {
dev_dbg(bus, "ip command\n");
/* Wait for controller being ready. */
err = xspi_readl_poll_tout(x, x->config.env, XSPI_SR, XSPI_SR_BUSY_MASK,
1, POLL_TOUT, false);
if (err) {
dev_err(x->dev, "Timeout while waiting for XSPI busy flag to clear.\n");
return err;
}
xspi_writel_offset(x, x->config.env, GENMASK(31, 0), FR);
if (op->data.nbytes) {
if (op->data.dir == SPI_MEM_DATA_OUT)
nxp_xspi_fill_txfifo(x, op);
else if (op->data.dir == SPI_MEM_DATA_IN)
nxp_xspi_read_rxfifo(x, op);
else
dev_dbg(x->dev, "%d: never should happen\r\n", __LINE__);
} else {
nxp_xspi_xfer_cmd(x, op);
}
}
#ifdef DEBUG
if (op->data.nbytes <= 10)
if (op->data.dir != SPI_MEM_NO_DATA)
print_buffer(0, op->data.buf.out, 1, op->data.nbytes, 16);
#endif
return err;
}
static const struct spi_controller_mem_ops nxp_xspi_mem_ops = {
.adjust_op_size = nxp_xspi_adjust_op_size,
.supports_op = nxp_xspi_supports_op,
.exec_op = nxp_xspi_exec_op,
};
static const struct dm_spi_ops nxp_xspi_ops = {
.claim_bus = nxp_xspi_claim_bus,
.set_speed = nxp_xspi_set_speed,
.set_mode = nxp_xspi_set_mode,
.mem_ops = &nxp_xspi_mem_ops,
};
static int nxp_xspi_of_to_plat(struct udevice *bus)
{
struct nxp_xspi *x = dev_get_priv(bus);
fdt_addr_t iobase;
fdt_addr_t iobase_size;
fdt_addr_t ahb_addr;
fdt_addr_t ahb_size;
#if CONFIG_IS_ENABLED(CLK)
int ret;
#endif
x->dev = bus;
iobase = devfdt_get_addr_size_name(bus, "xspi_base", &iobase_size);
if (iobase == FDT_ADDR_T_NONE) {
dev_err(bus, "xspi_base regs missing\n");
return -ENODEV;
}
x->iobase = iobase;
ahb_addr = devfdt_get_addr_size_name(bus, "xspi_mmap", &ahb_size);
if (ahb_addr == FDT_ADDR_T_NONE) {
dev_err(bus, "xspi_mmap regs missing\n");
return -ENODEV;
}
x->ahb_addr = ahb_addr;
x->a1_size = ahb_size;
x->a2_size = 0;
x->config.gmid = true;
x->config.env = 0;
#if CONFIG_IS_ENABLED(CLK)
ret = clk_get_by_name(bus, "xspi", &x->clk);
if (ret) {
dev_err(bus, "failed to get xspi clock\n");
return ret;
}
#endif
dev_dbg(bus, "iobase=<0x%x>, ahb_addr=<0x%x>, a1_size=<0x%x>, a2_size=<0x%x>, env=<0x%x>, gmid=<0x%x>\n",
x->iobase, x->ahb_addr, x->a1_size, x->a2_size, x->config.env, x->config.gmid);
return 0;
}
static int nxp_xspi_config_ahb_buffers(struct nxp_xspi *x)
{
u32 reg;
reg = XSPI_BUF3CR_MSTRID(0xa);
xspi_writel_offset(x, 0, reg, BUF0CR);
reg = XSPI_BUF3CR_MSTRID(0x2);
xspi_writel_offset(x, 0, reg, BUF1CR);
reg = XSPI_BUF3CR_MSTRID(0xd);
xspi_writel_offset(x, 0, reg, BUF2CR);
reg = XSPI_BUF3CR_MSTRID(0x6) | XSPI_BUF3CR_ALLMST_MASK;
reg |= XSPI_BUF3CR_ADATSZ(x->devtype_data->ahb_buf_size / 8U);
xspi_writel_offset(x, 0, reg, BUF3CR);
/* Only the buffer3 is used */
xspi_writel_offset(x, 0, 0, BUF0IND);
xspi_writel_offset(x, 0, 0, BUF1IND);
xspi_writel_offset(x, 0, 0, BUF2IND);
/* Program the Sequence ID for read/write operation. */
reg = XSPI_BFGENCR_SEQID_WR_EN_MASK | XSPI_BFGENCR_SEQID(CMD_LUT_FOR_AHB_CMD);
xspi_writel_offset(x, 0, reg, BFGENCR);
/* AHB access towards flash is broken if this AHB alignment boundary is crossed */
/* 0-No limit 1-256B 10-512B 11b-limit */
xspi_set_reg_field(x, 0, 0, BFGENCR, ALIGN);
return 0;
};
static void nxp_xspi_config_mdad(struct nxp_xspi *x)
{
xspi_writel_offset(x, 0, XSPI_TG2MDAD_EXT_VLD_MASK, TG0MDAD);
xspi_writel_offset(x, 0, XSPI_TG2MDAD_EXT_VLD_MASK, TG1MDAD);
xspi_writel_offset(x, 0, XSPI_TG2MDAD_EXT_VLD_MASK, TG2MDAD_EXT);
xspi_writel_offset(x, 0, XSPI_TG2MDAD_EXT_VLD_MASK, TG3MDAD_EXT);
xspi_writel_offset(x, 0, XSPI_TG2MDAD_EXT_VLD_MASK, TG4MDAD_EXT);
}
static void nxp_xspi_config_frad(struct nxp_xspi *x)
{
/* Enable Read/Write Access permissions & Valid */
for (int i = 0; i < 8; i++) {
xspi_writel(XSPI_FRAD0_WORD2_MD0ACP_MASK | XSPI_FRAD0_WORD2_MD1ACP_MASK,
x->iobase + XSPI_FRAD0_WORD2 + (i * 0x20U));
xspi_writel(XSPI_FRAD0_WORD3_VLD_MASK,
x->iobase + XSPI_FRAD0_WORD3 + (i * 0x20U));
}
for (int i = 0; i < 8; i++) {
xspi_writel(XSPI_FRAD0_WORD2_MD0ACP_MASK | XSPI_FRAD0_WORD2_MD1ACP_MASK,
x->iobase + XSPI_FRAD8_WORD2 + (i * 0x20U));
xspi_writel(XSPI_FRAD0_WORD3_VLD_MASK,
x->iobase + XSPI_FRAD8_WORD3 + (i * 0x20U));
}
}
static int nxp_xspi_default_setup(struct nxp_xspi *x)
{
int ret = 0;
u32 reg;
#if CONFIG_IS_ENABLED(CLK)
ret = clk_set_rate(&x->clk, 20UL * 1000000UL);
if (ret < 0) {
dev_err(x->dev, "clk_set_rate fail\n");
return ret;
}
dev_dbg(x->dev, "clk rate = %lu\n", clk_get_rate(&x->clk));
ret = nxp_xspi_clk_prep_enable(x);
if (ret) {
dev_err(x->dev, "nxp_xspi_clk_prep_enable fail\n");
return ret;
}
#endif
if (x->config.gmid) {
reg = xspi_readl_offset(x, 0, MGC);
reg &= ~(XSPI_MGC_GVLD_MASK | XSPI_MGC_GVLDMDAD_MASK | XSPI_MGC_GVLDFRAD_MASK);
xspi_writel_offset(x, 0, reg, MGC);
xspi_writel_offset(x, 0, GENMASK(31, 0), MTO);
}
nxp_xspi_config_mdad(x);
nxp_xspi_config_frad(x);
xspi_set_reg_field(x, 0, 0, MCR, MDIS);
xspi_swreset(x);
xspi_set_reg_field(x, 0, 1, MCR, MDIS);
reg = xspi_readl_offset(x, 0, MCR);
reg &= ~(XSPI_MCR_END_CFG_MASK | XSPI_MCR_DQS_FA_SEL_MASK |
XSPI_MCR_DDR_EN_MASK | XSPI_MCR_DQS_EN_MASK | XSPI_MCR_CKN_FA_EN_MASK |
XSPI_MCR_DQS_OUT_EN_MASK | XSPI_MCR_ISD2FA_MASK | XSPI_MCR_ISD3FA_MASK);
reg |= XSPI_MCR_ISD2FA_MASK;
reg |= XSPI_MCR_ISD3FA_MASK;
reg |= XSPI_MCR_END_CFG(3);
xspi_writel_offset(x, 0, reg, MCR);
reg = xspi_readl_offset(x, 0, SFACR);
reg &= ~(uint32_t)(XSPI_SFACR_CAS_MASK | XSPI_SFACR_WA_MASK |
XSPI_SFACR_BYTE_SWAP_MASK | XSPI_SFACR_WA_4B_EN_MASK |
XSPI_SFACR_FORCE_A10_MASK);
xspi_writel_offset(x, 0, reg, SFACR);
nxp_xspi_config_ahb_buffers(x);
reg = XSPI_FLSHCR_TCSH(3) | XSPI_FLSHCR_TCSS(3);
xspi_writel_offset(x, 0, reg, FLSHCR);
xspi_writel_offset(x, 0, x->ahb_addr + x->a1_size, SFA1AD);
xspi_writel_offset(x, 0, x->ahb_addr + x->a1_size + x->a2_size, SFA2AD);
reg = XSPI_SMPR_DLLFSMPFA(7);
xspi_writel_offset(x, 0, reg, SMPR);
xspi_set_reg_field(x, 0, 0, MCR, MDIS);
xspi_swreset(x);
x->selected = -1;
return ret;
};
static int nxp_xspi_probe(struct udevice *bus)
{
int ret;
struct nxp_xspi *x = dev_get_priv(bus);
x->devtype_data =
(struct nxp_xspi_devtype_data *)dev_get_driver_data(bus);
ret = nxp_xspi_default_setup(x);
if (ret)
dev_err(x->dev, "nxp_xspi_default_setup fail %d\n", ret);
return ret;
};
U_BOOT_DRIVER(nxp_xspi) = {
.name = "nxp_xspi",
.id = UCLASS_SPI,
.of_match = nxp_xspi_ids,
.ops = &nxp_xspi_ops,
.of_to_plat = nxp_xspi_of_to_plat,
.priv_auto = sizeof(struct nxp_xspi),
.probe = nxp_xspi_probe,
.flags = DM_FLAG_PRE_RELOC,
};
|