Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have just purchased classic "Windows NT Device Driver Development" from Peter G. Viscarola, I would like to know how valid are its content in today's driver development, One thing though I find this book's language very easy when compared microsoft's book on device driver development.

Abhishek

share|improve this question

closed as not constructive by gnat, Erik Philips, Roman C, hypercrypt, Luca Geretti May 6 at 9:08

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

2 Answers

You didn't mention what time of device you are trying to develop for, but nonetheless, if you are developing drivers for Windows XP/Vista/7, then I strongly suggest you get a more recent book. I say this for a few reasons:

  • For simple USB devices, there is a framework called UMDF that simplifies writing the driver and makes it run in user-mode, meaning you cannot crash the OS due to a bug in your code. It is also infinitely easier to debug if you do have issues.
  • For kernel model devices, such as PCI, PCIe, or more complex USB devices there is framework called KMDF that takes all of the difficultly out of managing plug-n-play and power management. It also simplifies I/O requests and allows you to focus on I/O with your device, DMA, and other device specific needs. It takes care of a lot of the boiler-plate code and makes your driver code much smaller and more manageable.
  • For video cards, storage devices, and network cards there are also new frameworks for these devices.

In summary, Microsoft has made a lot of new frameworks that will make your life so much easier and allow you to deliver the driver quicker with fewer errors. I highly recommend that you start with Developing Drivers with the Windows Driver Foundation book, meant for beginning driver developers. It covers both UMDF and KMDF, and if you read the whole book it covers everything you need to deliver a functioning driver. From there you can decide if you need to look at older books to help plug the gaps. With the book mentioned above, I was able to develop a full PCI device driver with DMA for use in a high-performance production system. I cannot recommend it enough!

Now, the book you have may be a useful reference for understanding how things work "under the hood" and what the newer frameworks abstract away. If you are new to drivers, however, I do not think it is the best place to start.

Finally, I have a list of books and articles on my web page that I found useful when I was getting started with developing Windows drivers. Some of the linked articles may be useful too you, as well as some of the linked driver books.

share|improve this answer
The list of books and articles you linked to has gone 404-compliant. Unfortunately, the Wayback Machine doesn't have an archive of it, either. Please fix your link, or edit the post to no longer need it. Thank you. – derobert Mar 17 '12 at 9:17
@Dr. Watson: Please fix the link to your webpage. – tunafish24 Jul 5 '12 at 20:32
Thanks for the heads up, tunafish24. Link is fixed! – Dr. Watson Sep 30 '12 at 4:42

From an article on the msdn blogs: Windows Device Drivers Book Reviews

So, I think that the best book to start with regarding driver development is Windows NT Device Driver Development (OSR Classic Reprints) (original version was published in 1997) by Peter G. Viscarola and W. Anthony Mason. This book is divided into 3 parts. The first part (chapters 1-8) talk about Windows internals fundamental concepts, like HAL, scheduling, virtual memory, registry, etc. The second part (chapters 9-20) is the bulk of the book and talks about the development of device drivers. Actually, this can be further subdivided into chapters 8-10, which talk about the I/O manager, 11-17, which is the core part of the book (DriverEntry, Dispatch routines, Interrupt Service Routines, Deffered Procedure Calls, Programmed I/O and DMA), and chapters 18-20, which talk about building and debugging a driver. Finally, chapters 21-24 talk about alternate NT driver architectures, like File system drivers, SCSI drivers, Video miniport drivers and NDIS (network) miniport drivers. I think that there are both advantages and disadvantages in this book. I'll start with the advantages:

* It's very easy to read. It starts with very fundamental stuff, builds on top of them and explains the concepts in an easy-to-understand way. This is really to hard to find in the rest of the books. Possibly the fact that both writers teach driver development courses make it easier for them to understand what questions and problems a beginner driver developer might have, so they try to answer them in front.
* It focuses on explaining the concepts and doesn't present pages and pages of un-understandable code. It just presents the functions, explains how they work and shows a cumulative example that shows the use of a few functions bundled together.
* It's a short book (the first 20 chapters take less than 550 pages) and has small chapters. I think that this fine grain analysis helps the reader. I like the fact that I can read a few small chapters within a day and then pickup the book the next day (or a few days later) without breaking my reading in the middle of the chapter and trying to remember what the first part of the chapter was saying.

Of course, the book has also some disadvantages:

* It doesn't cover plug-n-play, power management and other WDM concepts. This is normal, since the book covers NT drivers and not WDM drivers.I haven't found many outdated parts of the book (i.e. almost everything that is written in the book applies even for WDM drivers in Windows XP), apart from the fact that the DriverEntry chapter (chapter 13) talks a lot about manually finding the resources (memory+I/O) that the driver should be using, whereas for WDM drivers this is done automatically. It also doesn't cover Physical Device Objects (PDOs), Function Device Objects (FDOs) and Filter Device Objects (FiDOs), since they didn't exist at that time.
* The examples are small and after understanding the concepts, it's nice to be able to look at some code that will explain them.

for the full article see : http://blogs.msdn.com/b/iliast/archive/2006/10/25/windows-device-drivers-book-reviews.aspx

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.