blob: ee8d488f974d2b9b1921d6c4e2acf5511732689e [file] [log] [blame]
Aaron Lwefcb2a312008-05-19 12:17:43 +00001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2008 VIA Technologies, Inc.
5 * (Written by Aaron Lwe <aaron.lwe@gmail.com> for VIA)
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
Aaron Lwefcb2a312008-05-19 12:17:43 +000016 */
17
18#include <arch/pirq_routing.h>
19
Stefan Reinauera47bd912012-11-15 15:15:15 -080020static const struct irq_routing_table intel_irq_routing_table = {
Aaron Lwefcb2a312008-05-19 12:17:43 +000021 PIRQ_SIGNATURE,
22 PIRQ_VERSION,
Stefan Reinauer08670622009-06-30 15:17:49 +000023 32 + 16 * CONFIG_IRQ_SLOT_COUNT,/* Max. number of devices on the bus */
Aaron Lwefcb2a312008-05-19 12:17:43 +000024 0x00, /* Interrupt router bus */
25 (0x11 << 3) | 0x0, /* Interrupt router device */
Ronald G. Minnichd4ef0542008-11-03 04:08:35 +000026 0xc20, /* IRQs devoted exclusively to PCI usage */
Aaron Lwefcb2a312008-05-19 12:17:43 +000027 0x1106, /* Vendor */
28 0x596, /* Device */
Uwe Hermann8fa90ec2010-09-21 21:16:27 +000029 0, /* Miniport data */
Aaron Lwefcb2a312008-05-19 12:17:43 +000030 { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, /* u8 rfu[11] */
Ronald G. Minnichd4ef0542008-11-03 04:08:35 +000031 0x66, /* Checksum */
Aaron Lwefcb2a312008-05-19 12:17:43 +000032 {
Elyes HAOUASa5aad2e2016-09-19 09:47:16 -060033 /* bus, dev|fn, {link, bitmap}, {link, bitmap}, {link, bitmap}, {link, bitmap}, slot, rfu */
34 {0x00,(0x14 << 3)|0x0, {{0x02, 0xdeb8}, {0x03, 0xdeb8}, {0x05, 0xdeb8}, {0x01, 0x0deb8}}, 0x1, 0x0},
35 {0x00,(0x0d << 3)|0x0, {{0x02, 0xdeb8}, {0x03, 0xdeb8}, {0x05, 0xdeb8}, {0x01, 0x0deb8}}, 0x2, 0x0},
36 {0x00,(0x0e << 3)|0x0, {{0x03, 0xdeb8}, {0x05, 0xdeb8}, {0x01, 0xdeb8}, {0x02, 0x0deb8}}, 0x3, 0x0},
37 {0x00,(0x13 << 3)|0x0, {{0x01, 0xdeb8}, {0x02, 0xdeb8}, {0x03, 0xdeb8}, {0x05, 0x0deb8}}, 0x4, 0x0},
38 {0x00,(0x11 << 3)|0x0, {{0x00, 0xdeb8}, {0x00, 0xdeb8}, {0x03, 0xdeb8}, {0x05, 0x0deb8}}, 0x0, 0x0},
39 {0x00,(0x0f << 3)|0x0, {{0x01, 0xdeb8}, {0x02, 0xdeb8}, {0x03, 0xdeb8}, {0x05, 0x0deb8}}, 0x0, 0x0},
40 {0x00,(0x01 << 3)|0x0, {{0x01, 0xdeb8}, {0x02, 0xdeb8}, {0x03, 0xdeb8}, {0x05, 0x0deb8}}, 0x0, 0x0},
41 {0x00,(0x10 << 3)|0x0, {{0x01, 0xdeb8}, {0x02, 0xdeb8}, {0x03, 0xdeb8}, {0x05, 0x0deb8}}, 0x0, 0x0},
42 {0x00,(0x12 << 3)|0x0, {{0x01, 0xdeb8}, {0x00, 0xdeb8}, {0x00, 0xdeb8}, {0x00, 0x0deb8}}, 0x0, 0x0},
Aaron Lwefcb2a312008-05-19 12:17:43 +000043 }
44};
45
46unsigned long write_pirq_routing_table(unsigned long addr)
47{
Stefan Reinauera47bd912012-11-15 15:15:15 -080048 return copy_pirq_routing_table(addr, &intel_irq_routing_table);
Aaron Lwefcb2a312008-05-19 12:17:43 +000049}