Linux - Device Driver

Thread Starter

smdaudhilbe

Joined Jun 27, 2013
1
Hi,

Friends, I am developing a device driver which works on ARM9. In that I need to access ARM UART registers. How can I do that..?

I have one suggesstion that I can create a header file with such registers, and dump inside kernel headers so that I can access them for my driver...?

Is that right way to handle this...???

I need your suggestions regarding this....??

ASAP..
 

joeyd999

Joined Jun 6, 2011
5,234
Hi,

Friends, I am developing a device driver which works on ARM9. In that I need to access ARM UART registers. How can I do that..?

I have one suggesstion that I can create a header file with such registers, and dump inside kernel headers so that I can access them for my driver...?

Is that right way to handle this...???

I need your suggestions regarding this....??

ASAP..
Why not just copy the existing UART driver source code, make your own custom mods, and compile and install a proper driver?
 
Top