2008-03-18 10:02:50 +02:00
# ifndef __ARCH_ARM_MACH_OMAP2_CM_REGBITS_24XX_H
# define __ARCH_ARM_MACH_OMAP2_CM_REGBITS_24XX_H
/*
* OMAP24XX Clock Management register bits
*
* Copyright ( C ) 2007 Texas Instruments , Inc .
* Copyright ( C ) 2007 Nokia Corporation
*
* Written by Paul Walmsley
*
* This program is free software ; you can redistribute it and / or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation .
*/
# define OMAP24XX_EN_CAM_SHIFT 31
# define OMAP24XX_EN_WDT4_SHIFT 29
# define OMAP2420_EN_WDT3_SHIFT 28
# define OMAP24XX_EN_MSPRO_SHIFT 27
# define OMAP24XX_EN_FAC_SHIFT 25
# define OMAP2420_EN_EAC_SHIFT 24
# define OMAP24XX_EN_HDQ_SHIFT 23
# define OMAP2420_EN_I2C2_SHIFT 20
# define OMAP2420_EN_I2C1_SHIFT 19
# define OMAP2430_EN_MCBSP5_SHIFT 5
# define OMAP2430_EN_MCBSP4_SHIFT 4
# define OMAP2430_EN_MCBSP3_SHIFT 3
# define OMAP24XX_EN_SSI_SHIFT 1
# define OMAP24XX_EN_MPU_WDT_SHIFT 3
# define OMAP24XX_CLKSEL_MPU_SHIFT 0
2012-11-10 21:22:28 -07:00
# define OMAP24XX_CLKSEL_MPU_WIDTH 5
2008-08-19 11:08:44 +03:00
# define OMAP24XX_AUTOSTATE_MPU_MASK (1 << 0)
2008-03-18 10:02:50 +02:00
# define OMAP24XX_EN_TV_SHIFT 2
# define OMAP24XX_EN_DSS2_SHIFT 1
# define OMAP24XX_EN_DSS1_SHIFT 0
2010-05-20 12:31:04 -06:00
# define OMAP24XX_EN_DSS1_MASK (1 << 0)
2008-03-18 10:02:50 +02:00
# define OMAP2430_EN_I2CHS2_SHIFT 20
# define OMAP2430_EN_I2CHS1_SHIFT 19
# define OMAP2430_EN_MMCHSDB2_SHIFT 17
# define OMAP2430_EN_MMCHSDB1_SHIFT 16
# define OMAP24XX_EN_MAILBOXES_SHIFT 30
# define OMAP2430_EN_SDRC_SHIFT 2
# define OMAP24XX_EN_PKA_SHIFT 4
# define OMAP24XX_EN_AES_SHIFT 3
# define OMAP24XX_EN_RNG_SHIFT 2
# define OMAP24XX_EN_SHA_SHIFT 1
# define OMAP24XX_EN_DES_SHIFT 0
[ARM] OMAP2 PRCM: clean up CM_IDLEST bits
This patch fixes a few OMAP2xxx CM_IDLEST bits that were incorrectly
marked as being OMAP2xxx-wide, when they were actually 2420-specific.
Also, originally when the PRCM register macros were defined, bit shift
macros used a "_SHIFT" suffix, and mask macros used none. This became
a source of bugs and confusion, as the mask macros were mistakenly
used for shift values. Gradually, the mask macros have been updated,
piece by piece, to add a "_MASK" suffix on the end to clarify. This
patch applies this change to the CM_IDLEST_* register bits.
The patch also adds a few bits that were missing, mostly from the 3430ES1
to ES2 revisions.
linux-omap source commits are d18eff5b5fa15e170794397a6a94486d1f774f77,
e1f1a5cc24615fb790cc763c96d1c5cfe6296f5b, and part of
9fe6b6cf8d9e0cbb429fd64553a4b3160a9e99e1
Signed-off-by: Paul Walmsley <paul@pwsan.com>
Signed-off-by: Tony Lindgren <tony@atomide.com>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
2009-01-28 12:18:22 -07:00
# define OMAP24XX_ST_MAILBOXES_SHIFT 30
# define OMAP24XX_ST_HDQ_SHIFT 23
# define OMAP2420_ST_I2C2_SHIFT 20
2010-09-30 02:40:12 +05:30
# define OMAP2430_ST_I2CHS1_SHIFT 19
[ARM] OMAP2 PRCM: clean up CM_IDLEST bits
This patch fixes a few OMAP2xxx CM_IDLEST bits that were incorrectly
marked as being OMAP2xxx-wide, when they were actually 2420-specific.
Also, originally when the PRCM register macros were defined, bit shift
macros used a "_SHIFT" suffix, and mask macros used none. This became
a source of bugs and confusion, as the mask macros were mistakenly
used for shift values. Gradually, the mask macros have been updated,
piece by piece, to add a "_MASK" suffix on the end to clarify. This
patch applies this change to the CM_IDLEST_* register bits.
The patch also adds a few bits that were missing, mostly from the 3430ES1
to ES2 revisions.
linux-omap source commits are d18eff5b5fa15e170794397a6a94486d1f774f77,
e1f1a5cc24615fb790cc763c96d1c5cfe6296f5b, and part of
9fe6b6cf8d9e0cbb429fd64553a4b3160a9e99e1
Signed-off-by: Paul Walmsley <paul@pwsan.com>
Signed-off-by: Tony Lindgren <tony@atomide.com>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
2009-01-28 12:18:22 -07:00
# define OMAP2420_ST_I2C1_SHIFT 19
2010-09-30 02:40:12 +05:30
# define OMAP2430_ST_I2CHS2_SHIFT 20
[ARM] OMAP2 PRCM: clean up CM_IDLEST bits
This patch fixes a few OMAP2xxx CM_IDLEST bits that were incorrectly
marked as being OMAP2xxx-wide, when they were actually 2420-specific.
Also, originally when the PRCM register macros were defined, bit shift
macros used a "_SHIFT" suffix, and mask macros used none. This became
a source of bugs and confusion, as the mask macros were mistakenly
used for shift values. Gradually, the mask macros have been updated,
piece by piece, to add a "_MASK" suffix on the end to clarify. This
patch applies this change to the CM_IDLEST_* register bits.
The patch also adds a few bits that were missing, mostly from the 3430ES1
to ES2 revisions.
linux-omap source commits are d18eff5b5fa15e170794397a6a94486d1f774f77,
e1f1a5cc24615fb790cc763c96d1c5cfe6296f5b, and part of
9fe6b6cf8d9e0cbb429fd64553a4b3160a9e99e1
Signed-off-by: Paul Walmsley <paul@pwsan.com>
Signed-off-by: Tony Lindgren <tony@atomide.com>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
2009-01-28 12:18:22 -07:00
# define OMAP24XX_ST_MCBSP2_SHIFT 16
# define OMAP24XX_ST_MCBSP1_SHIFT 15
# define OMAP24XX_ST_DSS_SHIFT 0
# define OMAP2430_ST_MCBSP5_SHIFT 5
2010-05-20 12:31:04 -06:00
# define OMAP2430_ST_MCBSP4_SHIFT 4
# define OMAP2430_ST_MCBSP3_SHIFT 3
[ARM] OMAP2 PRCM: clean up CM_IDLEST bits
This patch fixes a few OMAP2xxx CM_IDLEST bits that were incorrectly
marked as being OMAP2xxx-wide, when they were actually 2420-specific.
Also, originally when the PRCM register macros were defined, bit shift
macros used a "_SHIFT" suffix, and mask macros used none. This became
a source of bugs and confusion, as the mask macros were mistakenly
used for shift values. Gradually, the mask macros have been updated,
piece by piece, to add a "_MASK" suffix on the end to clarify. This
patch applies this change to the CM_IDLEST_* register bits.
The patch also adds a few bits that were missing, mostly from the 3430ES1
to ES2 revisions.
linux-omap source commits are d18eff5b5fa15e170794397a6a94486d1f774f77,
e1f1a5cc24615fb790cc763c96d1c5cfe6296f5b, and part of
9fe6b6cf8d9e0cbb429fd64553a4b3160a9e99e1
Signed-off-by: Paul Walmsley <paul@pwsan.com>
Signed-off-by: Tony Lindgren <tony@atomide.com>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
2009-01-28 12:18:22 -07:00
# define OMAP24XX_ST_AES_SHIFT 3
# define OMAP24XX_ST_RNG_SHIFT 2
# define OMAP24XX_ST_SHA_SHIFT 1
2011-02-25 15:39:29 -07:00
# define OMAP24XX_AUTO_SDRC_SHIFT 2
2011-02-25 15:39:29 -07:00
# define OMAP24XX_AUTO_GPMC_SHIFT 1
# define OMAP24XX_AUTO_SDMA_SHIFT 0
2008-03-18 10:02:50 +02:00
# define OMAP24XX_CLKSEL_USB_MASK (0x7 << 25)
# define OMAP24XX_CLKSEL_SSI_MASK (0x1f << 20)
# define OMAP2420_CLKSEL_VLYNQ_MASK (0x1f << 15)
# define OMAP24XX_CLKSEL_DSS2_MASK (0x1 << 13)
# define OMAP24XX_CLKSEL_DSS1_MASK (0x1f << 8)
# define OMAP24XX_CLKSEL_L4_SHIFT 5
2012-11-10 21:22:28 -07:00
# define OMAP24XX_CLKSEL_L4_WIDTH 2
2008-03-18 10:02:50 +02:00
# define OMAP24XX_CLKSEL_L3_SHIFT 0
2012-11-10 21:22:28 -07:00
# define OMAP24XX_CLKSEL_L3_WIDTH 5
2008-03-18 10:02:50 +02:00
# define OMAP24XX_CLKSEL_GPT12_MASK (0x3 << 22)
# define OMAP24XX_CLKSEL_GPT11_MASK (0x3 << 20)
# define OMAP24XX_CLKSEL_GPT10_MASK (0x3 << 18)
# define OMAP24XX_CLKSEL_GPT9_MASK (0x3 << 16)
# define OMAP24XX_CLKSEL_GPT8_MASK (0x3 << 14)
# define OMAP24XX_CLKSEL_GPT7_MASK (0x3 << 12)
# define OMAP24XX_CLKSEL_GPT6_MASK (0x3 << 10)
# define OMAP24XX_CLKSEL_GPT5_MASK (0x3 << 8)
# define OMAP24XX_CLKSEL_GPT4_MASK (0x3 << 6)
# define OMAP24XX_CLKSEL_GPT3_MASK (0x3 << 4)
# define OMAP24XX_CLKSEL_GPT2_MASK (0x3 << 2)
2008-08-19 11:08:44 +03:00
# define OMAP24XX_AUTOSTATE_DSS_MASK (1 << 2)
# define OMAP24XX_AUTOSTATE_L4_MASK (1 << 1)
# define OMAP24XX_AUTOSTATE_L3_MASK (1 << 0)
2008-03-18 10:02:50 +02:00
# define OMAP24XX_EN_3D_SHIFT 2
# define OMAP24XX_EN_2D_SHIFT 1
2008-08-19 11:08:44 +03:00
# define OMAP24XX_AUTOSTATE_GFX_MASK (1 << 0)
2008-03-18 10:02:50 +02:00
# define OMAP2430_EN_ICR_SHIFT 6
# define OMAP24XX_EN_OMAPCTRL_SHIFT 5
# define OMAP24XX_EN_WDT1_SHIFT 4
# define OMAP24XX_EN_32KSYNC_SHIFT 1
[ARM] OMAP2 PRCM: clean up CM_IDLEST bits
This patch fixes a few OMAP2xxx CM_IDLEST bits that were incorrectly
marked as being OMAP2xxx-wide, when they were actually 2420-specific.
Also, originally when the PRCM register macros were defined, bit shift
macros used a "_SHIFT" suffix, and mask macros used none. This became
a source of bugs and confusion, as the mask macros were mistakenly
used for shift values. Gradually, the mask macros have been updated,
piece by piece, to add a "_MASK" suffix on the end to clarify. This
patch applies this change to the CM_IDLEST_* register bits.
The patch also adds a few bits that were missing, mostly from the 3430ES1
to ES2 revisions.
linux-omap source commits are d18eff5b5fa15e170794397a6a94486d1f774f77,
e1f1a5cc24615fb790cc763c96d1c5cfe6296f5b, and part of
9fe6b6cf8d9e0cbb429fd64553a4b3160a9e99e1
Signed-off-by: Paul Walmsley <paul@pwsan.com>
Signed-off-by: Tony Lindgren <tony@atomide.com>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
2009-01-28 12:18:22 -07:00
# define OMAP24XX_ST_MPU_WDT_SHIFT 3
# define OMAP24XX_ST_32KSYNC_SHIFT 1
2008-03-18 10:02:50 +02:00
# define OMAP24XX_CLKSEL_GPT1_MASK (0x3 << 0)
# define OMAP24XX_EN_54M_PLL_SHIFT 6
# define OMAP24XX_EN_96M_PLL_SHIFT 2
# define OMAP24XX_EN_DPLL_MASK (0x3 << 0)
2012-10-29 20:56:17 -06:00
# define OMAP24XX_ST_54M_APLL_SHIFT 9
# define OMAP24XX_ST_96M_APLL_SHIFT 8
2008-03-18 10:02:50 +02:00
# define OMAP24XX_AUTO_54M_MASK (0x3 << 6)
# define OMAP24XX_AUTO_96M_MASK (0x3 << 2)
# define OMAP24XX_AUTO_DPLL_SHIFT 0
# define OMAP24XX_AUTO_DPLL_MASK (0x3 << 0)
# define OMAP24XX_APLLS_CLKIN_SHIFT 23
2014-02-20 19:09:18 +02:00
# define OMAP24XX_APLLS_CLKIN_WIDTH 3
2008-03-18 10:02:50 +02:00
# define OMAP24XX_APLLS_CLKIN_MASK (0x7 << 23)
# define OMAP24XX_DPLL_MULT_MASK (0x3ff << 12)
# define OMAP24XX_DPLL_DIV_MASK (0xf << 8)
# define OMAP24XX_54M_SOURCE_SHIFT 5
2012-11-10 21:22:28 -07:00
# define OMAP24XX_54M_SOURCE_WIDTH 1
2008-03-18 10:02:50 +02:00
# define OMAP2430_96M_SOURCE_SHIFT 4
2012-11-10 21:22:28 -07:00
# define OMAP2430_96M_SOURCE_WIDTH 1
2010-05-20 12:31:04 -06:00
# define OMAP24XX_48M_SOURCE_MASK (1 << 3)
2008-03-18 10:02:50 +02:00
# define OMAP24XX_CORE_CLK_SRC_MASK (0x3 << 0)
# define OMAP2420_EN_IVA_COP_SHIFT 10
# define OMAP2420_EN_IVA_MPU_SHIFT 8
# define OMAP24XX_CM_FCLKEN_DSP_EN_DSP_SHIFT 0
# define OMAP2420_EN_DSP_IPI_SHIFT 1
# define OMAP2420_CLKSEL_IVA_MASK (0x1f << 8)
# define OMAP24XX_CLKSEL_DSP_IF_MASK (0x3 << 5)
# define OMAP24XX_CLKSEL_DSP_MASK (0x1f << 0)
2008-08-19 11:08:44 +03:00
# define OMAP2420_AUTOSTATE_IVA_MASK (1 << 8)
# define OMAP24XX_AUTOSTATE_DSP_MASK (1 << 0)
2008-03-18 10:02:50 +02:00
# define OMAP2430_EN_OSC_SHIFT 1
# define OMAP2430_CM_ICLKEN_MDM_EN_MDM_SHIFT 0
# define OMAP2430_CLKSEL_MDM_MASK (0xf << 0)
2008-08-19 11:08:44 +03:00
# define OMAP2430_AUTOSTATE_MDM_MASK (1 << 0)
2010-12-21 21:05:15 -07:00
# define OMAP24XX_CLKSTCTRL_DISABLE_AUTO 0x0
# define OMAP24XX_CLKSTCTRL_ENABLE_AUTO 0x1
2008-03-18 10:02:50 +02:00
# endif