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 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452
|
/* Copyright 2013-2016 IBM Corp.
*
* 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.
*/
#include <skiboot.h>
#include <opal-msg.h>
#include <pci-cfg.h>
#include <pci.h>
#include <pci-slot.h>
/* Debugging options */
#define PCIE_SLOT_PREFIX "PCIE-SLOT-%016llx "
#define PCIE_SLOT_DBG(s, fmt, a...) \
prlog(PR_DEBUG, PCIE_SLOT_PREFIX fmt, (s)->id, ##a)
static int64_t pcie_slot_get_presence_state(struct pci_slot *slot, uint8_t *val)
{
struct phb *phb = slot->phb;
struct pci_device *pd = slot->pd;
uint32_t ecap;
uint16_t state;
/* The presence is always on if it's a switch upstream port */
if (pd->dev_type == PCIE_TYPE_SWITCH_UPPORT) {
*val = OPAL_PCI_SLOT_PRESENT;
return OPAL_SUCCESS;
}
/*
* The presence is always on if a switch downstream port
* doesn't support slot capability according to PCIE spec.
*/
if (pd->dev_type == PCIE_TYPE_SWITCH_DNPORT &&
!(slot->slot_cap & PCICAP_EXP_CAP_SLOT)) {
*val = OPAL_PCI_SLOT_PRESENT;
return OPAL_SUCCESS;
}
/* Retrieve presence status */
ecap = pci_cap(pd, PCI_CFG_CAP_ID_EXP, false);
pci_cfg_read16(phb, pd->bdfn, ecap + PCICAP_EXP_SLOTSTAT, &state);
if (state & PCICAP_EXP_SLOTSTAT_PDETECTST)
*val = OPAL_PCI_SLOT_PRESENT;
else
*val = OPAL_PCI_SLOT_EMPTY;
return OPAL_SUCCESS;
}
static int64_t pcie_slot_get_link_state(struct pci_slot *slot,
uint8_t *val)
{
struct phb *phb = slot->phb;
struct pci_device *pd = slot->pd;
uint32_t ecap;
int16_t state;
/*
* The link behind switch upstream port is always on
* since it doesn't have a valid link indicator.
*/
if (pd->dev_type == PCIE_TYPE_SWITCH_UPPORT) {
*val = 1;
return OPAL_SUCCESS;
}
/* Retrieve link width */
ecap = pci_cap(pd, PCI_CFG_CAP_ID_EXP, false);
pci_cfg_read16(phb, pd->bdfn, ecap + PCICAP_EXP_LSTAT, &state);
if (state & PCICAP_EXP_LSTAT_DLLL_ACT)
*val = ((state & PCICAP_EXP_LSTAT_WIDTH) >> 4);
else
*val = 0;
return OPAL_SUCCESS;
}
static int64_t pcie_slot_get_power_state(struct pci_slot *slot __unused,
uint8_t *val)
{
/* The power is always on if no functionality is supported */
if (!(slot->slot_cap & PCICAP_EXP_SLOTCAP_PWCTRL))
*val = PCI_SLOT_POWER_ON;
else
*val = slot->power_state;
return OPAL_SUCCESS;
}
static int64_t pcie_slot_get_attention_state(struct pci_slot *slot,
uint8_t *val)
{
struct phb *phb = slot->phb;
struct pci_device *pd = slot->pd;
uint32_t ecap;
uint16_t state;
/* Attention is off if the capability is missing */
if (!(slot->slot_cap & PCICAP_EXP_SLOTCAP_ATTNI)) {
*val = 0;
return OPAL_SUCCESS;
}
/* Retrieve attention state */
ecap = pci_cap(pd, PCI_CFG_CAP_ID_EXP, false);
pci_cfg_read16(phb, pd->bdfn, ecap + PCICAP_EXP_SLOTCTL, &state);
state = (state & PCICAP_EXP_SLOTCTL_ATTNI) >> 6;
switch (state) {
case PCIE_INDIC_ON:
*val = PCI_SLOT_ATTN_LED_ON;
break;
case PCIE_INDIC_BLINK:
*val = PCI_SLOT_ATTN_LED_BLINK;
break;
case PCIE_INDIC_OFF:
default:
*val = PCI_SLOT_ATTN_LED_OFF;
}
return OPAL_SUCCESS;
}
static int64_t pcie_slot_get_latch_state(struct pci_slot *slot,
uint8_t *val)
{
struct phb *phb = slot->phb;
struct pci_device *pd = slot->pd;
uint32_t ecap;
uint16_t state;
/* Latch is off if MRL sensor doesn't exist */
if (!(slot->slot_cap & PCICAP_EXP_SLOTCAP_MRLSENS)) {
*val = 0;
return OPAL_SUCCESS;
}
/* Retrieve MRL sensor state */
ecap = pci_cap(pd, PCI_CFG_CAP_ID_EXP, false);
pci_cfg_read16(phb, pd->bdfn, ecap + PCICAP_EXP_SLOTSTAT, &state);
if (state & PCICAP_EXP_SLOTSTAT_MRLSENSST)
*val = 1;
else
*val = 0;
return OPAL_SUCCESS;
}
static int64_t pcie_slot_set_attention_state(struct pci_slot *slot,
uint8_t val)
{
struct phb *phb = slot->phb;
struct pci_device *pd = slot->pd;
uint32_t ecap;
uint16_t state;
/* Drop the request if functionality doesn't exist */
if (!(slot->slot_cap & PCICAP_EXP_SLOTCAP_ATTNI))
return OPAL_SUCCESS;
/* Update with the requested state */
ecap = pci_cap(pd, PCI_CFG_CAP_ID_EXP, false);
pci_cfg_read16(phb, pd->bdfn, ecap + PCICAP_EXP_SLOTCTL, &state);
state &= ~PCICAP_EXP_SLOTCTL_ATTNI;
switch (val) {
case PCI_SLOT_ATTN_LED_ON:
state |= (PCIE_INDIC_ON << 6);
break;
case PCI_SLOT_ATTN_LED_BLINK:
state |= (PCIE_INDIC_BLINK << 6);
break;
case PCI_SLOT_ATTN_LED_OFF:
state |= (PCIE_INDIC_OFF << 6);
break;
default:
prlog(PR_ERR, PCIE_SLOT_PREFIX
"Invalid attention state (0x%x)\n", slot->id, val);
return OPAL_PARAMETER;
}
pci_cfg_write16(phb, pd->bdfn, ecap + PCICAP_EXP_SLOTCTL, state);
return OPAL_SUCCESS;
}
static int64_t pcie_slot_set_power_state(struct pci_slot *slot, uint8_t val)
{
struct phb *phb = slot->phb;
struct pci_device *pd = slot->pd;
uint32_t ecap;
uint16_t state;
/* Drop the request if functionality doesn't exist */
if (!(slot->slot_cap & PCICAP_EXP_SLOTCAP_PWCTRL))
return OPAL_SUCCESS;
if (slot->power_state == val)
return OPAL_SUCCESS;
pci_slot_set_state(slot, PCI_SLOT_STATE_SPOWER_START);
slot->power_state = val;
ecap = pci_cap(pd, PCI_CFG_CAP_ID_EXP, false);
pci_cfg_read16(phb, pd->bdfn, ecap + PCICAP_EXP_SLOTCTL, &state);
state &= ~(PCICAP_EXP_SLOTCTL_PWRCTLR | PCICAP_EXP_SLOTCTL_PWRI);
switch (val) {
case PCI_SLOT_POWER_OFF:
state |= (PCICAP_EXP_SLOTCTL_PWRCTLR | (PCIE_INDIC_OFF << 8));
break;
case PCI_SLOT_POWER_ON:
state |= (PCIE_INDIC_ON << 8);
break;
default:
pci_slot_set_state(slot, PCI_SLOT_STATE_NORMAL);
prlog(PR_ERR, PCIE_SLOT_PREFIX
"Invalid power state (0x%x)\n", slot->id, val);
return OPAL_PARAMETER;
}
pci_cfg_write16(phb, pd->bdfn, ecap + PCICAP_EXP_SLOTCTL, state);
pci_slot_set_state(slot, PCI_SLOT_STATE_SPOWER_DONE);
return OPAL_ASYNC_COMPLETION;
}
static int64_t pcie_slot_sm_poll_link(struct pci_slot *slot)
{
struct phb *phb = slot->phb;
struct pci_device *pd = slot->pd;
uint32_t ecap = pci_cap(pd, PCI_CFG_CAP_ID_EXP, false);
uint16_t val;
uint8_t presence = 0;
switch (slot->state) {
case PCI_SLOT_STATE_LINK_START_POLL:
PCIE_SLOT_DBG(slot, "LINK: Start polling\n");
/* Link is down for ever without devices attached */
if (slot->ops.get_presence_state)
slot->ops.get_presence_state(slot, &presence);
if (!presence) {
PCIE_SLOT_DBG(slot, "LINK: No adapter, end polling\n");
pci_slot_set_state(slot, PCI_SLOT_STATE_NORMAL);
return OPAL_SUCCESS;
}
/* Enable the link without check */
pci_cfg_read16(phb, pd->bdfn, ecap + PCICAP_EXP_LCTL, &val);
val &= ~PCICAP_EXP_LCTL_LINK_DIS;
pci_cfg_write16(phb, pd->bdfn, ecap + PCICAP_EXP_LCTL, val);
/*
* If the link change report isn't supported, we expect
* the link is up and stabilized after one second.
*/
if (!(slot->link_cap & PCICAP_EXP_LCAP_DL_ACT_REP)) {
pci_slot_set_state(slot,
PCI_SLOT_STATE_LINK_DELAY_FINALIZED);
return pci_slot_set_sm_timeout(slot, secs_to_tb(1));
}
/*
* Poll the link state if link state change report is
* supported on the link.
*/
pci_slot_set_state(slot, PCI_SLOT_STATE_LINK_POLLING);
slot->retries = 250;
return pci_slot_set_sm_timeout(slot, msecs_to_tb(20));
case PCI_SLOT_STATE_LINK_DELAY_FINALIZED:
PCIE_SLOT_DBG(slot, "LINK: No link report, end polling\n");
if (slot->ops.prepare_link_change)
slot->ops.prepare_link_change(slot, true);
pci_slot_set_state(slot, PCI_SLOT_STATE_NORMAL);
return OPAL_SUCCESS;
case PCI_SLOT_STATE_LINK_POLLING:
pci_cfg_read16(phb, pd->bdfn, ecap + PCICAP_EXP_LSTAT, &val);
if (val & PCICAP_EXP_LSTAT_DLLL_ACT) {
PCIE_SLOT_DBG(slot, "LINK: Link is up, end polling\n");
if (slot->ops.prepare_link_change)
slot->ops.prepare_link_change(slot, true);
pci_slot_set_state(slot, PCI_SLOT_STATE_NORMAL);
return OPAL_SUCCESS;
}
/* Check link state again until timeout */
if (slot->retries-- == 0) {
prlog(PR_ERR, PCIE_SLOT_PREFIX
"LINK: Timeout waiting for up (%04x)\n",
slot->id, val);
pci_slot_set_state(slot, PCI_SLOT_STATE_NORMAL);
return OPAL_SUCCESS;
}
return pci_slot_set_sm_timeout(slot, msecs_to_tb(20));
default:
prlog(PR_ERR, PCIE_SLOT_PREFIX
"Link: Unexpected slot state %08x\n",
slot->id, slot->state);
}
pci_slot_set_state(slot, PCI_SLOT_STATE_NORMAL);
return OPAL_HARDWARE;
}
static void pcie_slot_reset(struct pci_slot *slot, bool assert)
{
struct phb *phb = slot->phb;
struct pci_device *pd = slot->pd;
uint16_t ctl;
pci_cfg_read16(phb, pd->bdfn, PCI_CFG_BRCTL, &ctl);
if (assert)
ctl |= PCI_CFG_BRCTL_SECONDARY_RESET;
else
ctl &= ~PCI_CFG_BRCTL_SECONDARY_RESET;
pci_cfg_write16(phb, pd->bdfn, PCI_CFG_BRCTL, ctl);
}
static int64_t pcie_slot_sm_hreset(struct pci_slot *slot)
{
switch (slot->state) {
case PCI_SLOT_STATE_NORMAL:
PCIE_SLOT_DBG(slot, "HRESET: Starts\n");
if (slot->ops.prepare_link_change) {
PCIE_SLOT_DBG(slot, "HRESET: Prepare for link down\n");
slot->ops.prepare_link_change(slot, false);
}
/* fall through */
case PCI_SLOT_STATE_HRESET_START:
PCIE_SLOT_DBG(slot, "HRESET: Assert\n");
pcie_slot_reset(slot, true);
pci_slot_set_state(slot, PCI_SLOT_STATE_HRESET_HOLD);
return pci_slot_set_sm_timeout(slot, msecs_to_tb(250));
case PCI_SLOT_STATE_HRESET_HOLD:
PCIE_SLOT_DBG(slot, "HRESET: Deassert\n");
pcie_slot_reset(slot, false);
pci_slot_set_state(slot, PCI_SLOT_STATE_LINK_START_POLL);
return pci_slot_set_sm_timeout(slot, msecs_to_tb(1800));
default:
PCIE_SLOT_DBG(slot, "HRESET: Unexpected slot state %08x\n",
slot->state);
}
pci_slot_set_state(slot, PCI_SLOT_STATE_NORMAL);
return OPAL_HARDWARE;
}
/*
* Usually, individual platforms need to override the power
* management methods for fundamental reset, but the hot
* reset method is commonly shared.
*/
static int64_t pcie_slot_sm_freset(struct pci_slot *slot)
{
uint8_t power_state = PCI_SLOT_POWER_ON;
switch (slot->state) {
case PCI_SLOT_STATE_NORMAL:
PCIE_SLOT_DBG(slot, "FRESET: Starts\n");
if (slot->ops.prepare_link_change)
slot->ops.prepare_link_change(slot, false);
/* Retrieve power state */
if (slot->ops.get_power_state) {
PCIE_SLOT_DBG(slot, "FRESET: Retrieve power state\n");
slot->ops.get_power_state(slot, &power_state);
}
/* In power on state, power it off */
if (power_state == PCI_SLOT_POWER_ON &&
slot->ops.set_power_state) {
PCIE_SLOT_DBG(slot, "FRESET: Power is on, turn off\n");
slot->ops.set_power_state(slot, PCI_SLOT_POWER_OFF);
pci_slot_set_state(slot,
PCI_SLOT_STATE_FRESET_POWER_OFF);
return pci_slot_set_sm_timeout(slot, msecs_to_tb(50));
}
/* No power state change, fall through */
case PCI_SLOT_STATE_FRESET_POWER_OFF:
PCIE_SLOT_DBG(slot, "FRESET: Power is off, turn on\n");
if (slot->ops.set_power_state)
slot->ops.set_power_state(slot, PCI_SLOT_POWER_ON);
pci_slot_set_state(slot, PCI_SLOT_STATE_HRESET_START);
return pci_slot_set_sm_timeout(slot, msecs_to_tb(50));
default:
prlog(PR_ERR, PCIE_SLOT_PREFIX
"FRESET: Unexpected slot state %08x\n",
slot->id, slot->state);
}
pci_slot_set_state(slot, PCI_SLOT_STATE_NORMAL);
return OPAL_HARDWARE;
}
struct pci_slot *pcie_slot_create(struct phb *phb, struct pci_device *pd)
{
struct pci_slot *slot;
uint32_t ecap;
/* Allocate PCI slot */
slot = pci_slot_alloc(phb, pd);
if (!slot)
return NULL;
/* Cache the link and slot capabilities */
if (pd) {
ecap = pci_cap(pd, PCI_CFG_CAP_ID_EXP, false);
pci_cfg_read32(phb, pd->bdfn, ecap + PCICAP_EXP_LCAP,
&slot->link_cap);
pci_cfg_read32(phb, pd->bdfn, ecap + PCICAP_EXP_SLOTCAP,
&slot->slot_cap);
}
if ((slot->slot_cap & PCICAP_EXP_SLOTCAP_HPLUG_SURP) &&
(slot->slot_cap & PCICAP_EXP_SLOTCAP_HPLUG_CAP))
slot->pluggable = 1;
if (slot->slot_cap & PCICAP_EXP_SLOTCAP_PWCTRL)
slot->power_ctl = 1;
if (slot->slot_cap & PCICAP_EXP_SLOTCAP_PWRI)
slot->power_led_ctl = PCI_SLOT_PWR_LED_CTL_KERNEL;
if (slot->slot_cap & PCICAP_EXP_SLOTCAP_ATTNI)
slot->attn_led_ctl = PCI_SLOT_ATTN_LED_CTL_KERNEL;
slot->wired_lanes = ((slot->link_cap & PCICAP_EXP_LCAP_MAXWDTH) >> 4);
/* Standard slot operations */
slot->ops.get_presence_state = pcie_slot_get_presence_state;
slot->ops.get_link_state = pcie_slot_get_link_state;
slot->ops.get_power_state = pcie_slot_get_power_state;
slot->ops.get_attention_state = pcie_slot_get_attention_state;
slot->ops.get_latch_state = pcie_slot_get_latch_state;
slot->ops.set_power_state = pcie_slot_set_power_state;
slot->ops.set_attention_state = pcie_slot_set_attention_state;
/*
* State machine (SM) based reset stuff. The poll function is always
* unified for all cases.
*/
slot->ops.poll_link = pcie_slot_sm_poll_link;
slot->ops.hreset = pcie_slot_sm_hreset;
slot->ops.freset = pcie_slot_sm_freset;
slot->ops.pfreset = NULL;
return slot;
}
|