2014-06-12 18:22:27 +02:00
|
|
|
/*
|
|
|
|
* This file is part of the coreboot project.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2014 Sage Electronic Engineering, LLC.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2003-04-22 21:02:15 +02:00
|
|
|
#include <console/console.h>
|
2004-10-16 08:20:29 +02:00
|
|
|
#include <device/path.h>
|
2008-02-20 18:41:38 +01:00
|
|
|
#include <device/pci_ids.h>
|
2003-04-22 21:02:15 +02:00
|
|
|
#include <cpu/cpu.h>
|
|
|
|
#include <arch/smp/mpspec.h>
|
|
|
|
#include <string.h>
|
2004-10-14 22:54:17 +02:00
|
|
|
#include <arch/cpu.h>
|
|
|
|
#include <cpu/x86/lapic.h>
|
2012-06-21 22:19:48 +02:00
|
|
|
#include <drivers/generic/ioapic/chip.h>
|
2003-04-22 21:02:15 +02:00
|
|
|
|
Factor out common mptable code to mptable_init().
- Drop sig[], oem[], and productid[] fields in all mptable.c files, no
longer needed. The sig[] is always the same ("PCMP"), the oem[] is
currently also always the same ("COREBOOT"), and productid is being
passed into mptable_init() directly as string now.
- LAPIC_ADDR is passed in as parameter, too. While at the moment it's
always the same value that is passed in, the LAPIC base address could
also be relocated theoretically, so keep it as parameter for now.
- Fix a few productid entries, they were (partially) incorrect:
- DK8S2 (was "DK8X", copypaste)
- 939A785GMH (was "MAHOGANY", copypaste)
- X6DHE-G (was "X6DHE", incomplete board name)
- H8DME-2 (was "H8DMR", copypaste)
- H8QME-2+ (was "H8QME", incomplete board name)
- X6DHE-G2 (was "X6DHE", incomplete board name)
- X6DHR-iG2 (was "X6DHR-iG", incomplete board name)
- GA-M57SLI-S4 (was "M57SLI", incomplete board name)
- KINO-780AM2 (was "KINO", incomplete board name)
- DL145 G1 (was "DL145G1", small fix as per vendor website)
- DL145 G3 (was "TREX", wrong board name)
- DL165 G6 (was "HP DL165 G6", drop vendor)
- S2912 (was "S2895", copypaste)
- VT8454c (was "VIA VT8454C", drop vendor, lower-case "c")
- EPIA-N (was "P4DPE", copypaste)
- pc2500e (was "PC2500", incorrect name)
- S1850 (was "S2850", copy-paste)
- MS-7135 (was "MS7135")
- MS-9282 (was "MS9282")
- MS-9185 (was "MS9185")
- MS-9652 (was "K9ND MS-9652")
- Ultra 40 (was "ultra40")
- E326 (was "E325", copypaste)
- M4A785-M (was "TILAPIA", copypaste)
- P2B-D (was "ASUS P2B-D", drop vendor)
- P2B-DS (was "ASUS P2B-DS", drop vendor)
- Adapt the mptable utility to use mptable_init() too.
Abuild-tested.
Signed-off-by: Uwe Hermann <uwe@hermann-uwe.de>
Acked-by: Patrick Georgi <patrick.georgi@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5987 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
2010-10-25 17:32:07 +02:00
|
|
|
/* Initialize the specified "mc" struct with initial values. */
|
Get mptable OEM/product ID from kconfig variables.
We currently use "COREBOOT" unconditionally as the "OEM ID" in our
mptable.c files, and hardcode the mainboard name in mptable.c like this:
mptable_init(mc, "DK8-HTX ", LAPIC_ADDR);
However, the spec says
"OEM ID: A string that identifies the manufacturer of the system hardware."
(Table 4-2, page 42)
so "COREBOOT" doesn't match the spec, we should use the hardware vendor name.
Thus, use CONFIG_MAINBOARD_VENDOR which we have already as the "OEM ID"
(truncate/fill it to 8 characters as per spec).
Also, use CONFIG_MAINBOARD_PART_NUMBER (the board name) as "product ID",
and truncate/fill it to 12 characters as per spec, if needed.
Abuild-tested.
Signed-off-by: Uwe Hermann <uwe@hermann-uwe.de>
Acked-by: Stefan Reinauer <stepan@coreboot.org>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@6183 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
2010-12-16 20:51:38 +01:00
|
|
|
void mptable_init(struct mp_config_table *mc, u32 lapic_addr)
|
Factor out common mptable code to mptable_init().
- Drop sig[], oem[], and productid[] fields in all mptable.c files, no
longer needed. The sig[] is always the same ("PCMP"), the oem[] is
currently also always the same ("COREBOOT"), and productid is being
passed into mptable_init() directly as string now.
- LAPIC_ADDR is passed in as parameter, too. While at the moment it's
always the same value that is passed in, the LAPIC base address could
also be relocated theoretically, so keep it as parameter for now.
- Fix a few productid entries, they were (partially) incorrect:
- DK8S2 (was "DK8X", copypaste)
- 939A785GMH (was "MAHOGANY", copypaste)
- X6DHE-G (was "X6DHE", incomplete board name)
- H8DME-2 (was "H8DMR", copypaste)
- H8QME-2+ (was "H8QME", incomplete board name)
- X6DHE-G2 (was "X6DHE", incomplete board name)
- X6DHR-iG2 (was "X6DHR-iG", incomplete board name)
- GA-M57SLI-S4 (was "M57SLI", incomplete board name)
- KINO-780AM2 (was "KINO", incomplete board name)
- DL145 G1 (was "DL145G1", small fix as per vendor website)
- DL145 G3 (was "TREX", wrong board name)
- DL165 G6 (was "HP DL165 G6", drop vendor)
- S2912 (was "S2895", copypaste)
- VT8454c (was "VIA VT8454C", drop vendor, lower-case "c")
- EPIA-N (was "P4DPE", copypaste)
- pc2500e (was "PC2500", incorrect name)
- S1850 (was "S2850", copy-paste)
- MS-7135 (was "MS7135")
- MS-9282 (was "MS9282")
- MS-9185 (was "MS9185")
- MS-9652 (was "K9ND MS-9652")
- Ultra 40 (was "ultra40")
- E326 (was "E325", copypaste)
- M4A785-M (was "TILAPIA", copypaste)
- P2B-D (was "ASUS P2B-D", drop vendor)
- P2B-DS (was "ASUS P2B-DS", drop vendor)
- Adapt the mptable utility to use mptable_init() too.
Abuild-tested.
Signed-off-by: Uwe Hermann <uwe@hermann-uwe.de>
Acked-by: Patrick Georgi <patrick.georgi@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5987 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
2010-10-25 17:32:07 +02:00
|
|
|
{
|
Get mptable OEM/product ID from kconfig variables.
We currently use "COREBOOT" unconditionally as the "OEM ID" in our
mptable.c files, and hardcode the mainboard name in mptable.c like this:
mptable_init(mc, "DK8-HTX ", LAPIC_ADDR);
However, the spec says
"OEM ID: A string that identifies the manufacturer of the system hardware."
(Table 4-2, page 42)
so "COREBOOT" doesn't match the spec, we should use the hardware vendor name.
Thus, use CONFIG_MAINBOARD_VENDOR which we have already as the "OEM ID"
(truncate/fill it to 8 characters as per spec).
Also, use CONFIG_MAINBOARD_PART_NUMBER (the board name) as "product ID",
and truncate/fill it to 12 characters as per spec, if needed.
Abuild-tested.
Signed-off-by: Uwe Hermann <uwe@hermann-uwe.de>
Acked-by: Stefan Reinauer <stepan@coreboot.org>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@6183 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
2010-12-16 20:51:38 +01:00
|
|
|
int i;
|
Factor out common mptable code to mptable_init().
- Drop sig[], oem[], and productid[] fields in all mptable.c files, no
longer needed. The sig[] is always the same ("PCMP"), the oem[] is
currently also always the same ("COREBOOT"), and productid is being
passed into mptable_init() directly as string now.
- LAPIC_ADDR is passed in as parameter, too. While at the moment it's
always the same value that is passed in, the LAPIC base address could
also be relocated theoretically, so keep it as parameter for now.
- Fix a few productid entries, they were (partially) incorrect:
- DK8S2 (was "DK8X", copypaste)
- 939A785GMH (was "MAHOGANY", copypaste)
- X6DHE-G (was "X6DHE", incomplete board name)
- H8DME-2 (was "H8DMR", copypaste)
- H8QME-2+ (was "H8QME", incomplete board name)
- X6DHE-G2 (was "X6DHE", incomplete board name)
- X6DHR-iG2 (was "X6DHR-iG", incomplete board name)
- GA-M57SLI-S4 (was "M57SLI", incomplete board name)
- KINO-780AM2 (was "KINO", incomplete board name)
- DL145 G1 (was "DL145G1", small fix as per vendor website)
- DL145 G3 (was "TREX", wrong board name)
- DL165 G6 (was "HP DL165 G6", drop vendor)
- S2912 (was "S2895", copypaste)
- VT8454c (was "VIA VT8454C", drop vendor, lower-case "c")
- EPIA-N (was "P4DPE", copypaste)
- pc2500e (was "PC2500", incorrect name)
- S1850 (was "S2850", copy-paste)
- MS-7135 (was "MS7135")
- MS-9282 (was "MS9282")
- MS-9185 (was "MS9185")
- MS-9652 (was "K9ND MS-9652")
- Ultra 40 (was "ultra40")
- E326 (was "E325", copypaste)
- M4A785-M (was "TILAPIA", copypaste)
- P2B-D (was "ASUS P2B-D", drop vendor)
- P2B-DS (was "ASUS P2B-DS", drop vendor)
- Adapt the mptable utility to use mptable_init() too.
Abuild-tested.
Signed-off-by: Uwe Hermann <uwe@hermann-uwe.de>
Acked-by: Patrick Georgi <patrick.georgi@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5987 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
2010-10-25 17:32:07 +02:00
|
|
|
|
|
|
|
memset(mc, 0, sizeof(*mc));
|
Get mptable OEM/product ID from kconfig variables.
We currently use "COREBOOT" unconditionally as the "OEM ID" in our
mptable.c files, and hardcode the mainboard name in mptable.c like this:
mptable_init(mc, "DK8-HTX ", LAPIC_ADDR);
However, the spec says
"OEM ID: A string that identifies the manufacturer of the system hardware."
(Table 4-2, page 42)
so "COREBOOT" doesn't match the spec, we should use the hardware vendor name.
Thus, use CONFIG_MAINBOARD_VENDOR which we have already as the "OEM ID"
(truncate/fill it to 8 characters as per spec).
Also, use CONFIG_MAINBOARD_PART_NUMBER (the board name) as "product ID",
and truncate/fill it to 12 characters as per spec, if needed.
Abuild-tested.
Signed-off-by: Uwe Hermann <uwe@hermann-uwe.de>
Acked-by: Stefan Reinauer <stepan@coreboot.org>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@6183 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
2010-12-16 20:51:38 +01:00
|
|
|
|
Factor out common mptable code to mptable_init().
- Drop sig[], oem[], and productid[] fields in all mptable.c files, no
longer needed. The sig[] is always the same ("PCMP"), the oem[] is
currently also always the same ("COREBOOT"), and productid is being
passed into mptable_init() directly as string now.
- LAPIC_ADDR is passed in as parameter, too. While at the moment it's
always the same value that is passed in, the LAPIC base address could
also be relocated theoretically, so keep it as parameter for now.
- Fix a few productid entries, they were (partially) incorrect:
- DK8S2 (was "DK8X", copypaste)
- 939A785GMH (was "MAHOGANY", copypaste)
- X6DHE-G (was "X6DHE", incomplete board name)
- H8DME-2 (was "H8DMR", copypaste)
- H8QME-2+ (was "H8QME", incomplete board name)
- X6DHE-G2 (was "X6DHE", incomplete board name)
- X6DHR-iG2 (was "X6DHR-iG", incomplete board name)
- GA-M57SLI-S4 (was "M57SLI", incomplete board name)
- KINO-780AM2 (was "KINO", incomplete board name)
- DL145 G1 (was "DL145G1", small fix as per vendor website)
- DL145 G3 (was "TREX", wrong board name)
- DL165 G6 (was "HP DL165 G6", drop vendor)
- S2912 (was "S2895", copypaste)
- VT8454c (was "VIA VT8454C", drop vendor, lower-case "c")
- EPIA-N (was "P4DPE", copypaste)
- pc2500e (was "PC2500", incorrect name)
- S1850 (was "S2850", copy-paste)
- MS-7135 (was "MS7135")
- MS-9282 (was "MS9282")
- MS-9185 (was "MS9185")
- MS-9652 (was "K9ND MS-9652")
- Ultra 40 (was "ultra40")
- E326 (was "E325", copypaste)
- M4A785-M (was "TILAPIA", copypaste)
- P2B-D (was "ASUS P2B-D", drop vendor)
- P2B-DS (was "ASUS P2B-DS", drop vendor)
- Adapt the mptable utility to use mptable_init() too.
Abuild-tested.
Signed-off-by: Uwe Hermann <uwe@hermann-uwe.de>
Acked-by: Patrick Georgi <patrick.georgi@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5987 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
2010-10-25 17:32:07 +02:00
|
|
|
memcpy(mc->mpc_signature, MPC_SIGNATURE, 4);
|
Get mptable OEM/product ID from kconfig variables.
We currently use "COREBOOT" unconditionally as the "OEM ID" in our
mptable.c files, and hardcode the mainboard name in mptable.c like this:
mptable_init(mc, "DK8-HTX ", LAPIC_ADDR);
However, the spec says
"OEM ID: A string that identifies the manufacturer of the system hardware."
(Table 4-2, page 42)
so "COREBOOT" doesn't match the spec, we should use the hardware vendor name.
Thus, use CONFIG_MAINBOARD_VENDOR which we have already as the "OEM ID"
(truncate/fill it to 8 characters as per spec).
Also, use CONFIG_MAINBOARD_PART_NUMBER (the board name) as "product ID",
and truncate/fill it to 12 characters as per spec, if needed.
Abuild-tested.
Signed-off-by: Uwe Hermann <uwe@hermann-uwe.de>
Acked-by: Stefan Reinauer <stepan@coreboot.org>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@6183 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
2010-12-16 20:51:38 +01:00
|
|
|
|
Factor out common mptable code to mptable_init().
- Drop sig[], oem[], and productid[] fields in all mptable.c files, no
longer needed. The sig[] is always the same ("PCMP"), the oem[] is
currently also always the same ("COREBOOT"), and productid is being
passed into mptable_init() directly as string now.
- LAPIC_ADDR is passed in as parameter, too. While at the moment it's
always the same value that is passed in, the LAPIC base address could
also be relocated theoretically, so keep it as parameter for now.
- Fix a few productid entries, they were (partially) incorrect:
- DK8S2 (was "DK8X", copypaste)
- 939A785GMH (was "MAHOGANY", copypaste)
- X6DHE-G (was "X6DHE", incomplete board name)
- H8DME-2 (was "H8DMR", copypaste)
- H8QME-2+ (was "H8QME", incomplete board name)
- X6DHE-G2 (was "X6DHE", incomplete board name)
- X6DHR-iG2 (was "X6DHR-iG", incomplete board name)
- GA-M57SLI-S4 (was "M57SLI", incomplete board name)
- KINO-780AM2 (was "KINO", incomplete board name)
- DL145 G1 (was "DL145G1", small fix as per vendor website)
- DL145 G3 (was "TREX", wrong board name)
- DL165 G6 (was "HP DL165 G6", drop vendor)
- S2912 (was "S2895", copypaste)
- VT8454c (was "VIA VT8454C", drop vendor, lower-case "c")
- EPIA-N (was "P4DPE", copypaste)
- pc2500e (was "PC2500", incorrect name)
- S1850 (was "S2850", copy-paste)
- MS-7135 (was "MS7135")
- MS-9282 (was "MS9282")
- MS-9185 (was "MS9185")
- MS-9652 (was "K9ND MS-9652")
- Ultra 40 (was "ultra40")
- E326 (was "E325", copypaste)
- M4A785-M (was "TILAPIA", copypaste)
- P2B-D (was "ASUS P2B-D", drop vendor)
- P2B-DS (was "ASUS P2B-DS", drop vendor)
- Adapt the mptable utility to use mptable_init() too.
Abuild-tested.
Signed-off-by: Uwe Hermann <uwe@hermann-uwe.de>
Acked-by: Patrick Georgi <patrick.georgi@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5987 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
2010-10-25 17:32:07 +02:00
|
|
|
mc->mpc_length = sizeof(*mc); /* Initially just the header size. */
|
|
|
|
mc->mpc_spec = 0x04; /* MultiProcessor specification 1.4 */
|
|
|
|
mc->mpc_checksum = 0; /* Not yet computed. */
|
|
|
|
mc->mpc_oemptr = 0;
|
|
|
|
mc->mpc_oemsize = 0;
|
|
|
|
mc->mpc_entry_count = 0; /* No entries yet... */
|
|
|
|
mc->mpc_lapic = lapic_addr;
|
|
|
|
mc->mpe_length = 0;
|
|
|
|
mc->mpe_checksum = 0;
|
|
|
|
mc->reserved = 0;
|
Get mptable OEM/product ID from kconfig variables.
We currently use "COREBOOT" unconditionally as the "OEM ID" in our
mptable.c files, and hardcode the mainboard name in mptable.c like this:
mptable_init(mc, "DK8-HTX ", LAPIC_ADDR);
However, the spec says
"OEM ID: A string that identifies the manufacturer of the system hardware."
(Table 4-2, page 42)
so "COREBOOT" doesn't match the spec, we should use the hardware vendor name.
Thus, use CONFIG_MAINBOARD_VENDOR which we have already as the "OEM ID"
(truncate/fill it to 8 characters as per spec).
Also, use CONFIG_MAINBOARD_PART_NUMBER (the board name) as "product ID",
and truncate/fill it to 12 characters as per spec, if needed.
Abuild-tested.
Signed-off-by: Uwe Hermann <uwe@hermann-uwe.de>
Acked-by: Stefan Reinauer <stepan@coreboot.org>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@6183 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
2010-12-16 20:51:38 +01:00
|
|
|
|
|
|
|
strncpy(mc->mpc_oem, CONFIG_MAINBOARD_VENDOR, 8);
|
|
|
|
strncpy(mc->mpc_productid, CONFIG_MAINBOARD_PART_NUMBER, 12);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* The oem/productid fields are exactly 8/12 bytes long. If the resp.
|
|
|
|
* entry is shorter, the remaining bytes are filled with spaces.
|
|
|
|
*/
|
|
|
|
for (i = MIN(strlen(CONFIG_MAINBOARD_VENDOR), 8); i < 8; i++)
|
|
|
|
mc->mpc_oem[i] = ' ';
|
|
|
|
for (i = MIN(strlen(CONFIG_MAINBOARD_PART_NUMBER), 12); i < 12; i++)
|
|
|
|
mc->mpc_productid[i] = ' ';
|
Factor out common mptable code to mptable_init().
- Drop sig[], oem[], and productid[] fields in all mptable.c files, no
longer needed. The sig[] is always the same ("PCMP"), the oem[] is
currently also always the same ("COREBOOT"), and productid is being
passed into mptable_init() directly as string now.
- LAPIC_ADDR is passed in as parameter, too. While at the moment it's
always the same value that is passed in, the LAPIC base address could
also be relocated theoretically, so keep it as parameter for now.
- Fix a few productid entries, they were (partially) incorrect:
- DK8S2 (was "DK8X", copypaste)
- 939A785GMH (was "MAHOGANY", copypaste)
- X6DHE-G (was "X6DHE", incomplete board name)
- H8DME-2 (was "H8DMR", copypaste)
- H8QME-2+ (was "H8QME", incomplete board name)
- X6DHE-G2 (was "X6DHE", incomplete board name)
- X6DHR-iG2 (was "X6DHR-iG", incomplete board name)
- GA-M57SLI-S4 (was "M57SLI", incomplete board name)
- KINO-780AM2 (was "KINO", incomplete board name)
- DL145 G1 (was "DL145G1", small fix as per vendor website)
- DL145 G3 (was "TREX", wrong board name)
- DL165 G6 (was "HP DL165 G6", drop vendor)
- S2912 (was "S2895", copypaste)
- VT8454c (was "VIA VT8454C", drop vendor, lower-case "c")
- EPIA-N (was "P4DPE", copypaste)
- pc2500e (was "PC2500", incorrect name)
- S1850 (was "S2850", copy-paste)
- MS-7135 (was "MS7135")
- MS-9282 (was "MS9282")
- MS-9185 (was "MS9185")
- MS-9652 (was "K9ND MS-9652")
- Ultra 40 (was "ultra40")
- E326 (was "E325", copypaste)
- M4A785-M (was "TILAPIA", copypaste)
- P2B-D (was "ASUS P2B-D", drop vendor)
- P2B-DS (was "ASUS P2B-DS", drop vendor)
- Adapt the mptable utility to use mptable_init() too.
Abuild-tested.
Signed-off-by: Uwe Hermann <uwe@hermann-uwe.de>
Acked-by: Patrick Georgi <patrick.georgi@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@5987 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
2010-10-25 17:32:07 +02:00
|
|
|
}
|
|
|
|
|
2011-10-07 23:01:55 +02:00
|
|
|
static unsigned char smp_compute_checksum(void *v, int len)
|
2003-04-22 21:02:15 +02:00
|
|
|
{
|
|
|
|
unsigned char *bytes;
|
|
|
|
unsigned char checksum;
|
|
|
|
int i;
|
|
|
|
bytes = v;
|
|
|
|
checksum = 0;
|
2017-03-16 19:24:09 +01:00
|
|
|
for (i = 0; i < len; i++)
|
2003-04-22 21:02:15 +02:00
|
|
|
checksum -= bytes[i];
|
|
|
|
return checksum;
|
|
|
|
}
|
|
|
|
|
2015-06-18 10:23:48 +02:00
|
|
|
static void *smp_write_floating_table_physaddr(uintptr_t addr, uintptr_t mpf_physptr, unsigned int virtualwire)
|
2006-07-19 17:32:49 +02:00
|
|
|
{
|
2014-05-01 19:58:32 +02:00
|
|
|
struct intel_mp_floating *mf;
|
|
|
|
void *v;
|
2010-04-27 08:56:47 +02:00
|
|
|
|
2008-02-20 18:41:38 +01:00
|
|
|
v = (void *)addr;
|
2014-05-01 19:58:32 +02:00
|
|
|
mf = v;
|
|
|
|
mf->mpf_signature[0] = '_';
|
|
|
|
mf->mpf_signature[1] = 'M';
|
|
|
|
mf->mpf_signature[2] = 'P';
|
|
|
|
mf->mpf_signature[3] = '_';
|
|
|
|
mf->mpf_physptr = mpf_physptr;
|
|
|
|
mf->mpf_length = 1;
|
|
|
|
mf->mpf_specification = 4;
|
|
|
|
mf->mpf_checksum = 0;
|
|
|
|
mf->mpf_feature1 = 0;
|
2014-06-11 22:20:48 +02:00
|
|
|
mf->mpf_feature2 = virtualwire?MP_FEATURE_PIC:MP_FEATURE_VIRTUALWIRE;
|
2014-05-01 19:58:32 +02:00
|
|
|
mf->mpf_feature3 = 0;
|
|
|
|
mf->mpf_feature4 = 0;
|
|
|
|
mf->mpf_feature5 = 0;
|
|
|
|
mf->mpf_checksum = smp_compute_checksum(mf, mf->mpf_length*16);
|
|
|
|
return v;
|
2006-07-19 17:32:49 +02:00
|
|
|
}
|
|
|
|
|
2011-10-07 22:41:07 +02:00
|
|
|
void *smp_write_floating_table(unsigned long addr, unsigned int virtualwire)
|
|
|
|
{
|
|
|
|
/* 16 byte align the table address */
|
|
|
|
addr = (addr + 0xf) & (~0xf);
|
|
|
|
return smp_write_floating_table_physaddr(addr, addr + SMP_FLOATING_TABLE_LEN, virtualwire);
|
|
|
|
}
|
|
|
|
|
2003-04-22 21:02:15 +02:00
|
|
|
void *smp_next_mpc_entry(struct mp_config_table *mc)
|
|
|
|
{
|
|
|
|
void *v;
|
|
|
|
v = (void *)(((char *)mc) + mc->mpc_length);
|
2014-06-16 18:46:56 +02:00
|
|
|
|
2003-04-22 21:02:15 +02:00
|
|
|
return v;
|
|
|
|
}
|
2014-06-16 18:46:56 +02:00
|
|
|
static void smp_add_mpc_entry(struct mp_config_table *mc, u16 length)
|
2003-04-22 21:02:15 +02:00
|
|
|
{
|
|
|
|
mc->mpc_length += length;
|
|
|
|
mc->mpc_entry_count++;
|
|
|
|
}
|
|
|
|
|
|
|
|
void *smp_next_mpe_entry(struct mp_config_table *mc)
|
|
|
|
{
|
|
|
|
void *v;
|
|
|
|
v = (void *)(((char *)mc) + mc->mpc_length + mc->mpe_length);
|
2014-06-16 18:46:56 +02:00
|
|
|
|
2003-04-22 21:02:15 +02:00
|
|
|
return v;
|
|
|
|
}
|
|
|
|
static void smp_add_mpe_entry(struct mp_config_table *mc, mpe_t mpe)
|
|
|
|
{
|
|
|
|
mc->mpe_length += mpe->mpe_length;
|
|
|
|
}
|
|
|
|
|
2014-06-16 18:46:56 +02:00
|
|
|
/*
|
|
|
|
* Type 0: Processor Entries:
|
|
|
|
* Entry Type, LAPIC ID, LAPIC Version, CPU Flags EN/BP,
|
|
|
|
* CPU Signature (Stepping, Model, Family), Feature Flags
|
|
|
|
*/
|
2003-04-22 21:02:15 +02:00
|
|
|
void smp_write_processor(struct mp_config_table *mc,
|
2014-06-16 18:46:56 +02:00
|
|
|
u8 apicid, u8 apicver, u8 cpuflag,
|
|
|
|
u32 cpufeature, u32 featureflag)
|
2003-04-22 21:02:15 +02:00
|
|
|
{
|
|
|
|
struct mpc_config_processor *mpc;
|
|
|
|
mpc = smp_next_mpc_entry(mc);
|
|
|
|
memset(mpc, '\0', sizeof(*mpc));
|
|
|
|
mpc->mpc_type = MP_PROCESSOR;
|
|
|
|
mpc->mpc_apicid = apicid;
|
|
|
|
mpc->mpc_apicver = apicver;
|
|
|
|
mpc->mpc_cpuflag = cpuflag;
|
|
|
|
mpc->mpc_cpufeature = cpufeature;
|
|
|
|
mpc->mpc_featureflag = featureflag;
|
|
|
|
smp_add_mpc_entry(mc, sizeof(*mpc));
|
|
|
|
}
|
|
|
|
|
2014-06-16 18:46:56 +02:00
|
|
|
/*
|
|
|
|
* If we assume a symmetric processor configuration we can
|
2003-04-22 21:02:15 +02:00
|
|
|
* get all of the information we need to write the processor
|
|
|
|
* entry from the bootstrap processor.
|
|
|
|
* Plus I don't think linux really even cares.
|
|
|
|
* Having the proper apicid's in the table so the non-bootstrap
|
|
|
|
* processors can be woken up should be enough.
|
|
|
|
*/
|
2004-10-14 22:54:17 +02:00
|
|
|
void smp_write_processors(struct mp_config_table *mc)
|
2003-04-22 21:02:15 +02:00
|
|
|
{
|
2004-10-14 22:54:17 +02:00
|
|
|
int boot_apic_id;
|
2011-10-14 23:02:57 +02:00
|
|
|
int order_id;
|
2003-04-22 21:02:15 +02:00
|
|
|
unsigned apic_version;
|
|
|
|
unsigned cpu_features;
|
|
|
|
unsigned cpu_feature_flags;
|
2004-10-14 22:54:17 +02:00
|
|
|
struct cpuid_result result;
|
2014-10-27 13:29:29 +01:00
|
|
|
struct device *cpu;
|
2010-04-27 08:56:47 +02:00
|
|
|
|
2004-10-14 22:54:17 +02:00
|
|
|
boot_apic_id = lapicid();
|
|
|
|
apic_version = lapic_read(LAPIC_LVR) & 0xff;
|
|
|
|
result = cpuid(1);
|
|
|
|
cpu_features = result.eax;
|
|
|
|
cpu_feature_flags = result.edx;
|
2011-10-14 23:02:57 +02:00
|
|
|
/* order the output of the cpus to fix a bug in kernel 2.6.11 */
|
2017-03-16 21:41:11 +01:00
|
|
|
for (order_id = 0; order_id < 256; order_id++) {
|
2016-08-21 17:37:15 +02:00
|
|
|
for (cpu = all_devices; cpu; cpu = cpu->next) {
|
2014-05-01 19:58:32 +02:00
|
|
|
unsigned long cpu_flag;
|
|
|
|
if ((cpu->path.type != DEVICE_PATH_APIC) ||
|
|
|
|
(cpu->bus->dev->path.type != DEVICE_PATH_CPU_CLUSTER))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (!cpu->enabled)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
cpu_flag = MPC_CPU_ENABLED;
|
|
|
|
|
|
|
|
if (boot_apic_id == cpu->path.apic.apic_id)
|
|
|
|
cpu_flag = MPC_CPU_ENABLED | MPC_CPU_BOOTPROCESSOR;
|
|
|
|
|
2016-08-21 17:37:15 +02:00
|
|
|
if (cpu->path.apic.apic_id == order_id) {
|
2014-06-16 18:46:56 +02:00
|
|
|
smp_write_processor(mc,
|
|
|
|
cpu->path.apic.apic_id, apic_version,
|
|
|
|
cpu_flag, cpu_features, cpu_feature_flags
|
2014-05-01 19:58:32 +02:00
|
|
|
);
|
|
|
|
break;
|
|
|
|
}
|
2011-10-14 23:02:57 +02:00
|
|
|
}
|
2003-04-22 21:02:15 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-06-16 18:46:56 +02:00
|
|
|
/*
|
|
|
|
* Type 1: Bus Entries:
|
|
|
|
* Entry Type, Bus ID, Bus Type
|
|
|
|
*/
|
2010-11-23 08:19:54 +01:00
|
|
|
static void smp_write_bus(struct mp_config_table *mc,
|
2014-06-16 18:46:56 +02:00
|
|
|
u8 id, const char *bustype)
|
2003-04-22 21:02:15 +02:00
|
|
|
{
|
|
|
|
struct mpc_config_bus *mpc;
|
|
|
|
mpc = smp_next_mpc_entry(mc);
|
|
|
|
memset(mpc, '\0', sizeof(*mpc));
|
|
|
|
mpc->mpc_type = MP_BUS;
|
|
|
|
mpc->mpc_busid = id;
|
|
|
|
memcpy(mpc->mpc_bustype, bustype, sizeof(mpc->mpc_bustype));
|
|
|
|
smp_add_mpc_entry(mc, sizeof(*mpc));
|
|
|
|
}
|
|
|
|
|
2014-06-16 18:46:56 +02:00
|
|
|
/*
|
|
|
|
* Type 2: I/O APIC Entries:
|
|
|
|
* Entry Type, APIC ID, Version,
|
|
|
|
* APIC Flags:EN, Address
|
|
|
|
*/
|
2003-04-22 21:02:15 +02:00
|
|
|
void smp_write_ioapic(struct mp_config_table *mc,
|
2014-12-25 03:43:20 +01:00
|
|
|
u8 id, u8 ver, void *apicaddr)
|
2003-04-22 21:02:15 +02:00
|
|
|
{
|
|
|
|
struct mpc_config_ioapic *mpc;
|
|
|
|
mpc = smp_next_mpc_entry(mc);
|
|
|
|
memset(mpc, '\0', sizeof(*mpc));
|
|
|
|
mpc->mpc_type = MP_IOAPIC;
|
|
|
|
mpc->mpc_apicid = id;
|
|
|
|
mpc->mpc_apicver = ver;
|
|
|
|
mpc->mpc_flags = MPC_APIC_USABLE;
|
|
|
|
mpc->mpc_apicaddr = apicaddr;
|
|
|
|
smp_add_mpc_entry(mc, sizeof(*mpc));
|
|
|
|
}
|
|
|
|
|
2014-06-16 18:46:56 +02:00
|
|
|
/*
|
|
|
|
* Type 3: I/O Interrupt Table Entries:
|
|
|
|
* Entry Type, Int Type, Int Polarity, Int Level,
|
|
|
|
* Source Bus ID, Source Bus IRQ, Dest APIC ID, Dest PIN#
|
|
|
|
*/
|
2003-04-22 21:02:15 +02:00
|
|
|
void smp_write_intsrc(struct mp_config_table *mc,
|
2014-06-16 18:46:56 +02:00
|
|
|
u8 irqtype, u16 irqflag,
|
|
|
|
u8 srcbus, u8 srcbusirq,
|
|
|
|
u8 dstapic, u8 dstirq)
|
2003-04-22 21:02:15 +02:00
|
|
|
{
|
|
|
|
struct mpc_config_intsrc *mpc;
|
|
|
|
mpc = smp_next_mpc_entry(mc);
|
|
|
|
memset(mpc, '\0', sizeof(*mpc));
|
|
|
|
mpc->mpc_type = MP_INTSRC;
|
|
|
|
mpc->mpc_irqtype = irqtype;
|
|
|
|
mpc->mpc_irqflag = irqflag;
|
|
|
|
mpc->mpc_srcbus = srcbus;
|
|
|
|
mpc->mpc_srcbusirq = srcbusirq;
|
|
|
|
mpc->mpc_dstapic = dstapic;
|
|
|
|
mpc->mpc_dstirq = dstirq;
|
|
|
|
smp_add_mpc_entry(mc, sizeof(*mpc));
|
2009-04-22 01:00:14 +02:00
|
|
|
#ifdef DEBUG_MPTABLE
|
2010-03-22 12:42:32 +01:00
|
|
|
printk(BIOS_DEBUG, "add intsrc srcbus 0x%x srcbusirq 0x%x, dstapic 0x%x, dstirq 0x%x\n",
|
2003-04-22 21:02:15 +02:00
|
|
|
srcbus, srcbusirq, dstapic, dstirq);
|
2009-02-12 22:30:06 +01:00
|
|
|
hexdump(__func__, mpc, sizeof(*mpc));
|
2003-04-22 21:02:15 +02:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2014-06-16 18:46:56 +02:00
|
|
|
/*
|
|
|
|
* Type 3: I/O Interrupt Table Entries for PCI Devices:
|
|
|
|
* This has the same fields as 'Type 3: I/O Interrupt Table Entries'
|
|
|
|
* but the Source Bus IRQ field has a slightly different
|
|
|
|
* definition:
|
|
|
|
* Bits 1-0: PIRQ pin: INT_A# = 0, INT_B# = 1, INT_C# = 2, INT_D# = 3
|
|
|
|
* Bits 2-6: Originating PCI Device Number (Not its parent bridge device number)
|
|
|
|
* Bit 7: Reserved
|
|
|
|
*/
|
|
|
|
void smp_write_pci_intsrc(struct mp_config_table *mc,
|
|
|
|
u8 irqtype, u8 srcbus, u8 dev, u8 pirq,
|
|
|
|
u8 dstapic, u8 dstirq)
|
|
|
|
{
|
|
|
|
u8 srcbusirq = (dev << 2) | pirq;
|
|
|
|
printk(BIOS_SPEW, "\tPCI srcbusirq = 0x%x from dev = 0x%x and pirq = %x\n", srcbusirq, dev, pirq);
|
|
|
|
smp_write_intsrc(mc, irqtype, MP_IRQ_TRIGGER_LEVEL|MP_IRQ_POLARITY_LOW, srcbus,
|
|
|
|
srcbusirq, dstapic, dstirq);
|
|
|
|
}
|
|
|
|
|
2008-02-20 18:41:38 +01:00
|
|
|
void smp_write_intsrc_pci_bridge(struct mp_config_table *mc,
|
2014-06-16 18:46:56 +02:00
|
|
|
u8 irqtype, u16 irqflag, struct device *dev,
|
2008-02-20 18:41:38 +01:00
|
|
|
unsigned char dstapic, unsigned char *dstirq)
|
|
|
|
{
|
|
|
|
struct device *child;
|
|
|
|
|
|
|
|
int i;
|
|
|
|
int srcbus;
|
|
|
|
int slot;
|
|
|
|
|
|
|
|
struct bus *link;
|
|
|
|
unsigned char dstirq_x[4];
|
|
|
|
|
2010-06-10 00:41:35 +02:00
|
|
|
for (link = dev->link_list; link; link = link->next) {
|
2008-02-20 18:41:38 +01:00
|
|
|
|
|
|
|
child = link->children;
|
|
|
|
srcbus = link->secondary;
|
|
|
|
|
|
|
|
while (child) {
|
|
|
|
if (child->path.type != DEVICE_PATH_PCI)
|
|
|
|
goto next;
|
|
|
|
|
2009-02-28 21:10:20 +01:00
|
|
|
slot = (child->path.pci.devfn >> 3);
|
2008-02-20 18:41:38 +01:00
|
|
|
/* round pins */
|
|
|
|
for (i = 0; i < 4; i++)
|
|
|
|
dstirq_x[i] = dstirq[(i + slot) % 4];
|
|
|
|
|
|
|
|
if ((child->class >> 16) != PCI_BASE_CLASS_BRIDGE) {
|
|
|
|
/* pci device */
|
2010-03-22 12:42:32 +01:00
|
|
|
printk(BIOS_DEBUG, "route irq: %s\n", dev_path(child));
|
2008-02-20 18:41:38 +01:00
|
|
|
for (i = 0; i < 4; i++)
|
|
|
|
smp_write_intsrc(mc, irqtype, irqflag, srcbus, (slot<<2)|i, dstapic, dstirq_x[i]);
|
|
|
|
goto next;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (child->class>>8) {
|
|
|
|
case PCI_CLASS_BRIDGE_PCI:
|
|
|
|
case PCI_CLASS_BRIDGE_PCMCIA:
|
|
|
|
case PCI_CLASS_BRIDGE_CARDBUS:
|
2010-03-22 12:42:32 +01:00
|
|
|
printk(BIOS_DEBUG, "route irq bridge: %s\n", dev_path(child));
|
2008-02-20 18:41:38 +01:00
|
|
|
smp_write_intsrc_pci_bridge(mc, irqtype, irqflag, child, dstapic, dstirq_x);
|
|
|
|
}
|
|
|
|
|
2012-03-07 15:55:47 +01:00
|
|
|
next:
|
2008-02-20 18:41:38 +01:00
|
|
|
child = child->sibling;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
2003-04-22 21:02:15 +02:00
|
|
|
|
2014-06-16 18:46:56 +02:00
|
|
|
/*
|
|
|
|
* Type 4: Local Interrupt Assignment Entries:
|
|
|
|
* Entry Type, Int Type, Int Polarity, Int Level,
|
|
|
|
* Source Bus ID, Source Bus IRQ, Dest LAPIC ID,
|
|
|
|
* Dest LAPIC LINTIN#
|
|
|
|
*/
|
2003-04-22 21:02:15 +02:00
|
|
|
void smp_write_lintsrc(struct mp_config_table *mc,
|
2014-06-16 18:46:56 +02:00
|
|
|
u8 irqtype, u16 irqflag,
|
|
|
|
u8 srcbusid, u8 srcbusirq,
|
|
|
|
u8 destapic, u8 destapiclint)
|
2003-04-22 21:02:15 +02:00
|
|
|
{
|
|
|
|
struct mpc_config_lintsrc *mpc;
|
|
|
|
mpc = smp_next_mpc_entry(mc);
|
|
|
|
memset(mpc, '\0', sizeof(*mpc));
|
|
|
|
mpc->mpc_type = MP_LINTSRC;
|
|
|
|
mpc->mpc_irqtype = irqtype;
|
|
|
|
mpc->mpc_irqflag = irqflag;
|
|
|
|
mpc->mpc_srcbusid = srcbusid;
|
|
|
|
mpc->mpc_srcbusirq = srcbusirq;
|
|
|
|
mpc->mpc_destapic = destapic;
|
|
|
|
mpc->mpc_destapiclint = destapiclint;
|
|
|
|
smp_add_mpc_entry(mc, sizeof(*mpc));
|
|
|
|
}
|
|
|
|
|
2014-06-16 18:46:56 +02:00
|
|
|
/*
|
|
|
|
* Type 128: System Address Space Mapping Entries
|
|
|
|
* Entry Type, Entry Length, Bus ID, Address Type,
|
|
|
|
* Address Base Lo/Hi, Address Length Lo/Hi
|
|
|
|
*/
|
2003-04-22 21:02:15 +02:00
|
|
|
void smp_write_address_space(struct mp_config_table *mc,
|
2014-06-16 18:46:56 +02:00
|
|
|
u8 busid, u8 address_type,
|
|
|
|
u32 address_base_low, u32 address_base_high,
|
|
|
|
u32 address_length_low, u32 address_length_high)
|
2003-04-22 21:02:15 +02:00
|
|
|
{
|
|
|
|
struct mp_exten_system_address_space *mpe;
|
|
|
|
mpe = smp_next_mpe_entry(mc);
|
|
|
|
memset(mpe, '\0', sizeof(*mpe));
|
|
|
|
mpe->mpe_type = MPE_SYSTEM_ADDRESS_SPACE;
|
|
|
|
mpe->mpe_length = sizeof(*mpe);
|
|
|
|
mpe->mpe_busid = busid;
|
|
|
|
mpe->mpe_address_type = address_type;
|
|
|
|
mpe->mpe_address_base_low = address_base_low;
|
|
|
|
mpe->mpe_address_base_high = address_base_high;
|
|
|
|
mpe->mpe_address_length_low = address_length_low;
|
|
|
|
mpe->mpe_address_length_high = address_length_high;
|
|
|
|
smp_add_mpe_entry(mc, (mpe_t)mpe);
|
|
|
|
}
|
|
|
|
|
2014-06-16 18:46:56 +02:00
|
|
|
/*
|
|
|
|
* Type 129: Bus Hierarchy Descriptor Entry
|
|
|
|
* Entry Type, Entry Length, Bus ID, Bus Info,
|
|
|
|
* Parent Bus ID
|
|
|
|
*/
|
2003-04-22 21:02:15 +02:00
|
|
|
void smp_write_bus_hierarchy(struct mp_config_table *mc,
|
2014-06-16 18:46:56 +02:00
|
|
|
u8 busid, u8 bus_info, u8 parent_busid)
|
2003-04-22 21:02:15 +02:00
|
|
|
{
|
|
|
|
struct mp_exten_bus_hierarchy *mpe;
|
|
|
|
mpe = smp_next_mpe_entry(mc);
|
|
|
|
memset(mpe, '\0', sizeof(*mpe));
|
|
|
|
mpe->mpe_type = MPE_BUS_HIERARCHY;
|
|
|
|
mpe->mpe_length = sizeof(*mpe);
|
|
|
|
mpe->mpe_busid = busid;
|
|
|
|
mpe->mpe_bus_info = bus_info;
|
|
|
|
mpe->mpe_parent_busid = parent_busid;
|
|
|
|
smp_add_mpe_entry(mc, (mpe_t)mpe);
|
|
|
|
}
|
|
|
|
|
2014-06-16 18:46:56 +02:00
|
|
|
/*
|
|
|
|
* Type 130: Compatibility Bus Address Space Modifier Entry
|
|
|
|
* Entry Type, Entry Length, Bus ID, Address Modifier
|
|
|
|
* Predefined Range List
|
|
|
|
*/
|
2003-04-22 21:02:15 +02:00
|
|
|
void smp_write_compatibility_address_space(struct mp_config_table *mc,
|
2014-06-16 18:46:56 +02:00
|
|
|
u8 busid, u8 address_modifier,
|
|
|
|
u32 range_list)
|
2003-04-22 21:02:15 +02:00
|
|
|
{
|
|
|
|
struct mp_exten_compatibility_address_space *mpe;
|
|
|
|
mpe = smp_next_mpe_entry(mc);
|
|
|
|
memset(mpe, '\0', sizeof(*mpe));
|
|
|
|
mpe->mpe_type = MPE_COMPATIBILITY_ADDRESS_SPACE;
|
|
|
|
mpe->mpe_length = sizeof(*mpe);
|
|
|
|
mpe->mpe_busid = busid;
|
|
|
|
mpe->mpe_address_modifier = address_modifier;
|
|
|
|
mpe->mpe_range_list = range_list;
|
|
|
|
smp_add_mpe_entry(mc, (mpe_t)mpe);
|
|
|
|
}
|
|
|
|
|
mptable: Refactor lintsrc generation
We copied pretty much the same code for generating mptable entries for
local interrupts (with some notable exceptions).
This change moves these lines into a generic function "mptable_lintsrc"
and makes use of it in many places.
The remaining uses of smp_write_lintsrc should be reviewed and replaced
by mptable_lintsrc calls where possible, and smp_write_lintsrc made static.
This patch was generated using Coccinelle:
@@
expression mc;
expression isa_bus;
@@
-smp_write_lintsrc(mc, mp_ExtINT, MP_IRQ_TRIGGER_DEFAULT|MP_IRQ_POLARITY_DEFAULT, isa_bus, 0x0, MP_APIC_ALL, 0x0);
-smp_write_lintsrc(mc, mp_NMI, MP_IRQ_TRIGGER_DEFAULT|MP_IRQ_POLARITY_DEFAULT, isa_bus, 0x0, MP_APIC_ALL, 0x1);
+mptable_lintsrc(mc, isa_bus);
@@
expression mc;
expression isa_bus;
@@
-smp_write_lintsrc(mc, mp_ExtINT, MP_IRQ_TRIGGER_EDGE|MP_IRQ_POLARITY_HIGH, isa_bus, 0x0, MP_APIC_ALL, 0x0);
-smp_write_lintsrc(mc, mp_NMI, MP_IRQ_TRIGGER_EDGE|MP_IRQ_POLARITY_HIGH, isa_bus, 0x0, MP_APIC_ALL, 0x1);
+mptable_lintsrc(mc, isa_bus);
@m@
identifier mc;
expression BUS;
@@
-#define IO_LOCAL_INT(type, intr, apicid, pin) smp_write_lintsrc(mc, (type), MP_IRQ_TRIGGER_EDGE | MP_IRQ_POLARITY_HIGH, BUS, (intr), (apicid), (pin));
...
-IO_LOCAL_INT(mp_ExtINT, 0x0, MP_APIC_ALL, 0x0);
-IO_LOCAL_INT(mp_NMI, 0x0, MP_APIC_ALL, 0x1);
+mptable_lintsrc(mc, BUS);
Change-Id: I97421f820cd039f5fd753cb0da5c1cca68819bb4
Signed-off-by: Patrick Georgi <patrick@georgi-clan.de>
Reviewed-on: http://review.coreboot.org/244
Tested-by: build bot (Jenkins)
Reviewed-by: Marc Jones <marcj303@gmail.com>
2011-10-07 21:42:52 +02:00
|
|
|
void mptable_lintsrc(struct mp_config_table *mc, unsigned long bus_isa)
|
|
|
|
{
|
|
|
|
smp_write_lintsrc(mc, mp_ExtINT, MP_IRQ_TRIGGER_EDGE|MP_IRQ_POLARITY_HIGH, bus_isa, 0x0, MP_APIC_ALL, 0x0);
|
|
|
|
smp_write_lintsrc(mc, mp_NMI, MP_IRQ_TRIGGER_EDGE|MP_IRQ_POLARITY_HIGH, bus_isa, 0x0, MP_APIC_ALL, 0x1);
|
|
|
|
}
|
|
|
|
|
2010-05-20 17:28:19 +02:00
|
|
|
void mptable_add_isa_interrupts(struct mp_config_table *mc, unsigned long bus_isa, unsigned long apicid, int external_int2)
|
|
|
|
{
|
|
|
|
/*I/O Ints: Type Trigger Polarity Bus ID IRQ APIC ID PIN# */
|
|
|
|
smp_write_intsrc(mc, external_int2?mp_INT:mp_ExtINT,
|
2017-03-16 21:41:11 +01:00
|
|
|
MP_IRQ_TRIGGER_EDGE|MP_IRQ_POLARITY_HIGH, bus_isa, 0x0, apicid, 0x0);
|
2010-05-20 17:28:19 +02:00
|
|
|
smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_EDGE|MP_IRQ_POLARITY_HIGH, bus_isa, 0x1, apicid, 0x1);
|
|
|
|
smp_write_intsrc(mc, external_int2?mp_ExtINT:mp_INT,
|
2017-03-16 21:41:11 +01:00
|
|
|
MP_IRQ_TRIGGER_EDGE|MP_IRQ_POLARITY_HIGH, bus_isa, 0x0, apicid, 0x2);
|
2010-05-20 17:28:19 +02:00
|
|
|
smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_EDGE|MP_IRQ_POLARITY_HIGH, bus_isa, 0x3, apicid, 0x3);
|
|
|
|
smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_EDGE|MP_IRQ_POLARITY_HIGH, bus_isa, 0x4, apicid, 0x4);
|
|
|
|
smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_EDGE|MP_IRQ_POLARITY_HIGH, bus_isa, 0x6, apicid, 0x6);
|
|
|
|
smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_EDGE|MP_IRQ_POLARITY_HIGH, bus_isa, 0x7, apicid, 0x7);
|
|
|
|
smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_EDGE|MP_IRQ_POLARITY_HIGH, bus_isa, 0x8, apicid, 0x8);
|
|
|
|
smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_EDGE|MP_IRQ_POLARITY_HIGH, bus_isa, 0x9, apicid, 0x9);
|
|
|
|
smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_EDGE|MP_IRQ_POLARITY_HIGH, bus_isa, 0xa, apicid, 0xa);
|
|
|
|
smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_EDGE|MP_IRQ_POLARITY_HIGH, bus_isa, 0xb, apicid, 0xb);
|
|
|
|
smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_EDGE|MP_IRQ_POLARITY_HIGH, bus_isa, 0xc, apicid, 0xc);
|
|
|
|
smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_EDGE|MP_IRQ_POLARITY_HIGH, bus_isa, 0xd, apicid, 0xd);
|
|
|
|
smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_EDGE|MP_IRQ_POLARITY_HIGH, bus_isa, 0xe, apicid, 0xe);
|
|
|
|
smp_write_intsrc(mc, mp_INT, MP_IRQ_TRIGGER_EDGE|MP_IRQ_POLARITY_HIGH, bus_isa, 0xf, apicid, 0xf);
|
|
|
|
}
|
2010-06-25 15:43:22 +02:00
|
|
|
|
2017-03-16 19:24:09 +01:00
|
|
|
void mptable_write_buses(struct mp_config_table *mc, int *max_pci_bus,
|
|
|
|
int *isa_bus)
|
|
|
|
{
|
2010-06-25 15:43:22 +02:00
|
|
|
int dummy, i, highest;
|
|
|
|
char buses[256];
|
|
|
|
struct device *dev;
|
|
|
|
|
|
|
|
if (!max_pci_bus) max_pci_bus = &dummy;
|
|
|
|
if (!isa_bus) isa_bus = &dummy;
|
|
|
|
|
|
|
|
*max_pci_bus = 0;
|
|
|
|
highest = 0;
|
|
|
|
memset(buses, 0, sizeof(buses));
|
|
|
|
|
|
|
|
for (dev = all_devices; dev; dev = dev->next) {
|
|
|
|
struct bus *bus;
|
|
|
|
for (bus = dev->link_list; bus; bus = bus->next) {
|
|
|
|
if (bus->secondary > 255) {
|
|
|
|
printk(BIOS_ERR, "A bus claims to have a bus ID > 255?!? Aborting");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
buses[bus->secondary] = 1;
|
|
|
|
if (highest < bus->secondary) highest = bus->secondary;
|
|
|
|
}
|
|
|
|
}
|
2017-03-16 21:41:11 +01:00
|
|
|
for (i = 0; i <= highest; i++) {
|
2010-06-25 15:43:22 +02:00
|
|
|
if (buses[i]) {
|
|
|
|
smp_write_bus(mc, i, "PCI ");
|
|
|
|
*max_pci_bus = i;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
*isa_bus = *max_pci_bus + 1;
|
|
|
|
smp_write_bus(mc, *isa_bus, "ISA ");
|
|
|
|
}
|
|
|
|
|
2011-10-07 23:01:55 +02:00
|
|
|
void *mptable_finalize(struct mp_config_table *mc)
|
|
|
|
{
|
|
|
|
mc->mpe_checksum = smp_compute_checksum(smp_next_mpc_entry(mc), mc->mpe_length);
|
|
|
|
mc->mpc_checksum = smp_compute_checksum(mc, mc->mpc_length);
|
|
|
|
printk(BIOS_DEBUG, "Wrote the mp table end at: %p - %p\n", mc, smp_next_mpe_entry(mc));
|
|
|
|
return smp_next_mpe_entry(mc);
|
|
|
|
}
|
2012-06-21 22:19:48 +02:00
|
|
|
|
|
|
|
unsigned long __attribute__((weak)) write_smp_table(unsigned long addr)
|
|
|
|
{
|
|
|
|
struct drivers_generic_ioapic_config *ioapic_config;
|
2014-05-01 19:58:32 +02:00
|
|
|
struct mp_config_table *mc;
|
2012-06-21 22:19:48 +02:00
|
|
|
int isa_bus, pin, parentpin;
|
2014-10-27 13:29:29 +01:00
|
|
|
struct device *dev;
|
|
|
|
struct device *parent;
|
|
|
|
struct device *oldparent;
|
2012-06-21 22:19:48 +02:00
|
|
|
void *tmp, *v;
|
2012-08-20 11:19:00 +02:00
|
|
|
int isaioapic = -1, have_fixed_entries;
|
2012-06-21 22:19:48 +02:00
|
|
|
|
|
|
|
v = smp_write_floating_table(addr, 0);
|
2014-05-01 19:58:32 +02:00
|
|
|
mc = (void *)(((char *)v) + SMP_FLOATING_TABLE_LEN);
|
2012-06-21 22:19:48 +02:00
|
|
|
|
|
|
|
mptable_init(mc, LOCAL_APIC_ADDR);
|
|
|
|
|
2012-08-22 00:08:03 +02:00
|
|
|
smp_write_processors(mc);
|
2012-06-21 22:19:48 +02:00
|
|
|
|
|
|
|
mptable_write_buses(mc, NULL, &isa_bus);
|
|
|
|
|
2016-08-21 17:37:15 +02:00
|
|
|
for (dev = all_devices; dev; dev = dev->next) {
|
2012-06-21 22:19:48 +02:00
|
|
|
if (dev->path.type != DEVICE_PATH_IOAPIC)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (!(ioapic_config = dev->chip_info)) {
|
|
|
|
printk(BIOS_ERR, "%s has no config, ignoring\n", dev_path(dev));
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
smp_write_ioapic(mc, dev->path.ioapic.ioapic_id,
|
|
|
|
ioapic_config->version,
|
|
|
|
ioapic_config->base);
|
|
|
|
|
|
|
|
if (ioapic_config->have_isa_interrupts) {
|
2012-08-22 00:08:03 +02:00
|
|
|
if (isaioapic >= 0)
|
2012-06-21 22:19:48 +02:00
|
|
|
printk(BIOS_ERR, "More than one IOAPIC with ISA interrupts?\n");
|
|
|
|
else
|
2012-08-22 00:08:03 +02:00
|
|
|
isaioapic = dev->path.ioapic.ioapic_id;
|
2012-06-21 22:19:48 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isaioapic >= 0) {
|
|
|
|
/* Legacy Interrupts */
|
2012-08-22 00:08:03 +02:00
|
|
|
printk(BIOS_DEBUG, "Writing ISA IRQs\n");
|
2012-06-21 22:19:48 +02:00
|
|
|
mptable_add_isa_interrupts(mc, isa_bus, isaioapic, 0);
|
|
|
|
}
|
|
|
|
|
2016-08-21 17:37:15 +02:00
|
|
|
for (dev = all_devices; dev; dev = dev->next) {
|
2012-06-21 22:19:48 +02:00
|
|
|
|
2012-08-20 11:17:52 +02:00
|
|
|
if (dev->path.type != DEVICE_PATH_PCI || !dev->enabled)
|
2012-06-21 22:19:48 +02:00
|
|
|
continue;
|
|
|
|
|
2012-08-20 11:19:00 +02:00
|
|
|
have_fixed_entries = 0;
|
|
|
|
for (pin = 0; pin < 4; pin++) {
|
|
|
|
if (dev->pci_irq_info[pin].ioapic_dst_id) {
|
|
|
|
printk(BIOS_DEBUG, "fixed IRQ entry for: %s: INT%c# -> IOAPIC %d PIN %d\n", dev_path(dev),
|
|
|
|
pin + 'A',
|
|
|
|
dev->pci_irq_info[pin].ioapic_dst_id,
|
|
|
|
dev->pci_irq_info[pin].ioapic_irq_pin);
|
|
|
|
smp_write_intsrc(mc, mp_INT,
|
|
|
|
dev->pci_irq_info[pin].ioapic_flags,
|
|
|
|
dev->bus->secondary,
|
|
|
|
((dev->path.pci.devfn & 0xf8) >> 1) | pin,
|
|
|
|
dev->pci_irq_info[pin].ioapic_dst_id,
|
|
|
|
dev->pci_irq_info[pin].ioapic_irq_pin);
|
|
|
|
have_fixed_entries = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!have_fixed_entries) {
|
|
|
|
pin = (dev->path.pci.devfn & 7) % 4;
|
|
|
|
oldparent = parent = dev;
|
2017-03-16 21:41:11 +01:00
|
|
|
while ((parent = parent->bus->dev)) {
|
2012-08-20 11:19:00 +02:00
|
|
|
parentpin = (oldparent->path.pci.devfn >> 3) + (oldparent->path.pci.devfn & 7);
|
|
|
|
parentpin += dev->path.pci.devfn & 7;
|
|
|
|
parentpin += dev->path.pci.devfn >> 3;
|
|
|
|
parentpin %= 4;
|
|
|
|
|
|
|
|
if (parent->pci_irq_info[parentpin].ioapic_dst_id) {
|
|
|
|
printk(BIOS_DEBUG, "automatic IRQ entry for %s: INT%c# -> IOAPIC %d PIN %d\n",
|
|
|
|
dev_path(dev), pin + 'A',
|
|
|
|
parent->pci_irq_info[parentpin].ioapic_dst_id,
|
|
|
|
parent->pci_irq_info[parentpin].ioapic_irq_pin);
|
|
|
|
smp_write_intsrc(mc, mp_INT,
|
|
|
|
parent->pci_irq_info[parentpin].ioapic_flags,
|
|
|
|
dev->bus->secondary,
|
|
|
|
((dev->path.pci.devfn & 0xf8) >> 1) | pin,
|
|
|
|
parent->pci_irq_info[parentpin].ioapic_dst_id,
|
|
|
|
parent->pci_irq_info[parentpin].ioapic_irq_pin);
|
|
|
|
|
|
|
|
break;
|
2012-06-21 22:19:48 +02:00
|
|
|
}
|
2012-08-20 11:19:00 +02:00
|
|
|
|
2013-02-12 23:17:15 +01:00
|
|
|
if (parent->path.type == DEVICE_PATH_DOMAIN) {
|
2012-08-20 11:19:00 +02:00
|
|
|
printk(BIOS_WARNING, "no IRQ found for %s\n", dev_path(dev));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
oldparent = parent;
|
|
|
|
}
|
2012-06-21 22:19:48 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
mptable_lintsrc(mc, isa_bus);
|
|
|
|
tmp = mptable_finalize(mc);
|
2015-06-18 10:23:48 +02:00
|
|
|
printk(BIOS_INFO, "MPTABLE len: %d\n", (unsigned int)((uintptr_t)tmp -
|
|
|
|
(uintptr_t)v));
|
2012-06-21 22:19:48 +02:00
|
|
|
return (unsigned long)tmp;
|
|
|
|
}
|