2 * OMAP3/OMAP4 Voltage Management Routines
4 * Author: Thara Gopinath <thara@ti.com>
6 * Copyright (C) 2007 Texas Instruments, Inc.
7 * Rajendra Nayak <rnayak@ti.com>
8 * Lesly A M <x0080970@ti.com>
10 * Copyright (C) 2008 Nokia Corporation
13 * Copyright (C) 2010 Texas Instruments, Inc.
14 * Thara Gopinath <thara@ti.com>
16 * This program is free software; you can redistribute it and/or modify
17 * it under the terms of the GNU General Public License version 2 as
18 * published by the Free Software Foundation.
20 #include <linux/kernel.h>
21 #include <linux/err.h>
22 #include <linux/init.h>
26 #include "prm-regbits-44xx.h"
29 #include "prminst44xx.h"
31 #include "omap_opp_data.h"
35 static const struct omap_vfsm_instance omap4_vdd_mpu_vfsm
= {
36 .voltsetup_reg
= OMAP4_PRM_VOLTSETUP_MPU_RET_SLEEP_OFFSET
,
39 static const struct omap_vfsm_instance omap4_vdd_iva_vfsm
= {
40 .voltsetup_reg
= OMAP4_PRM_VOLTSETUP_IVA_RET_SLEEP_OFFSET
,
43 static const struct omap_vfsm_instance omap4_vdd_core_vfsm
= {
44 .voltsetup_reg
= OMAP4_PRM_VOLTSETUP_CORE_RET_SLEEP_OFFSET
,
47 static struct voltagedomain omap4_voltdm_mpu
= {
50 .read
= omap4_prm_vcvp_read
,
51 .write
= omap4_prm_vcvp_write
,
52 .rmw
= omap4_prm_vcvp_rmw
,
54 .vfsm
= &omap4_vdd_mpu_vfsm
,
58 static struct voltagedomain omap4_voltdm_iva
= {
61 .read
= omap4_prm_vcvp_read
,
62 .write
= omap4_prm_vcvp_write
,
63 .rmw
= omap4_prm_vcvp_rmw
,
65 .vfsm
= &omap4_vdd_iva_vfsm
,
69 static struct voltagedomain omap4_voltdm_core
= {
72 .read
= omap4_prm_vcvp_read
,
73 .write
= omap4_prm_vcvp_write
,
74 .rmw
= omap4_prm_vcvp_rmw
,
76 .vfsm
= &omap4_vdd_core_vfsm
,
80 static struct voltagedomain omap4_voltdm_wkup
= {
84 static struct voltagedomain
*voltagedomains_omap4
[] __initdata
= {
92 static const char *sys_clk_name __initdata
= "sys_clkin_ck";
94 void __init
omap44xx_voltagedomains_init(void)
96 struct voltagedomain
*voltdm
;
100 * XXX Will depend on the process, validation, and binning
101 * for the currently-running IC
104 omap4_voltdm_mpu
.volt_data
= omap44xx_vdd_mpu_volt_data
;
105 omap4_voltdm_iva
.volt_data
= omap44xx_vdd_iva_volt_data
;
106 omap4_voltdm_core
.volt_data
= omap44xx_vdd_core_volt_data
;
109 for (i
= 0; voltdm
= voltagedomains_omap4
[i
], voltdm
; i
++)
110 voltdm
->sys_clk
.name
= sys_clk_name
;
112 voltdm_init(voltagedomains_omap4
);