blob: 1f20fe99be57dd5829ba3e8aafe2c53118e1ac1e [file] [log] [blame]
Thomas Gleixnerd2912cb2019-06-04 10:11:33 +02001// SPDX-License-Identifier: GPL-2.0-only
Tony Lindgrenf577ffd2005-07-10 19:58:12 +01002/*
3 * linux/arch/arm/mach-omap1/io.c
4 *
5 * OMAP1 I/O mapping code
Tony Lindgrenf577ffd2005-07-10 19:58:12 +01006 */
7
Tony Lindgrenf577ffd2005-07-10 19:58:12 +01008#include <linux/module.h>
9#include <linux/kernel.h>
10#include <linux/init.h>
Russell Kingfced80c2008-09-06 12:10:45 +010011#include <linux/io.h>
Arnd Bergmann7e0a9e62019-08-06 16:16:03 +020012#include <linux/omap-dma.h>
Tony Lindgrenf577ffd2005-07-10 19:58:12 +010013
Tony Lindgren53d9cc72006-02-08 22:06:45 +000014#include <asm/tlb.h>
Tony Lindgrenf577ffd2005-07-10 19:58:12 +010015#include <asm/mach/map.h>
Tony Lindgren2e3ee9f2012-02-24 10:34:34 -080016
Arnd Bergmann7e0a9e62019-08-06 16:16:03 +020017#include "tc.h"
Tony Lindgren2e3ee9f2012-02-24 10:34:34 -080018#include "iomap.h"
19#include "common.h"
Paul Walmsley52650502009-12-08 16:29:38 -070020
Tony Lindgrenf577ffd2005-07-10 19:58:12 +010021/*
22 * The machine specific code may provide the extra mapping besides the
23 * default mapping provided here.
24 */
Arnd Bergmann9a99b142023-01-04 13:55:37 +010025static struct map_desc omap1_io_desc[] __initdata = {
Deepak Saxena9fe133b2005-10-28 15:19:00 +010026 {
Arnd Bergmann980a6372023-01-04 09:35:09 +010027 .virtual = OMAP1_IO_VIRT,
28 .pfn = __phys_to_pfn(OMAP1_IO_PHYS),
29 .length = OMAP1_IO_SIZE,
30 .type = MT_DEVICE
Arnd Bergmann9a99b142023-01-04 13:55:37 +010031 }, {
32 .virtual = OMAP1_DSP_BASE,
33 .pfn = __phys_to_pfn(OMAP1_DSP_START),
34 .length = OMAP1_DSP_SIZE,
Deepak Saxena9fe133b2005-10-28 15:19:00 +010035 .type = MT_DEVICE
36 }, {
Arnd Bergmann9a99b142023-01-04 13:55:37 +010037 .virtual = OMAP1_DSPREG_BASE,
38 .pfn = __phys_to_pfn(OMAP1_DSPREG_START),
39 .length = OMAP1_DSPREG_SIZE,
Deepak Saxena9fe133b2005-10-28 15:19:00 +010040 .type = MT_DEVICE
41 }
Tony Lindgrenf577ffd2005-07-10 19:58:12 +010042};
Tony Lindgrenf577ffd2005-07-10 19:58:12 +010043
Arnd Bergmann9a99b142023-01-04 13:55:37 +010044/*
45 * Maps common IO regions for omap1
46 */
47void __init omap1_map_io(void)
Tony Lindgren7b88e622011-10-05 15:14:02 -070048{
Arnd Bergmann9a99b142023-01-04 13:55:37 +010049 iotable_init(omap1_io_desc, ARRAY_SIZE(omap1_io_desc));
Tony Lindgren7b88e622011-10-05 15:14:02 -070050}
Tony Lindgren7b88e622011-10-05 15:14:02 -070051
52/*
53 * Common low-level hardware init for omap1.
54 */
Tony Lindgren8eaa7bb2012-03-05 16:11:04 -080055void __init omap1_init_early(void)
Tony Lindgren7b88e622011-10-05 15:14:02 -070056{
57 omap_check_revision();
58
Tony Lindgrenf577ffd2005-07-10 19:58:12 +010059 /* REVISIT: Refer to OMAP5910 Errata, Advisory SYS_1: "Timeout Abort
60 * on a Posted Write in the TIPB Bridge".
61 */
62 omap_writew(0x0, MPU_PUBLIC_TIPB_CNTL);
63 omap_writew(0x0, MPU_PRIVATE_TIPB_CNTL);
Tony Lindgrenf577ffd2005-07-10 19:58:12 +010064}
Tony Lindgren7c38cf02005-09-08 23:07:38 +010065
Shawn Guo82c3bd02012-04-26 13:49:29 +080066void __init omap1_init_late(void)
67{
68 omap_serial_wakeup_init();
69}
70
Tony Lindgrendf1e9d12010-12-10 09:46:24 -080071/*
72 * NOTE: Please use ioremap + __raw_read/write where possible instead of these
73 */
74
75u8 omap_readb(u32 pa)
76{
77 return __raw_readb(OMAP1_IO_ADDRESS(pa));
78}
79EXPORT_SYMBOL(omap_readb);
80
81u16 omap_readw(u32 pa)
82{
83 return __raw_readw(OMAP1_IO_ADDRESS(pa));
84}
85EXPORT_SYMBOL(omap_readw);
86
87u32 omap_readl(u32 pa)
88{
89 return __raw_readl(OMAP1_IO_ADDRESS(pa));
90}
91EXPORT_SYMBOL(omap_readl);
92
93void omap_writeb(u8 v, u32 pa)
94{
95 __raw_writeb(v, OMAP1_IO_ADDRESS(pa));
96}
97EXPORT_SYMBOL(omap_writeb);
98
99void omap_writew(u16 v, u32 pa)
100{
101 __raw_writew(v, OMAP1_IO_ADDRESS(pa));
102}
103EXPORT_SYMBOL(omap_writew);
104
105void omap_writel(u32 v, u32 pa)
106{
107 __raw_writel(v, OMAP1_IO_ADDRESS(pa));
108}
109EXPORT_SYMBOL(omap_writel);