- 论坛徽章:
- 0
|
我准备写一个类似于lspci的工具。刚开始遇到了一些问题。清各位高手帮我看一下是怎么回事?
这个程序可以编译通过,可是运行时提示
segment fault
程序清单
#include <stdio.h>
#define PCI_DEV(BUS,DEV,FN) (\
((BUS & 0xFF )<< 16) | \
((DEV & 0x1F )<< 11) | \
((FN & 0x7) << 8 ))
typedef unsigned int uint32_t;
typedef unsigned short uint16_t;
typedef char uint8_t;
#if 0
typedef struct {
unsigned bus;
unsigned dev;
unsigned fun;
}device;
#endif
/*
read pci value ,we first give the address to 0xcf8 port,then read value from 0xcfc port
*/
/*value is the pci configuration address , port is 0xcf8 or 0xcfc*/
static inline void outl(uint32_t value , uint16_t port)
{
__asm__ __volatile__ ("outl %0 ,%w1" ::"a"(value),"Nd"(port));
}
/*port is oxcfc*/
static inline uint32_t inl(uint16_t port)
{
uint32_t value;
__asm__ __volatile__ ("inl %w1,%0":"=a"(value):"Nd"(port));
return value ;
}
unsigned int pci_read_config32(unsigned dev, unsigned address)
{
uint32_t addr;
addr = dev | address;
outl((addr|0x80000000)&(~0x3) , 0xcf ;
return inl(0xcfc);
}
void pci_write_config32()
{
}
int main()
{
unsigned value ;
/*bus 2 device 0 ,function 0 is The eth0 , I read the first address 0 */
value = pci_read_config32(PCI_DEV(2,0,0),0);
printf("the value is : %d \n", value );
}
[ 本帖最后由 neilshi 于 2006-10-24 10:56 编辑 ] |
|