Lines Matching +full:power +full:- +full:managed

1 /* SPDX-License-Identifier: GPL-2.0-only */
5 * Copyright (C) 2018-2021 ARM Ltd.
20 * struct scmi_revision_info - version information structure
29 * @impl_ver: A vendor-specific implementation version.
31 * @sub_vendor_id: A sub-vendor identifier(Null terminated ASCII string)
64 * struct scmi_clk_proto_ops - represents the various operations provided
88 * struct scmi_perf_proto_ops - represents the various operations provided
102 * @est_power_get: gets the estimated power cost for a given performance domain
106 * @power_scale_mw_get: indicates if the power values provided are in milliWatts
128 unsigned long *rate, unsigned long *power);
135 * struct scmi_power_proto_ops - represents the various operations provided
136 * by SCMI Power Protocol
138 * @num_domains_get: get the count of power domains provided by SCMI
139 * @name_get: gets the name of a power domain
140 * @state_set: sets the power state of a power domain
141 * @state_get: gets the power state of a power domain
147 #define SCMI_POWER_STATE_ID_MASK (BIT(28) - 1)
160 * struct scmi_sensor_reading - represent a timestamped read
174 * struct scmi_range_attrs - specifies a sensor or axis values' range
184 * struct scmi_sensor_axis_info - describes one sensor axes
187 * @scale: Power-of-10 multiplier applied to the axis unit.
188 * @name: NULL-terminated string representing axes name as advertised by
194 * @exponent: Extended attribute representing the power-of-10 multiplier that
212 * struct scmi_sensor_intervals_info - describes number and type of available
223 * lesser-than-64-bytes dynamic allocation for small @count
247 * struct scmi_sensor_info - represents information related to one of the
251 * @scale: Power-of-10 multiplier applied to the sensor unit.
256 * @tstamp_scale: Power-of-10 multiplier applied to the sensor timestamps to
264 * @name: NULL-terminated string representing sensor name as advertised by
268 * @sensor_power: Extended attribute representing the average power
275 * @exponent: Extended attribute representing the power-of-10 multiplier that is
347 POWER = 0x7, enumerator
438 * struct scmi_sensor_proto_ops - represents the various operations provided
443 * @trip_point_config: selects and configures a trip-point of interest
447 * Supports multi-axis sensors for sensors which
471 * struct scmi_reset_proto_ops - represents the various operations provided
491 * struct scmi_voltage_info - describe one available SCMI Voltage Domain
495 * - when True the entries are to be interpreted as triplets,
498 * - when False the entries simply represent a single discrete
522 * struct scmi_voltage_proto_ops - represents the various operations provided
549 * struct scmi_notify_ops - represents notifications' operations provided by
551 * @devm_event_notifier_register: Managed registration of a notifier_block for
553 * @devm_event_notifier_unregister: Managed unregistration of a notifier_block
564 * @sdev: The scmi_device to use when calling the devres managed ops devm_
566 * calling the managed ops devm_
608 * struct scmi_handle - Handle returned to ARM SCMI clients for usage.
612 * @devm_protocol_get: devres managed method to acquire a protocol and get specific
614 * @devm_protocol_put: devres managed method to release a protocol
689 return -EINVAL; in scmi_driver_register()
701 * module_scmi_driver() - Helper macro for registering a scmi driver
712 * module_scmi_protocol() - Helper macro for registering a scmi protocol
727 /* SCMI Notification API - Custom Event Reports */