xref: /aosp_15_r20/external/coreboot/src/vendorcode/cavium/bdk/libbdk-boot/bdk-boot-status.c (revision b9411a12aaaa7e1e6a6fb7c5e057f44ee179a49c)
1 /***********************license start***********************************
2 * Copyright (c) 2003-2017  Cavium Inc. ([email protected]). All rights
3 * reserved.
4 *
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions are
8 * met:
9 *
10 *   * Redistributions of source code must retain the above copyright
11 *     notice, this list of conditions and the following disclaimer.
12 *
13 *   * Redistributions in binary form must reproduce the above
14 *     copyright notice, this list of conditions and the following
15 *     disclaimer in the documentation and/or other materials provided
16 *     with the distribution.
17 *
18 *   * Neither the name of Cavium Inc. nor the names of
19 *     its contributors may be used to endorse or promote products
20 *     derived from this software without specific prior written
21 *     permission.
22 *
23 * This Software, including technical data, may be subject to U.S. export
24 * control laws, including the U.S. Export Administration Act and its
25 * associated regulations, and may be subject to export or import
26 * regulations in other countries.
27 *
28 * TO THE MAXIMUM EXTENT PERMITTED BY LAW, THE SOFTWARE IS PROVIDED "AS IS"
29 * AND WITH ALL FAULTS AND CAVIUM INC. MAKES NO PROMISES, REPRESENTATIONS OR
30 * WARRANTIES, EITHER EXPRESS, IMPLIED, STATUTORY, OR OTHERWISE, WITH RESPECT
31 * TO THE SOFTWARE, INCLUDING ITS CONDITION, ITS CONFORMITY TO ANY
32 * REPRESENTATION OR DESCRIPTION, OR THE EXISTENCE OF ANY LATENT OR PATENT
33 * DEFECTS, AND CAVIUM SPECIFICALLY DISCLAIMS ALL IMPLIED (IF ANY) WARRANTIES
34 * OF TITLE, MERCHANTABILITY, NONINFRINGEMENT, FITNESS FOR A PARTICULAR
35 * PURPOSE, LACK OF VIRUSES, ACCURACY OR COMPLETENESS, QUIET ENJOYMENT,
36 * QUIET POSSESSION OR CORRESPONDENCE TO DESCRIPTION. THE ENTIRE  RISK
37 * ARISING OUT OF USE OR PERFORMANCE OF THE SOFTWARE LIES WITH YOU.
38 ***********************license end**************************************/
39 #include <bdk.h>
40 #include "libbdk-arch/bdk-csrs-mio_tws.h"
41 #include "libbdk-boot/bdk-boot-status.h"
42 #include <libbdk-hal/bdk-config.h>
43 
44 /**
45  * Report boot status to the BMC or whomever might care. This function
46  * will return quickly except for a status of "power cycle". In the power cycle
47  * case it is assumed the board is in a bad state and should not continue until
48  * a power cycle restarts us.
49  *
50  * @param status Status to report. Enumerated in bdk_boot_status_t
51  */
bdk_boot_status(bdk_boot_status_t status)52 void bdk_boot_status(bdk_boot_status_t status)
53 {
54     bdk_node_t node = bdk_numa_master();
55     int twsi = bdk_config_get_int(BDK_CONFIG_BMC_TWSI);
56 
57     /* Update status */
58     if (twsi != -1)
59     {
60         BDK_CSR_DEFINE(sw_twsi, BDK_MIO_TWSX_SW_TWSI(twsi));
61         sw_twsi.u = 0;
62         sw_twsi.s.v = 1; /* Valid data */
63         sw_twsi.s.slonly = 1; /* Slave only */
64         sw_twsi.s.data = status;
65         BDK_CSR_WRITE(node, BDK_MIO_TWSX_SW_TWSI(twsi), sw_twsi.u);
66     }
67 
68     /* As a special case, power cycle will display a message and try a
69        soft reset if we can't power cycle in 5 seconds */
70     if (status == BDK_BOOT_STATUS_REQUEST_POWER_CYCLE)
71     {
72         if (twsi != -1)
73         {
74             printf("Requested power cycle\n");
75             bdk_wait_usec(5000000); /* 5 sec */
76             printf("Power cycle failed, trying soft reset\n");
77         }
78         else
79             printf("Performing soft reset\n");
80         bdk_reset_chip(node);
81     }
82 }
83 
84