mirror of
https://git.proxmox.com/git/mirror_smartmontools-debian
synced 2025-04-29 19:07:39 +00:00

Downloaded source from https://sourceforge.net/projects/smartmontools/files/smartmontools/7.0/ and imported here to git. Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
67 lines
2.5 KiB
C
67 lines
2.5 KiB
C
/*
|
|
* os_os2.c
|
|
*
|
|
* Home page of code is: http://www.smartmontools.org
|
|
*
|
|
* Copyright (C) 2004-8 Yuri Dario
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0-or-later
|
|
*/
|
|
|
|
#ifndef OS_OS2_H_
|
|
#define OS_OS2_H_
|
|
|
|
#define OS_XXXX_H_CVSID "$Id: os_os2.h 4760 2018-08-19 18:45:53Z chrfranke $\n"
|
|
|
|
// Additional material should start here. Note: to keep the '-V' CVS
|
|
// reporting option working as intended, you should only #include
|
|
// system include files <something.h>. Local #include files
|
|
// <"something.h"> should be #included in os_generic.c
|
|
|
|
#define INCL_DOS
|
|
#include <os2.h>
|
|
|
|
#include "os_linux.h"
|
|
|
|
#pragma pack(1)
|
|
|
|
/* IOCTL definitions from s506oem.h (primarily required for SMART calls) */
|
|
#define DSKSP_CAT_SMART 0x80 /* SMART IOCTL category */
|
|
#define DSKSP_SMART_ONOFF 0x20 /* turn SMART on or off */
|
|
#define DSKSP_SMART_AUTOSAVE_ONOFF 0x21 /* turn SMART autosave on or off */
|
|
#define DSKSP_SMART_SAVE 0x22 /* force save of SMART data */
|
|
#define DSKSP_SMART_GETSTATUS 0x23 /* get SMART status (pass/fail) */
|
|
#define DSKSP_SMART_GET_ATTRIBUTES 0x24 /* get SMART attributes table */
|
|
#define DSKSP_SMART_GET_THRESHOLDS 0x25 /* get SMART thresholds table */
|
|
#define DSKSP_SMART_GET_LOG 0x26 /* get SMART log table */
|
|
#define DSKSP_SMART_AUTO_OFFLINE 0x27 /* set SMART offline autosave timer */
|
|
#define DSKSP_SMART_EXEC_OFFLINE 0x28 /* execute SMART immediate offline */
|
|
|
|
#define SMART_CMD_ON 1 /* on value for related SMART functions */
|
|
#define SMART_CMD_OFF 0 /* off value for related SMART functions */
|
|
|
|
#define DSKSP_CAT_GENERIC 0x90 /* generic IOCTL category */
|
|
#define DSKSP_GET_INQUIRY_DATA 0x42 /* get ATA/ATAPI inquiry data */
|
|
|
|
typedef struct _DSKSP_CommandParameters {
|
|
BYTE byPhysicalUnit; /* physical unit number 0-n */
|
|
/* 0 = 1st disk, 1 = 2nd disk, ...*/
|
|
/* 0x80 = Pri/Mas, 0x81=Pri/Sla, 0x82=Sec/Mas,*/
|
|
} DSKSP_CommandParameters, *PDSKSP_CommandParameters;
|
|
|
|
struct SMART_ParamExt {
|
|
UCHAR byPhysicalUnit; // 0=Pri/Mas, 1=Pri/Sla, 2=Sec/Mas, etc.
|
|
ULONG LogAddress; // valid values 0-255. See ATA/ATPI standard
|
|
// for details
|
|
ULONG SectorCount; // valid values 0-255 See ATA/ATPI standard
|
|
// for details
|
|
ULONG reserved; // reserved. must be set to 0
|
|
};
|
|
|
|
const char * danisdev="\\DEV\\IBMS506$"; // DANIS506
|
|
const char * danispref="hd";
|
|
const char * ahcidev="\\DEV\\OS2AHCI$"; // OS2AHCI
|
|
const char * ahcipref="ahci";
|
|
|
|
#endif /* OS_GENERIC_H_ */
|