Changeset 112


Ignore:
Timestamp:
Jul 6, 2011, 10:02:47 AM (14 years ago)
Author:
Markus Thielen
Message:
  • removed RAS calls (tracing to OS/2 kernel trace buffer was unreliable)
  • added private trace ring buffer implementation
  • support read from OS2AHCI$ character device
  • contents of trace ring buffer are accesible via OS2AHCI$ character device
  • updated WATCOM makefile; WATCOM build still produces a non-working driver
  • code cleanup (unused variables etc.)
Location:
trunk/src/os2ahci
Files:
11 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified trunk/src/os2ahci/Makefile

    r111 r112  
    7373
    7474SRCS     = 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
    7676
    7777OBJS     = 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
    7979
    8080INCS     = os2ahci.h ahci.h version.h
     
    8484
    8585clean:
    86         rm -f $(OBJS) $(TARGET)
     86        rm -f $(OBJS) $(TARGET) *.cod *.lst
    8787
    8888
     
    109109
    110110ioctl.obj:    ioctl.c    Makefile $(INCS) atapi.h ioctl.h
     111
     112trace.obj:    trace.c    Makefile $(INCS)
    111113
    112114os2ahci.def:  version.h  os2ahci.def.template
  • TabularUnified trunk/src/os2ahci/ahci.c

    r111 r112  
    542542      if (rc == 0) {
    543543        /* 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");
    546545        ahci_setup_device(ai, p, 0, id_buf);
    547546      } else {
     
    922921 * Determine whether a port is busy executing commands.
    923922 */
    924 ahci_port_busy(AD_INFO *ai, int p)
     923int ahci_port_busy(AD_INFO *ai, int p)
    925924{
    926925  u8 _far *port_mmio = port_base(ai, p);
     
    12391238                                AP_END));
    12401239  }
     1240  return 0;
    12411241}
    12421242
     
    15511551  dphex(((IORB_ADAPTER_PASSTHRU _far *) iorb)->pControllerCmd,
    15521552        ((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);
    15541554
    15551555  if (ad_infos[a].ports[p].devs[d].atapi) {
     
    15731573  dphex(((IORB_ADAPTER_PASSTHRU _far *) iorb)->pControllerCmd,
    15741574        ((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);
    15761576
    15771577  ahci_exec_iorb(iorb, 0, ata_execute_ata);
  • TabularUnified trunk/src/os2ahci/ata.c

    r111 r112  
    279279  if (debug >= 2) {
    280280    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:   ");
    284283    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: ");
    286285    }
    287286    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:   ");
    290288    }
    291289  }
  • TabularUnified trunk/src/os2ahci/atapi.c

    r111 r112  
    162162  cdb.cmd = ATAPI_CMD_READ_12;
    163163  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);
    165165
    166166  /* allocate transfer buffer */
     
    340340  ATAPI_SENSE_DATA *psd = (ATAPI_SENSE_DATA *) aws->buf;
    341341
    342   dphex(psd, sizeof(*psd), TRACE_MINOR_SENSE_BUF, "sense buffer:\n");
     342  dphex(psd, sizeof(*psd), "sense buffer:\n");
    343343
    344344  if ((iorb->RequestControl & IORB_REQ_STATUSBLOCK) &&
     
    443443    tmp = GET_CDB_24(cmd_in + 1) & 0x1fffffUL;
    444444    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]));
    446446    p12->control = cmd_in[5];
    447447    break;
  • TabularUnified trunk/src/os2ahci/atapi.h

    r110 r112  
    3333 * macros to fill in ATAPI CDB values
    3434 */
    35 #define SET_CDB_16(_t, _v)  (_t)[0] = (u8) ((_v) >> 8);       \
     35#define SET_CDB_16(_t, _v)  (_t)[0] = (u8) ((_v) >> 8); \
    3636                            (_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); \
    3939                            (_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); \
    4343                            (_t)[3] = (u8)  (_v)
    4444
  • TabularUnified trunk/src/os2ahci/libc.c

    r111 r112  
    5858                                                ULONG parm2);
    5959static int              mdelay_cal_end         (void);
    60 static int              trace_enabled          (void);
    6160
    6261/* ------------------------ global/static variables ------------------------ */
     
    6766static char  hex_digits[] = "0123456789abcdef";
    6867static ULONG mem_lock;
    69 static ULONG com_lock;
     68ULONG com_lock;
    7069
    7170/* message table for DosHelp_Save_Message() which prints the first string */
     
    283282
    284283   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   }
    290289
    291290  /* write debug message to serial port */
     
    367366 * Print hex buffer to COM port.
    368367 */
    369 void phex(const void _far *p, int len, u16 trace_minor_code, const char *fmt, ...)
     368void phex(const void _far *p, int len, const char *fmt, ...)
    370369{
    371370  va_list va;
     
    374373
    375374  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 TRACEFMT
    382      *
    383      * NOTE: writing the header to the trace buffer causes
    384      *       the trace facility to hick up and swallow the
    385      *       binary data that follows...
    386      */
    387     trace(trace_minor_code, len, buf);
    388375    return;
    389376  }
     
    866853}
    867854
    868 /******************************************************************************
    869  * is_trace_enabled - checks if kernel tracing is enabled
    870  */
    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 our
    877    * major trace code is enabled
    878    */
    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 buffer
    893  */
    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  
    140140    break;
    141141
     142  case CMDINPUT:
     143    rc = char_dev_input((RP_RWV _far *) req);
     144    break;
     145   
    142146  default:
    143147    rc = STDON | STATUS_ERR_UNKCMD;
     
    313317  }
    314318
     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
    315325  /* scan PCI bus for supported devices */
    316326  scan_pci_bus();
     
    383393
    384394    }
     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 */
     404USHORT char_dev_input(RP_RWV _far *rwrb)
     405{
     406  if (TRACE_ACTIVE) {
     407    return(trace_char_dev(rwrb));
    385408  }
    386409  return(STDON | STATUS_ERR_UNKCMD);
  • TabularUnified trunk/src/os2ahci/os2ahci.h

    r111 r112  
    9494#define dddprintf if (debug > 2) printf
    9595#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)
    9699
    97100/* adapter number from AD_INFO pointer; mainly for dprintf() purposes */
     
    251254#define ANSI_RESET      "\x1b[0m"
    252255
    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 
    269256
    270257/* ------------------------ typedefs and structures ------------------------ */
     
    390377extern USHORT  init_drv               (RPINITIN _far *req);
    391378extern USHORT  gen_ioctl              (RP_GENIOCTL _far *ioctl);
     379extern USHORT  char_dev_input         (RP_RWV _far *rwrb);
    392380extern USHORT  exit_drv               (int func);
    393381extern void _cdecl _far _loadds add_entry    (IORBH _far *iorb);
     
    463451extern void _cdecl printf        (const char *fmt, ...);
    464452extern void        cprintf       (const char *fmt, ...);
    465 extern void        phex          (const void _far *p, int len,
    466                                   u16 trace_minor_code, const char *fmt, ...);
     453extern void        phex          (const void _far *p, int len, const char *fmt, ...);
    467454extern size_t      strlen        (const char _far *s);
    468455extern char _far  *strcpy        (char _far *dst, const char _far *src);
     
    482469extern int         disable       (void);
    483470extern void        enable        (void);
    484 extern void        trace         (u16 minor_code, u16 cb_buf,
    485                                   const char _far *buf);
     471
     472/* trace.c */
     473extern void        trace_init    (void);
     474extern void        trace_exit    (void);
     475extern void        trace_write   (u8 _far *s, int len);
     476extern u16         trace_read    (void _far *buf, u16 cb_buf);
     477extern u16         trace_bytes_avail(void);
     478extern u16         trace_char_dev(RP_RWV _far *rwrb);
    486479
    487480/* pci.c */
     
    524517extern PCI_ID        pci_ids[];     /* SATA adapter PCI IDs */
    525518extern ULONG         drv_lock;      /* driver-level spinlock */
     519extern ULONG         com_lock;      /* debug log spinlock */
    526520extern IORB_QUEUE    driver_queue;  /* driver-level IORB queue */
    527521extern AD_INFO       ad_infos[];    /* adapter information list */
  • TabularUnified trunk/src/os2ahci/pci.c

    r111 r112  
    183183
    184184static char s_generic[]       = "Generic";
    185 
    186 /******************************************************************************
    187  * other strings
    188  */
    189 static char s_already_claimed[] = "Warning: device already claimed by another driver.\n";
    190185
    191186
     
    937932  }
    938933
    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: ");
    941936
    942937  if (ioctl.rph.Status & STERR) {
  • TabularUnified trunk/src/os2ahci/version.h

    r111 r112  
    1414
    1515
    16 #define VERSION            116       /* driver version (2 implied decimals) */
     16#define VERSION            117       /* driver version (2 implied decimals) */
    1717
  • TabularUnified trunk/src/os2ahci/wmakefile

    r43 r112  
    33#
    44# 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;
    66# those parts are (c) Linux AHCI/ATA maintainers
    77#
     
    1919#  along with this program; if not, write to the Free Software
    2020#  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
    2141
    2242
     
    3858               -I$(DDK)\base\ibmh \
    3959               -I$(DDK)\base\src\dev\dasd\diskh \
    40                -I$(WATCOM)\h
     60               -I$(DDK)\base\src\dev\thinkpad\dockii\apmcalls \
     61               -I$(CC16)\include
    4162
    4263AS_INCLUDE   = -I:$(DDK)\base\inc \
     
    4566LIB_DIRS     = $(DDK)\base\lib\ \
    4667               $(DDK)\base\src\dev\dasd\devhlp\ \
    47 
     68               $(DDK)\base\src\dev\thinkpad\dockii\apmcalls\ \
    4869
    4970###############################################################################
    5071# Tool Chain
    5172#
    52 # This makefile uses the Watcom 16bit compiler. 
     73# This makefile uses the Watcom 16bit compiler.
    5374# Linker and assembler are link.exe and alp.exe that ship with the OS/2 DDK
    5475#
     
    6283
    6384AFLAGS        = -Mb
    64 CFLAGS        = -d3 -hc -bt=os2 -ms -zu -5 -w2 -wcd=138 -zp1 -q -s -zgp -zfp -oi
     85CFLAGS        = -d3 -hc -bt=os2 -ms -zu -5 -w3 -wcd=138 -wcd=300 -ecc -zp1 -q -s -zgp -zfp -oi
    6586CFLAGS_DEBUG  = -d3 -hc
    66 LFLAGS        = /noe /nod /packd /a:16 /batch /map /line 
     87LFLAGS        = /noe /nod /packd /a:16 /batch /map /line
    6788
    6889###############################################################################
     
    7192TARGET   = os2ahci.add
    7293
    73 LIBS     = addcalls doscalls rmcalls # dhcalls not needed, see local devhelp.h
     94LIBS     = addcalls doscalls rmcalls apmcalls # dhcalls not needed, see local devhelp.h
    7495
    7596SRCS     = 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
    7798
    7899OBJS     = 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
    80101
    81102INCS     = os2ahci.h ahci.h version.h
     
    85106
    86107clean:
    87         rm -f $(OBJS) $(TARGET)
     108        rm -f $(OBJS) $(TARGET) *.lst *.cod
    88109
    89110###############################################################################
    90111# Object/source dependencies
    91112
    92 init.obj:     init.asm   wmakefile
     113init.obj:     init.asm   Makefile
    93114
    94 libc.obj:     libc.c     wmakefile $(INCS)
     115libc.obj:     libc.c     Makefile $(INCS)
    95116
    96 os2ahci.obj:  os2ahci.c  wmakefile $(INCS) bldday.h
     117os2ahci.obj:  os2ahci.c  Makefile $(INCS) bldday.h ioctl.h
    97118
    98 pci.obj:      pci.c      wmakefile $(INCS)
     119pci.obj:      pci.c      Makefile $(INCS)
    99120
    100 ahci.obj:     ahci.c     wmakefile $(INCS) ata.h atapi.h
     121ahci.obj:     ahci.c     Makefile $(INCS) ata.h atapi.h
    101122
    102 ata.obj:      ata.c      wmakefile $(INCS) ata.h
     123ata.obj:      ata.c      Makefile $(INCS) ata.h
    103124
    104 atapi.obj:    atapi.c    wmakefile $(INCS) ata.h atapi.h
     125atapi.obj:    atapi.c    Makefile $(INCS) ata.h atapi.h
    105126
    106 ctxhook.obj:  ctxhook.c  wmakefile $(INCS) ata.h atapi.h
     127ctxhook.obj:  ctxhook.c  Makefile $(INCS) ata.h atapi.h
     128
     129apm.obj:      apm.c      Makefile $(INCS)
     130
     131ioctl.obj:    ioctl.c    Makefile $(INCS) atapi.h ioctl.h
     132
     133trace.obj:    trace.c    Makefile $(INCS)
     134
     135os2ahci.def:  version.h  os2ahci.def.template
    107136
    108137###############################################################################
     
    124153        wdis -l $*.obj
    125154
     155os2ahci.def:
     156        $(BLDLEVEL) os2ahci.def.template os2ahci.def version.h
     157
    126158$(TARGET): $(OBJS) os2ahci.def wmakefile
    127         $(BLDLEVEL) os2ahci.def version.h
    128159        $(LD) $(LFLAGS) $(OBJS),$(TARGET),$*.map,$(LIB_DIRS) $(LIBS),$*.def
    129160        mapsym os2ahci
Note: See TracChangeset for help on using the changeset viewer.