xref: /openbmc/linux/arch/powerpc/include/asm/vio.h (revision 9a87ffc99ec8eb8d35eed7c4f816d75f5cc9662e)
12874c5fdSThomas Gleixner /* SPDX-License-Identifier: GPL-2.0-or-later */
2b8b572e1SStephen Rothwell /*
3b8b572e1SStephen Rothwell  * IBM PowerPC Virtual I/O Infrastructure Support.
4b8b572e1SStephen Rothwell  *
5b8b572e1SStephen Rothwell  * Copyright (c) 2003 IBM Corp.
6b8b572e1SStephen Rothwell  *  Dave Engebretsen engebret@us.ibm.com
7b8b572e1SStephen Rothwell  *  Santiago Leon santil@us.ibm.com
8b8b572e1SStephen Rothwell  */
9b8b572e1SStephen Rothwell 
10b8b572e1SStephen Rothwell #ifndef _ASM_POWERPC_VIO_H
11b8b572e1SStephen Rothwell #define _ASM_POWERPC_VIO_H
12b8b572e1SStephen Rothwell #ifdef __KERNEL__
13b8b572e1SStephen Rothwell 
14b8b572e1SStephen Rothwell #include <linux/errno.h>
15b8b572e1SStephen Rothwell #include <linux/device.h>
16b8b572e1SStephen Rothwell #include <linux/dma-mapping.h>
17b8b572e1SStephen Rothwell #include <linux/mod_devicetable.h>
1884be456fSChristoph Hellwig #include <linux/scatterlist.h>
19b8b572e1SStephen Rothwell 
20b8b572e1SStephen Rothwell #include <asm/hvcall.h>
21b8b572e1SStephen Rothwell 
22b8b572e1SStephen Rothwell /*
23b8b572e1SStephen Rothwell  * Architecture-specific constants for drivers to
24b8b572e1SStephen Rothwell  * extract attributes of the device using vio_get_attribute()
25b8b572e1SStephen Rothwell  */
26b8b572e1SStephen Rothwell #define VETH_MAC_ADDR "local-mac-address"
27b8b572e1SStephen Rothwell #define VETH_MCAST_FILTER_SIZE "ibm,mac-address-filters"
28b8b572e1SStephen Rothwell 
29b8b572e1SStephen Rothwell /* End architecture-specific constants */
30b8b572e1SStephen Rothwell 
31b8b572e1SStephen Rothwell #define h_vio_signal(ua, mode) \
32b8b572e1SStephen Rothwell   plpar_hcall_norets(H_VIO_SIGNAL, ua, mode)
33b8b572e1SStephen Rothwell 
34b8b572e1SStephen Rothwell #define VIO_IRQ_DISABLE		0UL
35b8b572e1SStephen Rothwell #define VIO_IRQ_ENABLE		1UL
36b8b572e1SStephen Rothwell 
37b8b572e1SStephen Rothwell /*
38b8b572e1SStephen Rothwell  * VIO CMO minimum entitlement for all devices and spare entitlement
39b8b572e1SStephen Rothwell  */
40b8b572e1SStephen Rothwell #define VIO_CMO_MIN_ENT 1562624
41b8b572e1SStephen Rothwell 
42a9803497SAnton Blanchard extern struct bus_type vio_bus_type;
43a9803497SAnton Blanchard 
44b8b572e1SStephen Rothwell struct iommu_table;
45b8b572e1SStephen Rothwell 
46f2ab6219SKent Yoder /*
47f2ab6219SKent Yoder  * Platform Facilities Option (PFO)-specific data
48f2ab6219SKent Yoder  */
49f2ab6219SKent Yoder 
50f2ab6219SKent Yoder /* Starting unit address for PFO devices on the VIO BUS */
51f2ab6219SKent Yoder #define VIO_BASE_PFO_UA	0x50000000
52f2ab6219SKent Yoder 
53f2ab6219SKent Yoder /**
54f2ab6219SKent Yoder  * vio_pfo_op - PFO operation parameters
55f2ab6219SKent Yoder  *
56f2ab6219SKent Yoder  * @flags: h_call subfunctions and modifiers
57f2ab6219SKent Yoder  * @in: Input data block logical real address
58f2ab6219SKent Yoder  * @inlen: If non-negative, the length of the input data block.  If negative,
59f2ab6219SKent Yoder  *	the length of the input data descriptor list in bytes.
60f2ab6219SKent Yoder  * @out: Output data block logical real address
61f2ab6219SKent Yoder  * @outlen: If non-negative, the length of the input data block.  If negative,
62f2ab6219SKent Yoder  *	the length of the input data descriptor list in bytes.
63f2ab6219SKent Yoder  * @csbcpb: Logical real address of the 4k naturally-aligned storage block
64f2ab6219SKent Yoder  *	containing the CSB & optional FC field specific CPB
65f2ab6219SKent Yoder  * @timeout: # of milliseconds to retry h_call, 0 for no timeout.
66f2ab6219SKent Yoder  * @hcall_err: pointer to return the h_call return value, else NULL
67f2ab6219SKent Yoder  */
68f2ab6219SKent Yoder struct vio_pfo_op {
69f2ab6219SKent Yoder 	u64 flags;
70f2ab6219SKent Yoder 	s64 in;
71f2ab6219SKent Yoder 	s64 inlen;
72f2ab6219SKent Yoder 	s64 out;
73f2ab6219SKent Yoder 	s64 outlen;
74f2ab6219SKent Yoder 	u64 csbcpb;
75f2ab6219SKent Yoder 	void *done;
76f2ab6219SKent Yoder 	unsigned long handle;
77f2ab6219SKent Yoder 	unsigned int timeout;
78f2ab6219SKent Yoder 	long hcall_err;
79f2ab6219SKent Yoder };
80f2ab6219SKent Yoder 
81f2ab6219SKent Yoder /* End PFO specific data */
82f2ab6219SKent Yoder 
83f2ab6219SKent Yoder enum vio_dev_family {
84f2ab6219SKent Yoder 	VDEVICE,	/* The OF node is a child of /vdevice */
85f2ab6219SKent Yoder 	PFO,		/* The OF node is a child of /ibm,platform-facilities */
86f2ab6219SKent Yoder };
87f2ab6219SKent Yoder 
88b8b572e1SStephen Rothwell /**
89b8b572e1SStephen Rothwell  * vio_dev - This structure is used to describe virtual I/O devices.
90b8b572e1SStephen Rothwell  *
91b8b572e1SStephen Rothwell  * @desired: set from return of driver's get_desired_dma() function
92b8b572e1SStephen Rothwell  * @entitled: bytes of IO data that has been reserved for this device.
93b8b572e1SStephen Rothwell  * @allocated: bytes of IO data currently in use by the device.
94b8b572e1SStephen Rothwell  * @allocs_failed: number of DMA failures due to insufficient entitlement.
95b8b572e1SStephen Rothwell  */
96b8b572e1SStephen Rothwell struct vio_dev {
97b8b572e1SStephen Rothwell 	const char *name;
98b8b572e1SStephen Rothwell 	const char *type;
99b8b572e1SStephen Rothwell 	uint32_t unit_address;
100f2ab6219SKent Yoder 	uint32_t resource_id;
101b8b572e1SStephen Rothwell 	unsigned int irq;
102b8b572e1SStephen Rothwell 	struct {
103b8b572e1SStephen Rothwell 		size_t desired;
104b8b572e1SStephen Rothwell 		size_t entitled;
105b8b572e1SStephen Rothwell 		size_t allocated;
106b8b572e1SStephen Rothwell 		atomic_t allocs_failed;
107b8b572e1SStephen Rothwell 	} cmo;
108f2ab6219SKent Yoder 	enum vio_dev_family family;
109b8b572e1SStephen Rothwell 	struct device dev;
110b8b572e1SStephen Rothwell };
111b8b572e1SStephen Rothwell 
112b8b572e1SStephen Rothwell struct vio_driver {
113cb52d897SBenjamin Herrenschmidt 	const char *name;
114b8b572e1SStephen Rothwell 	const struct vio_device_id *id_table;
115b8b572e1SStephen Rothwell 	int (*probe)(struct vio_dev *dev, const struct vio_device_id *id);
116386a966fSUwe Kleine-König 	void (*remove)(struct vio_dev *dev);
11739d0099fSTyrel Datwyler 	void (*shutdown)(struct vio_dev *dev);
118b8b572e1SStephen Rothwell 	/* A driver must have a get_desired_dma() function to
119b8b572e1SStephen Rothwell 	 * be loaded in a CMO environment if it uses DMA.
120b8b572e1SStephen Rothwell 	 */
121b8b572e1SStephen Rothwell 	unsigned long (*get_desired_dma)(struct vio_dev *dev);
122cb52d897SBenjamin Herrenschmidt 	const struct dev_pm_ops *pm;
123b8b572e1SStephen Rothwell 	struct device_driver driver;
124b8b572e1SStephen Rothwell };
125b8b572e1SStephen Rothwell 
126cb52d897SBenjamin Herrenschmidt extern int __vio_register_driver(struct vio_driver *drv, struct module *owner,
127cb52d897SBenjamin Herrenschmidt 				 const char *mod_name);
128cb52d897SBenjamin Herrenschmidt /*
129cb52d897SBenjamin Herrenschmidt  * vio_register_driver must be a macro so that KBUILD_MODNAME can be expanded
130cb52d897SBenjamin Herrenschmidt  */
131cb52d897SBenjamin Herrenschmidt #define vio_register_driver(driver)		\
132cb52d897SBenjamin Herrenschmidt 	__vio_register_driver(driver, THIS_MODULE, KBUILD_MODNAME)
133b8b572e1SStephen Rothwell extern void vio_unregister_driver(struct vio_driver *drv);
134b8b572e1SStephen Rothwell 
135b8b572e1SStephen Rothwell extern int vio_cmo_entitlement_update(size_t);
136b8b572e1SStephen Rothwell extern void vio_cmo_set_dev_desired(struct vio_dev *viodev, size_t desired);
137b8b572e1SStephen Rothwell 
138cad5cef6SGreg Kroah-Hartman extern void vio_unregister_device(struct vio_dev *dev);
139b8b572e1SStephen Rothwell 
140f2ab6219SKent Yoder extern int vio_h_cop_sync(struct vio_dev *vdev, struct vio_pfo_op *op);
141f2ab6219SKent Yoder 
142b8b572e1SStephen Rothwell struct device_node;
143b8b572e1SStephen Rothwell 
144b8b572e1SStephen Rothwell extern struct vio_dev *vio_register_device_node(
145b8b572e1SStephen Rothwell 		struct device_node *node_vdev);
146b8b572e1SStephen Rothwell extern const void *vio_get_attribute(struct vio_dev *vdev, char *which,
147b8b572e1SStephen Rothwell 		int *length);
148b8b572e1SStephen Rothwell #ifdef CONFIG_PPC_PSERIES
149b8b572e1SStephen Rothwell extern struct vio_dev *vio_find_node(struct device_node *vnode);
150b8b572e1SStephen Rothwell extern int vio_enable_interrupts(struct vio_dev *dev);
151b8b572e1SStephen Rothwell extern int vio_disable_interrupts(struct vio_dev *dev);
152b8b572e1SStephen Rothwell #else
vio_enable_interrupts(struct vio_dev * dev)153b8b572e1SStephen Rothwell static inline int vio_enable_interrupts(struct vio_dev *dev)
154b8b572e1SStephen Rothwell {
155b8b572e1SStephen Rothwell 	return 0;
156b8b572e1SStephen Rothwell }
157b8b572e1SStephen Rothwell #endif
158b8b572e1SStephen Rothwell 
to_vio_driver(struct device_driver * drv)159b8b572e1SStephen Rothwell static inline struct vio_driver *to_vio_driver(struct device_driver *drv)
160b8b572e1SStephen Rothwell {
161b8b572e1SStephen Rothwell 	return container_of(drv, struct vio_driver, driver);
162b8b572e1SStephen Rothwell }
163b8b572e1SStephen Rothwell 
164*b84d6d3bSGreg Kroah-Hartman #define to_vio_dev(__dev)	container_of_const(__dev, struct vio_dev, dev)
165b8b572e1SStephen Rothwell 
166b8b572e1SStephen Rothwell #endif /* __KERNEL__ */
167b8b572e1SStephen Rothwell #endif /* _ASM_POWERPC_VIO_H */
168