In one of the manuals i read Basic driver(with source code) - 3 serial driver - DM9000 driver - Audio driver - RTC driver - LED driver - USB Host driver - LCD driver - Touch screen driver - USB camera - USB mouse, keyboard, U-disk, mobile-disk - SD Card driver Where can i find this source code. Thanks.
Where can i find driver source code
All the above will be in the kernel source code. You shouldn't bother about this much unless you do something specific with those drivers - Neo
First read "Documentation/driver-model/platform.txt", then continue by reading the "arch/arm/mach-s3c2440/mach-mini2440.c" file and see what platform devices are getting registered. 'grep' for the names of these platform devices and you will find all corresponding drivers in the kernel source tree. For example "dm9000": [...] drivers/net/dm9000.c:1693: .name = "dm9000", [...]