Reputation: 6466
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
Upvotes: 3
Views: 4683
Reputation: 11515
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.
Upvotes: 4