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

TOMOYO Linux Cross Reference
Linux/arch/sparc/include/asm/pbm.h

Version: ~ [ linux-6.12-rc7 ] ~ [ linux-6.11.7 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.60 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.116 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.171 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.229 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.285 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.323 ] ~ [ 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.12 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

  1 /* SPDX-License-Identifier: GPL-2.0 */
  2 /*
  3  *
  4  * pbm.h: PCI bus module pseudo driver software state
  5  *        Adopted from sparc64 by V. Roganov and G. Raiko
  6  *
  7  * Original header:
  8  * pbm.h: U2P PCI bus module pseudo driver software state.
  9  *
 10  * Copyright (C) 1997 David S. Miller (davem@caip.rutgers.edu)
 11  *
 12  * To put things into perspective, consider sparc64 with a few PCI controllers.
 13  * Each type would have an own structure, with instances related one to one.
 14  * We have only pcic on sparc, but we want to be compatible with sparc64 pbm.h.
 15  * All three represent different abstractions.
 16  *   pci_bus  - Linux PCI subsystem view of a PCI bus (including bridged buses)
 17  *   pbm      - Arch-specific view of a PCI bus (sparc or sparc64)
 18  *   pcic     - Chip-specific information for PCIC.
 19  */
 20 
 21 #ifndef __SPARC_PBM_H
 22 #define __SPARC_PBM_H
 23 
 24 #include <linux/pci.h>
 25 #include <asm/oplib.h>
 26 #include <asm/prom.h>
 27 
 28 struct linux_pbm_info {
 29         int             prom_node;
 30         char            prom_name[64];
 31         /* struct linux_prom_pci_ranges pbm_ranges[PROMREG_MAX]; */
 32         /* int          num_pbm_ranges; */
 33 
 34         /* Now things for the actual PCI bus probes. */
 35         unsigned int    pci_first_busno;        /* Can it be nonzero? */
 36         struct pci_bus  *pci_bus;               /* Was inline, MJ allocs now */
 37 };
 38 
 39 /* PCI devices which are not bridges have this placed in their pci_dev
 40  * sysdata member.  This makes OBP aware PCI device drivers easier to
 41  * code.
 42  */
 43 struct pcidev_cookie {
 44         struct linux_pbm_info           *pbm;
 45         struct device_node              *prom_node;
 46 };
 47 
 48 #endif /* !(__SPARC_PBM_H) */
 49 

~ [ 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