mb/dell/optiplex_9010/romstage.c: Add interrupt routing map
Dumped using inteltool from the Dell BIOS version A30. Signed-off-by: Michał Żygowski <michal.zygowski@3mdeb.com> Change-Id: Ifdc41a1e6627b68813fb264aed7e30df58fc6d54 Reviewed-on: https://review.coreboot.org/c/coreboot/+/59525 Reviewed-by: Angel Pons <th3fanbus@gmail.com> Reviewed-by: Paul Menzel <paulepanter@mailbox.org> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
parent
5aba2aeead
commit
8ddbc7dcbe
|
@ -5,12 +5,25 @@
|
|||
#include <console/console.h>
|
||||
#include <northbridge/intel/sandybridge/sandybridge.h>
|
||||
#include <northbridge/intel/sandybridge/raminit_native.h>
|
||||
#include <southbridge/intel/common/rcba.h>
|
||||
#include <southbridge/intel/bd82x6x/pch.h>
|
||||
#include <superio/smsc/sch5545/sch5545.h>
|
||||
#include <superio/smsc/sch5545/sch5545_emi.h>
|
||||
|
||||
#include "sch5545_ec.h"
|
||||
|
||||
void mainboard_late_rcba_config(void)
|
||||
{
|
||||
DIR_ROUTE(D31IR, PIRQA, PIRQD, PIRQC, PIRQA);
|
||||
DIR_ROUTE(D29IR, PIRQH, PIRQD, PIRQA, PIRQC);
|
||||
DIR_ROUTE(D28IR, PIRQA, PIRQB, PIRQC, PIRQD);
|
||||
DIR_ROUTE(D27IR, PIRQG, PIRQB, PIRQC, PIRQD);
|
||||
DIR_ROUTE(D26IR, PIRQA, PIRQF, PIRQC, PIRQD);
|
||||
DIR_ROUTE(D25IR, PIRQE, PIRQF, PIRQG, PIRQH);
|
||||
DIR_ROUTE(D22IR, PIRQA, PIRQD, PIRQC, PIRQB);
|
||||
DIR_ROUTE(D20IR, PIRQA, PIRQB, PIRQC, PIRQD);
|
||||
}
|
||||
|
||||
void mainboard_early_init(int s3resume)
|
||||
{
|
||||
uint16_t ec_fw_version;
|
||||
|
|
Loading…
Reference in New Issue