1. 14 9月, 2020 1 次提交
  2. 08 9月, 2020 1 次提交
  3. 13 7月, 2020 1 次提交
  4. 02 7月, 2020 1 次提交
  5. 30 6月, 2020 2 次提交
  6. 07 5月, 2020 1 次提交
  7. 21 4月, 2020 4 次提交
  8. 14 4月, 2020 3 次提交
  9. 10 2月, 2020 3 次提交
  10. 30 12月, 2019 1 次提交
    • L
      drivers: firmware: scmi: Extend SCMI transport layer by trace events · 729d3530
      Lukasz Luba 提交于
      The SCMI transport layer communicates via mailboxes and shared memory with
      firmware running on a microcontroller. It is platform specific how long it
      takes to pass a SCMI message. The most sensitive requests are coming from
      CPUFreq subsystem, which might be used by the scheduler.
      Thus, there is a need to measure these delays and capture anomalies.
      This change introduces trace events wrapped around transfer code.
      
      According to Jim's suggestion a unique transfer_id is to distinguish
      similar entries which might have the same message id, protocol id and
      sequence. This is a case then there are some timeouts in transfers.
      Suggested-by: NJim Quinlan <james.quinlan@broadcom.com>
      Signed-off-by: NLukasz Luba <lukasz.luba@arm.com>
      Signed-off-by: NSudeep Holla <sudeep.holla@arm.com>
      729d3530
  11. 24 12月, 2019 4 次提交
  12. 12 8月, 2019 10 次提交
    • S
      firmware: arm_scmi: Add support for asynchronous commands and delayed response · 58ecdf03
      Sudeep Holla 提交于
      Messages that are sent to platform, also known as commands and can be:
      
      1. Synchronous commands that block the channel until the requested work
      has been completed. The platform responds to these commands over the
      same channel and hence can't be used to send another command until the
      previous command has completed.
      
      2. Asynchronous commands on the other hand, the platform schedules the
      requested work to complete later in time and returns almost immediately
      freeing the channel for new commands. The response indicates the success
      or failure in the ability to schedule the requested work. When the work
      has completed, the platform sends an additional delayed response message.
      
      Using the same transmit buffer used for sending the asynchronous command
      even for the delayed response corresponding to it simplifies handling of
      the delayed response. It's the caller of asynchronous command that is
      responsible for allocating the completion flag that scmi driver can
      complete to indicate the arrival of delayed response.
      Signed-off-by: NSudeep Holla <sudeep.holla@arm.com>
      58ecdf03
    • S
      firmware: arm_scmi: Add mechanism to unpack message headers · 22d1f761
      Sudeep Holla 提交于
      In order to identify the message type when a response arrives, we need
      a mechanism to unpack the message header similar to packing. Let's
      add one.
      Signed-off-by: NSudeep Holla <sudeep.holla@arm.com>
      22d1f761
    • S
      firmware: arm_scmi: Separate out tx buffer handling and prepare to add rx · 38c927fb
      Sudeep Holla 提交于
      Currently we pre-allocate transmit buffers only and use the first free
      slot in that pre-allocated buffer for transmitting any new message that
      are generally originated from OS to the platform firmware.
      
      Notifications or the delayed responses on the other hand are originated
      from the platform firmware and consumes by the OS. It's better to have
      separate and dedicated pre-allocated buffers to handle the notifications.
      We can still use the transmit buffers for the delayed responses.
      
      In addition, let's prepare existing scmi_xfer_{get,put} for acquiring
      and releasing a slot to identify the right(tx/rx) buffers.
      Signed-off-by: NSudeep Holla <sudeep.holla@arm.com>
      38c927fb
    • S
      firmware: arm_scmi: Add receive channel support for notifications · 46cc7c28
      Sudeep Holla 提交于
      With scmi_mbox_chan_setup enabled to identify and setup both Tx and Rx,
      let's consolidate setting up of both the channels under the function
      scmi_mbox_txrx_setup.
      
      Since some platforms may opt not to support notifications or delayed
      response, they may not need support for Rx. Hence Rx is optional and
      failure of setting one up is not considered fatal.
      Signed-off-by: NSudeep Holla <sudeep.holla@arm.com>
      46cc7c28
    • S
      firmware: arm_scmi: Segregate tx channel handling and prepare to add rx · 3748daf7
      Sudeep Holla 提交于
      The transmit(Tx) channels are specified as the first entry and the
      receive(Rx) channels are the second entry as per the device tree
      bindings. Since we currently just support Tx, index 0 is hardcoded at
      all required callsites.
      
      In order to prepare for adding Rx support, let's remove those hardcoded
      index and add boolean parameter to identify Tx/Rx channels when setting
      them up.
      Signed-off-by: NSudeep Holla <sudeep.holla@arm.com>
      3748daf7
    • S
      firmware: arm_scmi: Reorder some functions to avoid forward declarations · 2747a967
      Sudeep Holla 提交于
      Re-shuffling few functions to keep definitions and their usages close.
      This is also needed to avoid too many unnecessary forward declarations
      while adding new features(delayed response and notifications).
      
      Keeping this separate to avoid mixing up of these trivial change that
      doesn't affect functionality into the ones that does.
      Signed-off-by: NSudeep Holla <sudeep.holla@arm.com>
      2747a967
    • S
      firmware: arm_scmi: Check if platform has released shmem before using · 9dc34d63
      Sudeep Holla 提交于
      Sometimes platfom may take too long to respond to the command and OS
      might timeout before platform transfer the ownership of the shared
      memory region to the OS with the response.
      
      Since the mailbox channel associated with the channel is freed and new
      commands are dispatch on the same channel, OS needs to wait until it
      gets back the ownership. If not, either OS may end up overwriting the
      platform response for the last command(which is fine as OS timed out
      that command) or platform might overwrite the payload for the next
      command with the response for the old.
      
      The latter is problematic as platform may end up interpretting the
      response as the payload. In order to avoid such race, let's wait until
      the OS gets back the ownership before we prepare the shared memory with
      the payload for the next command.
      Reported-by: NJim Quinlan <james.quinlan@broadcom.com>
      Signed-off-by: NSudeep Holla <sudeep.holla@arm.com>
      9dc34d63
    • S
      firmware: arm_scmi: Use the term 'message' instead of 'command' · 5b65af8f
      Sudeep Holla 提交于
      In preparation to adding support for other two types of messages that
      SCMI specification mentions, let's replace the term 'command' with the
      correct term 'message'.
      
      As per the specification the messages are of 3 types:
      commands(synchronous or asynchronous), delayed responses and notifications.
      Signed-off-by: NSudeep Holla <sudeep.holla@arm.com>
      5b65af8f
    • S
      firmware: arm_scmi: Fix few trivial typos in comments · c29a6289
      Sudeep Holla 提交于
      While adding new comments found couple of typos that are better fixed.
      
      s/informfation/information/
      s/statues/status/
      Signed-off-by: NSudeep Holla <sudeep.holla@arm.com>
      c29a6289
    • S
      firmware: arm_scmi: Remove extra check for invalid length message responses · 37bbffcb
      Sudeep Holla 提交于
      scmi_xfer_get_init ensures both transmit and receive buffer lengths are
      within the maximum limits. If receive buffer length is not supplied by
      the caller, it's set to the maximum limit value. Receive buffer length
      is never modified after that. So there's no need for the extra check
      when receive transmit completion for a command essage.
      
      Further, if the response header length is greater than the prescribed
      receive buffer length, the response buffer is truncated to the latter.
      Reported-by: NJim Quinlan <james.quinlan@broadcom.com>
      Signed-off-by: NSudeep Holla <sudeep.holla@arm.com>
      37bbffcb
  13. 13 4月, 2019 2 次提交
  14. 10 5月, 2018 5 次提交
  15. 09 5月, 2018 1 次提交