Symbol: sysc_soc
drivers/bus/ti-sysc.c
1739
switch (sysc_soc->soc) {
drivers/bus/ti-sysc.c
1836
if (sysc_soc->soc == SOC_3430 || sysc_soc->soc == SOC_AM35) {
drivers/bus/ti-sysc.c
2429
list_for_each_entry(module, &sysc_soc->restored_modules, node) {
drivers/bus/ti-sysc.c
2479
mutex_lock(&sysc_soc->list_lock);
drivers/bus/ti-sysc.c
2481
list_add(&restored_module->node, &sysc_soc->restored_modules);
drivers/bus/ti-sysc.c
2483
if (sysc_soc->nb.notifier_call)
drivers/bus/ti-sysc.c
2486
sysc_soc->nb.notifier_call = sysc_context_notifier;
drivers/bus/ti-sysc.c
2487
cpu_pm_register_notifier(&sysc_soc->nb);
drivers/bus/ti-sysc.c
2490
mutex_unlock(&sysc_soc->list_lock);
drivers/bus/ti-sysc.c
2962
mutex_lock(&sysc_soc->list_lock);
drivers/bus/ti-sysc.c
2963
list_add(&disabled_module->node, &sysc_soc->disabled_modules);
drivers/bus/ti-sysc.c
2964
mutex_unlock(&sysc_soc->list_lock);
drivers/bus/ti-sysc.c
2984
if (sysc_soc)
drivers/bus/ti-sysc.c
2987
sysc_soc = kzalloc_obj(*sysc_soc);
drivers/bus/ti-sysc.c
2988
if (!sysc_soc)
drivers/bus/ti-sysc.c
2991
mutex_init(&sysc_soc->list_lock);
drivers/bus/ti-sysc.c
2992
INIT_LIST_HEAD(&sysc_soc->disabled_modules);
drivers/bus/ti-sysc.c
2993
INIT_LIST_HEAD(&sysc_soc->restored_modules);
drivers/bus/ti-sysc.c
2994
sysc_soc->general_purpose = true;
drivers/bus/ti-sysc.c
2998
sysc_soc->general_purpose = pdata->soc_type_gp();
drivers/bus/ti-sysc.c
3002
sysc_soc->soc = (enum sysc_soc)(uintptr_t)match->data;
drivers/bus/ti-sysc.c
3008
switch (sysc_soc->soc) {
drivers/bus/ti-sysc.c
3023
if (!sysc_soc->general_purpose) {
drivers/bus/ti-sysc.c
3024
switch (sysc_soc->soc) {
drivers/bus/ti-sysc.c
3064
if (!sysc_soc)
drivers/bus/ti-sysc.c
3067
if (sysc_soc->nb.notifier_call)
drivers/bus/ti-sysc.c
3068
cpu_pm_unregister_notifier(&sysc_soc->nb);
drivers/bus/ti-sysc.c
3070
mutex_lock(&sysc_soc->list_lock);
drivers/bus/ti-sysc.c
3071
list_for_each_safe(pos, tmp, &sysc_soc->restored_modules) {
drivers/bus/ti-sysc.c
3076
list_for_each_safe(pos, tmp, &sysc_soc->disabled_modules) {
drivers/bus/ti-sysc.c
3081
mutex_unlock(&sysc_soc->list_lock);
drivers/bus/ti-sysc.c
3089
mutex_lock(&sysc_soc->list_lock);
drivers/bus/ti-sysc.c
3090
list_for_each_entry(disabled_module, &sysc_soc->disabled_modules, node) {
drivers/bus/ti-sysc.c
3097
mutex_unlock(&sysc_soc->list_lock);
drivers/bus/ti-sysc.c
3122
switch (sysc_soc->soc) {
drivers/bus/ti-sysc.c
76
enum sysc_soc soc;
drivers/bus/ti-sysc.c
97
static struct sysc_soc_info *sysc_soc;