Hi,
I’m trying to write a wdm driver for PCI card
that needs one irq and some I/O ports. Unfortunately its PCI configuration
space doesn’t contain information about it, so PCI bus driver won’t read
it and my driver won’t get needed resources. How can I ask Pnp Manager
to assign me these resources? I know I can specyfy LogConf in my INF file,
but I’d prefer not to do this. So - is there any way the driver can modify
its own resource assignment? I was thinking about handling
IRP_MN_QUERY_RESOURCE_REQUIREMENT. Can I do this?
Unless your PCI device is setting the ‘legacy IO’ bit in its config space,
it is a malfunctioning defective piece of crap. Having said that, you
answered your own question: give in to the borg, all resistance is futile,
use the LogConf settings in your inf file.
=====================
Mark Roddy
-----Original Message-----
From: Piotr Szulc [mailto:xxxxx@student.uci.agh.edu.pl]
Sent: Thursday, December 04, 2003 10:14 AM
To: Windows System Software Devs Interest List
Subject: [ntdev] Modifying resource assignment
Hi,
I’m trying to write a wdm driver for PCI card that needs one
irq and some I/O ports. Unfortunately its PCI configuration
space doesn’t contain information about it, so PCI bus driver
won’t read it and my driver won’t get needed resources. How
can I ask Pnp Manager to assign me these resources? I know I
can specyfy LogConf in my INF file, but I’d prefer not to do
this. So - is there any way the driver can modify its own
resource assignment? I was thinking about handling
IRP_MN_QUERY_RESOURCE_REQUIREMENT. Can I do this?
But in Windows 9x there was a way for vxd driver to specify what
exactly it wants. And it was still pnp-compatible. So why
there is no such functionality for WDM? It could be very useful, i think.
On Thu, 4 Dec 2003, Roddy, Mark wrote:
Unless your PCI device is setting the ‘legacy IO’ bit in its config space,
it is a malfunctioning defective piece of crap. Having said that, you
answered your own question: give in to the borg, all resistance is futile,
use the LogConf settings in your inf file.
=====================
Mark Roddy
> -----Original Message-----
> From: Piotr Szulc [mailto:xxxxx@student.uci.agh.edu.pl]
> Sent: Thursday, December 04, 2003 10:14 AM
> To: Windows System Software Devs Interest List
> Subject: [ntdev] Modifying resource assignment
>
>
> Hi,
> I’m trying to write a wdm driver for PCI card that needs one
> irq and some I/O ports. Unfortunately its PCI configuration
> space doesn’t contain information about it, so PCI bus driver
> won’t read it and my driver won’t get needed resources. How
> can I ask Pnp Manager to assign me these resources? I know I
> can specyfy LogConf in my INF file, but I’d prefer not to do
> this. So - is there any way the driver can modify its own
> resource assignment? I was thinking about handling
> IRP_MN_QUERY_RESOURCE_REQUIREMENT. Can I do this?
>
> Thanks in advance.
>
> Peter Szulc
>
>
> —
> Questions? First check the Kernel Driver FAQ at
> http://www.osronline.com/article.cfm?id=256
>
> You are currently subscribed to ntdev as:
> xxxxx@stratus.com To unsubscribe send a blank email to
> xxxxx@lists.osr.com
>
Why is this useful at all for a hardware device plugged into a dynamic self
configuring bus? NT does have a legacy mechanism for specifying exactly what
resources you want, you just shouldn’t be using it, ever. The LogConf
mechanism in the inf file does everything you would want to do in a driver,
without you having to write a lot of ugly error prone code.
=====================
Mark Roddy
-----Original Message-----
From: Piotr Szulc [mailto:xxxxx@student.uci.agh.edu.pl]
Sent: Thursday, December 04, 2003 10:32 AM
To: Windows System Software Devs Interest List
Subject: [ntdev] RE: Modifying resource assignment
But in Windows 9x there was a way for vxd driver to specify
what exactly it wants. And it was still pnp-compatible. So
why there is no such functionality for WDM? It could be very
useful, i think.
On Thu, 4 Dec 2003, Roddy, Mark wrote:
> Unless your PCI device is setting the ‘legacy IO’ bit in its config
> space, it is a malfunctioning defective piece of crap. Having said
> that, you answered your own question: give in to the borg, all
> resistance is futile, use the LogConf settings in your inf file.
>
>
> =====================
> Mark Roddy
>
>
> > -----Original Message-----
> > From: Piotr Szulc [mailto:xxxxx@student.uci.agh.edu.pl]
> > Sent: Thursday, December 04, 2003 10:14 AM
> > To: Windows System Software Devs Interest List
> > Subject: [ntdev] Modifying resource assignment
> >
> >
> > Hi,
> > I’m trying to write a wdm driver for PCI card that needs
one irq and
> > some I/O ports. Unfortunately its PCI configuration space doesn’t
> > contain information about it, so PCI bus driver won’t
read it and my
> > driver won’t get needed resources. How can I ask Pnp Manager to
> > assign me these resources? I know I can specyfy LogConf in my INF
> > file, but I’d prefer not to do this. So - is there any way the
> > driver can modify its own resource assignment? I was
thinking about
> > handling IRP_MN_QUERY_RESOURCE_REQUIREMENT. Can I do this?
> >
> > Thanks in advance.
> >
> > Peter Szulc
> >
> >
> > —
> > Questions? First check the Kernel Driver FAQ at
> > http://www.osronline.com/article.cfm?id=256
> >
> > You are currently subscribed to ntdev as:
> > xxxxx@stratus.com To unsubscribe send a blank email to
> > xxxxx@lists.osr.com
> >
>
> —
> Questions? First check the Kernel Driver FAQ at
> http://www.osronline.com/article.cfm?id=256
>
> You are currently subscribed to ntdev as:
xxxxx@student.uci.agh.edu.pl
> To unsubscribe send a blank email to xxxxx@lists.osr.com
>
If you dont want to use LogConf , handle the
IRP_MN_FILTER_RESOURCE_REQUIREMENTS.
“Roddy, Mark” wrote in message news:xxxxx@ntdev… > > Why is this useful at all for a hardware device plugged into a dynamic self > configuring bus? NT does have a legacy mechanism for specifying exactly what > resources you want, you just shouldn’t be using it, ever. The LogConf > mechanism in the inf file does everything you would want to do in a driver, > without you having to write a lot of ugly error prone code. > > > ===================== > Mark Roddy > > > > -----Original Message----- > > From: Piotr Szulc [mailto:xxxxx@student.uci.agh.edu.pl] > > Sent: Thursday, December 04, 2003 10:32 AM > > To: Windows System Software Devs Interest List > > Subject: [ntdev] RE: Modifying resource assignment > > > > > > But in Windows 9x there was a way for vxd driver to specify > > what exactly it wants. And it was still pnp-compatible. So > > why there is no such functionality for WDM? It could be very > > useful, i think. > > > > On Thu, 4 Dec 2003, Roddy, Mark wrote: > > > > > Unless your PCI device is setting the ‘legacy IO’ bit in its config > > > space, it is a malfunctioning defective piece of crap. Having said > > > that, you answered your own question: give in to the borg, all > > > resistance is futile, use the LogConf settings in your inf file. > > > > > > > > > ===================== > > > Mark Roddy > > > > > > > > > > -----Original Message----- > > > > From: Piotr Szulc [mailto:xxxxx@student.uci.agh.edu.pl] > > > > Sent: Thursday, December 04, 2003 10:14 AM > > > > To: Windows System Software Devs Interest List > > > > Subject: [ntdev] Modifying resource assignment > > > > > > > > > > > > Hi, > > > > I’m trying to write a wdm driver for PCI card that needs > > one irq and > > > > some I/O ports. Unfortunately its PCI configuration space doesn’t > > > > contain information about it, so PCI bus driver won’t > > read it and my > > > > driver won’t get needed resources. How can I ask Pnp Manager to > > > > assign me these resources? I know I can specyfy LogConf in my INF > > > > file, but I’d prefer not to do this. So - is there any way the > > > > driver can modify its own resource assignment? I was > > thinking about > > > > handling IRP_MN_QUERY_RESOURCE_REQUIREMENT. Can I do this? > > > > > > > > Thanks in advance. > > > > > > > > Peter Szulc > > > > > > > > > > > > — > > > > Questions? First check the Kernel Driver FAQ at > > > > http://www.osronline.com/article.cfm?id=256 > > > > > > > > You are currently subscribed to ntdev as: > > > > xxxxx@stratus.com To unsubscribe send a blank email to > > > > xxxxx@lists.osr.com > > > > > > > > > > — > > > Questions? First check the Kernel Driver FAQ at > > > http://www.osronline.com/article.cfm?id=256 > > > > > > You are currently subscribed to ntdev as: > > xxxxx@student.uci.agh.edu.pl > > > To unsubscribe send a blank email to xxxxx@lists.osr.com > > > > > > > — > > Questions? First check the Kernel Driver FAQ at > > http://www.osronline.com/article.cfm?id=256 > > > > You are currently subscribed to ntdev as: > > xxxxx@stratus.com To unsubscribe send a blank email to > > xxxxx@lists.osr.com > > > >
“The best defensive driving system I have found to date is a passenger
leaning out the window with a shotgun.”
---- snip ----
Why is this useful at all for a hardware device plugged into a dynamic self
configuring bus? NT does have a legacy mechanism for specifying exactly what
resources you want, you just shouldn’t be using it, ever. The LogConf
mechanism in the inf file does everything you would want to do in a driver,
without you having to write a lot of ugly error prone code.
=====================
Mark Roddy
> -----Original Message-----
> From: Piotr Szulc [mailto:xxxxx@student.uci.agh.edu.pl]
> Sent: Thursday, December 04, 2003 10:32 AM
> To: Windows System Software Devs Interest List
> Subject: [ntdev] RE: Modifying resource assignment
>
>
> But in Windows 9x there was a way for vxd driver to specify
> what exactly it wants. And it was still pnp-compatible. So
> why there is no such functionality for WDM? It could be very
> useful, i think.
>
> On Thu, 4 Dec 2003, Roddy, Mark wrote:
>
> > Unless your PCI device is setting the ‘legacy IO’ bit in its config
> > space, it is a malfunctioning defective piece of crap. Having said
> > that, you answered your own question: give in to the borg, all
> > resistance is futile, use the LogConf settings in your inf file.
> >
> >
> > =====================
> > Mark Roddy
> >
> >
> > > -----Original Message-----
> > > From: Piotr Szulc [mailto:xxxxx@student.uci.agh.edu.pl]
> > > Sent: Thursday, December 04, 2003 10:14 AM
> > > To: Windows System Software Devs Interest List
> > > Subject: [ntdev] Modifying resource assignment
> > >
> > >
> > > Hi,
> > > I’m trying to write a wdm driver for PCI card that needs
> one irq and
> > > some I/O ports. Unfortunately its PCI configuration space doesn’t
> > > contain information about it, so PCI bus driver won’t
> read it and my
> > > driver won’t get needed resources. How can I ask Pnp Manager to
> > > assign me these resources? I know I can specyfy LogConf in my INF
> > > file, but I’d prefer not to do this. So - is there any way the
> > > driver can modify its own resource assignment? I was
> thinking about
> > > handling IRP_MN_QUERY_RESOURCE_REQUIREMENT. Can I do this?
> > >
> > > Thanks in advance.
> > >
> > > Peter Szulc
> > >
> > >
> > > —
> > > Questions? First check the Kernel Driver FAQ at
> > > http://www.osronline.com/article.cfm?id=256
> > >
> > > You are currently subscribed to ntdev as:
> > > xxxxx@stratus.com To unsubscribe send a blank email to
> > > xxxxx@lists.osr.com
> > >
> >
> > —
> > Questions? First check the Kernel Driver FAQ at
> > http://www.osronline.com/article.cfm?id=256
> >
> > You are currently subscribed to ntdev as:
> xxxxx@student.uci.agh.edu.pl
> > To unsubscribe send a blank email to xxxxx@lists.osr.com
> >
>
> —
> Questions? First check the Kernel Driver FAQ at
> http://www.osronline.com/article.cfm?id=256
>
> You are currently subscribed to ntdev as:
> xxxxx@stratus.com To unsubscribe send a blank email to
> xxxxx@lists.osr.com
>
----- Original Message -----
From: “Piotr Szulc” To: “Windows System Software Devs Interest List” Sent: Thursday, December 04, 2003 6:31 PM Subject: [ntdev] RE: Modifying resource assignment
> > But in Windows 9x there was a way for vxd driver to specify what > exactly it wants. And it was still pnp-compatible. So why > there is no such functionality for WDM? It could be very useful, i think. > > On Thu, 4 Dec 2003, Roddy, Mark wrote: > > > Unless your PCI device is setting the ‘legacy IO’ bit in its config space, > > it is a malfunctioning defective piece of crap. Having said that, you > > answered your own question: give in to the borg, all resistance is futile, > > use the LogConf settings in your inf file. > > > > > > ===================== > > Mark Roddy > > > > > > > -----Original Message----- > > > From: Piotr Szulc [mailto:xxxxx@student.uci.agh.edu.pl] > > > Sent: Thursday, December 04, 2003 10:14 AM > > > To: Windows System Software Devs Interest List > > > Subject: [ntdev] Modifying resource assignment > > > > > > > > > Hi, > > > I’m trying to write a wdm driver for PCI card that needs one > > > irq and some I/O ports. Unfortunately its PCI configuration > > > space doesn’t contain information about it, so PCI bus driver > > > won’t read it and my driver won’t get needed resources. How > > > can I ask Pnp Manager to assign me these resources? I know I > > > can specyfy LogConf in my INF file, but I’d prefer not to do > > > this. So - is there any way the driver can modify its own > > > resource assignment? I was thinking about handling > > > IRP_MN_QUERY_RESOURCE_REQUIREMENT. Can I do this? > > > > > > Thanks in advance. > > > > > > Peter Szulc > > > > > > > > > — > > > Questions? First check the Kernel Driver FAQ at > > > http://www.osronline.com/article.cfm?id=256 > > > > > > You are currently subscribed to ntdev as: > > > xxxxx@stratus.com To unsubscribe send a blank email to > > > xxxxx@lists.osr.com > > > > > > > — > > Questions? First check the Kernel Driver FAQ at http://www.osronline.com/article.cfm?id=256 > > > > You are currently subscribed to ntdev as: xxxxx@student.uci.agh.edu.pl > > To unsubscribe send a blank email to xxxxx@lists.osr.com > > > > — > Questions? First check the Kernel Driver FAQ at http://www.osronline.com/article.cfm?id=256 > > You are currently subscribed to ntdev as: xxxxx@storagecraft.com > To unsubscribe send a blank email to xxxxx@lists.osr.com
Why you want to do it this way, rather than letting the pnp manager do it
for you by using a LogConf section in your inf file, escapes me.
=====================
Mark Roddy
-----Original Message-----
From: Piotr Szulc [mailto:xxxxx@student.uci.agh.edu.pl]
Sent: Friday, December 05, 2003 6:48 AM
To: Windows System Software Devs Interest List
Subject: [ntdev] Re: Modifying resource assignment
That is exactly what I want.
Thanks.
Peter Szulc
On Thu, 4 Dec 2003, Nikolay wrote:
> If you dont want to use LogConf , handle the
> IRP_MN_FILTER_RESOURCE_REQUIREMENTS.
>
I want it to look like a driver for full pnp-compatible device. Anyone can
look at the content of inf file, but not not anyone can look at my driver
:).
Anyway, thanks for your answers.
Best regards.
Peter Szulc
On Fri, 5 Dec 2003, Roddy, Mark wrote:
Why you want to do it this way, rather than letting the pnp manager do it
for you by using a LogConf section in your inf file, escapes me.
=====================
Mark Roddy
> -----Original Message-----
> From: Piotr Szulc [mailto:xxxxx@student.uci.agh.edu.pl]
> Sent: Friday, December 05, 2003 6:48 AM
> To: Windows System Software Devs Interest List
> Subject: [ntdev] Re: Modifying resource assignment
>
>
> That is exactly what I want.
> Thanks.
>
> Peter Szulc
>
> On Thu, 4 Dec 2003, Nikolay wrote:
>
> > If you dont want to use LogConf , handle the
> > IRP_MN_FILTER_RESOURCE_REQUIREMENTS.
> >
>
> —
> Questions? First check the Kernel Driver FAQ at
> http://www.osronline.com/article.cfm?id=256
>
> You are currently subscribed to ntdev as:
> xxxxx@stratus.com To unsubscribe send a blank email to
> xxxxx@lists.osr.com
>
In other words, you want to deceive people, and you want to make it a
LOT more difficult to find or modify the device resource assignments.
Sounds bad to me.
– arlie
-----Original Message-----
From: xxxxx@lists.osr.com
[mailto:xxxxx@lists.osr.com] On Behalf Of Piotr Szulc
Sent: Friday, December 05, 2003 10:19 AM
To: Windows System Software Devs Interest List
Subject: [ntdev] Re: Modifying resource assignment
I want it to look like a driver for full pnp-compatible device. Anyone
can look at the content of inf file, but not not anyone can look at my
driver :).
It’s not that way. I’m writing that driver for myself. Nobody will use it
or modify it, except me. I just don’t want some people to see it’s not
quite pnp device.
Hope you see nothing wrong with it?
On Fri, 5 Dec 2003, Arlie Davis wrote:
In other words, you want to deceive people, and you want to make it a
LOT more difficult to find or modify the device resource assignments.
Sounds bad to me.
– arlie
-----Original Message-----
From: xxxxx@lists.osr.com
[mailto:xxxxx@lists.osr.com] On Behalf Of Piotr Szulc
Sent: Friday, December 05, 2003 10:19 AM
To: Windows System Software Devs Interest List
Subject: [ntdev] Re: Modifying resource assignment
I want it to look like a driver for full pnp-compatible device. Anyone
can look at the content of inf file, but not not anyone can look at my
driver :).
Your statements conflict, if no one will use it except you, then who are the
some people you do not want to see it isn’t PNP? You sound like you are
decieving people, also it is scary how many times a piece of software that
“is only for the developer” seems to get out into the real world.
Don Burn (MVP, Windows DDK)
Windows 2k/XP/2k3 Filesystem and Driver Consulting
----- Original Message -----
From: “Piotr Szulc” To: “Windows System Software Devs Interest List” Sent: Monday, December 08, 2003 5:53 AM Subject: [ntdev] Re: Modifying resource assignment
> > It’s not that way. I’m writing that driver for myself. Nobody will use it > or modify it, except me. I just don’t want some people to see it’s not > quite pnp device. > Hope you see nothing wrong with it? > > On Fri, 5 Dec 2003, Arlie Davis wrote: > > > In other words, you want to deceive people, and you want to make it a > > LOT more difficult to find or modify the device resource assignments. > > > > Sounds bad to me. > > > > – arlie > > > > > > -----Original Message----- > > From: xxxxx@lists.osr.com > > [mailto:xxxxx@lists.osr.com] On Behalf Of Piotr Szulc > > Sent: Friday, December 05, 2003 10:19 AM > > To: Windows System Software Devs Interest List > > Subject: [ntdev] Re: Modifying resource assignment > > > > > > > > I want it to look like a driver for full pnp-compatible device. Anyone > > can look at the content of inf file, but not not anyone can look at my > > driver :). > > > > Anyway, thanks for your answers. > > > > Best regards. > > Peter Szulc > > > > > > > > — > > Questions? First check the Kernel Driver FAQ at http://www.osronline.com/article.cfm?id=256 > > > > You are currently subscribed to ntdev as: xxxxx@student.uci.agh.edu.pl > > To unsubscribe send a blank email to xxxxx@lists.osr.com > > > > — > Questions? First check the Kernel Driver FAQ at http://www.osronline.com/article.cfm?id=256 > > You are currently subscribed to ntdev as: xxxxx@acm.org > To unsubscribe send a blank email to xxxxx@lists.osr.com
I don’t know if you believe me, but here is how all this looks:
I don’t work for ANY company. I am only a student (see my e-mail
address). All I am trying to do is to write my first WDM driver. It is
for SMBUS chipset VT596B. And “some people” are people I want to show that
driver and amuse them.
Why you people are so suspicious? If I wanted to do something BAD I
wouldn’t have written about it on that list.
Do you still find the defendant guilty?
On Mon, 8 Dec 2003, Don Burn wrote:
Your statements conflict, if no one will use it except you, then who are the
some people you do not want to see it isn’t PNP? You sound like you are
decieving people, also it is scary how many times a piece of software that
“is only for the developer” seems to get out into the real world.
Don Burn (MVP, Windows DDK)
Windows 2k/XP/2k3 Filesystem and Driver Consulting
----- Original Message -----
From: “Piotr Szulc” > To: “Windows System Software Devs Interest List” > Sent: Monday, December 08, 2003 5:53 AM > Subject: [ntdev] Re: Modifying resource assignment > > > > > > It’s not that way. I’m writing that driver for myself. Nobody will use it > > or modify it, except me. I just don’t want some people to see it’s not > > quite pnp device. > > Hope you see nothing wrong with it? > > > > On Fri, 5 Dec 2003, Arlie Davis wrote: > > > > > In other words, you want to deceive people, and you want to make it a > > > LOT more difficult to find or modify the device resource assignments. > > > > > > Sounds bad to me. > > > > > > – arlie > > > > > > > > > -----Original Message----- > > > From: xxxxx@lists.osr.com > > > [mailto:xxxxx@lists.osr.com] On Behalf Of Piotr Szulc > > > Sent: Friday, December 05, 2003 10:19 AM > > > To: Windows System Software Devs Interest List > > > Subject: [ntdev] Re: Modifying resource assignment > > > > > > > > > > > > I want it to look like a driver for full pnp-compatible device. Anyone > > > can look at the content of inf file, but not not anyone can look at my > > > driver :). > > > > > > Anyway, thanks for your answers. > > > > > > Best regards. > > > Peter Szulc > > > > > > > > > > > > — > > > Questions? First check the Kernel Driver FAQ at > http://www.osronline.com/article.cfm?id=256 > > > > > > You are currently subscribed to ntdev as: xxxxx@student.uci.agh.edu.pl > > > To unsubscribe send a blank email to xxxxx@lists.osr.com > > > > > > > — > > Questions? First check the Kernel Driver FAQ at > http://www.osronline.com/article.cfm?id=256 > > > > You are currently subscribed to ntdev as: xxxxx@acm.org > > To unsubscribe send a blank email to xxxxx@lists.osr.com > > > — > Questions? First check the Kernel Driver FAQ at http://www.osronline.com/article.cfm?id=256 > > You are currently subscribed to ntdev as: xxxxx@student.uci.agh.edu.pl > To unsubscribe send a blank email to xxxxx@lists.osr.com >
We are suspicious because of what we do … handle critical areas of
software that have to function properly and play well with the rest of the
system. Mistakes in the kernel can lead to endless hours of debug because to
many times the faulting driver screws up the system, goes away, and some
other kernel component trips and falls on the bad drivers mistakes. These
are bad enough when they are genuine mistakes, but when they are deliberate,
they are unforgivable. The type of subterfuge you are attempting is typical
of a student, verging on childish, mentality, and really only makes sense to
you.
In other words, we who may someday employ you, are not amused.
–
Gary G. Little
Seagate Technologies, LLC
“Piotr Szulc” wrote in message news:xxxxx@ntdev… > > > I don’t know if you believe me, but here is how all this looks: > I don’t work for ANY company. I am only a student (see my e-mail > address). All I am trying to do is to write my first WDM driver. It is > for SMBUS chipset VT596B. And “some people” are people I want to show that > driver and amuse them. > Why you people are so suspicious? If I wanted to do something BAD I > wouldn’t have written about it on that list. > Do you still find the defendant guilty? > > On Mon, 8 Dec 2003, Don Burn wrote: > > > Your statements conflict, if no one will use it except you, then who are the > > some people you do not want to see it isn’t PNP? You sound like you are > > decieving people, also it is scary how many times a piece of software that > > “is only for the developer” seems to get out into the real world. > > > > Don Burn (MVP, Windows DDK) > > Windows 2k/XP/2k3 Filesystem and Driver Consulting > > > > ----- Original Message ----- > > From: “Piotr Szulc” > > To: “Windows System Software Devs Interest List” > > Sent: Monday, December 08, 2003 5:53 AM > > Subject: [ntdev] Re: Modifying resource assignment > > > > > > > > > > It’s not that way. I’m writing that driver for myself. Nobody will use it > > > or modify it, except me. I just don’t want some people to see it’s not > > > quite pnp device. > > > Hope you see nothing wrong with it? > > > > > > On Fri, 5 Dec 2003, Arlie Davis wrote: > > > > > > > In other words, you want to deceive people, and you want to make it a > > > > LOT more difficult to find or modify the device resource assignments. > > > > > > > > Sounds bad to me. > > > > > > > > – arlie > > > > > > > > > > > > -----Original Message----- > > > > From: xxxxx@lists.osr.com > > > > [mailto:xxxxx@lists.osr.com] On Behalf Of Piotr Szulc > > > > Sent: Friday, December 05, 2003 10:19 AM > > > > To: Windows System Software Devs Interest List > > > > Subject: [ntdev] Re: Modifying resource assignment > > > > > > > > > > > > > > > > I want it to look like a driver for full pnp-compatible device. Anyone > > > > can look at the content of inf file, but not not anyone can look at my > > > > driver :). > > > > > > > > Anyway, thanks for your answers. > > > > > > > > Best regards. > > > > Peter Szulc > > > > > > > > > > > > > > > > — > > > > Questions? First check the Kernel Driver FAQ at > > http://www.osronline.com/article.cfm?id=256 > > > > > > > > You are currently subscribed to ntdev as: xxxxx@student.uci.agh.edu.pl > > > > To unsubscribe send a blank email to xxxxx@lists.osr.com > > > > > > > > > > — > > > Questions? First check the Kernel Driver FAQ at > > http://www.osronline.com/article.cfm?id=256 > > > > > > You are currently subscribed to ntdev as: xxxxx@acm.org > > > To unsubscribe send a blank email to xxxxx@lists.osr.com > > > > > > — > > Questions? First check the Kernel Driver FAQ at http://www.osronline.com/article.cfm?id=256 > > > > You are currently subscribed to ntdev as: xxxxx@student.uci.agh.edu.pl > > To unsubscribe send a blank email to xxxxx@lists.osr.com > > > >
What can I say? You’re right…
It seems I’ve just wrecked my future career and I have been called
deceiver in public.
Great thanks.
And sorry for sending off-topic letters on that list.
Best regards
Peter Szulc
they are unforgivable. The type of subterfuge you are attempting is typical
of a student, verging on childish, mentality, and really only makes sense to
you.
In other words, we who may someday employ you, are not amused.
Oh well you would have to know the history of this list. We are inundated on
a regular basis by folks who want to hack, crack, and otherwise abuse the NT
kernel programming and execution environment. We tend to be very skeptical
of any request for information about how to avoid the defined interfaces,
and we tend to demand a full explanation before most of us are going to put
any effort into accurately answering such questions.
So are you attempting to deceive your professors?
Aren’t SMBUS devices enumerated off of ACPI rather than PCI?
=====================
Mark Roddy
-----Original Message-----
From: Piotr Szulc [mailto:xxxxx@student.uci.agh.edu.pl]
Sent: Monday, December 08, 2003 8:21 AM
To: Windows System Software Devs Interest List
Subject: [ntdev] Re: Modifying resource assignment
I don’t know if you believe me, but here is how all this looks:
I don’t work for ANY company. I am only a student (see my
e-mail address). All I am trying to do is to write my first
WDM driver. It is for SMBUS chipset VT596B. And “some people”
are people I want to show that driver and amuse them.
Why you people are so suspicious? If I wanted to do something
BAD I wouldn’t have written about it on that list.
Do you still find the defendant guilty?
On Mon, 8 Dec 2003, Don Burn wrote:
> Your statements conflict, if no one will use it except you,
then who
> are the some people you do not want to see it isn’t PNP? You sound
> like you are decieving people, also it is scary how many
times a piece
> of software that “is only for the developer” seems to get
out into the real world.
>
> Don Burn (MVP, Windows DDK)
> Windows 2k/XP/2k3 Filesystem and Driver Consulting
>
> ----- Original Message -----
> From: “Piotr Szulc” > > To: “Windows System Software Devs Interest List” > > > Sent: Monday, December 08, 2003 5:53 AM > > Subject: [ntdev] Re: Modifying resource assignment > > > > > > > > > > It’s not that way. I’m writing that driver for myself. > Nobody will > > > use it or modify it, except me. I just don’t want some > people to see > > > it’s not quite pnp device. > > > Hope you see nothing wrong with it? > > > > > > On Fri, 5 Dec 2003, Arlie Davis wrote: > > > > > > > In other words, you want to deceive people, and you > want to make > > > > it a LOT more difficult to find or modify the device > resource assignments. > > > > > > > > Sounds bad to me. > > > > > > > > – arlie > > > > > > > > > > > > -----Original Message----- > > > > From: xxxxx@lists.osr.com > > > > [mailto:xxxxx@lists.osr.com] On Behalf Of > Piotr Szulc > > > > Sent: Friday, December 05, 2003 10:19 AM > > > > To: Windows System Software Devs Interest List > > > > Subject: [ntdev] Re: Modifying resource assignment > > > > > > > > > > > > > > > > I want it to look like a driver for full pnp-compatible device. > > > > Anyone can look at the content of inf file, but not not > anyone can > > > > look at my driver :). > > > > > > > > Anyway, thanks for your answers. > > > > > > > > Best regards. > > > > Peter Szulc > > > > > > > > > > > > > > > > — > > > > Questions? First check the Kernel Driver FAQ at > > http://www.osronline.com/article.cfm?id=256 > > > > > > > > You are currently subscribed to ntdev as: > > > > xxxxx@student.uci.agh.edu.pl To unsubscribe send a > blank email to > > > > xxxxx@lists.osr.com > > > > > > > > > > — > > > Questions? First check the Kernel Driver FAQ at > > http://www.osronline.com/article.cfm?id=256 > > > > > > You are currently subscribed to ntdev as: xxxxx@acm.org To > > > unsubscribe send a blank email to xxxxx@lists.osr.com > > > > > > — > > Questions? First check the Kernel Driver FAQ at > > http://www.osronline.com/article.cfm?id=256 > > > > You are currently subscribed to ntdev as: > xxxxx@student.uci.agh.edu.pl > > To unsubscribe send a blank email to xxxxx@lists.osr.com > > > > — > Questions? First check the Kernel Driver FAQ at > http://www.osronline.com/article.cfm?id=256 > > You are currently subscribed to ntdev as: > xxxxx@stratus.com To unsubscribe send a blank email to > xxxxx@lists.osr.com >
Event the LogConfig mechanism can’t help you with the IRQ. The IRQ is only
discoverable by looking at the system BIOS in co-operation with the PCI
configuration header. The OS doesn’t export this code, since it doesn’t
need to for PCI-compatible hardware. Your hardware isn’t PCI-compatible.
–
Jake Oshins
Windows Base Kernel Team
This posting is provided “AS IS” with no warranties, and confers no rights.
OR if you wish to include a script sample in your post please add “Use of
included script samples are subject to the terms specified at http://www.microsoft.com/info/cpyright.htm”
“Maxim S. Shatskih” wrote in message news:xxxxx@ntdev… > > > that needs one irq and some I/O ports. Unfortunately its PCI configuration > > space doesn’t contain information about it > > Lame, lame, very lame card. Needs redesign. > > For now, try LogConfig in the INF file. > > Maxim Shatskih, Windows DDK MVP > StorageCraft Corporation > xxxxx@storagecraft.com > http://www.storagecraft.com > > >
Also, as I pointed out earlier, I don’t even think he is really dealing with
a PCI device at all. He finally coughed up the information that his device
is an SMBUS device, and I strongly suspect it is enumerated off of ACPI, not
PCI.
=====================
Mark Roddy
-----Original Message-----
From: Jake Oshins [mailto:xxxxx@windows.microsoft.com]
Sent: Monday, December 08, 2003 3:01 PM
To: Windows System Software Devs Interest List
Subject: [ntdev] Re: Modifying resource assignment
Event the LogConfig mechanism can’t help you with the IRQ.
The IRQ is only discoverable by looking at the system BIOS in
co-operation with the PCI configuration header. The OS
doesn’t export this code, since it doesn’t need to for
PCI-compatible hardware. Your hardware isn’t PCI-compatible.
–
Jake Oshins
Windows Base Kernel Team
This posting is provided “AS IS” with no warranties, and
confers no rights.
OR if you wish to include a script sample in your post please
add “Use of included script samples are subject to the terms
specified at http://www.microsoft.com/info/cpyright.htm”
“Maxim S. Shatskih” wrote in message > news:xxxxx@ntdev… > > > > > that needs one irq and some I/O ports. Unfortunately its PCI > configuration > > > space doesn’t contain information about it > > > > Lame, lame, very lame card. Needs redesign. > > > > For now, try LogConfig in the INF file. > > > > Maxim Shatskih, Windows DDK MVP > > StorageCraft Corporation > > xxxxx@storagecraft.com > > http://www.storagecraft.com > > > > > > > > > > — > Questions? First check the Kernel Driver FAQ at > http://www.osronline.com/article.cfm?id=256 > > You are currently subscribed to ntdev as: > xxxxx@stratus.com To unsubscribe send a blank email to > xxxxx@lists.osr.com >