1201_ht_bus0_dev0_fidvid_core.diff
[coreboot.git] / src / northbridge / amd / amdk8 / misc_control.c
1 /* Turn off machine check triggers when reading
2  * pci space where there are no devices.
3  * This is necessary when scaning the bus for
4  * devices which is done by the kernel
5  *
6  * written in 2003 by Eric Biederman
7  * 
8  *  - Athlon64 workarounds by Stefan Reinauer
9  *  - "reset once" logic by Yinghai Lu
10  */
11
12 #include <console/console.h>
13 #include <device/device.h>
14 #include <device/pci.h>
15 #include <device/pci_ids.h>
16 #include <device/pci_ops.h>
17 #include <part/hard_reset.h>
18 #include <pc80/mc146818rtc.h>
19 #include <bitops.h>
20 #include <cpu/amd/model_fxx_rev.h>
21
22 #include "amdk8.h"
23
24 /**
25  * @brief Read resources for AGP aperture
26  *
27  * @param 
28  *
29  * There is only one AGP aperture resource needed. The resoruce is added to
30  * the northbridge of BSP.
31  *
32  * The same trick can be used to augment legacy VGA resources which can
33  * be detect by generic pci reousrce allocator for VGA devices.
34  * BAD: it is more tricky than I think, the resource allocation code is
35  * implemented in a way to NOT DOING legacy VGA resource allcation on
36  * purpose :-(.
37  */
38 static void mcf3_read_resources(device_t dev)
39 {
40         struct resource *resource;
41         unsigned char iommu;
42         /* Read the generic PCI resources */
43         pci_dev_read_resources(dev);
44
45         /* If we are not the first processor don't allocate the gart apeture */
46         if (dev->path.u.pci.devfn != PCI_DEVFN(0x18, 3)) {
47                 return;
48         }
49
50         iommu = 1;
51         get_option(&iommu, "iommu");
52
53         if (iommu) {
54                 /* Add a Gart apeture resource */
55                 resource = new_resource(dev, 0x94);
56                 resource->size = iommu?AGP_APERTURE_SIZE:1;
57                 resource->align = log2(resource->size);
58                 resource->gran  = log2(resource->size);
59                 resource->limit = 0xffffffff; /* 4G */
60                 resource->flags = IORESOURCE_MEM;
61         }
62 }
63
64 static void set_agp_aperture(device_t dev)
65 {
66         struct resource *resource;
67                 
68         resource = probe_resource(dev, 0x94);
69         if (resource) {
70                 device_t pdev;
71                 uint32_t gart_base, gart_acr;
72
73                 /* Remember this resource has been stored */
74                 resource->flags |= IORESOURCE_STORED;
75
76                 /* Find the size of the GART aperture */
77                 gart_acr = (0<<6)|(0<<5)|(0<<4)|((resource->gran - 25) << 1)|(0<<0);
78
79                 /* Get the base address */
80                 gart_base = ((resource->base) >> 25) & 0x00007fff;
81                 
82                 /* Update the other northbriges */
83                 pdev = 0;
84                 while((pdev = dev_find_device(PCI_VENDOR_ID_AMD, 0x1103, pdev))) {
85                         /* Store the GART size but don't enable it */
86                         pci_write_config32(pdev, 0x90, gart_acr);
87
88                         /* Store the GART base address */
89                         pci_write_config32(pdev, 0x94, gart_base);
90
91                         /* Don't set the GART Table base address */
92                         pci_write_config32(pdev, 0x98, 0);
93                         
94                         /* Report the resource has been stored... */
95                         report_resource_stored(pdev, resource, " <gart>");
96                 }
97         }
98 }
99
100 static void mcf3_set_resources(device_t dev)
101 {
102         /* Set the gart apeture */
103         set_agp_aperture(dev);
104
105         /* Set the generic PCI resources */
106         pci_dev_set_resources(dev);
107 }
108
109 static void misc_control_init(struct device *dev)
110 {
111         uint32_t cmd, cmd_ref;
112         int needs_reset;
113         struct device *f0_dev, *f2_dev;
114         
115         printk_debug("NB: Function 3 Misc Control.. ");
116         needs_reset = 0;
117
118         /* Disable Machine checks from Invalid Locations.
119          * This is needed for PC backwards compatibility.
120          */
121         cmd = pci_read_config32(dev, 0x44);
122         cmd |= (1<<6) | (1<<25);
123         pci_write_config32(dev, 0x44, cmd );
124         if (is_cpu_pre_c0()) {
125
126                 /* Errata 58
127                  * Disable CPU low power states C2, C1 and throttling 
128                  */
129                 cmd = pci_read_config32(dev, 0x80);
130                 cmd &= ~(1<<0);
131                 pci_write_config32(dev, 0x80, cmd );
132                 cmd = pci_read_config32(dev, 0x84);
133                 cmd &= ~(1<<24);
134                 cmd &= ~(1<<8);
135                 pci_write_config32(dev, 0x84, cmd );
136
137                 /* Errata 66
138                  * Limit the number of downstream posted requests to 1 
139                  */
140                 cmd = pci_read_config32(dev, 0x70);
141                 if ((cmd & (3 << 0)) != 2) {
142                         cmd &= ~(3<<0);
143                         cmd |= (2<<0);
144                         pci_write_config32(dev, 0x70, cmd );
145                         needs_reset = 1;
146                 }
147                 cmd = pci_read_config32(dev, 0x7c);
148                 if ((cmd & (3 << 4)) != 0) {
149                         cmd &= ~(3<<4);
150                         cmd |= (0<<4);
151                         pci_write_config32(dev, 0x7c, cmd );
152                         needs_reset = 1;
153                 }
154                 /* Clock Power/Timing Low */
155                 cmd = pci_read_config32(dev, 0xd4);
156                 if (cmd != 0x000D0001) {
157                         cmd = 0x000D0001;
158                         pci_write_config32(dev, 0xd4, cmd);
159                         needs_reset = 1; /* Needed? */
160                 }
161         }
162         else if(is_cpu_pre_d0()) {
163                 uint32_t dcl;
164                 f2_dev = dev_find_slot(0, dev->path.u.pci.devfn - 3 + 2);
165                 /* Errata 98 
166                  * Set Clk Ramp Hystersis to 7
167                  * Clock Power/Timing Low
168                  */
169                 cmd_ref = 0x04e20707; /* Registered */
170                 dcl = pci_read_config32(f2_dev, DRAM_CONFIG_LOW);
171                 if (dcl & DCL_UnBufDimm) {
172                         cmd_ref = 0x000D0701; /* Unbuffered */
173                 }
174                 cmd = pci_read_config32(dev, 0xd4);
175                 if(cmd != cmd_ref) {
176                         pci_write_config32(dev, 0xd4, cmd_ref );
177                         needs_reset = 1; /* Needed? */
178                 }
179         }
180         /* Optimize the Link read pointers */
181         f0_dev = dev_find_slot(0, dev->path.u.pci.devfn - 3);
182         if (f0_dev) {
183                 int link;
184                 cmd_ref = cmd = pci_read_config32(dev, 0xdc);
185                 for(link = 0; link < 3; link++) {
186                         uint32_t link_type;
187                         unsigned reg;
188                         /* This works on an Athlon64 because unimplemented links return 0 */
189                         reg = 0x98 + (link * 0x20);
190                         link_type = pci_read_config32(f0_dev, reg);
191                         /* Only handle coherent link here please */
192                         if ((link_type & (LinkConnected|InitComplete|NonCoherent)) 
193                                 == (LinkConnected|InitComplete))
194                         {
195                                 cmd &= ~(0xff << (link *8));
196                                 /* FIXME this assumes the device on the other side is an AMD device */
197                                 cmd |= 0x25 << (link *8);
198                         }
199                 }
200                 if (cmd != cmd_ref) {
201                         pci_write_config32(dev, 0xdc, cmd);
202                         needs_reset = 1;
203                 }
204         }
205         else {
206                 printk_err("Missing f0 device!\n");
207         }
208         if (needs_reset) {
209                 printk_debug("resetting cpu\n");
210                 hard_reset();
211         }
212         printk_debug("done.\n");
213 }
214
215
216 static struct device_operations mcf3_ops  = {
217         .read_resources   = mcf3_read_resources,
218         .set_resources    = mcf3_set_resources,
219         .enable_resources = pci_dev_enable_resources,
220         .init             = misc_control_init,
221         .scan_bus         = 0,
222         .ops_pci          = 0,
223 };
224
225 static struct pci_driver mcf3_driver __pci_driver = {
226         .ops    = &mcf3_ops,
227         .vendor = PCI_VENDOR_ID_AMD,
228         .device = 0x1103,
229 };