Russell King | a09e64f | 2008-08-05 16:14:15 +0100 | [diff] [blame] | 1 | /* |
| 2 | * arch/arm/plat-omap/include/mach/common.h |
| 3 | * |
| 4 | * Header for code common to all OMAP machines. |
| 5 | * |
| 6 | * This program is free software; you can redistribute it and/or modify it |
| 7 | * under the terms of the GNU General Public License as published by the |
| 8 | * Free Software Foundation; either version 2 of the License, or (at your |
| 9 | * option) any later version. |
| 10 | * |
| 11 | * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED |
| 12 | * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF |
| 13 | * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN |
| 14 | * NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 15 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT |
| 16 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF |
| 17 | * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON |
| 18 | * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 19 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
| 20 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 21 | * |
| 22 | * You should have received a copy of the GNU General Public License along |
| 23 | * with this program; if not, write to the Free Software Foundation, Inc., |
| 24 | * 675 Mass Ave, Cambridge, MA 02139, USA. |
| 25 | */ |
| 26 | |
| 27 | #ifndef __ARCH_ARM_MACH_OMAP_COMMON_H |
| 28 | #define __ARCH_ARM_MACH_OMAP_COMMON_H |
| 29 | |
Paul Walmsley | 59fb659 | 2010-12-21 15:30:55 -0700 | [diff] [blame] | 30 | #include <linux/delay.h> |
| 31 | |
Tony Lindgren | b63128e | 2009-12-11 16:16:32 -0800 | [diff] [blame] | 32 | #include <plat/i2c.h> |
Russell King | a09e64f | 2008-08-05 16:14:15 +0100 | [diff] [blame] | 33 | |
| 34 | struct sys_timer; |
| 35 | |
| 36 | extern void omap_map_common_io(void); |
| 37 | extern struct sys_timer omap_timer; |
Tony Lindgren | 05b5ca9 | 2011-01-18 12:42:23 -0800 | [diff] [blame] | 38 | extern bool omap_32k_timer_init(void); |
Paul Walmsley | d8328f3 | 2011-01-15 21:32:01 -0700 | [diff] [blame] | 39 | extern int __init omap_init_clocksource_32k(void); |
Tony Lindgren | 4912cf0 | 2011-01-18 17:00:00 -0800 | [diff] [blame] | 40 | extern unsigned long long notrace omap_32k_sched_clock(void); |
Russell King | a09e64f | 2008-08-05 16:14:15 +0100 | [diff] [blame] | 41 | |
Russell King | 71ee7da | 2010-05-23 10:18:16 +0100 | [diff] [blame] | 42 | extern void omap_reserve(void); |
| 43 | |
Santosh Shilimkar | b7ebb10 | 2010-02-15 18:03:37 +0530 | [diff] [blame] | 44 | /* |
| 45 | * IO bases for various OMAP processors |
| 46 | * Except the tap base, rest all the io bases |
| 47 | * listed are physical addresses. |
| 48 | */ |
Russell King | a09e64f | 2008-08-05 16:14:15 +0100 | [diff] [blame] | 49 | struct omap_globals { |
Tony Lindgren | 0e56484 | 2008-10-06 15:49:16 +0300 | [diff] [blame] | 50 | u32 class; /* OMAP class to detect */ |
Russell King | a09e64f | 2008-08-05 16:14:15 +0100 | [diff] [blame] | 51 | void __iomem *tap; /* Control module ID code */ |
Santosh Shilimkar | b7ebb10 | 2010-02-15 18:03:37 +0530 | [diff] [blame] | 52 | unsigned long sdrc; /* SDRAM Controller */ |
| 53 | unsigned long sms; /* SDRAM Memory Scheduler */ |
| 54 | unsigned long ctrl; /* System Control Module */ |
Santosh Shilimkar | 0c34924 | 2010-09-27 14:02:57 -0600 | [diff] [blame] | 55 | unsigned long ctrl_pad; /* PAD Control Module */ |
Santosh Shilimkar | b7ebb10 | 2010-02-15 18:03:37 +0530 | [diff] [blame] | 56 | unsigned long prm; /* Power and Reset Management */ |
| 57 | unsigned long cm; /* Clock Management */ |
| 58 | unsigned long cm2; |
Russell King | a09e64f | 2008-08-05 16:14:15 +0100 | [diff] [blame] | 59 | }; |
| 60 | |
| 61 | void omap2_set_globals_242x(void); |
| 62 | void omap2_set_globals_243x(void); |
Sergio Aguirre | c573bcf | 2010-08-04 14:43:18 +0300 | [diff] [blame] | 63 | void omap2_set_globals_3xxx(void); |
Santosh Shilimkar | 4416907 | 2009-05-28 14:16:04 -0700 | [diff] [blame] | 64 | void omap2_set_globals_443x(void); |
Hemant Pedanekar | 4bd7be2 | 2011-02-16 08:31:39 -0800 | [diff] [blame] | 65 | void omap2_set_globals_ti816x(void); |
Russell King | a09e64f | 2008-08-05 16:14:15 +0100 | [diff] [blame] | 66 | |
| 67 | /* These get called from omap2_set_globals_xxxx(), do not call these */ |
Tony Lindgren | 0e56484 | 2008-10-06 15:49:16 +0300 | [diff] [blame] | 68 | void omap2_set_globals_tap(struct omap_globals *); |
Paul Walmsley | f2ab997 | 2009-01-28 12:27:37 -0700 | [diff] [blame] | 69 | void omap2_set_globals_sdrc(struct omap_globals *); |
Russell King | a09e64f | 2008-08-05 16:14:15 +0100 | [diff] [blame] | 70 | void omap2_set_globals_control(struct omap_globals *); |
| 71 | void omap2_set_globals_prcm(struct omap_globals *); |
| 72 | |
Mike Rapoport | 869fef4 | 2010-08-04 14:43:18 +0300 | [diff] [blame] | 73 | void omap3_map_io(void); |
| 74 | |
Paul Walmsley | 6f8b7ff | 2009-12-08 16:33:16 -0700 | [diff] [blame] | 75 | /** |
| 76 | * omap_test_timeout - busy-loop, testing a condition |
| 77 | * @cond: condition to test until it evaluates to true |
| 78 | * @timeout: maximum number of microseconds in the timeout |
| 79 | * @index: loop index (integer) |
| 80 | * |
| 81 | * Loop waiting for @cond to become true or until at least @timeout |
| 82 | * microseconds have passed. To use, define some integer @index in the |
| 83 | * calling code. After running, if @index == @timeout, then the loop has |
| 84 | * timed out. |
| 85 | */ |
| 86 | #define omap_test_timeout(cond, timeout, index) \ |
| 87 | ({ \ |
| 88 | for (index = 0; index < timeout; index++) { \ |
| 89 | if (cond) \ |
| 90 | break; \ |
| 91 | udelay(1); \ |
| 92 | } \ |
| 93 | }) |
| 94 | |
Kevin Hilman | 6f88e9b | 2010-07-26 16:34:31 -0600 | [diff] [blame] | 95 | extern struct device *omap2_get_mpuss_device(void); |
Thara Gopinath | b3294e2 | 2010-09-01 13:44:53 +0530 | [diff] [blame] | 96 | extern struct device *omap2_get_iva_device(void); |
Kevin Hilman | 6f88e9b | 2010-07-26 16:34:31 -0600 | [diff] [blame] | 97 | extern struct device *omap2_get_l3_device(void); |
Thara Gopinath | b3294e2 | 2010-09-01 13:44:53 +0530 | [diff] [blame] | 98 | extern struct device *omap4_get_dsp_device(void); |
Kevin Hilman | 6f88e9b | 2010-07-26 16:34:31 -0600 | [diff] [blame] | 99 | |
Russell King | a09e64f | 2008-08-05 16:14:15 +0100 | [diff] [blame] | 100 | #endif /* __ARCH_ARM_MACH_OMAP_COMMON_H */ |