mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-23 04:48:14 +00:00

There are a few issues in mailbox that needs to be fixed. - Send doorbell after an indirect cmd - Do not ring doorbell when polling mailbox response as it should've been sent by send_cmd - remove unneeded cmd_free_offset check - Fix mailbox initialization - Fix get_config_status returning a wrong status when the status is busy - Add command length in mailbox command header Signed-off-by: Tien Hock, Loh <tien.hock.loh@intel.com> Change-Id: If613e2ca889a540a616c62d69ad0086a7cd46536
114 lines
3.3 KiB
C
114 lines
3.3 KiB
C
/*
|
|
* Copyright (c) 2019, Intel Corporation. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#ifndef SOCFPGA_MBOX_H
|
|
#define SOCFPGA_MBOX_H
|
|
|
|
#include <lib/utils_def.h>
|
|
|
|
#define MBOX_OFFSET 0xffa30000
|
|
|
|
#define MBOX_MAX_JOB_ID 0xf
|
|
#define MBOX_ATF_CLIENT_ID 0x1
|
|
#define MBOX_JOB_ID 0x1
|
|
|
|
/* Mailbox interrupt flags and masks */
|
|
#define MBOX_INT_FLAG_COE 0x1
|
|
#define MBOX_INT_FLAG_RIE 0x2
|
|
#define MBOX_INT_FLAG_UAE 0x100
|
|
#define MBOX_COE_BIT(INTERRUPT) ((INTERRUPT) & 0x3)
|
|
#define MBOX_UAE_BIT(INTERRUPT) (((INTERRUPT) & (1<<8)))
|
|
|
|
/* Mailbox response and status */
|
|
#define MBOX_RESP_BUFFER_SIZE 16
|
|
#define MBOX_RESP_ERR(BUFFER) ((BUFFER) & 0x00000fff)
|
|
#define MBOX_RESP_LEN(BUFFER) (((BUFFER) & 0x007ff000) >> 12)
|
|
#define MBOX_RESP_CLIENT_ID(BUFFER) (((BUFFER) & 0xf0000000) >> 28)
|
|
#define MBOX_RESP_JOB_ID(BUFFER) (((BUFFER) & 0x0f000000) >> 24)
|
|
#define MBOX_STATUS_UA_MASK (1<<8)
|
|
|
|
/* Mailbox command and response */
|
|
#define MBOX_CMD_FREE_OFFSET 0x14
|
|
#define MBOX_CMD_BUFFER_SIZE 32
|
|
#define MBOX_CLIENT_ID_CMD(CLIENT_ID) ((CLIENT_ID) << 28)
|
|
#define MBOX_JOB_ID_CMD(JOB_ID) (JOB_ID<<24)
|
|
#define MBOX_CMD_LEN_CMD(CMD_LEN) ((CMD_LEN) << 12)
|
|
#define MBOX_INDIRECT (1 << 11)
|
|
#define MBOX_INSUFFICIENT_BUFFER -2
|
|
#define MBOX_CIN 0x00
|
|
#define MBOX_ROUT 0x04
|
|
#define MBOX_URG 0x08
|
|
#define MBOX_INT 0x0C
|
|
#define MBOX_COUT 0x20
|
|
#define MBOX_RIN 0x24
|
|
#define MBOX_STATUS 0x2C
|
|
#define MBOX_CMD_BUFFER 0x40
|
|
#define MBOX_RESP_BUFFER 0xC0
|
|
|
|
#define MBOX_RESP_BUFFER_SIZE 16
|
|
#define MBOX_RESP_OK 0
|
|
#define MBOX_RESP_INVALID_CMD 1
|
|
#define MBOX_RESP_UNKNOWN_BR 2
|
|
#define MBOX_RESP_UNKNOWN 3
|
|
#define MBOX_RESP_NOT_CONFIGURED 256
|
|
|
|
/* Mailbox SDM doorbell */
|
|
#define MBOX_DOORBELL_TO_SDM 0x400
|
|
#define MBOX_DOORBELL_FROM_SDM 0x480
|
|
|
|
/* Mailbox QSPI commands */
|
|
#define MBOX_CMD_RESTART 2
|
|
#define MBOX_CMD_QSPI_OPEN 50
|
|
#define MBOX_CMD_QSPI_CLOSE 51
|
|
#define MBOX_CMD_QSPI_DIRECT 59
|
|
#define MBOX_CMD_GET_IDCODE 16
|
|
#define MBOX_CMD_QSPI_SET_CS 52
|
|
|
|
/* Mailbox CANCEL command */
|
|
#define MBOX_CMD_CANCEL 0x3
|
|
|
|
/* Mailbox REBOOT commands */
|
|
#define MBOX_CMD_REBOOT_HPS 71
|
|
|
|
/* Generic error handling */
|
|
#define MBOX_TIMEOUT -2047
|
|
#define MBOX_NO_RESPONSE -2
|
|
#define MBOX_WRONG_ID -3
|
|
|
|
/* Mailbox status */
|
|
#define RECONFIG_STATUS_STATE 0
|
|
#define RECONFIG_STATUS_PIN_STATUS 2
|
|
#define RECONFIG_STATUS_SOFTFUNC_STATUS 3
|
|
#define PIN_STATUS_NSTATUS (U(1) << 31)
|
|
#define SOFTFUNC_STATUS_SEU_ERROR (1 << 3)
|
|
#define SOFTFUNC_STATUS_INIT_DONE (1 << 1)
|
|
#define SOFTFUNC_STATUS_CONF_DONE (1 << 0)
|
|
#define MBOX_CFGSTAT_STATE_CONFIG 0x10000000
|
|
|
|
/* Mailbox reconfiguration commands */
|
|
#define MBOX_CONFIG_STATUS 4
|
|
#define MBOX_RECONFIG 6
|
|
#define MBOX_RECONFIG_DATA 8
|
|
#define MBOX_RECONFIG_STATUS 9
|
|
|
|
|
|
void mailbox_set_int(int interrupt_input);
|
|
int mailbox_init(void);
|
|
void mailbox_set_qspi_close(void);
|
|
void mailbox_set_qspi_open(void);
|
|
void mailbox_set_qspi_direct(void);
|
|
int mailbox_send_cmd(int job_id, unsigned int cmd, uint32_t *args,
|
|
int len, int urgent, uint32_t *response);
|
|
int mailbox_send_cmd_async(int job_id, unsigned int cmd, uint32_t *args,
|
|
int len, int urgent);
|
|
int mailbox_read_response(int job_id, uint32_t *response);
|
|
int mailbox_get_qspi_clock(void);
|
|
void mailbox_reset_cold(void);
|
|
void mailbox_clear_response(void);
|
|
|
|
uint32_t intel_mailbox_get_config_status(uint32_t cmd);
|
|
|
|
#endif /* SOCFPGA_MBOX_H */
|