01539ba2a7
* 'omap-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap-2.6: (243 commits) omap2: Make OMAP2PLUS select OMAP_DM_TIMER OMAP4: hwmod data: Fix alignment and end of line in structurefields OMAP4: hwmod data: Move the DMA structures OMAP4: hwmod data: Move the smartreflex structures OMAP4: hwmod data: Fix missing SIDLE_SMART_WKUP in smartreflexsysc arm: omap: tusb6010: add name for MUSB IRQ arm: omap: craneboard: Add USB EHCI support omap2+: Initialize serial port for dynamic remuxing for n8x0 omap2+: Add struct omap_board_data and use it for platform level serial init omap2+: Allow hwmod state changes to mux pads based on the state changes omap2+: Add support for hwmod specific muxing of devices omap2+: Add omap_mux_get_by_name OMAP2: PM: fix compile error when !CONFIG_SUSPEND MAINTAINERS: OMAP: hwmod: update hwmod code, data maintainership OMAP4: Smartreflex framework extensions OMAP4: hwmod: Add inital data for smartreflex modules. OMAP4: PM: Program correct init voltages for scalable VDDs OMAP4: Adding voltage driver support OMAP4: Register voltage PMIC parameters with the voltage layer OMAP3: PM: Program correct init voltages for VDD1 and VDD2 ... Fix up trivial conflict in arch/arm/plat-omap/Kconfig
50 lines
1.1 KiB
C
50 lines
1.1 KiB
C
/*
|
|
* clkdev <-> OMAP integration
|
|
*
|
|
* Russell King <linux@arm.linux.org.uk>
|
|
*
|
|
*/
|
|
|
|
#ifndef __ARCH_ARM_PLAT_OMAP_INCLUDE_PLAT_CLKDEV_OMAP_H
|
|
#define __ARCH_ARM_PLAT_OMAP_INCLUDE_PLAT_CLKDEV_OMAP_H
|
|
|
|
#include <linux/clkdev.h>
|
|
|
|
struct omap_clk {
|
|
u16 cpu;
|
|
struct clk_lookup lk;
|
|
};
|
|
|
|
#define CLK(dev, con, ck, cp) \
|
|
{ \
|
|
.cpu = cp, \
|
|
.lk = { \
|
|
.dev_id = dev, \
|
|
.con_id = con, \
|
|
.clk = ck, \
|
|
}, \
|
|
}
|
|
|
|
/* Platform flags for the clkdev-OMAP integration code */
|
|
#define CK_310 (1 << 0)
|
|
#define CK_7XX (1 << 1) /* 7xx, 850 */
|
|
#define CK_1510 (1 << 2)
|
|
#define CK_16XX (1 << 3) /* 16xx, 17xx, 5912 */
|
|
#define CK_242X (1 << 4)
|
|
#define CK_243X (1 << 5) /* 243x, 253x */
|
|
#define CK_3430ES1 (1 << 6) /* 34xxES1 only */
|
|
#define CK_3430ES2PLUS (1 << 7) /* 34xxES2, ES3, non-Sitara 35xx only */
|
|
#define CK_3505 (1 << 8)
|
|
#define CK_3517 (1 << 9)
|
|
#define CK_36XX (1 << 10) /* 36xx/37xx-specific clocks */
|
|
#define CK_443X (1 << 11)
|
|
|
|
|
|
#define CK_34XX (CK_3430ES1 | CK_3430ES2PLUS)
|
|
#define CK_AM35XX (CK_3505 | CK_3517) /* all Sitara AM35xx */
|
|
#define CK_3XXX (CK_34XX | CK_AM35XX | CK_36XX)
|
|
|
|
|
|
#endif
|
|
|