User-Space EC Interface (cdev)

The surface_aggregator_cdev module provides a misc-device for the SSAM controller to allow for a (more or less) direct connection from user-space to the SAM EC. It is intended to be used for development and debugging, and therefore should not be used or relied upon in any other way. Note that this module is not loaded automatically, but instead must be loaded manually.

The provided interface is accessible through the /dev/surface/aggregator device-file. All functionality of this interface is provided via IOCTLs. These IOCTLs and their respective input/output parameter structs are defined in include/uapi/linux/surface_aggregator/cdev.h.

A small python library and scripts for accessing this interface can be found at https://github.com/linux-surface/surface-aggregator-module/tree/master/scripts/ssam.

Controller IOCTLs

The following IOCTLs are provided:

Controller IOCTLs

Type

Number

Direction

Name

Description

0xA5

1

WR

REQUEST

Perform synchronous SAM request.

REQUEST

Defined as _IOWR(0xA5, 1, struct ssam_cdev_request).

Executes a synchronous SAM request. The request specification is passed in as argument of type struct ssam_cdev_request, which is then written to/modified by the IOCTL to return status and result of the request.

Request payload data must be allocated separately and is passed in via the payload.data and payload.length members. If a response is required, the response buffer must be allocated by the caller and passed in via the response.data member. The response.length member must be set to the capacity of this buffer, or if no response is required, zero. Upon completion of the request, the call will write the response to the response buffer (if its capacity allows it) and overwrite the length field with the actual size of the response, in bytes.

Additionally, if the request has a response, this must be indicated via the request flags, as is done with in-kernel requests. Request flags can be set via the flags member and the values correspond to the values found in enum ssam_cdev_request_flags.

Finally, the status of the request itself is returned in the status member (a negative errno value indicating failure). Note that failure indication of the IOCTL is separated from failure indication of the request: The IOCTL returns a negative status code if anything failed during setup of the request (-EFAULT) or if the provided argument or any of its fields are invalid (-EINVAL). In this case, the status value of the request argument may be set, providing more detail on what went wrong (e.g. -ENOMEM for out-of-memory), but this value may also be zero. The IOCTL will return with a zero status code in case the request has been set up, submitted, and completed (i.e. handed back to user-space) successfully from inside the IOCTL, but the request status member may still be negative in case the actual execution of the request failed after it has been submitted.

A full definition of the argument struct is provided below:

enum ssam_cdev_request_flags

Request flags for SSAM cdev request IOCTL.

Constants

SSAM_CDEV_REQUEST_HAS_RESPONSE

Specifies that the request expects a response. If not set, the request will be directly completed after its underlying packet has been transmitted. If set, the request transport system waits for a response of the request.

SSAM_CDEV_REQUEST_UNSEQUENCED

Specifies that the request should be transmitted via an unsequenced packet. If set, the request must not have a response, meaning that this flag and the SSAM_CDEV_REQUEST_HAS_RESPONSE flag are mutually exclusive.

struct ssam_cdev_request

Controller request IOCTL argument.

Definition

struct ssam_cdev_request {
  __u8 target_category;
  __u8 target_id;
  __u8 command_id;
  __u8 instance_id;
  __u16 flags;
  __s16 status;
  struct {
    __u64 data;
    __u16 length;
    __u8 __pad[6];
  } payload;
  struct {
    __u64 data;
    __u16 length;
    __u8 __pad[6];
  } response;
};

Members

target_category

Target category of the SAM request.

target_id

Target ID of the SAM request.

command_id

Command ID of the SAM request.

instance_id

Instance ID of the SAM request.

flags

Request flags (see enum ssam_cdev_request_flags).

status

Request status (output).

payload

Request payload (input data).

payload.data

Pointer to request payload data.

payload.length

Length of request payload data (in bytes).

response

Request response (output data).

response.data

Pointer to response buffer.

response.length

On input: Capacity of response buffer (in bytes). On output: Length of request response (number of bytes in the buffer that are actually used).