Blame view

include/linux/edd.h 5.48 KB
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1
2
3
4
5
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
  /*
   * linux/include/linux/edd.h
   *  Copyright (C) 2002, 2003, 2004 Dell Inc.
   *  by Matt Domsch <Matt_Domsch@dell.com>
   *
   * structures and definitions for the int 13h, ax={41,48}h
   * BIOS Enhanced Disk Drive Services
   * This is based on the T13 group document D1572 Revision 0 (August 14 2002)
   * available at http://www.t13.org/docs2002/d1572r0.pdf.  It is
   * very similar to D1484 Revision 3 http://www.t13.org/docs2002/d1484r3.pdf
   *
   * In a nutshell, arch/{i386,x86_64}/boot/setup.S populates a scratch
   * table in the boot_params that contains a list of BIOS-enumerated
   * boot devices.
   * In arch/{i386,x86_64}/kernel/setup.c, this information is
   * transferred into the edd structure, and in drivers/firmware/edd.c, that
   * information is used to identify BIOS boot disk.  The code in setup.S
   * is very sensitive to the size of these structures.
   *
   * This program is free software; you can redistribute it and/or modify
   * it under the terms of the GNU General Public License v2.0 as published by
   * the Free Software Foundation
   *
   * This program is distributed in the hope that it will be useful,
   * but WITHOUT ANY WARRANTY; without even the implied warranty of
   * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   * GNU General Public License for more details.
   *
   */
  #ifndef _LINUX_EDD_H
  #define _LINUX_EDD_H
414414708   Jaswinder Singh Rajput   headers_check fix...
32
  #include <linux/types.h>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
33
34
  #define EDDNR 0x1e9		/* addr of number of edd_info structs at EDDBUF
  				   in boot_params - treat this as 1 byte  */
