IODC.txt
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:3k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. Some notes on IODC, its general brokenness, and how to work around it.
  2. Short Version
  3. IODC is HP's pre-PCI standard for device identification (a la PCI vendor,
  4. device IDs), detection, configuration, initialization and so on.
  5. It also can provide firmware function to do the actual IO, which are slow,
  6. not really defined for runtime usage and generally not desirable.  (There
  7. are other firmware standards, such as STI, to do real IO).
  8. Usually, there are two parts to IODC.  The actual ROMs, which are laid out,
  9. detected aso in a bus-specific manner (IO_DC_ADDRESS / IO_DC_DATA on
  10. GSC/Runway, PCI spec - compliant ROMs for PCI, God-only-knows how on EISA),
  11. and the slightly cooked data read by PDC_IODC.
  12. The ROM layout is generally icky (only one byte out of every 4-byte-word
  13. might be valid, and many devices don't implement required options), so
  14. using PDC_IODC is highly recommended.  (In fact, you should use the device
  15. lists set up by the kernel proper instead of calling PDC_IODC yourself).
  16. Now, let's have a look at what the cooked ROM looks like (see iodc.pdf for
  17. the details, this is the simplified version).
  18. Basically, the first 8 bytes of IODC contain two 32-bit ids called HVERSION
  19. and SVERSION.  Those are further split up into bit fields, and
  20. unfortunately just ignoring this split up isn't an option.
  21. SVERSION consists of a 4-bit revision field, a 20-bit model field and a
  22. 8-bit opt field.  Now, forget the revision and opt fields exist.  Basically,
  23. the model field is equivalent to a PCI device id (there is no vendor id.
  24. this is proprietary hardware we're talking about).  That is, all your
  25. driver cares for, in 90 % of the cases, is to find all devices that match
  26. the model field.
  27. The rev field is - you guessed it - roughly equivalent to the revision
  28. byte for PCI, with the exception that higher revisions should be strict
  29. supersets of lower revisions.
  30. The last byte of HVERSION, "type", and the last byte of SVERSION, "opt",
  31. belong together;  type gives a very rough indication of what the device
  32. is supposed to do, and opt contains some type-specific information. (For
  33. example, the "bus converter" (ie bus bridge) type encodes the kind of
  34. bus behind the bridge in the opt field.
  35. The rest of HVERSION contains, in most cases, a number identifying the
  36. machine the chip was used in, or a revision indicator that just fixed
  37. bugs and didn't add any features (or was done in a shrinked process or
  38. whatever).
  39. So, here's the interface you actually should use to find your devices:
  40. /* Find a device, matching the model field of sversion only (from=NULL
  41.  * for the first call */
  42. struct iodc_dev *iodc_find_device(u32 sversion, struct iodc_dev *from);
  43. Here's a function you should use if you have special requirements, such
  44. as finding devices by type rather than by model.  Generally, if you're
  45. using this, you should be me).
  46. /* Find a device, masking out bits as specified */
  47. struct iodc_dev *iodc_find_device_mask(u32 hversion, u32 sversion,
  48. u32 hversion_mask, u32 sversion_mask, struct iodc_dev *from);
  49. Philipp Rumpf <prumpf@tux.org>