I want to allocate a I/O memory for my UART4 with the base address 0x4806 E000 and size is 1KB.
struct resource *request_mem_region(unsigned long start, unsigned long len,
char *name);
What value should be given to the 2nd and 3rd function parameters/
- len - since the size is 1KB is it 1000?
- name - I have no idea of where this pointer pointing to..
Please clear my doubts