blob: 64c69e5e00b26d5b65880162426fbcdf587f89c1 [file] [log] [blame]
Zheng Bao98fcc092011-03-27 16:39:58 +00001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2010 Advanced Micro Devices, Inc.
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; version 2 of the License.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
Paul Menzela46a7122013-02-23 18:37:27 +010017 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Zheng Bao98fcc092011-03-27 16:39:58 +000018 */
19
efdesign9800c8c4a2011-07-20 12:37:58 -060020#include <stdint.h>
21#include <arch/cpu.h>
22#include <arch/io.h>
efdesign9800c8c4a2011-07-20 12:37:58 -060023#include <console/console.h>
24#include <cpu/x86/msr.h>
Zheng Bao98fcc092011-03-27 16:39:58 +000025#include "sr5650.h"
26#include "cmn.h"
27
efdesign9800c8c4a2011-07-20 12:37:58 -060028/* space = 0: AX_INDXC, AX_DATAC
29 * space = 1: AX_INDXP, AX_DATAP
30 */
31static void alink_ax_indx(u32 space, u32 axindc, u32 mask, u32 val)
32{
33 u32 tmp;
34
35 /* read axindc to tmp */
36 outl(space << 30 | space << 3 | 0x30, AB_INDX);
37 outl(axindc, AB_DATA);
38 outl(space << 30 | space << 3 | 0x34, AB_INDX);
39 tmp = inl(AB_DATA);
40
41 tmp &= ~mask;
42 tmp |= val;
43
44 /* write tmp */
45 outl(space << 30 | space << 3 | 0x30, AB_INDX);
46 outl(axindc, AB_DATA);
47 outl(space << 30 | space << 3 | 0x34, AB_INDX);
48 outl(tmp, AB_DATA);
49}
50
51
Zheng Bao98fcc092011-03-27 16:39:58 +000052/* family 10 only, for reg > 0xFF */
Patrick Georgif8f00622012-05-05 15:50:17 +020053#if CONFIG_NORTHBRIDGE_AMD_AMDFAM10 || CONFIG_NORTHBRIDGE_AMD_AGESA_FAMILY10
Zheng Bao98fcc092011-03-27 16:39:58 +000054static void set_fam10_ext_cfg_enable_bits(device_t fam10_dev, u32 reg_pos, u32 mask,
55 u32 val)
56{
57 u32 reg_old, reg;
efdesign9800c8c4a2011-07-20 12:37:58 -060058 reg = reg_old = pci_read_config32(fam10_dev, reg_pos);
Zheng Bao98fcc092011-03-27 16:39:58 +000059 reg &= ~mask;
60 reg |= val;
61 if (reg != reg_old) {
efdesign9800c8c4a2011-07-20 12:37:58 -060062 pci_write_config32(fam10_dev, reg_pos, reg);
Zheng Bao98fcc092011-03-27 16:39:58 +000063 }
64}
65#else
66#define set_fam10_ext_cfg_enable_bits(a, b, c, d) do {} while (0)
67#endif
68
69
70/*
71* Compliant with CIM_33's ATINB_PrepareInit
72*/
73static void get_cpu_rev(void)
74{
75 u32 eax;
76
77 eax = cpuid_eax(1);
78 printk(BIOS_INFO, "get_cpu_rev EAX=0x%x.\n", eax);
79 if (eax <= 0xfff)
80 printk(BIOS_INFO, "CPU Rev is K8_Cx.\n");
81 else if (eax <= 0x10fff)
82 printk(BIOS_INFO, "CPU Rev is K8_Dx.\n");
83 else if (eax <= 0x20fff)
84 printk(BIOS_INFO, "CPU Rev is K8_Ex.\n");
85 else if (eax <= 0x40fff)
86 printk(BIOS_INFO, "CPU Rev is K8_Fx.\n");
87 else if (eax == 0x60fb1 || eax == 0x60f81) /*These two IDS are exception, they are G1. */
88 printk(BIOS_INFO, "CPU Rev is K8_G1.\n");
89 else if (eax <= 0X60FF0)
90 printk(BIOS_INFO, "CPU Rev is K8_G0.\n");
91 else if (eax <= 0x100000)
92 printk(BIOS_INFO, "CPU Rev is K8_G1.\n");
Dave Frodinda52aed2012-02-02 15:08:22 -070093 else if (eax <= 0x100fa0)
Zheng Bao98fcc092011-03-27 16:39:58 +000094 printk(BIOS_INFO, "CPU Rev is Fam 10.\n");
95 else
96 printk(BIOS_INFO, "CPU Rev is not recognized.\n");
97}
98
99/*
100CIM NB_GetRevisionInfo()
101*/
102static u8 get_nb_rev(device_t nb_dev)
103{
104 u8 reg;
105 reg = pci_read_config8(nb_dev, 0x8); /* copy from CIM, can't find in doc */
106 switch(reg & 3)
107 {
108 case 0x00:
109 reg = REV_SR5650_A11;
110 break;
111 case 0x02:
112 default:
113 reg = REV_SR5650_A12;
114 break;
115 }
116 return reg;
117}
118
119/*****************************************
120* Compliant with SR5650_CIMX_4_5_0 NBHT_InitHT().
121* Init HT link speed/width for sr5650 -- k8 link
1221: Check CPU Family, Family10?
1232: Get CPU's HT speed and width
1243: Decide HT mode 1 or 3 by HT Speed. >1GHz: HT3, else HT1
1254:
126*****************************************/
127static const u8 sr5650_ibias[] = {
128 /* 1, 3 are reserved. */
Elyes HAOUAS0f92f632014-07-27 19:37:31 +0200129 [0x0] = 0x44, /* 200MHz HyperTransport 1 only */
130 [0x2] = 0x44, /* 400MHz HyperTransport 1 only */
131 [0x4] = 0xB6, /* 600MHz HyperTransport 1 only */
132 [0x5] = 0x44, /* 800MHz HyperTransport 1 only */
133 [0x6] = 0x96, /* 1GHz HyperTransport 1 only */
Zheng Bao98fcc092011-03-27 16:39:58 +0000134 /* HT3 for Family 10 */
Elyes HAOUAS0f92f632014-07-27 19:37:31 +0200135 [0x7] = 0xB6, /* 1.2GHz HyperTransport 3 only */
136 [0x8] = 0x23, /* 1.4GHz HyperTransport 3 only */
137 [0x9] = 0x44, /* 1.6GHz HyperTransport 3 only */
138 [0xa] = 0x64, /* 1.8GHz HyperTransport 3 only */
139 [0xb] = 0x96, /* 2.0GHz HyperTransport 3 only */
140 [0xc] = 0xA6, /* 2.2GHz HyperTransport 3 only */
141 [0xd] = 0xB6, /* 2.4GHz HyperTransport 3 only */
142 [0xe] = 0xC6, /* 2.6GHz HyperTransport 3 only */
Zheng Bao98fcc092011-03-27 16:39:58 +0000143};
144
efdesign9800c8c4a2011-07-20 12:37:58 -0600145void sr5650_htinit(void)
Zheng Bao98fcc092011-03-27 16:39:58 +0000146{
147 /*
148 * About HT, it has been done in enumerate_ht_chain().
149 */
efdesign9800c8c4a2011-07-20 12:37:58 -0600150 device_t cpu_f0, sr5650_f0, clk_f1;
Zheng Bao98fcc092011-03-27 16:39:58 +0000151 u32 reg;
efdesign9800c8c4a2011-07-20 12:37:58 -0600152 u8 cpu_ht_freq, cpu_htfreq_max, ibias;
153 u8 sbnode;
154 u8 sblink;
155 u16 linkfreq_reg;
156 u16 linkfreqext_reg;
Zheng Bao98fcc092011-03-27 16:39:58 +0000157
Zheng Bao98fcc092011-03-27 16:39:58 +0000158 /************************
159 * get cpu's ht freq, in cpu's function 0, offset 0x88
160 * bit11-8, specifics the maximum operation frequency of the link's transmitter clock.
161 * The link frequency field (Frq) is cleared by cold reset. SW can write a nonzero
162 * value to this reg, and that value takes effect on the next warm reset or
163 * LDTSTOP_L disconnect sequence.
164 * please see the table sr5650_ibias about the value and its corresponding frequency.
165 ************************/
166 /* Link0, Link1 are for connection between P0 and P1.
Zheng Bao98fcc092011-03-27 16:39:58 +0000167 * TODO: Check the topology of the MP and NB. Or we just read the nbconfig? */
168 /* NOTE: In most cases, we only have one CPU. In that case, we should read 0x88. */
169
efdesign9800c8c4a2011-07-20 12:37:58 -0600170 /* Find out the node ID and the Link ID that
171 * connects to the Southbridge (system IO hub).
172 */
173 sbnode = (pci_read_config32(PCI_DEV(0, 0x18, 0), 0x60) >> 8) & 7;
174 sblink = (pci_read_config32(PCI_DEV(0, 0x18, 0), 0x64) >> 8) & 3; /* bit[10] sublink, bit[9,8] link. */
175 cpu_f0 = PCI_DEV(0, (0x18 + sbnode), 0);
176
177 /*
178 * link freq reg of Link0, 1, 2, 3 is 0x88, 0xA8, 0xC8, 0xE8 respectively
179 * link freq ext reg of Link0, 1, 2, 3 is 0x9C, 0xBC, 0xDC, 0xFC respectively
180 */
181 linkfreq_reg = 0x88 + (sblink << 5);
182 linkfreqext_reg = 0x9C + (sblink << 5);
183 reg = pci_read_config32(cpu_f0, linkfreq_reg);
184
Zheng Bao98fcc092011-03-27 16:39:58 +0000185 cpu_ht_freq = (reg & 0xf00) >> 8;
efdesign9800c8c4a2011-07-20 12:37:58 -0600186
187 /* Freq[4] is only valid for revision D and later processors */
188 if (cpuid_eax(1) >= 0x100F80) {
189 cpu_htfreq_max = 0x14;
190 cpu_ht_freq |= ((pci_read_config32(cpu_f0, linkfreqext_reg) & 0x01) << 4);
191 } else {
192 cpu_htfreq_max = 0x0F;
193 }
194
195 printk(BIOS_INFO, "sr5650_htinit: Node %x Link %x, HT freq=%x.\n",
196 sbnode, sblink, cpu_ht_freq);
Zheng Bao98fcc092011-03-27 16:39:58 +0000197 sr5650_f0 = PCI_DEV(0, 0, 0);
198
199 clk_f1 = PCI_DEV(0, 0, 1); /* We need to make sure the F1 is accessible. */
200
201 ibias = sr5650_ibias[cpu_ht_freq];
202
203 /* If HT freq>1GHz, we assume the CPU is fam10, else it is K8.
204 * Is it appropriate?
205 * Frequency is 1GHz, i.e. cpu_ht_freq is 6, in most cases.
206 * So we check 6 only, it would be faster. */
207 if ((cpu_ht_freq == 0x6) || (cpu_ht_freq == 0x5) || (cpu_ht_freq == 0x4) ||
208 (cpu_ht_freq == 0x2) || (cpu_ht_freq == 0x0)) {
209 printk(BIOS_INFO, "sr5650_htinit: HT1 mode\n");
210
211 /* HT1 mode, RPR 5.4.2 */
212 /* set IBIAS code */
213 set_nbcfg_enable_bits(clk_f1, 0xD8, 0x3FF, ibias);
214 /* Optimizes chipset HT transmitter drive strength */
215 set_htiu_enable_bits(sr5650_f0, 0x2A, 0x3, 0x3);
efdesign9800c8c4a2011-07-20 12:37:58 -0600216 } else if ((cpu_ht_freq > 0x6) && (cpu_ht_freq < cpu_htfreq_max)) {
Zheng Bao98fcc092011-03-27 16:39:58 +0000217 printk(BIOS_INFO, "sr5650_htinit: HT3 mode\n");
218
219 /* Enable Protocol checker */
220 set_htiu_enable_bits(sr5650_f0, 0x1E, 0xFFFFFFFF, 0x7FFFFFFC);
221
Patrick Georgif8f00622012-05-05 15:50:17 +0200222#if CONFIG_NORTHBRIDGE_AMD_AMDFAM10 || CONFIG_NORTHBRIDGE_AMD_AGESA_FAMILY10 /* save some spaces */
Zheng Bao98fcc092011-03-27 16:39:58 +0000223 /* HT3 mode, RPR 5.4.3 */
224 set_nbcfg_enable_bits(sr5650_f0, 0x9c, 0x3 << 16, 0);
225
226 /* set IBIAS code */
227 set_nbcfg_enable_bits(clk_f1, 0xD8, 0x3FF, ibias);
228 /* Optimizes chipset HT transmitter drive strength */
229 set_htiu_enable_bits(sr5650_f0, 0x2A, 0x3, 0x1);
230 /* Enables error-retry mode */
231 set_nbcfg_enable_bits(sr5650_f0, 0x44, 0x1, 0x1);
Martin Roth55e31a92014-12-16 20:53:49 -0700232 /* Enables scrambling and Disables command throttling */
Zheng Bao98fcc092011-03-27 16:39:58 +0000233 set_nbcfg_enable_bits(sr5650_f0, 0xac, (1 << 3) | (1 << 14), (1 << 3) | (1 << 14));
234 /* Enables transmitter de-emphasis */
235 set_nbcfg_enable_bits(sr5650_f0, 0xa4, 1 << 31, 1 << 31);
Martin Roth55e31a92014-12-16 20:53:49 -0700236 /* Enables transmitter de-emphasis level */
Zheng Bao98fcc092011-03-27 16:39:58 +0000237 /* Sets training 0 time */
238 set_nbcfg_enable_bits(sr5650_f0, 0xa0, 0x3F, 0x14);
239
240 /* Enables strict TM4 detection */
241 set_htiu_enable_bits(sr5650_f0, 0x15, 0x1 << 22, 0x1 << 22);
242
efdesign9800c8c4a2011-07-20 12:37:58 -0600243 /* Optimizes chipset HT transmitter drive strength */
244 set_htiu_enable_bits(sr5650_f0, 0x2A, 0x3 << 0, 0x1 << 0);
245
Zheng Bao98fcc092011-03-27 16:39:58 +0000246 /* HyperTransport 3 Processor register settings to be done in northbridge */
efdesign9800c8c4a2011-07-20 12:37:58 -0600247
Zheng Bao98fcc092011-03-27 16:39:58 +0000248 /* Enables error-retry mode */
efdesign9800c8c4a2011-07-20 12:37:58 -0600249 set_fam10_ext_cfg_enable_bits(cpu_f0, 0x130 + (sblink << 2), 1 << 0, 1 << 0);
250
Zheng Bao98fcc092011-03-27 16:39:58 +0000251 /* Enables scrambling */
efdesign9800c8c4a2011-07-20 12:37:58 -0600252 set_fam10_ext_cfg_enable_bits(cpu_f0, 0x170 + (sblink << 2), 1 << 3, 1 << 3);
253
Zheng Bao98fcc092011-03-27 16:39:58 +0000254 /* Enables transmitter de-emphasis
efdesign9800c8c4a2011-07-20 12:37:58 -0600255 * This depends on the PCB design and the trace
256 */
Zheng Bao98fcc092011-03-27 16:39:58 +0000257 /* Disables command throttling */
258 set_fam10_ext_cfg_enable_bits(cpu_f0, 0x168, 1 << 10, 1 << 10);
efdesign9800c8c4a2011-07-20 12:37:58 -0600259
Zheng Bao98fcc092011-03-27 16:39:58 +0000260 /* Sets Training 0 Time. See T0Time table for encodings */
Martin Roth55e31a92014-12-16 20:53:49 -0700261 /* AGESA have set it to recommended value already
efdesign9800c8c4a2011-07-20 12:37:58 -0600262 * The recommended values are 14h(2us) if F0x[18C:170][LS2En]=0
263 * and 26h(12us) if F0x[18C:170][LS2En]=1
264 */
265 //set_fam10_ext_cfg_enable_bits(cpu_f0, 0x16C, 0x3F, 0x26);
266
Zheng Bao98fcc092011-03-27 16:39:58 +0000267 /* HT Buffer Allocation for Ganged Links!!! */
Stefan Reinauer8ada1522012-11-16 13:34:48 -0800268#endif /* CONFIG_NORTHBRIDGE_AMD_AMDFAM10 || CONFIG_NORTHBRIDGE_AMD_AGESA_FAMILY10 */
Zheng Bao98fcc092011-03-27 16:39:58 +0000269 }
270}
271
Patrick Georgif8f00622012-05-05 15:50:17 +0200272#if CONFIG_NORTHBRIDGE_AMD_AMDFAM10 || CONFIG_NORTHBRIDGE_AMD_AGESA_FAMILY10 /* save some spaces */
Zheng Bao98fcc092011-03-27 16:39:58 +0000273void fam10_optimization(void)
274{
275 device_t cpu_f0, cpu_f2, cpu_f3;
276 device_t cpu1_f0, cpu1_f2, cpu1_f3;
277 msr_t msr;
278 u32 val;
279
280 printk(BIOS_INFO, "fam10_optimization()\n");
281 msr = rdmsr(0xC001001F);
282 msr.hi |= 1 << 14; /* bit 46: EnableCf8ExtCfg */
283 wrmsr(0xC001001F, msr);
284
285 cpu_f0 = PCI_DEV(0, 0x18, 0);
286 cpu_f2 = PCI_DEV(0, 0x18, 2);
287 cpu_f3 = PCI_DEV(0, 0x18, 3);
288 cpu1_f0 = PCI_DEV(0, 0x19, 0);
289 cpu1_f2 = PCI_DEV(0, 0x19, 2);
290 cpu1_f3 = PCI_DEV(0, 0x19, 3);
291
292 val = pci_read_config32(cpu1_f3, 0x8C);
293 val |= 1 << 14;
294 pci_write_config32(cpu1_f3, 0x8C, val);
295
296 /* TODO: HT Buffer Allocation for (un)Ganged Links */
297 /* rpr Table 5-11, 5-12 */
298}
299#else
300#define fam10_optimization() do{}while(0)
Stefan Reinauer8ada1522012-11-16 13:34:48 -0800301#endif /* CONFIG_NORTHBRIDGE_AMD_AMDFAM10 || CONFIG_NORTHBRIDGE_AMD_AGESA_FAMILY10 */
Zheng Bao98fcc092011-03-27 16:39:58 +0000302
303/*****************************************
304* Compliant with CIM_33's ATINB_PCICFG_POR_TABLE
305*****************************************/
306static void sr5650_por_pcicfg_init(device_t nb_dev)
307{
308 /* enable PCI Memory Access */
309 set_nbcfg_enable_bits_8(nb_dev, 0x04, (u8)(~0xFD), 0x02);
310
311 set_nbcfg_enable_bits(nb_dev, 0x14, ~0, 0x0);
312 set_nbcfg_enable_bits(nb_dev, 0x18, ~0, 0x0);
313 set_nbcfg_enable_bits(nb_dev, 0x20, ~0, 0x0);
314 set_nbcfg_enable_bits(nb_dev, 0x84, ~0, 0x03000010);
315
316 /* Reg4Ch[1]=1 (APIC_ENABLE) force cpu request with address 0xFECx_xxxx to south-bridge
317 * Reg4Ch[6]=1 (BMMsgEn) enable BM_Set message generation
318 * BMMsgEn */
319 set_nbcfg_enable_bits(nb_dev, 0x4C, (u8)(~0x00), 0x52042);
320
321 set_nbcfg_enable_bits(nb_dev, 0x7C, (u8)(~0), 0x0);
322
323 /* Reg8Ch[10:9] = 0x3 Enables Gfx Debug BAR,
324 * force this BAR as mem type in sr5650_gfx.c */
325 //set_nbcfg_enable_bits_8(nb_dev, 0x8D, (u8)(~0xFF), 0x03);
326}
327
328/*****************************************
329* Compliant with CIM_33's ATINB_MISCIND_POR_TABLE
330* Compliant with CIM_33's MISC_INIT_TBL
331*****************************************/
332static void sr5650_por_misc_index_init(device_t nb_dev)
333{
334 /* disable IOMMU */
335 set_nbmisc_enable_bits(nb_dev, 0x75, 0x1, 0x0);
336 /* NBMISCIND:0x75[29]= 1 Device ID for hotplug and PME message */
337 set_nbmisc_enable_bits(nb_dev, 0x75, 1 << 29, 1 << 29);
338 set_nbmisc_enable_bits(nb_dev, 0x75, 1 << 9, 1 << 9); /* no doc reference, comply with BTS */
339 set_nbmisc_enable_bits(nb_dev, 0x46, 1 << 7, 1 << 7); /* bit7 BTS fail*/
340 /*P2P*/
341 set_nbmisc_enable_bits(nb_dev, 0x48, 1 << 8, 0);
342
343 set_nbmisc_enable_bits(nb_dev, 0x2A, 1 << 15 | 1 << 17, 1 << 17);
344 set_nbmisc_enable_bits(nb_dev, 0x2B, 1 << 15 | 1 << 27, 1 << 15 | 1 << 27);
345 set_nbmisc_enable_bits(nb_dev, 0x2C, 1 << 0 | 1 << 1 | 1 << 5 | 1 << 4 | 1 << 10, 1 << 0 | 1 << 1 | 1 << 5);
346 set_nbmisc_enable_bits(nb_dev, 0x32, 0x3F << 20, 0x2A << 20);
efdesign9800c8c4a2011-07-20 12:37:58 -0600347 set_nbmisc_enable_bits(nb_dev, 0x34, 1 << 7 | 1 << 15 | 1 << 23, 0);
Zheng Bao98fcc092011-03-27 16:39:58 +0000348 set_nbmisc_enable_bits(nb_dev, 0x35, 0x3F << 26, 0x2A << 26);
349 set_nbmisc_enable_bits(nb_dev, 0x37, 0xfff << 20, 0xddd << 20);
350 set_nbmisc_enable_bits(nb_dev, 0x37, 7 << 11, 0);
351 /* PCIE CDR setting */
352 set_nbmisc_enable_bits(nb_dev, 0x38, 0xFFFFFFFF, 0xC0C0C0);
Zheng Bao98fcc092011-03-27 16:39:58 +0000353 set_nbmisc_enable_bits(nb_dev, 0x22, 0xFFFFFFFF, (1 << 27) | (0x8 << 12) | (0x8 << 16) | (0x8 << 20));
354 set_nbmisc_enable_bits(nb_dev, 0x22, 1 << 1 | 1 << 2 | 1 << 6 | 1 << 7, 1 << 1 | 1 << 2 | 1 << 6 | 1 << 7);
355
356 set_nbmisc_enable_bits(nb_dev, 0x07, 0xF << 4 | 1 << 24, 0xF << 4 | 1 << 24);
357 set_nbmisc_enable_bits(nb_dev, 0x67, 1 << 10 | 1 << 11 | 1 << 26, 1 << 11);
358 set_nbmisc_enable_bits(nb_dev, 0x67, 3 << 21, 3 << 21);
359 set_nbmisc_enable_bits(nb_dev, 0x68, 1 << 8 | 1 << 9 | 1 << 19, 1 << 9 | 1 << 19);
360 set_nbmisc_enable_bits(nb_dev, 0x6B, 3 << 3 | 1 << 15 | 0x1F << 27, 3 << 3 | 1 << 15 | 0x1F << 27);
361 set_nbmisc_enable_bits(nb_dev, 0x6C, 0xFFFFFFFF, 0x41183000);
362
363 /* NB_MISC_IND_WR_EN + IOC_PCIE_CNTL
364 * Block non-snoop DMA request if PMArbDis is set.
365 * Set BMSetDis */
366 set_nbmisc_enable_bits(nb_dev, 0x0B, 0xFFFFFFFF, 0x00400180);
367 set_nbmisc_enable_bits(nb_dev, 0x01, 0xFFFFFFFF, 0x00000310);
368
369 /* NBCFG (NBMISCIND 0x0): NB_CNTL -
370 * HIDE_NB_AGP_CAP ([0], default=1)HIDE
371 * HIDE_P2P_AGP_CAP ([1], default=1)HIDE
372 * HIDE_NB_GART_BAR ([2], default=1)HIDE
373 * AGPMODE30 ([4], default=0)DISABLE
374 * AGP30ENCHANCED ([5], default=0)DISABLE
375 * HIDE_AGP_CAP ([8], default=1)ENABLE */
376 set_nbmisc_enable_bits(nb_dev, 0x00, 0x0000FFFF, 0 << 0 | 1 << 1 | 1 << 2 | 0 << 6);
377
378 /* IOC_LAT_PERF_CNTR_CNTL */
379 set_nbmisc_enable_bits(nb_dev, 0x30, 0xFF, 0x00);
380 //set_nbmisc_enable_bits(nb_dev, 0x31, 0xFF, 0x00);
381
382 /* IOC_LAT_PERF_CNTR_OUT */
383 /* IOC_JTAG_CNTL */
384 set_nbmisc_enable_bits(nb_dev, 0x47, 0xFFFFFFFF, 0x0000000B);
385
386 set_nbmisc_enable_bits(nb_dev, 0x12, 0xFFFFFFFF, 0x00FB5555);
efdesign9800c8c4a2011-07-20 12:37:58 -0600387 set_nbmisc_enable_bits(nb_dev, 0x0C, 0xFFFFFFFF, 0x001F37FC);
Zheng Bao98fcc092011-03-27 16:39:58 +0000388 set_nbmisc_enable_bits(nb_dev, 0x15, 0xFFFFFFFF, 0x0);
389
390 /* NB_PROG_DEVICE_REMAP */
391 set_nbmisc_enable_bits(nb_dev, 0x20, 0xFFFFFFFF, 0x0);
392 set_nbmisc_enable_bits(nb_dev, 0x21, 0xFFFFFFFF, 0x0);
393
394 /* Compliant with CIM_33's MISC_INIT_TBL, except Hide NB_BAR3_PCIE
395 * Enable access to DEV8
396 * Enable setPower message for all ports
397 */
398 set_nbmisc_enable_bits(nb_dev, 0x51, 1 << 20 | 1 << 8, 1 << 20 | 1 << 8);
399 set_nbmisc_enable_bits(nb_dev, 0x53, 1 << 20 | 1 << 8, 1 << 20 | 1 << 8);
400 set_nbmisc_enable_bits(nb_dev, 0x55, 1 << 20 | 1 << 8, 1 << 20 | 1 << 8);
401 set_nbmisc_enable_bits(nb_dev, 0x57, 1 << 20 | 1 << 8, 1 << 20 | 1 << 8);
402 set_nbmisc_enable_bits(nb_dev, 0x59, 1 << 20 | 1 << 8, 1 << 20 | 1 << 8);
403 set_nbmisc_enable_bits(nb_dev, 0x5B, 1 << 20 | 1 << 8, 1 << 20 | 1 << 8);
404 set_nbmisc_enable_bits(nb_dev, 0x5D, 1 << 20 | 1 << 8, 1 << 20 | 1 << 8);
405 set_nbmisc_enable_bits(nb_dev, 0x5F, 1 << 20 | 1 << 8, 1 << 20 | 1 << 8);
406 set_nbmisc_enable_bits(nb_dev, 0x61, 1 << 20 | 1 << 8, 1 << 20 | 1 << 8);
407 set_nbmisc_enable_bits(nb_dev, 0x63, 1 << 20 | 1 << 8, 1 << 20 | 1 << 8);
408
409 /* Disable bus-master trigger event from SB and Enable set_slot_power message to SB */
410 set_nbmisc_enable_bits(nb_dev, 0x0B, 0xffffffff, 0x400180);
411}
412
413/*****************************************
414* Some setting is from rpr. Some is from CIMx.
415*****************************************/
416static void sr5650_por_htiu_index_init(device_t nb_dev)
417{
418 device_t cpu_f0;
419
420 cpu_f0 = PCI_DEV(0, 0x18, 0);
421
422 set_htiu_enable_bits(nb_dev, 0x1C, 0x1<<17, 0x1<<17);
423 set_htiu_enable_bits(nb_dev, 0x05, 0x1<<8, 0x1<<8);
424 set_htiu_enable_bits(nb_dev, 0x06, 0x1<<0, 0x0<<0);
425 set_htiu_enable_bits(nb_dev, 0x06, 0x1<<1, 0x1<<1);
426 set_htiu_enable_bits(nb_dev, 0x06, 0x1<<9, 0x1<<9);
427 set_htiu_enable_bits(nb_dev, 0x06, 0x1<<13, 0x1<<13);
428 set_htiu_enable_bits(nb_dev, 0x06, 0x1<<17, 0x1<<17);
429 set_htiu_enable_bits(nb_dev, 0x06, 0x3<<15, 0x3<<15);
430 set_htiu_enable_bits(nb_dev, 0x06, 0x1<<25, 0x1<<25);
431 set_htiu_enable_bits(nb_dev, 0x06, 0x1<<30, 0x1<<30);
432
433 set_htiu_enable_bits(nb_dev, 0x07, 0x1 << 0 | 0x1 << 1 | 0x1 << 2, 0x1 << 0);
434
435 set_htiu_enable_bits(nb_dev, 0x16, 0x1<<11, 0x1<<11);
436
437 set_htiu_enable_bits(nb_dev, 0x1D, 0x1<<2, 0x1<<2);
438 set_htiu_enable_bits(nb_dev, 0x1D, 0x1<<4, 0x1<<4);
439
440 set_nbcfg_enable_bits(cpu_f0, 0x68, 3 << 21, 0 << 21);
441 axindxc_reg(0x10, 1 << 9, 1 << 9);
442 set_pcie_enable_bits(nb_dev, 0x10 | 5 << 16, 1 << 9, 1 << 9);
443 set_htiu_enable_bits(nb_dev, 0x06, 0x1<<26, 0x1<<26);
444 set_htiu_enable_bits(nb_dev, 0x16, 0x1<<10, 0x1<<10);
445
446 /* Enable BIAS circuit for all lanes. */
447 //set_htiu_enable_bits(nb_dev, 0x2B, 0xF<<28, 0xF<<28);
448 set_htiu_enable_bits(nb_dev, 0x2B, 0xF << 28, 0);
449 set_htiu_enable_bits(nb_dev, 0x05, 0xFFFFFF, 0xFF558);
450 set_htiu_enable_bits(nb_dev, 0x06, 0xFFFFFFFE, 0x04203A202);
451 set_htiu_enable_bits(nb_dev, 0x0C, 0xFFFF, 0x101);
452
453 /* A21 only */
454 //if (REV_SR5650_A21 == get_nb_rev(nb_dev)) {
455 if (get_nb_rev(nb_dev) > REV_SR5650_A11) {
456 set_htiu_enable_bits(nb_dev, 0x05, 0x3<<3| 1<<6 | 1<<10 | 0xFF<<12, 0x3<<3 | 1<<6 | 1<<10 | 0xFF<<12);
457 set_htiu_enable_bits(nb_dev, 0x1D, 1 << 2 | 1 << 4, 0);
458 }
459}
460
461/*****************************************
462* Compliant with CIM_33's ATINB_POR_INIT_JMPDI
463* Configure SR5650 registers to power-on default RPR.
464* POR: Power On Reset
465* RPR: Register Programming Requirements
466*****************************************/
467static void sr5650_por_init(device_t nb_dev)
468{
469 printk(BIOS_INFO, "sr5650_por_init\n");
470 /* ATINB_PCICFG_POR_TABLE, initialize the values for sr5650 PCI Config registers */
471 sr5650_por_pcicfg_init(nb_dev);
472
473 /* ATINB_MISCIND_POR_TABLE */
474 sr5650_por_misc_index_init(nb_dev);
475
476 /* ATINB_HTIUNBIND_POR_TABLE */
477 sr5650_por_htiu_index_init(nb_dev);
478
479 /* ATINB_CLKCFG_PORT_TABLE */
480 /* sr5650 A11 SB Link full swing? */
481}
482
483/* enable CFG access to Dev8, which is the SB P2P Bridge */
efdesign9800c8c4a2011-07-20 12:37:58 -0600484void enable_sr5650_dev8(void)
Zheng Bao98fcc092011-03-27 16:39:58 +0000485{
486 set_nbmisc_enable_bits(PCI_DEV(0, 0, 0), 0x00, 1 << 6, 1 << 6);
487}
488
489/*
490* Compliant with CIM_33's AtiNBInitEarlyPost (AtiInitNBBeforePCIInit).
491*/
efdesign9800c8c4a2011-07-20 12:37:58 -0600492void sr5650_before_pci_init(void)
Zheng Bao98fcc092011-03-27 16:39:58 +0000493{
494}
495
496/*
497* The calling sequence is same as CIM.
498*/
efdesign9800c8c4a2011-07-20 12:37:58 -0600499void sr5650_early_setup(void)
Zheng Bao98fcc092011-03-27 16:39:58 +0000500{
501 device_t nb_dev = PCI_DEV(0, 0, 0);
502 printk(BIOS_INFO, "sr5650_early_setup()\n");
503
504 /*ATINB_PrepareInit */
505 get_cpu_rev();
506
507 switch (get_nb_rev(nb_dev)) { /* PCIEMiscInit */
508 case REV_SR5650_A11:
509 printk(BIOS_INFO, "NB Revision is A11.\n");
510 break;
511 case REV_SR5650_A12:
512 printk(BIOS_INFO, "NB Revision is A12.\n");
513 break;
514 case REV_SR5650_A21:
515 printk(BIOS_INFO, "NB Revision is A21.\n");
516 break;
517 }
518
Zheng Bao98fcc092011-03-27 16:39:58 +0000519 fam10_optimization();
Zheng Bao98fcc092011-03-27 16:39:58 +0000520 sr5650_por_init(nb_dev);
521}
522
523/**
efdesign9800c8c4a2011-07-20 12:37:58 -0600524 * @brief disable GPP1 Port0,1, GPP2, GPP3a Port0,1,2,3,4,5, GPP3b
Zheng Bao98fcc092011-03-27 16:39:58 +0000525 *
526 */
efdesign9800c8c4a2011-07-20 12:37:58 -0600527void sr5650_disable_pcie_bridge(void)
Zheng Bao98fcc092011-03-27 16:39:58 +0000528{
529 u32 mask;
530 u32 reg;
531 device_t nb_dev = PCI_DEV(0, 0, 0);
532
efdesign9800c8c4a2011-07-20 12:37:58 -0600533 mask = (1 << 2) | (1 << 3); /*GPP1*/
534 mask |= (1 << 4) | (1 << 5) | (1 << 6) | (1 << 7) | (1 << 16) | (1 << 17); /*GPP3a*/
535 mask |= (1 << 18) | (1 << 19); /*GPP2*/
536 mask |= (1 << 20); /*GPP3b*/
Zheng Bao98fcc092011-03-27 16:39:58 +0000537 reg = mask;
538 set_nbmisc_enable_bits(nb_dev, 0x0c, mask, reg);
539}