1 /* SPDX-License-Identifier: GPL-2.0-only */ 2 /* 3 * SCMI Message Protocol driver header 4 * 5 * Copyright (C) 2018-2021 ARM Ltd. 6 */ 7 8 #ifndef _LINUX_SCMI_PROTOCOL_H 9 #define _LINUX_SCMI_PROTOCOL_H 10 11 #include <linux/bitfield.h> 12 #include <linux/device.h> 13 #include <linux/notifier.h> 14 #include <linux/types.h> 15 16 #define SCMI_MAX_STR_SIZE 64 17 #define SCMI_SHORT_NAME_MAX_SIZE 16 18 #define SCMI_MAX_NUM_RATES 16 19 20 /** 21 * struct scmi_revision_info - version information structure 22 * 23 * @major_ver: Major ABI version. Change here implies risk of backward 24 * compatibility break. 25 * @minor_ver: Minor ABI version. Change here implies new feature addition, 26 * or compatible change in ABI. 27 * @num_protocols: Number of protocols that are implemented, excluding the 28 * base protocol. 29 * @num_agents: Number of agents in the system. 30 * @impl_ver: A vendor-specific implementation version. 31 * @vendor_id: A vendor identifier(Null terminated ASCII string) 32 * @sub_vendor_id: A sub-vendor identifier(Null terminated ASCII string) 33 */ 34 struct scmi_revision_info { 35 u16 major_ver; 36 u16 minor_ver; 37 u8 num_protocols; 38 u8 num_agents; 39 u32 impl_ver; 40 char vendor_id[SCMI_SHORT_NAME_MAX_SIZE]; 41 char sub_vendor_id[SCMI_SHORT_NAME_MAX_SIZE]; 42 }; 43 44 struct scmi_clock_info { 45 char name[SCMI_MAX_STR_SIZE]; 46 unsigned int enable_latency; 47 bool rate_discrete; 48 bool rate_changed_notifications; 49 bool rate_change_requested_notifications; 50 union { 51 struct { 52 int num_rates; 53 u64 rates[SCMI_MAX_NUM_RATES]; 54 } list; 55 struct { 56 u64 min_rate; 57 u64 max_rate; 58 u64 step_size; 59 } range; 60 }; 61 }; 62 63 enum scmi_power_scale { 64 SCMI_POWER_BOGOWATTS, 65 SCMI_POWER_MILLIWATTS, 66 SCMI_POWER_MICROWATTS 67 }; 68 69 struct scmi_handle; 70 struct scmi_device; 71 struct scmi_protocol_handle; 72 73 /** 74 * struct scmi_clk_proto_ops - represents the various operations provided 75 * by SCMI Clock Protocol 76 * 77 * @count_get: get the count of clocks provided by SCMI 78 * @info_get: get the information of the specified clock 79 * @rate_get: request the current clock rate of a clock 80 * @rate_set: set the clock rate of a clock 81 * @enable: enables the specified clock 82 * @disable: disables the specified clock 83 * @state_get: get the status of the specified clock 84 * @config_oem_get: get the value of an OEM specific clock config 85 * @config_oem_set: set the value of an OEM specific clock config 86 */ 87 struct scmi_clk_proto_ops { 88 int (*count_get)(const struct scmi_protocol_handle *ph); 89 90 const struct scmi_clock_info __must_check *(*info_get) 91 (const struct scmi_protocol_handle *ph, u32 clk_id); 92 int (*rate_get)(const struct scmi_protocol_handle *ph, u32 clk_id, 93 u64 *rate); 94 int (*rate_set)(const struct scmi_protocol_handle *ph, u32 clk_id, 95 u64 rate); 96 int (*enable)(const struct scmi_protocol_handle *ph, u32 clk_id, 97 bool atomic); 98 int (*disable)(const struct scmi_protocol_handle *ph, u32 clk_id, 99 bool atomic); 100 int (*state_get)(const struct scmi_protocol_handle *ph, u32 clk_id, 101 bool *enabled, bool atomic); 102 int (*config_oem_get)(const struct scmi_protocol_handle *ph, u32 clk_id, 103 u8 oem_type, u32 *oem_val, u32 *attributes, 104 bool atomic); 105 int (*config_oem_set)(const struct scmi_protocol_handle *ph, u32 clk_id, 106 u8 oem_type, u32 oem_val, bool atomic); 107 }; 108 109 /** 110 * struct scmi_perf_proto_ops - represents the various operations provided 111 * by SCMI Performance Protocol 112 * 113 * @limits_set: sets limits on the performance level of a domain 114 * @limits_get: gets limits on the performance level of a domain 115 * @level_set: sets the performance level of a domain 116 * @level_get: gets the performance level of a domain 117 * @device_domain_id: gets the scmi domain id for a given device 118 * @transition_latency_get: gets the DVFS transition latency for a given device 119 * @device_opps_add: adds all the OPPs for a given device 120 * @freq_set: sets the frequency for a given device using sustained frequency 121 * to sustained performance level mapping 122 * @freq_get: gets the frequency for a given device using sustained frequency 123 * to sustained performance level mapping 124 * @est_power_get: gets the estimated power cost for a given performance domain 125 * at a given frequency 126 * @fast_switch_possible: indicates if fast DVFS switching is possible or not 127 * for a given device 128 * @power_scale_mw_get: indicates if the power values provided are in milliWatts 129 * or in some other (abstract) scale 130 */ 131 struct scmi_perf_proto_ops { 132 int (*limits_set)(const struct scmi_protocol_handle *ph, u32 domain, 133 u32 max_perf, u32 min_perf); 134 int (*limits_get)(const struct scmi_protocol_handle *ph, u32 domain, 135 u32 *max_perf, u32 *min_perf); 136 int (*level_set)(const struct scmi_protocol_handle *ph, u32 domain, 137 u32 level, bool poll); 138 int (*level_get)(const struct scmi_protocol_handle *ph, u32 domain, 139 u32 *level, bool poll); 140 int (*device_domain_id)(struct device *dev); 141 int (*transition_latency_get)(const struct scmi_protocol_handle *ph, 142 struct device *dev); 143 int (*device_opps_add)(const struct scmi_protocol_handle *ph, 144 struct device *dev); 145 int (*freq_set)(const struct scmi_protocol_handle *ph, u32 domain, 146 unsigned long rate, bool poll); 147 int (*freq_get)(const struct scmi_protocol_handle *ph, u32 domain, 148 unsigned long *rate, bool poll); 149 int (*est_power_get)(const struct scmi_protocol_handle *ph, u32 domain, 150 unsigned long *rate, unsigned long *power); 151 bool (*fast_switch_possible)(const struct scmi_protocol_handle *ph, 152 struct device *dev); 153 enum scmi_power_scale (*power_scale_get)(const struct scmi_protocol_handle *ph); 154 }; 155 156 /** 157 * struct scmi_power_proto_ops - represents the various operations provided 158 * by SCMI Power Protocol 159 * 160 * @num_domains_get: get the count of power domains provided by SCMI 161 * @name_get: gets the name of a power domain 162 * @state_set: sets the power state of a power domain 163 * @state_get: gets the power state of a power domain 164 */ 165 struct scmi_power_proto_ops { 166 int (*num_domains_get)(const struct scmi_protocol_handle *ph); 167 const char *(*name_get)(const struct scmi_protocol_handle *ph, 168 u32 domain); 169 #define SCMI_POWER_STATE_TYPE_SHIFT 30 170 #define SCMI_POWER_STATE_ID_MASK (BIT(28) - 1) 171 #define SCMI_POWER_STATE_PARAM(type, id) \ 172 ((((type) & BIT(0)) << SCMI_POWER_STATE_TYPE_SHIFT) | \ 173 ((id) & SCMI_POWER_STATE_ID_MASK)) 174 #define SCMI_POWER_STATE_GENERIC_ON SCMI_POWER_STATE_PARAM(0, 0) 175 #define SCMI_POWER_STATE_GENERIC_OFF SCMI_POWER_STATE_PARAM(1, 0) 176 int (*state_set)(const struct scmi_protocol_handle *ph, u32 domain, 177 u32 state); 178 int (*state_get)(const struct scmi_protocol_handle *ph, u32 domain, 179 u32 *state); 180 }; 181 182 /** 183 * struct scmi_sensor_reading - represent a timestamped read 184 * 185 * Used by @reading_get_timestamped method. 186 * 187 * @value: The signed value sensor read. 188 * @timestamp: An unsigned timestamp for the sensor read, as provided by 189 * SCMI platform. Set to zero when not available. 190 */ 191 struct scmi_sensor_reading { 192 long long value; 193 unsigned long long timestamp; 194 }; 195 196 /** 197 * struct scmi_range_attrs - specifies a sensor or axis values' range 198 * @min_range: The minimum value which can be represented by the sensor/axis. 199 * @max_range: The maximum value which can be represented by the sensor/axis. 200 */ 201 struct scmi_range_attrs { 202 long long min_range; 203 long long max_range; 204 }; 205 206 /** 207 * struct scmi_sensor_axis_info - describes one sensor axes 208 * @id: The axes ID. 209 * @type: Axes type. Chosen amongst one of @enum scmi_sensor_class. 210 * @scale: Power-of-10 multiplier applied to the axis unit. 211 * @name: NULL-terminated string representing axes name as advertised by 212 * SCMI platform. 213 * @extended_attrs: Flag to indicate the presence of additional extended 214 * attributes for this axes. 215 * @resolution: Extended attribute representing the resolution of the axes. 216 * Set to 0 if not reported by this axes. 217 * @exponent: Extended attribute representing the power-of-10 multiplier that 218 * is applied to the resolution field. Set to 0 if not reported by 219 * this axes. 220 * @attrs: Extended attributes representing minimum and maximum values 221 * measurable by this axes. Set to 0 if not reported by this sensor. 222 */ 223 struct scmi_sensor_axis_info { 224 unsigned int id; 225 unsigned int type; 226 int scale; 227 char name[SCMI_MAX_STR_SIZE]; 228 bool extended_attrs; 229 unsigned int resolution; 230 int exponent; 231 struct scmi_range_attrs attrs; 232 }; 233 234 /** 235 * struct scmi_sensor_intervals_info - describes number and type of available 236 * update intervals 237 * @segmented: Flag for segmented intervals' representation. When True there 238 * will be exactly 3 intervals in @desc, with each entry 239 * representing a member of a segment in this order: 240 * {lowest update interval, highest update interval, step size} 241 * @count: Number of intervals described in @desc. 242 * @desc: Array of @count interval descriptor bitmask represented as detailed in 243 * the SCMI specification: it can be accessed using the accompanying 244 * macros. 245 * @prealloc_pool: A minimal preallocated pool of desc entries used to avoid 246 * lesser-than-64-bytes dynamic allocation for small @count 247 * values. 248 */ 249 struct scmi_sensor_intervals_info { 250 bool segmented; 251 unsigned int count; 252 #define SCMI_SENS_INTVL_SEGMENT_LOW 0 253 #define SCMI_SENS_INTVL_SEGMENT_HIGH 1 254 #define SCMI_SENS_INTVL_SEGMENT_STEP 2 255 unsigned int *desc; 256 #define SCMI_SENS_INTVL_GET_SECS(x) FIELD_GET(GENMASK(20, 5), (x)) 257 #define SCMI_SENS_INTVL_GET_EXP(x) \ 258 ({ \ 259 int __signed_exp = FIELD_GET(GENMASK(4, 0), (x)); \ 260 \ 261 if (__signed_exp & BIT(4)) \ 262 __signed_exp |= GENMASK(31, 5); \ 263 __signed_exp; \ 264 }) 265 #define SCMI_MAX_PREALLOC_POOL 16 266 unsigned int prealloc_pool[SCMI_MAX_PREALLOC_POOL]; 267 }; 268 269 /** 270 * struct scmi_sensor_info - represents information related to one of the 271 * available sensors. 272 * @id: Sensor ID. 273 * @type: Sensor type. Chosen amongst one of @enum scmi_sensor_class. 274 * @scale: Power-of-10 multiplier applied to the sensor unit. 275 * @num_trip_points: Number of maximum configurable trip points. 276 * @async: Flag for asynchronous read support. 277 * @update: Flag for continuouos update notification support. 278 * @timestamped: Flag for timestamped read support. 279 * @tstamp_scale: Power-of-10 multiplier applied to the sensor timestamps to 280 * represent it in seconds. 281 * @num_axis: Number of supported axis if any. Reported as 0 for scalar sensors. 282 * @axis: Pointer to an array of @num_axis descriptors. 283 * @intervals: Descriptor of available update intervals. 284 * @sensor_config: A bitmask reporting the current sensor configuration as 285 * detailed in the SCMI specification: it can accessed and 286 * modified through the accompanying macros. 287 * @name: NULL-terminated string representing sensor name as advertised by 288 * SCMI platform. 289 * @extended_scalar_attrs: Flag to indicate the presence of additional extended 290 * attributes for this sensor. 291 * @sensor_power: Extended attribute representing the average power 292 * consumed by the sensor in microwatts (uW) when it is active. 293 * Reported here only for scalar sensors. 294 * Set to 0 if not reported by this sensor. 295 * @resolution: Extended attribute representing the resolution of the sensor. 296 * Reported here only for scalar sensors. 297 * Set to 0 if not reported by this sensor. 298 * @exponent: Extended attribute representing the power-of-10 multiplier that is 299 * applied to the resolution field. 300 * Reported here only for scalar sensors. 301 * Set to 0 if not reported by this sensor. 302 * @scalar_attrs: Extended attributes representing minimum and maximum 303 * measurable values by this sensor. 304 * Reported here only for scalar sensors. 305 * Set to 0 if not reported by this sensor. 306 */ 307 struct scmi_sensor_info { 308 unsigned int id; 309 unsigned int type; 310 int scale; 311 unsigned int num_trip_points; 312 bool async; 313 bool update; 314 bool timestamped; 315 int tstamp_scale; 316 unsigned int num_axis; 317 struct scmi_sensor_axis_info *axis; 318 struct scmi_sensor_intervals_info intervals; 319 unsigned int sensor_config; 320 #define SCMI_SENS_CFG_UPDATE_SECS_MASK GENMASK(31, 16) 321 #define SCMI_SENS_CFG_GET_UPDATE_SECS(x) \ 322 FIELD_GET(SCMI_SENS_CFG_UPDATE_SECS_MASK, (x)) 323 324 #define SCMI_SENS_CFG_UPDATE_EXP_MASK GENMASK(15, 11) 325 #define SCMI_SENS_CFG_GET_UPDATE_EXP(x) \ 326 ({ \ 327 int __signed_exp = \ 328 FIELD_GET(SCMI_SENS_CFG_UPDATE_EXP_MASK, (x)); \ 329 \ 330 if (__signed_exp & BIT(4)) \ 331 __signed_exp |= GENMASK(31, 5); \ 332 __signed_exp; \ 333 }) 334 335 #define SCMI_SENS_CFG_ROUND_MASK GENMASK(10, 9) 336 #define SCMI_SENS_CFG_ROUND_AUTO 2 337 #define SCMI_SENS_CFG_ROUND_UP 1 338 #define SCMI_SENS_CFG_ROUND_DOWN 0 339 340 #define SCMI_SENS_CFG_TSTAMP_ENABLED_MASK BIT(1) 341 #define SCMI_SENS_CFG_TSTAMP_ENABLE 1 342 #define SCMI_SENS_CFG_TSTAMP_DISABLE 0 343 #define SCMI_SENS_CFG_IS_TSTAMP_ENABLED(x) \ 344 FIELD_GET(SCMI_SENS_CFG_TSTAMP_ENABLED_MASK, (x)) 345 346 #define SCMI_SENS_CFG_SENSOR_ENABLED_MASK BIT(0) 347 #define SCMI_SENS_CFG_SENSOR_ENABLE 1 348 #define SCMI_SENS_CFG_SENSOR_DISABLE 0 349 char name[SCMI_MAX_STR_SIZE]; 350 #define SCMI_SENS_CFG_IS_ENABLED(x) FIELD_GET(BIT(0), (x)) 351 bool extended_scalar_attrs; 352 unsigned int sensor_power; 353 unsigned int resolution; 354 int exponent; 355 struct scmi_range_attrs scalar_attrs; 356 }; 357 358 /* 359 * Partial list from Distributed Management Task Force (DMTF) specification: 360 * DSP0249 (Platform Level Data Model specification) 361 */ 362 enum scmi_sensor_class { 363 NONE = 0x0, 364 UNSPEC = 0x1, 365 TEMPERATURE_C = 0x2, 366 TEMPERATURE_F = 0x3, 367 TEMPERATURE_K = 0x4, 368 VOLTAGE = 0x5, 369 CURRENT = 0x6, 370 POWER = 0x7, 371 ENERGY = 0x8, 372 CHARGE = 0x9, 373 VOLTAMPERE = 0xA, 374 NITS = 0xB, 375 LUMENS = 0xC, 376 LUX = 0xD, 377 CANDELAS = 0xE, 378 KPA = 0xF, 379 PSI = 0x10, 380 NEWTON = 0x11, 381 CFM = 0x12, 382 RPM = 0x13, 383 HERTZ = 0x14, 384 SECS = 0x15, 385 MINS = 0x16, 386 HOURS = 0x17, 387 DAYS = 0x18, 388 WEEKS = 0x19, 389 MILS = 0x1A, 390 INCHES = 0x1B, 391 FEET = 0x1C, 392 CUBIC_INCHES = 0x1D, 393 CUBIC_FEET = 0x1E, 394 METERS = 0x1F, 395 CUBIC_CM = 0x20, 396 CUBIC_METERS = 0x21, 397 LITERS = 0x22, 398 FLUID_OUNCES = 0x23, 399 RADIANS = 0x24, 400 STERADIANS = 0x25, 401 REVOLUTIONS = 0x26, 402 CYCLES = 0x27, 403 GRAVITIES = 0x28, 404 OUNCES = 0x29, 405 POUNDS = 0x2A, 406 FOOT_POUNDS = 0x2B, 407 OUNCE_INCHES = 0x2C, 408 GAUSS = 0x2D, 409 GILBERTS = 0x2E, 410 HENRIES = 0x2F, 411 FARADS = 0x30, 412 OHMS = 0x31, 413 SIEMENS = 0x32, 414 MOLES = 0x33, 415 BECQUERELS = 0x34, 416 PPM = 0x35, 417 DECIBELS = 0x36, 418 DBA = 0x37, 419 DBC = 0x38, 420 GRAYS = 0x39, 421 SIEVERTS = 0x3A, 422 COLOR_TEMP_K = 0x3B, 423 BITS = 0x3C, 424 BYTES = 0x3D, 425 WORDS = 0x3E, 426 DWORDS = 0x3F, 427 QWORDS = 0x40, 428 PERCENTAGE = 0x41, 429 PASCALS = 0x42, 430 COUNTS = 0x43, 431 GRAMS = 0x44, 432 NEWTON_METERS = 0x45, 433 HITS = 0x46, 434 MISSES = 0x47, 435 RETRIES = 0x48, 436 OVERRUNS = 0x49, 437 UNDERRUNS = 0x4A, 438 COLLISIONS = 0x4B, 439 PACKETS = 0x4C, 440 MESSAGES = 0x4D, 441 CHARS = 0x4E, 442 ERRORS = 0x4F, 443 CORRECTED_ERRS = 0x50, 444 UNCORRECTABLE_ERRS = 0x51, 445 SQ_MILS = 0x52, 446 SQ_INCHES = 0x53, 447 SQ_FEET = 0x54, 448 SQ_CM = 0x55, 449 SQ_METERS = 0x56, 450 RADIANS_SEC = 0x57, 451 BPM = 0x58, 452 METERS_SEC_SQUARED = 0x59, 453 METERS_SEC = 0x5A, 454 CUBIC_METERS_SEC = 0x5B, 455 MM_MERCURY = 0x5C, 456 RADIANS_SEC_SQUARED = 0x5D, 457 OEM_UNIT = 0xFF 458 }; 459 460 /** 461 * struct scmi_sensor_proto_ops - represents the various operations provided 462 * by SCMI Sensor Protocol 463 * 464 * @count_get: get the count of sensors provided by SCMI 465 * @info_get: get the information of the specified sensor 466 * @trip_point_config: selects and configures a trip-point of interest 467 * @reading_get: gets the current value of the sensor 468 * @reading_get_timestamped: gets the current value and timestamp, when 469 * available, of the sensor. (as of v3.0 spec) 470 * Supports multi-axis sensors for sensors which 471 * supports it and if the @reading array size of 472 * @count entry equals the sensor num_axis 473 * @config_get: Get sensor current configuration 474 * @config_set: Set sensor current configuration 475 */ 476 struct scmi_sensor_proto_ops { 477 int (*count_get)(const struct scmi_protocol_handle *ph); 478 const struct scmi_sensor_info __must_check *(*info_get) 479 (const struct scmi_protocol_handle *ph, u32 sensor_id); 480 int (*trip_point_config)(const struct scmi_protocol_handle *ph, 481 u32 sensor_id, u8 trip_id, u64 trip_value); 482 int (*reading_get)(const struct scmi_protocol_handle *ph, u32 sensor_id, 483 u64 *value); 484 int (*reading_get_timestamped)(const struct scmi_protocol_handle *ph, 485 u32 sensor_id, u8 count, 486 struct scmi_sensor_reading *readings); 487 int (*config_get)(const struct scmi_protocol_handle *ph, 488 u32 sensor_id, u32 *sensor_config); 489 int (*config_set)(const struct scmi_protocol_handle *ph, 490 u32 sensor_id, u32 sensor_config); 491 }; 492 493 /** 494 * struct scmi_reset_proto_ops - represents the various operations provided 495 * by SCMI Reset Protocol 496 * 497 * @num_domains_get: get the count of reset domains provided by SCMI 498 * @name_get: gets the name of a reset domain 499 * @latency_get: gets the reset latency for the specified reset domain 500 * @reset: resets the specified reset domain 501 * @assert: explicitly assert reset signal of the specified reset domain 502 * @deassert: explicitly deassert reset signal of the specified reset domain 503 */ 504 struct scmi_reset_proto_ops { 505 int (*num_domains_get)(const struct scmi_protocol_handle *ph); 506 const char *(*name_get)(const struct scmi_protocol_handle *ph, 507 u32 domain); 508 int (*latency_get)(const struct scmi_protocol_handle *ph, u32 domain); 509 int (*reset)(const struct scmi_protocol_handle *ph, u32 domain); 510 int (*assert)(const struct scmi_protocol_handle *ph, u32 domain); 511 int (*deassert)(const struct scmi_protocol_handle *ph, u32 domain); 512 }; 513 514 enum scmi_voltage_level_mode { 515 SCMI_VOLTAGE_LEVEL_SET_AUTO, 516 SCMI_VOLTAGE_LEVEL_SET_SYNC, 517 }; 518 519 /** 520 * struct scmi_voltage_info - describe one available SCMI Voltage Domain 521 * 522 * @id: the domain ID as advertised by the platform 523 * @segmented: defines the layout of the entries of array @levels_uv. 524 * - when True the entries are to be interpreted as triplets, 525 * each defining a segment representing a range of equally 526 * space voltages: <lowest_volts>, <highest_volt>, <step_uV> 527 * - when False the entries simply represent a single discrete 528 * supported voltage level 529 * @negative_volts_allowed: True if any of the entries of @levels_uv represent 530 * a negative voltage. 531 * @async_level_set: True when the voltage domain supports asynchronous level 532 * set commands. 533 * @name: name assigned to the Voltage Domain by platform 534 * @num_levels: number of total entries in @levels_uv. 535 * @levels_uv: array of entries describing the available voltage levels for 536 * this domain. 537 */ 538 struct scmi_voltage_info { 539 unsigned int id; 540 bool segmented; 541 bool negative_volts_allowed; 542 bool async_level_set; 543 char name[SCMI_MAX_STR_SIZE]; 544 unsigned int num_levels; 545 #define SCMI_VOLTAGE_SEGMENT_LOW 0 546 #define SCMI_VOLTAGE_SEGMENT_HIGH 1 547 #define SCMI_VOLTAGE_SEGMENT_STEP 2 548 int *levels_uv; 549 }; 550 551 /** 552 * struct scmi_voltage_proto_ops - represents the various operations provided 553 * by SCMI Voltage Protocol 554 * 555 * @num_domains_get: get the count of voltage domains provided by SCMI 556 * @info_get: get the information of the specified domain 557 * @config_set: set the config for the specified domain 558 * @config_get: get the config of the specified domain 559 * @level_set: set the voltage level for the specified domain 560 * @level_get: get the voltage level of the specified domain 561 */ 562 struct scmi_voltage_proto_ops { 563 int (*num_domains_get)(const struct scmi_protocol_handle *ph); 564 const struct scmi_voltage_info __must_check *(*info_get) 565 (const struct scmi_protocol_handle *ph, u32 domain_id); 566 int (*config_set)(const struct scmi_protocol_handle *ph, u32 domain_id, 567 u32 config); 568 #define SCMI_VOLTAGE_ARCH_STATE_OFF 0x0 569 #define SCMI_VOLTAGE_ARCH_STATE_ON 0x7 570 int (*config_get)(const struct scmi_protocol_handle *ph, u32 domain_id, 571 u32 *config); 572 int (*level_set)(const struct scmi_protocol_handle *ph, u32 domain_id, 573 enum scmi_voltage_level_mode mode, s32 volt_uV); 574 int (*level_get)(const struct scmi_protocol_handle *ph, u32 domain_id, 575 s32 *volt_uV); 576 }; 577 578 /** 579 * struct scmi_powercap_info - Describe one available Powercap domain 580 * 581 * @id: Domain ID as advertised by the platform. 582 * @notify_powercap_cap_change: CAP change notification support. 583 * @notify_powercap_measurement_change: MEASUREMENTS change notifications 584 * support. 585 * @async_powercap_cap_set: Asynchronous CAP set support. 586 * @powercap_cap_config: CAP configuration support. 587 * @powercap_monitoring: Monitoring (measurements) support. 588 * @powercap_pai_config: PAI configuration support. 589 * @powercap_scale_mw: Domain reports power data in milliwatt units. 590 * @powercap_scale_uw: Domain reports power data in microwatt units. 591 * Note that, when both @powercap_scale_mw and 592 * @powercap_scale_uw are set to false, the domain 593 * reports power data on an abstract linear scale. 594 * @name: name assigned to the Powercap Domain by platform. 595 * @min_pai: Minimum configurable PAI. 596 * @max_pai: Maximum configurable PAI. 597 * @pai_step: Step size between two consecutive PAI values. 598 * @min_power_cap: Minimum configurable CAP. 599 * @max_power_cap: Maximum configurable CAP. 600 * @power_cap_step: Step size between two consecutive CAP values. 601 * @sustainable_power: Maximum sustainable power consumption for this domain 602 * under normal conditions. 603 * @accuracy: The accuracy with which the power is measured and reported in 604 * integral multiples of 0.001 percent. 605 * @parent_id: Identifier of the containing parent power capping domain, or the 606 * value 0xFFFFFFFF if this powercap domain is a root domain not 607 * contained in any other domain. 608 */ 609 struct scmi_powercap_info { 610 unsigned int id; 611 bool notify_powercap_cap_change; 612 bool notify_powercap_measurement_change; 613 bool async_powercap_cap_set; 614 bool powercap_cap_config; 615 bool powercap_monitoring; 616 bool powercap_pai_config; 617 bool powercap_scale_mw; 618 bool powercap_scale_uw; 619 bool fastchannels; 620 char name[SCMI_MAX_STR_SIZE]; 621 unsigned int min_pai; 622 unsigned int max_pai; 623 unsigned int pai_step; 624 unsigned int min_power_cap; 625 unsigned int max_power_cap; 626 unsigned int power_cap_step; 627 unsigned int sustainable_power; 628 unsigned int accuracy; 629 #define SCMI_POWERCAP_ROOT_ZONE_ID 0xFFFFFFFFUL 630 unsigned int parent_id; 631 struct scmi_fc_info *fc_info; 632 }; 633 634 /** 635 * struct scmi_powercap_proto_ops - represents the various operations provided 636 * by SCMI Powercap Protocol 637 * 638 * @num_domains_get: get the count of powercap domains provided by SCMI. 639 * @info_get: get the information for the specified domain. 640 * @cap_get: get the current CAP value for the specified domain. 641 * On SCMI platforms supporting powercap zone disabling, this could 642 * report a zero value for a zone where powercapping is disabled. 643 * @cap_set: set the CAP value for the specified domain to the provided value; 644 * if the domain supports setting the CAP with an asynchronous command 645 * this request will finally trigger an asynchronous transfer, but, if 646 * @ignore_dresp here is set to true, this call will anyway return 647 * immediately without waiting for the related delayed response. 648 * Note that the powercap requested value must NOT be zero, even if 649 * the platform supports disabling a powercap by setting its cap to 650 * zero (since SCMI v3.2): there are dedicated operations that should 651 * be used for that. (@cap_enable_set/get) 652 * @cap_enable_set: enable or disable the powercapping on the specified domain, 653 * if supported by the SCMI platform implementation. 654 * Note that, by the SCMI specification, the platform can 655 * silently ignore our disable request and decide to enforce 656 * anyway some other powercap value requested by another agent 657 * on the system: for this reason @cap_get and @cap_enable_get 658 * will always report the final platform view of the powercaps. 659 * @cap_enable_get: get the current CAP enable status for the specified domain. 660 * @pai_get: get the current PAI value for the specified domain. 661 * @pai_set: set the PAI value for the specified domain to the provided value. 662 * @measurements_get: retrieve the current average power measurements for the 663 * specified domain and the related PAI upon which is 664 * calculated. 665 * @measurements_threshold_set: set the desired low and high power thresholds 666 * to be used when registering for notification 667 * of type POWERCAP_MEASUREMENTS_NOTIFY with this 668 * powercap domain. 669 * Note that this must be called at least once 670 * before registering any callback with the usual 671 * @scmi_notify_ops; moreover, in case this method 672 * is called with measurement notifications already 673 * enabled it will also trigger, transparently, a 674 * proper update of the power thresholds configured 675 * in the SCMI backend server. 676 * @measurements_threshold_get: get the currently configured low and high power 677 * thresholds used when registering callbacks for 678 * notification POWERCAP_MEASUREMENTS_NOTIFY. 679 */ 680 struct scmi_powercap_proto_ops { 681 int (*num_domains_get)(const struct scmi_protocol_handle *ph); 682 const struct scmi_powercap_info __must_check *(*info_get) 683 (const struct scmi_protocol_handle *ph, u32 domain_id); 684 int (*cap_get)(const struct scmi_protocol_handle *ph, u32 domain_id, 685 u32 *power_cap); 686 int (*cap_set)(const struct scmi_protocol_handle *ph, u32 domain_id, 687 u32 power_cap, bool ignore_dresp); 688 int (*cap_enable_set)(const struct scmi_protocol_handle *ph, 689 u32 domain_id, bool enable); 690 int (*cap_enable_get)(const struct scmi_protocol_handle *ph, 691 u32 domain_id, bool *enable); 692 int (*pai_get)(const struct scmi_protocol_handle *ph, u32 domain_id, 693 u32 *pai); 694 int (*pai_set)(const struct scmi_protocol_handle *ph, u32 domain_id, 695 u32 pai); 696 int (*measurements_get)(const struct scmi_protocol_handle *ph, 697 u32 domain_id, u32 *average_power, u32 *pai); 698 int (*measurements_threshold_set)(const struct scmi_protocol_handle *ph, 699 u32 domain_id, u32 power_thresh_low, 700 u32 power_thresh_high); 701 int (*measurements_threshold_get)(const struct scmi_protocol_handle *ph, 702 u32 domain_id, u32 *power_thresh_low, 703 u32 *power_thresh_high); 704 }; 705 706 /** 707 * struct scmi_notify_ops - represents notifications' operations provided by 708 * SCMI core 709 * @devm_event_notifier_register: Managed registration of a notifier_block for 710 * the requested event 711 * @devm_event_notifier_unregister: Managed unregistration of a notifier_block 712 * for the requested event 713 * @event_notifier_register: Register a notifier_block for the requested event 714 * @event_notifier_unregister: Unregister a notifier_block for the requested 715 * event 716 * 717 * A user can register/unregister its own notifier_block against the wanted 718 * platform instance regarding the desired event identified by the 719 * tuple: (proto_id, evt_id, src_id) using the provided register/unregister 720 * interface where: 721 * 722 * @sdev: The scmi_device to use when calling the devres managed ops devm_ 723 * @handle: The handle identifying the platform instance to use, when not 724 * calling the managed ops devm_ 725 * @proto_id: The protocol ID as in SCMI Specification 726 * @evt_id: The message ID of the desired event as in SCMI Specification 727 * @src_id: A pointer to the desired source ID if different sources are 728 * possible for the protocol (like domain_id, sensor_id...etc) 729 * 730 * @src_id can be provided as NULL if it simply does NOT make sense for 731 * the protocol at hand, OR if the user is explicitly interested in 732 * receiving notifications from ANY existent source associated to the 733 * specified proto_id / evt_id. 734 * 735 * Received notifications are finally delivered to the registered users, 736 * invoking the callback provided with the notifier_block *nb as follows: 737 * 738 * int user_cb(nb, evt_id, report) 739 * 740 * with: 741 * 742 * @nb: The notifier block provided by the user 743 * @evt_id: The message ID of the delivered event 744 * @report: A custom struct describing the specific event delivered 745 */ 746 struct scmi_notify_ops { 747 int (*devm_event_notifier_register)(struct scmi_device *sdev, 748 u8 proto_id, u8 evt_id, 749 const u32 *src_id, 750 struct notifier_block *nb); 751 int (*devm_event_notifier_unregister)(struct scmi_device *sdev, 752 u8 proto_id, u8 evt_id, 753 const u32 *src_id, 754 struct notifier_block *nb); 755 int (*event_notifier_register)(const struct scmi_handle *handle, 756 u8 proto_id, u8 evt_id, 757 const u32 *src_id, 758 struct notifier_block *nb); 759 int (*event_notifier_unregister)(const struct scmi_handle *handle, 760 u8 proto_id, u8 evt_id, 761 const u32 *src_id, 762 struct notifier_block *nb); 763 }; 764 765 /** 766 * struct scmi_handle - Handle returned to ARM SCMI clients for usage. 767 * 768 * @dev: pointer to the SCMI device 769 * @version: pointer to the structure containing SCMI version information 770 * @devm_protocol_acquire: devres managed method to get hold of a protocol, 771 * causing its initialization and related resource 772 * accounting 773 * @devm_protocol_get: devres managed method to acquire a protocol and get specific 774 * operations and a dedicated protocol handler 775 * @devm_protocol_put: devres managed method to release a protocol 776 * @is_transport_atomic: method to check if the underlying transport for this 777 * instance handle is configured to support atomic 778 * transactions for commands. 779 * Some users of the SCMI stack in the upper layers could 780 * be interested to know if they can assume SCMI 781 * command transactions associated to this handle will 782 * never sleep and act accordingly. 783 * An optional atomic threshold value could be returned 784 * where configured. 785 * @notify_ops: pointer to set of notifications related operations 786 */ 787 struct scmi_handle { 788 struct device *dev; 789 struct scmi_revision_info *version; 790 791 int __must_check (*devm_protocol_acquire)(struct scmi_device *sdev, 792 u8 proto); 793 const void __must_check * 794 (*devm_protocol_get)(struct scmi_device *sdev, u8 proto, 795 struct scmi_protocol_handle **ph); 796 void (*devm_protocol_put)(struct scmi_device *sdev, u8 proto); 797 bool (*is_transport_atomic)(const struct scmi_handle *handle, 798 unsigned int *atomic_threshold); 799 800 const struct scmi_notify_ops *notify_ops; 801 }; 802 803 enum scmi_std_protocol { 804 SCMI_PROTOCOL_BASE = 0x10, 805 SCMI_PROTOCOL_POWER = 0x11, 806 SCMI_PROTOCOL_SYSTEM = 0x12, 807 SCMI_PROTOCOL_PERF = 0x13, 808 SCMI_PROTOCOL_CLOCK = 0x14, 809 SCMI_PROTOCOL_SENSOR = 0x15, 810 SCMI_PROTOCOL_RESET = 0x16, 811 SCMI_PROTOCOL_VOLTAGE = 0x17, 812 SCMI_PROTOCOL_POWERCAP = 0x18, 813 }; 814 815 enum scmi_system_events { 816 SCMI_SYSTEM_SHUTDOWN, 817 SCMI_SYSTEM_COLDRESET, 818 SCMI_SYSTEM_WARMRESET, 819 SCMI_SYSTEM_POWERUP, 820 SCMI_SYSTEM_SUSPEND, 821 SCMI_SYSTEM_MAX 822 }; 823 824 struct scmi_device { 825 u32 id; 826 u8 protocol_id; 827 const char *name; 828 struct device dev; 829 struct scmi_handle *handle; 830 }; 831 832 #define to_scmi_dev(d) container_of(d, struct scmi_device, dev) 833 834 struct scmi_device_id { 835 u8 protocol_id; 836 const char *name; 837 }; 838 839 struct scmi_driver { 840 const char *name; 841 int (*probe)(struct scmi_device *sdev); 842 void (*remove)(struct scmi_device *sdev); 843 const struct scmi_device_id *id_table; 844 845 struct device_driver driver; 846 }; 847 848 #define to_scmi_driver(d) container_of(d, struct scmi_driver, driver) 849 850 #if IS_REACHABLE(CONFIG_ARM_SCMI_PROTOCOL) 851 int scmi_driver_register(struct scmi_driver *driver, 852 struct module *owner, const char *mod_name); 853 void scmi_driver_unregister(struct scmi_driver *driver); 854 #else 855 static inline int 856 scmi_driver_register(struct scmi_driver *driver, struct module *owner, 857 const char *mod_name) 858 { 859 return -EINVAL; 860 } 861 862 static inline void scmi_driver_unregister(struct scmi_driver *driver) {} 863 #endif /* CONFIG_ARM_SCMI_PROTOCOL */ 864 865 #define scmi_register(driver) \ 866 scmi_driver_register(driver, THIS_MODULE, KBUILD_MODNAME) 867 #define scmi_unregister(driver) \ 868 scmi_driver_unregister(driver) 869 870 /** 871 * module_scmi_driver() - Helper macro for registering a scmi driver 872 * @__scmi_driver: scmi_driver structure 873 * 874 * Helper macro for scmi drivers to set up proper module init / exit 875 * functions. Replaces module_init() and module_exit() and keeps people from 876 * printing pointless things to the kernel log when their driver is loaded. 877 */ 878 #define module_scmi_driver(__scmi_driver) \ 879 module_driver(__scmi_driver, scmi_register, scmi_unregister) 880 881 /** 882 * module_scmi_protocol() - Helper macro for registering a scmi protocol 883 * @__scmi_protocol: scmi_protocol structure 884 * 885 * Helper macro for scmi drivers to set up proper module init / exit 886 * functions. Replaces module_init() and module_exit() and keeps people from 887 * printing pointless things to the kernel log when their driver is loaded. 888 */ 889 #define module_scmi_protocol(__scmi_protocol) \ 890 module_driver(__scmi_protocol, \ 891 scmi_protocol_register, scmi_protocol_unregister) 892 893 struct scmi_protocol; 894 int scmi_protocol_register(const struct scmi_protocol *proto); 895 void scmi_protocol_unregister(const struct scmi_protocol *proto); 896 897 /* SCMI Notification API - Custom Event Reports */ 898 enum scmi_notification_events { 899 SCMI_EVENT_POWER_STATE_CHANGED = 0x0, 900 SCMI_EVENT_CLOCK_RATE_CHANGED = 0x0, 901 SCMI_EVENT_CLOCK_RATE_CHANGE_REQUESTED = 0x1, 902 SCMI_EVENT_PERFORMANCE_LIMITS_CHANGED = 0x0, 903 SCMI_EVENT_PERFORMANCE_LEVEL_CHANGED = 0x1, 904 SCMI_EVENT_SENSOR_TRIP_POINT_EVENT = 0x0, 905 SCMI_EVENT_SENSOR_UPDATE = 0x1, 906 SCMI_EVENT_RESET_ISSUED = 0x0, 907 SCMI_EVENT_BASE_ERROR_EVENT = 0x0, 908 SCMI_EVENT_SYSTEM_POWER_STATE_NOTIFIER = 0x0, 909 SCMI_EVENT_POWERCAP_CAP_CHANGED = 0x0, 910 SCMI_EVENT_POWERCAP_MEASUREMENTS_CHANGED = 0x1, 911 }; 912 913 struct scmi_power_state_changed_report { 914 ktime_t timestamp; 915 unsigned int agent_id; 916 unsigned int domain_id; 917 unsigned int power_state; 918 }; 919 920 struct scmi_clock_rate_notif_report { 921 ktime_t timestamp; 922 unsigned int agent_id; 923 unsigned int clock_id; 924 unsigned long long rate; 925 }; 926 927 struct scmi_system_power_state_notifier_report { 928 ktime_t timestamp; 929 unsigned int agent_id; 930 #define SCMI_SYSPOWER_IS_REQUEST_GRACEFUL(flags) ((flags) & BIT(0)) 931 unsigned int flags; 932 unsigned int system_state; 933 unsigned int timeout; 934 }; 935 936 struct scmi_perf_limits_report { 937 ktime_t timestamp; 938 unsigned int agent_id; 939 unsigned int domain_id; 940 unsigned int range_max; 941 unsigned int range_min; 942 }; 943 944 struct scmi_perf_level_report { 945 ktime_t timestamp; 946 unsigned int agent_id; 947 unsigned int domain_id; 948 unsigned int performance_level; 949 }; 950 951 struct scmi_sensor_trip_point_report { 952 ktime_t timestamp; 953 unsigned int agent_id; 954 unsigned int sensor_id; 955 unsigned int trip_point_desc; 956 }; 957 958 struct scmi_sensor_update_report { 959 ktime_t timestamp; 960 unsigned int agent_id; 961 unsigned int sensor_id; 962 unsigned int readings_count; 963 struct scmi_sensor_reading readings[]; 964 }; 965 966 struct scmi_reset_issued_report { 967 ktime_t timestamp; 968 unsigned int agent_id; 969 unsigned int domain_id; 970 unsigned int reset_state; 971 }; 972 973 struct scmi_base_error_report { 974 ktime_t timestamp; 975 unsigned int agent_id; 976 bool fatal; 977 unsigned int cmd_count; 978 unsigned long long reports[]; 979 }; 980 981 struct scmi_powercap_cap_changed_report { 982 ktime_t timestamp; 983 unsigned int agent_id; 984 unsigned int domain_id; 985 unsigned int power_cap; 986 unsigned int pai; 987 }; 988 989 struct scmi_powercap_meas_changed_report { 990 ktime_t timestamp; 991 unsigned int agent_id; 992 unsigned int domain_id; 993 unsigned int power; 994 }; 995 #endif /* _LINUX_SCMI_PROTOCOL_H */ 996