summaryrefslogtreecommitdiff
path: root/src/mainboard/roda/rk886ex
diff options
context:
space:
mode:
authorPatrick Georgi <pgeorgi@google.com>2021-02-11 14:40:01 +0100
committerPatrick Georgi <pgeorgi@google.com>2021-02-17 11:34:27 +0000
commit71555955e91e1aac6c4ef32ebb7ee817fc31e31f (patch)
tree82f13913e6ddddb39b79f25fa8d9ebd829cc9000 /src/mainboard/roda/rk886ex
parent2cba9e44b622be58caa577049bd544ddf17a26e1 (diff)
downloadcoreboot-71555955e91e1aac6c4ef32ebb7ee817fc31e31f.tar.xz
mb: guard irq_tables for clang-format
Some (notably older Intel) boards use a tabular description of irq routing that we want to keep pristine no matter what clang-format considers correct (as that's ugly). Change-Id: I259255a9f60208c659b658ecb81535e84a2aaa8c Signed-off-by: Patrick Georgi <pgeorgi@google.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/50545 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net> Reviewed-by: Angel Pons <th3fanbus@gmail.com> Reviewed-by: HAOUAS Elyes <ehaouas@noos.fr>
Diffstat (limited to 'src/mainboard/roda/rk886ex')
-rw-r--r--src/mainboard/roda/rk886ex/irq_tables.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/mainboard/roda/rk886ex/irq_tables.c b/src/mainboard/roda/rk886ex/irq_tables.c
index 2a44df91e2..bacf5fe273 100644
--- a/src/mainboard/roda/rk886ex/irq_tables.c
+++ b/src/mainboard/roda/rk886ex/irq_tables.c
@@ -14,6 +14,7 @@ static const struct irq_routing_table intel_irq_routing_table = {
0, /* miniport */
{ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }, /* u8 rfu[11] */
0xf, /* u8 checksum. */
+ /* clang-format off */
{
/* bus, dev|fn, {link, bitmap}, {link, bitmap}, {link, bitmap}, {link, bitmap}, slot, rfu */
{0x00,(0x01 << 3)|0x0, {{0x60, 0xdcf8}, {0x61, 0xdcf8}, {0x62, 0xdcf8}, {0x63, 0x0dcd8}}, 0x0, 0x0}, /* PCIe? */
@@ -35,6 +36,7 @@ static const struct irq_routing_table intel_irq_routing_table = {
{0x02,(0x00 << 3)|0x0, {{0x60, 0xdcf8}, {0x61, 0xdcf8}, {0x62, 0xdcf8}, {0x63, 0x0dcd8}}, 0x9, 0x0},
{0x03,(0x00 << 3)|0x0, {{0x61, 0xdcf8}, {0x62, 0xdcf8}, {0x63, 0xdcd8}, {0x60, 0x0dcf8}}, 0xa, 0x0},
}
+ /* clang-format on */
};
unsigned long write_pirq_routing_table(unsigned long addr)