3

I would like to know where in the linux source code should i search for finding the board specific packages, more clearly, the memory map of different devices.

I was browsing through the link : http://lxr.linux.no

Thanks

Bobby
  • 11,419
  • 5
  • 44
  • 69
Navaneeth Sen
  • 6,315
  • 11
  • 53
  • 82

1 Answers1

4

If it's a PCI device, lspci -vvv will show you.

You can also check /proc/iomem and /proc/ioport for memory and port mappings, respectively.

Brad
  • 11,262
  • 8
  • 55
  • 74