blob: eb63ead133207fa927c5e893bdc25c5dfda4a77f [file] [log] [blame]
zbao2c08f6a2012-07-02 15:32:58 +08001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2012 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#include <console/console.h>
21#include <arch/io.h>
22#include <stdint.h>
23#include <device/device.h>
24#include <device/pci.h>
25#include <device/pci_ids.h>
26#include <device/hypertransport.h>
27#include <stdlib.h>
28#include <string.h>
Ronald G. Minnich5079a0d2012-11-27 11:32:38 -080029#include <lib.h>
zbao2c08f6a2012-07-02 15:32:58 +080030#include <cpu/cpu.h>
31#include <cbmem.h>
Martin Roth73e86a82013-01-17 16:28:30 -070032#include <AGESA.h>
zbao2c08f6a2012-07-02 15:32:58 +080033
34#include <cpu/x86/lapic.h>
Kyösti Mälkkidbc47392012-08-05 12:11:40 +030035#include <cpu/amd/mtrr.h>
zbao2c08f6a2012-07-02 15:32:58 +080036
37#include <Porting.h>
zbao2c08f6a2012-07-02 15:32:58 +080038#include <Options.h>
39#include <Topology.h>
40#include <cpu/amd/amdfam15.h>
41#include <cpuRegisters.h>
42#include "agesawrapper.h"
zbao2c08f6a2012-07-02 15:32:58 +080043#include "northbridge.h"
zbao2c08f6a2012-07-02 15:32:58 +080044
45#define MAX_NODE_NUMS (MAX_NODES * MAX_DIES)
46
47#if (defined CONFIG_EXT_CONF_SUPPORT) && CONFIG_EXT_CONF_SUPPORT == 1
48#error CONFIG_EXT_CONF_SUPPORT == 1 not support anymore!
49#endif
50
51typedef struct dram_base_mask {
52 u32 base; //[47:27] at [28:8]
53 u32 mask; //[47:27] at [28:8] and enable at bit 0
54} dram_base_mask_t;
55
56static unsigned node_nums;
57static unsigned sblink;
58static device_t __f0_dev[MAX_NODE_NUMS];
59static device_t __f1_dev[MAX_NODE_NUMS];
60static device_t __f2_dev[MAX_NODE_NUMS];
61static device_t __f4_dev[MAX_NODE_NUMS];
62static unsigned fx_devs = 0;
63
64static dram_base_mask_t get_dram_base_mask(u32 nodeid)
65{
66 device_t dev;
67 dram_base_mask_t d;
68 dev = __f1_dev[0];
69 u32 temp;
70 temp = pci_read_config32(dev, 0x44 + (nodeid << 3)); //[39:24] at [31:16]
71 d.mask = ((temp & 0xfff80000)>>(8+3)); // mask out DramMask [26:24] too
72 temp = pci_read_config32(dev, 0x144 + (nodeid <<3)) & 0xff; //[47:40] at [7:0]
73 d.mask |= temp<<21;
74 temp = pci_read_config32(dev, 0x40 + (nodeid << 3)); //[39:24] at [31:16]
75 d.mask |= (temp & 1); // enable bit
76 d.base = ((temp & 0xfff80000)>>(8+3)); // mask out DramBase [26:24) too
77 temp = pci_read_config32(dev, 0x140 + (nodeid <<3)) & 0xff; //[47:40] at [7:0]
78 d.base |= temp<<21;
79 return d;
80}
81
82static void set_io_addr_reg(device_t dev, u32 nodeid, u32 linkn, u32 reg,
83 u32 io_min, u32 io_max)
84{
85 u32 i;
86 u32 tempreg;
87 /* io range allocation */
88 tempreg = (nodeid&0xf) | ((nodeid & 0x30)<<(8-4)) | (linkn<<4) | ((io_max&0xf0)<<(12-4)); //limit
89 for (i=0; i<node_nums; i++)
90 pci_write_config32(__f1_dev[i], reg+4, tempreg);
91 tempreg = 3 /*| ( 3<<4)*/ | ((io_min&0xf0)<<(12-4)); //base :ISA and VGA ?
92#if 0
93 // FIXME: can we use VGA reg instead?
94 if (dev->link[link].bridge_ctrl & PCI_BRIDGE_CTL_VGA) {
95 printk(BIOS_SPEW, "%s, enabling legacy VGA IO forwarding for %s link %s\n",
96 __func__, dev_path(dev), link);
97 tempreg |= PCI_IO_BASE_VGA_EN;
98 }
99 if (dev->link[link].bridge_ctrl & PCI_BRIDGE_CTL_NO_ISA) {
100 tempreg |= PCI_IO_BASE_NO_ISA;
101 }
102#endif
103 for (i=0; i<node_nums; i++)
104 pci_write_config32(__f1_dev[i], reg, tempreg);
105}
106
107static void set_mmio_addr_reg(u32 nodeid, u32 linkn, u32 reg, u32 index, u32 mmio_min, u32 mmio_max, u32 nodes)
108{
109 u32 i;
110 u32 tempreg;
111 /* io range allocation */
112 tempreg = (nodeid&0xf) | (linkn<<4) | (mmio_max&0xffffff00); //limit
113 for (i=0; i<nodes; i++)
114 pci_write_config32(__f1_dev[i], reg+4, tempreg);
115 tempreg = 3 | (nodeid & 0x30) | (mmio_min&0xffffff00);
116 for (i=0; i<node_nums; i++)
117 pci_write_config32(__f1_dev[i], reg, tempreg);
118}
119
120static device_t get_node_pci(u32 nodeid, u32 fn)
121{
zbaod4627362012-07-23 19:49:40 +0800122#if MAX_NODE_NUMS + CONFIG_CDB >= 32
123 if ((CONFIG_CDB + nodeid) < 32) {
zbao2c08f6a2012-07-02 15:32:58 +0800124 return dev_find_slot(CONFIG_CBB, PCI_DEVFN(CONFIG_CDB + nodeid, fn));
125 } else {
126 return dev_find_slot(CONFIG_CBB-1, PCI_DEVFN(CONFIG_CDB + nodeid - 32, fn));
127 }
128#else
129 return dev_find_slot(CONFIG_CBB, PCI_DEVFN(CONFIG_CDB + nodeid, fn));
130#endif
131}
132
133static void get_fx_devs(void)
134{
135 int i;
136 for (i = 0; i < MAX_NODE_NUMS; i++) {
137 __f0_dev[i] = get_node_pci(i, 0);
138 __f1_dev[i] = get_node_pci(i, 1);
139 __f2_dev[i] = get_node_pci(i, 2);
140 __f4_dev[i] = get_node_pci(i, 4);
141 if (__f0_dev[i] != NULL && __f1_dev[i] != NULL)
142 fx_devs = i+1;
143 }
144 if (__f1_dev[0] == NULL || __f0_dev[0] == NULL || fx_devs == 0) {
145 die("Cannot find 0:0x18.[0|1]\n");
146 }
147 printk(BIOS_DEBUG, "fx_devs=0x%x\n", fx_devs);
148}
149
150static u32 f1_read_config32(unsigned reg)
151{
152 if (fx_devs == 0)
153 get_fx_devs();
154 return pci_read_config32(__f1_dev[0], reg);
155}
156
157static void f1_write_config32(unsigned reg, u32 value)
158{
159 int i;
160 if (fx_devs == 0)
161 get_fx_devs();
162 for(i = 0; i < fx_devs; i++) {
163 device_t dev;
164 dev = __f1_dev[i];
165 if (dev && dev->enabled) {
166 pci_write_config32(dev, reg, value);
167 }
168 }
169}
170
171static u32 amdfam15_nodeid(device_t dev)
172{
173#if MAX_NODE_NUMS == 64
174 unsigned busn;
175 busn = dev->bus->secondary;
176 if (busn != CONFIG_CBB) {
177 return (dev->path.pci.devfn >> 3) - CONFIG_CDB + 32;
178 } else {
179 return (dev->path.pci.devfn >> 3) - CONFIG_CDB;
180 }
181
182#else
183 return (dev->path.pci.devfn >> 3) - CONFIG_CDB;
184#endif
185}
186
187static void set_vga_enable_reg(u32 nodeid, u32 linkn)
188{
189 u32 val;
190
191 val = 1 | (nodeid<<4) | (linkn<<12);
192 /* it will routing
193 * (1)mmio 0xa0000:0xbffff
194 * (2)io 0x3b0:0x3bb, 0x3c0:0x3df
195 */
196 f1_write_config32(0xf4, val);
197
198}
199
200/**
201 * @return
202 * @retval 2 resoure not exist, usable
203 * @retval 0 resource exist, not usable
204 * @retval 1 resource exist, resource has been allocated before
205 */
206static int reg_useable(unsigned reg, device_t goal_dev, unsigned goal_nodeid,
207 unsigned goal_link)
208{
209 struct resource *res;
210 unsigned nodeid, link = 0;
211 int result;
212 res = 0;
213 for (nodeid = 0; !res && (nodeid < fx_devs); nodeid++) {
214 device_t dev;
215 dev = __f0_dev[nodeid];
216 if (!dev)
217 continue;
218 for (link = 0; !res && (link < 8); link++) {
219 res = probe_resource(dev, IOINDEX(0x1000 + reg, link));
220 }
221 }
222 result = 2;
223 if (res) {
224 result = 0;
225 if ((goal_link == (link - 1)) &&
226 (goal_nodeid == (nodeid - 1)) &&
227 (res->flags <= 1)) {
228 result = 1;
229 }
230 }
231 return result;
232}
233
234static struct resource *amdfam15_find_iopair(device_t dev, unsigned nodeid, unsigned link)
235{
236 struct resource *resource;
237 u32 free_reg, reg;
238 resource = 0;
239 free_reg = 0;
240 for (reg = 0xc0; reg <= 0xd8; reg += 0x8) {
241 int result;
242 result = reg_useable(reg, dev, nodeid, link);
243 if (result == 1) {
244 /* I have been allocated this one */
245 break;
246 }
247 else if (result > 1) {
248 /* I have a free register pair */
249 free_reg = reg;
250 }
251 }
252 if (reg > 0xd8) {
253 reg = free_reg; // if no free, the free_reg still be 0
254 }
255
256 resource = new_resource(dev, IOINDEX(0x1000 + reg, link));
257
258 return resource;
259}
260
261static struct resource *amdfam15_find_mempair(device_t dev, u32 nodeid, u32 link)
262{
263 struct resource *resource;
264 u32 free_reg, reg;
265 resource = 0;
266 free_reg = 0;
267 for (reg = 0x80; reg <= 0xb8; reg += 0x8) {
268 int result;
269 result = reg_useable(reg, dev, nodeid, link);
270 if (result == 1) {
271 /* I have been allocated this one */
272 break;
273 }
274 else if (result > 1) {
275 /* I have a free register pair */
276 free_reg = reg;
277 }
278 }
279 if (reg > 0xb8) {
280 reg = free_reg;
281 }
282
283 resource = new_resource(dev, IOINDEX(0x1000 + reg, link));
284 return resource;
285}
286
287static void amdfam15_link_read_bases(device_t dev, u32 nodeid, u32 link)
288{
289 struct resource *resource;
290
291 /* Initialize the io space constraints on the current bus */
292 resource = amdfam15_find_iopair(dev, nodeid, link);
293 if (resource) {
294 u32 align;
295 align = log2(HT_IO_HOST_ALIGN);
296 resource->base = 0;
297 resource->size = 0;
298 resource->align = align;
299 resource->gran = align;
300 resource->limit = 0xffffUL;
301 resource->flags = IORESOURCE_IO | IORESOURCE_BRIDGE;
302 }
303
304 /* Initialize the prefetchable memory constraints on the current bus */
305 resource = amdfam15_find_mempair(dev, nodeid, link);
306 if (resource) {
307 resource->base = 0;
308 resource->size = 0;
309 resource->align = log2(HT_MEM_HOST_ALIGN);
310 resource->gran = log2(HT_MEM_HOST_ALIGN);
311 resource->limit = 0xffffffffffULL;
312 resource->flags = IORESOURCE_MEM | IORESOURCE_PREFETCH;
313 resource->flags |= IORESOURCE_BRIDGE;
314 }
315
316 /* Initialize the memory constraints on the current bus */
317 resource = amdfam15_find_mempair(dev, nodeid, link);
318 if (resource) {
319 resource->base = 0;
320 resource->size = 0;
321 resource->align = log2(HT_MEM_HOST_ALIGN);
322 resource->gran = log2(HT_MEM_HOST_ALIGN);
323 resource->limit = 0xffffffffffULL;
324 resource->flags = IORESOURCE_MEM | IORESOURCE_BRIDGE;
325 }
326
327}
328
Steven Sherkf4340582013-01-29 16:13:35 -0700329static void nb_read_resources(device_t dev)
zbao2c08f6a2012-07-02 15:32:58 +0800330{
331 u32 nodeid;
332 struct bus *link;
333
334 nodeid = amdfam15_nodeid(dev);
335 for (link = dev->link_list; link; link = link->next) {
336 if (link->children) {
337 amdfam15_link_read_bases(dev, nodeid, link->link_num);
338 }
339 }
340}
341
342static void set_resource(device_t dev, struct resource *resource, u32 nodeid)
343{
344 resource_t rbase, rend;
345 unsigned reg, link_num;
346 char buf[50];
347
348 /* Make certain the resource has actually been set */
349 if (!(resource->flags & IORESOURCE_ASSIGNED)) {
350 return;
351 }
352
353 /* If I have already stored this resource don't worry about it */
354 if (resource->flags & IORESOURCE_STORED) {
355 return;
356 }
357
358 /* Only handle PCI memory and IO resources */
359 if (!(resource->flags & (IORESOURCE_MEM | IORESOURCE_IO)))
360 return;
361
362 /* Ensure I am actually looking at a resource of function 1 */
363 if ((resource->index & 0xffff) < 0x1000) {
364 return;
365 }
366 /* Get the base address */
367 rbase = resource->base;
368
369 /* Get the limit (rounded up) */
370 rend = resource_end(resource);
371
372 /* Get the register and link */
373 reg = resource->index & 0xfff; // 4k
374 link_num = IOINDEX_LINK(resource->index);
375
376 if (resource->flags & IORESOURCE_IO) {
377 set_io_addr_reg(dev, nodeid, link_num, reg, rbase>>8, rend>>8);
378 }
379 else if (resource->flags & IORESOURCE_MEM) {
380 set_mmio_addr_reg(nodeid, link_num, reg, (resource->index >>24), rbase>>8, rend>>8, node_nums) ;// [39:8]
381 }
382 resource->flags |= IORESOURCE_STORED;
383 sprintf(buf, " <node %x link %x>",
384 nodeid, link_num);
385 report_resource_stored(dev, resource, buf);
386}
387
388/**
389 * I tried to reuse the resource allocation code in set_resource()
390 * but it is too difficult to deal with the resource allocation magic.
391 */
392
393static void create_vga_resource(device_t dev, unsigned nodeid)
394{
395 struct bus *link;
396
397 /* find out which link the VGA card is connected,
398 * we only deal with the 'first' vga card */
399 for (link = dev->link_list; link; link = link->next) {
400 if (link->bridge_ctrl & PCI_BRIDGE_CTL_VGA) {
zbaod59d6242012-07-23 19:41:03 +0800401#if CONFIG_MULTIPLE_VGA_ADAPTERS
zbao2c08f6a2012-07-02 15:32:58 +0800402 extern device_t vga_pri; // the primary vga device, defined in device.c
403 printk(BIOS_DEBUG, "VGA: vga_pri bus num = %d bus range [%d,%d]\n", vga_pri->bus->secondary,
404 link->secondary,link->subordinate);
405 /* We need to make sure the vga_pri is under the link */
406 if((vga_pri->bus->secondary >= link->secondary ) &&
407 (vga_pri->bus->secondary <= link->subordinate )
408 )
409#endif
410 break;
411 }
412 }
413
414 /* no VGA card installed */
415 if (link == NULL)
416 return;
417
418 printk(BIOS_DEBUG, "VGA: %s (aka node %d) link %d has VGA device\n", dev_path(dev), nodeid, sblink);
419 set_vga_enable_reg(nodeid, sblink);
420}
421
Steven Sherkf4340582013-01-29 16:13:35 -0700422static void nb_set_resources(device_t dev)
zbao2c08f6a2012-07-02 15:32:58 +0800423{
424 unsigned nodeid;
425 struct bus *bus;
426 struct resource *res;
427
428 /* Find the nodeid */
429 nodeid = amdfam15_nodeid(dev);
430
431 create_vga_resource(dev, nodeid); //TODO: do we need this?
432
433 /* Set each resource we have found */
434 for (res = dev->resource_list; res; res = res->next) {
435 set_resource(dev, res, nodeid);
436 }
437
438 for (bus = dev->link_list; bus; bus = bus->next) {
439 if (bus->children) {
440 assign_resources(bus);
441 }
442 }
443}
444
445static void northbridge_init(struct device *dev)
446{
447}
448
zbaod59d6242012-07-23 19:41:03 +0800449
zbao2c08f6a2012-07-02 15:32:58 +0800450static struct device_operations northbridge_operations = {
Steven Sherkf4340582013-01-29 16:13:35 -0700451 .read_resources = nb_read_resources,
452 .set_resources = nb_set_resources,
zbao2c08f6a2012-07-02 15:32:58 +0800453 .enable_resources = pci_dev_enable_resources,
454 .init = northbridge_init,
zbao2c08f6a2012-07-02 15:32:58 +0800455 .enable = 0,
456 .ops_pci = 0,
457};
458
459static const struct pci_driver family15_northbridge __pci_driver = {
460 .ops = &northbridge_operations,
461 .vendor = PCI_VENDOR_ID_AMD,
462 .device = PCI_DEVICE_ID_AMD_15H_MODEL_001F_NB_HT,
463};
464
465static const struct pci_driver family10_northbridge __pci_driver = {
466 .ops = &northbridge_operations,
467 .vendor = PCI_VENDOR_ID_AMD,
468 .device = PCI_DEVICE_ID_AMD_10H_NB_HT,
469};
470
471struct chip_operations northbridge_amd_agesa_family15tn_ops = {
472 CHIP_NAME("AMD FAM15 Northbridge")
473 .enable_dev = 0,
474};
475
476static void domain_read_resources(device_t dev)
477{
478 unsigned reg;
479
480 /* Find the already assigned resource pairs */
481 get_fx_devs();
482 for (reg = 0x80; reg <= 0xd8; reg+= 0x08) {
483 u32 base, limit;
484 base = f1_read_config32(reg);
485 limit = f1_read_config32(reg + 0x04);
486 /* Is this register allocated? */
487 if ((base & 3) != 0) {
488 unsigned nodeid, reg_link;
489 device_t reg_dev;
490 if (reg<0xc0) { // mmio
491 nodeid = (limit & 0xf) + (base&0x30);
492 } else { // io
493 nodeid = (limit & 0xf) + ((base>>4)&0x30);
494 }
495 reg_link = (limit >> 4) & 7;
496 reg_dev = __f0_dev[nodeid];
497 if (reg_dev) {
498 /* Reserve the resource */
499 struct resource *res;
500 res = new_resource(reg_dev, IOINDEX(0x1000 + reg, reg_link));
501 if (res) {
502 res->flags = 1;
503 }
504 }
505 }
506 }
507 /* FIXME: do we need to check extend conf space?
508 I don't believe that much preset value */
509
zbaod59d6242012-07-23 19:41:03 +0800510#if !CONFIG_PCI_64BIT_PREF_MEM
zbao2c08f6a2012-07-02 15:32:58 +0800511 pci_domain_read_resources(dev);
512
513#else
514 struct bus *link;
515 struct resource *resource;
516 for (link=dev->link_list; link; link = link->next) {
517 /* Initialize the system wide io space constraints */
518 resource = new_resource(dev, 0|(link->link_num<<2));
519 resource->base = 0x400;
520 resource->limit = 0xffffUL;
521 resource->flags = IORESOURCE_IO;
522
523 /* Initialize the system wide prefetchable memory resources constraints */
524 resource = new_resource(dev, 1|(link->link_num<<2));
525 resource->limit = 0xfcffffffffULL;
526 resource->flags = IORESOURCE_MEM | IORESOURCE_PREFETCH;
527
528 /* Initialize the system wide memory resources constraints */
529 resource = new_resource(dev, 2|(link->link_num<<2));
530 resource->limit = 0xfcffffffffULL;
531 resource->flags = IORESOURCE_MEM;
532 }
533#endif
534}
535
536extern u8 acpi_slp_type;
537
538static void domain_enable_resources(device_t dev)
539{
540 u32 val;
541#if CONFIG_HAVE_ACPI_RESUME
542 if (acpi_slp_type == 3)
543 agesawrapper_fchs3laterestore();
544#endif
545
546 /* Must be called after PCI enumeration and resource allocation */
547 printk(BIOS_DEBUG, "\nFam15 - domain_enable_resources: AmdInitMid.\n");
548#if CONFIG_HAVE_ACPI_RESUME
549 if (acpi_slp_type != 3) {
550 printk(BIOS_DEBUG, "agesawrapper_amdinitmid ");
551 val = agesawrapper_amdinitmid ();
552 if (val)
553 printk(BIOS_DEBUG, "error level: %x \n", val);
554 else
555 printk(BIOS_DEBUG, "passed.\n");
556 }
557#else
558 printk(BIOS_DEBUG, "agesawrapper_amdinitmid ");
559 val = agesawrapper_amdinitmid ();
560 if (val)
561 printk(BIOS_DEBUG, "error level: %x \n", val);
562 else
563 printk(BIOS_DEBUG, "passed.\n");
564#endif
565
566 printk(BIOS_DEBUG, " ader - leaving domain_enable_resources.\n");
567}
568
569#if CONFIG_HW_MEM_HOLE_SIZEK != 0
570struct hw_mem_hole_info {
571 unsigned hole_startk;
572 int node_id;
573};
574static struct hw_mem_hole_info get_hw_mem_hole_info(void)
575{
576 struct hw_mem_hole_info mem_hole;
577 int i;
578 mem_hole.hole_startk = CONFIG_HW_MEM_HOLE_SIZEK;
579 mem_hole.node_id = -1;
580 for (i = 0; i < node_nums; i++) {
581 dram_base_mask_t d;
582 u32 hole;
583 d = get_dram_base_mask(i);
584 if (!(d.mask & 1)) continue; // no memory on this node
585 hole = pci_read_config32(__f1_dev[i], 0xf0);
586 if (hole & 1) { // we find the hole
587 mem_hole.hole_startk = (hole & (0xff<<24)) >> 10;
588 mem_hole.node_id = i; // record the node No with hole
589 break; // only one hole
590 }
591 }
592 //We need to double check if there is speical set on base reg and limit reg are not continous instead of hole, it will find out it's hole_startk
593 if (mem_hole.node_id == -1) {
594 resource_t limitk_pri = 0;
595 for (i=0; i<node_nums; i++) {
596 dram_base_mask_t d;
597 resource_t base_k, limit_k;
598 d = get_dram_base_mask(i);
599 if (!(d.base & 1)) continue;
600 base_k = ((resource_t)(d.base & 0x1fffff00)) <<9;
601 if (base_k > 4 *1024 * 1024) break; // don't need to go to check
602 if (limitk_pri != base_k) { // we find the hole
603 mem_hole.hole_startk = (unsigned)limitk_pri; // must beblow 4G
604 mem_hole.node_id = i;
605 break; //only one hole
606 }
zbao15dc3cc2012-08-03 15:56:21 +0800607 limit_k = ((resource_t)(((d.mask & ~1) + 0x000FF) & 0x1fffff00)) << 9;
zbao2c08f6a2012-07-02 15:32:58 +0800608 limitk_pri = limit_k;
609 }
610 }
611 return mem_hole;
612}
613#endif
614
zbao405cfe22012-07-23 19:44:29 +0800615#define ONE_MB_SHIFT 20
zbao6db7f342012-07-19 16:38:12 +0800616
Kyösti Mälkki6b5eb1c2012-07-19 19:26:43 +0300617static void setup_uma_memory(void)
zbao6db7f342012-07-19 16:38:12 +0800618{
619#if CONFIG_GFXUMA
Kyösti Mälkkidbc47392012-08-05 12:11:40 +0300620 uint32_t topmem = (uint32_t) bsp_topmem();
zbao6db7f342012-07-19 16:38:12 +0800621 uint32_t sys_mem;
622
zbao6db7f342012-07-19 16:38:12 +0800623 /* refer to UMA Size Consideration in Family15h BKDG. */
624 /* Please reference MemNGetUmaSizeOR () */
625 /*
626 * Total system memory UMASize
627 * >= 2G 512M
628 * >=1G 256M
629 * <1G 64M
630 */
Kyösti Mälkkidbc47392012-08-05 12:11:40 +0300631 sys_mem = topmem + (16 << ONE_MB_SHIFT); // Ignore 16MB allocated for C6 when finding UMA size
632 if ((bsp_topmem2()>>32) || (sys_mem >= 2048 << ONE_MB_SHIFT)) {
zbao405cfe22012-07-23 19:44:29 +0800633 uma_memory_size = 512 << ONE_MB_SHIFT;
634 } else if (sys_mem >= 1024 << ONE_MB_SHIFT) {
635 uma_memory_size = 256 << ONE_MB_SHIFT;
zbao6db7f342012-07-19 16:38:12 +0800636 } else {
zbao405cfe22012-07-23 19:44:29 +0800637 uma_memory_size = 64 << ONE_MB_SHIFT;
zbao6db7f342012-07-19 16:38:12 +0800638 }
Kyösti Mälkkidbc47392012-08-05 12:11:40 +0300639 uma_memory_base = topmem - uma_memory_size; /* TOP_MEM1 */
zbao6db7f342012-07-19 16:38:12 +0800640
641 printk(BIOS_INFO, "%s: uma size 0x%08llx, memory start 0x%08llx\n",
642 __func__, uma_memory_size, uma_memory_base);
zbao6db7f342012-07-19 16:38:12 +0800643#endif
644}
645
646
zbao2c08f6a2012-07-02 15:32:58 +0800647static void domain_set_resources(device_t dev)
648{
zbaod59d6242012-07-23 19:41:03 +0800649#if CONFIG_PCI_64BIT_PREF_MEM
zbao2c08f6a2012-07-02 15:32:58 +0800650 struct resource *io, *mem1, *mem2;
651 struct resource *res;
652#endif
653 unsigned long mmio_basek;
654 u32 pci_tolm;
655 int i, idx;
656 struct bus *link;
657#if CONFIG_HW_MEM_HOLE_SIZEK != 0
658 struct hw_mem_hole_info mem_hole;
659 u32 reset_memhole = 1;
660#endif
661
zbaod59d6242012-07-23 19:41:03 +0800662#if CONFIG_PCI_64BIT_PREF_MEM
zbao2c08f6a2012-07-02 15:32:58 +0800663
664 for (link = dev->link_list; link; link = link->next) {
665 /* Now reallocate the pci resources memory with the
666 * highest addresses I can manage.
667 */
668 mem1 = find_resource(dev, 1|(link->link_num<<2));
669 mem2 = find_resource(dev, 2|(link->link_num<<2));
670
671 printk(BIOS_DEBUG, "base1: 0x%08Lx limit1: 0x%08Lx size: 0x%08Lx align: %d\n",
672 mem1->base, mem1->limit, mem1->size, mem1->align);
673 printk(BIOS_DEBUG, "base2: 0x%08Lx limit2: 0x%08Lx size: 0x%08Lx align: %d\n",
674 mem2->base, mem2->limit, mem2->size, mem2->align);
675
676 /* See if both resources have roughly the same limits */
677 if (((mem1->limit <= 0xffffffff) && (mem2->limit <= 0xffffffff)) ||
678 ((mem1->limit > 0xffffffff) && (mem2->limit > 0xffffffff)))
679 {
680 /* If so place the one with the most stringent alignment first */
681 if (mem2->align > mem1->align) {
682 struct resource *tmp;
683 tmp = mem1;
684 mem1 = mem2;
685 mem2 = tmp;
686 }
687 /* Now place the memory as high up as it will go */
688 mem2->base = resource_max(mem2);
689 mem1->limit = mem2->base - 1;
690 mem1->base = resource_max(mem1);
691 }
692 else {
693 /* Place the resources as high up as they will go */
694 mem2->base = resource_max(mem2);
695 mem1->base = resource_max(mem1);
696 }
697
698 printk(BIOS_DEBUG, "base1: 0x%08Lx limit1: 0x%08Lx size: 0x%08Lx align: %d\n",
699 mem1->base, mem1->limit, mem1->size, mem1->align);
700 printk(BIOS_DEBUG, "base2: 0x%08Lx limit2: 0x%08Lx size: 0x%08Lx align: %d\n",
701 mem2->base, mem2->limit, mem2->size, mem2->align);
702 }
703
704 for (res = &dev->resource_list; res; res = res->next)
705 {
706 res->flags |= IORESOURCE_ASSIGNED;
707 res->flags |= IORESOURCE_STORED;
708 report_resource_stored(dev, res, "");
709 }
710#endif
711
712 pci_tolm = 0xffffffffUL;
713 for (link = dev->link_list; link; link = link->next) {
714 pci_tolm = find_pci_tolm(link);
715 }
716
717 // FIXME handle interleaved nodes. If you fix this here, please fix
718 // amdk8, too.
719 mmio_basek = pci_tolm >> 10;
720 /* Round mmio_basek to something the processor can support */
721 mmio_basek &= ~((1 << 6) -1);
722
723 // FIXME improve mtrr.c so we don't use up all of the mtrrs with a 64M
724 // MMIO hole. If you fix this here, please fix amdk8, too.
725 /* Round the mmio hole to 64M */
726 mmio_basek &= ~((64*1024) - 1);
727
728#if CONFIG_HW_MEM_HOLE_SIZEK != 0
729 /* if the hw mem hole is already set in raminit stage, here we will compare
730 * mmio_basek and hole_basek. if mmio_basek is bigger that hole_basek and will
731 * use hole_basek as mmio_basek and we don't need to reset hole.
732 * otherwise We reset the hole to the mmio_basek
733 */
734
735 mem_hole = get_hw_mem_hole_info();
736
737 // Use hole_basek as mmio_basek, and we don't need to reset hole anymore
738 if ((mem_hole.node_id != -1) && (mmio_basek > mem_hole.hole_startk)) {
739 mmio_basek = mem_hole.hole_startk;
740 reset_memhole = 0;
741 }
742#endif
743
744 idx = 0x10;
745 for (i = 0; i < node_nums; i++) {
746 dram_base_mask_t d;
747 resource_t basek, limitk, sizek; // 4 1T
748
749 d = get_dram_base_mask(i);
750
751 if (!(d.mask & 1)) continue;
752 basek = ((resource_t)(d.base & 0x1fffff00)) << 9; // could overflow, we may lost 6 bit here
zbao9fd183e2012-08-01 18:23:49 +0800753 limitk = ((resource_t)(((d.mask & ~1) + 0x000FF) & 0x1fffff00)) << 9 ;
zbao2c08f6a2012-07-02 15:32:58 +0800754
755 sizek = limitk - basek;
756
757 /* see if we need a hole from 0xa0000 to 0xbffff */
758 if ((basek < ((8*64)+(8*16))) && (sizek > ((8*64)+(16*16)))) {
759 ram_resource(dev, (idx | i), basek, ((8*64)+(8*16)) - basek);
760 idx += 0x10;
761 basek = (8*64)+(16*16);
762 sizek = limitk - ((8*64)+(16*16));
763
764 }
765
766 //printk(BIOS_DEBUG, "node %d : mmio_basek=%08lx, basek=%08llx, limitk=%08llx\n", i, mmio_basek, basek, limitk);
767
768 /* split the region to accomodate pci memory space */
769 if ((basek < 4*1024*1024 ) && (limitk > mmio_basek)) {
770 if (basek <= mmio_basek) {
771 unsigned pre_sizek;
772 pre_sizek = mmio_basek - basek;
773 if (pre_sizek>0) {
774 ram_resource(dev, (idx | i), basek, pre_sizek);
775 idx += 0x10;
776 sizek -= pre_sizek;
zbaod59d6242012-07-23 19:41:03 +0800777#if CONFIG_WRITE_HIGH_TABLES
zbao2c08f6a2012-07-02 15:32:58 +0800778 if (high_tables_base==0) {
779 /* Leave some space for ACPI, PIRQ and MP tables */
zbaod59d6242012-07-23 19:41:03 +0800780#if CONFIG_GFXUMA
zbao2c08f6a2012-07-02 15:32:58 +0800781 high_tables_base = uma_memory_base - HIGH_MEMORY_SIZE;
782#else
783 high_tables_base = (mmio_basek * 1024) - HIGH_MEMORY_SIZE;
784#endif
785 high_tables_size = HIGH_MEMORY_SIZE;
786 printk(BIOS_DEBUG, " split: %dK table at =%08llx\n",
787 (u32)(high_tables_size / 1024), high_tables_base);
788 }
789#endif
790 }
791 basek = mmio_basek;
792 }
793 if ((basek + sizek) <= 4*1024*1024) {
794 sizek = 0;
795 }
796 else {
797 basek = 4*1024*1024;
798 sizek -= (4*1024*1024 - mmio_basek);
799 }
800 }
801
zbao2c08f6a2012-07-02 15:32:58 +0800802 ram_resource(dev, (idx | i), basek, sizek);
803 idx += 0x10;
zbaod59d6242012-07-23 19:41:03 +0800804#if CONFIG_WRITE_HIGH_TABLES
zbao2c08f6a2012-07-02 15:32:58 +0800805 printk(BIOS_DEBUG, "node %d: mmio_basek=%08lx, basek=%08llx, limitk=%08llx\n",
806 i, mmio_basek, basek, limitk);
807 if (high_tables_base==0) {
808 /* Leave some space for ACPI, PIRQ and MP tables */
zbaod59d6242012-07-23 19:41:03 +0800809#if CONFIG_GFXUMA
zbao2c08f6a2012-07-02 15:32:58 +0800810 high_tables_base = uma_memory_base - HIGH_MEMORY_SIZE;
811#else
812 high_tables_base = (limitk * 1024) - HIGH_MEMORY_SIZE;
813#endif
814 high_tables_size = HIGH_MEMORY_SIZE;
815 }
816#endif
817 }
818
Kyösti Mälkki63f8c082012-07-10 13:27:26 +0300819#if CONFIG_GFXUMA
820 uma_resource(dev, 7, uma_memory_base >> 10, uma_memory_size >> 10);
zbao2c08f6a2012-07-02 15:32:58 +0800821#endif
822
823 for(link = dev->link_list; link; link = link->next) {
824 if (link->children) {
825 assign_resources(link);
826 }
827 }
828}
829
830static struct device_operations pci_domain_ops = {
831 .read_resources = domain_read_resources,
832 .set_resources = domain_set_resources,
833 .enable_resources = domain_enable_resources,
834 .init = NULL,
835 .scan_bus = pci_domain_scan_bus,
836
837#if CONFIG_MMCONF_SUPPORT_DEFAULT
838 .ops_pci_bus = &pci_ops_mmconf,
839#else
840 .ops_pci_bus = &pci_cf8_conf1,
841#endif
842};
843
844static void sysconf_init(device_t dev) // first node
845{
846 sblink = (pci_read_config32(dev, 0x64)>>8) & 7; // don't forget sublink1
847 node_nums = ((pci_read_config32(dev, 0x60)>>4) & 7) + 1; //NodeCnt[2:0]
848}
849
850static void add_more_links(device_t dev, unsigned total_links)
851{
852 struct bus *link, *last = NULL;
853 int link_num;
854
855 for (link = dev->link_list; link; link = link->next)
856 last = link;
857
858 if (last) {
859 int links = total_links - last->link_num;
860 link_num = last->link_num;
861 if (links > 0) {
862 link = malloc(links*sizeof(*link));
863 if (!link)
864 die("Couldn't allocate more links!\n");
865 memset(link, 0, links*sizeof(*link));
866 last->next = link;
867 }
868 }
869 else {
870 link_num = -1;
871 link = malloc(total_links*sizeof(*link));
872 memset(link, 0, total_links*sizeof(*link));
873 dev->link_list = link;
874 }
875
876 for (link_num = link_num + 1; link_num < total_links; link_num++) {
877 link->link_num = link_num;
878 link->dev = dev;
879 link->next = link + 1;
880 last = link;
881 link = link->next;
882 }
883 last->next = NULL;
884}
885
zbao2c08f6a2012-07-02 15:32:58 +0800886static u32 cpu_bus_scan(device_t dev, u32 max)
887{
888 struct bus *cpu_bus;
889 device_t dev_mc;
890#if CONFIG_CBB
891 device_t pci_domain;
892#endif
893 int i,j;
894 int coreid_bits;
895 int core_max = 0;
896 unsigned ApicIdCoreIdSize;
897 unsigned core_nums;
898 int siblings = 0;
899 unsigned int family;
900
901#if CONFIG_CBB
902 dev_mc = dev_find_slot(0, PCI_DEVFN(CONFIG_CDB, 0)); //0x00
903 if (dev_mc && dev_mc->bus) {
904 printk(BIOS_DEBUG, "%s found", dev_path(dev_mc));
905 pci_domain = dev_mc->bus->dev;
906 if (pci_domain && (pci_domain->path.type == DEVICE_PATH_PCI_DOMAIN)) {
907 printk(BIOS_DEBUG, "\n%s move to ",dev_path(dev_mc));
908 dev_mc->bus->secondary = CONFIG_CBB; // move to 0xff
909 printk(BIOS_DEBUG, "%s",dev_path(dev_mc));
910 } else {
911 printk(BIOS_DEBUG, " but it is not under pci_domain directly ");
912 }
913 printk(BIOS_DEBUG, "\n");
914 }
915 dev_mc = dev_find_slot(CONFIG_CBB, PCI_DEVFN(CONFIG_CDB, 0));
916 if (!dev_mc) {
917 dev_mc = dev_find_slot(0, PCI_DEVFN(0x18, 0));
918 if (dev_mc && dev_mc->bus) {
919 printk(BIOS_DEBUG, "%s found\n", dev_path(dev_mc));
920 pci_domain = dev_mc->bus->dev;
921 if (pci_domain && (pci_domain->path.type == DEVICE_PATH_PCI_DOMAIN)) {
922 if ((pci_domain->link_list) && (pci_domain->link_list->children == dev_mc)) {
923 printk(BIOS_DEBUG, "%s move to ",dev_path(dev_mc));
924 dev_mc->bus->secondary = CONFIG_CBB; // move to 0xff
925 printk(BIOS_DEBUG, "%s\n",dev_path(dev_mc));
926 while (dev_mc) {
927 printk(BIOS_DEBUG, "%s move to ",dev_path(dev_mc));
928 dev_mc->path.pci.devfn -= PCI_DEVFN(0x18,0);
929 printk(BIOS_DEBUG, "%s\n",dev_path(dev_mc));
930 dev_mc = dev_mc->sibling;
931 }
932 }
933 }
934 }
935 }
936#endif
937 dev_mc = dev_find_slot(CONFIG_CBB, PCI_DEVFN(CONFIG_CDB, 0));
938 if (!dev_mc) {
939 printk(BIOS_ERR, "%02x:%02x.0 not found", CONFIG_CBB, CONFIG_CDB);
940 die("");
941 }
942 sysconf_init(dev_mc);
943#if CONFIG_CBB && (MAX_NODE_NUMS > 32)
944 if (node_nums>32) { // need to put node 32 to node 63 to bus 0xfe
945 if (pci_domain->link_list && !pci_domain->link_list->next) {
946 struct bus *new_link = new_link(pci_domain);
947 pci_domain->link_list->next = new_link;
948 new_link->link_num = 1;
949 new_link->dev = pci_domain;
950 new_link->children = 0;
951 printk(BIOS_DEBUG, "%s links now 2\n", dev_path(pci_domain));
952 }
953 pci_domain->link_list->next->secondary = CONFIG_CBB - 1;
954 }
955#endif
956
957 /* Get Max Number of cores(MNC) */
958 coreid_bits = (cpuid_ecx(AMD_CPUID_ASIZE_PCCOUNT) & 0x0000F000) >> 12;
959 core_max = 1 << (coreid_bits & 0x000F); //mnc
960
961 ApicIdCoreIdSize = ((cpuid_ecx(0x80000008)>>12) & 0xF);
962 if (ApicIdCoreIdSize) {
963 core_nums = (1 << ApicIdCoreIdSize) - 1;
964 } else {
965 core_nums = 3; //quad core
966 }
967
968 /* Find which cpus are present */
969 cpu_bus = dev->link_list;
970 for (i = 0; i < node_nums; i++) {
Kyösti Mälkkicd9fc1a2012-07-06 19:02:56 +0300971 device_t cdb_dev;
zbao2c08f6a2012-07-02 15:32:58 +0800972 unsigned busn, devn;
973 struct bus *pbus;
974
975 busn = CONFIG_CBB;
976 devn = CONFIG_CDB + i;
977 pbus = dev_mc->bus;
978#if CONFIG_CBB && (MAX_NODE_NUMS > 32)
979 if (i >= 32) {
980 busn--;
981 devn -= 32;
982 pbus = pci_domain->link_list->next;
983 }
984#endif
985
986 /* Find the cpu's pci device */
987 cdb_dev = dev_find_slot(busn, PCI_DEVFN(devn, 0));
988 if (!cdb_dev) {
989 /* If I am probing things in a weird order
990 * ensure all of the cpu's pci devices are found.
991 */
992 int fn;
993 for(fn = 0; fn <= 5; fn++) { //FBDIMM?
994 cdb_dev = pci_probe_dev(NULL, pbus,
995 PCI_DEVFN(devn, fn));
996 }
997 cdb_dev = dev_find_slot(busn, PCI_DEVFN(devn, 0));
998 } else {
999 /* Ok, We need to set the links for that device.
1000 * otherwise the device under it will not be scanned
1001 */
1002 int linknum;
zbaod59d6242012-07-23 19:41:03 +08001003#if CONFIG_HT3_SUPPORT
zbao2c08f6a2012-07-02 15:32:58 +08001004 linknum = 8;
1005#else
1006 linknum = 4;
1007#endif
1008 add_more_links(cdb_dev, linknum);
1009 }
1010
1011 family = cpuid_eax(1);
1012 family = (family >> 20) & 0xFF;
1013 if (family == 1) { //f10
1014 u32 dword;
1015 cdb_dev = dev_find_slot(busn, PCI_DEVFN(devn, 3));
1016 dword = pci_read_config32(cdb_dev, 0xe8);
1017 siblings = ((dword & BIT15) >> 13) | ((dword & (BIT13 | BIT12)) >> 12);
1018 } else if (family == 6) {//f15
1019 cdb_dev = dev_find_slot(busn, PCI_DEVFN(devn, 5));
1020 if (cdb_dev && cdb_dev->enabled) {
1021 siblings = pci_read_config32(cdb_dev, 0x84);
1022 siblings &= 0xFF;
1023 }
1024 } else {
1025 siblings = 0; //default one core
1026 }
Kyösti Mälkkicd9fc1a2012-07-06 19:02:56 +03001027 int enable_node = cdb_dev && cdb_dev->enabled;
zbao2c08f6a2012-07-02 15:32:58 +08001028 printk(BIOS_SPEW, "%s family%xh, core_max=0x%x, core_nums=0x%x, siblings=0x%x\n",
1029 dev_path(cdb_dev), 0x0f + family, core_max, core_nums, siblings);
1030
1031 for (j = 0; j <= siblings; j++ ) {
1032 extern CONST OPTIONS_CONFIG_TOPOLOGY ROMDATA TopologyConfiguration;
1033 u32 modules = TopologyConfiguration.PlatformNumberOfModules;
1034 u32 lapicid_start = 0;
1035
zbao2c08f6a2012-07-02 15:32:58 +08001036 /*
1037 * APIC ID calucation is tightly coupled with AGESA v5 code.
1038 * This calculation MUST match the assignment calculation done
1039 * in LocalApicInitializationAtEarly() function.
1040 * And reference GetLocalApicIdForCore()
1041 *
1042 * Apply apic enumeration rules
1043 * For systems with >= 16 APICs, put the IO-APICs at 0..n and
1044 * put the local-APICs at m..z
1045 *
1046 * This is needed because many IO-APIC devices only have 4 bits
1047 * for their APIC id and therefore must reside at 0..15
1048 */
1049#ifndef CFG_PLAT_NUM_IO_APICS /* defined in mainboard buildOpts.c */
1050#define CFG_PLAT_NUM_IO_APICS 3
1051#endif
1052 if ((node_nums * core_max) + CFG_PLAT_NUM_IO_APICS >= 0x10) {
1053 lapicid_start = (CFG_PLAT_NUM_IO_APICS - 1) / core_max;
1054 lapicid_start = (lapicid_start + 1) * core_max;
1055 printk(BIOS_SPEW, "lpaicid_start=0x%x ", lapicid_start);
1056 }
Kyösti Mälkkic33f1e92012-08-07 17:12:11 +03001057 u32 apic_id = (lapicid_start * (i/modules + 1)) + ((i % modules) ? (j + (siblings + 1)) : j);
zbao2c08f6a2012-07-02 15:32:58 +08001058 printk(BIOS_SPEW, "node 0x%x core 0x%x apicid=0x%x\n",
Kyösti Mälkkic33f1e92012-08-07 17:12:11 +03001059 i, j, apic_id);
zbao2c08f6a2012-07-02 15:32:58 +08001060
Kyösti Mälkkic33f1e92012-08-07 17:12:11 +03001061 device_t cpu = add_cpu_device(cpu_bus, apic_id, enable_node);
1062 if (cpu)
1063 amd_cpu_topology(cpu, i, j);
zbao2c08f6a2012-07-02 15:32:58 +08001064 } //j
1065 }
1066 return max;
1067}
1068
1069static void cpu_bus_init(device_t dev)
1070{
1071 initialize_cpus(dev->link_list);
1072}
1073
1074static void cpu_bus_noop(device_t dev)
1075{
1076}
1077
1078static void cpu_bus_read_resources(device_t dev)
1079{
1080#if CONFIG_MMCONF_SUPPORT
1081 struct resource *resource = new_resource(dev, 0xc0010058);
1082 resource->base = CONFIG_MMCONF_BASE_ADDRESS;
1083 resource->size = CONFIG_MMCONF_BUS_NUMBER * 4096*256;
1084 resource->flags = IORESOURCE_MEM | IORESOURCE_RESERVE |
1085 IORESOURCE_FIXED | IORESOURCE_STORED | IORESOURCE_ASSIGNED;
1086#endif
1087}
1088
1089static void cpu_bus_set_resources(device_t dev)
1090{
1091 struct resource *resource = find_resource(dev, 0xc0010058);
1092 if (resource) {
1093 report_resource_stored(dev, resource, " <mmconfig>");
1094 }
1095 pci_dev_set_resources(dev);
1096}
1097
1098static struct device_operations cpu_bus_ops = {
1099 .read_resources = cpu_bus_read_resources,
1100 .set_resources = cpu_bus_set_resources,
1101 .enable_resources = cpu_bus_noop,
1102 .init = cpu_bus_init,
1103 .scan_bus = cpu_bus_scan,
1104};
1105
1106static void root_complex_enable_dev(struct device *dev)
1107{
Kyösti Mälkki87213b62012-08-27 20:00:33 +03001108 static int done = 0;
1109
1110 /* Do not delay UMA setup, as a device on the PCI bus may evaluate
1111 the global uma_memory variables already in its enable function. */
1112 if (!done) {
1113 setup_bsp_ramtop();
1114 setup_uma_memory();
1115 done = 1;
1116 }
1117
zbao2c08f6a2012-07-02 15:32:58 +08001118 /* Set the operations if it is a special bus type */
1119 if (dev->path.type == DEVICE_PATH_PCI_DOMAIN) {
1120 dev->ops = &pci_domain_ops;
1121 } else if (dev->path.type == DEVICE_PATH_APIC_CLUSTER) {
1122 dev->ops = &cpu_bus_ops;
1123 }
1124}
1125
1126struct chip_operations northbridge_amd_agesa_family15tn_root_complex_ops = {
1127 CHIP_NAME("AMD FAM15 Root Complex")
1128 .enable_dev = root_complex_enable_dev,
1129};
Dave Frodincbf3d402012-12-05 08:20:12 -07001130
1131/********************************************************************
1132* Change the vendor / device IDs to match the generic VBIOS header.
1133********************************************************************/
1134u32 map_oprom_vendev(u32 vendev)
1135{
1136 u32 new_vendev=vendev;
1137
1138 switch(vendev) {
1139 //case 0x10029900: //FS1r2
1140 case 0x10029901: //FM2
1141 case 0x10029903: //FS1r2
1142 case 0x10029904: //FM2
1143 case 0x10029906: //FM2
1144 case 0x10029907: //FP2
1145 case 0x10029908: //FP2
1146 case 0x1002990A: //FP2
1147 case 0x10029910: //FS1r2
1148 case 0x10029913: //FS1r2
1149 case 0x10029917: //FP2
1150 case 0x10029918: //FP2
1151 case 0x10029919: //FP2
1152 case 0x10029990: //FS1r2
1153 case 0x10029991: //FM2
1154 case 0x10029992: //FS1r2
1155 case 0x10029993: //FM2
1156 case 0x10029994: //FP2
1157 case 0x100299A0: //FS1r2
1158 case 0x100299A2: //FS1r2
1159 case 0x100299A4: //FP2
1160 new_vendev=0x10029900;
1161 break;
1162 }
1163
1164 return new_vendev;
1165}