summaryrefslogtreecommitdiff
path: root/src/soc/intel/common/block/include/intelblocks/itss.h
blob: 286304c031426edf87ed34bdeeef507ca6ed8937 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
/* SPDX-License-Identifier: GPL-2.0-only */

#ifndef SOC_INTEL_COMMON_BLOCK_ITSS_H
#define SOC_INTEL_COMMON_BLOCK_ITSS_H

/* PIRQA Routing Control Register*/
#define PCR_ITSS_PIRQA_ROUT	0x3100
/* PIRQB Routing Control Register*/
#define PCR_ITSS_PIRQB_ROUT	0x3101
/* PIRQC Routing Control Register*/
#define PCR_ITSS_PIRQC_ROUT	0x3102
/* PIRQD Routing Control Register*/
#define PCR_ITSS_PIRQD_ROUT	0x3103
/* PIRQE Routing Control Register*/
#define PCR_ITSS_PIRQE_ROUT	0x3104
/* PIRQF Routing Control Register*/
#define PCR_ITSS_PIRQF_ROUT	0x3105
/* PIRQG Routing Control Register*/
#define PCR_ITSS_PIRQG_ROUT	0x3106
/* PIRQH Routing Control Register*/
#define PCR_ITSS_PIRQH_ROUT	0x3107
/* ITSS Interrupt polarity control*/
#define PCR_ITSS_IPC0_CONF	0x3200
/* ITSS Power reduction control */
#define PCR_ITSS_ITSSPRC	0x3300

#if !defined(__ACPI__)

#include <southbridge/intel/common/acpi_pirq_gen.h>
#include <stdint.h>

/* Set the interrupt polarity for provided IRQ to the APIC. */
void itss_set_irq_polarity(int irq, int active_low);

/* Snapshot and restore IRQ polarity settings for the inclusive range. */
void itss_snapshot_irq_polarities(int start, int end);
void itss_restore_irq_polarities(int start, int end);

void itss_irq_init(const uint8_t pch_interrupt_routing[PIRQ_COUNT]);
void itss_clock_gate_8254(void);

#endif /* !defined(__ACPI__) */

#endif /* SOC_INTEL_COMMON_BLOCK_ITSS_H */