1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef _ASM_PARISC_PARISC_DEVICE_H_
3 #define _ASM_PARISC_PARISC_DEVICE_H_
5 #include <linux/device.h>
8 struct resource hpa; /* Hard Physical Address */
9 struct parisc_device_id id;
10 struct parisc_driver *driver; /* Driver for this device */
11 char name[80]; /* The hardware description */
13 int aux_irq; /* Some devices have a second IRQ */
15 char hw_path; /* The module number on this bus */
16 unsigned int num_addrs; /* some devices have additional address ranges. */
17 unsigned long *addr; /* which will be stored here */
20 /* parms for pdc_pat_cell_module() call */
21 unsigned long pcell_loc; /* Physical Cell location */
22 unsigned long mod_index; /* PAT specific - Misc Module info */
24 /* generic info returned from pdc_pat_cell_module() */
25 unsigned long mod_info; /* PAT specific - Misc Module info */
26 unsigned long pmod_loc; /* physical Module location */
29 u64 dma_mask; /* DMA mask for I/O */
33 struct parisc_driver {
34 struct parisc_driver *next;
36 const struct parisc_device_id *id_table;
37 int (*probe) (struct parisc_device *dev); /* New device discovered */
38 int (*remove) (struct parisc_device *dev);
39 struct device_driver drv;
43 #define to_parisc_device(d) container_of(d, struct parisc_device, dev)
44 #define to_parisc_driver(d) container_of(d, struct parisc_driver, drv)
45 #define parisc_parent(d) to_parisc_device(d->dev.parent)
47 static inline const char *parisc_pathname(struct parisc_device *d)
49 return dev_name(&d->dev);
53 parisc_set_drvdata(struct parisc_device *d, void *p)
55 dev_set_drvdata(&d->dev, p);
59 parisc_get_drvdata(struct parisc_device *d)
61 return dev_get_drvdata(&d->dev);
64 extern struct bus_type parisc_bus_type;
66 int iosapic_serial_irq(struct parisc_device *dev);
68 #endif /*_ASM_PARISC_PARISC_DEVICE_H_*/