Now coreboot performs IRQ routing for some boards.
You can see this by executing commands like this: grep -r pci_assign_irqs coreboot/src/* This basically AMD/LX based boards: pcengines/alix1c, digitallogic/msm800sev, artecgroup/dbe61, amd/norwich, amd/db800. Also for AMD/GX1 based boards need a patch [http://www.pengutronix.de/software/ptxdist/temporary-src/references/geode-5530.patch] for the right IRQ setup. AMD/GX1 based boards is: advantech/pcm-5820, asi/mb_5blmp, axus/tc320, bcom/winnet100, eaglelion/5bcm, iei/nova4899r, iei/juki-511p. I have two ideas. 1. Delete duplicate code from AMD/LX based boards. 2. Add IRQ routing for AMD/GX1 boards in coreboot. The pirq.patch for IRQ routing logically consist from of two parts: First part of pirq.patch independent from type chipsets and assign IRQ for ever PCI device. It part based on AMD/LX write_pirq_routing_table() function. Second part of pirq.patch depends of type chipset and set PIRQx lines in interrupt router. This part supports only CS5530/5536 interrupt routers. IRQ routing functionality is included through PIRQ_ROUTE in Config.lb. Tested on iei/juki-511p(cs5530a), iei/pcisa-lx(cs5536) and also on TeleVideo TC7020, see http://www.coreboot.org/pipermail/coreboot/2007-December/027973.html. Signed-off-by: Nikolay Petukhov <nikolay.petukhov@gmail.com> Acked-by: Uwe Hermann <uwe@hermann-uwe.de> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@3196 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
parent
0e122af465
commit
9c2255c66c
|
@ -1,6 +1,7 @@
|
||||||
#include <console/console.h>
|
#include <console/console.h>
|
||||||
#include <arch/pirq_routing.h>
|
#include <arch/pirq_routing.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
#include <device/pci.h>
|
||||||
|
|
||||||
#if (DEBUG==1 && HAVE_PIRQ_TABLE==1)
|
#if (DEBUG==1 && HAVE_PIRQ_TABLE==1)
|
||||||
static void check_pirq_routing_table(struct irq_routing_table *rt)
|
static void check_pirq_routing_table(struct irq_routing_table *rt)
|
||||||
|
@ -94,6 +95,80 @@ unsigned long copy_pirq_routing_table(unsigned long addr)
|
||||||
memcpy((void *)addr, &intel_irq_routing_table, intel_irq_routing_table.size);
|
memcpy((void *)addr, &intel_irq_routing_table, intel_irq_routing_table.size);
|
||||||
printk_info("done.\n");
|
printk_info("done.\n");
|
||||||
verify_copy_pirq_routing_table(addr);
|
verify_copy_pirq_routing_table(addr);
|
||||||
|
pirq_routing_irqs(addr);
|
||||||
return addr + intel_irq_routing_table.size;
|
return addr + intel_irq_routing_table.size;
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#if (PIRQ_ROUTE==1 && HAVE_PIRQ_TABLE==1)
|
||||||
|
void pirq_routing_irqs(unsigned long addr)
|
||||||
|
{
|
||||||
|
int i, j, k, num_entries;
|
||||||
|
unsigned char irq_slot[4];
|
||||||
|
unsigned char pirq[4] = {0, 0, 0, 0};
|
||||||
|
struct irq_routing_table *pirq_tbl;
|
||||||
|
device_t pdev;
|
||||||
|
|
||||||
|
pirq_tbl = (struct irq_routing_table *)(addr);
|
||||||
|
num_entries = (pirq_tbl->size - 32) / 16;
|
||||||
|
|
||||||
|
/* Set PCI IRQs. */
|
||||||
|
for (i = 0; i < num_entries; i++) {
|
||||||
|
|
||||||
|
printk_debug("PIR Entry %d Dev/Fn: %X Slot: %d\n", i,
|
||||||
|
pirq_tbl->slots[i].devfn >> 3, pirq_tbl->slots[i].slot);
|
||||||
|
|
||||||
|
for (j = 0; j < 4; j++) {
|
||||||
|
|
||||||
|
int link = pirq_tbl->slots[i].irq[j].link;
|
||||||
|
int bitmap = pirq_tbl->slots[i].irq[j].bitmap & pirq_tbl->exclusive_irqs;
|
||||||
|
int irq = 0;
|
||||||
|
|
||||||
|
printk_debug("INT: %c link: %x bitmap: %x ",
|
||||||
|
'A' + j, link, bitmap);
|
||||||
|
|
||||||
|
if (!bitmap|| !link || link > 4) {
|
||||||
|
|
||||||
|
printk_debug("not routed\n");
|
||||||
|
irq_slot[j] = irq;
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* yet not routed */
|
||||||
|
if (!pirq[link - 1]) {
|
||||||
|
|
||||||
|
for (k = 2; k < 15; k++) {
|
||||||
|
|
||||||
|
if (!((bitmap >> k) & 1))
|
||||||
|
continue;
|
||||||
|
|
||||||
|
irq = k;
|
||||||
|
|
||||||
|
/* yet not routed */
|
||||||
|
if (pirq[0] != irq && pirq[1] != irq && pirq[2] != irq && pirq[3] != irq)
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (irq)
|
||||||
|
pirq[link - 1] = irq;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
irq = pirq[link - 1];
|
||||||
|
|
||||||
|
printk_debug("IRQ: %d\n", irq);
|
||||||
|
irq_slot[j] = irq;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Bus, device, slots IRQs for {A,B,C,D}. */
|
||||||
|
pci_assign_irqs(pirq_tbl->slots[i].bus,
|
||||||
|
pirq_tbl->slots[i].devfn >> 3, irq_slot);
|
||||||
|
}
|
||||||
|
|
||||||
|
printk_debug("PIRQ1: %d\n", pirq[0]);
|
||||||
|
printk_debug("PIRQ2: %d\n", pirq[1]);
|
||||||
|
printk_debug("PIRQ3: %d\n", pirq[2]);
|
||||||
|
printk_debug("PIRQ4: %d\n", pirq[3]);
|
||||||
|
|
||||||
|
pirq_assign_irqs(pirq);
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
|
@ -42,6 +42,12 @@ extern const struct irq_routing_table intel_irq_routing_table;
|
||||||
#if HAVE_PIRQ_TABLE==1
|
#if HAVE_PIRQ_TABLE==1
|
||||||
unsigned long copy_pirq_routing_table(unsigned long start);
|
unsigned long copy_pirq_routing_table(unsigned long start);
|
||||||
unsigned long write_pirq_routing_table(unsigned long start);
|
unsigned long write_pirq_routing_table(unsigned long start);
|
||||||
|
#if PIRQ_ROUTE==1
|
||||||
|
void pirq_routing_irqs(unsigned long start);
|
||||||
|
void pirq_assign_irqs(const unsigned char pIntAtoD[4]);
|
||||||
|
#else
|
||||||
|
#define pirq_routing_irqs(start) {}
|
||||||
|
#endif
|
||||||
#else
|
#else
|
||||||
#define copy_pirq_routing_table(start) (start)
|
#define copy_pirq_routing_table(start) (start)
|
||||||
#define write_pirq_routing_table(start) (start)
|
#define write_pirq_routing_table(start) (start)
|
||||||
|
|
|
@ -716,6 +716,11 @@ define HAVE_PIRQ_TABLE
|
||||||
export used
|
export used
|
||||||
comment "Define if we have a PIRQ table"
|
comment "Define if we have a PIRQ table"
|
||||||
end
|
end
|
||||||
|
define PIRQ_ROUTE
|
||||||
|
default 0
|
||||||
|
export used
|
||||||
|
comment "Define if we have a PIRQ table and want routing IRQs"
|
||||||
|
end
|
||||||
define IRQ_SLOT_COUNT
|
define IRQ_SLOT_COUNT
|
||||||
default none
|
default none
|
||||||
export used
|
export used
|
||||||
|
|
|
@ -63,6 +63,7 @@ uses CONFIG_VIDEO_MB
|
||||||
uses CONFIG_SPLASH_GRAPHIC
|
uses CONFIG_SPLASH_GRAPHIC
|
||||||
uses CONFIG_GX1_VIDEO
|
uses CONFIG_GX1_VIDEO
|
||||||
uses CONFIG_GX1_VIDEOMODE
|
uses CONFIG_GX1_VIDEOMODE
|
||||||
|
uses PIRQ_ROUTE
|
||||||
|
|
||||||
## Enable VGA with a splash screen (only 640x480 to run on most monitors).
|
## Enable VGA with a splash screen (only 640x480 to run on most monitors).
|
||||||
## We want to support up to 1024x768@16 so we need 2MiB video memory.
|
## We want to support up to 1024x768@16 so we need 2MiB video memory.
|
||||||
|
@ -75,6 +76,7 @@ default CONFIG_VIDEO_MB = 2
|
||||||
default ROM_SIZE = 256 * 1024
|
default ROM_SIZE = 256 * 1024
|
||||||
default HAVE_PIRQ_TABLE = 1
|
default HAVE_PIRQ_TABLE = 1
|
||||||
default IRQ_SLOT_COUNT = 0 # Override this in targets/*/Config.lb.
|
default IRQ_SLOT_COUNT = 0 # Override this in targets/*/Config.lb.
|
||||||
|
default PIRQ_ROUTE = 1
|
||||||
default HAVE_FALLBACK_BOOT = 1
|
default HAVE_FALLBACK_BOOT = 1
|
||||||
default HAVE_MP_TABLE = 0
|
default HAVE_MP_TABLE = 0
|
||||||
default HAVE_HARD_RESET = 0
|
default HAVE_HARD_RESET = 0
|
||||||
|
|
|
@ -48,6 +48,7 @@ uses CONFIG_VIDEO_MB
|
||||||
uses USE_DCACHE_RAM
|
uses USE_DCACHE_RAM
|
||||||
uses DCACHE_RAM_BASE
|
uses DCACHE_RAM_BASE
|
||||||
uses DCACHE_RAM_SIZE
|
uses DCACHE_RAM_SIZE
|
||||||
|
uses PIRQ_ROUTE
|
||||||
|
|
||||||
## ROM_SIZE is the size of boot ROM that this board will use.
|
## ROM_SIZE is the size of boot ROM that this board will use.
|
||||||
default ROM_SIZE = 256*1024
|
default ROM_SIZE = 256*1024
|
||||||
|
@ -84,6 +85,7 @@ default CONFIG_TSC_X86RDTSC_CALIBRATE_WITH_TIMER2=1
|
||||||
##
|
##
|
||||||
default HAVE_PIRQ_TABLE=1
|
default HAVE_PIRQ_TABLE=1
|
||||||
default IRQ_SLOT_COUNT=4
|
default IRQ_SLOT_COUNT=4
|
||||||
|
default PIRQ_ROUTE=1
|
||||||
#object irq_tables.o
|
#object irq_tables.o
|
||||||
|
|
||||||
##
|
##
|
||||||
|
|
|
@ -65,42 +65,5 @@ const struct irq_routing_table intel_irq_routing_table = {
|
||||||
|
|
||||||
unsigned long write_pirq_routing_table(unsigned long addr)
|
unsigned long write_pirq_routing_table(unsigned long addr)
|
||||||
{
|
{
|
||||||
int i, j, k, num_entries;
|
return copy_pirq_routing_table(addr);
|
||||||
unsigned char pirq[4];
|
|
||||||
uint16_t chipset_irq_map;
|
|
||||||
uint32_t pciAddr, pirtable_end;
|
|
||||||
struct irq_routing_table *pirq_tbl;
|
|
||||||
|
|
||||||
pirtable_end = copy_pirq_routing_table(addr);
|
|
||||||
|
|
||||||
/* Set up chipset IRQ steering. */
|
|
||||||
pciAddr = 0x80000000 | (CHIPSET_DEV_NUM << 11) | 0x5C;
|
|
||||||
chipset_irq_map = (PIRQD << 12 | PIRQC << 8 | PIRQB << 4 | PIRQA);
|
|
||||||
printk_debug("%s(%08X, %04X)\n", __FUNCTION__, pciAddr,
|
|
||||||
chipset_irq_map);
|
|
||||||
outl(pciAddr & ~3, 0xCF8);
|
|
||||||
outl(chipset_irq_map, 0xCFC);
|
|
||||||
|
|
||||||
pirq_tbl = (struct irq_routing_table *)(addr);
|
|
||||||
num_entries = (pirq_tbl->size - 32) / 16;
|
|
||||||
|
|
||||||
/* Set PCI IRQs. */
|
|
||||||
for (i = 0; i < num_entries; i++) {
|
|
||||||
printk_debug("PIR Entry %d Dev/Fn: %X Slot: %d\n", i,
|
|
||||||
pirq_tbl->slots[i].devfn, pirq_tbl->slots[i].slot);
|
|
||||||
for (j = 0; j < 4; j++) {
|
|
||||||
printk_debug("INT: %c bitmap: %x ", 'A' + j,
|
|
||||||
pirq_tbl->slots[i].irq[j].bitmap);
|
|
||||||
for (k = 0; (!((pirq_tbl->slots[i].irq[j].bitmap >> k) & 1)) && (pirq_tbl->slots[i].irq[j].bitmap != 0); k++) ; /* Finds lsb in bitmap to IRQ#. */
|
|
||||||
pirq[j] = k;
|
|
||||||
printk_debug("PIRQ: %d\n", k);
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Bus, device, slots IRQs for {A,B,C,D}. */
|
|
||||||
pci_assign_irqs(pirq_tbl->slots[i].bus,
|
|
||||||
pirq_tbl->slots[i].devfn >> 3, pirq);
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Put the PIR table in memory and checksum. */
|
|
||||||
return pirtable_end;
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -48,6 +48,7 @@ uses CONFIG_VIDEO_MB
|
||||||
uses USE_DCACHE_RAM
|
uses USE_DCACHE_RAM
|
||||||
uses DCACHE_RAM_BASE
|
uses DCACHE_RAM_BASE
|
||||||
uses DCACHE_RAM_SIZE
|
uses DCACHE_RAM_SIZE
|
||||||
|
uses PIRQ_ROUTE
|
||||||
|
|
||||||
## ROM_SIZE is the size of boot ROM that this board will use.
|
## ROM_SIZE is the size of boot ROM that this board will use.
|
||||||
default ROM_SIZE = 256*1024
|
default ROM_SIZE = 256*1024
|
||||||
|
@ -84,6 +85,7 @@ default CONFIG_TSC_X86RDTSC_CALIBRATE_WITH_TIMER2=1
|
||||||
##
|
##
|
||||||
default HAVE_PIRQ_TABLE=1
|
default HAVE_PIRQ_TABLE=1
|
||||||
default IRQ_SLOT_COUNT=6
|
default IRQ_SLOT_COUNT=6
|
||||||
|
default PIRQ_ROUTE=1
|
||||||
#object irq_tables.o
|
#object irq_tables.o
|
||||||
|
|
||||||
##
|
##
|
||||||
|
|
|
@ -67,42 +67,5 @@ const struct irq_routing_table intel_irq_routing_table = {
|
||||||
|
|
||||||
unsigned long write_pirq_routing_table(unsigned long addr)
|
unsigned long write_pirq_routing_table(unsigned long addr)
|
||||||
{
|
{
|
||||||
int i, j, k, num_entries;
|
return copy_pirq_routing_table(addr);
|
||||||
unsigned char pirq[4];
|
|
||||||
uint16_t chipset_irq_map;
|
|
||||||
uint32_t pciAddr, pirtable_end;
|
|
||||||
struct irq_routing_table *pirq_tbl;
|
|
||||||
|
|
||||||
pirtable_end = copy_pirq_routing_table(addr);
|
|
||||||
|
|
||||||
/* Set up chipset IRQ steering. */
|
|
||||||
pciAddr = 0x80000000 | (CHIPSET_DEV_NUM << 11) | 0x5C;
|
|
||||||
chipset_irq_map = (PIRQD << 12 | PIRQC << 8 | PIRQB << 4 | PIRQA);
|
|
||||||
printk_debug("%s(%08X, %04X)\n", __FUNCTION__, pciAddr,
|
|
||||||
chipset_irq_map);
|
|
||||||
outl(pciAddr & ~3, 0xCF8);
|
|
||||||
outl(chipset_irq_map, 0xCFC);
|
|
||||||
|
|
||||||
pirq_tbl = (struct irq_routing_table *)(addr);
|
|
||||||
num_entries = (pirq_tbl->size - 32) / 16;
|
|
||||||
|
|
||||||
/* Set PCI IRQs. */
|
|
||||||
for (i = 0; i < num_entries; i++) {
|
|
||||||
printk_debug("PIR Entry %d Dev/Fn: %X Slot: %d\n", i,
|
|
||||||
pirq_tbl->slots[i].devfn, pirq_tbl->slots[i].slot);
|
|
||||||
for (j = 0; j < 4; j++) {
|
|
||||||
printk_debug("INT: %c bitmap: %x ", 'A' + j,
|
|
||||||
pirq_tbl->slots[i].irq[j].bitmap);
|
|
||||||
for (k = 0; (!((pirq_tbl->slots[i].irq[j].bitmap >> k) & 1)) && (pirq_tbl->slots[i].irq[j].bitmap != 0); k++) ; /* Finds lsb in bitmap to IRQ#. */
|
|
||||||
pirq[j] = k;
|
|
||||||
printk_debug("PIRQ: %d\n", k);
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Bus, device, slots IRQs for {A,B,C,D}. */
|
|
||||||
pci_assign_irqs(pirq_tbl->slots[i].bus,
|
|
||||||
pirq_tbl->slots[i].devfn >> 3, pirq);
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Put the PIR table in memory and checksum. */
|
|
||||||
return pirtable_end;
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -48,6 +48,7 @@ uses CONFIG_VIDEO_MB
|
||||||
uses USE_DCACHE_RAM
|
uses USE_DCACHE_RAM
|
||||||
uses DCACHE_RAM_BASE
|
uses DCACHE_RAM_BASE
|
||||||
uses DCACHE_RAM_SIZE
|
uses DCACHE_RAM_SIZE
|
||||||
|
uses PIRQ_ROUTE
|
||||||
|
|
||||||
## ROM_SIZE is the size of boot ROM that this board will use.
|
## ROM_SIZE is the size of boot ROM that this board will use.
|
||||||
default ROM_SIZE = 256*1024
|
default ROM_SIZE = 256*1024
|
||||||
|
@ -84,7 +85,7 @@ default CONFIG_TSC_X86RDTSC_CALIBRATE_WITH_TIMER2=1
|
||||||
##
|
##
|
||||||
default HAVE_PIRQ_TABLE=1
|
default HAVE_PIRQ_TABLE=1
|
||||||
default IRQ_SLOT_COUNT=3
|
default IRQ_SLOT_COUNT=3
|
||||||
|
default PIRQ_ROUTE=1
|
||||||
#object irq_tables.o
|
#object irq_tables.o
|
||||||
|
|
||||||
##
|
##
|
||||||
|
|
|
@ -64,42 +64,5 @@ const struct irq_routing_table intel_irq_routing_table = {
|
||||||
|
|
||||||
unsigned long write_pirq_routing_table(unsigned long addr)
|
unsigned long write_pirq_routing_table(unsigned long addr)
|
||||||
{
|
{
|
||||||
int i, j, k, num_entries;
|
return copy_pirq_routing_table(addr);
|
||||||
unsigned char pirq[4];
|
|
||||||
uint16_t chipset_irq_map;
|
|
||||||
uint32_t pciAddr, pirtable_end;
|
|
||||||
struct irq_routing_table *pirq_tbl;
|
|
||||||
|
|
||||||
pirtable_end = copy_pirq_routing_table(addr);
|
|
||||||
|
|
||||||
/* Set up chipset IRQ steering. */
|
|
||||||
pciAddr = 0x80000000 | (CHIPSET_DEV_NUM << 11) | 0x5C;
|
|
||||||
chipset_irq_map = (PIRQD << 12 | PIRQC << 8 | PIRQB << 4 | PIRQA);
|
|
||||||
printk_debug("%s(%08X, %04X)\n", __FUNCTION__, pciAddr,
|
|
||||||
chipset_irq_map);
|
|
||||||
outl(pciAddr & ~3, 0xCF8);
|
|
||||||
outl(chipset_irq_map, 0xCFC);
|
|
||||||
|
|
||||||
pirq_tbl = (struct irq_routing_table *)(addr);
|
|
||||||
num_entries = (pirq_tbl->size - 32) / 16;
|
|
||||||
|
|
||||||
/* Set PCI IRQs. */
|
|
||||||
for (i = 0; i < num_entries; i++) {
|
|
||||||
printk_debug("PIR Entry %d Dev/Fn: %X Slot: %d\n", i,
|
|
||||||
pirq_tbl->slots[i].devfn, pirq_tbl->slots[i].slot);
|
|
||||||
for (j = 0; j < 4; j++) {
|
|
||||||
printk_debug("INT: %c bitmap: %x ", 'A' + j,
|
|
||||||
pirq_tbl->slots[i].irq[j].bitmap);
|
|
||||||
for (k = 0; (!((pirq_tbl->slots[i].irq[j].bitmap >> k) & 1)) && (pirq_tbl->slots[i].irq[j].bitmap != 0); k++) ; /* Finds lsb in bitmap to IRQ#. */
|
|
||||||
pirq[j] = k;
|
|
||||||
printk_debug("PIRQ: %d\n", k);
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Bus, device, slots IRQs for {A,B,C,D}. */
|
|
||||||
pci_assign_irqs(pirq_tbl->slots[i].bus,
|
|
||||||
pirq_tbl->slots[i].devfn >> 3, pirq);
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Put the PIR table in memory and checksum. */
|
|
||||||
return pirtable_end;
|
|
||||||
}
|
}
|
|
@ -42,7 +42,7 @@ uses CONFIG_TSC_X86RDTSC_CALIBRATE_WITH_TIMER2
|
||||||
# uses CONFIG_CONSOLE_VGA
|
# uses CONFIG_CONSOLE_VGA
|
||||||
# uses CONFIG_PCI_ROM_RUN
|
# uses CONFIG_PCI_ROM_RUN
|
||||||
uses CONFIG_VIDEO_MB
|
uses CONFIG_VIDEO_MB
|
||||||
|
uses PIRQ_ROUTE
|
||||||
|
|
||||||
## ROM_SIZE is the size of boot ROM that this board will use.
|
## ROM_SIZE is the size of boot ROM that this board will use.
|
||||||
default ROM_SIZE = 256 * 1024
|
default ROM_SIZE = 256 * 1024
|
||||||
|
@ -71,6 +71,7 @@ default CONFIG_TSC_X86RDTSC_CALIBRATE_WITH_TIMER2=1
|
||||||
##
|
##
|
||||||
default HAVE_PIRQ_TABLE=1
|
default HAVE_PIRQ_TABLE=1
|
||||||
default IRQ_SLOT_COUNT=5 # TODO?
|
default IRQ_SLOT_COUNT=5 # TODO?
|
||||||
|
default PIRQ_ROUTE=1
|
||||||
|
|
||||||
##
|
##
|
||||||
## Build code to export a CMOS option table
|
## Build code to export a CMOS option table
|
||||||
|
|
|
@ -63,6 +63,7 @@ uses CONFIG_VIDEO_MB
|
||||||
uses CONFIG_SPLASH_GRAPHIC
|
uses CONFIG_SPLASH_GRAPHIC
|
||||||
uses CONFIG_GX1_VIDEO
|
uses CONFIG_GX1_VIDEO
|
||||||
uses CONFIG_GX1_VIDEOMODE
|
uses CONFIG_GX1_VIDEOMODE
|
||||||
|
uses PIRQ_ROUTE
|
||||||
|
|
||||||
## Enable VGA with a splash screen (only 640x480 to run on most monitors).
|
## Enable VGA with a splash screen (only 640x480 to run on most monitors).
|
||||||
## We want to support up to 1024x768@16 so we need 2MiB video memory.
|
## We want to support up to 1024x768@16 so we need 2MiB video memory.
|
||||||
|
@ -82,6 +83,7 @@ default CONFIG_UDELAY_TSC = 1
|
||||||
default CONFIG_TSC_X86RDTSC_CALIBRATE_WITH_TIMER2 = 1
|
default CONFIG_TSC_X86RDTSC_CALIBRATE_WITH_TIMER2 = 1
|
||||||
default HAVE_PIRQ_TABLE = 1
|
default HAVE_PIRQ_TABLE = 1
|
||||||
default IRQ_SLOT_COUNT = 2 # Soldered NIC, internal USB, no real slots
|
default IRQ_SLOT_COUNT = 2 # Soldered NIC, internal USB, no real slots
|
||||||
|
default PIRQ_ROUTE = 1
|
||||||
default HAVE_OPTION_TABLE = 0
|
default HAVE_OPTION_TABLE = 0
|
||||||
default ROM_IMAGE_SIZE = 64 * 1024
|
default ROM_IMAGE_SIZE = 64 * 1024
|
||||||
default FALLBACK_SIZE = 128 * 1024
|
default FALLBACK_SIZE = 128 * 1024
|
||||||
|
|
|
@ -63,6 +63,7 @@ uses CONFIG_VIDEO_MB
|
||||||
uses CONFIG_SPLASH_GRAPHIC
|
uses CONFIG_SPLASH_GRAPHIC
|
||||||
uses CONFIG_GX1_VIDEO
|
uses CONFIG_GX1_VIDEO
|
||||||
uses CONFIG_GX1_VIDEOMODE
|
uses CONFIG_GX1_VIDEOMODE
|
||||||
|
uses PIRQ_ROUTE
|
||||||
|
|
||||||
## Enable VGA with a splash screen (only 640x480 to run on most monitors).
|
## Enable VGA with a splash screen (only 640x480 to run on most monitors).
|
||||||
## We want to support up to 1024x768@16 so we need 2MiB video memory.
|
## We want to support up to 1024x768@16 so we need 2MiB video memory.
|
||||||
|
@ -82,6 +83,7 @@ default CONFIG_UDELAY_TSC = 1
|
||||||
default CONFIG_TSC_X86RDTSC_CALIBRATE_WITH_TIMER2 = 1
|
default CONFIG_TSC_X86RDTSC_CALIBRATE_WITH_TIMER2 = 1
|
||||||
default HAVE_PIRQ_TABLE = 1
|
default HAVE_PIRQ_TABLE = 1
|
||||||
default IRQ_SLOT_COUNT = 2 # Soldered NIC, internal USB, no real slots
|
default IRQ_SLOT_COUNT = 2 # Soldered NIC, internal USB, no real slots
|
||||||
|
default PIRQ_ROUTE = 1
|
||||||
default HAVE_OPTION_TABLE = 0
|
default HAVE_OPTION_TABLE = 0
|
||||||
default ROM_IMAGE_SIZE = 64 * 1024
|
default ROM_IMAGE_SIZE = 64 * 1024
|
||||||
default FALLBACK_SIZE = 128 * 1024
|
default FALLBACK_SIZE = 128 * 1024
|
||||||
|
|
|
@ -48,6 +48,7 @@ uses CONFIG_VIDEO_MB
|
||||||
uses USE_DCACHE_RAM
|
uses USE_DCACHE_RAM
|
||||||
uses DCACHE_RAM_BASE
|
uses DCACHE_RAM_BASE
|
||||||
uses DCACHE_RAM_SIZE
|
uses DCACHE_RAM_SIZE
|
||||||
|
uses PIRQ_ROUTE
|
||||||
|
|
||||||
## ROM_SIZE is the size of boot ROM that this board will use.
|
## ROM_SIZE is the size of boot ROM that this board will use.
|
||||||
default ROM_SIZE = 256*1024
|
default ROM_SIZE = 256*1024
|
||||||
|
@ -84,6 +85,7 @@ default CONFIG_TSC_X86RDTSC_CALIBRATE_WITH_TIMER2=1
|
||||||
##
|
##
|
||||||
default HAVE_PIRQ_TABLE=1
|
default HAVE_PIRQ_TABLE=1
|
||||||
default IRQ_SLOT_COUNT=6
|
default IRQ_SLOT_COUNT=6
|
||||||
|
default PIRQ_ROUTE=1
|
||||||
#object irq_tables.o
|
#object irq_tables.o
|
||||||
|
|
||||||
##
|
##
|
||||||
|
|
|
@ -69,39 +69,7 @@ const struct irq_routing_table intel_irq_routing_table = {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
unsigned long write_pirq_routing_table(unsigned long addr)
|
||||||
unsigned long write_pirq_routing_table(unsigned long addr){
|
{
|
||||||
int i, j, k, num_entries;
|
return copy_pirq_routing_table(addr);
|
||||||
unsigned int pirq[4];
|
|
||||||
uint16_t chipset_irq_map;
|
|
||||||
uint32_t pciAddr, pirtable_end;
|
|
||||||
struct irq_routing_table *pirq_tbl;
|
|
||||||
|
|
||||||
pirtable_end = copy_pirq_routing_table(addr);
|
|
||||||
|
|
||||||
/* Set up chipset IRQ steering */
|
|
||||||
pciAddr = 0x80000000 | (CHIPSET_DEV_NUM << 11) | 0x5C;
|
|
||||||
chipset_irq_map = (11 << 12 | 10 << 8 | 11 << 4 | 10);
|
|
||||||
printk_debug("%s(%08X, %04X)\n", __FUNCTION__, pciAddr, chipset_irq_map);
|
|
||||||
outl(pciAddr & ~3, 0xCF8);
|
|
||||||
outl(chipset_irq_map, 0xCFC);
|
|
||||||
|
|
||||||
pirq_tbl = (struct irq_routing_table *)(addr);
|
|
||||||
num_entries = (pirq_tbl->size - 32)/16;
|
|
||||||
|
|
||||||
/* Set PCI IRQs */
|
|
||||||
for (i=0; i < num_entries; i++){
|
|
||||||
printk_debug("PIR Entry %d Dev/Fn: %X Slot: %d\n", i, pirq_tbl->slots[i].devfn, pirq_tbl->slots[i].slot);
|
|
||||||
for (j = 0; j < 4; j++){
|
|
||||||
printk_debug("INT: %c bitmap: %x ", 'A'+j, pirq_tbl->slots[i].irq[j].bitmap);
|
|
||||||
for (k = 0; (!((pirq_tbl->slots[i].irq[j].bitmap >> k) & 1)) && (pirq_tbl->slots[i].irq[j].bitmap != 0); k++); /* finds lsb in bitmap to IRQ# */
|
|
||||||
pirq[j] = k;
|
|
||||||
printk_debug("PIRQ: %d\n", k);
|
|
||||||
}
|
|
||||||
pci_assign_irqs(pirq_tbl->slots[i].bus, pirq_tbl->slots[i].devfn, pirq); /* bus, device, slots IRQs for {A,B,C,D} */
|
|
||||||
}
|
|
||||||
|
|
||||||
/* put the PIR table in memory and checksum */
|
|
||||||
return pirtable_end;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -42,6 +42,7 @@ uses TTYS0_LCS
|
||||||
uses CONFIG_UDELAY_TSC
|
uses CONFIG_UDELAY_TSC
|
||||||
uses CONFIG_TSC_X86RDTSC_CALIBRATE_WITH_TIMER2
|
uses CONFIG_TSC_X86RDTSC_CALIBRATE_WITH_TIMER2
|
||||||
uses CONFIG_VIDEO_MB
|
uses CONFIG_VIDEO_MB
|
||||||
|
uses PIRQ_ROUTE
|
||||||
|
|
||||||
## ROM_SIZE is the size of boot ROM that this board will use.
|
## ROM_SIZE is the size of boot ROM that this board will use.
|
||||||
default ROM_SIZE = 256*1024
|
default ROM_SIZE = 256*1024
|
||||||
|
@ -75,6 +76,7 @@ default CONFIG_TSC_X86RDTSC_CALIBRATE_WITH_TIMER2=1
|
||||||
##
|
##
|
||||||
default HAVE_PIRQ_TABLE=1
|
default HAVE_PIRQ_TABLE=1
|
||||||
default IRQ_SLOT_COUNT=2
|
default IRQ_SLOT_COUNT=2
|
||||||
|
default PIRQ_ROUTE=1
|
||||||
#object irq_tables.o
|
#object irq_tables.o
|
||||||
|
|
||||||
##
|
##
|
||||||
|
|
|
@ -43,6 +43,7 @@ uses TTYS0_BAUD
|
||||||
uses TTYS0_BASE
|
uses TTYS0_BASE
|
||||||
uses TTYS0_LCS
|
uses TTYS0_LCS
|
||||||
uses CONFIG_VIDEO_MB
|
uses CONFIG_VIDEO_MB
|
||||||
|
uses PIRQ_ROUTE
|
||||||
|
|
||||||
## ROM_SIZE is the size of boot ROM that this board will use.
|
## ROM_SIZE is the size of boot ROM that this board will use.
|
||||||
default ROM_SIZE = 256*1024
|
default ROM_SIZE = 256*1024
|
||||||
|
@ -72,6 +73,7 @@ default CONFIG_UDELAY_IO=1
|
||||||
##
|
##
|
||||||
default HAVE_PIRQ_TABLE=0
|
default HAVE_PIRQ_TABLE=0
|
||||||
default IRQ_SLOT_COUNT=2
|
default IRQ_SLOT_COUNT=2
|
||||||
|
default PIRQ_ROUTE=1
|
||||||
#object irq_tables.o
|
#object irq_tables.o
|
||||||
|
|
||||||
##
|
##
|
||||||
|
|
|
@ -45,6 +45,7 @@ uses CONFIG_COMPRESSED_PAYLOAD_LZMA
|
||||||
uses CONFIG_COMPRESSED_PAYLOAD_NRV2B
|
uses CONFIG_COMPRESSED_PAYLOAD_NRV2B
|
||||||
uses CONFIG_PRECOMPRESSED_PAYLOAD
|
uses CONFIG_PRECOMPRESSED_PAYLOAD
|
||||||
uses CONFIG_VIDEO_MB
|
uses CONFIG_VIDEO_MB
|
||||||
|
uses PIRQ_ROUTE
|
||||||
|
|
||||||
## ROM_SIZE is the size of boot ROM that this board will use.
|
## ROM_SIZE is the size of boot ROM that this board will use.
|
||||||
default ROM_SIZE = 256*1024
|
default ROM_SIZE = 256*1024
|
||||||
|
@ -82,6 +83,7 @@ default CONFIG_TSC_X86RDTSC_CALIBRATE_WITH_TIMER2=1
|
||||||
##
|
##
|
||||||
default HAVE_PIRQ_TABLE=1
|
default HAVE_PIRQ_TABLE=1
|
||||||
default IRQ_SLOT_COUNT=7
|
default IRQ_SLOT_COUNT=7
|
||||||
|
default PIRQ_ROUTE=1
|
||||||
#object irq_tables.o
|
#object irq_tables.o
|
||||||
|
|
||||||
##
|
##
|
||||||
|
|
|
@ -68,6 +68,7 @@ uses CONFIG_VIDEO_MB
|
||||||
uses USE_DCACHE_RAM
|
uses USE_DCACHE_RAM
|
||||||
uses DCACHE_RAM_BASE
|
uses DCACHE_RAM_BASE
|
||||||
uses DCACHE_RAM_SIZE
|
uses DCACHE_RAM_SIZE
|
||||||
|
uses PIRQ_ROUTE
|
||||||
|
|
||||||
## ROM_SIZE is the size of boot ROM that this board will use.
|
## ROM_SIZE is the size of boot ROM that this board will use.
|
||||||
default ROM_SIZE = 512*1024
|
default ROM_SIZE = 512*1024
|
||||||
|
@ -104,7 +105,7 @@ default CONFIG_TSC_X86RDTSC_CALIBRATE_WITH_TIMER2=1
|
||||||
##
|
##
|
||||||
default HAVE_PIRQ_TABLE=1
|
default HAVE_PIRQ_TABLE=1
|
||||||
default IRQ_SLOT_COUNT=5
|
default IRQ_SLOT_COUNT=5
|
||||||
|
default PIRQ_ROUTE=1
|
||||||
##
|
##
|
||||||
## Build code to export a CMOS option table
|
## Build code to export a CMOS option table
|
||||||
##
|
##
|
||||||
|
|
|
@ -106,46 +106,5 @@ const struct irq_routing_table intel_irq_routing_table = {
|
||||||
|
|
||||||
unsigned long write_pirq_routing_table(unsigned long addr)
|
unsigned long write_pirq_routing_table(unsigned long addr)
|
||||||
{
|
{
|
||||||
int i, j, k, num_entries;
|
return copy_pirq_routing_table(addr);
|
||||||
unsigned char pirq[4];
|
|
||||||
uint16_t chipset_irq_map;
|
|
||||||
uint32_t pciAddr, pirtable_end;
|
|
||||||
struct irq_routing_table *pirq_tbl;
|
|
||||||
|
|
||||||
pirtable_end = copy_pirq_routing_table(addr);
|
|
||||||
|
|
||||||
/* Set up chipset IRQ steering. */
|
|
||||||
pciAddr = 0x80000000 | (CHIPSET_DEV_NUM << 11) | 0x5C;
|
|
||||||
chipset_irq_map = (PIRQD << 12 | PIRQC << 8 | PIRQB << 4 | PIRQA);
|
|
||||||
printk_debug("%s(%08X, %04X)\n", __FUNCTION__, pciAddr,
|
|
||||||
chipset_irq_map);
|
|
||||||
outl(pciAddr & ~3, 0xCF8);
|
|
||||||
outl(chipset_irq_map, 0xCFC);
|
|
||||||
|
|
||||||
pirq_tbl = (struct irq_routing_table *) (addr);
|
|
||||||
num_entries = (pirq_tbl->size - 32) / 16;
|
|
||||||
|
|
||||||
/* Set PCI IRQs. */
|
|
||||||
for (i = 0; i < num_entries; i++) {
|
|
||||||
printk_debug("PIR Entry %d Dev/Fn: %X Slot: %d\n", i,
|
|
||||||
pirq_tbl->slots[i].devfn, pirq_tbl->slots[i].slot);
|
|
||||||
for (j = 0; j < 4; j++) {
|
|
||||||
printk_debug("INT: %c bitmap: %x ", 'A' + j,
|
|
||||||
pirq_tbl->slots[i].irq[j].bitmap);
|
|
||||||
/* Finds lsb in bitmap to IRQ#. */
|
|
||||||
for (k = 0;
|
|
||||||
(!((pirq_tbl->slots[i].irq[j].bitmap >> k) & 1))
|
|
||||||
&& (pirq_tbl->slots[i].irq[j].bitmap != 0);
|
|
||||||
k++);
|
|
||||||
pirq[j] = k;
|
|
||||||
printk_debug("PIRQ: %d\n", k);
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Bus, device, slots IRQs for {A,B,C,D}. */
|
|
||||||
pci_assign_irqs(pirq_tbl->slots[i].bus,
|
|
||||||
pirq_tbl->slots[i].devfn >> 3, pirq);
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Put the PIR table in memory and checksum. */
|
|
||||||
return pirtable_end;
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -23,3 +23,4 @@ driver cs5530.o
|
||||||
driver cs5530_isa.o
|
driver cs5530_isa.o
|
||||||
driver cs5530_ide.o
|
driver cs5530_ide.o
|
||||||
driver cs5530_vga.o
|
driver cs5530_vga.o
|
||||||
|
driver cs5530_pirq.o
|
||||||
|
|
|
@ -0,0 +1,39 @@
|
||||||
|
/*
|
||||||
|
* This file is part of the coreboot project.
|
||||||
|
*
|
||||||
|
* Copyright (C) 2007 Nikolay Petukhov <nikolay.petukhov@gmail.com>
|
||||||
|
*
|
||||||
|
* This program is free software; you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation; either version 2 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* This program is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with this program; if not, write to the Free Software
|
||||||
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include <arch/pirq_routing.h>
|
||||||
|
#include <console/console.h>
|
||||||
|
#include <device/pci.h>
|
||||||
|
#include <device/pci_ids.h>
|
||||||
|
|
||||||
|
#if (PIRQ_ROUTE==1 && HAVE_PIRQ_TABLE==1)
|
||||||
|
void pirq_assign_irqs(const unsigned char pIntAtoD[4])
|
||||||
|
{
|
||||||
|
device_t pdev;
|
||||||
|
|
||||||
|
pdev = dev_find_device(PCI_VENDOR_ID_CYRIX,
|
||||||
|
PCI_DEVICE_ID_CYRIX_5530_LEGACY, 0);
|
||||||
|
|
||||||
|
if (pdev) {
|
||||||
|
pci_write_config8(pdev, 0x5c, (pIntAtoD[1] << 4 | pIntAtoD[0]));
|
||||||
|
pci_write_config8(pdev, 0x5d, (pIntAtoD[3] << 4 | pIntAtoD[2]));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
#endif
|
|
@ -20,3 +20,4 @@
|
||||||
config chip.h
|
config chip.h
|
||||||
driver cs5536.o
|
driver cs5536.o
|
||||||
driver cs5536_ide.o
|
driver cs5536_ide.o
|
||||||
|
driver cs5536_pirq.o
|
||||||
|
|
|
@ -0,0 +1,39 @@
|
||||||
|
/*
|
||||||
|
* This file is part of the coreboot project.
|
||||||
|
*
|
||||||
|
* Copyright (C) 2007 Nikolay Petukhov <nikolay.petukhov@gmail.com>
|
||||||
|
*
|
||||||
|
* This program is free software; you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation; either version 2 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* This program is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with this program; if not, write to the Free Software
|
||||||
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include <arch/pirq_routing.h>
|
||||||
|
#include <console/console.h>
|
||||||
|
#include <device/pci.h>
|
||||||
|
#include <device/pci_ids.h>
|
||||||
|
|
||||||
|
#if (PIRQ_ROUTE==1 && HAVE_PIRQ_TABLE==1)
|
||||||
|
void pirq_assign_irqs(const unsigned char pIntAtoD[4])
|
||||||
|
{
|
||||||
|
device_t pdev;
|
||||||
|
|
||||||
|
pdev = dev_find_device(PCI_VENDOR_ID_AMD,
|
||||||
|
PCI_DEVICE_ID_AMD_CS5536_ISA, 0);
|
||||||
|
|
||||||
|
if (pdev) {
|
||||||
|
pci_write_config16(pdev, 0x5c, (pIntAtoD[3] << 12
|
||||||
|
| pIntAtoD[2] << 8 | pIntAtoD[1] << 4 | pIntAtoD[0]));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
#endif
|
Loading…
Reference in New Issue