pci.h 5.5 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3
#ifndef __ASM_S390_PCI_H
#define __ASM_S390_PCI_H

J
Jan Glauber 已提交
4
/* must be set before including asm-generic/pci.h */
L
Linus Torvalds 已提交
5
#define PCI_DMA_BUS_IS_PHYS (0)
J
Jan Glauber 已提交
6 7
/* must be set before including pci_clp.h */
#define PCI_BAR_COUNT	6
L
Linus Torvalds 已提交
8

9
#include <linux/pci.h>
10
#include <linux/mutex.h>
J
Jan Glauber 已提交
11 12
#include <asm-generic/pci.h>
#include <asm-generic/pci-dma-compat.h>
J
Jan Glauber 已提交
13
#include <asm/pci_clp.h>
14
#include <asm/pci_debug.h>
L
Linus Torvalds 已提交
15

J
Jan Glauber 已提交
16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
#define PCIBIOS_MIN_IO		0x1000
#define PCIBIOS_MIN_MEM		0x10000000

#define pcibios_assign_all_busses()	(0)

void __iomem *pci_iomap(struct pci_dev *, int, unsigned long);
void pci_iounmap(struct pci_dev *, void __iomem *);
int pci_domain_nr(struct pci_bus *);
int pci_proc_domain(struct pci_bus *);

#define ZPCI_BUS_NR			0	/* default bus number */
#define ZPCI_DEVFN			0	/* default device number */

/* PCI Function Controls */
#define ZPCI_FC_FN_ENABLED		0x80
#define ZPCI_FC_ERROR			0x40
#define ZPCI_FC_BLOCKED			0x20
#define ZPCI_FC_DMA_ENABLED		0x10

35 36 37 38 39 40 41 42 43 44 45 46 47 48 49
struct zpci_fmb {
	u32 format	:  8;
	u32 dma_valid	:  1;
	u32		: 23;
	u32 samples;
	u64 last_update;
	/* hardware counters */
	u64 ld_ops;
	u64 st_ops;
	u64 stb_ops;
	u64 rpcit_ops;
	u64 dma_rbytes;
	u64 dma_wbytes;
} __packed __aligned(16);

J
Jan Glauber 已提交
50 51 52 53 54 55 56 57 58
enum zpci_state {
	ZPCI_FN_STATE_RESERVED,
	ZPCI_FN_STATE_STANDBY,
	ZPCI_FN_STATE_CONFIGURED,
	ZPCI_FN_STATE_ONLINE,
	NR_ZPCI_FN_STATES,
};

struct zpci_bar_struct {
59
	struct resource *res;		/* bus resource */
J
Jan Glauber 已提交
60 61
	u32		val;		/* bar start & 3 flag bits */
	u16		map_idx;	/* index into bar mapping array */
62
	u8		size;		/* order 2 exponent */
J
Jan Glauber 已提交
63 64
};

65 66
struct s390_domain;

J
Jan Glauber 已提交
67 68 69 70 71 72 73 74 75
/* Private data per function */
struct zpci_dev {
	struct pci_dev	*pdev;
	struct pci_bus	*bus;
	struct list_head entry;		/* list of all zpci_devices, needed for hotplug, etc. */

	enum zpci_state state;
	u32		fid;		/* function ID, used by sclp */
	u32		fh;		/* function handle, used by insn's */
76
	u16		vfn;		/* virtual function number */
J
Jan Glauber 已提交
77 78
	u16		pchid;		/* physical channel ID */
	u8		pfgid;		/* function group ID */
79
	u8		pft;		/* pci function type */
J
Jan Glauber 已提交
80 81
	u16		domain;

82
	struct mutex lock;
83 84 85 86
	u8 pfip[CLP_PFIP_NR_SEGMENTS];	/* pci function internal path */
	u32 uid;			/* user defined id */
	u8 util_str[CLP_UTIL_STR_LEN];	/* utility string */

87 88
	/* IRQ stuff */
	u64		msi_addr;	/* MSI address */
89
	unsigned int	max_msi;	/* maximum number of MSI's */
90
	struct airq_iv *aibv;		/* adapter interrupt bit vector */
91 92
	unsigned int	aisb;		/* number of the summary bit */

J
Jan Glauber 已提交
93 94 95 96 97 98 99 100 101 102 103
	/* DMA stuff */
	unsigned long	*dma_table;
	spinlock_t	dma_table_lock;
	int		tlb_refresh;

