Skip to content
Snippets Groups Projects
Commit 00c81d23 authored by Chris Zankel's avatar Chris Zankel
Browse files

xtensa: Fix io regions


The uncached area starts at e000.0000 and spans 1GB. Also add an IOADDR
macro to determine the bypass region to access the IO space.

Signed-off-by: default avatarChris Zankel <chris@zankel.net>
parent 74f2a5f0
No related branches found
No related tags found
No related merge requests found
...@@ -18,10 +18,12 @@ ...@@ -18,10 +18,12 @@
#include <linux/types.h> #include <linux/types.h>
#define XCHAL_KIO_CACHED_VADDR 0xf0000000 #define XCHAL_KIO_CACHED_VADDR 0xe0000000
#define XCHAL_KIO_BYPASS_VADDR 0xf8000000 #define XCHAL_KIO_BYPASS_VADDR 0xf0000000
#define XCHAL_KIO_PADDR 0xf0000000 #define XCHAL_KIO_PADDR 0xf0000000
#define XCHAL_KIO_SIZE 0x08000000 #define XCHAL_KIO_SIZE 0x10000000
#define IOADDR(x) (XCHAL_KIO_BYPASS_VADDR + (x))
/* /*
* swap functions to change byte order from little-endian to big-endian and * swap functions to change byte order from little-endian to big-endian and
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment