blob: 69ca900aff0b92b4ae9e36545d8d89bde88d75e4 [file] [log] [blame]
Paul Walmsleyc0718df2011-03-10 22:17:45 -07001/*
2 * OMAP3/4 Voltage Controller (VC) structure and macro definitions
3 *
4 * Copyright (C) 2007, 2010 Texas Instruments, Inc.
5 * Rajendra Nayak <rnayak@ti.com>
6 * Lesly A M <x0080970@ti.com>
7 * Thara Gopinath <thara@ti.com>
8 *
9 * Copyright (C) 2008, 2011 Nokia Corporation
10 * Kalle Jokiniemi
11 * Paul Walmsley
12 *
13 * This program is free software; you can redistribute it and/or
14 * modify it under the terms of the GNU General Public License version
15 * 2 as published by the Free Software Foundation.
16 */
17#ifndef __ARCH_ARM_MACH_OMAP2_VC_H
18#define __ARCH_ARM_MACH_OMAP2_VC_H
19
20#include <linux/kernel.h>
21
Kevin Hilmanccd5ca72011-03-21 14:08:55 -070022struct voltagedomain;
23
Paul Walmsleyc0718df2011-03-10 22:17:45 -070024/**
Kevin Hilmand84adcf2011-03-22 16:14:57 -070025 * struct omap_vc_common - per-VC register/bitfield data
Paul Walmsleyc0718df2011-03-10 22:17:45 -070026 * @cmd_on_mask: ON bitmask in PRM_VC_CMD_VAL* register
27 * @valid: VALID bitmask in PRM_VC_BYPASS_VAL register
28 * @smps_sa_reg: Offset of PRM_VC_SMPS_SA reg from PRM start
29 * @smps_volra_reg: Offset of PRM_VC_SMPS_VOL_RA reg from PRM start
30 * @bypass_val_reg: Offset of PRM_VC_BYPASS_VAL reg from PRM start
31 * @data_shift: DATA field shift in PRM_VC_BYPASS_VAL register
32 * @slaveaddr_shift: SLAVEADDR field shift in PRM_VC_BYPASS_VAL register
33 * @regaddr_shift: REGADDR field shift in PRM_VC_BYPASS_VAL register
34 * @cmd_on_shift: ON field shift in PRM_VC_CMD_VAL_* register
35 * @cmd_onlp_shift: ONLP field shift in PRM_VC_CMD_VAL_* register
36 * @cmd_ret_shift: RET field shift in PRM_VC_CMD_VAL_* register
37 * @cmd_off_shift: OFF field shift in PRM_VC_CMD_VAL_* register
38 *
39 * XXX One of cmd_on_mask and cmd_on_shift are not needed
40 * XXX VALID should probably be a shift, not a mask
41 */
Kevin Hilmand84adcf2011-03-22 16:14:57 -070042struct omap_vc_common {
Paul Walmsleyc0718df2011-03-10 22:17:45 -070043 u32 cmd_on_mask;
44 u32 valid;
Paul Walmsleyc0718df2011-03-10 22:17:45 -070045 u8 smps_sa_reg;
46 u8 smps_volra_reg;
47 u8 bypass_val_reg;
48 u8 data_shift;
49 u8 slaveaddr_shift;
50 u8 regaddr_shift;
51 u8 cmd_on_shift;
52 u8 cmd_onlp_shift;
53 u8 cmd_ret_shift;
54 u8 cmd_off_shift;
55};
56
57/**
Kevin Hilmand84adcf2011-03-22 16:14:57 -070058 * struct omap_vc_channel - VC per-instance data
Kevin Hilmanba112a42011-03-29 14:02:36 -070059 * @i2c_slave_addr: I2C slave address of PMIC for this VC channel
Kevin Hilmand84adcf2011-03-22 16:14:57 -070060 * @common: pointer to VC common data for this platform
Kevin Hilmanba112a42011-03-29 14:02:36 -070061 * @smps_sa_mask: i2c slave address bitmask in the PRM_VC_SMPS_SA register
Paul Walmsleyc0718df2011-03-10 22:17:45 -070062 * @smps_volra_mask: VOLRA* bitmask in the PRM_VC_VOL_RA register
Paul Walmsleyc0718df2011-03-10 22:17:45 -070063 * @smps_volra_shift: VOLRA* field shift in the PRM_VC_VOL_RA register
64 *
65 * XXX It is not necessary to have both a *_mask and a *_shift -
66 * remove one
67 */
Kevin Hilmand84adcf2011-03-22 16:14:57 -070068struct omap_vc_channel {
Kevin Hilmanba112a42011-03-29 14:02:36 -070069 /* channel state */
70 u16 i2c_slave_addr;
71
72 /* register access data */
Kevin Hilmand84adcf2011-03-22 16:14:57 -070073 const struct omap_vc_common *common;
Paul Walmsleyc0718df2011-03-10 22:17:45 -070074 u32 smps_sa_mask;
75 u32 smps_volra_mask;
76 u8 cmdval_reg;
Paul Walmsleyc0718df2011-03-10 22:17:45 -070077 u8 smps_volra_shift;
78};
79
Kevin Hilmand84adcf2011-03-22 16:14:57 -070080extern struct omap_vc_channel omap3_vc_mpu;
81extern struct omap_vc_channel omap3_vc_core;
Paul Walmsleyc0718df2011-03-10 22:17:45 -070082
Kevin Hilmand84adcf2011-03-22 16:14:57 -070083extern struct omap_vc_channel omap4_vc_mpu;
84extern struct omap_vc_channel omap4_vc_iva;
85extern struct omap_vc_channel omap4_vc_core;
Paul Walmsleyc0718df2011-03-10 22:17:45 -070086
Kevin Hilmanccd5ca72011-03-21 14:08:55 -070087void omap_vc_init_channel(struct voltagedomain *voltdm);
88int omap_vc_pre_scale(struct voltagedomain *voltdm,
89 unsigned long target_volt,
90 u8 *target_vsel, u8 *current_vsel);
91void omap_vc_post_scale(struct voltagedomain *voltdm,
92 unsigned long target_volt,
93 u8 target_vsel, u8 current_vsel);
Kevin Hilmand84adcf2011-03-22 16:14:57 -070094int omap_vc_bypass_scale(struct voltagedomain *voltdm,
95 unsigned long target_volt);
Kevin Hilmanccd5ca72011-03-21 14:08:55 -070096
Paul Walmsleyc0718df2011-03-10 22:17:45 -070097#endif
98