drm/nouveau: consume the return of large GSP message
[drm/drm-misc.git] / arch / arm / mach-omap1 / io.c
blob1f20fe99be57dd5829ba3e8aafe2c53118e1ac1e
1 // SPDX-License-Identifier: GPL-2.0-only
2 /*
3 * linux/arch/arm/mach-omap1/io.c
5 * OMAP1 I/O mapping code
6 */
8 #include <linux/module.h>
9 #include <linux/kernel.h>
10 #include <linux/init.h>
11 #include <linux/io.h>
12 #include <linux/omap-dma.h>
14 #include <asm/tlb.h>
15 #include <asm/mach/map.h>
17 #include "tc.h"
18 #include "iomap.h"
19 #include "common.h"
22 * The machine specific code may provide the extra mapping besides the
23 * default mapping provided here.
25 static struct map_desc omap1_io_desc[] __initdata = {
27 .virtual = OMAP1_IO_VIRT,
28 .pfn = __phys_to_pfn(OMAP1_IO_PHYS),
29 .length = OMAP1_IO_SIZE,
30 .type = MT_DEVICE
31 }, {
32 .virtual = OMAP1_DSP_BASE,
33 .pfn = __phys_to_pfn(OMAP1_DSP_START),
34 .length = OMAP1_DSP_SIZE,
35 .type = MT_DEVICE
36 }, {
37 .virtual = OMAP1_DSPREG_BASE,
38 .pfn = __phys_to_pfn(OMAP1_DSPREG_START),
39 .length = OMAP1_DSPREG_SIZE,
40 .type = MT_DEVICE
45 * Maps common IO regions for omap1
47 void __init omap1_map_io(void)
49 iotable_init(omap1_io_desc, ARRAY_SIZE(omap1_io_desc));
53 * Common low-level hardware init for omap1.
55 void __init omap1_init_early(void)
57 omap_check_revision();
59 /* REVISIT: Refer to OMAP5910 Errata, Advisory SYS_1: "Timeout Abort
60 * on a Posted Write in the TIPB Bridge".
62 omap_writew(0x0, MPU_PUBLIC_TIPB_CNTL);
63 omap_writew(0x0, MPU_PRIVATE_TIPB_CNTL);
66 void __init omap1_init_late(void)
68 omap_serial_wakeup_init();
72 * NOTE: Please use ioremap + __raw_read/write where possible instead of these
75 u8 omap_readb(u32 pa)
77 return __raw_readb(OMAP1_IO_ADDRESS(pa));
79 EXPORT_SYMBOL(omap_readb);
81 u16 omap_readw(u32 pa)
83 return __raw_readw(OMAP1_IO_ADDRESS(pa));
85 EXPORT_SYMBOL(omap_readw);
87 u32 omap_readl(u32 pa)
89 return __raw_readl(OMAP1_IO_ADDRESS(pa));
91 EXPORT_SYMBOL(omap_readl);
93 void omap_writeb(u8 v, u32 pa)
95 __raw_writeb(v, OMAP1_IO_ADDRESS(pa));
97 EXPORT_SYMBOL(omap_writeb);
99 void omap_writew(u16 v, u32 pa)
101 __raw_writew(v, OMAP1_IO_ADDRESS(pa));
103 EXPORT_SYMBOL(omap_writew);
105 void omap_writel(u32 v, u32 pa)
107 __raw_writel(v, OMAP1_IO_ADDRESS(pa));
109 EXPORT_SYMBOL(omap_writel);