Blame view

drivers/firmware/pcdp.h 2.69 KB
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1
2
3
  /*
   * Definitions for PCDP-defined console devices
   *
631dd1a88   Justin P. Mattock   Update broken web...
4
5
   * For DIG64_HCDPv10a_01.pdf and DIG64_PCDPv20.pdf (v1.0a and v2.0 resp.),
   * please see <http://www.dig64.org/specifications/>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
   *
   * (c) Copyright 2002, 2004 Hewlett-Packard Development Company, L.P.
   *	Khalid Aziz <khalid.aziz@hp.com>
   *	Bjorn Helgaas <bjorn.helgaas@hp.com>
   *
   * This program is free software; you can redistribute it and/or modify
   * it under the terms of the GNU General Public License version 2 as
   * published by the Free Software Foundation.
   */
  
  #define PCDP_CONSOLE			0
  #define PCDP_DEBUG			1
  #define PCDP_CONSOLE_OUTPUT		2
  #define PCDP_CONSOLE_INPUT		3
  
  #define PCDP_UART			(0 << 3)
  #define PCDP_VGA			(1 << 3)
  #define PCDP_USB			(2 << 3)
  
  /* pcdp_uart.type and pcdp_device.type */
  #define PCDP_CONSOLE_UART		(PCDP_UART | PCDP_CONSOLE)
  #define PCDP_DEBUG_UART			(PCDP_UART | PCDP_DEBUG)
  #define PCDP_CONSOLE_VGA		(PCDP_VGA  | PCDP_CONSOLE_OUTPUT)
  #define PCDP_CONSOLE_USB		(PCDP_USB  | PCDP_CONSOLE_INPUT)
  
  /* pcdp_uart.flags */
  #define PCDP_UART_EDGE_SENSITIVE	(1 << 0)
  #define PCDP_UART_ACTIVE_LOW		(1 << 1)
  #define PCDP_UART_PRIMARY_CONSOLE	(1 << 2)
  #define PCDP_UART_IRQ			(1 << 6) /* in pci_func for rev < 3 */
  #define PCDP_UART_PCI			(1 << 7) /* in pci_func for rev < 3 */
  
  struct pcdp_uart {
  	u8				type;
  	u8				bits;
  	u8				parity;
  	u8				stop_bits;
  	u8				pci_seg;
  	u8				pci_bus;
  	u8				pci_dev;
  	u8				pci_func;
  	u64				baud;
  	struct acpi_generic_address	addr;
  	u16				pci_dev_id;
  	u16				pci_vendor_id;
  	u32				gsi;
  	u32				clock_rate;
  	u8				pci_prog_intfc;
  	u8				flags;
f62c4a96f   David Mosberger-Tang   [IA64] Make PCDP ...
55
56
  	u16				conout_index;
  	u32				reserved;
66b7f8a30   Mark Maule   [IA64-SGI] pcdp: ...
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
  } __attribute__((packed));
  
  #define PCDP_IF_PCI	1
  
  /* pcdp_if_pci.trans */
  #define PCDP_PCI_TRANS_IOPORT	0x02
  #define PCDP_PCI_TRANS_MMIO	0x01
  
  struct pcdp_if_pci {
  	u8			interconnect;
  	u8			reserved;
  	u16			length;
  	u8			segment;
  	u8			bus;
  	u8			dev;
  	u8			fun;
  	u16			dev_id;
  	u16			vendor_id;
  	u32			acpi_interrupt;
  	u64			mmio_tra;
  	u64			ioport_tra;
  	u8			flags;
  	u8			trans;
  } __attribute__((packed));
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
81
82
83
  
  struct pcdp_vga {
  	u8			count;		/* address space descriptors */
66b7f8a30   Mark Maule   [IA64-SGI] pcdp: ...
84
  } __attribute__((packed));
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
85
86
87
88
89
90
91
92
93
  
  /* pcdp_device.flags */
  #define PCDP_PRIMARY_CONSOLE	1
  
  struct pcdp_device {
  	u8			type;
  	u8			flags;
  	u16			length;
  	u16			efi_index;
66b7f8a30   Mark Maule   [IA64-SGI] pcdp: ...
94
95
96
  	/* next data is pcdp_if_pci or pcdp_if_acpi (not yet supported) */
  	/* next data is device specific type (currently only pcdp_vga) */
  } __attribute__((packed));
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
97
98
99
100
101
102
103
104
105
106
107
108
109
110
  
  struct pcdp {
  	u8			signature[4];
  	u32			length;
  	u8			rev;		/* PCDP v2.0 is rev 3 */
  	u8			chksum;
  	u8			oemid[6];
  	u8			oem_tabid[8];
  	u32			oem_rev;
  	u8			creator_id[4];
  	u32			creator_rev;
  	u32			num_uarts;
  	struct pcdp_uart	uart[0];	/* actual size is num_uarts */
  	/* remainder of table is pcdp_device structures */
66b7f8a30   Mark Maule   [IA64-SGI] pcdp: ...
111
  } __attribute__((packed));