Skip to main content
replaced http://unix.stackexchange.com/ with https://unix.stackexchange.com/
Source Link

You need to set up a kernel virtual address mapping for the location e.g.

mem_addr = ioremap_nocache(BASEADDR + OFFSET, SIZE);

(you appear to have asked the same question twice - see enter link description hereenter link description here).

You need to set up a kernel virtual address mapping for the location e.g.

mem_addr = ioremap_nocache(BASEADDR + OFFSET, SIZE);

(you appear to have asked the same question twice - see enter link description here).

You need to set up a kernel virtual address mapping for the location e.g.

mem_addr = ioremap_nocache(BASEADDR + OFFSET, SIZE);

(you appear to have asked the same question twice - see enter link description here).

Source Link
Murray Jensen
  • 3.2k
  • 2
  • 13
  • 9

You need to set up a kernel virtual address mapping for the location e.g.

mem_addr = ioremap_nocache(BASEADDR + OFFSET, SIZE);

(you appear to have asked the same question twice - see enter link description here).