===================================================================
@@ -104,8 +104,13 @@
bool "VIA"
config VENDOR_WINENT
bool "Win Enterprises"
+<<<<<<< .mine
+config VENDOR_NOKIA
+ bool "Nokia"
+=======
config VENDOR_WYSE
bool "Wyse"
+>>>>>>> .r5583
endchoice
@@ -389,8 +394,15 @@
default "Win Enterprise"
depends on VENDOR_WINENT
+<<<<<<< .mine
config MAINBOARD_VENDOR
string
+ default "Nokia"
+ depends on VENDOR_NOKIA
+
+=======
+config MAINBOARD_VENDOR
+ string
default "Wyse"
depends on VENDOR_WYSE
@@ -399,6 +411,7 @@
default 0x102d
depends on VENDOR_WYSE
+>>>>>>> .r5583
source "src/mainboard/a-trend/Kconfig"
source "src/mainboard/abit/Kconfig"
source "src/mainboard/advantech/Kconfig"
@@ -449,7 +462,11 @@
source "src/mainboard/tyan/Kconfig"
source "src/mainboard/via/Kconfig"
source "src/mainboard/winent/Kconfig"
+<<<<<<< .mine
+source "src/mainboard/nokia/Kconfig"
+=======
source "src/mainboard/wyse/Kconfig"
+>>>>>>> .r5583
config BOARD_ROMSIZE_KB_128
bool
===================================================================
@@ -5,7 +5,8 @@
##
## 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; version 2 of the License.
+## 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
@@ -16,7 +17,8 @@
## along with this program; if not, write to the Free Software
## Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
##
-
+## Based on romstage.c from src/mainboard/asus/p2b
+##
config BOARD_NOKIA_IP530
bool "IP530"
select ARCH_X86
@@ -26,8 +28,10 @@
select SUPERIO_SMSC_SMSCSUPERIO
select ROMCC
select HAVE_PIRQ_TABLE
+ select PIRQ_ROUTE
select UDELAY_TSC
- select BOARD_ROMSIZE_KB_256
+# select HAVE_ACPI_TABLES
+# select HAVE_SMI_HANDLER
config MAINBOARD_DIR
string
@@ -49,3 +53,27 @@
default 6
depends on BOARD_NOKIA_IP530
+config CONFIG_IRQ_SLOT_COUNT
+ int
+ default 1
+ depends on BOARD_NOKIA_IP530
+
+config CONFIG_GENERATE_PIRQ_TABLE
+ int
+ default 1
+ depends on BOARD_NOKIA_IP530
+
+config HEAP_SIZE
+ hex
+ default 0x60000
+ depends on BOARD_NOKIA_IP530
+
+config CONFIG_PIRQ_ROUTE
+ int
+ default 1
+ depends on BOARD_NOKIA_IP530
+
+config CONFIG_DEBUG
+ int
+ default 1
+ depends on BOARD_NOKIA_IP530
===================================================================
@@ -18,6 +18,8 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
+/* Based on romstage.c from src/mainboard/asus/p2b */
+
#include <stdint.h>
#include <device/pci_def.h>
#include <arch/io.h>
@@ -25,7 +27,8 @@
#include <arch/romcc_io.h>
#include <arch/hlt.h>
#include <stdlib.h>
-#include <console/console.h>
+#include "pc80/serial.c"
+#include "console/console.c"
#include "lib/ramtest.c"
#include "southbridge/intel/i82371eb/i82371eb_enable_rom.c"
#include "southbridge/intel/i82371eb/i82371eb_early_smbus.c"
@@ -37,33 +40,35 @@
#include "cpu/x86/bist.h"
#include "superio/smsc/smscsuperio/smscsuperio_early_serial.c"
-#define SERIAL_DEV PNP_DEV(0x3f0, SMSCSUPERIO_SP1)
-
+#define SERIAL_DEV PNP_DEV( 0x3f0, SMSCSUPERIO_SP1 )
+//-----------------------------------------------------------------------------
static inline int spd_read_byte(unsigned int device, unsigned int address)
{
return smbus_read_byte(device, address);
}
-
+//-----------------------------------------------------------------------------
#include "northbridge/intel/i440bx/raminit.c"
#include "northbridge/intel/i440bx/debug.c"
-
+//-----------------------------------------------------------------------------
static void main(unsigned long bist)
{
- if (bist == 0)
+ if ( bist == 0 )
+ {
early_mtrr_init();
-
- smscsuperio_enable_serial(SERIAL_DEV, CONFIG_TTYS0_BASE);
+ }
+ smscsuperio_enable_serial( SERIAL_DEV, CONFIG_TTYS0_BASE );
uart_init();
console_init();
- report_bist_failure(bist);
+ report_bist_failure( bist );
/* Enable access to the full ROM chip, needed very early by CBFS. */
- i82371eb_enable_rom(PCI_DEV(0, 7, 0) ); /* ISA bridge at 00:07.0. */
-
+ i82371eb_enable_rom( PCI_DEV( 0, 7, 0 ) ); /* ISA bridge at 00:07.0. */
enable_smbus();
- /* dump_spd_registers(); */
+// dump_spd_registers();
sdram_set_registers();
sdram_set_spd_registers();
sdram_enable();
- /* ram_check(0, 640 * 1024); */
+// ram_check(0, 640 * 1024);
+ return;
}
+//-----------------------------------------------------------------------------
===================================================================
@@ -1,94 +1,114 @@
##
-## This file is part of the coreboot project.
+## Based on romstage.c from src/mainboard/asus/p2b
##
-## Copyright (C) 2010 Marc Bertens <mbertens@xs4all.nl>
-##
-## 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
-##
-
chip northbridge/intel/i440bx # Northbridge
- device lapic_cluster 0 on # APIC cluster
- chip cpu/intel/socket_PGA370 # CPU
- device lapic 0 on end # APIC
- end
- end
- device pci_domain 0 on # PCI domain
- device pci 0.0 on end # Host bridge
- device pci 1.0 on end # PCI/AGP bridge
- chip southbridge/intel/i82371eb # Southbridge
- device pci 7.0 on # ISA bridge
- chip superio/smsc/smscsuperio # Super I/O (SMSC FDC37C878)
- device pnp 3f0.0 on # Floppy
- io 0x60 = 0x3f0
- irq 0x70 = 6
- drq 0x74 = 2
- end
- device pnp 3f0.3 on # Parallel port
- io 0x60 = 0x378
- irq 0x70 = 7
- drq 0x74 = 4
- end
- device pnp 3f0.4 on # COM1
- io 0x60 = 0x3f8
- irq 0x70 = 4
- end
- device pnp 3f0.5 on # COM2 / IR
- io 0x60 = 0x2f8
- irq 0x70 = 3
- end
- device pnp 3f0.7 on # PS/2 keyboard / mouse
- io 0x60 = 0x60
- io 0x62 = 0x64
- irq 0x70 = 1 # PS/2 keyboard interrupt
- irq 0x72 = 12 # PS/2 mouse interrupt
- end
- device pnp 3f0.9 on # Game port
- io 0x60 = 0x201
- end
- device pnp 3f0.a on # Power-management events (PME)
- io 0x60 = 0x600
- end
- device pnp 3f0.b on # MIDI port (MPU-401)
- io 0x60 = 0x330
- irq 0x70 = 5
- end
- end
- end
- device pci 7.1 on end # IDE
- device pci 7.2 on end # USB
- device pci 7.3 on end # ACPI
- register "ide0_enable" = "1"
- register "ide1_enable" = "1"
- register "ide_legacy_enable" = "1"
- # Enable UDMA/33 for higher speed if your IDE device(s) support it.
- register "ide0_drive0_udma33_enable" = "0"
- register "ide0_drive1_udma33_enable" = "0"
- register "ide1_drive0_udma33_enable" = "0"
- register "ide1_drive1_udma33_enable" = "0"
- end
- device pci 0d.0 on end # NIC (DEC DECchip 21142/43)
- device pci 0e.0 on end # NIC (DEC DECchip 21142/43)
- device pci 0f.0 on end # CardBus bridge (TI PCI1225)
- device pci 0f.1 on end # CardBus bridge (TI PCI1225)
- end
- device pci_domain 1 on # PCI domain 1
- device pci 00.0 on end # PCI bridge (DEC DECchip 21150)
- end
- device pci_domain 2 on # PCI domain 2
- device pci 04.0 on end # NIC (DECchip 21142/43)
- device pci 04.0 on end # NIC (DECchip 21142/43)
- end
+ device apic_cluster 0 on # APIC cluster
+ chip cpu/intel/socket_PGA370 # CPU
+ device apic 0 on # APIC
+ end
+ end
+ end
+ device pci_domain 0 on # PCI domain
+ device pci 0.0 on # Host bridge
+ end
+ device pci 1.0 on # PCI/AGP bridge
+ end
+ chip southbridge/intel/i82371eb # Southbridge
+ device pci 7.0 on # ISA bridge
+ chip superio/smsc/smscsuperio # Super I/O FDC 37C878
+ device pnp 3f0.0 off # Floppy
+ # LDN 0x00 (Floppy)
+ #
+ # Register 0x30 ( Activate ) needs to be set to 0x00 (disable de FDD)
+ end
+ device pnp 3f0.3 off # Parallel port
+ # LDN 0x03 (Parallel port)
+ #
+ # Register 0x30 ( Activate ) needs to be set to 0x00 (disable de PP)
+ # Registers 0x60, 0x61, 0x70 are set to 0x00
+ end
+ device pnp 3f0.4 on # COM1
+ io 0x60 = 0x3f8
+ irq 0x70 = 4
+ end
+ device pnp 3f0.5 on # COM2 / IR
+ io 0x60 = 0x2f8
+ irq 0x70 = 3
+ end
+ device pnp 3f0.7 on # PS/2 keyboard / mouse
+# irq 0x70 = 0x01 # PS/2 keyboard interrupt
+# irq 0x72 = 0x0c # PS/2 mouse interrupt
+# irq 0xF0 = 0x00
+ end
+ device pnp 3f0.6 on # RTC
+ # LDN 0x06 (Real-time clock (RTC))
+ #
+ # Register 0x63 (I/O Base Addr for RTC) is set to 0x72
+ # Register 0x70 (Interrupt Select) is set to 0x08
+ # Register 0xF0 (RTC Mode Register) is set to 0x10
+ # RTC Bank Selection = Bank 0 at 70h and Bank 1 at Secondary Base
+ # Address (Note 1)
+ io 0x62 = 0x0072
+ irq 0x70 = 8
+ irq 0xF0 = 16
+ end
+ device pnp 3f0.8 on # AUX I/O
+ # LDN 0x08 (Aux I/O)
+ #
+ # Register 0xB2 ( Soft Power Status Register 1 ) is set to 0x0C
+ # KCLK: Keyboard clock; high to low transition on the pin, cleared
+ # by a read of this register
+ # KCLK: Mouse clock; high to low transition on the pin, cleared by
+ # a read of this register
+ #
+ # Register 0xB3 ( Soft Power Status Register 2 ) is set to 0x05
+ # RXD1: UART 1 Receive Data; high to low transition on the pin,
+ # cleared by a read of this register
+ # RING Status bit “RING_STS”; Latched, cleared on read.
+ # 1 = Ring indicator input occurred on the nRING pin and,
+ # if enabled, caused the wakeup (activated nPowerOn)
+ #
+ # Register 0xF4 ( Watch-dog timer Control, WDT_CTRL ) is set to 0x20
+ # Stop_Cnt: This is used to terminate Delay 2 (Note 1) without
+ # generating a power down. This is used if the software
+ # determines that the power down should be aborted. When
+ # read, this bit indicates the following: Stop_Cnt = 0;
+ # Counter running Stop_Cnt = 1; Counter Stopped. Note:
+ # The write is self clearing.
+ #
+ # Register 0xF9 ( GP5 ) is set to 0x1C
+ # GP50 enabled
+ # GP52 enabled
+ # GP53 enabled
+ # GP54 enabled
+ drq 0xB2 = 0x0C
+ drq 0xB3 = 0x05
+ drq 0xF4 = 0x20
+ drq 0xF9 = 0x1C
+ end
+ device pnp 3f0.A off # ACPI
+ # LDN 0x0a (ACPI)
+ #
+ # Register 0x30 ( Activate ) is set to 0x00 (disable de ACPI)
+ # Register 0x60 ( I/O Base Addr for ACPI ) is set to 0x0C
+ # Register 0x61 ( I/O Base Addr for ACPI ) is set to 0x80
+ end
+ end
+ end
+ device pci 7.1 on # IDE
+ end
+ device pci 7.2 off # USB
+ end
+ device pci 7.3 off # ACPI
+ end
+ register "ide0_enable" = "1"
+ register "ide1_enable" = "1"
+ register "ide_legacy_enable" = "1"
+ # Enable UDMA/33 for higher speed if your IDE device(s) support it.
+ register "ide0_drive0_udma33_enable" = "0"
+ register "ide0_drive1_udma33_enable" = "0"
+ register "ide1_drive0_udma33_enable" = "0"
+ register "ide1_drive1_udma33_enable" = "0"
+ end
+ end
end
-
===================================================================
@@ -19,31 +19,74 @@
*/
#include <arch/pirq_routing.h>
+#include <console/console.h>
+#define PIRQ_MAX_DEVICES( no ) (32 + ( 16 * no ))
+//-----------------------------------------------------------------------------
const struct irq_routing_table intel_irq_routing_table = {
- PIRQ_SIGNATURE, /* u32 signature */
- PIRQ_VERSION, /* u16 version */
- 32 + 16 * CONFIG_IRQ_SLOT_COUNT,/* Max. number of devices on the bus */
- 0x00, /* Interrupt router bus */
- (0x07 << 3) | 0x0, /* Interrupt router dev */
- 0, /* IRQs devoted exclusively to PCI usage */
- 0x8086, /* Vendor */
- 0x122e, /* Device */
- 0, /* Miniport */
- { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, /* u8 rfu[11] */
- 0x36, /* Checksum */
+ /* u32 signature */
+ PIRQ_SIGNATURE,
+ /* u16 version */
+ PIRQ_VERSION,
+ /* Max. number of devices on the bus, set this through Kconfig */
+ PIRQ_MAX_DEVICES( CONFIG_IRQ_SLOT_COUNT ),
+ /* Interrupt router bus */
+ 0x00,
+ /* Interrupt router dev */
+ (0x07 << 3) | 0x0,
+ /* IRQs devoted exclusively to PCI usage */
+ 0,
+ /* Vendor, device */
+ 0x8086, 0x122e,
+ /* Miniport */
+ 0,
+ /* u8 rfu[11] */
+ { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 },
+ /* Checksum (has to be set to some value that would give 0 after the sum of all bytes
+ * for this structure (including checksum).
+ */
+ 0x08,
{
- /* bus, dev | fn, {link, bitmap}, {link, bitmap}, {link, bitmap}, {link, bitmap}, slot, rfu */
- {0x00, (0x07 << 3) | 0x0, {{0x00, 0x0ea8}, {0x00, 0x0ea8}, {0x00, 0x0ea8}, {0x63, 0x0ea8}}, 0x0, 0x0},
- {0x00, (0x0c << 3) | 0x0, {{0x61, 0x06a8}, {0x62, 0x06a8}, {0x00, 0x06a8}, {0x00, 0x06a8}}, 0x0, 0x0},
- {0x00, (0x0d << 3) | 0x0, {{0x60, 0x0ea8}, {0x61, 0x0ea8}, {0x00, 0x0ea8}, {0x00, 0x0ea8}}, 0x1, 0x0},
- {0x00, (0x09 << 3) | 0x0, {{0x62, 0x0ea8}, {0x63, 0x0ea8}, {0x60, 0x0ea8}, {0x61, 0x0ea8}}, 0x2, 0x0},
- {0x00, (0x0a << 3) | 0x0, {{0x63, 0x0ea8}, {0x00, 0x0ea8}, {0x00, 0x0ea8}, {0x00, 0x0ea8}}, 0x0, 0x0},
- {0x01, (0x00 << 3) | 0x0, {{0x60, 0x0ea8}, {0x00, 0x0ea8}, {0x00, 0x0ea8}, {0x00, 0x0ea8}}, 0x0, 0x0},
+ // Table by CareBear:
+ // 0x1E20 = 0001111000100000 (IRQ5, IRQ9, IRQ10, IRQ11, IRQ12)
+ //
+ // Got some unexpected behaviour for the USB, orginal set 63
+ { 0x00, (0x07 << 3) | 0x0, {{0x00, 0x1E20}, {0x00, 0x1E20}, {0x00, 0x1E20}, {0x63, 0x1E20}}, 0x0, 0x0 },
+ // 62
+ { 0x00, (0x0d << 3) | 0x0, {{0x62, 0x1E20}, {0x00, 0x0000}, {0x00, 0x0000}, {0x00, 0x0000}}, 0x0, 0x0 },
+ // 63
+ { 0x00, (0x0e << 3) | 0x0, {{0x63, 0x1E20}, {0x00, 0x0000}, {0x00, 0x0000}, {0x00, 0x0000}}, 0x0, 0x0 },
+ { 0x02, (0x04 << 3) | 0x0, {{0x60, 0x1E20}, {0x00, 0x0000}, {0x00, 0x0000}, {0x00, 0x0000}}, 0x0, 0x0 },
+ { 0x02, (0x05 << 3) | 0x0, {{0x61, 0x1E20}, {0x00, 0x0000}, {0x00, 0x0000}, {0x00, 0x0000}}, 0x0, 0x0 },
+ // TODO: fix the PCI1225.INTRTIE_BIT = 0
+ { 0x00, (0x0f << 3) | 0x0, {{0x60, 0x1E20}, {0x61, 0x1E20}, {0x00, 0x0000}, {0x00, 0x0000}}, 0x0, 0x0 },
}
};
+//-----------------------------------------------------------------------------
+static int calc_checksum( const struct irq_routing_table *rt )
+{
+ long i;
+ uint8_t *addr, sum = 0;
+ addr = (uint8_t *) rt;
+ for (i = 0; i < rt->size; i++)
+ {
+ sum += addr[i];
+ }
+ return ( sum );
+}
+//-----------------------------------------------------------------------------
unsigned long write_pirq_routing_table(unsigned long addr)
{
- return copy_pirq_routing_table(addr);
+ int iResult = calc_checksum( &intel_irq_routing_table );
+ printk( BIOS_DEBUG, "PIRQ_TABLE_CHECKSUM is %x\n", 0x100 - ( ( iResult - intel_irq_routing_table.checksum ) & 0xFF ) );
+ return ( copy_pirq_routing_table( addr ) );
}
+//-----------------------------------------------------------------------------
+void pirq_assign_irqs(const unsigned char pIntAtoD[4])
+{
+ // This is just here as a placeholder until the point is solved in the
+ // main code of coreboot
+ return;
+}
+//-----------------------------------------------------------------------------
===================================================================
@@ -20,7 +20,67 @@
#include <device/device.h>
#include "chip.h"
+#include <device/pci_def.h>
+#include <arch/io.h>
+#include <device/pnp_def.h>
+#include <console/console.h>
+#define OUTB outb
+#define INB inb
+//-----------------------------------------------------------------------------
+/*
+* Taken from flashrom project
+* Generic Super I/O helper functions
+*/
+static uint8_t sio_read(uint16_t port, uint8_t reg)
+{
+ OUTB( reg, port );
+ return ( INB( port + 1 ) );
+}
+//-----------------------------------------------------------------------------
+static void sio_write(uint16_t port, uint8_t reg, uint8_t data)
+{
+ OUTB( reg, port );
+ OUTB( data, port + 1 );
+ return;
+}
+//-----------------------------------------------------------------------------
+static void nokia_ip530_board_enable( device_t dev )
+{
+ print_debug( "Setting up IP530-Super I/O devices\n");
+ /*
+ * Register 03 (Index Address) needs to be set to 0x80:
+ *
+ * Enable GP1, WDT_CTRL, GP5, GP6, Soft Power Enable and Status
+ * Register access when not in configuration mode (0x80)
+ * Sets GP1 etc. selection regis ter used when in Run mode
+ * (not in Configuration Mode), 00 = 0xE0
+ *
+ * Register 22: (Power Control) need to be set to 0x30:
+ *
+ * Serial Port 1 Power, = 1 Power on or enabled (0x10)
+ * Serial Port 2 Power, = 1 Power on or enabled (0x20)
+ * *Note* the rest of the devices are disabled.
+ *
+ * Register 24: ( OSC ) need to be set to 0x84:
+ *
+ * Osc is on, BRG clock is on. (0x04)
+ * IRQ8 Polarity is IRQ8 is active low (0x80)
+ *
+ * This is done outside the config mode
+ */
+ printk( BIOS_DEBUG, "--Correcting direct registers\n");
+ sio_write( 0x20, 0x03, 0x80 );
+ printk( BIOS_DEBUG, "--Register 0x03 = %X := 0x80\n", sio_read( 0x20, 0x03 ) );
+ sio_write( 0x20, 0x22, 0x30 );
+ printk( BIOS_DEBUG, "--Register 0x22 = %X := 0x30\n", sio_read( 0x20, 0x22 ) );
+ sio_write( 0x20, 0x24, 0x84 );
+ printk( BIOS_DEBUG, "--Register 0x24 = %X := 0x84\n", sio_read( 0x20, 0x24 ) );
+ return;
+}
+//-----------------------------------------------------------------------------
struct chip_operations mainboard_ops = {
- CHIP_NAME("Nokia IP530 Mainboard")
+ CHIP_NAME( "NOKIA IP530 Mainboard" )
+ .enable_dev = nokia_ip530_board_enable,
};
+
===================================================================
@@ -1,3 +1,26 @@
+/*
+ * This file is part of the coreboot project.
+ *
+ * coreboot PIRQ Table support
+ *
+ * Copyright (C) 2005-2010 coresystems GmbH
+ * Copyright (C) 2010 Marc Bertens <mbertens@xs4all.nl>
+ *
+ * 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; version 2 of
+ * the License.
+ *
+ * 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 <console/console.h>
#include <arch/pirq_routing.h>
#include <string.h>
@@ -121,7 +144,11 @@
printk(BIOS_DEBUG, "INT: %c link: %x bitmap: %x ",
'A' + j, link, bitmap);
-
+// fix made by Marc Bertens <mbertens@xs4all.nl>
+ if (link > 0x5f)
+ {
+ link -= 0x5f;
+ }
if (!bitmap|| !link || link > 4) {
printk(BIOS_DEBUG, "not routed\n");
===================================================================
@@ -24,70 +24,152 @@
# define MEM_DEV "/dev/mem"
#endif
-static struct irq_routing_table *probe_table(int fd_mem)
+static struct irq_routing_table *probe_table( char* ptr )
{
- char *ptr, signature[] = "$PIR";
- struct irq_routing_table *rt;
+ char signature[] = "$PIR\x00\x01";
+ struct irq_routing_table *rt = (struct irq_routing_table *)ptr;
int size = 16;
-
- ptr = mmap(0, 0x10000, PROT_READ, MAP_SHARED,
- fd_mem, (off_t) 0xf0000);
-
- if (ptr == MAP_FAILED) {
- perror("Mapping system memory failed: ");
- return NULL;
- }
-
- do {
- rt = (struct irq_routing_table *) memmem(ptr + size, 16, signature, 4);
- if (rt != NULL) {
- printf("Found PCI IRQ routing table signature at %p.\n",
- (void *) ((char *) rt - ptr + 0xf0000));
- printf("Validating... ");
- if (!calc_checksum(rt)) {
+ int iResult;
+ do
+ {
+ rt = (struct irq_routing_table *)memmem( ptr + size, 16, signature, 6 );
+ if ( rt != NULL )
+ {
+ int i, ts = (rt->size - 32) / 16;
+ struct irq_info *se_arr;
+ se_arr = (struct irq_info *) ((char *) rt + 32);
+ printf( "Found PCI IRQ routing table signature at %p.\n", (void *) ((char *) rt - ptr + 0xf0000));
+ printf( "SIGNATURE = %s\n", (char*)&rt->signature );
+ printf( "VERSION = %04x\n", rt->version );
+ printf( "SIZE = %i\n", rt->size );
+ printf( "MAX_DEVICES_ON_BUS = 32 + 16 * %d\n", ts );
+ printf( "INT_ROUTER_BUS = 0x%02x\n", rt->rtr_bus );
+ printf( "INT_ROUTER DEVICE = (0x%02x << 3) | 0x%01x\n", rt->rtr_devfn >> 3, rt->rtr_devfn & 7 );
+ printf( "IRQ_DEVOTED_TO_PCI = %#x\n", rt->exclusive_irqs );
+ printf( "VENDOR = %#x\n", rt->rtr_vendor );
+ printf( "DEVICE = %#x\n", rt->rtr_device );
+ printf( "MINIPORT = %#x\n", rt->miniport_data );
+ printf( "CHECKSUM = %#x\n", rt->checksum );
+ printf( "\tbus , dev | fn, {link, bitmap}, {link, bitmap}, {link, bitmap}, {link, bitmap}, slot, rfu\n");
+ for ( i = 0; i < ts; i++)
+ {
+ printf( "\t0x%02x, (0x%02x << 3) | 0x%01x, {{0x%02x, 0x%04x}, {0x%02x, 0x%04x}, {0x%02x, 0x%04x}, {0x%02x, 0x%04x}}, 0x%x, 0x%x},\n",
+ (se_arr+i)->bus, (se_arr+i)->devfn >> 3,
+ (se_arr+i)->devfn & 7, (se_arr+i)->irq[0].link,
+ (se_arr+i)->irq[0].bitmap, (se_arr+i)->irq[1].link,
+ (se_arr+i)->irq[1].bitmap, (se_arr+i)->irq[2].link,
+ (se_arr+i)->irq[2].bitmap, (se_arr+i)->irq[3].link,
+ (se_arr+i)->irq[3].bitmap, (se_arr+i)->slot,
+ (se_arr+i)->rfu);
+ }
+ if ( rt->size > 0x400 )
+ {
+ return ( NULL );
+ }
+ printf( "Validating...\n" );
+ iResult = calc_checksum( rt );
+ printf( "CHECKSUM = %#x\n", 0x100 - ( ( iResult - rt->checksum ) & 0xFF) );
+ if ( !iResult )
+ {
printf("checksum is ok.\n");
break;
- } else {
+ }
+ else
+ {
printf("checksum is wrong.\n");
}
+
}
size += 16;
- } while (size < 0xFFFF);
+ }
+ while (size < 0xFFFF);
- if (size >= 0xFFFF) {
+ if (size >= 0xFFFF)
+ {
printf("No PCI IRQ routing table signature found.\n");
- munmap(ptr, 0x10000);
- return NULL;
+
+ return ( NULL );
}
-
- return rt;
+ return ( rt );
}
-int main(void)
+int main( int argc, char* argv[] )
{
- int fd_mem;
- struct irq_routing_table *rt;
-
- if (getuid()) {
- fprintf(stderr, "Run me as root, I need access to " MEM_DEV ".\n");
+ char* ptr;
+ int fd_mem = -1;
+ struct irq_routing_table* rt = NULL;
+ void* pBiosImage = NULL;
+ if ( argc > 1 )
+ {
+ printf( "Opening memory image file '%s'\n", argv[ 1 ] );
+ fd_mem = open( argv[ 1 ], O_RDONLY );
+ if ( fd_mem > 0 )
+ {
+ int iSize = lseek( fd_mem, 0, SEEK_END );
+ printf( "Memory image '%i'\n", iSize );
+ pBiosImage = malloc( iSize );
+ if ( pBiosImage )
+ {
+ lseek( fd_mem, 0, SEEK_SET );
+ read( fd_mem, pBiosImage, iSize );
+ ptr = (char*)pBiosImage;
+ }
+ else
+ {
+ perror( "Failed to open imagefile\n" );
+ return ( -3 );
+ }
+ }
+ else
+ {
+ perror( "Failed to open imagefile" );
+ return ( -2 );
+ }
}
-
- fd_mem = open(MEM_DEV, O_RDONLY);
- if (fd_mem < 0) {
- perror("Could not open " MEM_DEV ":");
- exit(1);
+ else
+ {
+ printf( "Accessing memory\n" );
+ if ( getuid() )
+ {
+ fprintf( stderr, "Run me as root, I need access to " MEM_DEV ".\n" );
+ }
+ fd_mem = open( MEM_DEV, O_RDONLY );
+ if (fd_mem < 0)
+ {
+ perror("Could not open " MEM_DEV ":");
+ exit(1);
+ }
+ printf( "Probing PIRQ table in memory.\n" );
+ ptr = mmap( 0, 0x10000, PROT_READ, MAP_SHARED, fd_mem, (off_t)0xf0000 );
+ if ( ptr == MAP_FAILED )
+ {
+ perror("Mapping system memory failed: ");
+ close( fd_mem );
+ return ( 1 );
+ }
}
-
- printf("Probing PIRQ table in memory.\n");
- rt = probe_table(fd_mem);
- if (rt != NULL) {
- printf("Creating irq_tables.c ...\n");
- code_gen("irq_tables.c", rt);
- printf
- ("Done, you can move the file to the coreboot tree now.\n");
+ if ( ptr )
+ {
+ rt = probe_table( ptr );
+ if ( rt != NULL && pBiosImage == NULL )
+ {
+ printf( "Creating irq_tables.c ...\n" );
+ code_gen( "irq_tables.c", rt );
+ printf( "Done, you can move the file to the coreboot tree now.\n" );
+ }
}
- close(fd_mem);
-
-
- return 0;
+ else
+ {
+ printf( "invalid memory pointer\n" );
+ }
+ if ( pBiosImage )
+ {
+ free( pBiosImage );
+ }
+ else
+ {
+ munmap( ptr, 0x10000 );
+ }
+ close( fd_mem );
+ return ( 0 );
}