Symbol: cm_ll_data
arch/arm/mach-omap2/cm.h
74
extern int cm_register(const struct cm_ll_data *cld);
arch/arm/mach-omap2/cm.h
75
extern int cm_unregister(const struct cm_ll_data *cld);
arch/arm/mach-omap2/cm2xxx.c
288
static const struct cm_ll_data omap2xxx_cm_ll_data = {
arch/arm/mach-omap2/cm33xx.c
407
static const struct cm_ll_data am33xx_cm_ll_data = {
arch/arm/mach-omap2/cm3xxx.c
662
static const struct cm_ll_data omap3xxx_cm_ll_data = {
arch/arm/mach-omap2/cm_common.c
110
if (!cm_ll_data->wait_module_idle) {
arch/arm/mach-omap2/cm_common.c
116
return cm_ll_data->wait_module_idle(part, prcm_mod, idlest_reg,
arch/arm/mach-omap2/cm_common.c
133
if (!cm_ll_data->module_enable) {
arch/arm/mach-omap2/cm_common.c
139
cm_ll_data->module_enable(mode, part, inst, clkctrl_offs);
arch/arm/mach-omap2/cm_common.c
155
if (!cm_ll_data->module_disable) {
arch/arm/mach-omap2/cm_common.c
161
cm_ll_data->module_disable(part, inst, clkctrl_offs);
arch/arm/mach-omap2/cm_common.c
167
if (!cm_ll_data->xlate_clkctrl) {
arch/arm/mach-omap2/cm_common.c
172
return cm_ll_data->xlate_clkctrl(part, inst, clkctrl_offs);
arch/arm/mach-omap2/cm_common.c
186
int cm_register(const struct cm_ll_data *cld)
arch/arm/mach-omap2/cm_common.c
191
if (cm_ll_data != &null_cm_ll_data)
arch/arm/mach-omap2/cm_common.c
194
cm_ll_data = cld;
arch/arm/mach-omap2/cm_common.c
210
int cm_unregister(const struct cm_ll_data *cld)
arch/arm/mach-omap2/cm_common.c
212
if (!cld || cm_ll_data != cld)
arch/arm/mach-omap2/cm_common.c
215
cm_ll_data = &null_cm_ll_data;
arch/arm/mach-omap2/cm_common.c
28
static struct cm_ll_data null_cm_ll_data;
arch/arm/mach-omap2/cm_common.c
29
static const struct cm_ll_data *cm_ll_data = &null_cm_ll_data;
arch/arm/mach-omap2/cm_common.c
56
if (!cm_ll_data->split_idlest_reg) {
arch/arm/mach-omap2/cm_common.c
62
ret = cm_ll_data->split_idlest_reg(idlest_reg, prcm_inst,
arch/arm/mach-omap2/cm_common.c
84
if (!cm_ll_data->wait_module_ready) {
arch/arm/mach-omap2/cm_common.c
90
return cm_ll_data->wait_module_ready(part, prcm_mod, idlest_reg,
arch/arm/mach-omap2/cminst44xx.c
550
static const struct cm_ll_data omap4xxx_cm_ll_data = {