	spinlock_t	iommu_bitmap_lock;
	unsigned long	*iommu_bitmap;
	unsigned long	iommu_size;
	unsigned long	iommu_pages;
	unsigned int	next_bit;

104
	char res_name[16];
J
Jan Glauber 已提交
105 106
	struct zpci_bar_struct bars[PCI_BAR_COUNT];

J
Jan Glauber 已提交
107 108 109 110
	u64		start_dma;	/* Start of available DMA addresses */
	u64		end_dma;	/* End of available DMA addresses */
	u64		dma_mask;	/* DMA address space mask */

111 112 113
	/* Function measurement block */
	struct zpci_fmb *fmb;
	u16		fmb_update;	/* update interval */
114 115 116 117
	/* software counters */
	atomic64_t allocated_pages;
	atomic64_t mapped_pages;
	atomic64_t unmapped_pages;
118

J
Jan Glauber 已提交
119
	enum pci_bus_speed max_bus_speed;
120 121 122

	struct dentry	*debugfs_dev;
	struct dentry	*debugfs_perf;
123 124

	struct s390_domain *s390_domain; /* s390 IOMMU domain data */
J
Jan Glauber 已提交
125 126 127 128 129 130 131
};

static inline bool zdev_enabled(struct zpci_dev *zdev)
{
	return (zdev->fh & (1UL << 31)) ? true : false;
}

132 133
extern const struct attribute_group *zpci_attr_groups[];

J
Jan Glauber 已提交
134 135 136 137 138 139
/* -----------------------------------------------------------------------------
  Prototypes
----------------------------------------------------------------------------- */
/* Base stuff */
int zpci_create_device(struct zpci_dev *);
int zpci_enable_device(struct zpci_dev *);
140
int zpci_disable_device(struct zpci_dev *);
J
Jan Glauber 已提交
141
void zpci_stop_device(struct zpci_dev *);
J
Jan Glauber 已提交
142 143
int zpci_register_ioat(struct zpci_dev *, u8, u64, u64, u64);
int zpci_unregister_ioat(struct zpci_dev *, u8);
J
Jan Glauber 已提交
144

J
Jan Glauber 已提交
145
/* CLP */
S
Sebastian Ott 已提交
146 147
int clp_scan_pci_devices(void);
int clp_rescan_pci_devices(void);
148
int clp_rescan_pci_devices_simple(void);
J
Jan Glauber 已提交
149 150 151 152
int clp_add_pci_device(u32, u32, int);
int clp_enable_fh(struct zpci_dev *, u8);
int clp_disable_fh(struct zpci_dev *);

153
#ifdef CONFIG_PCI
154 155 156
/* Error handling and recovery */
void zpci_event_error(void *);
void zpci_event_availability(void *);
157
void zpci_rescan(void);
158
bool zpci_is_enabled(void);
159 160 161
#else /* CONFIG_PCI */
static inline void zpci_event_error(void *e) {}
static inline void zpci_event_availability(void *e) {}
162
static inline void zpci_rescan(void) {}
163
#endif /* CONFIG_PCI */
164

165 166 167 168 169 170 171 172 173 174 175
#ifdef CONFIG_HOTPLUG_PCI_S390
int zpci_init_slot(struct zpci_dev *);
void zpci_exit_slot(struct zpci_dev *);
#else /* CONFIG_HOTPLUG_PCI_S390 */
static inline int zpci_init_slot(struct zpci_dev *zdev)
{
	return 0;
}
static inline void zpci_exit_slot(struct zpci_dev *zdev) {}
#endif /* CONFIG_HOTPLUG_PCI_S390 */

J
Jan Glauber 已提交
176
/* Helpers */
S
Sebastian Ott 已提交
177 178 179 180 181
static inline struct zpci_dev *to_zpci(struct pci_dev *pdev)
{
	return pdev->sysdata;
}

J
Jan Glauber 已提交
182 183
struct zpci_dev *get_zdev_by_fid(u32);

J
Jan Glauber 已提交
184 185 186 187
/* DMA */
int zpci_dma_init(void);
void zpci_dma_exit(void);

188 189 190 191 192 193 194 195 196 197 198
/* FMB */
int zpci_fmb_enable_device(struct zpci_dev *);
int zpci_fmb_disable_device(struct zpci_dev *);

/* Debug */
int zpci_debug_init(void);
void zpci_debug_exit(void);
void zpci_debug_init_device(struct zpci_dev *);
void zpci_debug_exit_device(struct zpci_dev *);
void zpci_debug_info(struct zpci_dev *, struct seq_file *);

199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214
#ifdef CONFIG_NUMA

/* Returns the node based on PCI bus */
static inline int __pcibus_to_node(const struct pci_bus *bus)
{
	return NUMA_NO_NODE;
}

static inline const struct cpumask *
cpumask_of_pcibus(const struct pci_bus *bus)
{
	return cpu_online_mask;
}

#endif /* CONFIG_NUMA */

J
Jan Glauber 已提交
215
#endif