f9ba70535   Venkatesh Pallipadi   [PATCH] Increase ...
35
  #define EDDBUF	0xd00		/* addr of edd_info structs in boot_params */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
  #define EDDMAXNR 6		/* number of edd_info structs starting at EDDBUF  */
  #define EDDEXTSIZE 8		/* change these if you muck with the structures */
  #define EDDPARMSIZE 74
  #define CHECKEXTENSIONSPRESENT 0x41
  #define GETDEVICEPARAMETERS 0x48
  #define LEGACYGETDEVICEPARAMETERS 0x08
  #define EDDMAGIC1 0x55AA
  #define EDDMAGIC2 0xAA55
  
  
  #define READ_SECTORS 0x02         /* int13 AH=0x02 is READ_SECTORS command */
  #define EDD_MBR_SIG_OFFSET 0x1B8  /* offset of signature in the MBR */
  #define EDD_MBR_SIG_BUF    0x290  /* addr in boot params */
  #define EDD_MBR_SIG_MAX 16        /* max number of signatures to store */
  #define EDD_MBR_SIG_NR_BUF 0x1ea  /* addr of number of MBR signtaures at EDD_MBR_SIG_BUF
  				     in boot_params - treat this as 1 byte  */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
  
  #ifndef __ASSEMBLY__
  
  #define EDD_EXT_FIXED_DISK_ACCESS           (1 << 0)
  #define EDD_EXT_DEVICE_LOCKING_AND_EJECTING (1 << 1)
  #define EDD_EXT_ENHANCED_DISK_DRIVE_SUPPORT (1 << 2)
  #define EDD_EXT_64BIT_EXTENSIONS            (1 << 3)
  
  #define EDD_INFO_DMA_BOUNDARY_ERROR_TRANSPARENT (1 << 0)
  #define EDD_INFO_GEOMETRY_VALID                (1 << 1)
  #define EDD_INFO_REMOVABLE                     (1 << 2)
  #define EDD_INFO_WRITE_VERIFY                  (1 << 3)
  #define EDD_INFO_MEDIA_CHANGE_NOTIFICATION     (1 << 4)
  #define EDD_INFO_LOCKABLE                      (1 << 5)
  #define EDD_INFO_NO_MEDIA_PRESENT              (1 << 6)
  #define EDD_INFO_USE_INT13_FN50                (1 << 7)
  
  struct edd_device_params {
ee8e7cfe9   Rusty Russell   Make asm-x86/boot...
70
71
72
73
74
75
76
77
78
79
80
81
82
83
  	__u16 length;
  	__u16 info_flags;
  	__u32 num_default_cylinders;
  	__u32 num_default_heads;
  	__u32 sectors_per_track;
  	__u64 number_of_sectors;
  	__u16 bytes_per_sector;
  	__u32 dpte_ptr;		/* 0xFFFFFFFF for our purposes */
  	__u16 key;		/* = 0xBEDD */
  	__u8 device_path_info_length;	/* = 44 */
  	__u8 reserved2;
  	__u16 reserved3;
  	__u8 host_bus_type[4];
  	__u8 interface_type[8];
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
84
85
  	union {
  		struct {
ee8e7cfe9   Rusty Russell   Make asm-x86/boot...
86
87
88
  			__u16 base_address;
  			__u16 reserved1;
  			__u32 reserved2;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
89
90
  		} __attribute__ ((packed)) isa;
  		struct {
ee8e7cfe9   Rusty Russell   Make asm-x86/boot...
91
92
93
94
95
  			__u8 bus;
  			__u8 slot;
  			__u8 function;
  			__u8 channel;
  			__u32 reserved;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
96
97
98
  		} __attribute__ ((packed)) pci;
  		/* pcix is same as pci */
  		struct {
ee8e7cfe9   Rusty Russell   Make asm-x86/boot...
99
  			__u64 reserved;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
100
101
  		} __attribute__ ((packed)) ibnd;
  		struct {
ee8e7cfe9   Rusty Russell   Make asm-x86/boot...
102
  			__u64 reserved;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
103
104
  		} __attribute__ ((packed)) xprs;
  		struct {
ee8e7cfe9   Rusty Russell   Make asm-x86/boot...
105
  			__u64 reserved;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
106
107
  		} __attribute__ ((packed)) htpt;
  		struct {
ee8e7cfe9   Rusty Russell   Make asm-x86/boot...
108
  			__u64 reserved;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
109
110
111
112
  		} __attribute__ ((packed)) unknown;
  	} interface_path;
  	union {
  		struct {
ee8e7cfe9   Rusty Russell   Make asm-x86/boot...
113
114
115
116
117
  			__u8 device;
  			__u8 reserved1;
  			__u16 reserved2;
  			__u32 reserved3;
  			__u64 reserved4;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
118
119
  		} __attribute__ ((packed)) ata;
  		struct {
ee8e7cfe9   Rusty Russell   Make asm-x86/boot...
120
121
122
123
124
125
  			__u8 device;
  			__u8 lun;
  			__u8 reserved1;
  			__u8 reserved2;
  			__u32 reserved3;
  			__u64 reserved4;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
126
127
  		} __attribute__ ((packed)) atapi;
  		struct {
ee8e7cfe9   Rusty Russell   Make asm-x86/boot...
128
129
130
131
  			__u16 id;
  			__u64 lun;
  			__u16 reserved1;
  			__u32 reserved2;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
132
133
  		} __attribute__ ((packed)) scsi;
  		struct {
ee8e7cfe9   Rusty Russell   Make asm-x86/boot...
134
135
  			__u64 serial_number;
  			__u64 reserved;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
136
137
  		} __attribute__ ((packed)) usb;
  		struct {
ee8e7cfe9   Rusty Russell   Make asm-x86/boot...
138
139
  			__u64 eui;
  			__u64 reserved;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
140
141
  		} __attribute__ ((packed)) i1394;
  		struct {
ee8e7cfe9   Rusty Russell   Make asm-x86/boot...
142
143
  			__u64 wwid;
  			__u64 lun;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
144
145
  		} __attribute__ ((packed)) fibre;
  		struct {
ee8e7cfe9   Rusty Russell   Make asm-x86/boot...
146
147
  			__u64 identity_tag;
  			__u64 reserved;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
148
149
  		} __attribute__ ((packed)) i2o;
  		struct {
ee8e7cfe9   Rusty Russell   Make asm-x86/boot...
150
151
152
  			__u32 array_number;
  			__u32 reserved1;
  			__u64 reserved2;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
153
154
  		} __attribute__ ((packed)) raid;
  		struct {
ee8e7cfe9   Rusty Russell   Make asm-x86/boot...
155
156
157
158
159
  			__u8 device;
  			__u8 reserved1;
  			__u16 reserved2;
  			__u32 reserved3;
  			__u64 reserved4;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
160
161
  		} __attribute__ ((packed)) sata;
  		struct {
ee8e7cfe9   Rusty Russell   Make asm-x86/boot...
162
163
  			__u64 reserved1;
  			__u64 reserved2;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
164
165
  		} __attribute__ ((packed)) unknown;
  	} device_path;
ee8e7cfe9   Rusty Russell   Make asm-x86/boot...
166
167
  	__u8 reserved4;
  	__u8 checksum;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
168
169
170
  } __attribute__ ((packed));
  
  struct edd_info {
ee8e7cfe9   Rusty Russell   Make asm-x86/boot...
171
172
173
174
175
176
  	__u8 device;
  	__u8 version;
  	__u16 interface_support;
  	__u16 legacy_max_cylinder;
  	__u8 legacy_max_head;
  	__u8 legacy_sectors_per_track;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
177
178
179
180
181
182
183
184
185
  	struct edd_device_params params;
  } __attribute__ ((packed));
  
  struct edd {
  	unsigned int mbr_signature[EDD_MBR_SIG_MAX];
  	struct edd_info edd_info[EDDMAXNR];
  	unsigned char mbr_signature_nr;
  	unsigned char edd_info_nr;
  };
ee8e7cfe9   Rusty Russell   Make asm-x86/boot...
186
  #ifdef __KERNEL__
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
187
  extern struct edd edd;
ee8e7cfe9   Rusty Russell   Make asm-x86/boot...
188
  #endif /* __KERNEL__ */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
189
190
191
  #endif				/*!__ASSEMBLY__ */
  
  #endif				/* _LINUX_EDD_H */