~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/arch/parisc/include/asm/parisc-device.h

Version: ~ [ linux-6.11.5 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.58 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.114 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.169 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.228 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.284 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.322 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.9 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

  1 /* SPDX-License-Identifier: GPL-2.0 */
  2 #ifndef _ASM_PARISC_PARISC_DEVICE_H_
  3 #define _ASM_PARISC_PARISC_DEVICE_H_
  4 
  5 #include <linux/device.h>
  6 
  7 struct parisc_device {
  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 */
 12         int             irq;
 13         int             aux_irq;        /* Some devices have a second IRQ */
 14 
 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 */
 18  
 19 #ifdef CONFIG_64BIT
 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 */
 23 
 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 */
 27         unsigned long   mod0;
 28 #endif
 29         u64             dma_mask;       /* DMA mask for I/O */
 30         struct device   dev;
 31 };
 32 
 33 struct parisc_driver {
 34         struct parisc_driver *next;
 35         char *name; 
 36         const struct parisc_device_id *id_table;
 37         int (*probe)(struct parisc_device *dev); /* New device discovered */
 38         void (*remove)(struct parisc_device *dev);
 39         struct device_driver drv;
 40 };
 41 
 42 
 43 #define to_parisc_device(d)     container_of(d, struct parisc_device, dev)
 44 #define to_parisc_driver(d)     container_of_const(d, struct parisc_driver, drv)
 45 #define parisc_parent(d)        to_parisc_device(d->dev.parent)
 46 
 47 static inline const char *parisc_pathname(struct parisc_device *d)
 48 {
 49         return dev_name(&d->dev);
 50 }
 51 
 52 static inline void
 53 parisc_set_drvdata(struct parisc_device *d, void *p)
 54 {
 55         dev_set_drvdata(&d->dev, p);
 56 }
 57 
 58 static inline void *
 59 parisc_get_drvdata(struct parisc_device *d)
 60 {
 61         return dev_get_drvdata(&d->dev);
 62 }
 63 
 64 extern const struct bus_type parisc_bus_type;
 65 
 66 int iosapic_serial_irq(struct parisc_device *dev);
 67 
 68 #endif /*_ASM_PARISC_PARISC_DEVICE_H_*/
 69 

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php