blob: 7283b7ed7de84ace8a84d66d0436d317805d81ee [file] [log] [blame]
Thara Gopinath2f34ce82010-05-29 22:02:21 +05301/*
2 * OMAP Voltage Management Routines
3 *
4 * Author: Thara Gopinath <thara@ti.com>
5 *
6 * Copyright (C) 2009 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
14#ifndef __ARCH_ARM_MACH_OMAP2_VOLTAGE_H
15#define __ARCH_ARM_MACH_OMAP2_VOLTAGE_H
16
Santosh Shilimkarfaacebc2011-01-05 16:27:04 +053017#include <linux/err.h>
18
Arnd Bergmann22037472012-08-24 15:21:06 +020019#include <linux/platform_data/voltage-omap.h>
J Keerthyfa60be62012-04-25 11:14:31 +053020
Paul Walmsleyc0718df2011-03-10 22:17:45 -070021#include "vc.h"
22#include "vp.h"
23
Kevin Hilmane69c22b2011-03-16 16:13:15 -070024struct powerdomain;
25
Paul Walmsleyc0718df2011-03-10 22:17:45 -070026/* XXX document */
Thara Gopinath2f34ce82010-05-29 22:02:21 +053027#define VOLTSCALE_VPFORCEUPDATE 1
28#define VOLTSCALE_VCBYPASS 2
29
30/*
31 * OMAP3 GENERIC setup times. Revisit to see if these needs to be
32 * passed from board or PMIC file
33 */
34#define OMAP3_CLKSETUP 0xff
35#define OMAP3_VOLTOFFSET 0xff
36#define OMAP3_VOLTSETUP2 0xff
37
Paul Walmsleyc0718df2011-03-10 22:17:45 -070038/**
Kevin Hilman5892bb12011-03-29 14:36:04 -070039 * struct omap_vfsm_instance - per-voltage manager FSM register/bitfield
Paul Walmsleyc0718df2011-03-10 22:17:45 -070040 * data
41 * @voltsetup_mask: SETUP_TIME* bitmask in the PRM_VOLTSETUP* register
42 * @voltsetup_reg: register offset of PRM_VOLTSETUP from PRM base
Paul Walmsleyc0718df2011-03-10 22:17:45 -070043 *
44 * XXX What about VOLTOFFSET/VOLTCTRL?
Paul Walmsleyc0718df2011-03-10 22:17:45 -070045 */
Kevin Hilman5892bb12011-03-29 14:36:04 -070046struct omap_vfsm_instance {
Paul Walmsleyc0718df2011-03-10 22:17:45 -070047 u32 voltsetup_mask;
48 u8 voltsetup_reg;
Paul Walmsleyc0718df2011-03-10 22:17:45 -070049};
Thara Gopinathbd381072010-12-10 23:15:23 +053050
Thara Gopinath2f34ce82010-05-29 22:02:21 +053051/**
52 * struct voltagedomain - omap voltage domain global structure.
Kevin Hilman81a60482011-03-16 14:25:45 -070053 * @name: Name of the voltage domain which can be used as a unique identifier.
Kevin Hilman37efca72011-03-23 17:00:21 -070054 * @scalable: Whether or not this voltage domain is scalable
Kevin Hilman81a60482011-03-16 14:25:45 -070055 * @node: list_head linking all voltage domains
Kevin Hilmane69c22b2011-03-16 16:13:15 -070056 * @pwrdm_list: list_head linking all powerdomains in this voltagedomain
Kevin Hilmand84adcf2011-03-22 16:14:57 -070057 * @vc: pointer to VC channel associated with this voltagedomain
Kevin Hilmanb7ea8032011-04-04 15:25:07 -070058 * @vp: pointer to VP associated with this voltagedomain
Kevin Hilman4bcc4752011-03-28 10:40:15 -070059 * @read: read a VC/VP register
60 * @write: write a VC/VP register
61 * @read: read-modify-write a VC/VP register
Kevin Hilman0e2f3d92011-04-04 17:22:28 -070062 * @sys_clk: system clock name/frequency, used for various timing calculations
Kevin Hilman0f015652011-07-14 11:12:32 -070063 * @scale: function used to scale the voltage of the voltagedomain
Kevin Hilman7590f602011-04-05 16:55:22 -070064 * @nominal_volt: current nominal voltage for this voltage domain
Kevin Hilmane3277882011-07-14 11:29:06 -070065 * @volt_data: voltage table having the distinct voltages supported
66 * by the domain and other associated per voltage data.
Thara Gopinath2f34ce82010-05-29 22:02:21 +053067 */
68struct voltagedomain {
69 char *name;
Kevin Hilman37efca72011-03-23 17:00:21 -070070 bool scalable;
Kevin Hilman81a60482011-03-16 14:25:45 -070071 struct list_head node;
Kevin Hilmane69c22b2011-03-16 16:13:15 -070072 struct list_head pwrdm_list;
Kevin Hilmand84adcf2011-03-22 16:14:57 -070073 struct omap_vc_channel *vc;
Kevin Hilman5892bb12011-03-29 14:36:04 -070074 const struct omap_vfsm_instance *vfsm;
Kevin Hilmanb7ea8032011-04-04 15:25:07 -070075 struct omap_vp_instance *vp;
Kevin Hilmance8ebe02011-03-30 11:01:10 -070076 struct omap_voltdm_pmic *pmic;
Kevin Hilmand84adcf2011-03-22 16:14:57 -070077
Kevin Hilman4bcc4752011-03-28 10:40:15 -070078 /* VC/VP register access functions: SoC specific */
79 u32 (*read) (u8 offset);
80 void (*write) (u32 val, u8 offset);
81 u32 (*rmw)(u32 mask, u32 bits, u8 offset);
82
Kevin Hilman0e2f3d92011-04-04 17:22:28 -070083 union {
84 const char *name;
85 u32 rate;
86 } sys_clk;
87
Kevin Hilman0f015652011-07-14 11:12:32 -070088 int (*scale) (struct voltagedomain *voltdm,
89 unsigned long target_volt);
90
Kevin Hilmane3277882011-07-14 11:29:06 -070091 u32 nominal_volt;
92 struct omap_volt_data *volt_data;
Thara Gopinath2f34ce82010-05-29 22:02:21 +053093};
94
Thara Gopinath2f34ce82010-05-29 22:02:21 +053095/**
Kevin Hilmance8ebe02011-03-30 11:01:10 -070096 * struct omap_voltdm_pmic - PMIC specific data required by voltage driver.
Thara Gopinath2f34ce82010-05-29 22:02:21 +053097 * @slew_rate: PMIC slew rate (in uv/us)
98 * @step_size: PMIC voltage step size (in uv)
Kevin Hilmanba112a42011-03-29 14:02:36 -070099 * @i2c_slave_addr: I2C slave address of PMIC
Kevin Hilmane74e4402011-03-22 14:12:37 -0700100 * @volt_reg_addr: voltage configuration register address
101 * @cmd_reg_addr: command (on, on-LP, ret, off) configuration register address
Kevin Hilmanf5395482011-03-30 16:36:30 -0700102 * @i2c_high_speed: whether VC uses I2C high-speed mode to PMIC
103 * @i2c_mcode: master code value for I2C high-speed preamble transmission
Kevin Hilmane4e021c2011-06-09 11:01:55 -0700104 * @vsel_to_uv: PMIC API to convert vsel value to actual voltage in uV.
105 * @uv_to_vsel: PMIC API to convert voltage in uV to vsel value.
Thara Gopinath2f34ce82010-05-29 22:02:21 +0530106 */
Kevin Hilmance8ebe02011-03-30 11:01:10 -0700107struct omap_voltdm_pmic {
Thara Gopinath2f34ce82010-05-29 22:02:21 +0530108 int slew_rate;
109 int step_size;
110 u32 on_volt;
111 u32 onlp_volt;
112 u32 ret_volt;
113 u32 off_volt;
114 u16 volt_setup_time;
Kevin Hilmanba112a42011-03-29 14:02:36 -0700115 u16 i2c_slave_addr;
Kevin Hilmane4e021c2011-06-09 11:01:55 -0700116 u16 volt_reg_addr;
117 u16 cmd_reg_addr;
Thara Gopinath2f34ce82010-05-29 22:02:21 +0530118 u8 vp_erroroffset;
119 u8 vp_vstepmin;
120 u8 vp_vstepmax;
121 u8 vp_vddmin;
122 u8 vp_vddmax;
123 u8 vp_timeout_us;
Kevin Hilmanf5395482011-03-30 16:36:30 -0700124 bool i2c_high_speed;
125 u8 i2c_mcode;
Thara Gopinath2f34ce82010-05-29 22:02:21 +0530126 unsigned long (*vsel_to_uv) (const u8 vsel);
127 u8 (*uv_to_vsel) (unsigned long uV);
128};
129
Thara Gopinath2f34ce82010-05-29 22:02:21 +0530130void omap_voltage_get_volttable(struct voltagedomain *voltdm,
131 struct omap_volt_data **volt_data);
132struct omap_volt_data *omap_voltage_get_voltdata(struct voltagedomain *voltdm,
133 unsigned long volt);
Thara Gopinath2f34ce82010-05-29 22:02:21 +0530134int omap_voltage_register_pmic(struct voltagedomain *voltdm,
Kevin Hilmance8ebe02011-03-30 11:01:10 -0700135 struct omap_voltdm_pmic *pmic);
Thara Gopinath2f34ce82010-05-29 22:02:21 +0530136void omap_change_voltscale_method(struct voltagedomain *voltdm,
137 int voltscale_method);
138int omap_voltage_late_init(void);
Thara Gopinath2f34ce82010-05-29 22:02:21 +0530139
Kevin Hilmanaae030f2011-03-23 16:09:41 -0700140extern void omap2xxx_voltagedomains_init(void);
Kevin Hilman81a60482011-03-16 14:25:45 -0700141extern void omap3xxx_voltagedomains_init(void);
Vaibhav Hiremathce3fc892012-06-18 00:47:26 -0600142extern void am33xx_voltagedomains_init(void);
Kevin Hilman81a60482011-03-16 14:25:45 -0700143extern void omap44xx_voltagedomains_init(void);
144
145struct voltagedomain *voltdm_lookup(const char *name);
146void voltdm_init(struct voltagedomain **voltdm_list);
Kevin Hilman048a7032011-03-16 15:52:47 -0700147int voltdm_add_pwrdm(struct voltagedomain *voltdm, struct powerdomain *pwrdm);
Kevin Hilmane69c22b2011-03-16 16:13:15 -0700148int voltdm_for_each(int (*fn)(struct voltagedomain *voltdm, void *user),
149 void *user);
150int voltdm_for_each_pwrdm(struct voltagedomain *voltdm,
151 int (*fn)(struct voltagedomain *voltdm,
152 struct powerdomain *pwrdm));
Kevin Hilman5e5651b2011-04-05 16:27:21 -0700153int voltdm_scale(struct voltagedomain *voltdm, unsigned long target_volt);
154void voltdm_reset(struct voltagedomain *voltdm);
Kevin Hilmand5c12822011-07-15 16:05:12 -0700155unsigned long voltdm_get_voltage(struct voltagedomain *voltdm);
Thara Gopinath2f34ce82010-05-29 22:02:21 +0530156#endif