| .. | .. |
|---|
| 1 | +/* SPDX-License-Identifier: GPL-2.0-or-later */ |
|---|
| 1 | 2 | /* |
|---|
| 2 | 3 | * Private structs/constants for PARISC IOSAPIC support |
|---|
| 3 | 4 | * |
|---|
| 4 | 5 | * Copyright (C) 2000 Hewlett Packard (Grant Grundler) |
|---|
| 5 | 6 | * Copyright (C) 2000,2003 Grant Grundler (grundler at parisc-linux.org) |
|---|
| 6 | 7 | * Copyright (C) 2002 Matthew Wilcox (willy at parisc-linux.org) |
|---|
| 7 | | - * |
|---|
| 8 | | - * |
|---|
| 9 | | - * This program is free software; you can redistribute it and/or modify |
|---|
| 10 | | - * it under the terms of the GNU General Public License as published by |
|---|
| 11 | | - * the Free Software Foundation; either version 2 of the License, or |
|---|
| 12 | | - * (at your option) any later version. |
|---|
| 13 | | - * |
|---|
| 14 | | - * This program is distributed in the hope that it will be useful, |
|---|
| 15 | | - * but WITHOUT ANY WARRANTY; without even the implied warranty of |
|---|
| 16 | | - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|---|
| 17 | | - * GNU General Public License for more details. |
|---|
| 18 | | - * |
|---|
| 19 | | - * You should have received a copy of the GNU General Public License |
|---|
| 20 | | - * along with this program; if not, write to the Free Software |
|---|
| 21 | | - * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
|---|
| 22 | 8 | */ |
|---|
| 23 | 9 | |
|---|
| 24 | 10 | /* |
|---|
| .. | .. |
|---|
| 132 | 118 | struct vector_info { |
|---|
| 133 | 119 | struct iosapic_info *iosapic; /* I/O SAPIC this vector is on */ |
|---|
| 134 | 120 | struct irt_entry *irte; /* IRT entry */ |
|---|
| 135 | | - u32 __iomem *eoi_addr; /* precalculate EOI reg address */ |
|---|
| 136 | | - u32 eoi_data; /* IA64: ? PA: swapped txn_data */ |
|---|
| 121 | + __le32 __iomem *eoi_addr; /* precalculate EOI reg address */ |
|---|
| 122 | + __le32 eoi_data; /* IA64: ? PA: swapped txn_data */ |
|---|
| 137 | 123 | int txn_irq; /* virtual IRQ number for processor */ |
|---|
| 138 | 124 | ulong txn_addr; /* IA64: id_eid PA: partial HPA */ |
|---|
| 139 | 125 | u32 txn_data; /* CPU interrupt bit */ |
|---|