home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #16 / NN_1992_16.iso / spool / comp / sys / hp / 8752 < prev    next >
Encoding:
Internet Message Format  |  1992-07-30  |  1.7 KB

  1. Path: sparky!uunet!cs.utexas.edu!sun-barr!ames!haven.umd.edu!darwin.sura.net!zaphod.mps.ohio-state.edu!uakari.primate.wisc.edu!sdd.hp.com!hpscdc!cupnews0.cup.hp.com!hppad.waterloo.hp.com!hppad!hpfcso!rdg
  2. From: rdg@hpfcso.FC.HP.COM (Rob Gardner)
  3. Newsgroups: comp.sys.hp
  4. Subject: Re: device driver for 720
  5. Message-ID: <7371198@hpfcso.FC.HP.COM>
  6. Date: 30 Jul 92 19:52:11 GMT
  7. References: <60041@hpfcse.HP.COM>
  8. Organization: Hewlett-Packard, Fort Collins, CO, USA
  9. Lines: 31
  10.  
  11.  
  12. > I have a customer who is trying to develop a device driver for a 3rd party 
  13. > board, eisa, that plugs into a 720. They have the device drivers developers
  14. > manuals.  They have found 2 things that the documentation references but
  15. > does not explain.
  16.  
  17. Shocking ;-)
  18.  
  19. > 1)a device driver configuration file is require, it should be supplied by the
  20. > manufacture.  The format of this file is not defined, and the board is a
  21. > custom design.  Where can I get info on what the configuration file should
  22. > look like?
  23.  
  24. Page 1-5 in the DDG suggests these references:
  25.  
  26.     EISA Configuration Guide for HP-UX, part number B2370-90000
  27.     Dealer Configuration File Creation Guide, part number D2230-90001
  28.  
  29. > 2) A "id" is required.  There is no specification of what the id looks like,
  30. > how to create it, set it etc. Again please direct me to info on how to create
  31. > the device driver id.
  32.  
  33. The id is read from the eisa card (at offset 0xC80 in its I/O space)
  34. and passed into your attach routine (first argument). Is this what
  35. you're talking about? Or are you asking how to create the id to be
  36. programmed into the card? There might be some algorithm, but I think
  37. it's also OK to choose a random 32-bit integer, since the chances
  38. of collision with another vendor's id are small.
  39.  
  40. Rob
  41.