Changeset 112
- Timestamp:
- Jul 6, 2011, 10:02:47 AM (14 years ago)
- Location:
- trunk/src/os2ahci
- Files:
-
- 11 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/src/os2ahci/Makefile ¶
r111 r112 73 73 74 74 SRCS = init.asm libc.c os2ahci.c pci.c ahci.c ata.c atapi.c ctxhook.c \ 75 apm.c ioctl.c 75 apm.c ioctl.c trace.c 76 76 77 77 OBJS = init.obj libc.obj os2ahci.obj pci.obj ahci.obj ata.obj atapi.obj \ 78 ctxhook.obj apm.obj ioctl.obj 78 ctxhook.obj apm.obj ioctl.obj trace.obj 79 79 80 80 INCS = os2ahci.h ahci.h version.h … … 84 84 85 85 clean: 86 rm -f $(OBJS) $(TARGET) 86 rm -f $(OBJS) $(TARGET) *.cod *.lst 87 87 88 88 … … 109 109 110 110 ioctl.obj: ioctl.c Makefile $(INCS) atapi.h ioctl.h 111 112 trace.obj: trace.c Makefile $(INCS) 111 113 112 114 os2ahci.def: version.h os2ahci.def.template -
TabularUnified trunk/src/os2ahci/ahci.c ¶
r111 r112 542 542 if (rc == 0) { 543 543 /* we have a valid IDENTIFY or IDENTIFY_PACKET response */ 544 ddphex(id_buf, 512, TRACE_MINOR_ATA_IDENTIFY, 545 "ATA_IDENTIFY%s results:\n", (is_ata) ? "" : "_PACKET"); 544 ddphex(id_buf, 512, "ATA_IDENTIFY%s results:\n", (is_ata) ? "" : "_PACKET"); 546 545 ahci_setup_device(ai, p, 0, id_buf); 547 546 } else { … … 922 921 * Determine whether a port is busy executing commands. 923 922 */ 924 ahci_port_busy(AD_INFO *ai, int p)923 int ahci_port_busy(AD_INFO *ai, int p) 925 924 { 926 925 u8 _far *port_mmio = port_base(ai, p); … … 1239 1238 AP_END)); 1240 1239 } 1240 return 0; 1241 1241 } 1242 1242 … … 1551 1551 dphex(((IORB_ADAPTER_PASSTHRU _far *) iorb)->pControllerCmd, 1552 1552 ((IORB_ADAPTER_PASSTHRU _far *) iorb)->ControllerCmdLen, 1553 TRACE_MINOR_EXEC_CDB,"ahci_execute_cdb(%d.%d.%d): ", a, p, d);1553 "ahci_execute_cdb(%d.%d.%d): ", a, p, d); 1554 1554 1555 1555 if (ad_infos[a].ports[p].devs[d].atapi) { … … 1573 1573 dphex(((IORB_ADAPTER_PASSTHRU _far *) iorb)->pControllerCmd, 1574 1574 ((IORB_ADAPTER_PASSTHRU _far *) iorb)->ControllerCmdLen, 1575 TRACE_MINOR_EXEC_ATA,"ahci_execute_ata(%d.%d.%d): ", a, p, d);1575 "ahci_execute_ata(%d.%d.%d): ", a, p, d); 1576 1576 1577 1577 ahci_exec_iorb(iorb, 0, ata_execute_ata); -
TabularUnified trunk/src/os2ahci/ata.c ¶
r111 r112 279 279 if (debug >= 2) { 280 280 printf("ATA command for %d.%d.%d:\n", ad_no(ai), p, d); 281 phex(cmd_hdr, offsetof(AHCI_CMD_HDR, reserved), 282 TRACE_MINOR_CMD_HDR, "cmd_hdr: "); 283 phex(&ata_cmd, sizeof(ata_cmd), TRACE_MINOR_ATA_CMD, "ata_cmd: "); 281 phex(cmd_hdr, offsetof(AHCI_CMD_HDR, reserved), "cmd_hdr: "); 282 phex(&ata_cmd, sizeof(ata_cmd), "ata_cmd: "); 284 283 if (atapi_cmd != NULL) { 285 phex(atapi_cmd, atapi_cmd_len, TRACE_MINOR_ATAPI_CMD,"atapi_cmd: ");284 phex(atapi_cmd, atapi_cmd_len, "atapi_cmd: "); 286 285 } 287 286 if (n > 0) { 288 phex(cmd_tbl->sg_list, sizeof(*cmd_tbl->sg_list) * n, 289 TRACE_MINOR_SG_LIST, "sg_list: "); 287 phex(cmd_tbl->sg_list, sizeof(*cmd_tbl->sg_list) * n, "sg_list: "); 290 288 } 291 289 } -
TabularUnified trunk/src/os2ahci/atapi.c ¶
r111 r112 162 162 cdb.cmd = ATAPI_CMD_READ_12; 163 163 SET_CDB_32(cdb.lba, io->RBA + io->BlocksXferred); 164 SET_CDB_32(cdb.trans_len, 1 );164 SET_CDB_32(cdb.trans_len, 1UL); 165 165 166 166 /* allocate transfer buffer */ … … 340 340 ATAPI_SENSE_DATA *psd = (ATAPI_SENSE_DATA *) aws->buf; 341 341 342 dphex(psd, sizeof(*psd), TRACE_MINOR_SENSE_BUF,"sense buffer:\n");342 dphex(psd, sizeof(*psd), "sense buffer:\n"); 343 343 344 344 if ((iorb->RequestControl & IORB_REQ_STATUSBLOCK) && … … 443 443 tmp = GET_CDB_24(cmd_in + 1) & 0x1fffffUL; 444 444 SET_CDB_32(p12->lba, tmp); 445 SET_CDB_32(p12->trans_len, cmd_in[4]);445 SET_CDB_32(p12->trans_len, (u32)(cmd_in[4])); 446 446 p12->control = cmd_in[5]; 447 447 break; -
TabularUnified trunk/src/os2ahci/atapi.h ¶
r110 r112 33 33 * macros to fill in ATAPI CDB values 34 34 */ 35 #define SET_CDB_16(_t, _v) (_t)[0] = (u8) ((_v) >> 8); 35 #define SET_CDB_16(_t, _v) (_t)[0] = (u8) ((_v) >> 8); \ 36 36 (_t)[1] = (u8) (_v) 37 #define SET_CDB_24(_t, _v) (_t)[0] = (u8) ((_v) >> 16) ;\38 (_t)[1] = (u8) ((_v) >> 8); 37 #define SET_CDB_24(_t, _v) (_t)[0] = (u8) ((_v) >> 16) \ 38 (_t)[1] = (u8) ((_v) >> 8); \ 39 39 (_t)[2] = (u8) (_v) 40 #define SET_CDB_32(_t, _v) (_t)[0] = (u8) ((_v) >> 24); 41 (_t)[1] = (u8) ((_v) >> 16); 42 (_t)[2] = (u8) ((_v) >> 8); 40 #define SET_CDB_32(_t, _v) (_t)[0] = (u8) ((_v) >> 24);\ 41 (_t)[1] = (u8) ((_v) >> 16);\ 42 (_t)[2] = (u8) ((_v) >> 8); \ 43 43 (_t)[3] = (u8) (_v) 44 44 -
TabularUnified trunk/src/os2ahci/libc.c ¶
r111 r112 58 58 ULONG parm2); 59 59 static int mdelay_cal_end (void); 60 static int trace_enabled (void);61 60 62 61 /* ------------------------ global/static variables ------------------------ */ … … 67 66 static char hex_digits[] = "0123456789abcdef"; 68 67 static ULONG mem_lock; 69 staticULONG com_lock;68 ULONG com_lock; 70 69 71 70 /* message table for DosHelp_Save_Message() which prints the first string */ … … 283 282 284 283 if (com_base == 0) { 285 /* write debug message to trace buffer, not COM port */286 trace(debug, len, buf);287 spin_unlock(com_lock);288 return;289 }284 /* write debug message to trace buffer, not COM port */ 285 trace_write(buf, len); 286 spin_unlock(com_lock); 287 return; 288 } 290 289 291 290 /* write debug message to serial port */ … … 367 366 * Print hex buffer to COM port. 368 367 */ 369 void phex(const void _far *p, int len, u16 trace_minor_code,const char *fmt, ...)368 void phex(const void _far *p, int len, const char *fmt, ...) 370 369 { 371 370 va_list va; … … 374 373 375 374 if (!debug) { 376 return;377 }378 379 if (!com_base) {380 /* dump to kernel trace buffer, not serial port;381 * just dump the buffer, it is formatted by TRACEFMT382 *383 * NOTE: writing the header to the trace buffer causes384 * the trace facility to hick up and swallow the385 * binary data that follows...386 */387 trace(trace_minor_code, len, buf);388 375 return; 389 376 } … … 866 853 } 867 854 868 /******************************************************************************869 * is_trace_enabled - checks if kernel tracing is enabled870 */871 int is_trace_enabled(void)872 {873 int ret = 1; /* if global info seg is not present/known,874 * we enable tracing for now */875 876 /* check global info segment's trace enabled bitmap if our877 * major trace code is enabled878 */879 if (gis) {880 u8 trace_bitmap = gis->amecRAS[AHCI_TRACE_MAJOR / 8];881 if (trace_bitmap & (0x80 >> (AHCI_TRACE_MAJOR % 8))) {882 ret = 1;883 } else {884 ret = 0;885 }886 }887 888 return ret;889 }890 891 /******************************************************************************892 * trace - write a buffer to the kernel trace buffer893 */894 void trace(u16 minor_code, u16 cb_buf, const char _far *buf)895 {896 if (!is_trace_enabled()) {897 return;898 }899 900 DevHelp_RAS(AHCI_TRACE_MAJOR, minor_code, cb_buf, (PBYTE) buf);901 }902 -
TabularUnified trunk/src/os2ahci/os2ahci.c ¶
r111 r112 140 140 break; 141 141 142 case CMDINPUT: 143 rc = char_dev_input((RP_RWV _far *) req); 144 break; 145 142 146 default: 143 147 rc = STDON | STATUS_ERR_UNKCMD; … … 313 317 } 314 318 319 /* initialize trace buffer if applicable */ 320 if (TRACE_ACTIVE) { 321 /* debug is on, but COM port is off -> use our trace buffer */ 322 trace_init(); 323 } 324 315 325 /* scan PCI bus for supported devices */ 316 326 scan_pci_bus(); … … 383 393 384 394 } 395 } 396 return(STDON | STATUS_ERR_UNKCMD); 397 } 398 399 /****************************************************************************** 400 * Read from character device. If tracing is on (internal ring buffer trace), 401 * we return data from the trace buffer; if not, we might return a device 402 * dump similar to IBM1S506.ADD/DANIS506.ADD (TODO). 403 */ 404 USHORT char_dev_input(RP_RWV _far *rwrb) 405 { 406 if (TRACE_ACTIVE) { 407 return(trace_char_dev(rwrb)); 385 408 } 386 409 return(STDON | STATUS_ERR_UNKCMD); -
TabularUnified trunk/src/os2ahci/os2ahci.h ¶
r111 r112 94 94 #define dddprintf if (debug > 2) printf 95 95 #define dddphex if (debug > 2) phex 96 97 /* TRACE macros (for our internal ring buffer trace) */ 98 #define TRACE_ACTIVE (debug > 0 && com_base == 0) 96 99 97 100 /* adapter number from AD_INFO pointer; mainly for dprintf() purposes */ … … 251 254 #define ANSI_RESET "\x1b[0m" 252 255 253 /******************************************************************************254 * trace constants255 */256 #define AHCI_TRACE_MAJOR 0x00faU257 #define TRACE_MINOR_ATA_IDENTIFY 0x0020258 #define TRACE_MINOR_EXEC_CDB 0x0021259 #define TRACE_MINOR_EXEC_ATA 0x0022260 #define TRACE_MINOR_ATA_CMD 0x0023261 #define TRACE_MINOR_ATAPI_CMD 0x0024262 #define TRACE_MINOR_SG_LIST 0x0025263 #define TRACE_MINOR_SENSE_BUF 0x0026264 #define TRACE_MINOR_OEMHLP_PARM 0x0027265 #define TRACE_MINOR_OEMHLP_DATA 0x0028266 #define TRACE_MINOR_CMD_HDR 0x0029267 268 269 256 270 257 /* ------------------------ typedefs and structures ------------------------ */ … … 390 377 extern USHORT init_drv (RPINITIN _far *req); 391 378 extern USHORT gen_ioctl (RP_GENIOCTL _far *ioctl); 379 extern USHORT char_dev_input (RP_RWV _far *rwrb); 392 380 extern USHORT exit_drv (int func); 393 381 extern void _cdecl _far _loadds add_entry (IORBH _far *iorb); … … 463 451 extern void _cdecl printf (const char *fmt, ...); 464 452 extern void cprintf (const char *fmt, ...); 465 extern void phex (const void _far *p, int len, 466 u16 trace_minor_code, const char *fmt, ...); 453 extern void phex (const void _far *p, int len, const char *fmt, ...); 467 454 extern size_t strlen (const char _far *s); 468 455 extern char _far *strcpy (char _far *dst, const char _far *src); … … 482 469 extern int disable (void); 483 470 extern void enable (void); 484 extern void trace (u16 minor_code, u16 cb_buf, 485 const char _far *buf); 471 472 /* trace.c */ 473 extern void trace_init (void); 474 extern void trace_exit (void); 475 extern void trace_write (u8 _far *s, int len); 476 extern u16 trace_read (void _far *buf, u16 cb_buf); 477 extern u16 trace_bytes_avail(void); 478 extern u16 trace_char_dev(RP_RWV _far *rwrb); 486 479 487 480 /* pci.c */ … … 524 517 extern PCI_ID pci_ids[]; /* SATA adapter PCI IDs */ 525 518 extern ULONG drv_lock; /* driver-level spinlock */ 519 extern ULONG com_lock; /* debug log spinlock */ 526 520 extern IORB_QUEUE driver_queue; /* driver-level IORB queue */ 527 521 extern AD_INFO ad_infos[]; /* adapter information list */ -
TabularUnified trunk/src/os2ahci/pci.c ¶
r111 r112 183 183 184 184 static char s_generic[] = "Generic"; 185 186 /******************************************************************************187 * other strings188 */189 static char s_already_claimed[] = "Warning: device already claimed by another driver.\n";190 185 191 186 … … 937 932 } 938 933 939 dddphex(parm, sizeof(*parm), TRACE_MINOR_OEMHLP_PARM,"oemhlp_parm: ");940 dddphex(data, sizeof(*data), TRACE_MINOR_OEMHLP_DATA,"oemhlp_data: ");934 dddphex(parm, sizeof(*parm), "oemhlp_parm: "); 935 dddphex(data, sizeof(*data), "oemhlp_data: "); 941 936 942 937 if (ioctl.rph.Status & STERR) { -
TabularUnified trunk/src/os2ahci/version.h ¶
r111 r112 14 14 15 15 16 #define VERSION 11 6/* driver version (2 implied decimals) */16 #define VERSION 117 /* driver version (2 implied decimals) */ 17 17 -
TabularUnified trunk/src/os2ahci/wmakefile ¶
r43 r112 3 3 # 4 4 # Copyright (c) 2010 Christian Mueller, Markus Thielen. 5 # Parts copied from/inspired by the Linux AHCI driver; 5 # Parts copied from/inspired by the Linux AHCI driver; 6 6 # those parts are (c) Linux AHCI/ATA maintainers 7 7 # … … 19 19 # along with this program; if not, write to the Free Software 20 20 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 21 22 ############################################################################### 23 # Calling Syntax 24 # 25 # wmake -ms -f wmakefile 26 # 27 # NOTE: we use MS compatibility mode (-ms) so we can use a syntax similar 28 # to the well known nmake syntax. 29 # 30 31 # 32 # THE WATCOM BUILD IS BROKEN! 33 # 34 # It might run through but produces a non-working driver 35 # 36 37 ############################################################################### 38 # wmake directives 39 .HOLD # do not prompt for deletion of created files on error; leave them alone 40 21 41 22 42 … … 38 58 -I$(DDK)\base\ibmh \ 39 59 -I$(DDK)\base\src\dev\dasd\diskh \ 40 -I$(WATCOM)\h 60 -I$(DDK)\base\src\dev\thinkpad\dockii\apmcalls \ 61 -I$(CC16)\include 41 62 42 63 AS_INCLUDE = -I:$(DDK)\base\inc \ … … 45 66 LIB_DIRS = $(DDK)\base\lib\ \ 46 67 $(DDK)\base\src\dev\dasd\devhlp\ \ 47 68 $(DDK)\base\src\dev\thinkpad\dockii\apmcalls\ \ 48 69 49 70 ############################################################################### 50 71 # Tool Chain 51 72 # 52 # This makefile uses the Watcom 16bit compiler. 73 # This makefile uses the Watcom 16bit compiler. 53 74 # Linker and assembler are link.exe and alp.exe that ship with the OS/2 DDK 54 75 # … … 62 83 63 84 AFLAGS = -Mb 64 CFLAGS = -d3 -hc -bt=os2 -ms -zu -5 -w 2 -wcd=138-zp1 -q -s -zgp -zfp -oi85 CFLAGS = -d3 -hc -bt=os2 -ms -zu -5 -w3 -wcd=138 -wcd=300 -ecc -zp1 -q -s -zgp -zfp -oi 65 86 CFLAGS_DEBUG = -d3 -hc 66 LFLAGS = /noe /nod /packd /a:16 /batch /map /line 87 LFLAGS = /noe /nod /packd /a:16 /batch /map /line 67 88 68 89 ############################################################################### … … 71 92 TARGET = os2ahci.add 72 93 73 LIBS = addcalls doscalls rmcalls # dhcalls not needed, see local devhelp.h94 LIBS = addcalls doscalls rmcalls apmcalls # dhcalls not needed, see local devhelp.h 74 95 75 96 SRCS = init.asm math.asm libc.c os2ahci.c pci.c ahci.c ata.c atapi.c \ 76 ctxhook.c 97 ctxhook.c trace.c ioctl.c apm.c 77 98 78 99 OBJS = init.obj libc.obj os2ahci.obj pci.obj ahci.obj ata.obj atapi.obj \ 79 ctxhook.obj 100 ctxhook.obj trace.obj ioctl.obj apm.obj 80 101 81 102 INCS = os2ahci.h ahci.h version.h … … 85 106 86 107 clean: 87 rm -f $(OBJS) $(TARGET) 108 rm -f $(OBJS) $(TARGET) *.lst *.cod 88 109 89 110 ############################################################################### 90 111 # Object/source dependencies 91 112 92 init.obj: init.asm wmakefile113 init.obj: init.asm Makefile 93 114 94 libc.obj: libc.c wmakefile $(INCS)115 libc.obj: libc.c Makefile $(INCS) 95 116 96 os2ahci.obj: os2ahci.c wmakefile $(INCS) bldday.h117 os2ahci.obj: os2ahci.c Makefile $(INCS) bldday.h ioctl.h 97 118 98 pci.obj: pci.c wmakefile $(INCS)119 pci.obj: pci.c Makefile $(INCS) 99 120 100 ahci.obj: ahci.c wmakefile $(INCS) ata.h atapi.h121 ahci.obj: ahci.c Makefile $(INCS) ata.h atapi.h 101 122 102 ata.obj: ata.c wmakefile $(INCS) ata.h123 ata.obj: ata.c Makefile $(INCS) ata.h 103 124 104 atapi.obj: atapi.c wmakefile $(INCS) ata.h atapi.h125 atapi.obj: atapi.c Makefile $(INCS) ata.h atapi.h 105 126 106 ctxhook.obj: ctxhook.c wmakefile $(INCS) ata.h atapi.h 127 ctxhook.obj: ctxhook.c Makefile $(INCS) ata.h atapi.h 128 129 apm.obj: apm.c Makefile $(INCS) 130 131 ioctl.obj: ioctl.c Makefile $(INCS) atapi.h ioctl.h 132 133 trace.obj: trace.c Makefile $(INCS) 134 135 os2ahci.def: version.h os2ahci.def.template 107 136 108 137 ############################################################################### … … 124 153 wdis -l $*.obj 125 154 155 os2ahci.def: 156 $(BLDLEVEL) os2ahci.def.template os2ahci.def version.h 157 126 158 $(TARGET): $(OBJS) os2ahci.def wmakefile 127 $(BLDLEVEL) os2ahci.def version.h128 159 $(LD) $(LFLAGS) $(OBJS),$(TARGET),$*.map,$(LIB_DIRS) $(LIBS),$*.def 129 160 mapsym os2ahci
Note:
See TracChangeset
for help on using the changeset viewer.