hwrmiscflags.pp 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229
  1. {$MACRO ON}
  2. {$define Rsc := }
  3. (******************************************************************************
  4. *
  5. * Copyright (c) 1995-2000 Palm, Inc. or its subsidiaries.
  6. * All rights reserved.
  7. *
  8. * File: HwrMiscFlags.h
  9. *
  10. * Release: Palm OS SDK 4.0 (63220)
  11. *
  12. * Description:
  13. * Bit constants for the hardware MiscFlags
  14. *
  15. * History:
  16. * 10/26/99 JED Created by Jesse Donaldson, extracted from <HwrGlobals.h>
  17. *
  18. *****************************************************************************)
  19. unit hwrmiscflags;
  20. interface
  21. (**************************************************************************
  22. * General Equates
  23. ***************************************************************************)
  24. // ----------------------------------------------------------------------
  25. // NOTE: In some ROMs between 3.0 and 3.3 (inclusive), OEMs may have
  26. // ROM tokens present in the ROM that were detected by the boot code
  27. // in order to set the various HwrMiscFlags and GHwrMiscFlagsExt
  28. // settings. That scheme is no longer relevant, since starting with
  29. // version 3.5 and later, it is now the responsibility of the HAL
  30. // to set these flags, using whatever means necessary to determine
  31. // what "features" the device has that the higher level OS may want
  32. // to know about.
  33. //
  34. // These flags are defined in this public header file since both
  35. // of these low memory globals are published as system features
  36. // (sysFtrNumHwrMiscFlags and sysFtrNumHwrMiscFlagsExt) in <SystemMgr.h>.
  37. // These features are for third party software that may (for whatever
  38. // reason) want to know about certain hardware differences without
  39. // having to read the low memory globals directly.
  40. //
  41. // Palm OS v3.1 was the first OS to publish sysFtrNumHwrMiscFlags as a feature.
  42. // Call FtrGet first; if the feature doesn't exist, check the OS version:
  43. // Palm OS v2.0 and 3.0 have GHwrMiscFlags defined as a low memory global.
  44. // Palm OS v1.0 did not have GHwrMiscFlags, so its contents are unpredictable.
  45. // Any devices running Palm OS v1.0 devices should assume zero for all flags.
  46. // ----------------------------------------------------------------------
  47. // Bits in the low memory global GHwrMiscFlags (UInt16)
  48. const
  49. hwrMiscFlagHasBacklight = $0001; // set if backlight is present
  50. hwrMiscFlagHasMbdIrDA = $0002; // set if IrDA is present (on main board)
  51. hwrMiscFlagHasCardIrDA = $0004; // set if IrDA is present (on memory card)
  52. hwrMiscFlagHasBurrBrown = $0008; // set if BurrBrown A/D is present
  53. hwrMiscFlagHasJerryHW = $0010; // set if Jerry Hardware is present
  54. hwrMiscFlagNoRTCBug = $0020; // set if using rev of DragonBall (3G or later)
  55. // that doesn't require the RealTimeClock
  56. // bug work-around (see TimeMgr68328.c).
  57. // <chg 3-27-98 RM>
  58. hwrMiscFlagHas3vRef = $0040; // set if switchable 3v reference is present
  59. hwrMiscFlagHasAntennaSw = $0080; // set if viewer has an antenna raised switch
  60. hwrMiscFlagHasCradleDetect = $0100; // set if we have an A/D converter on hotsync port used for ID'ing the attached device
  61. hwrMiscFlagHasSWContrast = $0200; // set if UI should support software contrast
  62. hwrMiscFlagInvertLCDForBL = $0400; // set if we need to invert LCD w/Backlight
  63. hwrMiscFlagHasMiscFlagExt = $0800; // set if we have new hwrMiscFlagsExt
  64. // The following bit flags are set by HwrIdentifyFeatures.
  65. // They allow software to read the hardware ID without poking at hardware.
  66. // They also provide some isolation from different ID detection schemes
  67. // such as if the ID detection mechanism should change with EZ...
  68. hwrMiscFlagID1 = $1000; // set if ID bit keyBitHard1 was set
  69. hwrMiscFlagID2 = $2000; // set if ID bit keyBitHard2 was set
  70. hwrMiscFlagID3 = $4000; // set if ID bit keyBitHard3 was set
  71. hwrMiscFlagID4 = $8000; // set if ID bit keyBitHard4 was set
  72. hwrMiscFlagIDMask = $F000;
  73. hwrMiscFlagIDOffset = 12; // Bits to shift to get a numeric ID
  74. // NOTE: Currently, the '328 IDs don't overlap with the 'EZ IDs. This is NOT a requirement,
  75. // but is convenient for the time being as it makes it one step easier to identify a device.
  76. // If the spaces are forced to overlap, it will be necessary to first check the processor
  77. // type (328 or EZ) and then parse the product ID code. Fortunately, this scheme is rapidly
  78. // becoming obsolete since it was based on reading the keyboard I/O pins, and new products
  79. // are starting to move their keyboard I/O bits to new places. With the introduction of
  80. // different HAL modules, identifying the actual hardware is now something the HAL code
  81. // will do when the device boots. The HAL need only do whatever it needs to do to uniquely
  82. // tell the difference between those devices on which it is capable of operating. Once
  83. // the hardware is identified, the appropriate hwrMiscFlag and hwrMiscFlagExt bits can be
  84. // set to tell the OS what features are present, and the appropriate hardware ID information
  85. // can also be set so higher level software can uniquely identify the OEM/Device/HAL info.
  86. //
  87. // Changes
  88. // 3/16/99 SCL: Documented '328 and 'EZ IDs and how the space could overlap if necessary
  89. // 3/31/99 SRJ: hwrMiscFlagIDUndetermined created, used specifically during the boot sequence
  90. // before we have done HwrIdentifyFeatures().
  91. // 10/29/99 SCL: Renamed hwrMiscFlagIDOther to hwrMiscFlagIDCheckROMToken
  92. // 10/29/99 SCL: Assigned hwrMiscFlagIDUnused1 to hwrMiscFlagIDUndetermined for Palm OS 3.5
  93. // 10/29/99 SCL: Assigned hwrMiscFlagIDUnused2 to hwrMiscFlagIDCheckOEMFtrs for Palm OS 3.5
  94. // 11/ 2/99 SCL: Assigned hwrMiscFlagIDUnused3 to hwrMiscFlagIDCobra2 for Palm OS 3.5
  95. // hwrMiscFlagIDCheckROMToken indicates that the actual device ID information
  96. // should be read from hwrROMTokenHardwareID using SysGetROMToken or HwrGetROMToken.
  97. // Attached to this token is the OEM ID and the OEM-specific Product ID.
  98. // This scheme was used in Palm OS releases prior to 3.5. See <HwrROMToken.h> for details.
  99. // This ID is also reported when booting on PalmPilot devices (aka 2.0 hardware).
  100. hwrMiscFlagIDCheckROMToken = 0; // used to be hwrMiscFlagIDOther
  101. hwrMiscFlagIDPalmPilot = 0; // since it was never explicitly set
  102. // hwrMiscFlagIDUndetermined is what the OS initializes the ID to when booting.
  103. // The HAL is responsible for setting the ID to something valid (and meaningful).
  104. hwrMiscFlagIDUndetermined = hwrMiscFlagID1; // used to be hwrMiscFlagIDUnused1
  105. // hwrMiscFlagIDCheckOEMFtrs indicates that the OEM/Device/HAL identification
  106. // information should be read from the new Palm OS 3.5 System Features
  107. // (sysFtrNumOEMCompanyID, sysFtrNumOEMDeviceID, and sysFtrNumOEMHALID)
  108. // or system globals (hwrOEMCompanyID, hwrOEMDeviceID, and hwrOEMHALID).
  109. // This method of hardware device ID is for HAL-based devices starting with Palm OS
  110. // 3.5, but some devices may continue to report valid old-style hwrMiscFlagIDxxx tags.
  111. hwrMiscFlagIDCheckOEMFtrs = hwrMiscFlagID2; // used to be hwrMiscFlagIDUnused2
  112. // Old-style Hardware IDs for DragonBall '328 based products
  113. hwrMiscFlagIDThumper = hwrMiscFlagID4 or hwrMiscFlagID2;
  114. hwrMiscFlagIDJerry = hwrMiscFlagID4 or hwrMiscFlagID3;
  115. hwrMiscFlagIDRocky = hwrMiscFlagID4 or hwrMiscFlagID3 or hwrMiscFlagID2;
  116. hwrMiscFlagIDTouchdown = hwrMiscFlagID4 or hwrMiscFlagID3 or hwrMiscFlagID2 or hwrMiscFlagID1;
  117. // Old-style Hardware IDs for DragonBall 'EZ based products
  118. hwrMiscFlagIDJerryEZ = hwrMiscFlagID3 or hwrMiscFlagID2;
  119. hwrMiscFlagIDSumo = hwrMiscFlagID4 or hwrMiscFlagID2 or hwrMiscFlagID1;
  120. hwrMiscFlagIDBrad = hwrMiscFlagID4 or hwrMiscFlagID3 or hwrMiscFlagID1;
  121. hwrMiscFlagIDAustin = hwrMiscFlagID4 or hwrMiscFlagID1;
  122. hwrMiscFlagIDCobra2 = hwrMiscFlagID2 or hwrMiscFlagID1;
  123. hwrMiscFlagIDCalvin = hwrMiscFlagID3 or hwrMiscFlagID1;
  124. // Hardware SubIDs used to detect hardware type early in boot process
  125. hwrMiscFlagExtSubIDBrad = $0;
  126. hwrMiscFlagExtSubIDSumo = $2;
  127. hwrMiscFlagExtSubIDCobra = $4;
  128. hwrMiscFlagExtSubIDCobra2_16 = $6;
  129. hwrMiscFlagExtSubIDCobra2_20 = $7;
  130. // Old-style Hardware IDs still unused
  131. hwrMiscFlagIDUnused4 = hwrMiscFlagID3;
  132. hwrMiscFlagIDUnused5 = hwrMiscFlagID3 or hwrMiscFlagID1;
  133. hwrMiscFlagIDUnused7 = hwrMiscFlagID3 or hwrMiscFlagID2 or hwrMiscFlagID1;
  134. hwrMiscFlagIDUnused8 = hwrMiscFlagID4;
  135. // Bits in the low memory global GHwrMiscFlagsExt (UInt32)
  136. hwrMiscFlagExtSubID1 = $00000001; // subtype ID (for feature select in device)
  137. hwrMiscFlagExtSubID2 = $00000002; // subtype ID (for feature select in device)
  138. hwrMiscFlagExtSubID3 = $00000004; // subtype ID (for feature select in device)
  139. hwrMiscFlagExtSubIDMask = $00000007; // sybtype ID Mask
  140. hwrMiscFlagExtHasLiIon = $00000010; // set if we have Lithium Ion battery rechargable in the cradle
  141. hwrMiscFlagExtHasRailIO = $00000020; // set if we have Rail I/O hardware
  142. hwrMiscFlagExtHasFlash = $00000040; // set (by OS or HAL) if we have Flash ROM
  143. hwrMiscFlagExtHasFParms = $00000080; // set (by OS or HAL) if we have Flash parms area
  144. hwrMiscFlagExt115KIrOK = $00000100; // device supports 115K IR transfers
  145. hwrMiscFlagExtHasExtLCD = $00000200; // device has syscall LCD controller
  146. hwrMiscFlagExtHasSWBright = $00000400; // device has software controlled brightness
  147. // Added by BGT, 08/01/2000
  148. hwrMiscFlagExtNeedsLpr = $00000800; // DRAM needs special LP Refresh
  149. // Assigned values for hwrOEMCompanyID (aka sysFtrNumOEMCompanyID):
  150. // Values are assigned by the Palm Computing Platform Engineering group.
  151. //
  152. // Note: These values are different from the values that may be found in some
  153. // OEM devices which used HwrROMTokens on versions of Palm OS prior to 3.5.
  154. hwrOEMCompanyIDUnspecified = $00000000; // hwrOEMCompanyID not specified by HAL
  155. hwrOEMHALIDUnspecified = $00000000; // hwrOEMHALID not specified by HAL
  156. hwrOEMDeviceIDUnspecified = $00000000; // hwrOEMDeviceID not specified by HAL
  157. hwrOEMCompanyIDPalmPlatform = Rsc('psys'); // Reference Platforms made by Palm Computing
  158. hwrOEMCompanyIDPalmDevices = Rsc('palm'); // Devices made by Palm Computing
  159. hwrOEMCompanyIDSymbol = Rsc('smbl'); // Devices made by Symbol Technologies
  160. hwrOEMCompanyIDQualcomm = Rsc('qcom'); // Devices made by Qualcomm
  161. hwrOEMCompanyIDTRG = Rsc('trgp'); // Devices made by TRG Products
  162. hwrOEMCompanyIDHandspring = Rsc('hspr'); // Devices made by Handspring
  163. // Hardware ID's for DragonBall EZ based products
  164. // hwrMiscFlagIDSumo = hwrMiscFlagID4 or hwrMiscFlagID2 or hwrMiscFlagID1;
  165. // hwrMiscFlagIDBrad = hwrMiscFlagID4 or hwrMiscFlagID3 or hwrMiscFlagID1;
  166. // Note that values for hwrOEMDeviceID (aka sysFtrNumOEMDeviceID) and
  167. // hwrOEMHALID (aka sysFtrNumOEMHALID) are OEM vendor-specific, and not
  168. // necessarily tracked by this Palm OS header file, though it may be
  169. // worthwhile to include "known" values here for third party developers.
  170. //
  171. // It is recommended that OEM vendors choose values for these globals that
  172. // are four-digit human-readable ASCII values, rather than numeric codes,
  173. // though this is not a requirement.
  174. // HALs that belong to hwrOEMCompanyIDPalmPlatform
  175. hwrOEMHALIDEZRef = Rsc('eref'); // (Mono) EZ Reference Platform (Palm Computing)
  176. hwrOEMHALIDEZRefColor = Rsc('cref'); // Color EZ Reference Platform (Palm Computing)
  177. // HALs that belong to hwrOEMCompanyIDPalmPlatform
  178. hwrOEMHALIDVZRef = Rsc('vref'); // (Mono) VZ Reference Platform (Palm Computing)
  179. hwrOEMHALIDVZRefColor = Rsc('cvrf'); // Color VZ Reference Platform (Palm Computing)
  180. // HALs that belong to hwrOEMCompanyIDPalmDevices
  181. hwrOEMHALID328Jerry = Rsc('jery'); // Palm VII HAL (Palm Computing)
  182. hwrOEMHALIDEZSumo = Rsc('sumo'); // Palm IIIx/V/Vx HAL (Palm Computing)
  183. hwrOEMHALID328Rocky = Rsc('rcky'); // Pilot, PalmPilot, Palm III HAL (Palm Computing)
  184. hwrOEMHALIDEZAustin = Rsc('astn'); // Palm IIIc (Palm Computing)
  185. hwrOEMHALIDEZCalvin = Rsc('cvln'); // Palm m100 (Palm Computing)
  186. implementation
  187. end.