blob: acc5bb2cf1c77328cc502dcf69cace9af5b8b3d9 [file] [log] [blame]
Chris Zankel9a8fd552005-06-23 22:01:26 -07001/*
Chris Zankel173d6682006-12-10 02:18:48 -08002 * include/asm-xtensa/io.h
Chris Zankel9a8fd552005-06-23 22:01:26 -07003 *
4 * This file is subject to the terms and conditions of the GNU General Public
5 * License. See the file "COPYING" in the main directory of this archive
6 * for more details.
7 *
8 * Copyright (C) 2001 - 2005 Tensilica Inc.
9 */
10
11#ifndef _XTENSA_IO_H
12#define _XTENSA_IO_H
13
14#ifdef __KERNEL__
Chris Zankel9a8fd552005-06-23 22:01:26 -070015#include <asm/byteorder.h>
Adrian Bunkc51aea82007-07-23 18:43:54 -070016#include <asm/page.h>
Baruch Siach4809bb42013-11-17 08:14:54 +020017#include <asm/vectors.h>
Paul Gortmakerbfae8ee2012-04-18 16:20:38 -040018#include <linux/bug.h>
Chris Zankel66569202007-08-22 10:14:51 -070019#include <linux/kernel.h>
Chris Zankel9a8fd552005-06-23 22:01:26 -070020
21#include <linux/types.h>
Chris Zankel9a8fd552005-06-23 22:01:26 -070022
Chris Zankel00c81d22008-10-21 09:08:31 -070023#define IOADDR(x) (XCHAL_KIO_BYPASS_VADDR + (x))
Max Filippovd38efc12012-09-17 05:44:40 +040024#define IO_SPACE_LIMIT ~0
Chris Zankel9a8fd552005-06-23 22:01:26 -070025
Max Filippovd38efc12012-09-17 05:44:40 +040026#ifdef CONFIG_MMU
Baruch Siach6cb97112013-12-29 11:03:30 +020027
Max Filippov5bb8def2015-12-10 17:05:27 -080028void __iomem *xtensa_ioremap_nocache(unsigned long addr, unsigned long size);
29void __iomem *xtensa_ioremap_cache(unsigned long addr, unsigned long size);
30void xtensa_iounmap(volatile void __iomem *addr);
31
Chris Zankel9a8fd552005-06-23 22:01:26 -070032/*
Max Filippovd38efc12012-09-17 05:44:40 +040033 * Return the virtual address for the specified bus memory.
Chris Zankel9a8fd552005-06-23 22:01:26 -070034 */
Max Filippov02f37742012-09-17 05:44:39 +040035static inline void __iomem *ioremap_nocache(unsigned long offset,
36 unsigned long size)
Chris Zankel9a8fd552005-06-23 22:01:26 -070037{
Chris Zankel173d6682006-12-10 02:18:48 -080038 if (offset >= XCHAL_KIO_PADDR
Max Filippov02f37742012-09-17 05:44:39 +040039 && offset - XCHAL_KIO_PADDR < XCHAL_KIO_SIZE)
Chris Zankel173d6682006-12-10 02:18:48 -080040 return (void*)(offset-XCHAL_KIO_PADDR+XCHAL_KIO_BYPASS_VADDR);
Chris Zankel173d6682006-12-10 02:18:48 -080041 else
Max Filippov5bb8def2015-12-10 17:05:27 -080042 return xtensa_ioremap_nocache(offset, size);
Chris Zankel9a8fd552005-06-23 22:01:26 -070043}
44
Max Filippov02f37742012-09-17 05:44:39 +040045static inline void __iomem *ioremap_cache(unsigned long offset,
46 unsigned long size)
Chris Zankel9a8fd552005-06-23 22:01:26 -070047{
Chris Zankel173d6682006-12-10 02:18:48 -080048 if (offset >= XCHAL_KIO_PADDR
Max Filippov02f37742012-09-17 05:44:39 +040049 && offset - XCHAL_KIO_PADDR < XCHAL_KIO_SIZE)
Chris Zankel173d6682006-12-10 02:18:48 -080050 return (void*)(offset-XCHAL_KIO_PADDR+XCHAL_KIO_CACHED_VADDR);
51 else
Max Filippov5bb8def2015-12-10 17:05:27 -080052 return xtensa_ioremap_cache(offset, size);
Chris Zankel9a8fd552005-06-23 22:01:26 -070053}
Dan Williams92281dee2015-08-10 23:07:06 -040054#define ioremap_cache ioremap_cache
Greentime Hu94bc61e2018-02-21 14:21:23 +080055#define ioremap_nocache ioremap_nocache
Chris Zankel9a8fd552005-06-23 22:01:26 -070056
Max Filippov02f37742012-09-17 05:44:39 +040057#define ioremap_wc ioremap_nocache
Toshi Kani556269c2015-06-04 18:55:16 +020058#define ioremap_wt ioremap_nocache
Max Filippov02f37742012-09-17 05:44:39 +040059
60static inline void __iomem *ioremap(unsigned long offset, unsigned long size)
61{
62 return ioremap_nocache(offset, size);
63}
64
65static inline void iounmap(volatile void __iomem *addr)
Chris Zankel9a8fd552005-06-23 22:01:26 -070066{
Max Filippov5bb8def2015-12-10 17:05:27 -080067 unsigned long va = (unsigned long) addr;
68
69 if (!(va >= XCHAL_KIO_CACHED_VADDR &&
70 va - XCHAL_KIO_CACHED_VADDR < XCHAL_KIO_SIZE) &&
71 !(va >= XCHAL_KIO_BYPASS_VADDR &&
72 va - XCHAL_KIO_BYPASS_VADDR < XCHAL_KIO_SIZE))
73 xtensa_iounmap(addr);
Chris Zankel9a8fd552005-06-23 22:01:26 -070074}
Chris Zankelcddfcbc2012-10-23 20:25:37 -070075
76#define virt_to_bus virt_to_phys
77#define bus_to_virt phys_to_virt
78
Max Filippovd38efc12012-09-17 05:44:40 +040079#endif /* CONFIG_MMU */
Chris Zankel9a8fd552005-06-23 22:01:26 -070080
Chris Zankel9a8fd552005-06-23 22:01:26 -070081#endif /* __KERNEL__ */
82
Max Filippovd38efc12012-09-17 05:44:40 +040083#include <asm-generic/io.h>
84
Chris Zankel9a8fd552005-06-23 22:01:26 -070085#endif /* _XTENSA_IO_H */