| Paul Walmsley | 2ace831 | 2010-12-21 21:05:14 -0700 | [diff] [blame] | 1 | /* | 
 | 2 |  * OMAP4 PRCM definitions | 
 | 3 |  * | 
 | 4 |  * Copyright (C) 2010 Texas Instruments, Inc. | 
 | 5 |  * Copyright (C) 2010 Nokia Corporation | 
 | 6 |  * | 
 | 7 |  * Paul Walmsley | 
 | 8 |  * | 
 | 9 |  * This program is free software; you can redistribute it and/or modify | 
 | 10 |  * it under the terms of the GNU General Public License version 2 as | 
 | 11 |  * published by the Free Software Foundation. | 
 | 12 |  * | 
 | 13 |  * This file contains macros and functions that are common to all of | 
 | 14 |  * the PRM/CM/PRCM blocks on the OMAP4 devices: PRM, CM1, CM2, | 
 | 15 |  * PRCM_MPU, SCRM | 
 | 16 |  */ | 
 | 17 |  | 
 | 18 | #ifndef __ARCH_ARM_MACH_OMAP2_PRCM44XX_H | 
 | 19 | #define __ARCH_ARM_MACH_OMAP2_PRCM44XX_H | 
 | 20 |  | 
 | 21 | /* | 
 | 22 |  * OMAP4 PRCM partition IDs | 
 | 23 |  * | 
 | 24 |  * The numbers and order are arbitrary, but 0 is reserved for the | 
 | 25 |  * 'invalid' partition in case someone forgets to add a | 
 | 26 |  * .prcm_partition field. | 
 | 27 |  */ | 
 | 28 | #define OMAP4430_INVALID_PRCM_PARTITION		0 | 
 | 29 | #define OMAP4430_PRM_PARTITION			1 | 
 | 30 | #define OMAP4430_CM1_PARTITION			2 | 
 | 31 | #define OMAP4430_CM2_PARTITION			3 | 
 | 32 | #define OMAP4430_SCRM_PARTITION			4 | 
 | 33 | #define OMAP4430_PRCM_MPU_PARTITION		5 | 
 | 34 |  | 
 | 35 | /* | 
 | 36 |  * OMAP4_MAX_PRCM_PARTITIONS: set to the highest value of the PRCM partition | 
 | 37 |  * IDs, plus one | 
 | 38 |  */ | 
 | 39 | #define OMAP4_MAX_PRCM_PARTITIONS		6 | 
 | 40 |  | 
 | 41 |  | 
 | 42 | #endif |