xref: /openbmc/linux/include/linux/scmi_protocol.h (revision 9bc8069c)
14752544aSSudeep Holla /* SPDX-License-Identifier: GPL-2.0-only */
2aa4f886fSSudeep Holla /*
3aa4f886fSSudeep Holla  * SCMI Message Protocol driver header
4aa4f886fSSudeep Holla  *
548dc16e2SCristian Marussi  * Copyright (C) 2018-2021 ARM Ltd.
6aa4f886fSSudeep Holla  */
770771c69SSudeep Holla 
870771c69SSudeep Holla #ifndef _LINUX_SCMI_PROTOCOL_H
970771c69SSudeep Holla #define _LINUX_SCMI_PROTOCOL_H
1070771c69SSudeep Holla 
111fe00b8bSCristian Marussi #include <linux/bitfield.h>
12933c5044SSudeep Holla #include <linux/device.h>
13e7c215f3SCristian Marussi #include <linux/notifier.h>
14aa4f886fSSudeep Holla #include <linux/types.h>
15aa4f886fSSudeep Holla 
16b6f20ff8SSudeep Holla #define SCMI_MAX_STR_SIZE	16
175f6c6430SSudeep Holla #define SCMI_MAX_NUM_RATES	16
18b6f20ff8SSudeep Holla 
19b6f20ff8SSudeep Holla /**
20b6f20ff8SSudeep Holla  * struct scmi_revision_info - version information structure
21b6f20ff8SSudeep Holla  *
22b6f20ff8SSudeep Holla  * @major_ver: Major ABI version. Change here implies risk of backward
23b6f20ff8SSudeep Holla  *	compatibility break.
24b6f20ff8SSudeep Holla  * @minor_ver: Minor ABI version. Change here implies new feature addition,
25b6f20ff8SSudeep Holla  *	or compatible change in ABI.
26b6f20ff8SSudeep Holla  * @num_protocols: Number of protocols that are implemented, excluding the
27b6f20ff8SSudeep Holla  *	base protocol.
28b6f20ff8SSudeep Holla  * @num_agents: Number of agents in the system.
29b6f20ff8SSudeep Holla  * @impl_ver: A vendor-specific implementation version.
30b6f20ff8SSudeep Holla  * @vendor_id: A vendor identifier(Null terminated ASCII string)
31b6f20ff8SSudeep Holla  * @sub_vendor_id: A sub-vendor identifier(Null terminated ASCII string)
32b6f20ff8SSudeep Holla  */
33b6f20ff8SSudeep Holla struct scmi_revision_info {
34b6f20ff8SSudeep Holla 	u16 major_ver;
35b6f20ff8SSudeep Holla 	u16 minor_ver;
36b6f20ff8SSudeep Holla 	u8 num_protocols;
37b6f20ff8SSudeep Holla 	u8 num_agents;
38b6f20ff8SSudeep Holla 	u32 impl_ver;
39b6f20ff8SSudeep Holla 	char vendor_id[SCMI_MAX_STR_SIZE];
40b6f20ff8SSudeep Holla 	char sub_vendor_id[SCMI_MAX_STR_SIZE];
41b6f20ff8SSudeep Holla };
42b6f20ff8SSudeep Holla 
435f6c6430SSudeep Holla struct scmi_clock_info {
445f6c6430SSudeep Holla 	char name[SCMI_MAX_STR_SIZE];
455f6c6430SSudeep Holla 	bool rate_discrete;
465f6c6430SSudeep Holla 	union {
475f6c6430SSudeep Holla 		struct {
485f6c6430SSudeep Holla 			int num_rates;
495f6c6430SSudeep Holla 			u64 rates[SCMI_MAX_NUM_RATES];
505f6c6430SSudeep Holla 		} list;
515f6c6430SSudeep Holla 		struct {
525f6c6430SSudeep Holla 			u64 min_rate;
535f6c6430SSudeep Holla 			u64 max_rate;
545f6c6430SSudeep Holla 			u64 step_size;
555f6c6430SSudeep Holla 		} range;
565f6c6430SSudeep Holla 	};
575f6c6430SSudeep Holla };
585f6c6430SSudeep Holla 
59a9e3fbfaSSudeep Holla struct scmi_handle;
6023934efeSCristian Marussi struct scmi_device;
6123934efeSCristian Marussi struct scmi_protocol_handle;
62a9e3fbfaSSudeep Holla 
63a9e3fbfaSSudeep Holla /**
645f6c6430SSudeep Holla  * struct scmi_clk_ops - represents the various operations provided
655f6c6430SSudeep Holla  *	by SCMI Clock Protocol
665f6c6430SSudeep Holla  *
675f6c6430SSudeep Holla  * @count_get: get the count of clocks provided by SCMI
685f6c6430SSudeep Holla  * @info_get: get the information of the specified clock
695f6c6430SSudeep Holla  * @rate_get: request the current clock rate of a clock
705f6c6430SSudeep Holla  * @rate_set: set the clock rate of a clock
715f6c6430SSudeep Holla  * @enable: enables the specified clock
725f6c6430SSudeep Holla  * @disable: disables the specified clock
735f6c6430SSudeep Holla  */
745f6c6430SSudeep Holla struct scmi_clk_ops {
755f6c6430SSudeep Holla 	int (*count_get)(const struct scmi_handle *handle);
765f6c6430SSudeep Holla 
775f6c6430SSudeep Holla 	const struct scmi_clock_info *(*info_get)
785f6c6430SSudeep Holla 		(const struct scmi_handle *handle, u32 clk_id);
795f6c6430SSudeep Holla 	int (*rate_get)(const struct scmi_handle *handle, u32 clk_id,
805f6c6430SSudeep Holla 			u64 *rate);
815f6c6430SSudeep Holla 	int (*rate_set)(const struct scmi_handle *handle, u32 clk_id,
82d0aba116SSudeep Holla 			u64 rate);
835f6c6430SSudeep Holla 	int (*enable)(const struct scmi_handle *handle, u32 clk_id);
845f6c6430SSudeep Holla 	int (*disable)(const struct scmi_handle *handle, u32 clk_id);
855f6c6430SSudeep Holla };
865f6c6430SSudeep Holla 
875f6c6430SSudeep Holla /**
881fec5e6bSCristian Marussi  * struct scmi_perf_proto_ops - represents the various operations provided
89a9e3fbfaSSudeep Holla  *	by SCMI Performance Protocol
90a9e3fbfaSSudeep Holla  *
91a9e3fbfaSSudeep Holla  * @limits_set: sets limits on the performance level of a domain
92a9e3fbfaSSudeep Holla  * @limits_get: gets limits on the performance level of a domain
93a9e3fbfaSSudeep Holla  * @level_set: sets the performance level of a domain
94a9e3fbfaSSudeep Holla  * @level_get: gets the performance level of a domain
95a9e3fbfaSSudeep Holla  * @device_domain_id: gets the scmi domain id for a given device
967859e08cSSudeep Holla  * @transition_latency_get: gets the DVFS transition latency for a given device
977859e08cSSudeep Holla  * @device_opps_add: adds all the OPPs for a given device
98a9e3fbfaSSudeep Holla  * @freq_set: sets the frequency for a given device using sustained frequency
99a9e3fbfaSSudeep Holla  *	to sustained performance level mapping
100a9e3fbfaSSudeep Holla  * @freq_get: gets the frequency for a given device using sustained frequency
101a9e3fbfaSSudeep Holla  *	to sustained performance level mapping
1021a63fe9aSQuentin Perret  * @est_power_get: gets the estimated power cost for a given performance domain
1031a63fe9aSQuentin Perret  *	at a given frequency
104a9e3fbfaSSudeep Holla  */
1051fec5e6bSCristian Marussi struct scmi_perf_proto_ops {
1061fec5e6bSCristian Marussi 	int (*limits_set)(const struct scmi_protocol_handle *ph, u32 domain,
1071fec5e6bSCristian Marussi 			  u32 max_perf, u32 min_perf);
1081fec5e6bSCristian Marussi 	int (*limits_get)(const struct scmi_protocol_handle *ph, u32 domain,
1091fec5e6bSCristian Marussi 			  u32 *max_perf, u32 *min_perf);
1101fec5e6bSCristian Marussi 	int (*level_set)(const struct scmi_protocol_handle *ph, u32 domain,
1111fec5e6bSCristian Marussi 			 u32 level, bool poll);
1121fec5e6bSCristian Marussi 	int (*level_get)(const struct scmi_protocol_handle *ph, u32 domain,
1131fec5e6bSCristian Marussi 			 u32 *level, bool poll);
1141fec5e6bSCristian Marussi 	int (*device_domain_id)(struct device *dev);
1151fec5e6bSCristian Marussi 	int (*transition_latency_get)(const struct scmi_protocol_handle *ph,
1161fec5e6bSCristian Marussi 				      struct device *dev);
1171fec5e6bSCristian Marussi 	int (*device_opps_add)(const struct scmi_protocol_handle *ph,
1181fec5e6bSCristian Marussi 			       struct device *dev);
1191fec5e6bSCristian Marussi 	int (*freq_set)(const struct scmi_protocol_handle *ph, u32 domain,
1201fec5e6bSCristian Marussi 			unsigned long rate, bool poll);
1211fec5e6bSCristian Marussi 	int (*freq_get)(const struct scmi_protocol_handle *ph, u32 domain,
1221fec5e6bSCristian Marussi 			unsigned long *rate, bool poll);
1231fec5e6bSCristian Marussi 	int (*est_power_get)(const struct scmi_protocol_handle *ph, u32 domain,
1241fec5e6bSCristian Marussi 			     unsigned long *rate, unsigned long *power);
1251fec5e6bSCristian Marussi 	bool (*fast_switch_possible)(const struct scmi_protocol_handle *ph,
1261fec5e6bSCristian Marussi 				     struct device *dev);
1271fec5e6bSCristian Marussi 	bool (*power_scale_mw_get)(const struct scmi_protocol_handle *ph);
1281fec5e6bSCristian Marussi };
1291fec5e6bSCristian Marussi 
130aa4f886fSSudeep Holla /**
131*9bc8069cSCristian Marussi  * struct scmi_power_proto_ops - represents the various operations provided
13276a65509SSudeep Holla  *	by SCMI Power Protocol
13376a65509SSudeep Holla  *
13476a65509SSudeep Holla  * @num_domains_get: get the count of power domains provided by SCMI
13576a65509SSudeep Holla  * @name_get: gets the name of a power domain
13676a65509SSudeep Holla  * @state_set: sets the power state of a power domain
13776a65509SSudeep Holla  * @state_get: gets the power state of a power domain
13876a65509SSudeep Holla  */
139*9bc8069cSCristian Marussi struct scmi_power_proto_ops {
140*9bc8069cSCristian Marussi 	int (*num_domains_get)(const struct scmi_protocol_handle *ph);
141*9bc8069cSCristian Marussi 	char *(*name_get)(const struct scmi_protocol_handle *ph, u32 domain);
14276a65509SSudeep Holla #define SCMI_POWER_STATE_TYPE_SHIFT	30
14376a65509SSudeep Holla #define SCMI_POWER_STATE_ID_MASK	(BIT(28) - 1)
14476a65509SSudeep Holla #define SCMI_POWER_STATE_PARAM(type, id) \
14576a65509SSudeep Holla 	((((type) & BIT(0)) << SCMI_POWER_STATE_TYPE_SHIFT) | \
14676a65509SSudeep Holla 		((id) & SCMI_POWER_STATE_ID_MASK))
14776a65509SSudeep Holla #define SCMI_POWER_STATE_GENERIC_ON	SCMI_POWER_STATE_PARAM(0, 0)
14876a65509SSudeep Holla #define SCMI_POWER_STATE_GENERIC_OFF	SCMI_POWER_STATE_PARAM(1, 0)
149*9bc8069cSCristian Marussi 	int (*state_set)(const struct scmi_protocol_handle *ph, u32 domain,
150*9bc8069cSCristian Marussi 			 u32 state);
151*9bc8069cSCristian Marussi 	int (*state_get)(const struct scmi_protocol_handle *ph, u32 domain,
152*9bc8069cSCristian Marussi 			 u32 *state);
153*9bc8069cSCristian Marussi };
154*9bc8069cSCristian Marussi 
155*9bc8069cSCristian Marussi struct scmi_power_ops {
156*9bc8069cSCristian Marussi 	int (*num_domains_get)(const struct scmi_handle *handle);
157*9bc8069cSCristian Marussi 	char *(*name_get)(const struct scmi_handle *handle, u32 domain);
15876a65509SSudeep Holla 	int (*state_set)(const struct scmi_handle *handle, u32 domain,
15976a65509SSudeep Holla 			 u32 state);
16076a65509SSudeep Holla 	int (*state_get)(const struct scmi_handle *handle, u32 domain,
16176a65509SSudeep Holla 			 u32 *state);
16276a65509SSudeep Holla };
16376a65509SSudeep Holla 
1641fe00b8bSCristian Marussi /**
165e2083d36SCristian Marussi  * scmi_sensor_reading  - represent a timestamped read
166e2083d36SCristian Marussi  *
167e2083d36SCristian Marussi  * Used by @reading_get_timestamped method.
168e2083d36SCristian Marussi  *
169e2083d36SCristian Marussi  * @value: The signed value sensor read.
170e2083d36SCristian Marussi  * @timestamp: An unsigned timestamp for the sensor read, as provided by
171e2083d36SCristian Marussi  *	       SCMI platform. Set to zero when not available.
172e2083d36SCristian Marussi  */
173e2083d36SCristian Marussi struct scmi_sensor_reading {
174e2083d36SCristian Marussi 	long long value;
175e2083d36SCristian Marussi 	unsigned long long timestamp;
176e2083d36SCristian Marussi };
177e2083d36SCristian Marussi 
178e2083d36SCristian Marussi /**
1791fe00b8bSCristian Marussi  * scmi_range_attrs  - specifies a sensor or axis values' range
1801fe00b8bSCristian Marussi  * @min_range: The minimum value which can be represented by the sensor/axis.
1811fe00b8bSCristian Marussi  * @max_range: The maximum value which can be represented by the sensor/axis.
1821fe00b8bSCristian Marussi  */
1831fe00b8bSCristian Marussi struct scmi_range_attrs {
1841fe00b8bSCristian Marussi 	long long min_range;
1851fe00b8bSCristian Marussi 	long long max_range;
1861fe00b8bSCristian Marussi };
1871fe00b8bSCristian Marussi 
1881fe00b8bSCristian Marussi /**
1891fe00b8bSCristian Marussi  * scmi_sensor_axis_info  - describes one sensor axes
1901fe00b8bSCristian Marussi  * @id: The axes ID.
1911fe00b8bSCristian Marussi  * @type: Axes type. Chosen amongst one of @enum scmi_sensor_class.
1921fe00b8bSCristian Marussi  * @scale: Power-of-10 multiplier applied to the axis unit.
1931fe00b8bSCristian Marussi  * @name: NULL-terminated string representing axes name as advertised by
1941fe00b8bSCristian Marussi  *	  SCMI platform.
1951fe00b8bSCristian Marussi  * @extended_attrs: Flag to indicate the presence of additional extended
1961fe00b8bSCristian Marussi  *		    attributes for this axes.
1971fe00b8bSCristian Marussi  * @resolution: Extended attribute representing the resolution of the axes.
1981fe00b8bSCristian Marussi  *		Set to 0 if not reported by this axes.
1991fe00b8bSCristian Marussi  * @exponent: Extended attribute representing the power-of-10 multiplier that
2001fe00b8bSCristian Marussi  *	      is applied to the resolution field. Set to 0 if not reported by
2011fe00b8bSCristian Marussi  *	      this axes.
2021fe00b8bSCristian Marussi  * @attrs: Extended attributes representing minimum and maximum values
2031fe00b8bSCristian Marussi  *	   measurable by this axes. Set to 0 if not reported by this sensor.
2041fe00b8bSCristian Marussi  */
2051fe00b8bSCristian Marussi struct scmi_sensor_axis_info {
2061fe00b8bSCristian Marussi 	unsigned int id;
2071fe00b8bSCristian Marussi 	unsigned int type;
2081fe00b8bSCristian Marussi 	int scale;
2095179c523SSudeep Holla 	char name[SCMI_MAX_STR_SIZE];
2101fe00b8bSCristian Marussi 	bool extended_attrs;
2111fe00b8bSCristian Marussi 	unsigned int resolution;
2121fe00b8bSCristian Marussi 	int exponent;
2131fe00b8bSCristian Marussi 	struct scmi_range_attrs attrs;
2141fe00b8bSCristian Marussi };
2151fe00b8bSCristian Marussi 
2161fe00b8bSCristian Marussi /**
2171fe00b8bSCristian Marussi  * scmi_sensor_intervals_info  - describes number and type of available update
2181fe00b8bSCristian Marussi  * intervals
2191fe00b8bSCristian Marussi  * @segmented: Flag for segmented intervals' representation. When True there
2201fe00b8bSCristian Marussi  *	       will be exactly 3 intervals in @desc, with each entry
2211fe00b8bSCristian Marussi  *	       representing a member of a segment in this order:
2221fe00b8bSCristian Marussi  *	       {lowest update interval, highest update interval, step size}
2231fe00b8bSCristian Marussi  * @count: Number of intervals described in @desc.
2241fe00b8bSCristian Marussi  * @desc: Array of @count interval descriptor bitmask represented as detailed in
2251fe00b8bSCristian Marussi  *	  the SCMI specification: it can be accessed using the accompanying
2261fe00b8bSCristian Marussi  *	  macros.
2271fe00b8bSCristian Marussi  * @prealloc_pool: A minimal preallocated pool of desc entries used to avoid
2281fe00b8bSCristian Marussi  *		   lesser-than-64-bytes dynamic allocation for small @count
2291fe00b8bSCristian Marussi  *		   values.
2301fe00b8bSCristian Marussi  */
2311fe00b8bSCristian Marussi struct scmi_sensor_intervals_info {
2321fe00b8bSCristian Marussi 	bool segmented;
2331fe00b8bSCristian Marussi 	unsigned int count;
2341fe00b8bSCristian Marussi #define SCMI_SENS_INTVL_SEGMENT_LOW	0
2351fe00b8bSCristian Marussi #define SCMI_SENS_INTVL_SEGMENT_HIGH	1
2361fe00b8bSCristian Marussi #define SCMI_SENS_INTVL_SEGMENT_STEP	2
2371fe00b8bSCristian Marussi 	unsigned int *desc;
2381fe00b8bSCristian Marussi #define SCMI_SENS_INTVL_GET_SECS(x)		FIELD_GET(GENMASK(20, 5), (x))
2391fe00b8bSCristian Marussi #define SCMI_SENS_INTVL_GET_EXP(x)					\
2401fe00b8bSCristian Marussi 	({								\
2411fe00b8bSCristian Marussi 		int __signed_exp = FIELD_GET(GENMASK(4, 0), (x));	\
2421fe00b8bSCristian Marussi 									\
2431fe00b8bSCristian Marussi 		if (__signed_exp & BIT(4))				\
2441fe00b8bSCristian Marussi 			__signed_exp |= GENMASK(31, 5);			\
2451fe00b8bSCristian Marussi 		__signed_exp;						\
2461fe00b8bSCristian Marussi 	})
2471fe00b8bSCristian Marussi #define SCMI_MAX_PREALLOC_POOL			16
2481fe00b8bSCristian Marussi 	unsigned int prealloc_pool[SCMI_MAX_PREALLOC_POOL];
2491fe00b8bSCristian Marussi };
2501fe00b8bSCristian Marussi 
2511fe00b8bSCristian Marussi /**
2521fe00b8bSCristian Marussi  * struct scmi_sensor_info - represents information related to one of the
2531fe00b8bSCristian Marussi  * available sensors.
2541fe00b8bSCristian Marussi  * @id: Sensor ID.
2551fe00b8bSCristian Marussi  * @type: Sensor type. Chosen amongst one of @enum scmi_sensor_class.
2561fe00b8bSCristian Marussi  * @scale: Power-of-10 multiplier applied to the sensor unit.
2571fe00b8bSCristian Marussi  * @num_trip_points: Number of maximum configurable trip points.
2581fe00b8bSCristian Marussi  * @async: Flag for asynchronous read support.
2591fe00b8bSCristian Marussi  * @update: Flag for continuouos update notification support.
2601fe00b8bSCristian Marussi  * @timestamped: Flag for timestamped read support.
2611fe00b8bSCristian Marussi  * @tstamp_scale: Power-of-10 multiplier applied to the sensor timestamps to
2621fe00b8bSCristian Marussi  *		  represent it in seconds.
2631fe00b8bSCristian Marussi  * @num_axis: Number of supported axis if any. Reported as 0 for scalar sensors.
2641fe00b8bSCristian Marussi  * @axis: Pointer to an array of @num_axis descriptors.
2651fe00b8bSCristian Marussi  * @intervals: Descriptor of available update intervals.
2661fe00b8bSCristian Marussi  * @sensor_config: A bitmask reporting the current sensor configuration as
2671fe00b8bSCristian Marussi  *		   detailed in the SCMI specification: it can accessed and
2681fe00b8bSCristian Marussi  *		   modified through the accompanying macros.
2691fe00b8bSCristian Marussi  * @name: NULL-terminated string representing sensor name as advertised by
2701fe00b8bSCristian Marussi  *	  SCMI platform.
2711fe00b8bSCristian Marussi  * @extended_scalar_attrs: Flag to indicate the presence of additional extended
2721fe00b8bSCristian Marussi  *			   attributes for this sensor.
2731fe00b8bSCristian Marussi  * @sensor_power: Extended attribute representing the average power
2741fe00b8bSCristian Marussi  *		  consumed by the sensor in microwatts (uW) when it is active.
2751fe00b8bSCristian Marussi  *		  Reported here only for scalar sensors.
2761fe00b8bSCristian Marussi  *		  Set to 0 if not reported by this sensor.
2771fe00b8bSCristian Marussi  * @resolution: Extended attribute representing the resolution of the sensor.
2781fe00b8bSCristian Marussi  *		Reported here only for scalar sensors.
2791fe00b8bSCristian Marussi  *		Set to 0 if not reported by this sensor.
2801fe00b8bSCristian Marussi  * @exponent: Extended attribute representing the power-of-10 multiplier that is
2811fe00b8bSCristian Marussi  *	      applied to the resolution field.
2821fe00b8bSCristian Marussi  *	      Reported here only for scalar sensors.
2831fe00b8bSCristian Marussi  *	      Set to 0 if not reported by this sensor.
2841fe00b8bSCristian Marussi  * @scalar_attrs: Extended attributes representing minimum and maximum
2851fe00b8bSCristian Marussi  *		  measurable values by this sensor.
2861fe00b8bSCristian Marussi  *		  Reported here only for scalar sensors.
2871fe00b8bSCristian Marussi  *		  Set to 0 if not reported by this sensor.
2881fe00b8bSCristian Marussi  */
2891fe00b8bSCristian Marussi struct scmi_sensor_info {
2901fe00b8bSCristian Marussi 	unsigned int id;
2911fe00b8bSCristian Marussi 	unsigned int type;
2921fe00b8bSCristian Marussi 	int scale;
2931fe00b8bSCristian Marussi 	unsigned int num_trip_points;
2941fe00b8bSCristian Marussi 	bool async;
2951fe00b8bSCristian Marussi 	bool update;
2961fe00b8bSCristian Marussi 	bool timestamped;
2971fe00b8bSCristian Marussi 	int tstamp_scale;
2981fe00b8bSCristian Marussi 	unsigned int num_axis;
2991fe00b8bSCristian Marussi 	struct scmi_sensor_axis_info *axis;
3001fe00b8bSCristian Marussi 	struct scmi_sensor_intervals_info intervals;
3017b83c5f4SCristian Marussi 	unsigned int sensor_config;
3027b83c5f4SCristian Marussi #define SCMI_SENS_CFG_UPDATE_SECS_MASK		GENMASK(31, 16)
3037b83c5f4SCristian Marussi #define SCMI_SENS_CFG_GET_UPDATE_SECS(x)				\
3047b83c5f4SCristian Marussi 	FIELD_GET(SCMI_SENS_CFG_UPDATE_SECS_MASK, (x))
3057b83c5f4SCristian Marussi 
3067b83c5f4SCristian Marussi #define SCMI_SENS_CFG_UPDATE_EXP_MASK		GENMASK(15, 11)
3077b83c5f4SCristian Marussi #define SCMI_SENS_CFG_GET_UPDATE_EXP(x)					\
3087b83c5f4SCristian Marussi 	({								\
3097b83c5f4SCristian Marussi 		int __signed_exp =					\
3107b83c5f4SCristian Marussi 			FIELD_GET(SCMI_SENS_CFG_UPDATE_EXP_MASK, (x));	\
3117b83c5f4SCristian Marussi 									\
3127b83c5f4SCristian Marussi 		if (__signed_exp & BIT(4))				\
3137b83c5f4SCristian Marussi 			__signed_exp |= GENMASK(31, 5);			\
3147b83c5f4SCristian Marussi 		__signed_exp;						\
3157b83c5f4SCristian Marussi 	})
3167b83c5f4SCristian Marussi 
3177b83c5f4SCristian Marussi #define SCMI_SENS_CFG_ROUND_MASK		GENMASK(10, 9)
3187b83c5f4SCristian Marussi #define SCMI_SENS_CFG_ROUND_AUTO		2
3197b83c5f4SCristian Marussi #define SCMI_SENS_CFG_ROUND_UP			1
3207b83c5f4SCristian Marussi #define SCMI_SENS_CFG_ROUND_DOWN		0
3217b83c5f4SCristian Marussi 
3227b83c5f4SCristian Marussi #define SCMI_SENS_CFG_TSTAMP_ENABLED_MASK	BIT(1)
3237b83c5f4SCristian Marussi #define SCMI_SENS_CFG_TSTAMP_ENABLE		1
3247b83c5f4SCristian Marussi #define SCMI_SENS_CFG_TSTAMP_DISABLE		0
3257b83c5f4SCristian Marussi #define SCMI_SENS_CFG_IS_TSTAMP_ENABLED(x)				\
3267b83c5f4SCristian Marussi 	FIELD_GET(SCMI_SENS_CFG_TSTAMP_ENABLED_MASK, (x))
3277b83c5f4SCristian Marussi 
3287b83c5f4SCristian Marussi #define SCMI_SENS_CFG_SENSOR_ENABLED_MASK	BIT(0)
3297b83c5f4SCristian Marussi #define SCMI_SENS_CFG_SENSOR_ENABLE		1
3307b83c5f4SCristian Marussi #define SCMI_SENS_CFG_SENSOR_DISABLE		0
3311fe00b8bSCristian Marussi 	char name[SCMI_MAX_STR_SIZE];
3327b83c5f4SCristian Marussi #define SCMI_SENS_CFG_IS_ENABLED(x)		FIELD_GET(BIT(0), (x))
3331fe00b8bSCristian Marussi 	bool extended_scalar_attrs;
3341fe00b8bSCristian Marussi 	unsigned int sensor_power;
3351fe00b8bSCristian Marussi 	unsigned int resolution;
3361fe00b8bSCristian Marussi 	int exponent;
3371fe00b8bSCristian Marussi 	struct scmi_range_attrs scalar_attrs;
3385179c523SSudeep Holla };
3395179c523SSudeep Holla 
3405179c523SSudeep Holla /*
3415179c523SSudeep Holla  * Partial list from Distributed Management Task Force (DMTF) specification:
3425179c523SSudeep Holla  * DSP0249 (Platform Level Data Model specification)
3435179c523SSudeep Holla  */
3445179c523SSudeep Holla enum scmi_sensor_class {
3455179c523SSudeep Holla 	NONE = 0x0,
346607a4672SSudeep Holla 	UNSPEC = 0x1,
3475179c523SSudeep Holla 	TEMPERATURE_C = 0x2,
348607a4672SSudeep Holla 	TEMPERATURE_F = 0x3,
349607a4672SSudeep Holla 	TEMPERATURE_K = 0x4,
3505179c523SSudeep Holla 	VOLTAGE = 0x5,
3515179c523SSudeep Holla 	CURRENT = 0x6,
3525179c523SSudeep Holla 	POWER = 0x7,
3535179c523SSudeep Holla 	ENERGY = 0x8,
354607a4672SSudeep Holla 	CHARGE = 0x9,
355607a4672SSudeep Holla 	VOLTAMPERE = 0xA,
356607a4672SSudeep Holla 	NITS = 0xB,
357607a4672SSudeep Holla 	LUMENS = 0xC,
358607a4672SSudeep Holla 	LUX = 0xD,
359607a4672SSudeep Holla 	CANDELAS = 0xE,
360607a4672SSudeep Holla 	KPA = 0xF,
361607a4672SSudeep Holla 	PSI = 0x10,
362607a4672SSudeep Holla 	NEWTON = 0x11,
363607a4672SSudeep Holla 	CFM = 0x12,
364607a4672SSudeep Holla 	RPM = 0x13,
365607a4672SSudeep Holla 	HERTZ = 0x14,
366607a4672SSudeep Holla 	SECS = 0x15,
367607a4672SSudeep Holla 	MINS = 0x16,
368607a4672SSudeep Holla 	HOURS = 0x17,
369607a4672SSudeep Holla 	DAYS = 0x18,
370607a4672SSudeep Holla 	WEEKS = 0x19,
371607a4672SSudeep Holla 	MILS = 0x1A,
372607a4672SSudeep Holla 	INCHES = 0x1B,
373607a4672SSudeep Holla 	FEET = 0x1C,
374607a4672SSudeep Holla 	CUBIC_INCHES = 0x1D,
375607a4672SSudeep Holla 	CUBIC_FEET = 0x1E,
376607a4672SSudeep Holla 	METERS = 0x1F,
377607a4672SSudeep Holla 	CUBIC_CM = 0x20,
378607a4672SSudeep Holla 	CUBIC_METERS = 0x21,
379607a4672SSudeep Holla 	LITERS = 0x22,
380607a4672SSudeep Holla 	FLUID_OUNCES = 0x23,
381607a4672SSudeep Holla 	RADIANS = 0x24,
382607a4672SSudeep Holla 	STERADIANS = 0x25,
383607a4672SSudeep Holla 	REVOLUTIONS = 0x26,
384607a4672SSudeep Holla 	CYCLES = 0x27,
385607a4672SSudeep Holla 	GRAVITIES = 0x28,
386607a4672SSudeep Holla 	OUNCES = 0x29,
387607a4672SSudeep Holla 	POUNDS = 0x2A,
388607a4672SSudeep Holla 	FOOT_POUNDS = 0x2B,
389607a4672SSudeep Holla 	OUNCE_INCHES = 0x2C,
390607a4672SSudeep Holla 	GAUSS = 0x2D,
391607a4672SSudeep Holla 	GILBERTS = 0x2E,
392607a4672SSudeep Holla 	HENRIES = 0x2F,
393607a4672SSudeep Holla 	FARADS = 0x30,
394607a4672SSudeep Holla 	OHMS = 0x31,
395607a4672SSudeep Holla 	SIEMENS = 0x32,
396607a4672SSudeep Holla 	MOLES = 0x33,
397607a4672SSudeep Holla 	BECQUERELS = 0x34,
398607a4672SSudeep Holla 	PPM = 0x35,
399607a4672SSudeep Holla 	DECIBELS = 0x36,
400607a4672SSudeep Holla 	DBA = 0x37,
401607a4672SSudeep Holla 	DBC = 0x38,
402607a4672SSudeep Holla 	GRAYS = 0x39,
403607a4672SSudeep Holla 	SIEVERTS = 0x3A,
404607a4672SSudeep Holla 	COLOR_TEMP_K = 0x3B,
405607a4672SSudeep Holla 	BITS = 0x3C,
406607a4672SSudeep Holla 	BYTES = 0x3D,
407607a4672SSudeep Holla 	WORDS = 0x3E,
408607a4672SSudeep Holla 	DWORDS = 0x3F,
409607a4672SSudeep Holla 	QWORDS = 0x40,
410607a4672SSudeep Holla 	PERCENTAGE = 0x41,
411607a4672SSudeep Holla 	PASCALS = 0x42,
412607a4672SSudeep Holla 	COUNTS = 0x43,
413607a4672SSudeep Holla 	GRAMS = 0x44,
414607a4672SSudeep Holla 	NEWTON_METERS = 0x45,
415607a4672SSudeep Holla 	HITS = 0x46,
416607a4672SSudeep Holla 	MISSES = 0x47,
417607a4672SSudeep Holla 	RETRIES = 0x48,
418607a4672SSudeep Holla 	OVERRUNS = 0x49,
419607a4672SSudeep Holla 	UNDERRUNS = 0x4A,
420607a4672SSudeep Holla 	COLLISIONS = 0x4B,
421607a4672SSudeep Holla 	PACKETS = 0x4C,
422607a4672SSudeep Holla 	MESSAGES = 0x4D,
423607a4672SSudeep Holla 	CHARS = 0x4E,
424607a4672SSudeep Holla 	ERRORS = 0x4F,
425607a4672SSudeep Holla 	CORRECTED_ERRS = 0x50,
426607a4672SSudeep Holla 	UNCORRECTABLE_ERRS = 0x51,
427607a4672SSudeep Holla 	SQ_MILS = 0x52,
428607a4672SSudeep Holla 	SQ_INCHES = 0x53,
429607a4672SSudeep Holla 	SQ_FEET = 0x54,
430607a4672SSudeep Holla 	SQ_CM = 0x55,
431607a4672SSudeep Holla 	SQ_METERS = 0x56,
4321fe00b8bSCristian Marussi 	RADIANS_SEC = 0x57,
4331fe00b8bSCristian Marussi 	BPM = 0x58,
4341fe00b8bSCristian Marussi 	METERS_SEC_SQUARED = 0x59,
4351fe00b8bSCristian Marussi 	METERS_SEC = 0x5A,
4361fe00b8bSCristian Marussi 	CUBIC_METERS_SEC = 0x5B,
4371fe00b8bSCristian Marussi 	MM_MERCURY = 0x5C,
4381fe00b8bSCristian Marussi 	RADIANS_SEC_SQUARED = 0x5D,
4391fe00b8bSCristian Marussi 	OEM_UNIT = 0xFF
4405179c523SSudeep Holla };
4415179c523SSudeep Holla 
4425179c523SSudeep Holla /**
4435179c523SSudeep Holla  * struct scmi_sensor_ops - represents the various operations provided
4445179c523SSudeep Holla  *	by SCMI Sensor Protocol
4455179c523SSudeep Holla  *
4465179c523SSudeep Holla  * @count_get: get the count of sensors provided by SCMI
4475179c523SSudeep Holla  * @info_get: get the information of the specified sensor
4489eefa43aSSudeep Holla  * @trip_point_config: selects and configures a trip-point of interest
4495179c523SSudeep Holla  * @reading_get: gets the current value of the sensor
450e2083d36SCristian Marussi  * @reading_get_timestamped: gets the current value and timestamp, when
451e2083d36SCristian Marussi  *			     available, of the sensor. (as of v3.0 spec)
452e2083d36SCristian Marussi  *			     Supports multi-axis sensors for sensors which
453e2083d36SCristian Marussi  *			     supports it and if the @reading array size of
454e2083d36SCristian Marussi  *			     @count entry equals the sensor num_axis
4557b83c5f4SCristian Marussi  * @config_get: Get sensor current configuration
4567b83c5f4SCristian Marussi  * @config_set: Set sensor current configuration
4575179c523SSudeep Holla  */
4585179c523SSudeep Holla struct scmi_sensor_ops {
4595179c523SSudeep Holla 	int (*count_get)(const struct scmi_handle *handle);
4605179c523SSudeep Holla 	const struct scmi_sensor_info *(*info_get)
4615179c523SSudeep Holla 		(const struct scmi_handle *handle, u32 sensor_id);
4629eefa43aSSudeep Holla 	int (*trip_point_config)(const struct scmi_handle *handle,
4639eefa43aSSudeep Holla 				 u32 sensor_id, u8 trip_id, u64 trip_value);
4645179c523SSudeep Holla 	int (*reading_get)(const struct scmi_handle *handle, u32 sensor_id,
4656a55331cSSudeep Holla 			   u64 *value);
466e2083d36SCristian Marussi 	int (*reading_get_timestamped)(const struct scmi_handle *handle,
467e2083d36SCristian Marussi 				       u32 sensor_id, u8 count,
468e2083d36SCristian Marussi 				       struct scmi_sensor_reading *readings);
4697b83c5f4SCristian Marussi 	int (*config_get)(const struct scmi_handle *handle,
4707b83c5f4SCristian Marussi 			  u32 sensor_id, u32 *sensor_config);
4717b83c5f4SCristian Marussi 	int (*config_set)(const struct scmi_handle *handle,
4727b83c5f4SCristian Marussi 			  u32 sensor_id, u32 sensor_config);
4735179c523SSudeep Holla };
4745179c523SSudeep Holla 
47576a65509SSudeep Holla /**
47695a15d80SSudeep Holla  * struct scmi_reset_ops - represents the various operations provided
47795a15d80SSudeep Holla  *	by SCMI Reset Protocol
47895a15d80SSudeep Holla  *
47995a15d80SSudeep Holla  * @num_domains_get: get the count of reset domains provided by SCMI
48095a15d80SSudeep Holla  * @name_get: gets the name of a reset domain
48195a15d80SSudeep Holla  * @latency_get: gets the reset latency for the specified reset domain
48295a15d80SSudeep Holla  * @reset: resets the specified reset domain
48395a15d80SSudeep Holla  * @assert: explicitly assert reset signal of the specified reset domain
48495a15d80SSudeep Holla  * @deassert: explicitly deassert reset signal of the specified reset domain
48595a15d80SSudeep Holla  */
48695a15d80SSudeep Holla struct scmi_reset_ops {
48795a15d80SSudeep Holla 	int (*num_domains_get)(const struct scmi_handle *handle);
48895a15d80SSudeep Holla 	char *(*name_get)(const struct scmi_handle *handle, u32 domain);
48995a15d80SSudeep Holla 	int (*latency_get)(const struct scmi_handle *handle, u32 domain);
49095a15d80SSudeep Holla 	int (*reset)(const struct scmi_handle *handle, u32 domain);
49195a15d80SSudeep Holla 	int (*assert)(const struct scmi_handle *handle, u32 domain);
49295a15d80SSudeep Holla 	int (*deassert)(const struct scmi_handle *handle, u32 domain);
49395a15d80SSudeep Holla };
49495a15d80SSudeep Holla 
49595a15d80SSudeep Holla /**
4962add5cacSCristian Marussi  * struct scmi_voltage_info - describe one available SCMI Voltage Domain
4972add5cacSCristian Marussi  *
4982add5cacSCristian Marussi  * @id: the domain ID as advertised by the platform
4992add5cacSCristian Marussi  * @segmented: defines the layout of the entries of array @levels_uv.
5002add5cacSCristian Marussi  *	       - when True the entries are to be interpreted as triplets,
5012add5cacSCristian Marussi  *	         each defining a segment representing a range of equally
5022add5cacSCristian Marussi  *	         space voltages: <lowest_volts>, <highest_volt>, <step_uV>
5032add5cacSCristian Marussi  *	       - when False the entries simply represent a single discrete
5042add5cacSCristian Marussi  *	         supported voltage level
5052add5cacSCristian Marussi  * @negative_volts_allowed: True if any of the entries of @levels_uv represent
5062add5cacSCristian Marussi  *			    a negative voltage.
5072add5cacSCristian Marussi  * @attributes: represents Voltage Domain advertised attributes
5082add5cacSCristian Marussi  * @name: name assigned to the Voltage Domain by platform
5092add5cacSCristian Marussi  * @num_levels: number of total entries in @levels_uv.
5102add5cacSCristian Marussi  * @levels_uv: array of entries describing the available voltage levels for
5112add5cacSCristian Marussi  *	       this domain.
5122add5cacSCristian Marussi  */
5132add5cacSCristian Marussi struct scmi_voltage_info {
5142add5cacSCristian Marussi 	unsigned int id;
5152add5cacSCristian Marussi 	bool segmented;
5162add5cacSCristian Marussi 	bool negative_volts_allowed;
5172add5cacSCristian Marussi 	unsigned int attributes;
5182add5cacSCristian Marussi 	char name[SCMI_MAX_STR_SIZE];
5192add5cacSCristian Marussi 	unsigned int num_levels;
5202add5cacSCristian Marussi #define SCMI_VOLTAGE_SEGMENT_LOW	0
5212add5cacSCristian Marussi #define SCMI_VOLTAGE_SEGMENT_HIGH	1
5222add5cacSCristian Marussi #define SCMI_VOLTAGE_SEGMENT_STEP	2
5232add5cacSCristian Marussi 	int *levels_uv;
5242add5cacSCristian Marussi };
5252add5cacSCristian Marussi 
5262add5cacSCristian Marussi /**
5272add5cacSCristian Marussi  * struct scmi_voltage_ops - represents the various operations provided
5282add5cacSCristian Marussi  * by SCMI Voltage Protocol
5292add5cacSCristian Marussi  *
5302add5cacSCristian Marussi  * @num_domains_get: get the count of voltage domains provided by SCMI
5312add5cacSCristian Marussi  * @info_get: get the information of the specified domain
5322add5cacSCristian Marussi  * @config_set: set the config for the specified domain
5332add5cacSCristian Marussi  * @config_get: get the config of the specified domain
5342add5cacSCristian Marussi  * @level_set: set the voltage level for the specified domain
5352add5cacSCristian Marussi  * @level_get: get the voltage level of the specified domain
5362add5cacSCristian Marussi  */
5372add5cacSCristian Marussi struct scmi_voltage_ops {
5382add5cacSCristian Marussi 	int (*num_domains_get)(const struct scmi_handle *handle);
5392add5cacSCristian Marussi 	const struct scmi_voltage_info __must_check *(*info_get)
5402add5cacSCristian Marussi 		(const struct scmi_handle *handle, u32 domain_id);
5412add5cacSCristian Marussi 	int (*config_set)(const struct scmi_handle *handle, u32 domain_id,
5422add5cacSCristian Marussi 			  u32 config);
5432add5cacSCristian Marussi #define	SCMI_VOLTAGE_ARCH_STATE_OFF		0x0
5442add5cacSCristian Marussi #define	SCMI_VOLTAGE_ARCH_STATE_ON		0x7
5452add5cacSCristian Marussi 	int (*config_get)(const struct scmi_handle *handle, u32 domain_id,
5462add5cacSCristian Marussi 			  u32 *config);
5472add5cacSCristian Marussi 	int (*level_set)(const struct scmi_handle *handle, u32 domain_id,
5482add5cacSCristian Marussi 			 u32 flags, s32 volt_uV);
5492add5cacSCristian Marussi 	int (*level_get)(const struct scmi_handle *handle, u32 domain_id,
5502add5cacSCristian Marussi 			 s32 *volt_uV);
5512add5cacSCristian Marussi };
5522add5cacSCristian Marussi 
5532add5cacSCristian Marussi /**
554e7c215f3SCristian Marussi  * struct scmi_notify_ops  - represents notifications' operations provided by
555e7c215f3SCristian Marussi  * SCMI core
5565ad3d1cfSCristian Marussi  * @devm_event_notifier_register: Managed registration of a notifier_block for
5575ad3d1cfSCristian Marussi  *				  the requested event
5585ad3d1cfSCristian Marussi  * @devm_event_notifier_unregister: Managed unregistration of a notifier_block
5595ad3d1cfSCristian Marussi  *				    for the requested event
560e7c215f3SCristian Marussi  * @register_event_notifier: Register a notifier_block for the requested event
561e7c215f3SCristian Marussi  * @unregister_event_notifier: Unregister a notifier_block for the requested
562e7c215f3SCristian Marussi  *			       event
563e7c215f3SCristian Marussi  *
564e7c215f3SCristian Marussi  * A user can register/unregister its own notifier_block against the wanted
565e7c215f3SCristian Marussi  * platform instance regarding the desired event identified by the
566e7c215f3SCristian Marussi  * tuple: (proto_id, evt_id, src_id) using the provided register/unregister
567e7c215f3SCristian Marussi  * interface where:
568e7c215f3SCristian Marussi  *
5695ad3d1cfSCristian Marussi  * @sdev: The scmi_device to use when calling the devres managed ops devm_
5705ad3d1cfSCristian Marussi  * @handle: The handle identifying the platform instance to use, when not
5715ad3d1cfSCristian Marussi  *	    calling the managed ops devm_
572e7c215f3SCristian Marussi  * @proto_id: The protocol ID as in SCMI Specification
573e7c215f3SCristian Marussi  * @evt_id: The message ID of the desired event as in SCMI Specification
574e7c215f3SCristian Marussi  * @src_id: A pointer to the desired source ID if different sources are
575e7c215f3SCristian Marussi  *	    possible for the protocol (like domain_id, sensor_id...etc)
576e7c215f3SCristian Marussi  *
577e7c215f3SCristian Marussi  * @src_id can be provided as NULL if it simply does NOT make sense for
578e7c215f3SCristian Marussi  * the protocol at hand, OR if the user is explicitly interested in
579e7c215f3SCristian Marussi  * receiving notifications from ANY existent source associated to the
580e7c215f3SCristian Marussi  * specified proto_id / evt_id.
581e7c215f3SCristian Marussi  *
582e7c215f3SCristian Marussi  * Received notifications are finally delivered to the registered users,
583e7c215f3SCristian Marussi  * invoking the callback provided with the notifier_block *nb as follows:
584e7c215f3SCristian Marussi  *
585e7c215f3SCristian Marussi  *	int user_cb(nb, evt_id, report)
586e7c215f3SCristian Marussi  *
587e7c215f3SCristian Marussi  * with:
588e7c215f3SCristian Marussi  *
589e7c215f3SCristian Marussi  * @nb: The notifier block provided by the user
590e7c215f3SCristian Marussi  * @evt_id: The message ID of the delivered event
591e7c215f3SCristian Marussi  * @report: A custom struct describing the specific event delivered
592e7c215f3SCristian Marussi  */
593e7c215f3SCristian Marussi struct scmi_notify_ops {
5945ad3d1cfSCristian Marussi 	int (*devm_event_notifier_register)(struct scmi_device *sdev,
5955ad3d1cfSCristian Marussi 					    u8 proto_id, u8 evt_id,
5965ad3d1cfSCristian Marussi 					    const u32 *src_id,
5975ad3d1cfSCristian Marussi 					    struct notifier_block *nb);
5985ad3d1cfSCristian Marussi 	int (*devm_event_notifier_unregister)(struct scmi_device *sdev,
5995ad3d1cfSCristian Marussi 					      u8 proto_id, u8 evt_id,
6005ad3d1cfSCristian Marussi 					      const u32 *src_id,
6015ad3d1cfSCristian Marussi 					      struct notifier_block *nb);
602e7c215f3SCristian Marussi 	int (*register_event_notifier)(const struct scmi_handle *handle,
6035ad3d1cfSCristian Marussi 				       u8 proto_id, u8 evt_id,
6045ad3d1cfSCristian Marussi 				       const u32 *src_id,
605e7c215f3SCristian Marussi 				       struct notifier_block *nb);
606e7c215f3SCristian Marussi 	int (*unregister_event_notifier)(const struct scmi_handle *handle,
6075ad3d1cfSCristian Marussi 					 u8 proto_id, u8 evt_id,
6085ad3d1cfSCristian Marussi 					 const u32 *src_id,
609e7c215f3SCristian Marussi 					 struct notifier_block *nb);
610e7c215f3SCristian Marussi };
611e7c215f3SCristian Marussi 
612e7c215f3SCristian Marussi /**
613aa4f886fSSudeep Holla  * struct scmi_handle - Handle returned to ARM SCMI clients for usage.
614aa4f886fSSudeep Holla  *
615aa4f886fSSudeep Holla  * @dev: pointer to the SCMI device
616b6f20ff8SSudeep Holla  * @version: pointer to the structure containing SCMI version information
61776a65509SSudeep Holla  * @power_ops: pointer to set of power protocol operations
6185f6c6430SSudeep Holla  * @clk_ops: pointer to set of clock protocol operations
6195179c523SSudeep Holla  * @sensor_ops: pointer to set of sensor protocol operations
62095a15d80SSudeep Holla  * @reset_ops: pointer to set of reset protocol operations
6212add5cacSCristian Marussi  * @voltage_ops: pointer to set of voltage protocol operations
62223934efeSCristian Marussi  * @devm_protocol_get: devres managed method to acquire a protocol and get specific
62323934efeSCristian Marussi  *		       operations and a dedicated protocol handler
62423934efeSCristian Marussi  * @devm_protocol_put: devres managed method to release a protocol
625e7c215f3SCristian Marussi  * @notify_ops: pointer to set of notifications related operations
6261baf47c2SSudeep Holla  * @clk_priv: pointer to private data structure specific to clock
6271baf47c2SSudeep Holla  *	protocol(for internal use only)
6281baf47c2SSudeep Holla  * @sensor_priv: pointer to private data structure specific to sensors
6291baf47c2SSudeep Holla  *	protocol(for internal use only)
63095a15d80SSudeep Holla  * @reset_priv: pointer to private data structure specific to reset
63195a15d80SSudeep Holla  *	protocol(for internal use only)
6322add5cacSCristian Marussi  * @voltage_priv: pointer to private data structure specific to voltage
6332add5cacSCristian Marussi  *	protocol(for internal use only)
6341fc2dd18SCristian Marussi  * @notify_priv: pointer to private data structure specific to notifications
6351fc2dd18SCristian Marussi  *	(for internal use only)
636aa4f886fSSudeep Holla  */
637aa4f886fSSudeep Holla struct scmi_handle {
638aa4f886fSSudeep Holla 	struct device *dev;
639b6f20ff8SSudeep Holla 	struct scmi_revision_info *version;
64082894c1dSRikard Falkeborn 	const struct scmi_clk_ops *clk_ops;
64182894c1dSRikard Falkeborn 	const struct scmi_power_ops *power_ops;
64282894c1dSRikard Falkeborn 	const struct scmi_sensor_ops *sensor_ops;
64382894c1dSRikard Falkeborn 	const struct scmi_reset_ops *reset_ops;
6442add5cacSCristian Marussi 	const struct scmi_voltage_ops *voltage_ops;
64523934efeSCristian Marussi 
64623934efeSCristian Marussi 	const void __must_check *
64723934efeSCristian Marussi 		(*devm_protocol_get)(struct scmi_device *sdev, u8 proto,
64823934efeSCristian Marussi 				     struct scmi_protocol_handle **ph);
64923934efeSCristian Marussi 	void (*devm_protocol_put)(struct scmi_device *sdev, u8 proto);
65023934efeSCristian Marussi 
65182894c1dSRikard Falkeborn 	const struct scmi_notify_ops *notify_ops;
652a9e3fbfaSSudeep Holla 	/* for protocol internal use */
6535f6c6430SSudeep Holla 	void *clk_priv;
6545179c523SSudeep Holla 	void *sensor_priv;
65595a15d80SSudeep Holla 	void *reset_priv;
6562add5cacSCristian Marussi 	void *voltage_priv;
6571fc2dd18SCristian Marussi 	void *notify_priv;
658a8803055SCristian Marussi 	void *system_priv;
659b6f20ff8SSudeep Holla };
660b6f20ff8SSudeep Holla 
661b6f20ff8SSudeep Holla enum scmi_std_protocol {
662b6f20ff8SSudeep Holla 	SCMI_PROTOCOL_BASE = 0x10,
663b6f20ff8SSudeep Holla 	SCMI_PROTOCOL_POWER = 0x11,
664b6f20ff8SSudeep Holla 	SCMI_PROTOCOL_SYSTEM = 0x12,
665b6f20ff8SSudeep Holla 	SCMI_PROTOCOL_PERF = 0x13,
666b6f20ff8SSudeep Holla 	SCMI_PROTOCOL_CLOCK = 0x14,
667b6f20ff8SSudeep Holla 	SCMI_PROTOCOL_SENSOR = 0x15,
66895a15d80SSudeep Holla 	SCMI_PROTOCOL_RESET = 0x16,
6692add5cacSCristian Marussi 	SCMI_PROTOCOL_VOLTAGE = 0x17,
670aa4f886fSSudeep Holla };
671933c5044SSudeep Holla 
672a8803055SCristian Marussi enum scmi_system_events {
673a8803055SCristian Marussi 	SCMI_SYSTEM_SHUTDOWN,
674a8803055SCristian Marussi 	SCMI_SYSTEM_COLDRESET,
675a8803055SCristian Marussi 	SCMI_SYSTEM_WARMRESET,
676a8803055SCristian Marussi 	SCMI_SYSTEM_POWERUP,
677a8803055SCristian Marussi 	SCMI_SYSTEM_SUSPEND,
678a8803055SCristian Marussi 	SCMI_SYSTEM_MAX
679a8803055SCristian Marussi };
680a8803055SCristian Marussi 
681933c5044SSudeep Holla struct scmi_device {
682933c5044SSudeep Holla 	u32 id;
683933c5044SSudeep Holla 	u8 protocol_id;
684ee7a9c9fSSudeep Holla 	const char *name;
685933c5044SSudeep Holla 	struct device dev;
686933c5044SSudeep Holla 	struct scmi_handle *handle;
687933c5044SSudeep Holla };
688933c5044SSudeep Holla 
689933c5044SSudeep Holla #define to_scmi_dev(d) container_of(d, struct scmi_device, dev)
690933c5044SSudeep Holla 
691933c5044SSudeep Holla struct scmi_device *
692ee7a9c9fSSudeep Holla scmi_device_create(struct device_node *np, struct device *parent, int protocol,
693ee7a9c9fSSudeep Holla 		   const char *name);
694933c5044SSudeep Holla void scmi_device_destroy(struct scmi_device *scmi_dev);
695933c5044SSudeep Holla 
696933c5044SSudeep Holla struct scmi_device_id {
697933c5044SSudeep Holla 	u8 protocol_id;
698ee7a9c9fSSudeep Holla 	const char *name;
699933c5044SSudeep Holla };
700933c5044SSudeep Holla 
701933c5044SSudeep Holla struct scmi_driver {
702933c5044SSudeep Holla 	const char *name;
703933c5044SSudeep Holla 	int (*probe)(struct scmi_device *sdev);
704933c5044SSudeep Holla 	void (*remove)(struct scmi_device *sdev);
705933c5044SSudeep Holla 	const struct scmi_device_id *id_table;
706933c5044SSudeep Holla 
707933c5044SSudeep Holla 	struct device_driver driver;
708933c5044SSudeep Holla };
709933c5044SSudeep Holla 
710933c5044SSudeep Holla #define to_scmi_driver(d) container_of(d, struct scmi_driver, driver)
711933c5044SSudeep Holla 
71266d90f6eSSudeep Holla #if IS_REACHABLE(CONFIG_ARM_SCMI_PROTOCOL)
713933c5044SSudeep Holla int scmi_driver_register(struct scmi_driver *driver,
714933c5044SSudeep Holla 			 struct module *owner, const char *mod_name);
715933c5044SSudeep Holla void scmi_driver_unregister(struct scmi_driver *driver);
716933c5044SSudeep Holla #else
717933c5044SSudeep Holla static inline int
718933c5044SSudeep Holla scmi_driver_register(struct scmi_driver *driver, struct module *owner,
719933c5044SSudeep Holla 		     const char *mod_name)
720933c5044SSudeep Holla {
721933c5044SSudeep Holla 	return -EINVAL;
722933c5044SSudeep Holla }
723933c5044SSudeep Holla 
724933c5044SSudeep Holla static inline void scmi_driver_unregister(struct scmi_driver *driver) {}
725933c5044SSudeep Holla #endif /* CONFIG_ARM_SCMI_PROTOCOL */
726933c5044SSudeep Holla 
727933c5044SSudeep Holla #define scmi_register(driver) \
728933c5044SSudeep Holla 	scmi_driver_register(driver, THIS_MODULE, KBUILD_MODNAME)
729933c5044SSudeep Holla #define scmi_unregister(driver) \
730933c5044SSudeep Holla 	scmi_driver_unregister(driver)
731933c5044SSudeep Holla 
732933c5044SSudeep Holla /**
733933c5044SSudeep Holla  * module_scmi_driver() - Helper macro for registering a scmi driver
734933c5044SSudeep Holla  * @__scmi_driver: scmi_driver structure
735933c5044SSudeep Holla  *
736933c5044SSudeep Holla  * Helper macro for scmi drivers to set up proper module init / exit
737933c5044SSudeep Holla  * functions.  Replaces module_init() and module_exit() and keeps people from
738933c5044SSudeep Holla  * printing pointless things to the kernel log when their driver is loaded.
739933c5044SSudeep Holla  */
740933c5044SSudeep Holla #define module_scmi_driver(__scmi_driver)	\
741933c5044SSudeep Holla 	module_driver(__scmi_driver, scmi_register, scmi_unregister)
742933c5044SSudeep Holla 
74348dc16e2SCristian Marussi struct scmi_protocol;
74448dc16e2SCristian Marussi int scmi_protocol_register(const struct scmi_protocol *proto);
74548dc16e2SCristian Marussi void scmi_protocol_unregister(const struct scmi_protocol *proto);
74670771c69SSudeep Holla 
747e27077bcSCristian Marussi /* SCMI Notification API - Custom Event Reports */
748e27077bcSCristian Marussi enum scmi_notification_events {
749e27077bcSCristian Marussi 	SCMI_EVENT_POWER_STATE_CHANGED = 0x0,
750fb5086dcSCristian Marussi 	SCMI_EVENT_PERFORMANCE_LIMITS_CHANGED = 0x0,
751fb5086dcSCristian Marussi 	SCMI_EVENT_PERFORMANCE_LEVEL_CHANGED = 0x1,
752128e3e93SCristian Marussi 	SCMI_EVENT_SENSOR_TRIP_POINT_EVENT = 0x0,
753e3811190SCristian Marussi 	SCMI_EVENT_SENSOR_UPDATE = 0x1,
754469ca182SCristian Marussi 	SCMI_EVENT_RESET_ISSUED = 0x0,
755585dfab3SCristian Marussi 	SCMI_EVENT_BASE_ERROR_EVENT = 0x0,
756a8803055SCristian Marussi 	SCMI_EVENT_SYSTEM_POWER_STATE_NOTIFIER = 0x0,
757e27077bcSCristian Marussi };
758e27077bcSCristian Marussi 
759e27077bcSCristian Marussi struct scmi_power_state_changed_report {
76072a5eb9dSCristian Marussi 	ktime_t		timestamp;
76172a5eb9dSCristian Marussi 	unsigned int	agent_id;
76272a5eb9dSCristian Marussi 	unsigned int	domain_id;
76372a5eb9dSCristian Marussi 	unsigned int	power_state;
764e27077bcSCristian Marussi };
765e27077bcSCristian Marussi 
766a8803055SCristian Marussi struct scmi_system_power_state_notifier_report {
767a8803055SCristian Marussi 	ktime_t		timestamp;
768a8803055SCristian Marussi 	unsigned int	agent_id;
769a8803055SCristian Marussi 	unsigned int	flags;
770a8803055SCristian Marussi 	unsigned int	system_state;
771a8803055SCristian Marussi };
772a8803055SCristian Marussi 
773fb5086dcSCristian Marussi struct scmi_perf_limits_report {
77472a5eb9dSCristian Marussi 	ktime_t		timestamp;
77572a5eb9dSCristian Marussi 	unsigned int	agent_id;
77672a5eb9dSCristian Marussi 	unsigned int	domain_id;
77772a5eb9dSCristian Marussi 	unsigned int	range_max;
77872a5eb9dSCristian Marussi 	unsigned int	range_min;
779fb5086dcSCristian Marussi };
780fb5086dcSCristian Marussi 
781fb5086dcSCristian Marussi struct scmi_perf_level_report {
78272a5eb9dSCristian Marussi 	ktime_t		timestamp;
78372a5eb9dSCristian Marussi 	unsigned int	agent_id;
78472a5eb9dSCristian Marussi 	unsigned int	domain_id;
78572a5eb9dSCristian Marussi 	unsigned int	performance_level;
786fb5086dcSCristian Marussi };
787fb5086dcSCristian Marussi 
788128e3e93SCristian Marussi struct scmi_sensor_trip_point_report {
78972a5eb9dSCristian Marussi 	ktime_t		timestamp;
79072a5eb9dSCristian Marussi 	unsigned int	agent_id;
79172a5eb9dSCristian Marussi 	unsigned int	sensor_id;
79272a5eb9dSCristian Marussi 	unsigned int	trip_point_desc;
793128e3e93SCristian Marussi };
794128e3e93SCristian Marussi 
795e3811190SCristian Marussi struct scmi_sensor_update_report {
796e3811190SCristian Marussi 	ktime_t				timestamp;
797e3811190SCristian Marussi 	unsigned int			agent_id;
798e3811190SCristian Marussi 	unsigned int			sensor_id;
799e3811190SCristian Marussi 	unsigned int			readings_count;
800e3811190SCristian Marussi 	struct scmi_sensor_reading	readings[];
801e3811190SCristian Marussi };
802e3811190SCristian Marussi 
803469ca182SCristian Marussi struct scmi_reset_issued_report {
80472a5eb9dSCristian Marussi 	ktime_t		timestamp;
80572a5eb9dSCristian Marussi 	unsigned int	agent_id;
80672a5eb9dSCristian Marussi 	unsigned int	domain_id;
80772a5eb9dSCristian Marussi 	unsigned int	reset_state;
808469ca182SCristian Marussi };
809469ca182SCristian Marussi 
810585dfab3SCristian Marussi struct scmi_base_error_report {
81172a5eb9dSCristian Marussi 	ktime_t			timestamp;
81272a5eb9dSCristian Marussi 	unsigned int		agent_id;
813585dfab3SCristian Marussi 	bool			fatal;
81472a5eb9dSCristian Marussi 	unsigned int		cmd_count;
81572a5eb9dSCristian Marussi 	unsigned long long	reports[];
816585dfab3SCristian Marussi };
817585dfab3SCristian Marussi 
81870771c69SSudeep Holla #endif /* _LINUX_SCMI_PROTOCOL_H */
819