forked from u-boot/u-boot
-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathsdram_ast2600.c
More file actions
1045 lines (898 loc) · 29.3 KB
/
sdram_ast2600.c
File metadata and controls
1045 lines (898 loc) · 29.3 KB
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
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// SPDX-License-Identifier: GPL-2.0
/*
* Copyright (C) ASPEED Technology Inc.
*
*/
#include <common.h>
#include <clk.h>
#include <dm.h>
#include <errno.h>
#include <ram.h>
#include <regmap.h>
#include <reset.h>
#include <asm/io.h>
#include <asm/arch/scu_ast2600.h>
#include <asm/arch/sdram_ast2600.h>
#include <linux/err.h>
#include <linux/kernel.h>
#include <dt-bindings/clock/ast2600-clock.h>
#include <linux/bitfield.h>
#include <linux/bitops.h>
#include "sdram_phy_ast2600.h"
/* in order to speed up DRAM init time, write pre-defined values to registers
* directly */
#define AST2600_SDRAMMC_MANUAL_CLK
/* register offset */
#define AST_SCU_FPGA_STATUS 0x004
#define AST_SCU_HANDSHAKE 0x100
#define AST_SCU_MPLL 0x220
#define AST_SCU_MPLL_EXT 0x224
#define AST_SCU_FPGA_PLL 0x400
#define AST_SCU_HW_STRAP 0x500
#define AST_SCU_EFUSE_DATA 0x594
/* bit-field of AST_SCU_HW_STRAP */
#define SCU_HWSTRAP_VGAMEM_SHIFT 13
#define SCU_HWSTRAP_VGAMEM_MASK GENMASK(14, 13)
/* bit-field of AST_SCU_EFUSE_DATA */
#define SCU_EFUSE_DATA_VGA_DIS_MASK BIT(14)
/* bit-field of AST_SCU_HANDSHAKE */
#define SCU_SDRAM_SUPPORT_IKVM_HIGH_RES BIT(0)
#define SCU_SDRAM_INIT_READY_MASK BIT(6)
#define SCU_SDRAM_INIT_BY_SOC_MASK BIT(7)
#define SCU_P2A_BRIDGE_DISABLE BIT(12)
#define SCU_HANDSHAKE_MASK \
(SCU_SDRAM_INIT_READY_MASK | SCU_SDRAM_INIT_BY_SOC_MASK | \
SCU_P2A_BRIDGE_DISABLE | SCU_SDRAM_SUPPORT_IKVM_HIGH_RES)
/* bit-field of AST_SCU_MPLL */
#define SCU_MPLL_RESET BIT(25)
#define SCU_MPLL_BYPASS BIT(24)
#define SCU_MPLL_TURN_OFF BIT(23)
#define SCU_MPLL_FREQ_MASK GENMASK(22, 0)
#define SCU_MPLL_FREQ_400M 0x0008405F
#define SCU_MPLL_EXT_400M 0x0000002F
//#define SCU_MPLL_FREQ_400M 0x0038007F
//#define SCU_MPLL_EXT_400M 0x0000003F
#define SCU_MPLL_FREQ_333M 0x00488299
#define SCU_MPLL_EXT_333M 0x0000014C
#define SCU_MPLL_FREQ_200M 0x0078007F
#define SCU_MPLL_EXT_200M 0x0000003F
#define SCU_MPLL_FREQ_100M 0x0078003F
#define SCU_MPLL_EXT_100M 0x0000001F
/* MPLL configuration */
#if defined(CONFIG_ASPEED_DDR4_1600)
#define SCU_MPLL_FREQ_CFG SCU_MPLL_FREQ_400M
#define SCU_MPLL_EXT_CFG SCU_MPLL_EXT_400M
#elif defined(CONFIG_ASPEED_DDR4_1333)
#define SCU_MPLL_FREQ_CFG SCU_MPLL_FREQ_333M
#define SCU_MPLL_EXT_CFG SCU_MPLL_EXT_333M
#elif defined(CONFIG_ASPEED_DDR4_800)
#define SCU_MPLL_FREQ_CFG SCU_MPLL_FREQ_200M
#define SCU_MPLL_EXT_CFG SCU_MPLL_EXT_200M
#elif defined(CONFIG_ASPEED_DDR4_400)
#define SCU_MPLL_FREQ_CFG SCU_MPLL_FREQ_100M
#define SCU_MPLL_EXT_CFG SCU_MPLL_EXT_100M
#else
#error "undefined DDR4 target rate\n"
#endif
/**
* MR01[26:24] - ODT configuration (DRAM side)
* b'001 : 60 ohm
* b'101 : 48 ohm
* b'011 : 40 ohm (default)
*/
#if defined(CONFIG_ASPEED_DDR4_DRAM_ODT60)
#define MR01_DRAM_ODT (0x1 << 24)
#elif defined(CONFIG_ASPEED_DDR4_DRAM_ODT48)
#define MR01_DRAM_ODT (0x5 << 24)
#else
#define MR01_DRAM_ODT (0x3 << 24)
#endif
/* AC timing and SDRAM mode registers */
#if defined(CONFIG_FPGA_ASPEED) || defined(CONFIG_ASPEED_PALLADIUM)
/* mode register settings for FPGA are fixed */
#define DDR4_MR01_MODE (MR01_DRAM_ODT | 0x00010100)
#define DDR4_MR23_MODE 0x00000000
#define DDR4_MR45_MODE 0x04C00000
#define DDR4_MR6_MODE 0x00000050
#define DDR4_TRFC_FPGA 0x17263434
#define DDR4_TRFI 0x5d
/* FPGA need for an additional initialization procedure: search read window */
#define SEARCH_RDWIN_ANCHOR_0 (CONFIG_SYS_SDRAM_BASE + 0x0000)
#define SEARCH_RDWIN_ANCHOR_1 (CONFIG_SYS_SDRAM_BASE + 0x0004)
#define SEARCH_RDWIN_PTRN_0 0x12345678
#define SEARCH_RDWIN_PTRN_1 0xaabbccdd
#define SEARCH_RDWIN_PTRN_SUM 0xbcf02355
#else
/* mode register setting for real chip are derived from the model GDDR4-1600 */
#define DDR4_MR01_MODE ((MR1_VAL << 16) | MR0_VAL)
#define DDR4_MR23_MODE ((MR3_VAL << 16) | MR2_VAL)
#define DDR4_MR45_MODE ((MR5_VAL << 16) | MR4_VAL)
#define DDR4_MR6_MODE MR6_VAL
#define DDR4_TRFC_1600 0x467299f1
#define DDR4_TRFC_1333 0x3a5f80c9
#define DDR4_TRFC_800 0x23394c78
#define DDR4_TRFC_400 0x111c263c
/*
* tRFI calculation
* DDR4 spec. :
* tRFI = 7.8 us if temperature is Less/equal than 85 degree celsius
* tRFI = 3.9 us if temperature is greater than 85 degree celsius
*
* tRFI in MCR0C = floor(tRFI * 12.5M) - margin
* normal temp. -> floor(7.8 * 12.5) - 2 = 0x5f
* high temp. -> floor(3.9 * 12.5) - 1 = 0x2f
*/
#ifdef CONFIG_ASPEED_HI_TEMP_TRFI
#define DDR4_TRFI 0x2f /* High temperature tRFI */
#else
#define DDR4_TRFI 0x5f /* Normal temperature tRFI */
#endif /* end of "#ifdef CONFIG_ASPEED_HI_TEMP_TRFI" */
#endif /* end of "#if defined(CONFIG_FPGA_ASPEED) || \
defined(CONFIG_ASPEED_PALLADIUM)" */
#if defined(CONFIG_FPGA_ASPEED) || defined(CONFIG_ASPEED_PALLADIUM)
#define DDR4_TRFC DDR4_TRFC_FPGA
#else
/* real chip setting */
#if defined(CONFIG_ASPEED_DDR4_1600)
#define DDR4_TRFC DDR4_TRFC_1600
#define DDR4_PHY_TRAIN_TRFC 0xc30
#elif defined(CONFIG_ASPEED_DDR4_1333)
#define DDR4_TRFC DDR4_TRFC_1333
#define DDR4_PHY_TRAIN_TRFC 0xa25
#elif defined(CONFIG_ASPEED_DDR4_800)
#define DDR4_TRFC DDR4_TRFC_800
#define DDR4_PHY_TRAIN_TRFC 0x618
#elif defined(CONFIG_ASPEED_DDR4_400)
#define DDR4_TRFC DDR4_TRFC_400
#define DDR4_PHY_TRAIN_TRFC 0x30c
#else
#error "undefined tRFC setting"
#endif /* end of "#if (SCU_MPLL_FREQ_CFG == SCU_MPLL_FREQ_400M)" */
#endif /* end of "#if defined(CONFIG_FPGA_ASPEED) || \
defined(CONFIG_ASPEED_PALLADIUM)" */
/* supported SDRAM size */
#define SDRAM_SIZE_1KB (1024U)
#define SDRAM_SIZE_1MB (SDRAM_SIZE_1KB * SDRAM_SIZE_1KB)
#define SDRAM_MIN_SIZE (256 * SDRAM_SIZE_1MB)
#define SDRAM_MAX_SIZE (2048 * SDRAM_SIZE_1MB)
DECLARE_GLOBAL_DATA_PTR;
/*
* Bandwidth configuration parameters for different SDRAM requests.
* These are hardcoded settings taken from Aspeed SDK.
*/
#if defined(CONFIG_FPGA_ASPEED) || defined(CONFIG_ASPEED_PALLADIUM)
static const u32 ddr4_ac_timing[4] = { 0x030C0207, 0x04451133, 0x0E010200,
0x00000140 };
static const u32 ddr_max_grant_params[4] = { 0x88888888, 0x88888888, 0x88888888,
0x88888888 };
#else
static const u32 ddr4_ac_timing[4] = { 0x040e0307, 0x0f4711f1, 0x0e060304,
0x00001240 };
static const u32 ddr_max_grant_params[4] = { 0x44484488, 0xee4444ee, 0x44444444,
0x44444444 };
#endif
struct dram_info {
struct ram_info info;
struct clk ddr_clk;
struct ast2600_sdrammc_regs *regs;
void __iomem *scu;
struct ast2600_ddr_phy *phy;
void __iomem *phy_setting;
void __iomem *phy_status;
ulong clock_rate;
};
static void ast2600_sdramphy_kick_training(struct dram_info *info)
{
#if !defined(CONFIG_FPGA_ASPEED) && !defined(CONFIG_ASPEED_PALLADIUM)
struct ast2600_sdrammc_regs *regs = info->regs;
u32 volatile data;
writel(SDRAM_PHYCTRL0_NRST, ®s->phy_ctrl[0]);
udelay(5);
writel(SDRAM_PHYCTRL0_NRST | SDRAM_PHYCTRL0_INIT, ®s->phy_ctrl[0]);
udelay(1000);
while (1) {
data = readl(®s->phy_ctrl[0]) & SDRAM_PHYCTRL0_INIT;
if (data == 0)
break;
}
#endif
}
/**
* @brief load DDR-PHY configurations table to the PHY registers
* @param[in] p_tbl - pointer to the configuration table
* @param[in] info - pointer to the DRAM info struct
*
* There are two sets of MRS (Mode Registers) configuration in ast2600 memory
* system: one is in the SDRAM MC (memory controller) which is used in run
* time, and the other is in the DDR-PHY IP which is used during DDR-PHY
* training.
*/
static void ast2600_sdramphy_init(u32 *p_tbl, struct dram_info *info)
{
#if !defined(CONFIG_FPGA_ASPEED) && !defined(CONFIG_ASPEED_PALLADIUM)
u32 reg_base = (u32)info->phy_setting;
u32 addr = p_tbl[0];
u32 data;
int i = 1;
writel(0, &info->regs->phy_ctrl[0]);
udelay(10);
//writel(SDRAM_PHYCTRL0_NRST, ®s->phy_ctrl[0]);
/* load PHY configuration table into PHY-setting registers */
while (1) {
if (addr < reg_base) {
debug("invalid DDR-PHY addr: 0x%08x\n", addr);
break;
}
data = p_tbl[i++];
if (data == DDR_PHY_TBL_END) {
break;
} else if (data == DDR_PHY_TBL_CHG_ADDR) {
addr = p_tbl[i++];
} else {
writel(data, addr);
addr += 4;
}
}
data = readl(info->phy_setting + 0x84) & ~GENMASK(16, 0);
data |= DDR4_PHY_TRAIN_TRFC;
writel(data, info->phy_setting + 0x84);
#endif
}
static int ast2600_sdramphy_check_status(struct dram_info *info)
{
#if !defined(CONFIG_FPGA_ASPEED) && !defined(CONFIG_ASPEED_PALLADIUM)
u32 value, tmp;
u32 reg_base = (u32)info->phy_status;
int need_retrain = 0;
debug("\nSDRAM PHY training report:\n");
/* training status */
value = readl(reg_base + 0x00);
debug("\nrO_DDRPHY_reg offset 0x00 = 0x%08x\n", value);
if (value & BIT(3))
debug("\tinitial PVT calibration fail\n");
if (value & BIT(5))
debug("\truntime calibration fail\n");
/* PU & PD */
value = readl(reg_base + 0x30);
debug("\nrO_DDRPHY_reg offset 0x30 = 0x%08x\n", value);
debug(" PU = 0x%02lx\n", FIELD_GET(GENMASK(7, 0), value));
debug(" PD = 0x%02lx\n", FIELD_GET(GENMASK(23, 16), value));
/* read eye window */
value = readl(reg_base + 0x68);
if (FIELD_GET(GENMASK(7, 0), value) == 0)
need_retrain = 1;
debug("\nrO_DDRPHY_reg offset 0x68 = 0x%08x\n", value);
debug(" rising edge of read data eye training pass window\n");
tmp = FIELD_GET(GENMASK(7, 0), value) * 100 / 255;
debug(" B0:%d%%\n", tmp);
tmp = FIELD_GET(GENMASK(15, 8), value) * 100 / 255;
debug(" B1:%d%%\n", tmp);
value = readl(reg_base + 0xC8);
debug("\nrO_DDRPHY_reg offset 0xC8 = 0x%08x\n", value);
debug(" falling edge of read data eye training pass window\n");
tmp = FIELD_GET(GENMASK(7, 0), value) * 100 / 255;
debug(" B0:%d%%\n", tmp);
tmp = FIELD_GET(GENMASK(15, 8), value) * 100 / 255;
debug(" B1:%d%%\n", tmp);
/* write eye window */
value = readl(reg_base + 0x7c);
if (FIELD_GET(GENMASK(7, 0), value) == 0)
need_retrain = 1;
debug("\nrO_DDRPHY_reg offset 0x7C = 0x%08x\n", value);
debug(" write data eye training pass window\n");
tmp = FIELD_GET(GENMASK(7, 0), value) * 100 / 255;
debug(" B0:%d%%\n", tmp);
tmp = FIELD_GET(GENMASK(15, 8), value) * 100 / 255;
debug(" B1:%d%%\n", tmp);
/* read Vref (PHY side) training result */
value = readl(reg_base + 0x88);
debug("\nrO_DDRPHY_reg offset 0x88 = 0x%08x\n", value);
debug(" Read VrefDQ training result\n");
tmp = FIELD_GET(GENMASK(7, 0), value) * 10000 / 128;
debug(" B0:%d.%d%%\n", tmp / 100, tmp % 100);
tmp = FIELD_GET(GENMASK(15, 8), value) * 10000 / 128;
debug(" B1:%d.%d%%\n", tmp / 100, tmp % 100);
/* write Vref (DRAM side) training result */
value = readl(reg_base + 0x90);
debug("\nrO_DDRPHY_reg offset 0x90 = 0x%08x\n", value);
tmp = readl(info->phy_setting + 0x60) & BIT(6);
if (tmp) {
value = 4500 + 65 * value;
debug(" Write Vref training result: %d.%d%% (range 2)\n",
value / 100, value % 100);
} else {
value = 6000 + 65 * value;
debug(" Write Vref training result: %d.%d%% (range 1)\n",
value / 100, value % 100);
}
/* gate train */
value = readl(reg_base + 0x50);
debug("\nrO_DDRPHY_reg offset 0x50 = 0x%08x\n", value);
if ((FIELD_GET(GENMASK(15, 0), value) == 0) ||
(FIELD_GET(GENMASK(31, 16), value) == 0))
need_retrain = 1;
debug(" gate training pass window\n");
debug(" module 0: 0x%04lx\n", FIELD_GET(GENMASK(15, 0), value));
debug(" module 1: 0x%04lx\n", FIELD_GET(GENMASK(31, 16), value));
return need_retrain;
#else
return 0;
#endif
}
#ifndef CONFIG_ASPEED_BYPASS_SELFTEST
#define MC_TEST_PATTERN_N 8
static u32 as2600_sdrammc_test_pattern[MC_TEST_PATTERN_N] = {
0xcc33cc33, 0xff00ff00, 0xaa55aa55, 0x88778877,
0x92cc4d6e, 0x543d3cde, 0xf1e843c7, 0x7c61d253
};
#define TIMEOUT_DRAM 5000000
int ast2600_sdrammc_dg_test(struct dram_info *info, unsigned int datagen, u32 mode)
{
unsigned int data;
unsigned int timeout = 0;
struct ast2600_sdrammc_regs *regs = info->regs;
writel(0, ®s->ecc_test_ctrl);
if (mode == 0)
writel(0x00000085 | (datagen << 3), ®s->ecc_test_ctrl);
else
writel(0x000000C1 | (datagen << 3), ®s->ecc_test_ctrl);
do {
data = readl(®s->ecc_test_ctrl) & GENMASK(13, 12);
if (data & BIT(13))
return 0;
if (++timeout > TIMEOUT_DRAM) {
printf("Timeout!!\n");
writel(0, ®s->ecc_test_ctrl);
return 0;
}
} while (!data);
writel(0, ®s->ecc_test_ctrl);
return 1;
}
int ast2600_sdrammc_cbr_test(struct dram_info *info)
{
struct ast2600_sdrammc_regs *regs = info->regs;
u32 i;
clrsetbits_le32(®s->test_addr, GENMASK(30, 4), 0x7ffff0);
/* single */
for (i = 0; i < 8; i++) {
if (!ast2600_sdrammc_dg_test(info, i, 0))
return (0);
}
/* burst */
for (i = 0; i < 8; i++) {
if (!ast2600_sdrammc_dg_test(info, i, i))
return (0);
}
return(1);
}
static int ast2600_sdrammc_test(struct dram_info *info)
{
struct ast2600_sdrammc_regs *regs = info->regs;
u32 pass_cnt = 0;
u32 fail_cnt = 0;
u32 target_cnt = 2;
u32 test_cnt = 0;
u32 pattern;
u32 i = 0;
bool finish = false;
debug("sdram mc test:\n");
while (finish == false) {
pattern = as2600_sdrammc_test_pattern[i++];
i = i % MC_TEST_PATTERN_N;
debug(" pattern = %08x : ", pattern);
writel(pattern, ®s->test_init_val);
if (!ast2600_sdrammc_cbr_test(info)) {
debug("fail\n");
fail_cnt++;
} else {
debug("pass\n");
pass_cnt++;
}
if (++test_cnt == target_cnt) {
finish = true;
}
}
debug("statistics: pass/fail/total:%d/%d/%d\n", pass_cnt, fail_cnt,
target_cnt);
return fail_cnt;
}
#endif
/**
* scu500[14:13]
* 2b'00: VGA memory size = 16MB
* 2b'01: VGA memory size = 16MB
* 2b'10: VGA memory size = 32MB
* 2b'11: VGA memory size = 64MB
*
* mcr04[3:2]
* 2b'00: VGA memory size = 8MB
* 2b'01: VGA memory size = 16MB
* 2b'10: VGA memory size = 32MB
* 2b'11: VGA memory size = 64MB
*/
static size_t ast2600_sdrammc_get_vga_mem_size(struct dram_info *info)
{
u32 vga_hwconf;
size_t vga_mem_size_base = 8 * 1024 * 1024;
vga_hwconf = (readl(info->scu + AST_SCU_HW_STRAP) &
SCU_HWSTRAP_VGAMEM_MASK) >>
SCU_HWSTRAP_VGAMEM_SHIFT;
if (vga_hwconf == 0) {
vga_hwconf = 1;
writel(vga_hwconf << SCU_HWSTRAP_VGAMEM_SHIFT,
info->scu + AST_SCU_HW_STRAP);
}
clrsetbits_le32(&info->regs->config, SDRAM_CONF_VGA_SIZE_MASK,
((vga_hwconf << SDRAM_CONF_VGA_SIZE_SHIFT) &
SDRAM_CONF_VGA_SIZE_MASK));
/* no need to reserve VGA memory if efuse[VGA disable] is set */
if (readl(info->scu + AST_SCU_EFUSE_DATA) & SCU_EFUSE_DATA_VGA_DIS_MASK)
return 0;
return vga_mem_size_base << vga_hwconf;
}
#if defined(CONFIG_FPGA_ASPEED) || defined(CONFIG_ASPEED_PALLADIUM)
static void ast2600_sdrammc_fpga_set_pll(struct dram_info *info)
{
u32 data;
u32 scu_base = (u32)info->scu;
writel(0x00000303, scu_base + AST_SCU_FPGA_PLL);
do {
data = readl(scu_base + AST_SCU_FPGA_STATUS);
} while (!(data & 0x100));
writel(0x00000103, scu_base + AST_SCU_FPGA_PLL);
}
static int ast2600_sdrammc_search_read_window(struct dram_info *info)
{
u32 pll, pll_min, pll_max, dat1, offset;
u32 win = 0x03, gwin = 0, gwinsize = 0;
u32 phy_setting = (u32)info->phy_setting;
#ifdef CONFIG_ASPEED_PALLADIUM
writel(0xc, phy_setting + 0x0000);
return 1;
#endif
writel(SEARCH_RDWIN_PTRN_0, SEARCH_RDWIN_ANCHOR_0);
writel(SEARCH_RDWIN_PTRN_1, SEARCH_RDWIN_ANCHOR_1);
while (gwin == 0) {
while (!(win & 0x80)) {
debug("Window = 0x%X\n", win);
writel(win, phy_setting + 0x0000);
dat1 = readl(SEARCH_RDWIN_ANCHOR_0);
dat1 += readl(SEARCH_RDWIN_ANCHOR_1);
while (dat1 == SEARCH_RDWIN_PTRN_SUM) {
ast2600_sdrammc_fpga_set_pll(info);
dat1 = readl(SEARCH_RDWIN_ANCHOR_0);
dat1 += readl(SEARCH_RDWIN_ANCHOR_1);
}
pll_min = 0xfff;
pll_max = 0x0;
pll = 0;
while (pll_max > 0 || pll < 256) {
ast2600_sdrammc_fpga_set_pll(info);
dat1 = readl(SEARCH_RDWIN_ANCHOR_0);
dat1 += readl(SEARCH_RDWIN_ANCHOR_1);
if (dat1 == SEARCH_RDWIN_PTRN_SUM) {
if (pll_min > pll)
pll_min = pll;
if (pll_max < pll)
pll_max = pll;
debug("%3d_(%3d:%3d)\n", pll, pll_min,
pll_max);
} else if (pll_max > 0) {
pll_min = pll_max - pll_min;
if (gwinsize < pll_min) {
gwin = win;
gwinsize = pll_min;
}
break;
}
pll += 1;
}
if (gwin != 0 && pll_max == 0)
break;
win = win << 1;
}
if (gwin == 0)
win = 0x7;
}
debug("Set PLL Read Gating Window = %x\n", gwin);
writel(gwin, phy_setting + 0x0000);
debug("PLL Read Window training\n");
pll_min = 0xfff;
pll_max = 0x0;
debug("Search Window Start\n");
dat1 = readl(SEARCH_RDWIN_ANCHOR_0);
dat1 += readl(SEARCH_RDWIN_ANCHOR_1);
while (dat1 == SEARCH_RDWIN_PTRN_SUM) {
ast2600_sdrammc_fpga_set_pll(info);
dat1 = readl(SEARCH_RDWIN_ANCHOR_0);
dat1 += readl(SEARCH_RDWIN_ANCHOR_1);
}
debug("Search Window Margin\n");
pll = 0;
while (pll_max > 0 || pll < 256) {
ast2600_sdrammc_fpga_set_pll(info);
dat1 = readl(SEARCH_RDWIN_ANCHOR_0);
dat1 += readl(SEARCH_RDWIN_ANCHOR_1);
if (dat1 == SEARCH_RDWIN_PTRN_SUM) {
if (pll_min > pll)
pll_min = pll;
if (pll_max < pll)
pll_max = pll;
debug("%3d_(%3d:%3d)\n", pll, pll_min, pll_max);
} else if (pll_max > 0 && (pll_max - pll_min) > 20) {
break;
} else if (pll_max > 0) {
pll_min = 0xfff;
pll_max = 0x0;
}
pll += 1;
}
if (pll_min < pll_max) {
debug("PLL Read window = %d\n", (pll_max - pll_min));
offset = (pll_max - pll_min) >> 1;
pll_min = 0xfff;
pll = 0;
while (pll < (pll_min + offset)) {
ast2600_sdrammc_fpga_set_pll(info);
dat1 = readl(SEARCH_RDWIN_ANCHOR_0);
dat1 += readl(SEARCH_RDWIN_ANCHOR_1);
if (dat1 == SEARCH_RDWIN_PTRN_SUM) {
if (pll_min > pll) {
pll_min = pll;
}
debug("%d\n", pll);
} else {
pll_min = 0xfff;
pll_max = 0x0;
}
pll += 1;
}
return (1);
} else {
debug("PLL Read window training fail\n");
return 0;
}
}
#endif /* end of "#if defined(CONFIG_FPGA_ASPEED) || \
defined(CONFIG_ASPEED_PALLADIUM)" */
/*
* Find out RAM size and save it in dram_info
*
* The procedure is taken from Aspeed SDK
*/
static void ast2600_sdrammc_calc_size(struct dram_info *info)
{
/* The controller supports 256/512/1024/2048 MB ram */
size_t ram_size = SDRAM_MIN_SIZE;
const int write_test_offset = 0x100000;
u32 test_pattern = 0xdeadbeef;
u32 cap_param = SDRAM_CONF_CAP_2048M;
u32 refresh_timing_param = DDR4_TRFC;
const u32 write_addr_base = CONFIG_SYS_SDRAM_BASE + write_test_offset;
for (ram_size = SDRAM_MAX_SIZE; ram_size > SDRAM_MIN_SIZE;
ram_size >>= 1) {
writel(test_pattern, write_addr_base + (ram_size >> 1));
test_pattern = (test_pattern >> 4) | (test_pattern << 28);
}
/* One last write to overwrite all wrapped values */
writel(test_pattern, write_addr_base);
/* Reset the pattern and see which value was really written */
test_pattern = 0xdeadbeef;
for (ram_size = SDRAM_MAX_SIZE; ram_size > SDRAM_MIN_SIZE;
ram_size >>= 1) {
if (readl(write_addr_base + (ram_size >> 1)) == test_pattern)
break;
--cap_param;
refresh_timing_param >>= 8;
test_pattern = (test_pattern >> 4) | (test_pattern << 28);
}
clrsetbits_le32(&info->regs->ac_timing[1],
(SDRAM_AC_TRFC_MASK << SDRAM_AC_TRFC_SHIFT),
((refresh_timing_param & SDRAM_AC_TRFC_MASK)
<< SDRAM_AC_TRFC_SHIFT));
info->info.base = CONFIG_SYS_SDRAM_BASE;
info->info.size = ram_size - ast2600_sdrammc_get_vga_mem_size(info) - CONFIG_ASPEED_SSP_RERV_MEM;
clrsetbits_le32(
&info->regs->config, SDRAM_CONF_CAP_MASK,
((cap_param << SDRAM_CONF_CAP_SHIFT) & SDRAM_CONF_CAP_MASK));
}
static int ast2600_sdrammc_init_ddr4(struct dram_info *info)
{
const u32 power_ctrl = MCR34_CKE_EN | MCR34_AUTOPWRDN_EN |
MCR34_MREQ_BYPASS_DIS | MCR34_RESETN_DIS |
MCR34_ODT_EN | MCR34_ODT_AUTO_ON |
(0x1 << MCR34_ODT_EXT_SHIFT);
/* init SDRAM-PHY only on real chip */
ast2600_sdramphy_init(ast2600_sdramphy_config, info);
writel((MCR34_CKE_EN | MCR34_MREQI_DIS | MCR34_RESETN_DIS),
&info->regs->power_ctrl);
udelay(5);
ast2600_sdramphy_kick_training(info);
udelay(500);
writel(SDRAM_RESET_DLL_ZQCL_EN, &info->regs->refresh_timing);
writel(MCR30_SET_MR(3), &info->regs->mode_setting_control);
writel(MCR30_SET_MR(6), &info->regs->mode_setting_control);
writel(MCR30_SET_MR(5), &info->regs->mode_setting_control);
writel(MCR30_SET_MR(4), &info->regs->mode_setting_control);
writel(MCR30_SET_MR(2), &info->regs->mode_setting_control);
writel(MCR30_SET_MR(1), &info->regs->mode_setting_control);
writel(MCR30_SET_MR(0) | MCR30_RESET_DLL_DELAY_EN,
&info->regs->mode_setting_control);
writel(SDRAM_REFRESH_EN | SDRAM_RESET_DLL_ZQCL_EN |
(DDR4_TRFI << SDRAM_REFRESH_PERIOD_SHIFT),
&info->regs->refresh_timing);
/* wait self-refresh idle */
while (readl(&info->regs->power_ctrl) & MCR34_SELF_REFRESH_STATUS_MASK)
;
#if defined(CONFIG_FPGA_ASPEED) || defined(CONFIG_ASPEED_PALLADIUM)
writel(SDRAM_REFRESH_EN | SDRAM_LOW_PRI_REFRESH_EN |
SDRAM_REFRESH_ZQCS_EN |
(DDR4_TRFI << SDRAM_REFRESH_PERIOD_SHIFT) |
(0x4000 << SDRAM_REFRESH_PERIOD_ZQCS_SHIFT),
&info->regs->refresh_timing);
#else
writel(SDRAM_REFRESH_EN | SDRAM_LOW_PRI_REFRESH_EN |
SDRAM_REFRESH_ZQCS_EN |
(DDR4_TRFI << SDRAM_REFRESH_PERIOD_SHIFT) |
(0x42aa << SDRAM_REFRESH_PERIOD_ZQCS_SHIFT),
&info->regs->refresh_timing);
#endif
writel(power_ctrl, &info->regs->power_ctrl);
udelay(500);
#if defined(CONFIG_FPGA_ASPEED)
/* toggle Vref training */
setbits_le32(&info->regs->mr6_mode_setting, 0x80);
writel(MCR30_RESET_DLL_DELAY_EN | MCR30_SET_MR(6),
&info->regs->mode_setting_control);
clrbits_le32(&info->regs->mr6_mode_setting, 0x80);
writel(MCR30_RESET_DLL_DELAY_EN | MCR30_SET_MR(6),
&info->regs->mode_setting_control);
#endif
return 0;
}
static void ast2600_sdrammc_unlock(struct dram_info *info)
{
writel(SDRAM_UNLOCK_KEY, &info->regs->protection_key);
while (!readl(&info->regs->protection_key))
;
}
static void ast2600_sdrammc_lock(struct dram_info *info)
{
writel(~SDRAM_UNLOCK_KEY, &info->regs->protection_key);
while (readl(&info->regs->protection_key))
;
}
static void ast2600_sdrammc_common_init(struct ast2600_sdrammc_regs *regs)
{
int i;
u32 reg;
writel(MCR34_MREQI_DIS | MCR34_RESETN_DIS, ®s->power_ctrl);
writel(SDRAM_VIDEO_UNLOCK_KEY, ®s->gm_protection_key);
/* [6:0] : Group 1 request queued number = 16
* [14:8] : Group 2 request queued number = 16
* [20:16] : R/W max-grant count for RQ output arbitration = 16
*/
writel(0x101010, ®s->arbitration_ctrl);
/* Request Queued Limitation for REQ8/9 USB1/2 */
writel(0x0FFF3CEF, ®s->req_limit_mask);
for (i = 0; i < ARRAY_SIZE(ddr_max_grant_params); ++i)
writel(ddr_max_grant_params[i], ®s->max_grant_len[i]);
writel(MCR50_RESET_ALL_INTR, ®s->intr_ctrl);
/* FIXME: the sample code does NOT match the datasheet */
writel(0x07FFFFFF, ®s->ecc_range_ctrl);
writel(0, ®s->ecc_test_ctrl);
writel(0x80000001, ®s->test_addr);
writel(0, ®s->test_fail_dq_bit);
writel(0, ®s->test_init_val);
writel(0xFFFFFFFF, ®s->req_input_ctrl);
writel(0x300, ®s->req_high_pri_ctrl);
udelay(600);
#ifdef CONFIG_ASPEED_DDR4_DUALX8
writel(0xa037, ®s->config);
#else
writel(0xa017, ®s->config);
#endif
/* load controller setting */
for (i = 0; i < ARRAY_SIZE(ddr4_ac_timing); ++i)
writel(ddr4_ac_timing[i], ®s->ac_timing[i]);
/* update CL and WL */
reg = readl(®s->ac_timing[1]);
reg &= ~(SDRAM_WL_SETTING | SDRAM_CL_SETTING);
reg |= FIELD_PREP(SDRAM_WL_SETTING, CONFIG_WL - 5) |
FIELD_PREP(SDRAM_CL_SETTING, CONFIG_RL - 5);
writel(reg, ®s->ac_timing[1]);
writel(DDR4_MR01_MODE, ®s->mr01_mode_setting);
writel(DDR4_MR23_MODE, ®s->mr23_mode_setting);
writel(DDR4_MR45_MODE, ®s->mr45_mode_setting);
writel(DDR4_MR6_MODE, ®s->mr6_mode_setting);
}
/*
* Update size info according to the ECC HW setting
*
* Assume SDRAM has been initialized by SPL or the host. To get the RAM size, we
* don't need to calculate the ECC size again but read from MCR04 and derive the
* size from its value.
*/
static void ast2600_sdrammc_update_size(struct dram_info *info)
{
struct ast2600_sdrammc_regs *regs = info->regs;
size_t hw_size;
size_t ram_size = SDRAM_MAX_SIZE;
u32 cap_param;
cap_param = (readl(&info->regs->config) & SDRAM_CONF_CAP_MASK) >> SDRAM_CONF_CAP_SHIFT;
switch (cap_param)
{
case SDRAM_CONF_CAP_2048M:
ram_size = 2048 * SDRAM_SIZE_1MB;
break;
case SDRAM_CONF_CAP_1024M:
ram_size = 1024 * SDRAM_SIZE_1MB;
break;
case SDRAM_CONF_CAP_512M:
ram_size = 512 * SDRAM_SIZE_1MB;
break;
case SDRAM_CONF_CAP_256M:
ram_size = 256 * SDRAM_SIZE_1MB;
break;
}
info->info.base = CONFIG_SYS_SDRAM_BASE;
info->info.size = ram_size - ast2600_sdrammc_get_vga_mem_size(info) - CONFIG_ASPEED_SSP_RERV_MEM;
if (0 == (readl(®s->config) & SDRAM_CONF_ECC_SETUP))
return;
hw_size = readl(®s->ecc_range_ctrl) & GENMASK(30, 20);
hw_size += (1 << 20);
info->info.size = hw_size;
}
static void ast2600_sdrammc_ecc_enable(struct dram_info *info, u32 conf_size_mb)
{
struct ast2600_sdrammc_regs *regs = info->regs;
size_t conf_size;
u32 reg;
conf_size = conf_size_mb * SDRAM_SIZE_1MB;
if (conf_size > info->info.size) {
printf("warning: ECC configured %dMB but actual size is %dMB\n",
conf_size_mb,
info->info.size / SDRAM_SIZE_1MB);
conf_size = info->info.size;
} else if (conf_size == 0) {
conf_size = info->info.size;
}
info->info.size = (((conf_size / 9) * 8) >> 20) << 20;
writel(((info->info.size >> 20) - 1) << 20, ®s->ecc_range_ctrl);
reg = readl(®s->config) | SDRAM_CONF_ECC_SETUP;
writel(reg, ®s->config);
writel(0, ®s->test_init_val);
writel(0x80000001, ®s->test_addr);
writel(0x221, ®s->ecc_test_ctrl);
while (0 == (readl(®s->ecc_test_ctrl) & BIT(12)))
;
writel(0, ®s->ecc_test_ctrl);
writel(BIT(31), ®s->intr_ctrl);
writel(0, ®s->intr_ctrl);
}
static int ast2600_sdrammc_probe(struct udevice *dev)
{
struct dram_info *priv = (struct dram_info *)dev_get_priv(dev);
struct ast2600_sdrammc_regs *regs = priv->regs;
struct udevice *clk_dev;
int ret;
volatile uint32_t reg;
/* find SCU base address from clock device */
ret = uclass_get_device_by_driver(UCLASS_CLK, DM_GET_DRIVER(aspeed_scu),
&clk_dev);
if (ret) {
debug("clock device not defined\n");
return ret;
}
priv->scu = devfdt_get_addr_ptr(clk_dev);
if (IS_ERR(priv->scu)) {
debug("%s(): can't get SCU\n", __func__);
return PTR_ERR(priv->scu);
}
reg = readl(priv->scu + AST_SCU_HANDSHAKE);
if (reg & SCU_SDRAM_INIT_READY_MASK) {
printf("already initialized, ");
setbits_le32(priv->scu + AST_SCU_HANDSHAKE, SCU_HANDSHAKE_MASK);
ast2600_sdrammc_update_size(priv);
return 0;
}
#ifdef AST2600_SDRAMMC_MANUAL_CLK
reg = readl(priv->scu + AST_SCU_MPLL);
reg &= ~(BIT(24) | GENMASK(22, 0));
reg |= (BIT(25) | BIT(23) | SCU_MPLL_FREQ_CFG);
writel(reg, priv->scu + AST_SCU_MPLL);
writel(SCU_MPLL_EXT_CFG, priv->scu + AST_SCU_MPLL_EXT);
udelay(100);
reg &= ~(BIT(25) | BIT(23));
writel(reg, priv->scu + AST_SCU_MPLL);
while (0 == (readl(priv->scu + AST_SCU_MPLL_EXT) & BIT(31)))
;
#else
ret = clk_get_by_index(dev, 0, &priv->ddr_clk);
if (ret) {
debug("DDR:No CLK\n");
return ret;
}
clk_set_rate(&priv->ddr_clk, priv->clock_rate);
#endif
#if 0
/* FIXME: enable the following code if reset-driver is ready */
struct reset_ctl reset_ctl;
ret = reset_get_by_index(dev, 0, &reset_ctl);
if (ret) {
debug("%s(): Failed to get reset signal\n", __func__);
return ret;
}
ret = reset_assert(&reset_ctl);
if (ret) {
debug("%s(): SDRAM reset failed: %u\n", __func__, ret);
return ret;
}
#endif
ast2600_sdrammc_unlock(priv);
ast2600_sdrammc_common_init(regs);
L_ast2600_sdramphy_train:
ast2600_sdrammc_init_ddr4(priv);
#if defined(CONFIG_FPGA_ASPEED) || defined(CONFIG_ASPEED_PALLADIUM)
ast2600_sdrammc_search_read_window(priv);
#endif
ret = ast2600_sdramphy_check_status(priv);
if (ret) {
printf("DDR4 PHY training fail, retrain\n");
goto L_ast2600_sdramphy_train;
}
ast2600_sdrammc_calc_size(priv);
#ifndef CONFIG_ASPEED_BYPASS_SELFTEST
ret = ast2600_sdrammc_test(priv);
if (ret) {
printf("%s: DDR4 init fail\n", __func__);
return -EINVAL;
}
#endif
if (dev_read_bool(dev, "aspeed,ecc-enabled")) {
u32 ecc_size;
ecc_size = dev_read_u32_default(dev, "aspeed,ecc-size-mb", 0);
ast2600_sdrammc_ecc_enable(priv, ecc_size);
}
setbits_le32(priv->scu + AST_SCU_HANDSHAKE, SCU_HANDSHAKE_MASK);
clrbits_le32(®s->intr_ctrl, MCR50_RESET_ALL_INTR);
ast2600_sdrammc_lock(priv);
return 0;
}