Skip to content

Commit 53c4553

Browse files
vaibhav92stewartsmith
authored andcommitted
capp: Disable fast-reboot when capp is enabled
Ref[1] enables fast-reboot by default for POWER9. Presently fast-reboot for CAPP is not yet supported. Hence this patch disables fast-reboot in case the CAPP is enabled after reboot until its support is merged. References: [1] https://patchwork.ozlabs.org/patch/878879/ Suggested-by: Frederic Barrat <[email protected]> Signed-off-by: Vaibhav Jain <[email protected]> Acked-by: Andrew Donnellan <[email protected]> Signed-off-by: Stewart Smith <[email protected]>
1 parent 9972229 commit 53c4553

File tree

1 file changed

+19
-19
lines changed

1 file changed

+19
-19
lines changed

hw/phb4.c

+19-19
Original file line numberDiff line numberDiff line change
@@ -3993,7 +3993,7 @@ static int64_t phb4_set_capi_mode(struct phb *phb, uint64_t mode,
39933993
{
39943994
struct phb4 *p = phb_to_phb4(phb);
39953995
struct proc_chip *chip = get_chip(p->chip_id);
3996-
uint64_t reg;
3996+
uint64_t reg, ret;
39973997
uint32_t offset;
39983998

39993999

@@ -4017,33 +4017,33 @@ static int64_t phb4_set_capi_mode(struct phb *phb, uint64_t mode,
40174017
}
40184018

40194019
switch (mode) {
4020-
case OPAL_PHB_CAPI_MODE_PCIE:
4021-
return OPAL_UNSUPPORTED;
4022-
40234020
case OPAL_PHB_CAPI_MODE_CAPI:
4024-
return enable_capi_mode(p, pe_number, CAPI_DMA_TVT0,
4021+
ret = enable_capi_mode(p, pe_number, CAPI_DMA_TVT0,
40254022
CAPP_MAX_STQ_ENGINES |
40264023
CAPP_MIN_DMA_READ_ENGINES);
4027-
4028-
case OPAL_PHB_CAPI_MODE_DMA:
4029-
/* shouldn't be called, enabled by default on p9 */
4030-
return OPAL_UNSUPPORTED;
4031-
4024+
break;
40324025
case OPAL_PHB_CAPI_MODE_DMA_TVT1:
4033-
return enable_capi_mode(p, pe_number, CAPI_DMA_TVT1,
4026+
ret = enable_capi_mode(p, pe_number, CAPI_DMA_TVT1,
40344027
CAPP_MIN_STQ_ENGINES |
40354028
CAPP_MAX_DMA_READ_ENGINES);
4036-
4037-
case OPAL_PHB_CAPI_MODE_SNOOP_OFF:
4038-
/* shouldn't be called */
4039-
return OPAL_UNSUPPORTED;
4040-
4029+
break;
40414030
case OPAL_PHB_CAPI_MODE_SNOOP_ON:
4042-
/* nothing to do */
4043-
return OPAL_SUCCESS;
4031+
/* nothing to do P9 if CAPP is alreay enabled */
4032+
ret = OPAL_SUCCESS;
4033+
break;
4034+
4035+
case OPAL_PHB_CAPI_MODE_PCIE: /* shouldn't be called on p9*/
4036+
case OPAL_PHB_CAPI_MODE_DMA: /* Enabled by default on p9 */
4037+
case OPAL_PHB_CAPI_MODE_SNOOP_OFF: /* shouldn't be called on p9*/
4038+
default:
4039+
ret = OPAL_UNSUPPORTED;
40444040
}
40454041

4046-
return OPAL_UNSUPPORTED;
4042+
/* If CAPP enabled then disable fast-reboot for now */
4043+
if (ret == OPAL_SUCCESS)
4044+
disable_fast_reboot("CAPP being enabled");
4045+
4046+
return ret;
40474047
}
40484048

40494049
static void phb4_p2p_set_initiator(struct phb4 *p, uint16_t pe_number)

0 commit comments

Comments
 (0)