blob: 89ac717df0d689f317c511a3e2ca7d2b0ef59593 [file] [log] [blame]
Ronald G. Minnich6226f132007-09-08 18:32:53 +00001/*
Stefan Reinauer7e61e452008-01-18 10:35:56 +00002* This file is part of the coreboot project.
Ronald G. Minnich6503cd92007-11-07 23:13:43 +00003*
4* Copyright (C) 2007 Advanced Micro Devices, Inc.
5*
6* This program is free software; you can redistribute it and/or modify
7* it under the terms of the GNU General Public License version 2 as
8* published by the Free Software Foundation.
9*
10* This program is distributed in the hope that it will be useful,
11* but WITHOUT ANY WARRANTY; without even the implied warranty of
12* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13* GNU General Public License for more details.
Ronald G. Minnich6503cd92007-11-07 23:13:43 +000014*/
Ronald G. Minnich6226f132007-09-08 18:32:53 +000015
16#include <arch/pirq_routing.h>
17#include <console/console.h>
18#include <arch/io.h>
Uwe Hermann5df41682010-09-25 16:17:20 +000019#include "southbridge/amd/cs5536/cs5536.h"
Ronald G. Minnich6226f132007-09-08 18:32:53 +000020
21/* Platform IRQs */
22#define PIRQA 11
Ronald G. Minnich6503cd92007-11-07 23:13:43 +000023#define PIRQB 10
24#define PIRQC 11
25#define PIRQD 9
Ronald G. Minnich6226f132007-09-08 18:32:53 +000026
27/* Map */
Ronald G. Minnich6503cd92007-11-07 23:13:43 +000028#define M_PIRQA (1 << PIRQA) /* Bitmap of supported IRQs */
29#define M_PIRQB (1 << PIRQB) /* Bitmap of supported IRQs */
30#define M_PIRQC (1 << PIRQC) /* Bitmap of supported IRQs */
31#define M_PIRQD (1 << PIRQD) /* Bitmap of supported IRQs */
Ronald G. Minnich6226f132007-09-08 18:32:53 +000032
33/* Link */
Ronald G. Minnich6503cd92007-11-07 23:13:43 +000034#define L_PIRQA 1 /* Means Slot INTx# Connects To Chipset INTA# */
35#define L_PIRQB 2 /* Means Slot INTx# Connects To Chipset INTB# */
36#define L_PIRQC 3 /* Means Slot INTx# Connects To Chipset INTC# */
37#define L_PIRQD 4 /* Means Slot INTx# Connects To Chipset INTD# */
Ronald G. Minnich6226f132007-09-08 18:32:53 +000038
Uwe Hermann8b942e72007-11-13 16:24:15 +000039/*
40 * ALIX1.C interrupt wiring.
41 *
42 * Devices are:
43 *
Ronald G. Minnich6503cd92007-11-07 23:13:43 +000044 * 00:01.0 Host bridge: Advanced Micro Devices [AMD] CS5536 [Geode companion] Host Bridge (rev 31)
45 * 00:01.2 Entertainment encryption device: Advanced Micro Devices [AMD] Geode LX AES Security Block
46 * 00:0d.0 Ethernet controller: VIA Technologies, Inc. VT6105M [Rhine-III] (rev 96)
47 * 00:0e.0 Network controller: Intersil Corporation Prism 2.5 Wavelan chipset (rev 01)
48 * 00:0f.0 ISA bridge: Advanced Micro Devices [AMD] CS5536 [Geode companion] ISA (rev 03)
49 * 00:0f.2 IDE interface: Advanced Micro Devices [AMD] CS5536 [Geode companion] IDE (rev 01)
50 * 00:0f.3 Multimedia audio controller: Advanced Micro Devices [AMD] CS5536 [Geode companion] Audio (rev 01)
51 * 00:0f.4 USB Controller: Advanced Micro Devices [AMD] CS5536 [Geode companion] OHC (rev 02)
52 * 00:0f.5 USB Controller: Advanced Micro Devices [AMD] CS5536 [Geode companion] EHC (rev 02)
Uwe Hermann8b942e72007-11-13 16:24:15 +000053 *
Ronald G. Minnich6503cd92007-11-07 23:13:43 +000054 * The only devices that interrupt are:
Uwe Hermann8b942e72007-11-13 16:24:15 +000055 *
56 * What Device IRQ PIN PIN WIRED TO
57 * -------------------------------------------------
Ronald G. Minnich6503cd92007-11-07 23:13:43 +000058 * AES 00:01.2 0a 01 A A
59 * 3VPCI 00:0c.0 0a 01 A A
60 * eth0 00:0d.0 0b 01 A B
61 * mpci 00:0e.0 0a 01 A A
62 * usb 00:0f.3 0b 02 B B
63 * usb 00:0f.4 0b 04 D D
64 * usb 00:0f.5 0b 04 D D
65 *
Uwe Hermann8b942e72007-11-13 16:24:15 +000066 * The only swizzled interrupt is eth0, where INTA is wired to interrupt controller line B.
67 */
68
Stefan Reinauera47bd912012-11-15 15:15:15 -080069static const struct irq_routing_table intel_irq_routing_table = {
Uwe Hermann8b942e72007-11-13 16:24:15 +000070 PIRQ_SIGNATURE,
71 PIRQ_VERSION,
Stefan Reinauer08670622009-06-30 15:17:49 +000072 32 + 16 * CONFIG_IRQ_SLOT_COUNT,/* Max. number of devices on the bus */
Uwe Hermann8b942e72007-11-13 16:24:15 +000073 0x00, /* Where the interrupt router lies (bus) */
74 (0x0F << 3) | 0x0, /* Where the interrupt router lies (dev) */
75 0x00, /* IRQs devoted exclusively to PCI usage */
76 0x100B, /* Vendor */
77 0x002B, /* Device */
Uwe Hermann8fa90ec2010-09-21 21:16:27 +000078 0, /* Miniport data */
Uwe Hermann8b942e72007-11-13 16:24:15 +000079 {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, /* u8 rfu[11] */
80 0x00, /* Checksum */
81 {
Stefan Reinauer08670622009-06-30 15:17:49 +000082 /* If you change the number of entries, change CONFIG_IRQ_SLOT_COUNT above! */
Uwe Hermann8b942e72007-11-13 16:24:15 +000083
84 /* bus, dev|fn, {link, bitmap}, {link, bitmap}, {link, bitmap}, {link, bitmap}, slot, rfu */
85
86 /* CPU */
87 {0x00, (0x01 << 3) | 0x0, {{L_PIRQA, M_PIRQA}, {0x00, 0x00}, {0x00, 0x00}, {0x00, 0x00}}, 0x0, 0x0},
88
89 /* PCI (slot 1) */
Ronald G. Minnich254f47e2007-11-26 21:43:21 +000090 {0x00, (0x0C << 3) | 0x0, {{L_PIRQC, M_PIRQC}, {L_PIRQD, M_PIRQD}, {L_PIRQA, M_PIRQA}, {L_PIRQB, M_PIRQB}}, 0x4, 0x0},
Uwe Hermann8b942e72007-11-13 16:24:15 +000091
92 /* On-board ethernet */
93 {0x00, (0x0D << 3) | 0x0, {{L_PIRQB, M_PIRQB}, {0x00, 0x00}, {0x00, 0x00}, {0x00, 0x00}}, 0x0, 0x0},
94
95 /* Mini PCI (slot 2) */
96 {0x00, (0x0E << 3) | 0x0, {{L_PIRQA, M_PIRQA}, {L_PIRQB, M_PIRQB}, {L_PIRQC, M_PIRQC}, {L_PIRQD, M_PIRQD}}, 0x1, 0x0},
97
98 /* Chipset slots -- f.3 wires to B, and f.4 and f.5 wires to D. */
99 {0x00, (0x0F << 3) | 0x0, {{L_PIRQA, M_PIRQA}, {L_PIRQB, M_PIRQB}, {L_PIRQC, M_PIRQC}, {L_PIRQD, M_PIRQD}}, 0x0, 0x0},
Ronald G. Minnich6226f132007-09-08 18:32:53 +0000100 }
101};
102
Ronald G. Minnich6503cd92007-11-07 23:13:43 +0000103unsigned long write_pirq_routing_table(unsigned long addr)
104{
Stefan Reinauera47bd912012-11-15 15:15:15 -0800105 return copy_pirq_routing_table(addr, &intel_irq_routing_table);
Ronald G. Minnich6226f132007-09-08 18:32:53 +0000106}