Thara Gopinath | fa76582 | 2010-05-29 22:02:25 +0530 | [diff] [blame] | 1 | /* |
| 2 | * Smart reflex Class 3 specific implementations |
| 3 | * |
| 4 | * Author: Thara Gopinath <thara@ti.com> |
| 5 | * |
| 6 | * Copyright (C) 2010 Texas Instruments, Inc. |
| 7 | * Thara Gopinath <thara@ti.com> |
| 8 | * |
| 9 | * This program is free software; you can redistribute it and/or modify |
| 10 | * it under the terms of the GNU General Public License version 2 as |
| 11 | * published by the Free Software Foundation. |
| 12 | */ |
| 13 | |
Jean Pihet | b86aeaf | 2012-04-25 16:06:20 +0530 | [diff] [blame] | 14 | #include <linux/power/smartreflex.h> |
Tony Lindgren | dad2d9e | 2013-02-09 19:20:57 -0800 | [diff] [blame] | 15 | #include "soc.h" |
Jean Pihet | b86aeaf | 2012-04-25 16:06:20 +0530 | [diff] [blame] | 16 | #include "voltage.h" |
Thara Gopinath | fa76582 | 2010-05-29 22:02:25 +0530 | [diff] [blame] | 17 | |
Jean Pihet | 80821c9 | 2012-04-24 10:22:12 +0530 | [diff] [blame] | 18 | static int sr_class3_enable(struct omap_sr *sr) |
Thara Gopinath | fa76582 | 2010-05-29 22:02:25 +0530 | [diff] [blame] | 19 | { |
Jean Pihet | 80821c9 | 2012-04-24 10:22:12 +0530 | [diff] [blame] | 20 | unsigned long volt = voltdm_get_voltage(sr->voltdm); |
Thara Gopinath | fa76582 | 2010-05-29 22:02:25 +0530 | [diff] [blame] | 21 | |
| 22 | if (!volt) { |
Jean Pihet | 8b765d7 | 2012-04-24 10:41:27 +0530 | [diff] [blame] | 23 | pr_warning("%s: Curr voltage unknown. Cannot enable %s\n", |
| 24 | __func__, sr->name); |
Thara Gopinath | fa76582 | 2010-05-29 22:02:25 +0530 | [diff] [blame] | 25 | return -ENODATA; |
| 26 | } |
| 27 | |
Jean Pihet | 80821c9 | 2012-04-24 10:22:12 +0530 | [diff] [blame] | 28 | omap_vp_enable(sr->voltdm); |
| 29 | return sr_enable(sr->voltdm, volt); |
Thara Gopinath | fa76582 | 2010-05-29 22:02:25 +0530 | [diff] [blame] | 30 | } |
| 31 | |
Jean Pihet | 80821c9 | 2012-04-24 10:22:12 +0530 | [diff] [blame] | 32 | static int sr_class3_disable(struct omap_sr *sr, int is_volt_reset) |
Thara Gopinath | fa76582 | 2010-05-29 22:02:25 +0530 | [diff] [blame] | 33 | { |
Andrii Tseglytskyi | 3dfc35f | 2013-05-27 14:09:22 +0300 | [diff] [blame^] | 34 | sr_disable_errgen(sr); |
Jean Pihet | 80821c9 | 2012-04-24 10:22:12 +0530 | [diff] [blame] | 35 | omap_vp_disable(sr->voltdm); |
| 36 | sr_disable(sr->voltdm); |
Thara Gopinath | fa76582 | 2010-05-29 22:02:25 +0530 | [diff] [blame] | 37 | if (is_volt_reset) |
Jean Pihet | 80821c9 | 2012-04-24 10:22:12 +0530 | [diff] [blame] | 38 | voltdm_reset(sr->voltdm); |
Thara Gopinath | fa76582 | 2010-05-29 22:02:25 +0530 | [diff] [blame] | 39 | |
| 40 | return 0; |
| 41 | } |
| 42 | |
Jean Pihet | 80821c9 | 2012-04-24 10:22:12 +0530 | [diff] [blame] | 43 | static int sr_class3_configure(struct omap_sr *sr) |
Thara Gopinath | fa76582 | 2010-05-29 22:02:25 +0530 | [diff] [blame] | 44 | { |
Andrii Tseglytskyi | 3dfc35f | 2013-05-27 14:09:22 +0300 | [diff] [blame^] | 45 | return sr_configure_errgen(sr); |
Thara Gopinath | fa76582 | 2010-05-29 22:02:25 +0530 | [diff] [blame] | 46 | } |
| 47 | |
| 48 | /* SR class3 structure */ |
| 49 | static struct omap_sr_class_data class3_data = { |
| 50 | .enable = sr_class3_enable, |
| 51 | .disable = sr_class3_disable, |
| 52 | .configure = sr_class3_configure, |
| 53 | .class_type = SR_CLASS3, |
| 54 | }; |
| 55 | |
| 56 | /* Smartreflex Class3 init API to be called from board file */ |
| 57 | static int __init sr_class3_init(void) |
| 58 | { |
| 59 | pr_info("SmartReflex Class3 initialized\n"); |
| 60 | return sr_register_class(&class3_data); |
| 61 | } |
Tony Lindgren | b76c8b1 | 2013-01-11 11:24:18 -0800 | [diff] [blame] | 62 | omap_late_initcall(sr_class3_init); |