commit | 9dd93cfa7309ed5fd97c47a302dc1e2d227b526e | [log] [tgz] |
---|---|---|
author | Cyril Bur <cyril.bur@au1.ibm.com> | Mon Jan 30 16:36:46 2017 +1100 |
committer | Cyril Bur <cyril.bur@au1.ibm.com> | Mon Feb 06 14:00:13 2017 +1100 |
tree | b5af8e7e5c613a42c6e05518c430637600c0b15b | |
parent | f0409b99d08d1b15329c714f2b9683645f08de10 [diff] |
README: Update protocol notes Change-Id: I1ee76bd4fd0b23c2a8eb150fbe8e0b9c3086c074 Signed-off-by: Cyril Bur <cyril.bur@au1.ibm.com>
Copyright 2016 IBM
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.
The autotools of this requires the autoconf-archive package for your system
This is a protocol description using the mailbox registers on Aspeed 2400/2500 chips for host to BMC communication. The mailbox consists of 16 (8 bit) data registers see Layout for their use. Mailbox interrupt enabling, masking and triggering is done using a pair of control registers, one accessible by the host the other by the BMC. Interrupts can also be raised per write to each data register, for BMC and host. Write tiggered interrupts are configured using two 8 bit registers where each bit represents a data register and if an interrupt should fire on write. Two 8 bit registers are present to act as a mask for write triggered interrupts.
Messages usually originate from the host to the BMC. There are special cases for a back channel for the BMC to pass new information to the host which will be discussed later.
To initiate a request the host must set a command code (see Commands) into mailbox data register 0. It is also the hosts responsibility to generate a unique sequence number into mailbox register 1. After this any command specific data should be written (see Layout). The host must then generate an interrupt to the BMC by using bit 0 of its control register and wait for an interrupt in the response. Generating an interrupt automatically sets bit 7 of the corresponding control register. This bit can be used to poll for messages.
On receiving an interrupt (or polling on bit 7 of its Control Register) the BMC should read the message from the general registers of the mailbox and perform the necessary action before responding. On responding the BMC must ensure that the sequence number is the same as the one in the request from the host. The BMC must also ensure that mailbox data regsiter 13 is a valid response code (see Responses). The BMC should then use its control register to generate an interrupt for the host to notify it of a response.
BMC to host communication is also possible for notification of events from the BMC. This requires that the host have interrupts enabled on mailbox data register 15 (or otherwise poll on bit 7 of mailbox status register 1). On receiving such a notification the host should read mailbox data register 15 to determine the event code was set by the BMC (see BMC Event notifications in Commands for detail). After performing the necessary action the host should send a BMC_EVENT_ACK message to the BMC with which bit it has actioned.
Byte 0: COMMAND Byte 1: Sequence Byte 2-12: Arguments Byte 13: Response code Byte 14: Host controlled status reg Byte 15: BMC controlled status reg
RESET_STATE 1 GET_MBOX_INFO 2 GET_FLASH_INFO 3 CREATE_READ_WINDOW 4 CLOSE_WINDOW 5 CREATE_WRITE_WINDOW 6 MARK_WRITE_DIRTY 7 WRITE_FLUSH 8 BMC_EVENT_ACK 9
Unique message sequence number to be allocated by the host at the start of a command/response pair. The BMC must ensure the responses to a particular message contain the same sequence number that was in the request from the host.
SUCCESS 1 PARAM_ERROR 2 WRITE_ERROR 3 SYSTEM_ERROR 4 TIMEOUT 5
Only one window can be open at once.
Command: RESET_STATE Data: - Response: - Notes: This command is designed to inform the BMC that it should put host LPC mapping back in a state where the SBE will be able to use it. Currently this means pointing back to BMC flash pre mailbox protocol. Final behavour is still TBD. Command: GET_MBOX_INFO Arguements: Args 0: API version Response: Args 0: API version Args 1-2: read window size as number of blocks Args 3-4: write window size as number of block Args 5: Block size as power of two. Command: CLOSE_WINDOW Arguments: - Response: - Notes: Close active window. Renders the LPC mapping unusable. Command: GET_FLASH_INFO Arguments: - Response: Args 0-3: Flash size in bytes Args 4-7: Erase granule in bytes Command: CREATE_READ_WINDOW Arguments: Args 0-1: Read window offset as number of blocks Respons: Args 0-1: Read window position as number of blocks Notes: Offset is the offset within the flash, always specified from zero. Position is where flash at the requested offset is mapped on the LPC bus as viewed from the host. Command: CREATE_WRITE_WINDOW ARguments: Args 0-1: Write window offset as number of blocks Response: Args 0-1: Write window position as number of blocks Notes: Offset is the offset within the flash, always specified from zero. Position is where flash at the requested offset is mapped on the LPC bus as viewed from the host. Command: MARK_WRITE_DIRTY Data: Data 0-1: Where within window as number of blocks Data 2-5: Number of dirty bytes Response: - Notes: Where within the window is the index of the first dirty block within the window - zero refers to the first block of the mapping. This command marks bytes as dirty but does not nessesarily flush them to flash. It is expected that this command will respond quickly without actually performing a write to the backing store. Command WRITE_FLUSH Data: Data 0-1: Where within window as number of blocks Data 2-5: Number of dirty bytes Response: - Notes: Where within the window is the index of the first dirty block within the window - zero refers to the first block of the mapping. Number of dirty bytes can be zero, this would result in writing all bytes previously marked as dirty. This command will block untill all dirty bytes have been written to the backing store. Command: BMC_EVENT_ACK Data: Bits in the BMC status byte (mailbox data register 15) to ack Response: *clears the bits in mailbox data register 15* - Notes: The host will use this command to acknowledge BMC events supplied in mailbox register 15. BMC notifications: If the BMC needs to tell the host something then it simply writes to Byte 15. The host should have interrupts enabled on that register, or otherwise be polling it. -[bit 0] BMC reboot. A BMC reboot informs the host that its windows/dirty bytes/in flight commands will be lost and it should attempt to reopen windows and rewrite any data it had not flushed. Futhur details TBD