aboutsummaryrefslogtreecommitdiff
path: root/hw/fsp/fsp-console.c
diff options
context:
space:
mode:
authorVasant Hegde <hegdevasant@linux.vnet.ibm.com>2017-10-10 15:07:45 +0530
committerStewart Smith <stewart@linux.vnet.ibm.com>2017-10-11 19:16:23 +1100
commit175e406ac29435017c5bd08b2c45d93b2c5a7669 (patch)
tree41c123026b7d12ee4e4155619dcc03bbfef62f53 /hw/fsp/fsp-console.c
parenta4788a49f004a91bb8ca015336abf9ae119fbc52 (diff)
downloadskiboot-175e406ac29435017c5bd08b2c45d93b2c5a7669.zip
skiboot-175e406ac29435017c5bd08b2c45d93b2c5a7669.tar.gz
skiboot-175e406ac29435017c5bd08b2c45d93b2c5a7669.tar.bz2
FSP/CONSOLE: Do not associate unavailable console
Presently OPAL sends associate/unassociate MBOX command for all FSP serial console (like below OPAL message). We have to check console is available or not before sending this message. OPAL log: ------- [ 5013.227994012,7] FSP: Reassociating HVSI console 1 [ 5013.227997540,7] FSP: Reassociating HVSI console 2 Signed-off-by: Vasant Hegde <hegdevasant@linux.vnet.ibm.com> Acked-by: Ananth N Mavinakayanahalli <ananth@linux.vnet.ibm.com> Signed-off-by: Stewart Smith <stewart@linux.vnet.ibm.com>
Diffstat (limited to 'hw/fsp/fsp-console.c')
-rw-r--r--hw/fsp/fsp-console.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/hw/fsp/fsp-console.c b/hw/fsp/fsp-console.c
index a855133..8ea4c16 100644
--- a/hw/fsp/fsp-console.c
+++ b/hw/fsp/fsp-console.c
@@ -92,6 +92,9 @@ static void fsp_console_reinit(void)
for (i = 0; i < MAX_SERIAL; i++) {
struct fsp_serial *fs = &fsp_serials[i];
+ if (!fs->available)
+ continue;
+
if (fs->rsrc_id == 0xffff)
continue;
prlog(PR_DEBUG, "FSP: Reassociating HVSI console %d\n", i);
@@ -903,6 +906,10 @@ static void reopen_all_hvsi(void)
for (i = 0; i < MAX_SERIAL; i++) {
struct fsp_serial *fs = &fsp_serials[i];
+
+ if (!fs->available)
+ continue;
+
if (fs->rsrc_id == 0xffff)
continue;
prlog(PR_NOTICE, "FSP: Deassociating HVSI console %d\n", i);
@@ -911,6 +918,10 @@ static void reopen_all_hvsi(void)
}
for (i = 0; i < MAX_SERIAL; i++) {
struct fsp_serial *fs = &fsp_serials[i];
+
+ if (!fs->available)
+ continue;
+
if (fs->rsrc_id == 0xffff)
continue;
prlog(PR_NOTICE, "FSP: Reassociating HVSI console %d\n", i);