blob: 664f60af10cdc8f288f7c8f882e7e839e1f066b9 [file] [log] [blame]
Zheng Bao98fcc092011-03-27 16:39:58 +00001/*
2 * This file is part of the coreboot project.
3 *
Timothy Pearsoncbda5042015-08-02 21:29:20 -05004 * Copyright (C) 2015 Timothy Pearson <tpearson@raptorengineeringinc.com>, Raptor Engineering
Zheng Bao98fcc092011-03-27 16:39:58 +00005 * Copyright (C) 2010 Advanced Micro Devices, Inc.
Timothy Pearsonc3fcdcc2015-09-05 17:46:38 -05006 * Copyright (C) 2015 Timothy Pearson <tpearson@raptorengineeringinc.com>, Raptor Engineering
Zheng Bao98fcc092011-03-27 16:39:58 +00007 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; version 2 of the License.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
Patrick Georgib890a122015-03-26 15:17:45 +010019 * Foundation, Inc.
Zheng Bao98fcc092011-03-27 16:39:58 +000020 */
21
efdesign9800c8c4a2011-07-20 12:37:58 -060022#include <stdint.h>
23#include <arch/cpu.h>
24#include <arch/io.h>
efdesign9800c8c4a2011-07-20 12:37:58 -060025#include <console/console.h>
26#include <cpu/x86/msr.h>
Zheng Bao98fcc092011-03-27 16:39:58 +000027#include "sr5650.h"
28#include "cmn.h"
29
efdesign9800c8c4a2011-07-20 12:37:58 -060030/* space = 0: AX_INDXC, AX_DATAC
31 * space = 1: AX_INDXP, AX_DATAP
32 */
33static void alink_ax_indx(u32 space, u32 axindc, u32 mask, u32 val)
34{
35 u32 tmp;
36
37 /* read axindc to tmp */
38 outl(space << 30 | space << 3 | 0x30, AB_INDX);
39 outl(axindc, AB_DATA);
40 outl(space << 30 | space << 3 | 0x34, AB_INDX);
41 tmp = inl(AB_DATA);
42
43 tmp &= ~mask;
44 tmp |= val;
45
46 /* write tmp */
47 outl(space << 30 | space << 3 | 0x30, AB_INDX);
48 outl(axindc, AB_DATA);
49 outl(space << 30 | space << 3 | 0x34, AB_INDX);
50 outl(tmp, AB_DATA);
51}
52
53
Zheng Bao98fcc092011-03-27 16:39:58 +000054/* family 10 only, for reg > 0xFF */
Patrick Georgif8f00622012-05-05 15:50:17 +020055#if CONFIG_NORTHBRIDGE_AMD_AMDFAM10 || CONFIG_NORTHBRIDGE_AMD_AGESA_FAMILY10
Zheng Bao98fcc092011-03-27 16:39:58 +000056static void set_fam10_ext_cfg_enable_bits(device_t fam10_dev, u32 reg_pos, u32 mask,
57 u32 val)
58{
59 u32 reg_old, reg;
efdesign9800c8c4a2011-07-20 12:37:58 -060060 reg = reg_old = pci_read_config32(fam10_dev, reg_pos);
Zheng Bao98fcc092011-03-27 16:39:58 +000061 reg &= ~mask;
62 reg |= val;
63 if (reg != reg_old) {
efdesign9800c8c4a2011-07-20 12:37:58 -060064 pci_write_config32(fam10_dev, reg_pos, reg);
Zheng Bao98fcc092011-03-27 16:39:58 +000065 }
66}
67#else
68#define set_fam10_ext_cfg_enable_bits(a, b, c, d) do {} while (0)
69#endif
70
71
72/*
73* Compliant with CIM_33's ATINB_PrepareInit
74*/
75static void get_cpu_rev(void)
76{
77 u32 eax;
78
79 eax = cpuid_eax(1);
80 printk(BIOS_INFO, "get_cpu_rev EAX=0x%x.\n", eax);
81 if (eax <= 0xfff)
82 printk(BIOS_INFO, "CPU Rev is K8_Cx.\n");
83 else if (eax <= 0x10fff)
84 printk(BIOS_INFO, "CPU Rev is K8_Dx.\n");
85 else if (eax <= 0x20fff)
86 printk(BIOS_INFO, "CPU Rev is K8_Ex.\n");
87 else if (eax <= 0x40fff)
88 printk(BIOS_INFO, "CPU Rev is K8_Fx.\n");
89 else if (eax == 0x60fb1 || eax == 0x60f81) /*These two IDS are exception, they are G1. */
90 printk(BIOS_INFO, "CPU Rev is K8_G1.\n");
91 else if (eax <= 0X60FF0)
92 printk(BIOS_INFO, "CPU Rev is K8_G0.\n");
93 else if (eax <= 0x100000)
94 printk(BIOS_INFO, "CPU Rev is K8_G1.\n");
Dave Frodinda52aed2012-02-02 15:08:22 -070095 else if (eax <= 0x100fa0)
Zheng Bao98fcc092011-03-27 16:39:58 +000096 printk(BIOS_INFO, "CPU Rev is Fam 10.\n");
97 else
98 printk(BIOS_INFO, "CPU Rev is not recognized.\n");
99}
100
101/*
102CIM NB_GetRevisionInfo()
103*/
104static u8 get_nb_rev(device_t nb_dev)
105{
106 u8 reg;
107 reg = pci_read_config8(nb_dev, 0x8); /* copy from CIM, can't find in doc */
108 switch(reg & 3)
109 {
110 case 0x00:
111 reg = REV_SR5650_A11;
112 break;
113 case 0x02:
114 default:
115 reg = REV_SR5650_A12;
116 break;
117 }
118 return reg;
119}
120
121/*****************************************
122* Compliant with SR5650_CIMX_4_5_0 NBHT_InitHT().
123* Init HT link speed/width for sr5650 -- k8 link
1241: Check CPU Family, Family10?
1252: Get CPU's HT speed and width
1263: Decide HT mode 1 or 3 by HT Speed. >1GHz: HT3, else HT1
1274:
128*****************************************/
129static const u8 sr5650_ibias[] = {
130 /* 1, 3 are reserved. */
Elyes HAOUAS0f92f632014-07-27 19:37:31 +0200131 [0x0] = 0x44, /* 200MHz HyperTransport 1 only */
132 [0x2] = 0x44, /* 400MHz HyperTransport 1 only */
133 [0x4] = 0xB6, /* 600MHz HyperTransport 1 only */
134 [0x5] = 0x44, /* 800MHz HyperTransport 1 only */
135 [0x6] = 0x96, /* 1GHz HyperTransport 1 only */
Zheng Bao98fcc092011-03-27 16:39:58 +0000136 /* HT3 for Family 10 */
Elyes HAOUAS0f92f632014-07-27 19:37:31 +0200137 [0x7] = 0xB6, /* 1.2GHz HyperTransport 3 only */
138 [0x8] = 0x23, /* 1.4GHz HyperTransport 3 only */
139 [0x9] = 0x44, /* 1.6GHz HyperTransport 3 only */
140 [0xa] = 0x64, /* 1.8GHz HyperTransport 3 only */
141 [0xb] = 0x96, /* 2.0GHz HyperTransport 3 only */
142 [0xc] = 0xA6, /* 2.2GHz HyperTransport 3 only */
143 [0xd] = 0xB6, /* 2.4GHz HyperTransport 3 only */
144 [0xe] = 0xC6, /* 2.6GHz HyperTransport 3 only */
Zheng Bao98fcc092011-03-27 16:39:58 +0000145};
146
efdesign9800c8c4a2011-07-20 12:37:58 -0600147void sr5650_htinit(void)
Zheng Bao98fcc092011-03-27 16:39:58 +0000148{
149 /*
150 * About HT, it has been done in enumerate_ht_chain().
151 */
efdesign9800c8c4a2011-07-20 12:37:58 -0600152 device_t cpu_f0, sr5650_f0, clk_f1;
Zheng Bao98fcc092011-03-27 16:39:58 +0000153 u32 reg;
efdesign9800c8c4a2011-07-20 12:37:58 -0600154 u8 cpu_ht_freq, cpu_htfreq_max, ibias;
155 u8 sbnode;
156 u8 sblink;
157 u16 linkfreq_reg;
158 u16 linkfreqext_reg;
Zheng Bao98fcc092011-03-27 16:39:58 +0000159
Zheng Bao98fcc092011-03-27 16:39:58 +0000160 /************************
161 * get cpu's ht freq, in cpu's function 0, offset 0x88
162 * bit11-8, specifics the maximum operation frequency of the link's transmitter clock.
163 * The link frequency field (Frq) is cleared by cold reset. SW can write a nonzero
164 * value to this reg, and that value takes effect on the next warm reset or
165 * LDTSTOP_L disconnect sequence.
166 * please see the table sr5650_ibias about the value and its corresponding frequency.
167 ************************/
168 /* Link0, Link1 are for connection between P0 and P1.
Zheng Bao98fcc092011-03-27 16:39:58 +0000169 * TODO: Check the topology of the MP and NB. Or we just read the nbconfig? */
170 /* NOTE: In most cases, we only have one CPU. In that case, we should read 0x88. */
171
efdesign9800c8c4a2011-07-20 12:37:58 -0600172 /* Find out the node ID and the Link ID that
173 * connects to the Southbridge (system IO hub).
174 */
175 sbnode = (pci_read_config32(PCI_DEV(0, 0x18, 0), 0x60) >> 8) & 7;
176 sblink = (pci_read_config32(PCI_DEV(0, 0x18, 0), 0x64) >> 8) & 3; /* bit[10] sublink, bit[9,8] link. */
177 cpu_f0 = PCI_DEV(0, (0x18 + sbnode), 0);
178
179 /*
180 * link freq reg of Link0, 1, 2, 3 is 0x88, 0xA8, 0xC8, 0xE8 respectively
181 * link freq ext reg of Link0, 1, 2, 3 is 0x9C, 0xBC, 0xDC, 0xFC respectively
182 */
183 linkfreq_reg = 0x88 + (sblink << 5);
184 linkfreqext_reg = 0x9C + (sblink << 5);
185 reg = pci_read_config32(cpu_f0, linkfreq_reg);
186
Zheng Bao98fcc092011-03-27 16:39:58 +0000187 cpu_ht_freq = (reg & 0xf00) >> 8;
efdesign9800c8c4a2011-07-20 12:37:58 -0600188
189 /* Freq[4] is only valid for revision D and later processors */
190 if (cpuid_eax(1) >= 0x100F80) {
191 cpu_htfreq_max = 0x14;
192 cpu_ht_freq |= ((pci_read_config32(cpu_f0, linkfreqext_reg) & 0x01) << 4);
193 } else {
194 cpu_htfreq_max = 0x0F;
195 }
196
197 printk(BIOS_INFO, "sr5650_htinit: Node %x Link %x, HT freq=%x.\n",
198 sbnode, sblink, cpu_ht_freq);
Zheng Bao98fcc092011-03-27 16:39:58 +0000199 sr5650_f0 = PCI_DEV(0, 0, 0);
200
201 clk_f1 = PCI_DEV(0, 0, 1); /* We need to make sure the F1 is accessible. */
202
203 ibias = sr5650_ibias[cpu_ht_freq];
204
205 /* If HT freq>1GHz, we assume the CPU is fam10, else it is K8.
206 * Is it appropriate?
207 * Frequency is 1GHz, i.e. cpu_ht_freq is 6, in most cases.
208 * So we check 6 only, it would be faster. */
209 if ((cpu_ht_freq == 0x6) || (cpu_ht_freq == 0x5) || (cpu_ht_freq == 0x4) ||
210 (cpu_ht_freq == 0x2) || (cpu_ht_freq == 0x0)) {
211 printk(BIOS_INFO, "sr5650_htinit: HT1 mode\n");
212
213 /* HT1 mode, RPR 5.4.2 */
214 /* set IBIAS code */
215 set_nbcfg_enable_bits(clk_f1, 0xD8, 0x3FF, ibias);
216 /* Optimizes chipset HT transmitter drive strength */
217 set_htiu_enable_bits(sr5650_f0, 0x2A, 0x3, 0x3);
efdesign9800c8c4a2011-07-20 12:37:58 -0600218 } else if ((cpu_ht_freq > 0x6) && (cpu_ht_freq < cpu_htfreq_max)) {
Zheng Bao98fcc092011-03-27 16:39:58 +0000219 printk(BIOS_INFO, "sr5650_htinit: HT3 mode\n");
220
221 /* Enable Protocol checker */
222 set_htiu_enable_bits(sr5650_f0, 0x1E, 0xFFFFFFFF, 0x7FFFFFFC);
223
Patrick Georgif8f00622012-05-05 15:50:17 +0200224#if CONFIG_NORTHBRIDGE_AMD_AMDFAM10 || CONFIG_NORTHBRIDGE_AMD_AGESA_FAMILY10 /* save some spaces */
Zheng Bao98fcc092011-03-27 16:39:58 +0000225 /* HT3 mode, RPR 5.4.3 */
226 set_nbcfg_enable_bits(sr5650_f0, 0x9c, 0x3 << 16, 0);
227
228 /* set IBIAS code */
229 set_nbcfg_enable_bits(clk_f1, 0xD8, 0x3FF, ibias);
230 /* Optimizes chipset HT transmitter drive strength */
231 set_htiu_enable_bits(sr5650_f0, 0x2A, 0x3, 0x1);
232 /* Enables error-retry mode */
233 set_nbcfg_enable_bits(sr5650_f0, 0x44, 0x1, 0x1);
Martin Roth55e31a92014-12-16 20:53:49 -0700234 /* Enables scrambling and Disables command throttling */
Zheng Bao98fcc092011-03-27 16:39:58 +0000235 set_nbcfg_enable_bits(sr5650_f0, 0xac, (1 << 3) | (1 << 14), (1 << 3) | (1 << 14));
236 /* Enables transmitter de-emphasis */
237 set_nbcfg_enable_bits(sr5650_f0, 0xa4, 1 << 31, 1 << 31);
Martin Roth55e31a92014-12-16 20:53:49 -0700238 /* Enables transmitter de-emphasis level */
Zheng Bao98fcc092011-03-27 16:39:58 +0000239 /* Sets training 0 time */
240 set_nbcfg_enable_bits(sr5650_f0, 0xa0, 0x3F, 0x14);
241
242 /* Enables strict TM4 detection */
243 set_htiu_enable_bits(sr5650_f0, 0x15, 0x1 << 22, 0x1 << 22);
244
efdesign9800c8c4a2011-07-20 12:37:58 -0600245 /* Optimizes chipset HT transmitter drive strength */
246 set_htiu_enable_bits(sr5650_f0, 0x2A, 0x3 << 0, 0x1 << 0);
247
Zheng Bao98fcc092011-03-27 16:39:58 +0000248 /* HyperTransport 3 Processor register settings to be done in northbridge */
efdesign9800c8c4a2011-07-20 12:37:58 -0600249
Zheng Bao98fcc092011-03-27 16:39:58 +0000250 /* Enables error-retry mode */
efdesign9800c8c4a2011-07-20 12:37:58 -0600251 set_fam10_ext_cfg_enable_bits(cpu_f0, 0x130 + (sblink << 2), 1 << 0, 1 << 0);
252
Zheng Bao98fcc092011-03-27 16:39:58 +0000253 /* Enables scrambling */
efdesign9800c8c4a2011-07-20 12:37:58 -0600254 set_fam10_ext_cfg_enable_bits(cpu_f0, 0x170 + (sblink << 2), 1 << 3, 1 << 3);
255
Zheng Bao98fcc092011-03-27 16:39:58 +0000256 /* Enables transmitter de-emphasis
efdesign9800c8c4a2011-07-20 12:37:58 -0600257 * This depends on the PCB design and the trace
258 */
Zheng Bao98fcc092011-03-27 16:39:58 +0000259 /* Disables command throttling */
260 set_fam10_ext_cfg_enable_bits(cpu_f0, 0x168, 1 << 10, 1 << 10);
efdesign9800c8c4a2011-07-20 12:37:58 -0600261
Zheng Bao98fcc092011-03-27 16:39:58 +0000262 /* Sets Training 0 Time. See T0Time table for encodings */
Martin Roth55e31a92014-12-16 20:53:49 -0700263 /* AGESA have set it to recommended value already
efdesign9800c8c4a2011-07-20 12:37:58 -0600264 * The recommended values are 14h(2us) if F0x[18C:170][LS2En]=0
265 * and 26h(12us) if F0x[18C:170][LS2En]=1
266 */
267 //set_fam10_ext_cfg_enable_bits(cpu_f0, 0x16C, 0x3F, 0x26);
268
Zheng Bao98fcc092011-03-27 16:39:58 +0000269 /* HT Buffer Allocation for Ganged Links!!! */
Stefan Reinauer8ada1522012-11-16 13:34:48 -0800270#endif /* CONFIG_NORTHBRIDGE_AMD_AMDFAM10 || CONFIG_NORTHBRIDGE_AMD_AGESA_FAMILY10 */
Zheng Bao98fcc092011-03-27 16:39:58 +0000271 }
272}
273
Patrick Georgif8f00622012-05-05 15:50:17 +0200274#if CONFIG_NORTHBRIDGE_AMD_AMDFAM10 || CONFIG_NORTHBRIDGE_AMD_AGESA_FAMILY10 /* save some spaces */
Zheng Bao98fcc092011-03-27 16:39:58 +0000275void fam10_optimization(void)
276{
277 device_t cpu_f0, cpu_f2, cpu_f3;
278 device_t cpu1_f0, cpu1_f2, cpu1_f3;
279 msr_t msr;
280 u32 val;
281
282 printk(BIOS_INFO, "fam10_optimization()\n");
283 msr = rdmsr(0xC001001F);
284 msr.hi |= 1 << 14; /* bit 46: EnableCf8ExtCfg */
285 wrmsr(0xC001001F, msr);
286
287 cpu_f0 = PCI_DEV(0, 0x18, 0);
288 cpu_f2 = PCI_DEV(0, 0x18, 2);
289 cpu_f3 = PCI_DEV(0, 0x18, 3);
290 cpu1_f0 = PCI_DEV(0, 0x19, 0);
291 cpu1_f2 = PCI_DEV(0, 0x19, 2);
292 cpu1_f3 = PCI_DEV(0, 0x19, 3);
293
294 val = pci_read_config32(cpu1_f3, 0x8C);
295 val |= 1 << 14;
296 pci_write_config32(cpu1_f3, 0x8C, val);
297
298 /* TODO: HT Buffer Allocation for (un)Ganged Links */
299 /* rpr Table 5-11, 5-12 */
300}
301#else
302#define fam10_optimization() do{}while(0)
Stefan Reinauer8ada1522012-11-16 13:34:48 -0800303#endif /* CONFIG_NORTHBRIDGE_AMD_AMDFAM10 || CONFIG_NORTHBRIDGE_AMD_AGESA_FAMILY10 */
Zheng Bao98fcc092011-03-27 16:39:58 +0000304
305/*****************************************
306* Compliant with CIM_33's ATINB_PCICFG_POR_TABLE
307*****************************************/
308static void sr5650_por_pcicfg_init(device_t nb_dev)
309{
310 /* enable PCI Memory Access */
311 set_nbcfg_enable_bits_8(nb_dev, 0x04, (u8)(~0xFD), 0x02);
312
313 set_nbcfg_enable_bits(nb_dev, 0x14, ~0, 0x0);
314 set_nbcfg_enable_bits(nb_dev, 0x18, ~0, 0x0);
315 set_nbcfg_enable_bits(nb_dev, 0x20, ~0, 0x0);
316 set_nbcfg_enable_bits(nb_dev, 0x84, ~0, 0x03000010);
317
318 /* Reg4Ch[1]=1 (APIC_ENABLE) force cpu request with address 0xFECx_xxxx to south-bridge
319 * Reg4Ch[6]=1 (BMMsgEn) enable BM_Set message generation
320 * BMMsgEn */
321 set_nbcfg_enable_bits(nb_dev, 0x4C, (u8)(~0x00), 0x52042);
322
323 set_nbcfg_enable_bits(nb_dev, 0x7C, (u8)(~0), 0x0);
324
325 /* Reg8Ch[10:9] = 0x3 Enables Gfx Debug BAR,
326 * force this BAR as mem type in sr5650_gfx.c */
327 //set_nbcfg_enable_bits_8(nb_dev, 0x8D, (u8)(~0xFF), 0x03);
328}
329
330/*****************************************
331* Compliant with CIM_33's ATINB_MISCIND_POR_TABLE
332* Compliant with CIM_33's MISC_INIT_TBL
333*****************************************/
334static void sr5650_por_misc_index_init(device_t nb_dev)
335{
336 /* disable IOMMU */
337 set_nbmisc_enable_bits(nb_dev, 0x75, 0x1, 0x0);
338 /* NBMISCIND:0x75[29]= 1 Device ID for hotplug and PME message */
339 set_nbmisc_enable_bits(nb_dev, 0x75, 1 << 29, 1 << 29);
340 set_nbmisc_enable_bits(nb_dev, 0x75, 1 << 9, 1 << 9); /* no doc reference, comply with BTS */
341 set_nbmisc_enable_bits(nb_dev, 0x46, 1 << 7, 1 << 7); /* bit7 BTS fail*/
342 /*P2P*/
343 set_nbmisc_enable_bits(nb_dev, 0x48, 1 << 8, 0);
344
345 set_nbmisc_enable_bits(nb_dev, 0x2A, 1 << 15 | 1 << 17, 1 << 17);
346 set_nbmisc_enable_bits(nb_dev, 0x2B, 1 << 15 | 1 << 27, 1 << 15 | 1 << 27);
347 set_nbmisc_enable_bits(nb_dev, 0x2C, 1 << 0 | 1 << 1 | 1 << 5 | 1 << 4 | 1 << 10, 1 << 0 | 1 << 1 | 1 << 5);
348 set_nbmisc_enable_bits(nb_dev, 0x32, 0x3F << 20, 0x2A << 20);
efdesign9800c8c4a2011-07-20 12:37:58 -0600349 set_nbmisc_enable_bits(nb_dev, 0x34, 1 << 7 | 1 << 15 | 1 << 23, 0);
Zheng Bao98fcc092011-03-27 16:39:58 +0000350 set_nbmisc_enable_bits(nb_dev, 0x35, 0x3F << 26, 0x2A << 26);
351 set_nbmisc_enable_bits(nb_dev, 0x37, 0xfff << 20, 0xddd << 20);
352 set_nbmisc_enable_bits(nb_dev, 0x37, 7 << 11, 0);
353 /* PCIE CDR setting */
354 set_nbmisc_enable_bits(nb_dev, 0x38, 0xFFFFFFFF, 0xC0C0C0);
Zheng Bao98fcc092011-03-27 16:39:58 +0000355 set_nbmisc_enable_bits(nb_dev, 0x22, 0xFFFFFFFF, (1 << 27) | (0x8 << 12) | (0x8 << 16) | (0x8 << 20));
356 set_nbmisc_enable_bits(nb_dev, 0x22, 1 << 1 | 1 << 2 | 1 << 6 | 1 << 7, 1 << 1 | 1 << 2 | 1 << 6 | 1 << 7);
357
358 set_nbmisc_enable_bits(nb_dev, 0x07, 0xF << 4 | 1 << 24, 0xF << 4 | 1 << 24);
359 set_nbmisc_enable_bits(nb_dev, 0x67, 1 << 10 | 1 << 11 | 1 << 26, 1 << 11);
360 set_nbmisc_enable_bits(nb_dev, 0x67, 3 << 21, 3 << 21);
361 set_nbmisc_enable_bits(nb_dev, 0x68, 1 << 8 | 1 << 9 | 1 << 19, 1 << 9 | 1 << 19);
362 set_nbmisc_enable_bits(nb_dev, 0x6B, 3 << 3 | 1 << 15 | 0x1F << 27, 3 << 3 | 1 << 15 | 0x1F << 27);
363 set_nbmisc_enable_bits(nb_dev, 0x6C, 0xFFFFFFFF, 0x41183000);
364
365 /* NB_MISC_IND_WR_EN + IOC_PCIE_CNTL
366 * Block non-snoop DMA request if PMArbDis is set.
367 * Set BMSetDis */
368 set_nbmisc_enable_bits(nb_dev, 0x0B, 0xFFFFFFFF, 0x00400180);
369 set_nbmisc_enable_bits(nb_dev, 0x01, 0xFFFFFFFF, 0x00000310);
370
371 /* NBCFG (NBMISCIND 0x0): NB_CNTL -
372 * HIDE_NB_AGP_CAP ([0], default=1)HIDE
373 * HIDE_P2P_AGP_CAP ([1], default=1)HIDE
374 * HIDE_NB_GART_BAR ([2], default=1)HIDE
375 * AGPMODE30 ([4], default=0)DISABLE
376 * AGP30ENCHANCED ([5], default=0)DISABLE
377 * HIDE_AGP_CAP ([8], default=1)ENABLE */
378 set_nbmisc_enable_bits(nb_dev, 0x00, 0x0000FFFF, 0 << 0 | 1 << 1 | 1 << 2 | 0 << 6);
379
380 /* IOC_LAT_PERF_CNTR_CNTL */
381 set_nbmisc_enable_bits(nb_dev, 0x30, 0xFF, 0x00);
382 //set_nbmisc_enable_bits(nb_dev, 0x31, 0xFF, 0x00);
383
384 /* IOC_LAT_PERF_CNTR_OUT */
385 /* IOC_JTAG_CNTL */
386 set_nbmisc_enable_bits(nb_dev, 0x47, 0xFFFFFFFF, 0x0000000B);
387
388 set_nbmisc_enable_bits(nb_dev, 0x12, 0xFFFFFFFF, 0x00FB5555);
efdesign9800c8c4a2011-07-20 12:37:58 -0600389 set_nbmisc_enable_bits(nb_dev, 0x0C, 0xFFFFFFFF, 0x001F37FC);
Zheng Bao98fcc092011-03-27 16:39:58 +0000390 set_nbmisc_enable_bits(nb_dev, 0x15, 0xFFFFFFFF, 0x0);
391
392 /* NB_PROG_DEVICE_REMAP */
393 set_nbmisc_enable_bits(nb_dev, 0x20, 0xFFFFFFFF, 0x0);
394 set_nbmisc_enable_bits(nb_dev, 0x21, 0xFFFFFFFF, 0x0);
395
396 /* Compliant with CIM_33's MISC_INIT_TBL, except Hide NB_BAR3_PCIE
397 * Enable access to DEV8
398 * Enable setPower message for all ports
399 */
400 set_nbmisc_enable_bits(nb_dev, 0x51, 1 << 20 | 1 << 8, 1 << 20 | 1 << 8);
401 set_nbmisc_enable_bits(nb_dev, 0x53, 1 << 20 | 1 << 8, 1 << 20 | 1 << 8);
402 set_nbmisc_enable_bits(nb_dev, 0x55, 1 << 20 | 1 << 8, 1 << 20 | 1 << 8);
403 set_nbmisc_enable_bits(nb_dev, 0x57, 1 << 20 | 1 << 8, 1 << 20 | 1 << 8);
404 set_nbmisc_enable_bits(nb_dev, 0x59, 1 << 20 | 1 << 8, 1 << 20 | 1 << 8);
405 set_nbmisc_enable_bits(nb_dev, 0x5B, 1 << 20 | 1 << 8, 1 << 20 | 1 << 8);
406 set_nbmisc_enable_bits(nb_dev, 0x5D, 1 << 20 | 1 << 8, 1 << 20 | 1 << 8);
407 set_nbmisc_enable_bits(nb_dev, 0x5F, 1 << 20 | 1 << 8, 1 << 20 | 1 << 8);
408 set_nbmisc_enable_bits(nb_dev, 0x61, 1 << 20 | 1 << 8, 1 << 20 | 1 << 8);
409 set_nbmisc_enable_bits(nb_dev, 0x63, 1 << 20 | 1 << 8, 1 << 20 | 1 << 8);
410
411 /* Disable bus-master trigger event from SB and Enable set_slot_power message to SB */
412 set_nbmisc_enable_bits(nb_dev, 0x0B, 0xffffffff, 0x400180);
413}
414
415/*****************************************
416* Some setting is from rpr. Some is from CIMx.
417*****************************************/
418static void sr5650_por_htiu_index_init(device_t nb_dev)
419{
420 device_t cpu_f0;
421
422 cpu_f0 = PCI_DEV(0, 0x18, 0);
423
424 set_htiu_enable_bits(nb_dev, 0x1C, 0x1<<17, 0x1<<17);
425 set_htiu_enable_bits(nb_dev, 0x05, 0x1<<8, 0x1<<8);
426 set_htiu_enable_bits(nb_dev, 0x06, 0x1<<0, 0x0<<0);
427 set_htiu_enable_bits(nb_dev, 0x06, 0x1<<1, 0x1<<1);
428 set_htiu_enable_bits(nb_dev, 0x06, 0x1<<9, 0x1<<9);
429 set_htiu_enable_bits(nb_dev, 0x06, 0x1<<13, 0x1<<13);
430 set_htiu_enable_bits(nb_dev, 0x06, 0x1<<17, 0x1<<17);
431 set_htiu_enable_bits(nb_dev, 0x06, 0x3<<15, 0x3<<15);
432 set_htiu_enable_bits(nb_dev, 0x06, 0x1<<25, 0x1<<25);
433 set_htiu_enable_bits(nb_dev, 0x06, 0x1<<30, 0x1<<30);
434
435 set_htiu_enable_bits(nb_dev, 0x07, 0x1 << 0 | 0x1 << 1 | 0x1 << 2, 0x1 << 0);
436
437 set_htiu_enable_bits(nb_dev, 0x16, 0x1<<11, 0x1<<11);
438
439 set_htiu_enable_bits(nb_dev, 0x1D, 0x1<<2, 0x1<<2);
440 set_htiu_enable_bits(nb_dev, 0x1D, 0x1<<4, 0x1<<4);
441
Zheng Bao98fcc092011-03-27 16:39:58 +0000442 axindxc_reg(0x10, 1 << 9, 1 << 9);
443 set_pcie_enable_bits(nb_dev, 0x10 | 5 << 16, 1 << 9, 1 << 9);
444 set_htiu_enable_bits(nb_dev, 0x06, 0x1<<26, 0x1<<26);
445 set_htiu_enable_bits(nb_dev, 0x16, 0x1<<10, 0x1<<10);
446
447 /* Enable BIAS circuit for all lanes. */
448 //set_htiu_enable_bits(nb_dev, 0x2B, 0xF<<28, 0xF<<28);
449 set_htiu_enable_bits(nb_dev, 0x2B, 0xF << 28, 0);
450 set_htiu_enable_bits(nb_dev, 0x05, 0xFFFFFF, 0xFF558);
451 set_htiu_enable_bits(nb_dev, 0x06, 0xFFFFFFFE, 0x04203A202);
452 set_htiu_enable_bits(nb_dev, 0x0C, 0xFFFF, 0x101);
453
454 /* A21 only */
455 //if (REV_SR5650_A21 == get_nb_rev(nb_dev)) {
456 if (get_nb_rev(nb_dev) > REV_SR5650_A11) {
457 set_htiu_enable_bits(nb_dev, 0x05, 0x3<<3| 1<<6 | 1<<10 | 0xFF<<12, 0x3<<3 | 1<<6 | 1<<10 | 0xFF<<12);
458 set_htiu_enable_bits(nb_dev, 0x1D, 1 << 2 | 1 << 4, 0);
459 }
460}
461
462/*****************************************
463* Compliant with CIM_33's ATINB_POR_INIT_JMPDI
464* Configure SR5650 registers to power-on default RPR.
465* POR: Power On Reset
466* RPR: Register Programming Requirements
467*****************************************/
468static void sr5650_por_init(device_t nb_dev)
469{
470 printk(BIOS_INFO, "sr5650_por_init\n");
471 /* ATINB_PCICFG_POR_TABLE, initialize the values for sr5650 PCI Config registers */
472 sr5650_por_pcicfg_init(nb_dev);
473
474 /* ATINB_MISCIND_POR_TABLE */
475 sr5650_por_misc_index_init(nb_dev);
476
477 /* ATINB_HTIUNBIND_POR_TABLE */
478 sr5650_por_htiu_index_init(nb_dev);
479
480 /* ATINB_CLKCFG_PORT_TABLE */
481 /* sr5650 A11 SB Link full swing? */
482}
483
484/* enable CFG access to Dev8, which is the SB P2P Bridge */
efdesign9800c8c4a2011-07-20 12:37:58 -0600485void enable_sr5650_dev8(void)
Zheng Bao98fcc092011-03-27 16:39:58 +0000486{
487 set_nbmisc_enable_bits(PCI_DEV(0, 0, 0), 0x00, 1 << 6, 1 << 6);
488}
489
490/*
491* Compliant with CIM_33's AtiNBInitEarlyPost (AtiInitNBBeforePCIInit).
492*/
efdesign9800c8c4a2011-07-20 12:37:58 -0600493void sr5650_before_pci_init(void)
Zheng Bao98fcc092011-03-27 16:39:58 +0000494{
495}
496
497/*
498* The calling sequence is same as CIM.
499*/
efdesign9800c8c4a2011-07-20 12:37:58 -0600500void sr5650_early_setup(void)
Zheng Bao98fcc092011-03-27 16:39:58 +0000501{
502 device_t nb_dev = PCI_DEV(0, 0, 0);
503 printk(BIOS_INFO, "sr5650_early_setup()\n");
504
505 /*ATINB_PrepareInit */
506 get_cpu_rev();
507
Timothy Pearsonc3fcdcc2015-09-05 17:46:38 -0500508 uint8_t revno = get_nb_rev(nb_dev);
509 switch (revno) { /* PCIEMiscInit */
Zheng Bao98fcc092011-03-27 16:39:58 +0000510 case REV_SR5650_A11:
511 printk(BIOS_INFO, "NB Revision is A11.\n");
512 break;
513 case REV_SR5650_A12:
514 printk(BIOS_INFO, "NB Revision is A12.\n");
515 break;
516 case REV_SR5650_A21:
517 printk(BIOS_INFO, "NB Revision is A21.\n");
518 break;
Timothy Pearsonc3fcdcc2015-09-05 17:46:38 -0500519 default:
520 printk(BIOS_INFO, "NB Revision is %02x (Unrecognized).\n", revno);
521 break;
Zheng Bao98fcc092011-03-27 16:39:58 +0000522 }
523
Zheng Bao98fcc092011-03-27 16:39:58 +0000524 fam10_optimization();
Zheng Bao98fcc092011-03-27 16:39:58 +0000525 sr5650_por_init(nb_dev);
526}
527
528/**
efdesign9800c8c4a2011-07-20 12:37:58 -0600529 * @brief disable GPP1 Port0,1, GPP2, GPP3a Port0,1,2,3,4,5, GPP3b
Zheng Bao98fcc092011-03-27 16:39:58 +0000530 *
531 */
efdesign9800c8c4a2011-07-20 12:37:58 -0600532void sr5650_disable_pcie_bridge(void)
Zheng Bao98fcc092011-03-27 16:39:58 +0000533{
534 u32 mask;
535 u32 reg;
536 device_t nb_dev = PCI_DEV(0, 0, 0);
537
efdesign9800c8c4a2011-07-20 12:37:58 -0600538 mask = (1 << 2) | (1 << 3); /*GPP1*/
539 mask |= (1 << 4) | (1 << 5) | (1 << 6) | (1 << 7) | (1 << 16) | (1 << 17); /*GPP3a*/
540 mask |= (1 << 18) | (1 << 19); /*GPP2*/
541 mask |= (1 << 20); /*GPP3b*/
Zheng Bao98fcc092011-03-27 16:39:58 +0000542 reg = mask;
543 set_nbmisc_enable_bits(nb_dev, 0x0c, mask, reg);
544}