parisc-device.h 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. #ifndef _ASM_PARISC_PARISC_DEVICE_H_
  2. #define _ASM_PARISC_PARISC_DEVICE_H_
  3. #include <linux/device.h>
  4. struct parisc_device {
  5. struct resource hpa; /* Hard Physical Address */
  6. struct parisc_device_id id;
  7. struct parisc_driver *driver; /* Driver for this device */
  8. char name[80]; /* The hardware description */
  9. int irq;
  10. int aux_irq; /* Some devices have a second IRQ */
  11. char hw_path; /* The module number on this bus */
  12. unsigned int num_addrs; /* some devices have additional address ranges. */
  13. unsigned long *addr; /* which will be stored here */
  14. #ifdef CONFIG_64BIT
  15. /* parms for pdc_pat_cell_module() call */
  16. unsigned long pcell_loc; /* Physical Cell location */
  17. unsigned long mod_index; /* PAT specific - Misc Module info */
  18. /* generic info returned from pdc_pat_cell_module() */
  19. unsigned long mod_info; /* PAT specific - Misc Module info */
  20. unsigned long pmod_loc; /* physical Module location */
  21. unsigned long mod0;
  22. #endif
  23. u64 dma_mask; /* DMA mask for I/O */
  24. struct device dev;
  25. };
  26. struct parisc_driver {
  27. struct parisc_driver *next;
  28. char *name;
  29. const struct parisc_device_id *id_table;
  30. int (*probe) (struct parisc_device *dev); /* New device discovered */
  31. int (*remove) (struct parisc_device *dev);
  32. struct device_driver drv;
  33. };
  34. #define to_parisc_device(d) container_of(d, struct parisc_device, dev)
  35. #define to_parisc_driver(d) container_of(d, struct parisc_driver, drv)
  36. #define parisc_parent(d) to_parisc_device(d->dev.parent)
  37. static inline const char *parisc_pathname(struct parisc_device *d)
  38. {
  39. return dev_name(&d->dev);
  40. }
  41. static inline void
  42. parisc_set_drvdata(struct parisc_device *d, void *p)
  43. {
  44. dev_set_drvdata(&d->dev, p);
  45. }
  46. static inline void *
  47. parisc_get_drvdata(struct parisc_device *d)
  48. {
  49. return dev_get_drvdata(&d->dev);
  50. }
  51. extern struct bus_type parisc_bus_type;
  52. int iosapic_serial_irq(struct parisc_device *dev);
  53. #endif /*_ASM_PARISC_PARISC_DEVICE_H_*/