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

TOMOYO Linux Cross Reference
Linux/include/linux/8250_pci.h

Version: ~ [ linux-6.11-rc3 ] ~ [ linux-6.10.4 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.45 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.104 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.164 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.223 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.281 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.319 ] ~ [ 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 /*
  3  * Definitions for PCI support.
  4  */
  5 #define FL_BASE_MASK            0x0007
  6 #define FL_BASE0                0x0000
  7 #define FL_BASE1                0x0001
  8 #define FL_BASE2                0x0002
  9 #define FL_BASE3                0x0003
 10 #define FL_BASE4                0x0004
 11 #define FL_GET_BASE(x)          (x & FL_BASE_MASK)
 12 
 13 /* Use successive BARs (PCI base address registers),
 14    else use offset into some specified BAR */
 15 #define FL_BASE_BARS            0x0008
 16 
 17 /* do not assign an irq */
 18 #define FL_NOIRQ                0x0080
 19 
 20 /* Use the Base address register size to cap number of ports */
 21 #define FL_REGION_SZ_CAP        0x0100
 22 
 23 struct pciserial_board {
 24         unsigned int flags;
 25         unsigned int num_ports;
 26         unsigned int base_baud;
 27         unsigned int uart_offset;
 28         unsigned int reg_shift;
 29         unsigned int first_offset;
 30 };
 31 
 32 struct serial_private;
 33 
 34 struct serial_private *
 35 pciserial_init_ports(struct pci_dev *dev, const struct pciserial_board *board);
 36 void pciserial_remove_ports(struct serial_private *priv);
 37 void pciserial_suspend_ports(struct serial_private *priv);
 38 void pciserial_resume_ports(struct serial_private *priv);
 39 

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