blob: 85420bb37d581bc725d07c34254e4a3a1a834038 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * IBM PowerPC Virtual I/O Infrastructure Support.
3 *
4 * Copyright (c) 2003 IBM Corp.
5 * Dave Engebretsen engebret@us.ibm.com
6 * Santiago Leon santil@us.ibm.com
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License
10 * as published by the Free Software Foundation; either version
11 * 2 of the License, or (at your option) any later version.
12 */
13
14#ifndef _ASM_VIO_H
15#define _ASM_VIO_H
16
17#include <linux/config.h>
18#include <linux/init.h>
19#include <linux/errno.h>
20#include <linux/device.h>
21#include <linux/dma-mapping.h>
Stephen Rothwell71d276d2005-08-17 16:41:44 +100022
Linus Torvalds1da177e2005-04-16 15:20:36 -070023#include <asm/hvcall.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <asm/scatterlist.h>
Stephen Rothwell71d276d2005-08-17 16:41:44 +100025
26/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070027 * Architecture-specific constants for drivers to
28 * extract attributes of the device using vio_get_attribute()
Stephen Rothwell71d276d2005-08-17 16:41:44 +100029 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#define VETH_MAC_ADDR "local-mac-address"
31#define VETH_MCAST_FILTER_SIZE "ibm,mac-address-filters"
32
33/* End architecture-specific constants */
34
35#define h_vio_signal(ua, mode) \
36 plpar_hcall_norets(H_VIO_SIGNAL, ua, mode)
37
38#define VIO_IRQ_DISABLE 0UL
39#define VIO_IRQ_ENABLE 1UL
40
Linus Torvalds1da177e2005-04-16 15:20:36 -070041struct iommu_table;
42
Stephen Rothwell71d276d2005-08-17 16:41:44 +100043/*
44 * The vio_dev structure is used to describe virtual I/O devices.
45 */
46struct vio_dev {
47 struct iommu_table *iommu_table; /* vio_map_* uses this */
48 char *name;
49 char *type;
50 uint32_t unit_address;
51 unsigned int irq;
52 struct device dev;
53};
Linus Torvalds1da177e2005-04-16 15:20:36 -070054
55struct vio_device_id {
56 char *type;
57 char *compat;
58};
59
60struct vio_driver {
61 struct list_head node;
62 char *name;
Stephen Rothwell71d276d2005-08-17 16:41:44 +100063 const struct vio_device_id *id_table;
64 int (*probe)(struct vio_dev *dev, const struct vio_device_id *id);
65 int (*remove)(struct vio_dev *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -070066 unsigned long driver_data;
Linus Torvalds1da177e2005-04-16 15:20:36 -070067 struct device_driver driver;
68};
69
Stephen Rothwell71d276d2005-08-17 16:41:44 +100070struct vio_bus_ops {
71 int (*match)(const struct vio_device_id *id, const struct vio_dev *dev);
72 void (*unregister_device)(struct vio_dev *);
73 void (*release_device)(struct device *);
74};
75
76extern struct dma_mapping_ops vio_dma_ops;
77extern struct bus_type vio_bus_type;
78extern struct vio_dev vio_bus_device;
79
80extern int vio_register_driver(struct vio_driver *drv);
81extern void vio_unregister_driver(struct vio_driver *drv);
82
83extern struct vio_dev * __devinit vio_register_device(struct vio_dev *viodev);
84extern void __devinit vio_unregister_device(struct vio_dev *dev);
85
86extern int vio_bus_init(struct vio_bus_ops *);
87
88#ifdef CONFIG_PPC_PSERIES
89struct device_node;
90
91extern struct vio_dev * __devinit vio_register_device_node(
92 struct device_node *node_vdev);
93extern struct vio_dev *vio_find_node(struct device_node *vnode);
94extern const void *vio_get_attribute(struct vio_dev *vdev, void *which,
95 int *length);
96extern int vio_enable_interrupts(struct vio_dev *dev);
97extern int vio_disable_interrupts(struct vio_dev *dev);
98#endif
99
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100static inline struct vio_driver *to_vio_driver(struct device_driver *drv)
101{
102 return container_of(drv, struct vio_driver, driver);
103}
104
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105static inline struct vio_dev *to_vio_dev(struct device *dev)
106{
107 return container_of(dev, struct vio_dev, dev);
108}
109
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110#endif /* _ASM_VIO_H */