zero warnings days
[coreboot.git] / src / southbridge / amd / rs780 / rs780_gfx.c
1 /*
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
17  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
18  */
19
20 /*
21  *  for rs780 internal graphics device
22  *  device id of internal grphics:
23  *      RS780:  0x9610
24  *      RS780C: 0x9611
25  *      RS780M: 0x9612
26  *      RS780MC:0x9613
27  *      RS780E: 0x9615
28  *      RS785G: 0x9710 - just works, not much tested
29  */
30 #include <console/console.h>
31 #include <device/device.h>
32 #include <device/pci.h>
33 #include <device/pci_ids.h>
34 #include <device/pci_ops.h>
35 #include <delay.h>
36 #include <cpu/x86/msr.h>
37 #include "rs780.h"
38
39 void set_pcie_reset(void);
40 void set_pcie_dereset(void);
41
42 /* Trust the original resource allocation. Don't do it again. */
43 #undef DONT_TRUST_RESOURCE_ALLOCATION
44 //#define DONT_TRUST_RESOURCE_ALLOCATION
45
46 #define CLK_CNTL_INDEX  0x8
47 #define CLK_CNTL_DATA   0xC
48
49 /* The Integrated Info Table. */
50 ATOM_INTEGRATED_SYSTEM_INFO_V2 vgainfo;
51
52 #ifdef UNUSED_CODE
53 static u32 clkind_read(device_t dev, u32 index)
54 {
55         u32     gfx_bar2 = pci_read_config32(dev, 0x18) & ~0xF;
56
57         *(u32*)(gfx_bar2+CLK_CNTL_INDEX) = index & 0x7F;
58         return *(u32*)(gfx_bar2+CLK_CNTL_DATA);
59 }
60 #endif
61
62 static void clkind_write(device_t dev, u32 index, u32 data)
63 {
64         u32     gfx_bar2 = pci_read_config32(dev, 0x18) & ~0xF;
65         /* printk(BIOS_DEBUG, "gfx bar 2 %02x\n", gfx_bar2); */
66
67         *(u32*)(gfx_bar2+CLK_CNTL_INDEX) = index | 1<<7;
68         *(u32*)(gfx_bar2+CLK_CNTL_DATA)  = data;
69 }
70
71 /*
72 * pci_dev_read_resources thinks it is a IO type.
73 * We have to force it to mem type.
74 */
75 static void rs780_gfx_read_resources(device_t dev)
76 {
77         printk(BIOS_DEBUG, "rs780_gfx_read_resources.\n");
78
79         /* The initial value of 0x24 is 0xFFFFFFFF, which is confusing.
80            Even if we write 0xFFFFFFFF into it, it will be 0xFFF00000,
81            which tells us it is a memory address base.
82          */
83         pci_write_config32(dev, 0x24, 0x00000000);
84
85         /* Get the normal pci resources of this device */
86         pci_dev_read_resources(dev);
87         compact_resources(dev);
88 }
89
90 typedef struct _MMIORANGE
91 {
92         u32     Base;
93         u32     Limit;
94         u8      Attribute;
95 } MMIORANGE;
96
97 MMIORANGE MMIO[8], CreativeMMIO[8];
98
99 static MMIORANGE* AllocMMIO(MMIORANGE* pMMIO)
100 {
101         int i;
102         for (i=0; i<8; i++)
103         {
104                 if (pMMIO[i].Limit == 0)
105                                 return &pMMIO[i];
106         }
107         return 0;
108 }
109 static void FreeMMIO(MMIORANGE* pMMIO)
110 {
111         pMMIO->Base = 0;
112         pMMIO->Limit = 0;
113 }
114
115 #define CIM_STATUS u32
116 #define CIM_SUCCESS 0x00000000
117 #define CIM_ERROR       0x80000000
118 #define CIM_UNSUPPORTED 0x80000001
119 #define CIM_DISABLEPORT 0x80000002
120
121 #define MMIO_ATTRIB_NP_ONLY     1
122 #define MMIO_ATTRIB_BOTTOM_TO_TOP 1<<1
123 #define MMIO_ATTRIB_SKIP_ZERO 1<<2
124
125 #ifdef DONT_TRUST_RESOURCE_ALLOCATION
126 static u32 SetMMIO(u32 Base, u32 Limit, u8 Attribute, MMIORANGE *pMMIO)
127 {
128         int i;
129         MMIORANGE * TempRange;
130         for(i=0; i<8; i++)
131         {
132                 if(pMMIO[i].Attribute != Attribute && Base >= pMMIO[i].Base && Limit <= pMMIO[i].Limit)
133                 {
134                         TempRange = AllocMMIO(pMMIO);
135                         if(TempRange == 0) return 0x80000000;
136                         TempRange->Base = Limit;
137                         TempRange->Limit = pMMIO[i].Limit;
138                         TempRange->Attribute = pMMIO[i].Attribute;
139                         pMMIO[i].Limit = Base;
140                 }
141         }
142         TempRange = AllocMMIO(pMMIO);
143         if(TempRange == 0) return 0x80000000;
144         TempRange->Base = Base;
145         TempRange->Limit = Limit;
146         TempRange->Attribute = Attribute;
147         return 0;
148 }
149
150 static u8 FinalizeMMIO(MMIORANGE *pMMIO)
151 {
152         int i, j, n = 0;
153         for(i=0; i<8; i++)
154         {
155                 if (pMMIO[i].Base == pMMIO[i].Limit)
156                 {
157                         FreeMMIO(&pMMIO[i]);
158                         continue;
159                 }
160                 for(j=0; j<i; j++)
161                 {
162                         if (i!=j && pMMIO[i].Attribute == pMMIO[j].Attribute)
163                         {
164                                 if (pMMIO[i].Base == pMMIO[j].Limit)
165                                 {
166                                         pMMIO[j].Limit = pMMIO[i].Limit;
167                                          FreeMMIO(&pMMIO[i]);
168                                 }
169                                 if (pMMIO[i].Limit == pMMIO[j].Base)
170                                 {
171                                         pMMIO[j].Base = pMMIO[i].Base;
172                                    FreeMMIO(&pMMIO[i]);
173                                 }
174                         }
175                 }
176         }
177         for (i=0; i<8; i++)
178         {
179                 if (pMMIO[i].Limit != 0) n++;
180         }
181         return n;
182 }
183
184 static CIM_STATUS GetCreativeMMIO(MMIORANGE *pMMIO)
185 {
186         CIM_STATUS Status = CIM_UNSUPPORTED;
187         u8 Bus, Dev, Reg, BusStart, BusEnd;
188         u32     Value;
189         device_t dev0x14 = dev_find_slot(0, PCI_DEVFN(0x14, 4));
190         device_t tempdev;
191         Value = pci_read_config32(dev0x14, 0x18);
192         BusStart = (Value >> 8) & 0xFF;
193         BusEnd = (Value >> 16) & 0xFF;
194         for(Bus = BusStart; Bus <= BusEnd; Bus++)
195         {
196                 for(Dev = 0; Dev <= 0x1f; Dev++)
197                 {
198                         tempdev = dev_find_slot(Bus, Dev << 3);
199                         Value = pci_read_config32(tempdev, 0);
200                         printk(BIOS_DEBUG, "Dev ID %x \n", Value);
201                         if((Value & 0xffff) == 0x1102)
202                         {//Creative
203                                 //Found Creative SB
204                                 u32     MMIOStart = 0xffffffff;
205                                 u32 MMIOLimit = 0;
206                                 for(Reg = 0x10; Reg < 0x20; Reg+=4)
207                                 {
208                                         u32     BaseA, LimitA;
209                                         BaseA = pci_read_config32(tempdev, Reg);
210                                         Value = BaseA;
211                                         if(!(Value & 0x01))
212                                         {
213                                                 Value = Value & 0xffffff00;
214                                                 if(Value !=  0)
215                                                 {
216                                                         if(MMIOStart > Value)
217                                                                 MMIOStart = Value;
218                                                         LimitA = 0xffffffff;
219                                                         //WritePCI(PciAddress,AccWidthUint32,&LimitA);
220                                                         pci_write_config32(tempdev, Reg, LimitA);
221                                                         //ReadPCI(PciAddress,AccWidthUint32,&LimitA);
222                                                         LimitA = pci_read_config32(tempdev, Reg);
223                                                         LimitA = Value + (~LimitA + 1);
224                                                         //WritePCI(PciAddress,AccWidthUint32,&BaseA);
225                                                         pci_write_config32(tempdev, Reg, BaseA);
226                                                         if (LimitA > MMIOLimit)
227                                                                 MMIOLimit = LimitA;
228                                                 }
229                                         }
230                                 }
231                                 printk(BIOS_DEBUG, " MMIOStart %x MMIOLimit %x \n", MMIOStart, MMIOLimit);
232                                 if (MMIOStart < MMIOLimit)
233                                 {
234                                         Status = SetMMIO(MMIOStart>>8, MMIOLimit>>8, 0x80, pMMIO);
235                                         if(Status == CIM_ERROR) return Status;
236                                 }
237                         }
238                 }
239         }
240         if(Status == CIM_SUCCESS)
241         {
242                 //Lets optimize MMIO
243                 if(FinalizeMMIO(pMMIO) > 4)
244                 {
245                         Status = CIM_ERROR;
246                 }
247         }
248
249         return Status;
250 }
251
252 static void ProgramMMIO(MMIORANGE *pMMIO, u8 LinkID, u8 Attribute)
253 {
254         int i, j, n = 7;
255         device_t k8_f1;
256
257         k8_f1 = dev_find_slot(0, PCI_DEVFN(0x18, 1));
258
259         for(i = 0; i < 8; i++)
260         {
261                 int k = 0, MmioReg;
262                 u32 Base = 0;
263                 u32 Limit = 0;
264                 for(j = 0; j < 8; j++)
265                 {
266                         if (Base < pMMIO[j].Base)
267                         {
268                                 Base = pMMIO[j].Base;
269                                 k = j;
270                         }
271                 }
272                 if(pMMIO[k].Limit != 0)
273                 {
274                         if(Attribute & MMIO_ATTRIB_NP_ONLY && pMMIO[k].Attribute == 0 )
275                         {
276                                 Base = 0;
277                         }
278                         else
279                         {
280                                 Base = pMMIO[k].Base | 0x3;
281                                 Limit= ((pMMIO[k].Limit - 1) & 0xffffff00) | pMMIO[k].Attribute | (LinkID << 4);
282                         }
283                         FreeMMIO(&pMMIO[k]);
284                 }
285                 if (Attribute & MMIO_ATTRIB_SKIP_ZERO && Base == 0 && Limit == 0) continue;
286                 MmioReg = (Attribute & MMIO_ATTRIB_BOTTOM_TO_TOP)?n:(7-n);
287                 n--;
288                 //RWPCI(PCI_ADDRESS(0,CPU_DEV,CPU_F1,0x80+MmioReg*8),AccWidthUint32 |S3_SAVE,0x0,0x0);
289                 pci_write_config32(k8_f1, 0x80+MmioReg*8, 0);
290
291                 //WritePCI(PCI_ADDRESS(0,CPU_DEV,CPU_F1,0x84+MmioReg*8),AccWidthUint32 |S3_SAVE,&Limit);
292                 pci_write_config32(k8_f1, 0x84+MmioReg*8, Limit);
293
294                 //WritePCI(PCI_ADDRESS(0,CPU_DEV,CPU_F1,0x80+MmioReg*8),AccWidthUint32 |S3_SAVE,&Base);
295                 pci_write_config32(k8_f1, 0x80+MmioReg*8, Base);
296         }
297 }
298 #endif
299
300 static void internal_gfx_pci_dev_init(struct device *dev)
301 {
302         unsigned char * bpointer;
303         volatile u32 * GpuF0MMReg;
304         volatile u32 * pointer;
305         int i;
306         u16 command;
307         u32 value;
308         u16 deviceid, vendorid;
309         device_t nb_dev = dev_find_slot(0, 0);
310         device_t k8_f2 = dev_find_slot(0, PCI_DEVFN(0x18, 2));
311         device_t k8_f0 = dev_find_slot(0, PCI_DEVFN(0x18, 0));
312
313         /* We definetely will use this in future. Just leave it here. */
314         /*struct southbridge_amd_rs780_config *cfg =
315            (struct southbridge_amd_rs780_config *)dev->chip_info;*/
316
317         deviceid = pci_read_config16(dev, PCI_DEVICE_ID);
318         vendorid = pci_read_config16(dev, PCI_VENDOR_ID);
319         printk(BIOS_DEBUG, "internal_gfx_pci_dev_init device=%x, vendor=%x.\n",
320              deviceid, vendorid);
321
322         command = pci_read_config16(dev, 0x04);
323         command |= 0x7;
324         pci_write_config16(dev, 0x04, command);
325
326         /* Clear vgainfo. */
327         bpointer = (unsigned char *) &vgainfo;
328         for(i=0; i<sizeof(ATOM_INTEGRATED_SYSTEM_INFO_V2); i++)
329         {
330                 *bpointer = 0;
331                 bpointer++;
332         }
333
334         GpuF0MMReg = (u32 *)pci_read_config32(dev, 0x18);
335
336         /* GFX_InitFBAccess. */
337         value = nbmc_read_index(nb_dev, 0x10);
338         *(GpuF0MMReg + 0x2000/4) = 0x11;
339         *(GpuF0MMReg + 0x2180/4) = ((value&0xff00)>>8)|((value&0xff000000)>>8);
340         *(GpuF0MMReg + 0x2c04/4) = ((value&0xff0)<<8);
341         *(GpuF0MMReg + 0x5428/4) = ((value&0xffff0000)+0x10000)-((value&0xffff)<<16);
342         *(GpuF0MMReg + 0x2000/4) = 0x00000011;
343         *(GpuF0MMReg + 0x200c/4) = 0x00000020;
344         *(GpuF0MMReg + 0x2010/4) = 0x10204810;
345         *(GpuF0MMReg + 0x2010/4) = 0x00204810;
346         *(GpuF0MMReg + 0x2014/4) = 0x10408810;
347         *(GpuF0MMReg + 0x2014/4) = 0x00408810;
348         *(GpuF0MMReg + 0x2414/4) = 0x00000080;
349         *(GpuF0MMReg + 0x2418/4) = 0x84422415;
350         *(GpuF0MMReg + 0x2418/4) = 0x04422415;
351         *(GpuF0MMReg + 0x5490/4) = 0x00000001;
352         *(GpuF0MMReg + 0x7de4/4) |= (1<<3) | (1<<4);
353         /* Force allow LDT_STOP Cool'n'Quiet workaround. */
354         *(GpuF0MMReg + 0x655c/4) |= 1<<4;
355         /* GFX_InitFBAccess finished. */
356
357         /* GFX_StartMC. */
358 #if (CONFIG_GFXUMA == 1) /* for UMA mode. */
359         /* MC_INIT_COMPLETE. */
360         set_nbmc_enable_bits(nb_dev, 0x2, 0, 1<<31);
361         /* MC_STARTUP, MC_POWERED_UP and MC_VMODE.*/
362         set_nbmc_enable_bits(nb_dev, 0x1, 1<<18, 1|1<<2);
363
364         set_nbmc_enable_bits(nb_dev, 0xb1, 0, 1<<6);
365         set_nbmc_enable_bits(nb_dev, 0xc3, 0, 1);
366         nbmc_write_index(nb_dev, 0x07, 0x18);
367         nbmc_write_index(nb_dev, 0x06, 0x00000102);
368         nbmc_write_index(nb_dev, 0x09, 0x40000008);
369         set_nbmc_enable_bits(nb_dev, 0x6, 0, 1<<31);
370         /* GFX_StartMC finished. */
371 #else
372         /* for SP mode. */
373         set_nbmc_enable_bits(nb_dev, 0xaa, 0xf0, 0x30);
374         set_nbmc_enable_bits(nb_dev, 0xce, 0xf0, 0x30);
375         set_nbmc_enable_bits(nb_dev, 0xca, 0xff000000, 0x47000000);
376         set_nbmc_enable_bits(nb_dev, 0xcb, 0x3f000000, 0x01000000);
377         set_nbmc_enable_bits(nb_dev, 0x01, 0, 1<<0);
378         set_nbmc_enable_bits(nb_dev, 0x04, 0, 1<<31);
379         set_nbmc_enable_bits(nb_dev, 0xb4, 0x3f, 0x3f);
380         set_nbmc_enable_bits(nb_dev, 0xb4, 0, 1<<6);
381         set_nbmc_enable_bits(nb_dev, 0xc3, 1<<11, 0);
382         set_nbmc_enable_bits(nb_dev, 0xa0, 1<<29, 0);
383         nbmc_write_index(nb_dev, 0xa4, 0x3484576f);
384         nbmc_write_index(nb_dev, 0xa5, 0x222222df);
385         nbmc_write_index(nb_dev, 0xa6, 0x00000000);
386         nbmc_write_index(nb_dev, 0xa7, 0x00000000);
387         set_nbmc_enable_bits(nb_dev, 0xc3, 1<<8, 0);
388         udelay(10);
389         set_nbmc_enable_bits(nb_dev, 0xc3, 1<<9, 0);
390         udelay(10);
391         set_nbmc_enable_bits(nb_dev, 0x01, 0, 1<<2);
392         udelay(200);
393         set_nbmc_enable_bits(nb_dev, 0x01, 0, 1<<3);
394         set_nbmc_enable_bits(nb_dev, 0xa0, 0, 1<<31);
395         udelay(500);
396         set_nbmc_enable_bits(nb_dev, 0x02, 0, 1<<31);
397         set_nbmc_enable_bits(nb_dev, 0xa0, 0, 1<<30);
398         set_nbmc_enable_bits(nb_dev, 0xa0, 1<<31, 0);
399         set_nbmc_enable_bits(nb_dev, 0xa0, 0, 1<<29);
400         nbmc_write_index(nb_dev, 0xa4, 0x23484576);
401         nbmc_write_index(nb_dev, 0xa5, 0x00000000);
402         nbmc_write_index(nb_dev, 0xa6, 0x00000000);
403         nbmc_write_index(nb_dev, 0xa7, 0x00000000);
404         /* GFX_StartMC finished. */
405
406         /* GFX_SPPowerManagment, don't care for new. */
407         /* Post MC Init table programming. */
408         set_nbmc_enable_bits(nb_dev, 0xac, ~(0xfffffff0), 0x0b);
409
410         /* Do we need Write and Read Calibration? */
411         /* GFX_Init finished. */
412 #endif
413
414         /* GFX_InitIntegratedInfo. */
415         /* fill the Integrated Info Table. */
416         vgainfo.sHeader.usStructureSize = sizeof(ATOM_INTEGRATED_SYSTEM_INFO_V2);
417         vgainfo.sHeader.ucTableFormatRevision = 1;
418         vgainfo.sHeader.ucTableContentRevision = 2;
419
420 #if (CONFIG_GFXUMA == 0) /* SP mode. */
421         vgainfo.ulBootUpSidePortClock = 667*100;
422         vgainfo.ucMemoryType = 3;
423         vgainfo.ulMinSidePortClock = 333*100;
424 #endif
425
426         vgainfo.ulBootUpEngineClock = 500 * 100; /* set boot up GFX engine clock. */
427         vgainfo.ulReserved1[0] = 0;     vgainfo.ulReserved1[1] = 0;
428         value = pci_read_config32(k8_f2, 0x94);
429         printk(BIOS_DEBUG, "MEMCLK = %x\n", value&0x7);
430         vgainfo.ulBootUpUMAClock = 333 * 100; /* set boot up UMA memory clock. */
431         vgainfo.ulBootUpSidePortClock = 0; /* disable SP. */
432         vgainfo.ulMinSidePortClock = 0; /* disable SP. */
433         for(i=0; i<6; i++)
434                 vgainfo.ulReserved2[i] = 0;
435         vgainfo.ulSystemConfig = 0;
436         //vgainfo.ulSystemConfig |= 1<<1 | 1<<3 | 1<<4 | 1<<5 | 1<<6 | 1<<7 | 1;
437         vgainfo.ulBootUpReqDisplayVector = 0; //?
438         vgainfo.ulOtherDisplayMisc = 0; //?
439         vgainfo.ulDDISlot1Config = 0x000c0011; //0; //VGA
440         //vgainfo.ulDDISlot1Config = 0x000c00FF; //0; //HDMI
441         vgainfo.ulDDISlot2Config = 0x00130022; //0; //?
442         vgainfo.ucMemoryType = 2;
443         /* UMA Channel Number: 1 or 2. */
444         vgainfo.ucUMAChannelNumber = 2;
445         vgainfo.ucDockingPinBit = 0; //?
446         vgainfo.ucDockingPinPolarity = 0; //?
447         vgainfo.ulDockingPinCFGInfo = 0; //?
448         vgainfo.ulCPUCapInfo = 3; /* K8. */
449
450         /* page 5-19 on BDG. */
451         vgainfo.usNumberOfCyclesInPeriod = 0x8019;
452         vgainfo.usMaxNBVoltage = 0x1a;
453         vgainfo.usMinNBVoltage = 0;
454         vgainfo.usBootUpNBVoltage = 0x1a;
455
456         value = pci_read_config32(nb_dev, 0xd0);
457         printk(BIOS_DEBUG, "NB HT speed = %x.\n", value);
458         value = pci_read_config32(k8_f0, 0x88);
459         printk(BIOS_DEBUG, "CPU HT speed = %x.\n", value);
460         vgainfo.ulHTLinkFreq = 100 * 100; /* set HT speed. */
461
462         /* HT width. */
463         value = pci_read_config32(nb_dev, 0xc8);
464         printk(BIOS_DEBUG, "HT width = %x.\n", value);
465         vgainfo.usMinHTLinkWidth = 16;
466         vgainfo.usMaxHTLinkWidth = 16;
467         vgainfo.usUMASyncStartDelay = 322;
468         vgainfo.usUMADataReturnTime = 86;
469         vgainfo.usLinkStatusZeroTime = 0x00c8; //0; //?
470         vgainfo.usReserved = 0;
471         vgainfo.ulHighVoltageHTLinkFreq = 100 * 100;
472         vgainfo.ulLowVoltageHTLinkFreq = 100 * 100;
473         vgainfo.usMaxUpStreamHTLinkWidth = 16;
474         vgainfo.usMaxDownStreamHTLinkWidth = 16;
475         vgainfo.usMinUpStreamHTLinkWidth = 16;
476         vgainfo.usMinDownStreamHTLinkWidth = 16;
477         for(i=0; i<97; i++)
478                 vgainfo.ulReserved3[i] = 0;
479
480         /* Transfer the Table to VBIOS. */
481         pointer = (u32 *)&vgainfo;
482         for(i=0; i<sizeof(ATOM_INTEGRATED_SYSTEM_INFO_V2); i+=4)
483         {
484 #if (CONFIG_GFXUMA == 1)
485                 *GpuF0MMReg = 0x80000000 + 0x10000000 - 512 + i;
486 #else
487                 *GpuF0MMReg = 0x80000000 + 0x8000000 - 512 + i;
488 #endif
489                 *(GpuF0MMReg+1) = *pointer++;
490         }
491
492         /* GFX_InitLate. */
493         {
494                 u8 temp8;
495                 temp8 = pci_read_config8(dev, 0x4);
496                 //temp8 &= ~1; /* CIM clears this bit. Strangely, I can'd. */
497                 temp8 |= 1<<1|1<<2;
498                 pci_write_config8(dev, 0x4, temp8);
499         }
500
501 #ifdef DONT_TRUST_RESOURCE_ALLOCATION
502         /* NB_SetupMGMMIO. */
503
504         /* clear MMIO and CreativeMMIO. */
505         bpointer = (unsigned char *)MMIO;
506         for(i=0; i<sizeof(MMIO); i++)
507         {
508                 *bpointer = 0;
509                 bpointer++;
510         }
511         bpointer = (unsigned char *)CreativeMMIO;
512         for(i=0; i<sizeof(CreativeMMIO); i++)
513         {
514                 *bpointer = 0;
515                 bpointer++;
516         }
517
518         /* Set MMIO ranges in K8. */
519         /* Set MMIO TOM - 4G. */
520         SetMMIO(0x400<<12, 0x1000000, 0x80, &MMIO[0]);
521         /* Set MMIO for VGA Legacy FB. */
522         SetMMIO(0xa00, 0xc00, 0x80, &MMIO[0]);
523
524         /* Set MMIO for non prefetchable P2P. */
525         temp = pci_read_config32(dev0x14, 0x20);
526         Base32 = (temp & 0x0fff0) << 8;
527         Limit32 = ((temp & 0x0fff00000) + 0x100000) >> 8;
528         if(Base32 < Limit32)
529         {
530                 Status = GetCreativeMMIO(&CreativeMMIO[0]);
531                 if(Status != CIM_ERROR)
532                         SetMMIO(Base32, Limit32, 0x0, &MMIO[0]);
533         }
534         /* Set MMIO for prefetchable P2P. */
535         if(Status != CIM_ERROR)
536         {
537                 temp = pci_read_config32(dev0x14, 0x24);
538
539                 Base32 = (temp & 0x0fff0) <<8;
540                 Limit32 = ((temp & 0x0fff00000) + 0x100000) >> 8;
541                 if(Base32 < Limit32)
542                         SetMMIO(Base32, Limit32, 0x0, &MMIO[0]);
543         }
544
545         FinalizeMMIO(&MMIO[0]);
546
547         ProgramMMIO(&CreativeMMIO[0], 0, MMIO_ATTRIB_NP_ONLY);
548         ProgramMMIO(&MMIO[0], 0, MMIO_ATTRIB_NP_ONLY | MMIO_ATTRIB_BOTTOM_TO_TOP | MMIO_ATTRIB_SKIP_ZERO);
549 #endif
550
551         pci_dev_init(dev);
552
553         /* clk ind */
554         clkind_write(dev, 0x08, 0x01);
555         clkind_write(dev, 0x0C, 0x22);
556         clkind_write(dev, 0x0F, 0x0);
557         clkind_write(dev, 0x11, 0x0);
558         clkind_write(dev, 0x12, 0x0);
559         clkind_write(dev, 0x14, 0x0);
560         clkind_write(dev, 0x15, 0x0);
561         clkind_write(dev, 0x16, 0x0);
562         clkind_write(dev, 0x17, 0x0);
563         clkind_write(dev, 0x18, 0x0);
564         clkind_write(dev, 0x19, 0x0);
565         clkind_write(dev, 0x1A, 0x0);
566         clkind_write(dev, 0x1B, 0x0);
567         clkind_write(dev, 0x1C, 0x0);
568         clkind_write(dev, 0x1D, 0x0);
569         clkind_write(dev, 0x1E, 0x0);
570         clkind_write(dev, 0x26, 0x0);
571         clkind_write(dev, 0x27, 0x0);
572         clkind_write(dev, 0x28, 0x0);
573         clkind_write(dev, 0x5C, 0x0);
574 }
575
576
577 /*
578 * Set registers in RS780 and CPU to enable the internal GFX.
579 * Please refer to CIM source code and BKDG.
580 */
581 extern uint64_t uma_memory_base, uma_memory_size;
582
583 static void rs780_internal_gfx_enable(device_t dev)
584 {
585         u32 l_dword;
586         int i;
587         device_t k8_f0 = 0, k8_f2 = 0;
588         device_t nb_dev = dev_find_slot(0, 0);
589         msr_t sysmem;
590
591 #if (CONFIG_GFXUMA == 0)
592         u32 FB_Start, FB_End;
593 #endif
594
595         printk(BIOS_DEBUG, "rs780_internal_gfx_enable dev = 0x%p, nb_dev = 0x%p.\n", dev, nb_dev);
596
597         sysmem = rdmsr(0xc001001a);
598         printk(BIOS_DEBUG, "sysmem = %x_%x\n", sysmem.hi, sysmem.lo);
599
600         /* The system top memory in 780. */
601         pci_write_config32(nb_dev, 0x90, sysmem.lo);
602         htiu_write_index(nb_dev, 0x30, 0);
603         htiu_write_index(nb_dev, 0x31, 0);
604
605         /* Disable external GFX and enable internal GFX. */
606         l_dword = pci_read_config32(nb_dev, 0x8c);
607         l_dword &= ~(1<<0);
608         l_dword |= 1<<1;
609         pci_write_config32(nb_dev, 0x8c, l_dword);
610
611         /* NB_SetDefaultIndexes */
612         pci_write_config32(nb_dev, 0x94, 0x7f);
613         pci_write_config32(nb_dev, 0x60, 0x7f);
614         pci_write_config32(nb_dev, 0xe0, 0);
615
616         /* NB_InitEarlyNB finished. */
617
618         /* LPC DMA Deadlock workaround? */
619         /* GFX_InitCommon*/
620         k8_f0 = dev_find_slot(0, PCI_DEVFN(0x18, 0));
621         l_dword = pci_read_config32(k8_f0, 0x68);
622         l_dword &= ~(3 << 21);
623         l_dword |= (1 << 21);
624         pci_write_config32(k8_f0, 0x68, l_dword);
625
626         /* GFX_InitCommon. */
627         nbmc_write_index(nb_dev, 0x23, 0x00c00010);
628         set_nbmc_enable_bits(nb_dev, 0x16, 1<<15, 1<<15);
629         set_nbmc_enable_bits(nb_dev, 0x25, 0xffffffff, 0x111f111f);
630         set_htiu_enable_bits(nb_dev, 0x37, 1<<24, 1<<24);
631
632 #if (CONFIG_GFXUMA == 1)
633         /* GFX_InitUMA. */
634         /* Copy CPU DDR Controller to NB MC. */
635         k8_f2 = dev_find_slot(0, PCI_DEVFN(0x18, 2));
636         for (i = 0; i < 12; i++)
637         {
638                 l_dword = pci_read_config32(k8_f2, 0x40 + i * 4);
639                 nbmc_write_index(nb_dev, 0x30 + i, l_dword);
640         }
641
642         l_dword = pci_read_config32(k8_f2, 0x80);
643         nbmc_write_index(nb_dev, 0x3c, l_dword);
644
645         l_dword = pci_read_config32(k8_f2, 0x94);
646         if(l_dword & (1<<22))
647                 set_nbmc_enable_bits(nb_dev, 0x3c, 0, 1<<16);
648         else
649                 set_nbmc_enable_bits(nb_dev, 0x3c, 1<<16, 0);
650
651         if(l_dword & (1<<8))
652                 set_nbmc_enable_bits(nb_dev, 0x3c, 0, 1<<17);
653         else
654                 set_nbmc_enable_bits(nb_dev, 0x3c, 1<<17, 0);
655
656         l_dword = pci_read_config32(k8_f2, 0x90);
657         if(l_dword & (1<<10))
658                 set_nbmc_enable_bits(nb_dev, 0x3c, 0, 1<<18);
659         else
660                 set_nbmc_enable_bits(nb_dev, 0x3c, 1<<18, 0);
661
662         /* Set UMA in the 780 side. */
663         /* UMA start address, size. */
664         /* The same value in spite of system memory size. */
665         nbmc_write_index(nb_dev, 0x10, 0xcfffc000);
666         nbmc_write_index(nb_dev, 0x11, uma_memory_base);
667         nbmc_write_index(nb_dev, 0x12, 0);
668         nbmc_write_index(nb_dev, 0xf0, 256);
669         /* GFX_InitUMA finished. */
670 #else
671         /* GFX_InitSP. */
672         /* SP memory:Hynix HY5TQ1G631ZNFP. 128MB = 64M * 16. 667MHz. DDR3. */
673
674         /* Enable Async mode. */
675         set_nbmc_enable_bits(nb_dev, 0x06, 7<<8, 1<<8);
676         set_nbmc_enable_bits(nb_dev, 0x08, 1<<10, 0);
677         /* The last item in AsynchMclkTaskFileIndex. Why? */
678         /* MC_MPLL_CONTROL2. */
679         nbmc_write_index(nb_dev, 0x07, 0x40100028);
680         /* MC_MPLL_DIV_CONTROL. */
681         nbmc_write_index(nb_dev, 0x0b, 0x00000028);
682         /* MC_MPLL_FREQ_CONTROL. */
683         set_nbmc_enable_bits(nb_dev, 0x09, 3<<12|15<<16|15<<8, 1<<12|4<<16|0<<8);
684         /* MC_MPLL_CONTROL3. For PM. */
685         set_nbmc_enable_bits(nb_dev, 0x08, 0xff<<13, 1<<13|1<<18);
686         /* MPLL_CAL_TRIGGER. */
687         set_nbmc_enable_bits(nb_dev, 0x06, 0, 1<<0);
688         udelay(200); /* time is long enough? */
689         set_nbmc_enable_bits(nb_dev, 0x06, 0, 1<<1);
690         set_nbmc_enable_bits(nb_dev, 0x06, 1<<0, 0);
691         /* MCLK_SRC_USE_MPLL. */
692         set_nbmc_enable_bits(nb_dev, 0x02, 0, 1<<20);
693
694         /* Pre Init MC. */
695         nbmc_write_index(nb_dev, 0x01, 0x88108280);
696         set_nbmc_enable_bits(nb_dev, 0x02, ~(1<<20), 0x00030200);
697         nbmc_write_index(nb_dev, 0x04, 0x08881018);
698         nbmc_write_index(nb_dev, 0x05, 0x000000bb);
699         nbmc_write_index(nb_dev, 0x0c, 0x0f00001f);
700         nbmc_write_index(nb_dev, 0xa1, 0x01f10000);
701         /* MCA_INIT_DLL_PM. */
702         set_nbmc_enable_bits(nb_dev, 0xc9, 1<<24, 1<<24);
703         nbmc_write_index(nb_dev, 0xa2, 0x74f20000);
704         nbmc_write_index(nb_dev, 0xa3, 0x8af30000);
705         nbmc_write_index(nb_dev, 0xaf, 0x47d0a41c);
706         nbmc_write_index(nb_dev, 0xb0, 0x88800130);
707         nbmc_write_index(nb_dev, 0xb1, 0x00000040);
708         nbmc_write_index(nb_dev, 0xb4, 0x41247000);
709         nbmc_write_index(nb_dev, 0xb5, 0x00066664);
710         nbmc_write_index(nb_dev, 0xb6, 0x00000022);
711         nbmc_write_index(nb_dev, 0xb7, 0x00000044);
712         nbmc_write_index(nb_dev, 0xb8, 0xbbbbbbbb);
713         nbmc_write_index(nb_dev, 0xb9, 0xbbbbbbbb);
714         nbmc_write_index(nb_dev, 0xba, 0x55555555);
715         nbmc_write_index(nb_dev, 0xc1, 0x00000000);
716         nbmc_write_index(nb_dev, 0xc2, 0x00000000);
717         nbmc_write_index(nb_dev, 0xc3, 0x80006b00);
718         nbmc_write_index(nb_dev, 0xc4, 0x00066664);
719         nbmc_write_index(nb_dev, 0xc5, 0x00000000);
720         nbmc_write_index(nb_dev, 0xd2, 0x00000022);
721         nbmc_write_index(nb_dev, 0xd3, 0x00000044);
722         nbmc_write_index(nb_dev, 0xd6, 0x00050005);
723         nbmc_write_index(nb_dev, 0xd7, 0x00000000);
724         nbmc_write_index(nb_dev, 0xd8, 0x00700070);
725         nbmc_write_index(nb_dev, 0xd9, 0x00700070);
726         nbmc_write_index(nb_dev, 0xe0, 0x00200020);
727         nbmc_write_index(nb_dev, 0xe1, 0x00200020);
728         nbmc_write_index(nb_dev, 0xe8, 0x00200020);
729         nbmc_write_index(nb_dev, 0xe9, 0x00200020);
730         nbmc_write_index(nb_dev, 0xe0, 0x00180018);
731         nbmc_write_index(nb_dev, 0xe1, 0x00180018);
732         nbmc_write_index(nb_dev, 0xe8, 0x00180018);
733         nbmc_write_index(nb_dev, 0xe9, 0x00180018);
734
735         /* Misc options. */
736         /* Memory Termination. */
737         set_nbmc_enable_bits(nb_dev, 0xa1, 0x0ff, 0x044);
738         set_nbmc_enable_bits(nb_dev, 0xb4, 0xf00, 0xb00);
739 #if 0
740         /* Controller Termation. */
741         set_nbmc_enable_bits(nb_dev, 0xb1, 0x77770000, 0x77770000);
742 #endif
743
744         /* OEM Init MC. 667MHz. */
745         nbmc_write_index(nb_dev, 0xa8, 0x7a5aaa78);
746         nbmc_write_index(nb_dev, 0xa9, 0x514a2319);
747         nbmc_write_index(nb_dev, 0xaa, 0x54400520);
748         nbmc_write_index(nb_dev, 0xab, 0x441460ff);
749         nbmc_write_index(nb_dev, 0xa0, 0x20f00a48);
750         set_nbmc_enable_bits(nb_dev, 0xa2, ~(0xffffffc7), 0x10);
751         nbmc_write_index(nb_dev, 0xb2, 0x00000303);
752         set_nbmc_enable_bits(nb_dev, 0xb1, ~(0xffffff70), 0x45);
753         /* Do it later. */
754         /* set_nbmc_enable_bits(nb_dev, 0xac, ~(0xfffffff0), 0x0b); */
755
756         /* Init PM timing. */
757         for(i=0; i<4; i++)
758         {
759                 l_dword = nbmc_read_index(nb_dev, 0xa0+i);
760                 nbmc_write_index(nb_dev, 0xc8+i, l_dword);
761         }
762         for(i=0; i<4; i++)
763         {
764                 l_dword = nbmc_read_index(nb_dev, 0xa8+i);
765                 nbmc_write_index(nb_dev, 0xcc+i, l_dword);
766         }
767         l_dword = nbmc_read_index(nb_dev, 0xb1);
768         set_nbmc_enable_bits(nb_dev, 0xc8, 0xff<<24, ((l_dword&0x0f)<<24)|((l_dword&0xf00)<<20));
769
770         /* Init MC FB. */
771         /* FB_Start = ; FB_End = ; iSpSize = 0x0080, 128MB. */
772         nbmc_write_index(nb_dev, 0x11, 0x40000000);
773         FB_Start = 0xc00 + 0x080;
774         FB_End = 0xc00 + 0x080;
775         nbmc_write_index(nb_dev, 0x10, (((FB_End&0xfff)<<20)-0x10000)|(((FB_Start&0xfff)-0x080)<<4));
776         set_nbmc_enable_bits(nb_dev, 0x0d, ~0x000ffff0, (FB_Start&0xfff)<<20);
777         nbmc_write_index(nb_dev, 0x0f, 0);
778         nbmc_write_index(nb_dev, 0x0e, (FB_Start&0xfff)|(0xaaaa<<12));
779 #endif
780
781         /* GFX_InitSP finished. */
782 }
783
784 static struct pci_operations lops_pci = {
785         .set_subsystem = pci_dev_set_subsystem,
786 };
787
788 static struct device_operations pcie_ops = {
789         .read_resources = rs780_gfx_read_resources,
790         .set_resources = pci_dev_set_resources,
791         .enable_resources = pci_dev_enable_resources,
792         .init = internal_gfx_pci_dev_init,      /* The option ROM initializes the device. rs780_gfx_init, */
793         .scan_bus = 0,
794         .enable = rs780_internal_gfx_enable,
795         .ops_pci = &lops_pci,
796 };
797
798 /*
799  * We should list all of them here.
800  * */
801 static const struct pci_driver pcie_driver_780 __pci_driver = {
802         .ops = &pcie_ops,
803         .vendor = PCI_VENDOR_ID_ATI,
804         .device = PCI_DEVICE_ID_ATI_RS780_INT_GFX,
805 };
806
807 static const struct pci_driver pcie_driver_780c __pci_driver = {
808         .ops = &pcie_ops,
809         .vendor = PCI_VENDOR_ID_ATI,
810         .device = PCI_DEVICE_ID_ATI_RS780C_INT_GFX,
811 };
812 static const struct pci_driver pcie_driver_780m __pci_driver = {
813         .ops = &pcie_ops,
814         .vendor = PCI_VENDOR_ID_ATI,
815         .device = PCI_DEVICE_ID_ATI_RS780M_INT_GFX,
816 };
817 static const struct pci_driver pcie_driver_780mc __pci_driver = {
818         .ops = &pcie_ops,
819         .vendor = PCI_VENDOR_ID_ATI,
820         .device = PCI_DEVICE_ID_ATI_RS780MC_INT_GFX,
821 };
822 static const struct pci_driver pcie_driver_780e __pci_driver = {
823         .ops = &pcie_ops,
824         .vendor = PCI_VENDOR_ID_ATI,
825         .device = PCI_DEVICE_ID_ATI_RS780E_INT_GFX,
826 };
827 static const struct pci_driver pcie_driver_785g __pci_driver = {
828         .ops = &pcie_ops,
829         .vendor = PCI_VENDOR_ID_ATI,
830         .device = PCI_DEVICE_ID_ATI_RS785G_INT_GFX,
831 };
832
833 /* step 12 ~ step 14 from rpr */
834 static void single_port_configuration(device_t nb_dev, device_t dev)
835 {
836         u8 result, width;
837         u32 reg32;
838         struct southbridge_amd_rs780_config *cfg =
839             (struct southbridge_amd_rs780_config *)nb_dev->chip_info;
840
841         printk(BIOS_DEBUG, "rs780_gfx_init single_port_configuration.\n");
842
843         /* step 12 training, releases hold training for GFX port 0 (device 2) */
844         PcieReleasePortTraining(nb_dev, dev, 2);
845         result = PcieTrainPort(nb_dev, dev, 2);
846         printk(BIOS_DEBUG, "rs780_gfx_init single_port_configuration step12.\n");
847
848         /* step 13 Power Down Control */
849         /* step 13.1 Enables powering down transmitter and receiver pads along with PLL macros. */
850         set_pcie_enable_bits(nb_dev, 0x40, 1 << 0, 1 << 0);
851
852         /* step 13.a Link Training was NOT successful */
853         if (!result) {
854                 set_nbmisc_enable_bits(nb_dev, 0x8, 0, 0x3 << 4); /* prevent from training. */
855                 set_nbmisc_enable_bits(nb_dev, 0xc, 0, 0x3 << 2); /* hide the GFX bridge. */
856                 if (cfg->gfx_tmds)
857                         nbpcie_ind_write_index(nb_dev, 0x65, 0xccf0f0);
858                 else {
859                         nbpcie_ind_write_index(nb_dev, 0x65, 0xffffffff);
860                         set_nbmisc_enable_bits(nb_dev, 0x7, 1 << 3, 1 << 3);
861                 }
862         } else {                /* step 13.b Link Training was successful */
863                 set_pcie_enable_bits(dev, 0xA2, 0xFF, 0x1);
864                 reg32 = nbpcie_p_read_index(dev, 0x29);
865                 width = reg32 & 0xFF;
866                 printk(BIOS_DEBUG, "GFX Inactive Lanes = 0x%x.\n", width);
867                 switch (width) {
868                 case 1:
869                 case 2:
870                         nbpcie_ind_write_index(nb_dev, 0x65,
871                                                cfg->gfx_lane_reversal ? 0x7f7f : 0xccfefe);
872                         break;
873                 case 4:
874                         nbpcie_ind_write_index(nb_dev, 0x65,
875                                                cfg->gfx_lane_reversal ? 0x3f3f : 0xccfcfc);
876                         break;
877                 case 8:
878                         nbpcie_ind_write_index(nb_dev, 0x65,
879                                                cfg->gfx_lane_reversal ? 0x0f0f : 0xccf0f0);
880                         break;
881                 }
882         }
883         printk(BIOS_DEBUG, "rs780_gfx_init single_port_configuration step13.\n");
884
885         /* step 14 Reset Enumeration Timer, disables the shortening of the enumeration timer */
886         set_pcie_enable_bits(dev, 0x70, 1 << 19, 1 << 19);
887         printk(BIOS_DEBUG, "rs780_gfx_init single_port_configuration step14.\n");
888 }
889
890 static void dual_port_configuration(device_t nb_dev, device_t dev)
891 {
892         u8 result, width;
893         u32 reg32, dev_ind = dev->path.pci.devfn >> 3;
894         struct southbridge_amd_rs780_config *cfg =
895                     (struct southbridge_amd_rs780_config *)nb_dev->chip_info;
896
897         /* 5.4.1.2 Dual Port Configuration */
898         set_nbmisc_enable_bits(nb_dev, 0x36, 1 << 31, 1 << 31);
899         set_nbmisc_enable_bits(nb_dev, 0x08, 0xF << 8, 0x5 << 8);
900         set_nbmisc_enable_bits(nb_dev, 0x36, 1 << 31, 0 << 31);
901
902         /* 5.7. Training for Device 2 */
903         /* 5.7.1. Releases hold training for GFX port 0 (device 2) */
904         PcieReleasePortTraining(nb_dev, dev, dev_ind);
905         /* 5.7.2- 5.7.9. PCIE Link Training Sequence */
906         result = PcieTrainPort(nb_dev, dev, dev_ind);
907
908         /* Power Down Control for Device 2 */
909         /* Link Training was NOT successful */
910         if (!result) {
911                 /* Powers down all lanes for port A */
912                 /* nbpcie_ind_write_index(nb_dev, 0x65, 0x0f0f); */
913                 /* Note: I have to disable the slot where there isnt a device,
914                  * otherwise the system will hang. I dont know why. */
915                 set_nbmisc_enable_bits(nb_dev, 0x0c, 1 << dev_ind, 1 << dev_ind);
916
917         } else {                /* step 16.b Link Training was successful */
918                 reg32 = nbpcie_p_read_index(dev, 0xa2);
919                 width = (reg32 >> 4) & 0x7;
920                 printk(BIOS_DEBUG, "GFX LC_LINK_WIDTH = 0x%x.\n", width);
921                 switch (width) {
922                 case 1:
923                 case 2:
924                         nbpcie_ind_write_index(nb_dev, 0x65,
925                                                cfg->gfx_lane_reversal ? 0x0707 : 0x0e0e);
926                         break;
927                 case 4:
928                         nbpcie_ind_write_index(nb_dev, 0x65,
929                                                cfg->gfx_lane_reversal ? 0x0303 : 0x0c0c);
930                         break;
931                 }
932         }
933 }
934
935 /* For single port GFX configuration Only
936 * width:
937 *       000 = x16
938 *       001 = x1
939 *       010 = x2
940 *       011 = x4
941 *       100 = x8
942 *       101 = x12 (not supported)
943 *       110 = x16
944 */
945 static void dynamic_link_width_control(device_t nb_dev, device_t dev, u8 width)
946 {
947         u32 reg32;
948         device_t sb_dev;
949         struct southbridge_amd_rs780_config *cfg =
950             (struct southbridge_amd_rs780_config *)nb_dev->chip_info;
951
952         /* step 5.9.1.1 */
953         reg32 = nbpcie_p_read_index(dev, 0xa2);
954
955         /* step 5.9.1.2 */
956         set_pcie_enable_bits(nb_dev, 0x40, 1 << 0, 1 << 0);
957         /* step 5.9.1.3 */
958         set_pcie_enable_bits(dev, 0xa2, 3 << 0, width << 0);
959         /* step 5.9.1.4 */
960         set_pcie_enable_bits(dev, 0xa2, 1 << 8, 1 << 8);
961         /* step 5.9.2.4 */
962         if (0 == cfg->gfx_reconfiguration)
963                 set_pcie_enable_bits(dev, 0xa2, 1 << 11, 1 << 11);
964
965         /* step 5.9.1.5 */
966         do {
967                 reg32 = nbpcie_p_read_index(dev, 0xa2);
968         }
969         while (reg32 & 0x100);
970
971         /* step 5.9.1.6 */
972         sb_dev = dev_find_slot(0, PCI_DEVFN(8, 0));
973         do {
974                 reg32 = pci_ext_read_config32(nb_dev, sb_dev,
975                                           PCIE_VC0_RESOURCE_STATUS);
976         } while (reg32 & VC_NEGOTIATION_PENDING);
977
978         /* step 5.9.1.7 */
979         reg32 = nbpcie_p_read_index(dev, 0xa2);
980         if (((reg32 & 0x70) >> 4) != 0x6) {
981                 /* the unused lanes should be powered off. */
982         }
983
984         /* step 5.9.1.8 */
985         set_pcie_enable_bits(nb_dev, 0x40, 1 << 0, 0 << 0);
986 }
987
988 /*
989 * GFX Core initialization, dev2, dev3
990 */
991 void rs780_gfx_init(device_t nb_dev, device_t dev, u32 port)
992 {
993         u32 reg32;
994         struct southbridge_amd_rs780_config *cfg =
995             (struct southbridge_amd_rs780_config *)nb_dev->chip_info;
996
997         printk(BIOS_DEBUG, "rs780_gfx_init, nb_dev=0x%p, dev=0x%p, port=0x%x.\n",
998                     nb_dev, dev, port);
999
1000         /* GFX Core Initialization */
1001         //if (port == 2) return;
1002
1003         /* step 2, TMDS, (only need if CMOS option is enabled) */
1004         if (cfg->gfx_tmds) {
1005         }
1006
1007 #if 1                           /* external clock mode */
1008         /* table 5-22, 5.9.1. REFCLK */
1009         /* 5.9.1.1. Disables the GFX REFCLK transmitter so that the GFX
1010          * REFCLK PAD can be driven by an external source. */
1011         /* 5.9.1.2. Enables GFX REFCLK receiver to receive the REFCLK from an external source. */
1012         set_nbmisc_enable_bits(nb_dev, 0x38, 1 << 29 | 1 << 28, 0 << 29 | 1 << 28);
1013
1014         /* 5.9.1.3 Selects the GFX REFCLK to be the source for PLL A. */
1015         /* 5.9.1.4 Selects the GFX REFCLK to be the source for PLL B. */
1016         /* 5.9.1.5 Selects the GFX REFCLK to be the source for PLL C. */
1017         set_nbmisc_enable_bits(nb_dev, 0x28, 3 << 6 | 3 << 8 | 3 << 10,
1018                                1 << 6 | 1 << 8 | 1 << 10);
1019         reg32 = nbmisc_read_index(nb_dev, 0x28);
1020         printk(BIOS_DEBUG, "misc 28 = %x\n", reg32);
1021
1022         /* 5.9.1.6.Selects the single ended GFX REFCLK to be the source for core logic. */
1023         set_nbmisc_enable_bits(nb_dev, 0x6C, 1 << 31, 1 << 31);
1024 #else                           /* internal clock mode */
1025         /* table 5-23, 5.9.1. REFCLK */
1026         /* 5.9.1.1. Enables the GFX REFCLK transmitter so that the GFX
1027          * REFCLK PAD can be driven by the SB REFCLK. */
1028         /* 5.9.1.2. Disables GFX REFCLK receiver from receiving the
1029          * REFCLK from an external source.*/
1030         set_nbmisc_enable_bits(nb_dev, 0x38, 1 << 29 | 1 << 28, 1 << 29 | 0 << 28);
1031
1032         /* 5.9.1.3 Selects the GFX REFCLK to be the source for PLL A. */
1033         /* 5.9.1.4 Selects the GFX REFCLK to be the source for PLL B. */
1034         /* 5.9.1.5 Selects the GFX REFCLK to be the source for PLL C. */
1035         set_nbmisc_enable_bits(nb_dev, 0x28, 3 << 6 | 3 << 8 | 3 << 10,
1036                                0);
1037         reg32 = nbmisc_read_index(nb_dev, 0x28);
1038         printk(BIOS_DEBUG, "misc 28 = %x\n", reg32);
1039
1040         /* 5.9.1.6.Selects the single ended GFX REFCLK to be the source for core logic. */
1041         set_nbmisc_enable_bits(nb_dev, 0x6C, 1 << 31, 0 << 31);
1042 #endif
1043
1044         /* step 5.9.3, GFX overclocking, (only need if CMOS option is enabled) */
1045         /* 5.9.3.1. Increases PLL BW for 6G operation.*/
1046         /* set_nbmisc_enable_bits(nb_dev, 0x36, 0x3FF << 4, 0xB5 << 4); */
1047         /* skip */
1048
1049         /* step 5.9.4, reset the GFX link */
1050         /* step 5.9.4.1 asserts both calibration reset and global reset */
1051         set_nbmisc_enable_bits(nb_dev, 0x8, 0x3 << 14, 0x3 << 14);
1052
1053         /* step 5.9.4.2 de-asserts calibration reset */
1054         set_nbmisc_enable_bits(nb_dev, 0x8, 1 << 14, 0 << 14);
1055
1056         /* step 5.9.4.3 wait for at least 200us */
1057         udelay(300);
1058
1059         /* step 5.9.4.4 de-asserts global reset */
1060         set_nbmisc_enable_bits(nb_dev, 0x8, 1 << 15, 0 << 15);
1061
1062         /* 5.9.5 Reset PCIE_GFX Slot */
1063         /* It is done in mainboard.c */
1064         set_pcie_reset();
1065         mdelay(1);
1066         set_pcie_dereset();
1067
1068         /* step 5.9.8 program PCIE memory mapped configuration space */
1069         /* done by enable_pci_bar3() before */
1070
1071         /* step 7 compliance state, (only need if CMOS option is enabled) */
1072         /* the compliance stete is just for test. refer to 4.2.5.2 of PCIe specification */
1073         if (cfg->gfx_compliance) {
1074                 /* force compliance */
1075                 set_nbmisc_enable_bits(nb_dev, 0x32, 1 << 6, 1 << 6);
1076                 /* release hold training for device 2. GFX initialization is done. */
1077                 set_nbmisc_enable_bits(nb_dev, 0x8, 1 << 4, 0 << 4);
1078                 dynamic_link_width_control(nb_dev, dev, cfg->gfx_link_width);
1079                 printk(BIOS_DEBUG, "rs780_gfx_init step7.\n");
1080                 return;
1081         }
1082
1083         /* 5.9.12 Core Initialization. */
1084         /* 5.9.12.1 sets RCB timeout to be 25ms */
1085         /* 5.9.12.2. RCB Cpl timeout on link down. */
1086         set_pcie_enable_bits(dev, 0x70, 7 << 16 | 1 << 19, 4 << 16 | 1 << 19);
1087         printk(BIOS_DEBUG, "rs780_gfx_init step5.9.12.1.\n");
1088
1089         /* step 5.9.12.3 disables slave ordering logic */
1090         set_pcie_enable_bits(nb_dev, 0x20, 1 << 8, 1 << 8);
1091         printk(BIOS_DEBUG, "rs780_gfx_init step5.9.12.3.\n");
1092
1093         /* step 5.9.12.4 sets DMA payload size to 64 bytes */
1094         set_pcie_enable_bits(nb_dev, 0x10, 7 << 10, 4 << 10);
1095         /* 5.9.12.5. Blocks DMA traffic during C3 state. */
1096         set_pcie_enable_bits(dev, 0x10, 1 << 0, 0 << 0);
1097
1098         /* 5.9.12.6. Disables RC ordering logic */
1099         set_pcie_enable_bits(nb_dev, 0x20, 1 << 9, 1 << 9);
1100
1101         /* Enabels TLP flushing. */
1102         /* Note: It is got from RS690. The system will hang without this action. */
1103         set_pcie_enable_bits(dev, 0x20, 1 << 19, 0 << 19);
1104
1105         /* 5.9.12.7. Ignores DLLPs during L1 so that txclk can be turned off */
1106         set_pcie_enable_bits(nb_dev, 0x2, 1 << 0, 1 << 0);
1107
1108         /* 5.9.12.8 Prevents LC to go from L0 to Rcv_L0s if L1 is armed. */
1109         set_pcie_enable_bits(dev, 0xA1, 1 << 11, 1 << 11);
1110
1111         /* 5.9.12.9 CMGOOD_OVERRIDE for end point initiated lane degradation. */
1112         set_nbmisc_enable_bits(nb_dev, 0x6a, 1 << 17, 1 << 17);
1113         printk(BIOS_DEBUG, "rs780_gfx_init step5.9.12.9.\n");
1114
1115         /* 5.9.12.10 Sets the timer in Config state from 20us to */
1116         /* 5.9.12.11 De-asserts RX_EN in L0s. */
1117         /* 5.9.12.12 Enables de-assertion of PG2RX_CR_EN to lock clock
1118          * recovery parameter when lane is in electrical idle in L0s.*/
1119         set_pcie_enable_bits(dev, 0xB1, 1 << 23 | 1 << 19 | 1 << 28, 1 << 23 | 1 << 19 | 1 << 28);
1120
1121         /* 5.9.12.13. Turns off offset calibration. */
1122         /* 5.9.12.14. Enables Rx Clock gating in CDR */
1123         set_nbmisc_enable_bits(nb_dev, 0x34, 1 << 10/* | 1 << 22 */, 1 << 10/* | 1 << 22 */);
1124
1125         /* 5.9.12.15. Sets number of TX Clocks to drain TX Pipe to 3. */
1126         set_pcie_enable_bits(dev, 0xA0, 0xF << 4, 3 << 4);
1127
1128         /* 5.9.12.16. Lets PI use Electrical Idle from PHY when
1129          * turning off PLL in L1 at Gen2 speed instead Inferred Electrical Idle. */
1130         set_pcie_enable_bits(nb_dev, 0x40, 3 << 14, 2 << 14);
1131
1132         /* 5.9.12.17. Prevents the Electrical Idle from causing a transition from Rcv_L0 to Rcv_L0s. */
1133         set_pcie_enable_bits(dev, 0xB1, 1 << 20, 1 << 20);
1134
1135         /* 5.9.12.18. Prevents the LTSSM from going to Rcv_L0s if it has already
1136          * acknowledged a request to go to L1. */
1137         set_pcie_enable_bits(dev, 0xA1, 1 << 11, 1 << 11);
1138
1139         /* 5.9.12.19. LDSK only taking deskew on deskewing error detect */
1140         set_pcie_enable_bits(nb_dev, 0x40, 1 << 28, 0 << 28);
1141
1142         /* 5.9.12.20. Bypasses lane de-skew logic if in x1 */
1143         set_pcie_enable_bits(nb_dev, 0xC2, 1 << 14, 1 << 14);
1144
1145         /* 5.9.12.21. Sets Electrical Idle Threshold. */
1146         set_nbmisc_enable_bits(nb_dev, 0x35, 3 << 21, 2 << 21);
1147
1148         /* 5.9.12.22. Advertises -6 dB de-emphasis value in TS1 Data Rate Identifier
1149          * Only if CMOS Option in section. skip */
1150
1151         /* 5.9.12.23. Disables GEN2 capability of the device. */
1152         set_pcie_enable_bits(dev, 0xA4, 1 << 0, 0 << 0);
1153
1154         /* 5.9.12.24.Disables advertising Upconfigure Support. */
1155         set_pcie_enable_bits(dev, 0xA2, 1 << 13, 1 << 13);
1156
1157         /* 5.9.12.25. No comment in RPR. */
1158         set_nbmisc_enable_bits(nb_dev, 0x39, 1 << 10, 0 << 10);
1159
1160         /* 5.9.12.26. This capacity is required since links wider than x1 and/or multiple link
1161          * speed are supported */
1162         set_pcie_enable_bits(nb_dev, 0xC1, 1 << 0, 1 << 0);
1163
1164         /* 5.9.12.27. Enables NVG86 ECO. A13 above only. */
1165         if (get_nb_rev(nb_dev) == REV_RS780_A12)                        /* A12 */
1166                 set_pcie_enable_bits(dev, 0x02, 1 << 11, 1 << 11);
1167
1168         /* 5.9.12.28 Hides and disables the completion timeout method. */
1169         set_pcie_enable_bits(nb_dev, 0xC1, 1 << 2, 0 << 2);
1170
1171         /* 5.9.12.29. Use the bif_core de-emphasis strength by default. */
1172         /* set_nbmisc_enable_bits(nb_dev, 0x36, 1 << 28, 1 << 28); */
1173
1174         /* 5.9.12.30. Set TX arbitration algorithm to round robin */
1175         set_pcie_enable_bits(nb_dev, 0x1C,
1176                              1 << 0 | 0x1F << 1 | 0x1F << 6,
1177                              1 << 0 | 0x04 << 1 | 0x04 << 6);
1178
1179         /* Single-port/Dual-port configureation. */
1180         switch (cfg->gfx_dual_slot) {
1181         case 0:
1182                 /* step 1, lane reversal (only need if CMOS option is enabled) */
1183                 if (cfg->gfx_lane_reversal) {
1184                         set_nbmisc_enable_bits(nb_dev, 0x33, 1 << 2, 1 << 2);
1185                 }
1186                 printk(BIOS_DEBUG, "rs780_gfx_init step1.\n");
1187
1188                 printk(BIOS_DEBUG, "device = %x\n", dev->path.pci.devfn >> 3);
1189                 if((dev->path.pci.devfn >> 3) == 2) {
1190                         single_port_configuration(nb_dev, dev);
1191                 } else {
1192                         set_nbmisc_enable_bits(nb_dev, 0xc, 0, 0x2 << 2); /* hide the GFX bridge. */
1193                         printk(BIOS_INFO, "Single port. Do nothing.\n"); // If dev3
1194                 }
1195
1196                 break;
1197         case 1:
1198                 /* step 1, lane reversal (only need if CMOS option is enabled) */
1199                 if (cfg->gfx_lane_reversal) {
1200                         set_nbmisc_enable_bits(nb_dev, 0x33, 1 << 2, 1 << 2);
1201                         set_nbmisc_enable_bits(nb_dev, 0x33, 1 << 3, 1 << 3);
1202                 }
1203                 printk(BIOS_DEBUG, "rs780_gfx_init step1.\n");
1204                 /* step 1.1, dual-slot gfx configuration (only need if CMOS option is enabled) */
1205                 /* AMD calls the configuration CrossFire */
1206                 set_nbmisc_enable_bits(nb_dev, 0x0, 0xf << 8, 5 << 8);
1207                 printk(BIOS_DEBUG, "rs780_gfx_init step2.\n");
1208
1209                 printk(BIOS_DEBUG, "device = %x\n", dev->path.pci.devfn >> 3);
1210                 dual_port_configuration(nb_dev, dev);
1211                 break;
1212         default:
1213                 printk(BIOS_INFO, "Incorrect configuration of external GFX slot.\n");
1214                 break;
1215         }
1216 }