summaryrefslogtreecommitdiffstats
path: root/src/usr/hwpf/hwp/bus_training/io_power_down_lanes.C
blob: 388a4681603a775ba158266fbb64e7d0eedda419 (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
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
/* IBM_PROLOG_BEGIN_TAG                                                   */
/* This is an automatically generated prolog.                             */
/*                                                                        */
/* $Source: src/usr/hwpf/hwp/bus_training/io_power_down_lanes.C $         */
/*                                                                        */
/* OpenPOWER HostBoot Project                                             */
/*                                                                        */
/* COPYRIGHT International Business Machines Corp. 2013,2014              */
/*                                                                        */
/* Licensed under the Apache License, Version 2.0 (the "License");        */
/* you may not use this file except in compliance with the License.       */
/* You may obtain a copy of the License at                                */
/*                                                                        */
/*     http://www.apache.org/licenses/LICENSE-2.0                         */
/*                                                                        */
/* Unless required by applicable law or agreed to in writing, software    */
/* distributed under the License is distributed on an "AS IS" BASIS,      */
/* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or        */
/* implied. See the License for the specific language governing           */
/* permissions and limitations under the License.                         */
/*                                                                        */
/* IBM_PROLOG_END_TAG                                                     */
// $Id: io_power_down_lanes.C,v 1.13 2014/03/06 11:12:24 varkeykv Exp $
// *!***************************************************************************
// *! (C) Copyright International Business Machines Corp. 1997, 1998
// *!           All Rights Reserved -- Property of IBM
// *!                   *** IBM Confidential ***
// *!***************************************************************************
// *! FILENAME             : io_power_down_lanes.C
// *! TITLE                : 
// *! DESCRIPTION          : Power down bad lanes
// *! CONTEXT              : 
// *!
// *! OWNER  NAME          : Varghese, Varkey         Email: varkey.kv@in.ibm.com
// *! BACKUP NAME          : Swaminathan, Janani      Email: jaswamin@in.ibm.com      
// *!
// *!***************************************************************************
// CHANGE HISTORY: 
//------------------------------------------------------------------------------
// Version:|Author: | Date:  | Comment:
// --------|--------|--------|--------------------------------------------------
//   1.0   |varkeykv||Initial check in 
//------------------------------------------------------------------------------

#include <fapi.H>
#include "io_power_down_lanes.H"
#include "gcr_funcs.H"

extern "C" {


using namespace fapi;


/*
 This function will perform power down of lanes on any IO target MEMBUF,MCS , XBUS or ABUS
 * Bad lanes are powered down , but caller is expected to logically disable lanes by calling restore_repair prior
 * to calling this HWP 
*/

ReturnCode io_power_down_lanes(const Target& target,const std::vector<uint8_t> &tx_lanes,const std::vector<uint8_t> &rx_lanes)
{
    ReturnCode rc;
    ecmdDataBufferBase data(16);
    ecmdDataBufferBase mask(16);
    ecmdDataBufferBase mode_reg(16);
    uint8_t lane=0;
    bool msbswap=false;
    const uint8_t xbus_lanes_per_group=20;
    uint8_t end_lane=0;
  
	io_interface_t interface=CP_IOMC0_P0; // Since G
	uint32_t rc_ecmd=0;
	uint8_t clock_group=0;
	uint8_t start_group=0;

	do
	{
		// Both TX and RX power down bits are on bit 0 
		rc_ecmd=mask.flushTo1();
		rc_ecmd=mask.clearBit(0);
		if(rc_ecmd)
		{
			FAPI_ERR("io_power_down_lanes error occured while"
					 " flushing and clearing bits for mask");
			rc.setEcmdError(rc_ecmd);
			break;
		}
  
		// Check which type of bus this is and do setup needed 
	    fapi::TargetType l_type= target.getType();	
		switch (l_type)
		{
			case fapi::TARGET_TYPE_ABUS_ENDPOINT:
				start_group=0;
				interface=CP_FABRIC_A0; // base scom for A bus , assume translation to A1 by PLAT 
				break;
			case fapi::TARGET_TYPE_XBUS_ENDPOINT:
				start_group=0;
				interface=CP_FABRIC_X0; // base scom for X bus
				break;
			case fapi::TARGET_TYPE_MCS_CHIPLET:
				start_group=3;
				interface=CP_IOMC0_P0; // base scom for MC bus
				break;
			case fapi::TARGET_TYPE_MEMBUF_CHIP:
				start_group=0;
				interface=CEN_DMI; // base scom Centaur chip
				break;
			default:
				FAPI_ERR("Invalid io_power_down_lanes HWP invocation");
				const fapi::Target &TARGET=target;
				FAPI_SET_HWP_ERROR(rc, IO_POWER_DOWN_LANES_INVALID_INVOCATION_RC);
				break;
		}
		if (rc)
		{
			break;
		}
  
		FAPI_INF("Power down IO lanes\n");

		rc_ecmd|=data.flushTo0();
		rc_ecmd|=data.setBit(0); // Power down is on bit 0 always
		if(rc_ecmd)
		{
			FAPI_ERR("io_power_down_lanes error occured while"
					 " flushing and clearing bits for data");
			rc.setEcmdError(rc_ecmd);
			break;
		}
      
		rc = GCR_read( target, interface,tx_mode_pg, start_group,  0,  mode_reg);
		if(rc)
		{
			FAPI_ERR("GCR_read returned an error while reading tx_mode_pg");
			break;
		}	
      
		if(mode_reg.isBitSet(5))
		{	
			FAPI_DBG("TX MSB-LSB SWAP MODE ON on this target %d \n",tx_end_lane_id);
			msbswap=true;
		}
      
	    //TX Lanes power down 
		for(uint8_t i=0;i<tx_lanes.size();++i)
		{
			lane=tx_lanes[i];
			//For Xbus figure out the clock group number 
			if(interface==CP_FABRIC_X0)
			{
				clock_group=start_group;
				while(lane>(xbus_lanes_per_group-1))
				{
					lane=lane-xbus_lanes_per_group;
					clock_group++;
				}
			}
			else
			{
				clock_group=start_group;
				// MSBLSB SWAP condition can be there in MC or A 
				if(msbswap)
				{
					// We can read out tx_end_lane_id now for swap correction
					rc = GCR_read( target, interface,tx_id3_pg, clock_group,  0,  mode_reg);
					if(rc)
					{
						FAPI_ERR("GCR_read returned an error during call to read tx_id3_pg");
						break;
					}
               
					rc_ecmd=mode_reg.extract(&end_lane,9,7);
					if(rc_ecmd)
					{
						rc.setEcmdError(rc_ecmd);
						break;
					}
					end_lane=end_lane>>1;// move left aligned extract by 1
					FAPI_DBG("END lane id is %d\n",end_lane);
					lane=end_lane-tx_lanes[i]; // GFW VPD does not know about MSBSWAP , this adjusts for swapping
				}
			}

			//Power down this lane
			rc = GCR_write( target, interface, tx_mode_pl, clock_group,  lane,  data,mask );
			if(rc)
			{
				FAPI_ERR("GCR_write returned an error  while writing tx_mode_pl");
				break;
			}
		}

		//break out of larger while loop
		if (rc) 
		{
			break;
		}
		// Process RX lane powerdown 
		for(uint8_t i=0;i<rx_lanes.size();++i)
		{
			lane=rx_lanes[i];
			//For X bus set the right clock group number
			if(interface==CP_FABRIC_X0)
			{
				clock_group=start_group;
				while(lane>(xbus_lanes_per_group-1))
				{
					lane=lane-xbus_lanes_per_group;
					clock_group++;
				}
			}
			else
			{
				clock_group=start_group;
			}
			//Power down this lane 
			rc = GCR_write( target, interface, rx_mode_pl, clock_group,  lane,  data,mask );
			if(rc)
			{
				FAPI_ERR("GCR_write returned an error while writing rx_mode_pl");
				break;
			}
		}
	}while(0);
	return rc;
}

} //end extern C

OpenPOWER on IntegriCloud