summaryrefslogtreecommitdiff
path: root/arch/arm/mach-tegra/odm_kit/adaptations/pmu/tps6586x/nvodm_pmu_tps6586x_supply_info_table.h
blob: 2d909a31ded2a02b1210617746823a2ec4a05074 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
/*
 * Copyright (c) 2009 NVIDIA Corporation.
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
 * more details.
 *
 * You should have received a copy of the GNU General Public License along
 * with this program; if not, write to the Free Software Foundation, Inc.,
 * 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
 */

#ifndef TPS6586x_SUPPLY_INFO_TABLE_H_
#define TPS6586x_SUPPLY_INFO_TABLE_H_

#if defined(__cplusplus)
extern "C"
{
#endif

#define PMUGUID NV_ODM_GUID('t','p','s','6','5','8','6','x')

#define TPS_EXT_GUID(supply) \
    (NV_ODM_GUID('t','p','s','e','x','t',0,0) | ((supply) & 0xff))

typedef enum
{
    TPS6586xPmuSupply_Invalid = 0x0,

    //DCD0
    TPS6586xPmuSupply_DCD0,

    //DCD1
    TPS6586xPmuSupply_DCD1,

    //DCD2
    TPS6586xPmuSupply_DCD2,


    //LDO0
    TPS6586xPmuSupply_LDO0,

    //LDO1
    TPS6586xPmuSupply_LDO1,

    //LDO2
    TPS6586xPmuSupply_LDO2,

    //LDO3
    TPS6586xPmuSupply_LDO3,
    
    //LDO4
    TPS6586xPmuSupply_LDO4,
     
    //LDO5
    TPS6586xPmuSupply_LDO5,

    //LDO6
    TPS6586xPmuSupply_LDO6,

    //LDO7
    TPS6586xPmuSupply_LDO7,

    //LDO8
    TPS6586xPmuSupply_LDO8,

    //LDO9
    TPS6586xPmuSupply_LDO9,

    //RTC_OUT
    TPS6586xPmuSupply_RTC_OUT,

    //RED1
    TPS6586xPmuSupply_RED1,

    //GREEN1
    TPS6586xPmuSupply_GREEN1,

    //BLUE1
    TPS6586xPmuSupply_BLUE1,

    //RED2
    TPS6586xPmuSupply_RED2,

    //GREEN2
    TPS6586xPmuSupply_GREEN2,

    //BLUE2
    TPS6586xPmuSupply_BLUE2,

    //LED_PWM
    TPS6586xPmuSupply_LED_PWM,

    //PWM
    TPS6586xPmuSupply_PWM,

    //White LED(SW3)
    TPS6586xPmuSupply_WHITE_LED,

    //SOC
    TPS6586xPmuSupply_SoC,

    /*--- Secondary/External PMU Rails ---*/

    // PMU GPIO-3: VDD_1V05
    Ext_TPS62290PmuSupply_BUCK,

    // PMU GPIO-2: VDD_1V2
    Ext_TPS72012PmuSupply_LDO,

    // PMU GPIO-1: VDD_1V5
    Ext_TPS74201PmuSupply_LDO,

    // AP GPIO(T,2): VDDIO_HDMI, VDDIO_VGA (5V @ 500ma)
    Ext_TPS2051BPmuSupply_VDDIO_VID,

    // AP GPIO(T,3): VDDIO_SD
    Ext_SWITCHPmuSupply_VDDIO_SD,

    // AP GPIO(I,6): VDDIO_SDMMC
    Ext_SWITCHPmuSupply_VDDIO_SDMMC,

    // AP GPIO(W,0): VDD_BL
    // FIXME: This is already supplied by nvodm_query_gpio in the display GPIO settings.
    Ext_SWITCHPmuSupply_VDD_BL,

    // AP GPIO(C,6): VDD_PNL
    // FIXME: This is already supplied by nvodm_query_gpio in the display GPIO settings.
    Ext_SWITCHPmuSupply_VDD_PNL,

    TPS6586xPmuSupply_Num,

    TPS6586xPmuSupply_Force32 = 0x7FFFFFFF
} TPS6586xPmuSupply;

/// The total number of external supplies (which use both AP and PMU GPIOs)
#define TPS6586x_EXTERNAL_SUPPLY_NUM \
    (NvU32)(TPS6586xPmuSupply_Num - Ext_TPS62290PmuSupply_BUCK)

/// Macro for converting a vddRail to AP GPIO pin index.
#define NVODM_EXT_AP_GPIO_RAIL(x) ((x) - Ext_TPS2051BPmuSupply_VDDIO_VID)

/// The total number of external supplies which use AP GPIO pins for enable
#define TPS6586x_EXTERNAL_SUPPLY_AP_GPIO_NUM \
    (NvU32)NVODM_EXT_AP_GPIO_RAIL(TPS6586xPmuSupply_Num)

#if defined(__cplusplus)
}
#endif

#endif /* TPS6586x_SUPPLY_INFO_TABLE_H_ */