2019-06-04 11:11:33 +03:00
/* SPDX-License-Identifier: GPL-2.0-only */
2008-03-18 15:53:17 +03:00
# ifndef __ARCH_ARM_MACH_OMAP2_CM_REGBITS_34XX_H
# define __ARCH_ARM_MACH_OMAP2_CM_REGBITS_34XX_H
/*
* OMAP3430 Clock Management register bits
*
* Copyright ( C ) 2007 - 2008 Texas Instruments , Inc .
* Copyright ( C ) 2007 - 2008 Nokia Corporation
*
* Written by Paul Walmsley
*/
2010-02-24 22:05:48 +03:00
# define OMAP3430_CM_FCLKEN_IVA2_EN_IVA2_MASK (1 << 0)
2012-09-03 21:50:52 +04:00
# define OMAP3430_ST_IVA2_SHIFT 0
2008-03-18 15:53:17 +03:00
# define OMAP3430_CLKTRCTRL_IVA2_MASK (0x3 << 0)
2008-08-19 12:08:44 +04:00
# define OMAP3430_CLKACTIVITY_IVA2_MASK (1 << 0)
2008-03-18 15:53:17 +03:00
# define OMAP3430_CLKTRCTRL_MPU_MASK (0x3 << 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 22:18:22 +03:00
# define OMAP3430_ST_AES2_SHIFT 28
# define OMAP3430_ST_SHA12_SHIFT 27
2012-06-28 00:53:46 +04:00
# define AM35XX_ST_UART4_SHIFT 23
[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 22:18:22 +03:00
# define OMAP3430_ST_HDQ_SHIFT 22
# define OMAP3430ES2_ST_SSI_IDLE_SHIFT 8
# define OMAP3430_ST_MAILBOXES_SHIFT 7
2012-09-24 03:28:21 +04:00
# define OMAP3430_ST_SAD2D_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 22:18:22 +03:00
# define OMAP3430_ST_SDMA_SHIFT 2
2008-03-18 15:53:17 +03:00
# define OMAP3430ES2_ST_USBTLL_SHIFT 2
# define OMAP3430ES1_CLKTRCTRL_D2D_MASK (0x3 << 4)
# define OMAP3430_CLKTRCTRL_L4_MASK (0x3 << 2)
# define OMAP3430_CLKTRCTRL_L3_MASK (0x3 << 0)
# define OMAP3430ES1_CLKTRCTRL_GFX_MASK (0x3 << 0)
2008-08-19 12:08:44 +04:00
# define OMAP3430ES2_CLKTRCTRL_SGX_MASK (0x3 << 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 22:18:22 +03:00
# define OMAP3430_ST_WDT2_SHIFT 5
# define OMAP3430_ST_32KSYNC_SHIFT 2
2008-03-18 15:53:17 +03:00
# define OMAP3430_AUTO_PERIPH_DPLL_MASK (0x7 << 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 22:18:22 +03:00
# define OMAP3430ES2_ST_DSS_IDLE_SHIFT 1
2008-03-18 15:53:17 +03:00
# define OMAP3430_CLKTRCTRL_DSS_MASK (0x3 << 0)
# define OMAP3430_CLKTRCTRL_CAM_MASK (0x3 << 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 22:18:22 +03:00
# define OMAP3430_ST_MCBSP4_SHIFT 2
# define OMAP3430_ST_MCBSP3_SHIFT 1
# define OMAP3430_ST_MCBSP2_SHIFT 0
2008-03-18 15:53:17 +03:00
# define OMAP3430_CLKTRCTRL_PER_MASK (0x3 << 0)
# define OMAP3430_CLKTRCTRL_EMU_MASK (0x3 << 0)
# define OMAP3430_CLKTRCTRL_NEON_MASK (0x3 << 0)
# define OMAP3430ES2_EN_USBHOST2_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 22:18:22 +03:00
# define OMAP3430ES2_ST_USBHOST_IDLE_SHIFT 1
2008-03-18 15:53:17 +03:00
# define OMAP3430ES2_CLKTRCTRL_USBHOST_MASK (3 << 0)
2010-12-22 07:05:15 +03:00
# define OMAP34XX_CLKSTCTRL_DISABLE_AUTO 0x0
# define OMAP34XX_CLKSTCTRL_FORCE_SLEEP 0x1
# define OMAP34XX_CLKSTCTRL_FORCE_WAKEUP 0x2
# define OMAP34XX_CLKSTCTRL_ENABLE_AUTO 0x3
2008-03-18 15:53:17 +03:00
# endif