summaryrefslogtreecommitdiff
path: root/src/cpu/dmp/vortex86ex/biosdata_ex.inc
blob: 5ed17c67d1efb0f11efab410d98ae54d7980fb01 (plain)
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
/*
 * This file is part of the coreboot project.
 *
 * Copyright (C) 2013 DMP Electronics Inc.
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; version 2 of the License.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 */

#include "config.h"

/*
PLL Freq = 25 * NS /(MS * 2^RS)
CPU Freq = PLL/(CPU_DIV+2)
DRAM Freq = PLL/2(DRAM_DIV+1)

DDR3
CPU/DRAM/PCI            B6 B7 BB BC BD BF
200/200/33              30 03 0F 02 8F 07
300/300/33              48 03 0F 02 1F 07
300/300/33              48 03 0F 3A DF 07          ; write leveling disable, cpu bypass disable
300/300/33              48 03 0F 22 3F 07          ; cpu bypass disable
300/300/100             48 03 23 02 7F 07
400/200/33              60 43 0F 02 3F 07          ; without 200MHz timing, so set 300MHz timing
400/200/100             60 43 23 02 4F 07
400/400/33              60 03 0F 02 BF 09
500/250/33              50 42 0F 02 DF 07
500/500/33              78 03 0F 02 4F 09
400/300/33              90 53 0F 02 3F 07
400/300/33              90 53 0F 1A DF 07          ; write leveling/gate training disable
400/300/100             90 53 23 02 9F 07
444/333/33              A0 53 0F 02 5F 08
466/350/33              A8 53 0F 02 DF 09
500/375/33              B4 53 0F 02 AF 09
*/

#if CONFIG_PLL_200_200_33
	// 200/200/33              30 03 0F 02 8F 07
	byte_fffb6 = 0x30
	byte_fffb7 = 0x03
	byte_fffbb = 0x0f
	byte_fffbc = 0x02
	byte_fffbe = 0xff
	byte_fffbf = 0x07
#elif CONFIG_PLL_300_300_33
	// 300/300/33              48 03 0F 02 1F 07
	byte_fffb6 = 0x48
	byte_fffb7 = 0x03
	byte_fffbb = 0x0f
	byte_fffbc = 0x02
	byte_fffbe = 0xff
	byte_fffbf = 0x07
#elif CONFIG_PLL_300_300_100
	// 300/300/100             48 03 23 02 7F 07
	byte_fffb6 = 0x48
	byte_fffb7 = 0x03
	byte_fffbb = 0x23
	byte_fffbc = 0x02
	byte_fffbe = 0xff
	byte_fffbf = 0x07
#elif CONFIG_PLL_400_200_33
	// 400/200/33              60 43 0F 02 3F 07          ; without 200MHz timing, so set 300MHz timing
	byte_fffb6 = 0x60
	byte_fffb7 = 0x43
	byte_fffbb = 0x0f
	byte_fffbc = 0x02
	byte_fffbe = 0xff
	byte_fffbf = 0x07
#elif CONFIG_PLL_400_200_100
	// 400/200/100             60 43 23 02 4F 07
	byte_fffb6 = 0x60
	byte_fffb7 = 0x43
	byte_fffbb = 0x23
	byte_fffbc = 0x02
	byte_fffbe = 0xff
	byte_fffbf = 0x07
#elif CONFIG_PLL_400_400_33
	// 400/400/33              60 03 0F 02 BF 09
	byte_fffb6 = 0x60
	byte_fffb7 = 0x03
	byte_fffbb = 0x0f
	byte_fffbc = 0x02
	byte_fffbe = 0xff
	byte_fffbf = 0x09
#elif CONFIG_PLL_500_250_33
	// 500/250/33              50 42 0F 02 DF 07
	byte_fffb6 = 0x50
	byte_fffb7 = 0x42
	byte_fffbb = 0x0f
	byte_fffbc = 0x02
	byte_fffbe = 0xff
	byte_fffbf = 0x07
#elif CONFIG_PLL_500_500_33
	// 500/500/33              78 03 0F 02 4F 09
	byte_fffb6 = 0x78
	byte_fffb7 = 0x03
	byte_fffbb = 0x0f
	byte_fffbc = 0x02
	byte_fffbe = 0xff
	byte_fffbf = 0x09
#elif CONFIG_PLL_400_300_33
	// 400/300/33              90 53 0F 02 3F 07
	byte_fffb6 = 0x90
	byte_fffb7 = 0x53
	byte_fffbb = 0x0f
	byte_fffbc = 0x02
	byte_fffbe = 0xff
	byte_fffbf = 0x07
#elif CONFIG_PLL_400_300_100
	// 400/300/100             90 53 23 02 9F 07
	byte_fffb6 = 0x90
	byte_fffb7 = 0x53
	byte_fffbb = 0x23
	byte_fffbc = 0x02
	byte_fffbe = 0xff
	byte_fffbf = 0x07
#elif CONFIG_PLL_444_333_33
	// 444/333/33              A0 53 0F 02 5F 08
	byte_fffb6 = 0xa0
	byte_fffb7 = 0x53
	byte_fffbb = 0x0f
	byte_fffbc = 0x02
	byte_fffbe = 0xff
	byte_fffbf = 0x08
#elif CONFIG_PLL_466_350_33
	// 466/350/33              A8 53 0F 02 DF 09
	byte_fffb6 = 0xa8
	byte_fffb7 = 0x53
	byte_fffbb = 0x0f
	byte_fffbc = 0x02
	byte_fffbe = 0xff
	byte_fffbf = 0x09
#elif CONFIG_PLL_500_375_33
	// 500/375/33              B4 53 0F 02 AF 09
	byte_fffb6 = 0xb4
	byte_fffb7 = 0x53
	byte_fffbb = 0x0f
	byte_fffbc = 0x02
	byte_fffbe = 0xff
	byte_fffbf = 0x09
#else
	#error Error Strap PLL config.
#endif

tmp_sum = byte_fffb6 + byte_fffb7 + byte_fffbb + byte_fffbc
pll_checksum = ((tmp_sum >> 8) & 0x3) + ((tmp_sum >> 4) & 0x0f) + (tmp_sum & 0x0f)

byte_fffbd = ((pll_checksum & 0x0f) << 4) | 0x0f

	.section ".a9123_crossbar_config", "a", @progbits

        .skip 0x3fdf0 - 0x3fd00, 0xff

.previous

	.section ".a9123_strap_1", "a", @progbits

	.byte byte_fffb6, byte_fffb7

.previous

	.section ".a9123_strap_2", "a", @progbits

	.byte byte_fffbb, byte_fffbc, byte_fffbd, byte_fffbe, byte_fffbf

.previous