ed933,
The "access denied" part means that you ran /sbin/lspci -v as a normal user. To get the information about the capabilities of the PCI bus items, you need to run lspci as root. Here's what I mean:
/sbin/lspci -v run as a regular user:
vl59final:/~
john:$ /sbin/lspci -v
00:00.0 Host bridge: Intel Corporation 82810E DC-133 (GMCH) Graphics Memory Controller Hub (rev 03)
Subsystem: Dell OptiPlex GX110
Flags: bus master, fast devsel, latency 0
00:01.0 VGA compatible controller: Intel Corporation 82810E DC-133 (CGC) Chipset Graphics Controller (rev 03) (prog-if 00 [VGA])
Subsystem: Dell OptiPlex GX110
Flags: bus master, 66MHz, medium devsel, latency 0, IRQ 9
Memory at ec000000 (32-bit, prefetchable) [disabled] [size=64M]
Memory at ff000000 (32-bit, non-prefetchable) [disabled] [size=512K]
Capabilities: <access denied>
Now the same command run as root:
vl59final:/~
john:$ su
Password:
You are working as root
Frequently used programs:
Configuration : vasm
Package manager: slapt-get, pkg
Network tools : ifconfig, host, ping, nmap, iptables
File manager : mc (press F2 for useful menu)
Editor : mcedit, nano, vi
Multimedia : alsamixer, play
vl59final://home/john
root:# lspci -v
00:00.0 Host bridge: Intel Corporation 82810E DC-133 (GMCH) Graphics Memory Controller Hub (rev 03)
Subsystem: Dell OptiPlex GX110
Flags: bus master, fast devsel, latency 0
00:01.0 VGA compatible controller: Intel Corporation 82810E DC-133 (CGC) Chipset Graphics Controller (rev 03) (prog-if 00 [VGA])
Subsystem: Dell OptiPlex GX110
Flags: bus master, 66MHz, medium devsel, latency 0, IRQ 9
Memory at ec000000 (32-bit, prefetchable) [disabled] [size=64M]
Memory at ff000000 (32-bit, non-prefetchable) [disabled] [size=512K]
Capabilities: [dc] Power Management version 1
Do you see the difference in the output? ;-)
HTH,
John