1 // SPDX-License-Identifier: GPL-2.0-only
3 * Smart reflex Class 3 specific implementations
5 * Author: Thara Gopinath <thara@ti.com>
7 * Copyright (C) 2010 Texas Instruments, Inc.
8 * Thara Gopinath <thara@ti.com>
11 #include <linux/power/smartreflex.h>
15 static int sr_class3_enable(struct omap_sr
*sr
)
17 unsigned long volt
= voltdm_get_voltage(sr
->voltdm
);
20 pr_warn("%s: Curr voltage unknown. Cannot enable %s\n",
25 omap_vp_enable(sr
->voltdm
);
26 return sr_enable(sr
, volt
);
29 static int sr_class3_disable(struct omap_sr
*sr
, int is_volt_reset
)
31 sr_disable_errgen(sr
);
32 omap_vp_disable(sr
->voltdm
);
35 voltdm_reset(sr
->voltdm
);
40 static int sr_class3_configure(struct omap_sr
*sr
)
42 return sr_configure_errgen(sr
);
45 /* SR class3 structure */
46 static struct omap_sr_class_data class3_data
= {
47 .enable
= sr_class3_enable
,
48 .disable
= sr_class3_disable
,
49 .configure
= sr_class3_configure
,
50 .class_type
= SR_CLASS3
,
53 /* Smartreflex Class3 init API to be called from board file */
54 static int __init
sr_class3_init(void)
56 pr_info("SmartReflex Class3 initialized\n");
57 return sr_register_class(&class3_data
);
59 omap_late_initcall(sr_class3_init
);