Thomas Gleixner | d2912cb | 2019-06-04 10:11:33 +0200 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0-only |
Tony Lindgren | f577ffd | 2005-07-10 19:58:12 +0100 | [diff] [blame] | 2 | /* |
| 3 | * linux/arch/arm/mach-omap1/io.c |
| 4 | * |
| 5 | * OMAP1 I/O mapping code |
Tony Lindgren | f577ffd | 2005-07-10 19:58:12 +0100 | [diff] [blame] | 6 | */ |
| 7 | |
Tony Lindgren | f577ffd | 2005-07-10 19:58:12 +0100 | [diff] [blame] | 8 | #include <linux/module.h> |
| 9 | #include <linux/kernel.h> |
| 10 | #include <linux/init.h> |
Russell King | fced80c | 2008-09-06 12:10:45 +0100 | [diff] [blame] | 11 | #include <linux/io.h> |
Arnd Bergmann | 7e0a9e6 | 2019-08-06 16:16:03 +0200 | [diff] [blame] | 12 | #include <linux/omap-dma.h> |
Tony Lindgren | f577ffd | 2005-07-10 19:58:12 +0100 | [diff] [blame] | 13 | |
Tony Lindgren | 53d9cc7 | 2006-02-08 22:06:45 +0000 | [diff] [blame] | 14 | #include <asm/tlb.h> |
Tony Lindgren | f577ffd | 2005-07-10 19:58:12 +0100 | [diff] [blame] | 15 | #include <asm/mach/map.h> |
Tony Lindgren | 2e3ee9f | 2012-02-24 10:34:34 -0800 | [diff] [blame] | 16 | |
Arnd Bergmann | 7e0a9e6 | 2019-08-06 16:16:03 +0200 | [diff] [blame] | 17 | #include "tc.h" |
Tony Lindgren | 2e3ee9f | 2012-02-24 10:34:34 -0800 | [diff] [blame] | 18 | #include "iomap.h" |
| 19 | #include "common.h" |
Paul Walmsley | 5265050 | 2009-12-08 16:29:38 -0700 | [diff] [blame] | 20 | |
Tony Lindgren | f577ffd | 2005-07-10 19:58:12 +0100 | [diff] [blame] | 21 | /* |
| 22 | * The machine specific code may provide the extra mapping besides the |
| 23 | * default mapping provided here. |
| 24 | */ |
Arnd Bergmann | 9a99b14 | 2023-01-04 13:55:37 +0100 | [diff] [blame] | 25 | static struct map_desc omap1_io_desc[] __initdata = { |
Deepak Saxena | 9fe133b | 2005-10-28 15:19:00 +0100 | [diff] [blame] | 26 | { |
Arnd Bergmann | 980a637 | 2023-01-04 09:35:09 +0100 | [diff] [blame] | 27 | .virtual = OMAP1_IO_VIRT, |
| 28 | .pfn = __phys_to_pfn(OMAP1_IO_PHYS), |
| 29 | .length = OMAP1_IO_SIZE, |
| 30 | .type = MT_DEVICE |
Arnd Bergmann | 9a99b14 | 2023-01-04 13:55:37 +0100 | [diff] [blame] | 31 | }, { |
| 32 | .virtual = OMAP1_DSP_BASE, |
| 33 | .pfn = __phys_to_pfn(OMAP1_DSP_START), |
| 34 | .length = OMAP1_DSP_SIZE, |
Deepak Saxena | 9fe133b | 2005-10-28 15:19:00 +0100 | [diff] [blame] | 35 | .type = MT_DEVICE |
| 36 | }, { |
Arnd Bergmann | 9a99b14 | 2023-01-04 13:55:37 +0100 | [diff] [blame] | 37 | .virtual = OMAP1_DSPREG_BASE, |
| 38 | .pfn = __phys_to_pfn(OMAP1_DSPREG_START), |
| 39 | .length = OMAP1_DSPREG_SIZE, |
Deepak Saxena | 9fe133b | 2005-10-28 15:19:00 +0100 | [diff] [blame] | 40 | .type = MT_DEVICE |
| 41 | } |
Tony Lindgren | f577ffd | 2005-07-10 19:58:12 +0100 | [diff] [blame] | 42 | }; |
Tony Lindgren | f577ffd | 2005-07-10 19:58:12 +0100 | [diff] [blame] | 43 | |
Arnd Bergmann | 9a99b14 | 2023-01-04 13:55:37 +0100 | [diff] [blame] | 44 | /* |
| 45 | * Maps common IO regions for omap1 |
| 46 | */ |
| 47 | void __init omap1_map_io(void) |
Tony Lindgren | 7b88e62 | 2011-10-05 15:14:02 -0700 | [diff] [blame] | 48 | { |
Arnd Bergmann | 9a99b14 | 2023-01-04 13:55:37 +0100 | [diff] [blame] | 49 | iotable_init(omap1_io_desc, ARRAY_SIZE(omap1_io_desc)); |
Tony Lindgren | 7b88e62 | 2011-10-05 15:14:02 -0700 | [diff] [blame] | 50 | } |
Tony Lindgren | 7b88e62 | 2011-10-05 15:14:02 -0700 | [diff] [blame] | 51 | |
| 52 | /* |
| 53 | * Common low-level hardware init for omap1. |
| 54 | */ |
Tony Lindgren | 8eaa7bb | 2012-03-05 16:11:04 -0800 | [diff] [blame] | 55 | void __init omap1_init_early(void) |
Tony Lindgren | 7b88e62 | 2011-10-05 15:14:02 -0700 | [diff] [blame] | 56 | { |
| 57 | omap_check_revision(); |
| 58 | |
Tony Lindgren | f577ffd | 2005-07-10 19:58:12 +0100 | [diff] [blame] | 59 | /* 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 Lindgren | f577ffd | 2005-07-10 19:58:12 +0100 | [diff] [blame] | 64 | } |
Tony Lindgren | 7c38cf0 | 2005-09-08 23:07:38 +0100 | [diff] [blame] | 65 | |
Shawn Guo | 82c3bd0 | 2012-04-26 13:49:29 +0800 | [diff] [blame] | 66 | void __init omap1_init_late(void) |
| 67 | { |
| 68 | omap_serial_wakeup_init(); |
| 69 | } |
| 70 | |
Tony Lindgren | df1e9d1 | 2010-12-10 09:46:24 -0800 | [diff] [blame] | 71 | /* |
| 72 | * NOTE: Please use ioremap + __raw_read/write where possible instead of these |
| 73 | */ |
| 74 | |
| 75 | u8 omap_readb(u32 pa) |
| 76 | { |
| 77 | return __raw_readb(OMAP1_IO_ADDRESS(pa)); |
| 78 | } |
| 79 | EXPORT_SYMBOL(omap_readb); |
| 80 | |
| 81 | u16 omap_readw(u32 pa) |
| 82 | { |
| 83 | return __raw_readw(OMAP1_IO_ADDRESS(pa)); |
| 84 | } |
| 85 | EXPORT_SYMBOL(omap_readw); |
| 86 | |
| 87 | u32 omap_readl(u32 pa) |
| 88 | { |
| 89 | return __raw_readl(OMAP1_IO_ADDRESS(pa)); |
| 90 | } |
| 91 | EXPORT_SYMBOL(omap_readl); |
| 92 | |
| 93 | void omap_writeb(u8 v, u32 pa) |
| 94 | { |
| 95 | __raw_writeb(v, OMAP1_IO_ADDRESS(pa)); |
| 96 | } |
| 97 | EXPORT_SYMBOL(omap_writeb); |
| 98 | |
| 99 | void omap_writew(u16 v, u32 pa) |
| 100 | { |
| 101 | __raw_writew(v, OMAP1_IO_ADDRESS(pa)); |
| 102 | } |
| 103 | EXPORT_SYMBOL(omap_writew); |
| 104 | |
| 105 | void omap_writel(u32 v, u32 pa) |
| 106 | { |
| 107 | __raw_writel(v, OMAP1_IO_ADDRESS(pa)); |
| 108 | } |
| 109 | EXPORT_SYMBOL(omap_writel); |