mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/chenhuacai/linux-loongson
synced 2025-10-04 08:02:24 +00:00
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: Chris Zankel <chris@zankel.net>
This commit is contained in:
parent
74f2a5f0ef
commit
00c81d23d3
@ -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
|
||||||
|
Loading…
Reference in New Issue
Block a user