mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-15 00:04:15 +08:00
f46f11dc1e
ARM System Control and Management Interface(SCMI)[1] is more flexible and easily extensible than any of the existing interfaces. Few existing as well as future ARM platforms provide micro-controllers to abstract various power and other system management tasks which have similar interfaces, both in terms of the functions that are provided by them, and in terms of how requests are communicated to them. There are quite a few protocols like ARM SCPI, TI SCI, QCOM RPM, Nvidia Tegra BPMP, and so on already. This specification is to standardize and avoid any further fragmentation in the design of such interface by various vendors. The current SCMI driver implementation is very basic and initial support. It lacks support for notifications, asynchronous/delayed response, perf/power statistics region and sensor register region. Mailbox is the only form of transport supported currently in the driver. SCMI supports interrupt based mailbox communication, where, on completion of the processing of a message, the caller receives an interrupt as well as polling for completion. SCMI is designed to minimize the dependency on the mailbox/transport hardware. So in terms of SCMI, each channel in the mailbox includes memory area, doorbell and completion interrupt. However the doorbell and completion interrupt is highly mailbox dependent which was bit of controversial as part of SCMI/mailbox discussions. Arnd and me discussed about the few aspects of SCMI and the mailbox framework: 1. Use of mailbox framework for doorbell type mailbox controller: - Such hardware may not require any data to be sent to signal the remote about the presence of a message. The channel will have in-built information on how to trigger the signal to the remote. There are few mailbox controller drivers which are purely doorbell based. e.g.QCOM IPC, STM, Tegra, ACPI PCC,..etc 2. Supporting other mailbox controller: - SCMI just needs a mechanism to signal the remote firmware. Such controller may need fixed message to be sent to trigger a doorbell. In such case we may need to get that data from DT and pass the same to the controller. It's not covered in the current DT binding, but can be extended as optional property in future. However handling notifications may be interesting on such mailbox, but again there is no way to interpret what the data field(remote message) means, it could be a bit mask or a number or don't-care. Arnd mentioned that he doesn't like the way the mailbox binding deals with doorbell-type hardware, but we do have quite a few precedent drivers already and changing the binding to add a data field would not make it any better, but could cause other problems. So he is happy with the status quo of SCMI implementation. [1] http://infocenter.arm.com/help/index.jsp?topic=/com.arm.doc.den0056a/index.html -----BEGIN PGP SIGNATURE----- Version: GnuPG v1 iQIcBAABCAAGBQJalvXJAAoJEABBurwxfuKYUHoQANi5gm0vGgRhb8/Cc6BHF9ij WVge3E2O+Ygg2qTKJJxWvwG3w09Pu9Pugwoa7vuisDNz4ihF+3WEYCZiwrbQhMOQ 8ZyxXwdBu4Kp0fnNAGGq0MWllwspVgdC2Be5jviDTMw7H8ZIQEiKjxPkdSFY1xFj YAtTzuUeDcuztUb3IliOpLscxNUqGEQr4p/xj0VFu+1XSwtYo/9bDU7haiYNj0MD zbNv9WhyjUHTTsdQjDW4YGywQpFPu/oI8oSR5q+Q3mudccaZYbvvTwKDRACLVkr4 rpeymFdGSEU8OI23pKql4eEZ2DC1VKuVnG9peTr9UhhuRL8jQKqFLeCYH0fGcY89 VGWDIFBjyUg1NK7giCriqCq4m68UM49ChITXY6zRrIvyONgUZj6p6kTmCHC3TULH LWfu9lf7XqI5/AqZaXhHsDPL2Arf0u5K7rP6yaU0BgdQ2HRKV8rIT3KadjsOioAw bIDfpi4eInmq41CUy1gsWP6nIRg4qR4sZiWC2CW8ap0gbHq8a7PVuuRi4VDCZIkN CfntuDAnE+FMq/cMpgLRGteNbl0MVAeAeJfEGNyk5ahhYZtvnAy142zDpBmvWZth ZuZvb7mwiNPiZTC65B/DFDdSCKZtD+LVCodzcm2Pkx6zgW0SC6pje+mX0+zpDxZ9 A9Eguiun1hInKX3URD1D =qOck -----END PGP SIGNATURE----- Merge tag 'scmi-updates-4.17' of ssh://gitolite.kernel.org/pub/scm/linux/kernel/git/sudeep.holla/linux into next/drivers Pull "ARM SCMI support for v4.17" from Sudeep Holla: ARM System Control and Management Interface(SCMI)[1] is more flexible and easily extensible than any of the existing interfaces. Few existing as well as future ARM platforms provide micro-controllers to abstract various power and other system management tasks which have similar interfaces, both in terms of the functions that are provided by them, and in terms of how requests are communicated to them. There are quite a few protocols like ARM SCPI, TI SCI, QCOM RPM, Nvidia Tegra BPMP, and so on already. This specification is to standardize and avoid any further fragmentation in the design of such interface by various vendors. The current SCMI driver implementation is very basic and initial support. It lacks support for notifications, asynchronous/delayed response, perf/power statistics region and sensor register region. Mailbox is the only form of transport supported currently in the driver. SCMI supports interrupt based mailbox communication, where, on completion of the processing of a message, the caller receives an interrupt as well as polling for completion. SCMI is designed to minimize the dependency on the mailbox/transport hardware. So in terms of SCMI, each channel in the mailbox includes memory area, doorbell and completion interrupt. However the doorbell and completion interrupt is highly mailbox dependent which was bit of controversial as part of SCMI/mailbox discussions. Arnd and me discussed about the few aspects of SCMI and the mailbox framework: 1. Use of mailbox framework for doorbell type mailbox controller: - Such hardware may not require any data to be sent to signal the remote about the presence of a message. The channel will have in-built information on how to trigger the signal to the remote. There are few mailbox controller drivers which are purely doorbell based. e.g.QCOM IPC, STM, Tegra, ACPI PCC,..etc 2. Supporting other mailbox controller: - SCMI just needs a mechanism to signal the remote firmware. Such controller may need fixed message to be sent to trigger a doorbell. In such case we may need to get that data from DT and pass the same to the controller. It's not covered in the current DT binding, but can be extended as optional property in future. However handling notifications may be interesting on such mailbox, but again there is no way to interpret what the data field(remote message) means, it could be a bit mask or a number or don't-care. Arnd mentioned that he doesn't like the way the mailbox binding deals with doorbell-type hardware, but we do have quite a few precedent drivers already and changing the binding to add a data field would not make it any better, but could cause other problems. So he is happy with the status quo of SCMI implementation. [1] http://infocenter.arm.com/help/index.jsp?topic=/com.arm.doc.den0056a/index.html * tag 'scmi-updates-4.17' of ssh://gitolite.kernel.org/pub/scm/linux/kernel/git/sudeep.holla/linux: cpufreq: scmi: add support for fast frequency switching cpufreq: add support for CPU DVFS based on SCMI message protocol hwmon: add support for sensors exported via ARM SCMI hwmon: (core) Add hwmon_max to hwmon_sensor_types enumeration clk: add support for clocks provided by SCMI firmware: arm_scmi: add device power domain support using genpd firmware: arm_scmi: add per-protocol channels support using idr objects firmware: arm_scmi: refactor in preparation to support per-protocol channels firmware: arm_scmi: add option for polling based performance domain operations firmware: arm_scmi: add support for polling based SCMI transfers firmware: arm_scmi: probe and initialise all the supported protocols firmware: arm_scmi: add initial support for sensor protocol firmware: arm_scmi: add initial support for power protocol firmware: arm_scmi: add initial support for clock protocol firmware: arm_scmi: add initial support for performance protocol firmware: arm_scmi: add scmi protocol bus to enumerate protocol devices firmware: arm_scmi: add common infrastructure and support for base protocol firmware: arm_scmi: add basic driver infrastructure for SCMI dt-bindings: arm: add support for ARM System Control and Management Interface(SCMI) protocol dt-bindings: mailbox: add support for mailbox client shared memory |
||
---|---|---|
.. | ||
pmbus | ||
ab8500.c | ||
abituguru3.c | ||
abituguru.c | ||
abx500.c | ||
abx500.h | ||
acpi_power_meter.c | ||
ad7314.c | ||
ad7414.c | ||
ad7418.c | ||
adc128d818.c | ||
adcxx.c | ||
adm1021.c | ||
adm1025.c | ||
adm1026.c | ||
adm1029.c | ||
adm1031.c | ||
adm9240.c | ||
ads1015.c | ||
ads7828.c | ||
ads7871.c | ||
adt7x10.c | ||
adt7x10.h | ||
adt7310.c | ||
adt7410.c | ||
adt7411.c | ||
adt7462.c | ||
adt7470.c | ||
adt7475.c | ||
amc6821.c | ||
applesmc.c | ||
asb100.c | ||
asc7621.c | ||
aspeed-pwm-tacho.c | ||
asus_atk0110.c | ||
atxp1.c | ||
coretemp.c | ||
da9052-hwmon.c | ||
da9055-hwmon.c | ||
dell-smm-hwmon.c | ||
dme1737.c | ||
ds620.c | ||
ds1621.c | ||
emc6w201.c | ||
emc1403.c | ||
emc2103.c | ||
f71805f.c | ||
f71882fg.c | ||
f75375s.c | ||
fam15h_power.c | ||
fschmd.c | ||
ftsteutates.c | ||
g760a.c | ||
g762.c | ||
gl518sm.c | ||
gl520sm.c | ||
gpio-fan.c | ||
hih6130.c | ||
hwmon-vid.c | ||
hwmon.c | ||
i5k_amb.c | ||
i5500_temp.c | ||
ibmaem.c | ||
ibmpex.c | ||
ibmpowernv.c | ||
iio_hwmon.c | ||
ina2xx.c | ||
ina209.c | ||
ina3221.c | ||
it87.c | ||
jc42.c | ||
jz4740-hwmon.c | ||
k8temp.c | ||
k10temp.c | ||
Kconfig | ||
lineage-pem.c | ||
lm63.c | ||
lm70.c | ||
lm73.c | ||
lm75.c | ||
lm75.h | ||
lm77.c | ||
lm78.c | ||
lm80.c | ||
lm83.c | ||
lm85.c | ||
lm87.c | ||
lm90.c | ||
lm92.c | ||
lm93.c | ||
lm95234.c | ||
lm95241.c | ||
lm95245.c | ||
ltc2945.c | ||
ltc2990.c | ||
ltc4151.c | ||
ltc4215.c | ||
ltc4222.c | ||
ltc4245.c | ||
ltc4260.c | ||
ltc4261.c | ||
ltq-cputemp.c | ||
Makefile | ||
max197.c | ||
max1111.c | ||
max1619.c | ||
max1668.c | ||
max6621.c | ||
max6639.c | ||
max6642.c | ||
max6650.c | ||
max6697.c | ||
max16065.c | ||
max31722.c | ||
max31790.c | ||
mc13783-adc.c | ||
mcp3021.c | ||
menf21bmc_hwmon.c | ||
nct6683.c | ||
nct6775.c | ||
nct7802.c | ||
nct7904.c | ||
nsa320-hwmon.c | ||
ntc_thermistor.c | ||
pc87360.c | ||
pc87427.c | ||
pcf8591.c | ||
powr1220.c | ||
pwm-fan.c | ||
s3c-hwmon.c | ||
sch56xx-common.c | ||
sch56xx-common.h | ||
sch5627.c | ||
sch5636.c | ||
scmi-hwmon.c | ||
scpi-hwmon.c | ||
sht3x.c | ||
sht15.c | ||
sht21.c | ||
shtc1.c | ||
sis5595.c | ||
smm665.c | ||
smsc47b397.c | ||
smsc47m1.c | ||
smsc47m192.c | ||
stts751.c | ||
tc74.c | ||
tc654.c | ||
thmc50.c | ||
tmp102.c | ||
tmp103.c | ||
tmp108.c | ||
tmp401.c | ||
tmp421.c | ||
ultra45_env.c | ||
vexpress-hwmon.c | ||
via686a.c | ||
via-cputemp.c | ||
vt1211.c | ||
vt8231.c | ||
w83l785ts.c | ||
w83l786ng.c | ||
w83627ehf.c | ||
w83627hf.c | ||
w83773g.c | ||
w83781d.c | ||
w83791d.c | ||
w83792d.c | ||
w83793.c | ||
w83795.c | ||
wm831x-hwmon.c | ||
wm8350-hwmon.c | ||
xgene-hwmon.c |