source: trunk/src/os2ahci/os2ahci.h@ 111

Last change on this file since 111 was 111, checked in by Markus Thielen, 14 years ago

added support for os2trace (buggy; messages get swallowed); reverted last change that ignored unknown command line arguments

File size: 25.0 KB
Line 
1/******************************************************************************
2 * os2ahci.h - main header file for os2ahci driver
3 *
4 * Copyright (c) 2011 thi.guten Software Development
5 * Copyright (c) 2011 Mensys B.V.
6 *
7 * Authors: Christian Mueller, Markus Thielen
8 *
9 * Parts copied from/inspired by the Linux AHCI driver;
10 * those parts are (c) Linux AHCI/ATA maintainers
11 *
12 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License as published by
14 * the Free Software Foundation; either version 2 of the License, or
15 * (at your option) any later version.
16 *
17 * This program is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License
23 * along with this program; if not, write to the Free Software
24 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
25 */
26
27/* ----------------------------- include files ----------------------------- */
28
29/* IMPORTANT NOTE: The DDK headers require tight structure packing and this
30 * is controlled via compiler parameters. Thus, all stuctures in os2ahci.sys
31 * are expected to be byte-aligned without the need of explicit pragma pack()
32 * directives. Where possible, the structures are layed out such that words
33 * and dwords are aligned at least on 2-byte boundaries.
34 */
35
36#define INCL_NOPMAPI
37#define INCL_DOSINFOSEG
38#define INCL_NO_SCB
39#define INCL_DOSERRORS
40#include <os2.h>
41#include <dos.h>
42#include <bseerr.h>
43#include <dskinit.h>
44#include <scb.h>
45
46#include <devhdr.h>
47#include <iorb.h>
48#include <strat2.h>
49#include <reqpkt.h>
50
51#ifdef __WATCOMC__
52/* include WATCOM specific DEVHELP stubs */
53#include <devhelp.h>
54#else
55#include <dhcalls.h>
56#endif
57
58#include <addcalls.h>
59#include <rmcalls.h>
60#include <devclass.h>
61#include <devcmd.h>
62#include <rmbase.h>
63
64#include "ahci.h"
65#include "version.h"
66
67/* -------------------------- macros and constants ------------------------- */
68
69#define MAX_AD 8 /* maximum number of adapters */
70
71/* Timer pool size. In theory, we need one timer per outstanding command plus
72 * a few miscellaneous timers but it's unlikely we'll ever have outstanding
73 * commands on all devices on all ports on all apapters -- this would be
74 * 8 * 32 * 32 = 8192 outstanding commands on a maximum of 8 * 32 * 15 = 3840
75 * devices and that's a bit of an exaggeration. It should be more than enough
76 * to have 128 timers.
77 */
78#define TIMER_COUNT 128
79#define TIMER_POOL_SIZE (sizeof(ADD_TIMER_POOL) + \
80 TIMER_COUNT * sizeof(ADD_TIMER_DATA))
81
82/* default command timeout (can be overwritten in the IORB) */
83#define DEFAULT_TIMEOUT 30000
84
85/* max/min macros */
86#define max(a, b) (a) > (b) ? (a) : (b)
87#define min(a, b) (a) < (b) ? (a) : (b)
88
89/* debug output macros */
90#define dprintf if (debug > 0) printf
91#define dphex if (debug > 0) phex
92#define ddprintf if (debug > 1) printf
93#define ddphex if (debug > 1) phex
94#define dddprintf if (debug > 2) printf
95#define dddphex if (debug > 2) phex
96
97/* adapter number from AD_INFO pointer; mainly for dprintf() purposes */
98#define ad_no(ai) (((u16) ai - (u16) ad_infos) / sizeof(*ai))
99
100/* Convert far function address into NPFN (the DDK needs this all over the
101 * place and just casting to NPFN will produce a "segment lost in conversion"
102 * warning. Since casting to a u32 is a bit nasty for function pointers and
103 * might have to be revised for different compilers, we'll use a central
104 * macro for this crap.
105 */
106#define mk_NPFN(func) (NPFN) (u32) (func)
107
108/* stdarg.h macros with explicit far pointers
109 *
110 * NOTE: The compiler pushes fixed arguments with 16 bits minimum, thus
111 * the last fixed argument (i.e. the one passed to va_start) must
112 * have at least 16 bits. Otherwise, the address calculation in
113 * va_start() will fail.
114 */
115typedef char _far *va_list;
116#define va_start(va, last) va = (va_list) (&last + 1)
117#define va_arg(va, type) ((type _far *) (va += sizeof(type)))[-1]
118#define va_end(va) va = 0
119
120/* ctype macros */
121#define isupper(ch) ((ch) >= 'A' && (ch) <= 'Z')
122#define tolower(ch) (isupper(ch) ? (ch) + ('a' - 'A') : (ch))
123
124/* stddef macros */
125#define offsetof(s, e) ((u16) &((s *) 0)->e)
126
127/* SMP spinlock compatibility macros for older DDKs using CLI/STI */
128#ifndef OS2AHCI_SMP
129#define DevHelp_CreateSpinLock(p_sph) *(p_sph) = 0
130#define DevHelp_FreeSpinLock(sph) 0
131
132#define DevHelp_AquireSpinLock(sph) if ((sph) != 0) \
133 panic("recursive spinlock"); \
134 (sph) = disable()
135
136#define DevHelp_ReleaseSpinLock(sph) if (sph) { \
137 (sph) = 0; \
138 enable(); \
139 }
140#endif
141
142/* shortcut macros */
143#define spin_lock(sl) DevHelp_AquireSpinLock(sl)
144#define spin_unlock(sl) DevHelp_ReleaseSpinLock(sl)
145
146/* Get AHCI port MMIO base from AD_INFO and port number. For the time being,
147 * MMIO addresses are assumed to be valid 16:16 pointers which implies
148 * that one GDT selector is allocated per adapter.
149 */
150#define port_base(ai, p) ((u8 _far *) (ai)->mmio + 0x100 + (p) * 0x80)
151
152/* Get address of port-specific DMA scratch buffer. The total size of all DMA
153 * buffers required for 32 ports exceeds 65536 bytes, thus we need multiple
154 * GDT selectors to access all port DMA scratch buffers and some logic to map
155 * a port number to the corresponding DMA scratch buffer address.
156 */
157#define PORT_DMA_BUFS_PER_SEG ((size_t) (65536UL / AHCI_PORT_PRIV_DMA_SZ))
158#define PORT_DMA_BUF_SEGS ((AHCI_MAX_PORTS + PORT_DMA_BUFS_PER_SEG - 1) \
159 / PORT_DMA_BUFS_PER_SEG)
160#define PORT_DMA_SEG_SIZE ((u32) PORT_DMA_BUFS_PER_SEG * \
161 (u32) AHCI_PORT_PRIV_DMA_SZ)
162
163#define port_dma_base(ai, p) \
164 ((AHCI_PORT_DMA _far *) ((ai)->dma_buf[(p) / PORT_DMA_BUFS_PER_SEG] + \
165 ((p) % PORT_DMA_BUFS_PER_SEG) * AHCI_PORT_PRIV_DMA_SZ))
166
167#define port_dma_base_phys(ai, p) \
168 ((ai)->dma_buf_phys + (u32) (p) * AHCI_PORT_PRIV_DMA_SZ)
169
170/* Convert an SATA adapter/port/device address into a 16-bit IORB unit handle
171 * (and the other way round). The mapping looks like this:
172 *
173 * mapping comment
174 * -----------------------------------------------------------------------
175 * 4 bits for the adapter current max is 8 adapters
176 * 4 bits for the port AHCI spec defines up to 32 ports
177 * 4 bits for the device SATA spec defines up to 15 devices behind PMP
178 */
179#define iorb_unit(a, p, d) ((((u16) (a) & 0x0fU) << 8) | \
180 (((u16) (p) & 0x0fU) << 4) | \
181 (((u16) (d) & 0x0fU)))
182#define iorb_unit_adapter(iorb) (((u16) (iorb)->UnitHandle >> 8) & 0x07U)
183#define iorb_unit_port(iorb) (((u16) (iorb)->UnitHandle >> 4) & 0x0fU)
184#define iorb_unit_device(iorb) ((u16) (iorb)->UnitHandle & 0x0fU)
185
186/*******************************************************************************
187 * Convenience macros for IORB processing functions
188 */
189/* is this IORB on driver or port level? */
190#define iorb_driver_level(iorb) ((iorb)->CommandCode == IOCC_CONFIGURATION)
191
192/* is this IORB to be inserted at the beginnig of the IORB queue? */
193#define iorb_priority(iorb) ((iorb)->CommandCode == IOCC_DEVICE_CONTROL && \
194 (iorb)->CommandModifier == IOCM_ABORT))
195
196/* access IORB ADD workspace */
197#define add_workspace(iorb) ((ADD_WORKSPACE _far *) &(iorb)->ADDWorkSpace)
198
199
200
201/******************************************************************************
202 * PCI generic IDs and macros
203 */
204#define PCI_ANY_ID 0xffffU
205#define PCI_VDEVICE(vendor, device) PCI_VENDOR_ID_##vendor, (device), \
206 PCI_ANY_ID, PCI_ANY_ID, 0, 0
207
208/******************************************************************************
209 * PCI vendor IDs for AHCI adapters known to this driver (copied from Linux
210 * pci_ids.h)
211 */
212#define PCI_VENDOR_ID_AL 0x10b9
213#define PCI_VENDOR_ID_AMD 0x1022
214#define PCI_VENDOR_ID_AT 0x1259
215#define PCI_VENDOR_ID_ATI 0x1002
216#define PCI_VENDOR_ID_ATT 0x11c1
217#define PCI_VENDOR_ID_CMD 0x1095
218#define PCI_VENDOR_ID_CT 0x102c
219#define PCI_VENDOR_ID_INTEL 0x8086
220#define PCI_VENDOR_ID_INITIO 0x1101
221#define PCI_VENDOR_ID_JMICRON 0x197B
222#define PCI_VENDOR_ID_MARVELL 0x11ab
223#define PCI_VENDOR_ID_NVIDIA 0x10de
224#define PCI_VENDOR_ID_PROMISE 0x105a
225#define PCI_VENDOR_ID_SI 0x1039
226#define PCI_VENDOR_ID_VIA 0x1106
227
228/******************************************************************************
229 * PCI class IDs we're interested in (copied from Linux pci_ids.h)
230 */
231#define PCI_BASE_CLASS_STORAGE 0x01
232#define PCI_CLASS_STORAGE_SCSI 0x0100
233#define PCI_CLASS_STORAGE_IDE 0x0101
234#define PCI_CLASS_STORAGE_FLOPPY 0x0102
235#define PCI_CLASS_STORAGE_IPI 0x0103
236#define PCI_CLASS_STORAGE_RAID 0x0104
237#define PCI_CLASS_STORAGE_SATA 0x0106
238#define PCI_CLASS_STORAGE_SATA_AHCI 0x010601
239#define PCI_CLASS_STORAGE_SAS 0x0107
240#define PCI_CLASS_STORAGE_OTHER 0x0180
241
242/******************************************************************************
243 * ANSI color code constants
244 */
245#define ANSI_CLR_BRIGHT "\x1b[1m"
246#define ANSI_CLR_RED "\x1b[31m"
247#define ANSI_CLR_GREEN "\x1b[32m"
248#define ANSI_CLR_BLUE "\x1b[34m"
249#define ANSI_CLR_CYAN "\x1b[36m"
250#define ANSI_CLR_WHITE "\x1b[37m"
251#define ANSI_RESET "\x1b[0m"
252
253/******************************************************************************
254 * trace constants
255 */
256#define AHCI_TRACE_MAJOR 0x00faU
257#define TRACE_MINOR_ATA_IDENTIFY 0x0020
258#define TRACE_MINOR_EXEC_CDB 0x0021
259#define TRACE_MINOR_EXEC_ATA 0x0022
260#define TRACE_MINOR_ATA_CMD 0x0023
261#define TRACE_MINOR_ATAPI_CMD 0x0024
262#define TRACE_MINOR_SG_LIST 0x0025
263#define TRACE_MINOR_SENSE_BUF 0x0026
264#define TRACE_MINOR_OEMHLP_PARM 0x0027
265#define TRACE_MINOR_OEMHLP_DATA 0x0028
266#define TRACE_MINOR_CMD_HDR 0x0029
267
268
269
270/* ------------------------ typedefs and structures ------------------------ */
271
272typedef unsigned int size_t;
273
274/* PCI device information structure; this is used both for scanning and for
275 * identification purposes in 'AD_INFO'; based on the Linux pci_device_id
276 * structure but hard-wired to use board_* constants for 'driver_data'
277 */
278typedef struct {
279 u16 vendor; /* PCI device vendor/manufacturer */
280 u16 device; /* PCI device ID inside vendor scope */
281 u16 subvendor; /* subsystem vendor (unused so far) */
282 u16 subdevice; /* subsystem device (unused so far) */
283 u32 class; /* PCI device class */
284 u32 class_mask; /* bits to match when scanning for 'class' */
285 u32 board; /* AHCI controller board type (board_* constants) */
286 char *chipname; /* human readable chip ID string */
287} PCI_ID;
288
289/* IORB queue; since IORB queues are updated at interrupt time, the
290 * corresponding pointers (not the data they point to) need to be volatile.
291 */
292typedef struct {
293 IORBH _far *volatile root; /* root of request list */
294 IORBH _far *volatile tail; /* tail of request list */
295} IORB_QUEUE;
296
297/* port information structure */
298typedef struct {
299 IORB_QUEUE iorb_queue; /* IORB queue for this port */
300 unsigned dev_max : 4; /* maximum device number on this port (0-15) */
301 unsigned cmd_slot : 5; /* current command slot index (using round-
302 * robin indexes to prevent starvation) */
303
304 volatile u32 ncq_cmds; /* bitmap for NCQ commands issued */
305 volatile u32 reg_cmds; /* bitmap for regular commands issued */
306
307 struct {
308 unsigned allocated : 1; /* if != 0, device is allocated */
309 unsigned present : 1; /* if != 0, device is present */
310 unsigned lba48 : 1; /* if != 0, device supports 48-bit LBA */
311 unsigned atapi : 1; /* if != 0, this is an ATAPI device */
312 unsigned atapi_16 : 1; /* if != 0, device suports 16-byte cmds */
313 unsigned removable : 1; /* if != 0, device has removable media */
314 unsigned dev_type : 5; /* device type (UIB_TYPE_* in iorb.h) */
315 unsigned ncq_max : 5; /* maximum tag number for queued commands */
316 UNITINFO _far *unit_info; /* pointer to modified unit info */
317 } devs[15];
318} P_INFO;
319
320/* adapter information structure */
321typedef struct {
322 PCI_ID *pci; /* pointer to corresponding PCI ID */
323
324 unsigned port_max : 5; /* maximum port number (0-31) */
325 unsigned cmd_max : 5; /* maximum cmd slot number (0-31) */
326 unsigned port_scan_done : 1; /* if != 0, port scan already done */
327 unsigned busy : 1; /* if != 0, adapter is busy */
328
329 u32 port_map; /* bitmap of active ports */
330
331 /* initial adapter configuration from BIOS */
332 u32 bios_config[HOST_CAP2 / sizeof(u32) + 1];
333
334 u32 cap; /* working copy of CAP register */
335 u32 cap2; /* working copy of CAP2 register */
336 u32 flags; /* adapter flags */
337
338 HRESOURCE rm_adh; /* resource handle for adapter */
339 HRESOURCE rm_bars[6]; /* resource handle for MMIO and I/O BARs */
340 HRESOURCE rm_irq; /* resource handle for IRQ */
341
342 u8 bus; /* PCI bus number */
343 u8 dev_func; /* PCI device and function number */
344 u16 irq; /* interrupt number */
345
346 u32 mmio_phys; /* physical address of MMIO region */
347 u32 mmio_size; /* size of MMIO region */
348 u8 _far *mmio; /* pointer to this adapter's MMIO region */
349
350 u32 dma_buf_phys; /* physical address of DMA scratch buffer */
351 u8 _far *dma_buf[PORT_DMA_BUF_SEGS]; /* DMA scatch buffer */
352
353 P_INFO ports[AHCI_MAX_PORTS]; /* SATA ports on this adapter */
354} AD_INFO;
355
356/* ADD workspace in IORB (must not exceed 16 bytes) */
357typedef struct {
358 void (*ppfunc)(IORBH _far *iorb); /* post-processing function */
359 void *buf; /* response buffer (e.g. for identify cmds) */
360 ULONG timer; /* timer for timeout procesing */
361 USHORT blocks; /* number of blocks to be transferred */
362 unsigned processing : 1; /* IORB is being processd */
363 unsigned idempotent : 1; /* IORB is idempotent (can be retried) */
364 unsigned queued_hw : 1; /* IORB has been queued to hardware */
365 unsigned no_ncq : 1; /* must not use native command queuing */
366 unsigned is_ncq : 1; /* should use native command queueing */
367 unsigned complete : 1; /* IORB has completed processing */
368 unsigned unaligned : 1; /* unaligned S/G; need to use transfer buffer */
369 unsigned cmd_slot : 5; /* AHCI command slot for this IORB */
370} ADD_WORKSPACE;
371
372/* sg_memcpy() direction */
373typedef enum {
374 SG_TO_BUF, /* copy from S/G list to buffer */
375 BUF_TO_SG /* copy from buffer to S/G list */
376} SG_MEMCPY_DIRECTION;
377
378/* -------------------------- function prototypes -------------------------- */
379
380/* init.asm */
381extern u32 _cdecl readl (void _far *addr);
382extern u32 _cdecl writel (void _far *addr, u32 val);
383extern void _far * _cdecl memcpy (void _far *v_dst, void _far *v_src, int len);
384extern void _far * _cdecl memset (void _far *p, int ch, size_t len);
385extern void _cdecl _far restart_hook (void);
386extern void _cdecl _far reset_hook (void);
387extern void _cdecl _far engine_hook (void);
388
389/* os2ahci.c */
390extern USHORT init_drv (RPINITIN _far *req);
391extern USHORT gen_ioctl (RP_GENIOCTL _far *ioctl);
392extern USHORT exit_drv (int func);
393extern void _cdecl _far _loadds add_entry (IORBH _far *iorb);
394extern void trigger_engine (void);
395extern int trigger_engine_1 (void);
396extern void send_iorb (IORBH _far *iorb);
397extern void iocc_configuration (IORBH _far *iorb);
398extern void iocc_device_control (IORBH _far *iorb);
399extern void iocc_unit_control (IORBH _far *iorb);
400extern void iocm_device_table (IORBH _far *iorb);
401extern void iocc_geometry (IORBH _far *iorb);
402extern void iocc_execute_io (IORBH _far *iorb);
403extern void iocc_unit_status (IORBH _far *iorb);
404extern void iocc_adapter_passthru (IORBH _far *iorb);
405extern void iorb_queue_add (IORB_QUEUE _far *queue, IORBH _far *iorb);
406extern int iorb_queue_del (IORB_QUEUE _far *queue, IORBH _far *iorb);
407extern void iorb_seterr (IORBH _far *iorb, USHORT error_code);
408extern void iorb_done (IORBH _far *iorb);
409extern void iorb_complete (IORBH _far *iorb);
410extern void iorb_requeue (IORBH _far *iorb);
411extern void aws_free (ADD_WORKSPACE _far *aws);
412extern void lock_adapter (AD_INFO *ai);
413extern void unlock_adapter (AD_INFO *ai);
414extern void _cdecl _far timeout_callback (ULONG timer_handle, ULONG p1, ULONG p2);
415extern void _cdecl _far reset_watchdog (ULONG timer_handle, ULONG p1, ULONG p2);
416
417/* ahci.c */
418extern int ahci_save_bios_config (AD_INFO *ai);
419extern int ahci_restore_bios_config (AD_INFO *ai);
420extern int ahci_restore_initial_config (AD_INFO *ai);
421extern AHCI_PORT_CFG *ahci_save_port_config (AD_INFO *ai, int p);
422extern void ahci_restore_port_config (AD_INFO *ai, int p,
423 AHCI_PORT_CFG *pc);
424extern int ahci_enable_ahci (AD_INFO *ai);
425extern int ahci_scan_ports (AD_INFO *ai);
426extern int ahci_complete_init (AD_INFO *ai);
427extern int ahci_reset_port (AD_INFO *ai, int p, int ei);
428extern int ahci_start_port (AD_INFO *ai, int p, int ei);
429extern void ahci_start_fis_rx (AD_INFO *ai, int p);
430extern void ahci_start_engine (AD_INFO *ai, int p);
431extern int ahci_stop_port (AD_INFO *ai, int p);
432extern int ahci_stop_fis_rx (AD_INFO *ai, int p);
433extern int ahci_stop_engine (AD_INFO *ai, int p);
434extern int ahci_port_busy (AD_INFO *ai, int p);
435extern void ahci_exec_iorb (IORBH _far *iorb, int ncq_capable,
436 int (*func)(IORBH _far *, int));
437extern void ahci_exec_polled_iorb (IORBH _far *iorb,
438 int (*func)(IORBH _far *, int),
439 ULONG timeout);
440extern int ahci_exec_polled_cmd (AD_INFO *ai, int p, int d,
441 int timeout, int cmd, ...);
442extern int ahci_set_dev_idle (AD_INFO *ai, int p, int d, int idle);
443extern int ahci_flush_cache (AD_INFO *ai, int p, int d);
444
445extern int ahci_intr (u16 irq);
446extern void ahci_port_intr (AD_INFO *ai, int p);
447extern void ahci_error_intr (AD_INFO *ai, int p, u32 irq_stat);
448
449extern void ahci_get_geometry (IORBH _far *iorb);
450extern void ahci_unit_ready (IORBH _far *iorb);
451extern void ahci_read (IORBH _far *iorb);
452extern void ahci_verify (IORBH _far *iorb);
453extern void ahci_write (IORBH _far *iorb);
454extern void ahci_execute_cdb (IORBH _far *iorb);
455extern void ahci_execute_ata (IORBH _far *iorb);
456
457/* libc.c */
458extern void init_libc (void);
459extern void init_com (void);
460extern int vsprintf (char _far *buf, const char *fmt, va_list va);
461extern int sprintf (char _far *buf, const char *fmt, ...);
462extern void vfprintf (const char *fmt, va_list va);
463extern void _cdecl printf (const char *fmt, ...);
464extern void cprintf (const char *fmt, ...);
465extern void phex (const void _far *p, int len,
466 u16 trace_minor_code, const char *fmt, ...);
467extern size_t strlen (const char _far *s);
468extern char _far *strcpy (char _far *dst, const char _far *src);
469extern int memcmp (void _far *p1, void _far *p2, size_t len);
470extern void sg_memcpy (SCATGATENTRY _far *sg_list, USHORT sg_cnt,
471 ULONG sg_off, void _far *buf, USHORT len,
472 SG_MEMCPY_DIRECTION dir);
473extern long strtol (const char _far *buf,
474 const char _far * _far *ep, int base);
475extern void *malloc (size_t len);
476extern void free (void *ptr);
477extern ULONG virt_to_phys (void _far *ptr);
478extern void mdelay_cal (void);
479extern void mdelay (u32 millies);
480extern void msleep (u32 millies);
481extern void panic (char *msg);
482extern int disable (void);
483extern void enable (void);
484extern void trace (u16 minor_code, u16 cb_buf,
485 const char _far *buf);
486
487/* pci.c */
488extern int add_pci_id (u16 vendor, u16 device);
489extern void scan_pci_bus (void);
490extern int pci_enable_int (UCHAR bus, UCHAR dev_func);
491extern void pci_hack_virtualbox(void);
492extern char *vendor_from_id (u16 vendor);
493extern char *device_from_id (u16 device);
494
495/* ctxhook.c */
496extern void _cdecl restart_ctxhook (ULONG parm);
497extern void _cdecl reset_ctxhook (ULONG parm);
498extern void _cdecl engine_ctxhook (ULONG parm);
499
500/* apm.c */
501extern void apm_init (void);
502extern void apm_suspend (void);
503extern void apm_resume (void);
504
505/* ioctl.c */
506extern USHORT ioctl_get_devlist (RP_GENIOCTL _far *ioctl);
507extern USHORT ioctl_passthrough (RP_GENIOCTL _far *ioctl);
508
509
510/* ---------------------------- global variables --------------------------- */
511
512extern char _cdecl end_of_data; /* label at the end of all data segments */
513extern void _cdecl _near end_of_code(); /* label at the end of all code segments */
514
515extern int debug; /* if != 0, print debug messages to COM1 */
516extern int thorough_scan; /* if != 0, perform thorough PCI scan */
517extern int init_reset; /* if != 0, reset ports during init */
518extern int verbosity; /* if != 0, show some info during boot */
519
520extern HDRIVER rm_drvh; /* resource manager driver handle */
521extern USHORT add_handle; /* adapter device driver handle */
522extern UCHAR timer_pool[]; /* timer pool */
523
524extern PCI_ID pci_ids[]; /* SATA adapter PCI IDs */
525extern ULONG drv_lock; /* driver-level spinlock */
526extern IORB_QUEUE driver_queue; /* driver-level IORB queue */
527extern AD_INFO ad_infos[]; /* adapter information list */
528extern int ad_info_cnt; /* number of entries in ad_infos[] */
529extern u16 ad_ignore; /* bitmap with adapters to be ignored */
530extern int init_complete; /* if != 0, initialization has completed */
531
532extern u16 com_base; /* debug COM port base address */
533
534/* port restart context hook and input data */
535extern ULONG restart_ctxhook_h;
536extern volatile u32 ports_to_restart[MAX_AD];
537
538/* port reset context hook and input data */
539extern ULONG reset_ctxhook_h;
540extern ULONG th_reset_watchdog;
541extern volatile u32 ports_to_reset[MAX_AD];
542extern IORB_QUEUE abort_queue;
543
544/* trigger engine context hook and input data */
545extern ULONG engine_ctxhook_h;
546
547/* apapter/port-specific options saved when parsing the command line */
548extern u8 emulate_scsi[MAX_AD][AHCI_MAX_PORTS];
549extern u8 enable_ncq[MAX_AD][AHCI_MAX_PORTS];
550extern u8 link_speed[MAX_AD][AHCI_MAX_PORTS];
551extern u8 link_power[MAX_AD][AHCI_MAX_PORTS];
552extern u8 track_size[MAX_AD][AHCI_MAX_PORTS];
553
Note: See TracBrowser for help on using the repository browser.