1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef __ASM_S390_PCI_H
3 #define __ASM_S390_PCI_H
6 #include <linux/mutex.h>
7 #include <linux/iommu.h>
8 #include <asm-generic/pci.h>
9 #include <asm/pci_clp.h>
10 #include <asm/pci_debug.h>
13 #define PCIBIOS_MIN_IO 0x1000
14 #define PCIBIOS_MIN_MEM 0x10000000
16 #define pcibios_assign_all_busses() (0)
18 void __iomem
*pci_iomap(struct pci_dev
*, int, unsigned long);
19 void pci_iounmap(struct pci_dev
*, void __iomem
*);
20 int pci_domain_nr(struct pci_bus
*);
21 int pci_proc_domain(struct pci_bus
*);
23 #define ZPCI_BUS_NR 0 /* default bus number */
24 #define ZPCI_DEVFN 0 /* default device number */
26 #define ZPCI_NR_DMA_SPACES 1
27 #define ZPCI_NR_DEVICES CONFIG_PCI_NR_FUNCTIONS
29 /* PCI Function Controls */
30 #define ZPCI_FC_FN_ENABLED 0x80
31 #define ZPCI_FC_ERROR 0x40
32 #define ZPCI_FC_BLOCKED 0x20
33 #define ZPCI_FC_DMA_ENABLED 0x10
35 #define ZPCI_FMB_DMA_COUNTER_VALID (1 << 23)
37 struct zpci_fmb_fmt0
{
42 struct zpci_fmb_fmt1
{
49 struct zpci_fmb_fmt2
{
50 u64 consumed_work_units
;
54 struct zpci_fmb_fmt3
{
68 /* format specific counters */
70 struct zpci_fmb_fmt0 fmt0
;
71 struct zpci_fmb_fmt1 fmt1
;
72 struct zpci_fmb_fmt2 fmt2
;
73 struct zpci_fmb_fmt3 fmt3
;
75 } __packed
__aligned(128);
78 ZPCI_FN_STATE_STANDBY
= 0,
79 ZPCI_FN_STATE_CONFIGURED
= 1,
80 ZPCI_FN_STATE_RESERVED
= 2,
81 ZPCI_FN_STATE_ONLINE
= 3,
84 struct zpci_bar_struct
{
85 struct resource
*res
; /* bus resource */
88 u32 val
; /* bar start & 3 flag bits */
89 u16 map_idx
; /* index into bar mapping array */
90 u8 size
; /* order 2 exponent */
95 /* Private data per function */
98 struct list_head entry
; /* list of all zpci_devices, needed for hotplug, etc. */
100 enum zpci_state state
;
101 u32 fid
; /* function ID, used by sclp */
102 u32 fh
; /* function handle, used by insn's */
103 u16 vfn
; /* virtual function number */
104 u16 pchid
; /* physical channel ID */
105 u8 pfgid
; /* function group ID */
106 u8 pft
; /* pci function type */
110 u8 pfip
[CLP_PFIP_NR_SEGMENTS
]; /* pci function internal path */
111 u32 uid
; /* user defined id */
112 u8 util_str
[CLP_UTIL_STR_LEN
]; /* utility string */
115 u64 msi_addr
; /* MSI address */
116 unsigned int max_msi
; /* maximum number of MSI's */
117 unsigned int msi_first_bit
;
118 unsigned int msi_nr_irqs
;
119 struct airq_iv
*aibv
; /* adapter interrupt bit vector */
120 unsigned long aisb
; /* number of the summary bit */
123 unsigned long *dma_table
;
124 spinlock_t dma_table_lock
;
127 spinlock_t iommu_bitmap_lock
;
128 unsigned long *iommu_bitmap
;
129 unsigned long *lazy_bitmap
;
130 unsigned long iommu_size
;
131 unsigned long iommu_pages
;
132 unsigned int next_bit
;
134 struct iommu_device iommu_dev
; /* IOMMU core handle */
138 struct zpci_bar_struct bars
[PCI_STD_NUM_BARS
];
140 u64 start_dma
; /* Start of available DMA addresses */
141 u64 end_dma
; /* End of available DMA addresses */
142 u64 dma_mask
; /* DMA address space mask */
144 /* Function measurement block */
145 struct zpci_fmb
*fmb
;
146 u16 fmb_update
; /* update interval */
148 /* software counters */
149 atomic64_t allocated_pages
;
150 atomic64_t mapped_pages
;
151 atomic64_t unmapped_pages
;
153 enum pci_bus_speed max_bus_speed
;
155 struct dentry
*debugfs_dev
;
157 struct s390_domain
*s390_domain
; /* s390 IOMMU domain data */
160 static inline bool zdev_enabled(struct zpci_dev
*zdev
)
162 return (zdev
->fh
& (1UL << 31)) ? true : false;
165 extern const struct attribute_group
*zpci_attr_groups
[];
166 extern unsigned int s390_pci_force_floating __initdata
;
168 /* -----------------------------------------------------------------------------
170 ----------------------------------------------------------------------------- */
172 int zpci_create_device(struct zpci_dev
*);
173 void zpci_remove_device(struct zpci_dev
*zdev
);
174 int zpci_enable_device(struct zpci_dev
*);
175 int zpci_disable_device(struct zpci_dev
*);
176 int zpci_register_ioat(struct zpci_dev
*, u8
, u64
, u64
, u64
);
177 int zpci_unregister_ioat(struct zpci_dev
*, u8
);
178 void zpci_remove_reserved_devices(void);
181 int clp_scan_pci_devices(void);
182 int clp_rescan_pci_devices(void);
183 int clp_rescan_pci_devices_simple(u32
*fid
);
184 int clp_add_pci_device(u32
, u32
, int);
185 int clp_enable_fh(struct zpci_dev
*, u8
);
186 int clp_disable_fh(struct zpci_dev
*);
187 int clp_get_state(u32 fid
, enum zpci_state
*state
);
189 /* IOMMU Interface */
190 int zpci_init_iommu(struct zpci_dev
*zdev
);
191 void zpci_destroy_iommu(struct zpci_dev
*zdev
);
194 static inline bool zpci_use_mio(struct zpci_dev
*zdev
)
196 return static_branch_likely(&have_mio
) && zdev
->mio_capable
;
199 /* Error handling and recovery */
200 void zpci_event_error(void *);
201 void zpci_event_availability(void *);
202 void zpci_rescan(void);
203 bool zpci_is_enabled(void);
204 #else /* CONFIG_PCI */
205 static inline void zpci_event_error(void *e
) {}
206 static inline void zpci_event_availability(void *e
) {}
207 static inline void zpci_rescan(void) {}
208 #endif /* CONFIG_PCI */
210 #ifdef CONFIG_HOTPLUG_PCI_S390
211 int zpci_init_slot(struct zpci_dev
*);
212 void zpci_exit_slot(struct zpci_dev
*);
213 #else /* CONFIG_HOTPLUG_PCI_S390 */
214 static inline int zpci_init_slot(struct zpci_dev
*zdev
)
218 static inline void zpci_exit_slot(struct zpci_dev
*zdev
) {}
219 #endif /* CONFIG_HOTPLUG_PCI_S390 */
222 static inline struct zpci_dev
*to_zpci(struct pci_dev
*pdev
)
224 return pdev
->sysdata
;
227 struct zpci_dev
*get_zdev_by_fid(u32
);
230 int zpci_dma_init(void);
231 void zpci_dma_exit(void);
233 int __init
zpci_irq_init(void);
234 void __init
zpci_irq_exit(void);
237 int zpci_fmb_enable_device(struct zpci_dev
*);
238 int zpci_fmb_disable_device(struct zpci_dev
*);
241 int zpci_debug_init(void);
242 void zpci_debug_exit(void);
243 void zpci_debug_init_device(struct zpci_dev
*, const char *);
244 void zpci_debug_exit_device(struct zpci_dev
*);
245 void zpci_debug_info(struct zpci_dev
*, struct seq_file
*);
247 /* Error reporting */
248 int zpci_report_error(struct pci_dev
*, struct zpci_report_error_header
*);
252 /* Returns the node based on PCI bus */
253 static inline int __pcibus_to_node(const struct pci_bus
*bus
)
258 static inline const struct cpumask
*
259 cpumask_of_pcibus(const struct pci_bus
*bus
)
261 return cpu_online_mask
;
264 #endif /* CONFIG_NUMA */