2011-02-14 20:04:45 +01:00
|
|
|
/*
|
|
|
|
* This file is part of the coreboot project.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2011 Advanced Micro Devices, Inc.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <console/console.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <arch/pirq_routing.h>
|
|
|
|
|
|
|
|
static void write_pirq_info(struct irq_info *pirq_info, u8 bus, u8 devfn,
|
mainboard: Format irq_tables.c
Run the command below to format the files `irq_tables.c` of (mostly AMD)
mainboards correctly with GNU indent 2.2.10.
```
$ git grep -l 'if (sum != pirq->checksum) {' | xargs indent -l
```
Fix up the following two checkpatch.pl errors manually.
```
ERROR: that open brace { should be on the previous line
#1219: FILE: src/mainboard/gigabyte/ga_2761gxdk/irq_tables.c:129:
+ uint8_t reg[8] =
+ { 0x41, 0x42, 0x43, 0x44, 0x60, 0x61, 0x62, 0x63 };
ERROR: that open brace { should be on the previous line
#1221: FILE: src/mainboard/gigabyte/ga_2761gxdk/irq_tables.c:131:
+ uint8_t irq[8] =
+ { 0x0A, 0X0B, 0X0, 0X0a, 0X0B, 0X05, 0X0, 0X07 };
```
This is needed, so that follow-up commits, fixing checkpatch.pl errors
and warnings, won’t run into conflicts with the git commit hooks, when
for example, spaces instead of tabs are used for indentation.
Change-Id: If254723f3013377fb3b9b08dd5eca6b76730ec4a
Signed-off-by: Paul Menzel <pmenzel@molgen.mpg.de>
Reviewed-on: https://review.coreboot.org/15932
Tested-by: build bot (Jenkins)
Reviewed-by: Jonathan A. Kollasch <jakllsch@kollasch.net>
Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
2016-07-28 17:20:20 +02:00
|
|
|
u8 link0, u16 bitmap0, u8 link1, u16 bitmap1,
|
|
|
|
u8 link2, u16 bitmap2, u8 link3, u16 bitmap3,
|
|
|
|
u8 slot, u8 rfu)
|
2011-02-14 20:04:45 +01:00
|
|
|
{
|
|
|
|
pirq_info->bus = bus;
|
|
|
|
pirq_info->devfn = devfn;
|
|
|
|
pirq_info->irq[0].link = link0;
|
|
|
|
pirq_info->irq[0].bitmap = bitmap0;
|
|
|
|
pirq_info->irq[1].link = link1;
|
|
|
|
pirq_info->irq[1].bitmap = bitmap1;
|
|
|
|
pirq_info->irq[2].link = link2;
|
|
|
|
pirq_info->irq[2].bitmap = bitmap2;
|
|
|
|
pirq_info->irq[3].link = link3;
|
|
|
|
pirq_info->irq[3].bitmap = bitmap3;
|
|
|
|
pirq_info->slot = slot;
|
|
|
|
pirq_info->rfu = rfu;
|
|
|
|
}
|
|
|
|
|
|
|
|
unsigned long write_pirq_routing_table(unsigned long addr)
|
|
|
|
{
|
|
|
|
|
|
|
|
struct irq_routing_table *pirq;
|
|
|
|
struct irq_info *pirq_info;
|
|
|
|
u32 slot_num;
|
|
|
|
u8 *v;
|
|
|
|
|
|
|
|
u8 sum = 0;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
/* Align the table to be 16 byte aligned. */
|
|
|
|
addr += 15;
|
|
|
|
addr &= ~15;
|
|
|
|
|
2014-06-26 04:30:54 +02:00
|
|
|
/* This table must be between 0xf0000 & 0x100000 */
|
2011-02-14 20:04:45 +01:00
|
|
|
printk(BIOS_INFO, "Writing IRQ routing tables to 0x%lx...", addr);
|
|
|
|
|
|
|
|
pirq = (void *)(addr);
|
|
|
|
v = (u8 *) (addr);
|
|
|
|
|
|
|
|
pirq->signature = PIRQ_SIGNATURE;
|
|
|
|
pirq->version = PIRQ_VERSION;
|
|
|
|
|
2014-07-21 18:35:16 +02:00
|
|
|
pirq->rtr_bus = 0;
|
|
|
|
pirq->rtr_devfn = PCI_DEVFN(0x14, 4);
|
2011-02-14 20:04:45 +01:00
|
|
|
|
|
|
|
pirq->exclusive_irqs = 0;
|
|
|
|
|
|
|
|
pirq->rtr_vendor = 0x1002;
|
|
|
|
pirq->rtr_device = 0x4384;
|
|
|
|
|
|
|
|
pirq->miniport_data = 0;
|
|
|
|
|
|
|
|
memset(pirq->rfu, 0, sizeof(pirq->rfu));
|
|
|
|
|
|
|
|
pirq_info = (void *)(&pirq->checksum + 1);
|
|
|
|
slot_num = 0;
|
|
|
|
|
|
|
|
/* pci bridge */
|
2014-07-21 18:35:16 +02:00
|
|
|
write_pirq_info(pirq_info, 0, PCI_DEVFN(0x14, 4),
|
2011-02-14 20:04:45 +01:00
|
|
|
0x1, 0xdef8, 0x2, 0xdef8, 0x3, 0xdef8, 0x4, 0xdef8, 0,
|
|
|
|
0);
|
|
|
|
pirq_info++;
|
|
|
|
|
|
|
|
slot_num++;
|
|
|
|
|
|
|
|
pirq->size = 32 + 16 * slot_num;
|
|
|
|
|
|
|
|
for (i = 0; i < pirq->size; i++)
|
|
|
|
sum += v[i];
|
|
|
|
|
|
|
|
sum = pirq->checksum - sum;
|
|
|
|
|
|
|
|
if (sum != pirq->checksum) {
|
|
|
|
pirq->checksum = sum;
|
|
|
|
}
|
|
|
|
|
|
|
|
printk(BIOS_INFO, "write_pirq_routing_table done.\n");
|
|
|
|
|
|
|
|
return (unsigned long)pirq_info;
|
|
|
|
|
|
|
|
}
|