blob: ecfc3aa3ab3b66ebd1d4c1a4be8662c1ccfe0a2c [file] [log] [blame]
zbao7d94cf92012-07-02 14:19:14 +08001/**
2 * @file
3 *
4 * ALIB PSPP Pcie Smu Lib V1
5 *
6 *
7 *
8 * @xrefitem bom "File Content Label" "Release Content"
9 * @e project: AGESA
10 * @e sub-project: GNB
11 * @e \$Revision: 63425 $ @e \$Date: 2011-12-22 11:24:10 -0600 (Thu, 22 Dec 2011) $
12 *
13 */
14/*
15*****************************************************************************
16*
Siyuan Wang641f00c2013-06-08 11:50:55 +080017 * Copyright (c) 2008 - 2012, Advanced Micro Devices, Inc.
18 * All rights reserved.
19 *
20 * Redistribution and use in source and binary forms, with or without
21 * modification, are permitted provided that the following conditions are met:
22 * * Redistributions of source code must retain the above copyright
23 * notice, this list of conditions and the following disclaimer.
24 * * Redistributions in binary form must reproduce the above copyright
25 * notice, this list of conditions and the following disclaimer in the
26 * documentation and/or other materials provided with the distribution.
27 * * Neither the name of Advanced Micro Devices, Inc. nor the names of
28 * its contributors may be used to endorse or promote products derived
29 * from this software without specific prior written permission.
30 *
31 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
32 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
33 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
34 * DISCLAIMED. IN NO EVENT SHALL ADVANCED MICRO DEVICES, INC. BE LIABLE FOR ANY
35 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
36 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
37 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
38 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
39 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
40 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
zbao7d94cf92012-07-02 14:19:14 +080041* ***************************************************************************
42*
43*/
44
45
46
47 /*----------------------------------------------------------------------------------------*/
48 /**
49 * Request VID
50 *
51 * Arg0 - 1 - GEN1 2 - GEN2
52 * Arg1 - 0 = do not wait intil voltage is set
53 * 1 = wait until voltage is set
54 */
55 Method (procPcieSetVoltage, 2, Serialized) {
56 Store ("PcieSetVoltage Enter", Debug)
57 // Get real vid by index
58 if (LEqual (Arg0, DEF_LINK_SPEED_GEN1)) {
59 Store (DeRefOf (Index (varSclkVid, varGen1Vid)), local3)
60 } else {
61 Store (DeRefOf (Index (varSclkVid, varGen2Vid)), local3)
62 }
63
64 // GMMx63C/GMMx640 -- CG_Reg = reg - 0x600
65 // Store REQ in local2
66 And (procIndirectRegisterRead (0x0, 0xB8, 0xE000203C), 0x4, Local2)
67 // Store ACK in local1
68 And (procIndirectRegisterRead (0x0, 0xB8, 0xE0002040), 0x1, Local1)
69 // Compare REQ with ACK
70 while (LNotEqual (ShiftLeft(Local1, 0x2), Local2)) {
71 And (procIndirectRegisterRead (0x0, 0xB8, 0xE0002040), 0x1, Local1)
72 }
73 Store (procIndirectRegisterRead (0x0, 0xB8, 0xE000203C), Local1)
74 //Enable voltage change
75 if (LEqual (Arg0, DEF_LINK_SPEED_GEN1)) {
76 And (Local1, 0xFFFFFFFD, Local1)
77 } else {
78 Or (Local1, 0x2, Local1)
79 }
80 procIndirectRegisterWrite (0x0, 0xB8, 0xE000203C, Local1)
81 //Clear voltage index
82 And (Local1, Not (ShiftLeft (0xFF, 8)), Local1)
83
84 Store (Concatenate (" Voltage Index:", ToHexString (local3), Local6), Debug)
85 //Set new voltage index
86 Or (Local1, ShiftLeft (local3, 8), Local1)
87 //Togle request
88 And (Not (Local1), 0x4, Local2)
89 Or (And (Local1, Not (0x4)), Local2, Local1)
90 procIndirectRegisterWrite (0x0, 0xB8, 0xE000203C, Local1)
91 if (LNotEqual (Arg1, 0)) {
92 while (LNotEqual (ShiftLeft(Local1, 0x2), Local2)) {
93 And (procIndirectRegisterRead (0x0, 0xB8, 0xE0002040), 0x1, Local1)
94 }
95 }
96 Store ("PcieSetVoltage Exit", Debug)
97 }