2018-05-06 21:58:06 +00:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0+ */
|
2015-05-25 14:35:04 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2015, Bin Meng <bmeng.cn@gmail.com>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _ARCH_IRQ_H_
|
|
|
|
#define _ARCH_IRQ_H_
|
|
|
|
|
|
|
|
#include <dt-bindings/interrupt-router/intel-irq.h>
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Intel interrupt router configuration mechanism
|
|
|
|
*
|
|
|
|
* There are two known ways of Intel interrupt router configuration mechanism
|
|
|
|
* so far. On most cases, the IRQ routing configuraiton is controlled by PCI
|
|
|
|
* configuraiton registers on the legacy bridge, normally PCI BDF(0, 31, 0).
|
|
|
|
* On some newer platforms like BayTrail and Braswell, the IRQ routing is now
|
|
|
|
* in the IBASE register block where IBASE is memory-mapped.
|
|
|
|
*/
|
|
|
|
enum pirq_config {
|
|
|
|
PIRQ_VIA_PCI,
|
|
|
|
PIRQ_VIA_IBASE
|
|
|
|
};
|
|
|
|
|
2018-06-12 08:26:46 +00:00
|
|
|
struct pirq_regmap {
|
|
|
|
int link;
|
|
|
|
int offset;
|
|
|
|
};
|
|
|
|
|
2015-05-25 14:35:04 +00:00
|
|
|
/**
|
|
|
|
* Intel interrupt router control block
|
|
|
|
*
|
|
|
|
* Its members' value will be filled in based on device tree's input.
|
|
|
|
*
|
|
|
|
* @config: PIRQ_VIA_PCI or PIRQ_VIA_IBASE
|
|
|
|
* @link_base: link value base number
|
2018-06-12 08:26:45 +00:00
|
|
|
* @link_num: number of PIRQ links supported
|
2018-06-12 08:26:46 +00:00
|
|
|
* @has_regmap: has mapping table between PIRQ link and routing register offset
|
2015-05-25 14:35:04 +00:00
|
|
|
* @irq_mask: IRQ mask reprenting the 16 IRQs in 8259, bit N is 1 means
|
|
|
|
* IRQ N is available to be routed
|
|
|
|
* @lb_bdf: irq router's PCI bus/device/function number encoding
|
|
|
|
* @ibase: IBASE register block base address
|
2016-05-07 14:46:14 +00:00
|
|
|
* @actl_8bit: ACTL register width is 8-bit (for ICH series chipset)
|
|
|
|
* @actl_addr: ACTL register offset
|
2015-05-25 14:35:04 +00:00
|
|
|
*/
|
|
|
|
struct irq_router {
|
|
|
|
int config;
|
|
|
|
u32 link_base;
|
2018-06-12 08:26:45 +00:00
|
|
|
int link_num;
|
2018-06-12 08:26:46 +00:00
|
|
|
bool has_regmap;
|
|
|
|
struct pirq_regmap *regmap;
|
2015-05-25 14:35:04 +00:00
|
|
|
u16 irq_mask;
|
|
|
|
u32 bdf;
|
|
|
|
u32 ibase;
|
2016-05-07 14:46:14 +00:00
|
|
|
bool actl_8bit;
|
|
|
|
int actl_addr;
|
2015-05-25 14:35:04 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct pirq_routing {
|
|
|
|
int bdf;
|
|
|
|
int pin;
|
|
|
|
int pirq;
|
|
|
|
};
|
|
|
|
|
|
|
|
#define PIRQ_BITMAP 0xdef8
|
|
|
|
|
|
|
|
#endif /* _ARCH_IRQ_H_ */
|