It's shaping to be another fairly busy cycle. Lots more on the way! New device support * ads7950 - new driver supporting ads7950, ads7951, ads7952, ads7953, ads7954, ads7955, ads7956, ads7957, ads7958, ads7959, ads7960, and ads7961 ADCs. * cm3605 - New driver for this light sensor and proximity sensor which is an analog part with some additional digital controls. * hx711 - New driver. Core new stuff * Gravity sensor type. This is a processed datastream in which the device will try to work out which way is down. * Split the buffer.h file into two parts. One provides the interface to 'use' a buffer, the second provides the internals of the buffer functionality as needed by implementations of buffers. - Move documentation inline so as to allow use of private: tag when generating documentation. - Add some utility functions for the few things that are directly done with the buffers. - Stop exporting functions that no-one uses outside of the core code. - Push docs down by the code in the c file where they should have always been. - Fix typo in kernel-doc for buffer. - push down some includes that were previously happening implicitly. - stop enabling the timestamp of the dummy device. Features and cleanups * ad5592r - ACPI support * ad5593r -ACPI support. * ad5933 - Fix a false comment about size of a particular register. * ad7150 - replace S_IRUGO | S_IWUSR with 0644. I'm not that keen on these patches in general, but as it was nicely presented I took this one anyway. As a general rule will only take these as part of a larger driver cleanup. - don't eat an error but rather reutnr it in the write_event_config callback. * ad7606 - replace non standard range attibute with _scale * ade7753 - use usleep_range for short sleeps * ade7754 - use usleep_range for short sleeps * ade7758 - use usleep_range for short sleeps * ade7759 - use usleep_range for short sleeps *ade7854
- use usleep_range for short sleeps * adis16201 - fix description * adis16203 - fix description - fix copyright year * adis16209 - fix description * adt7316 - Add braces to arms of if else statement (for consistency) - Alignment fixes. * axp288 - Fix up an issue with accidental overwrites of data. * bmi160 - add deivce tables for i2c and spi to support correctly identifying the full dt name (including manufacturer). - device tree binding. * bmp280 - use usleep_range for short sleeps. * cm3232 - return error from cm3232_reg_init rather than eating it if the last write fails. * dummy driver - remove a semicolor found at end of a function defintition. * exynos-adc - use usleep_range for short sleeps. * hid-sensor (accel) - Add timestamp support. The hardware can provide timestamps so lets support them. If not fall back to timestamps estimated in kernel. * hid-sensor (light) - Add a duplicate ID for the light channels so as to keep existing interface whilst also using the more standard IIO interface. * hts221 - acpi probing * imx25-gcq - Add a macro call to allow this driver to be automatically loaded. * isl29028 - reorganise code to avoid deep nesting of if statements. - move chip test and default regs into a function suitable or sharing with power management code. - tidy up some code alignment. * lidar-lite-v3 - introduce compatible strings that make it clear Garmin have consideral friends. * mma8452 - avoid returning signed value when unsigned is appropriate * spmi-vadc - Update function for generic voltage conversion to take into account that different channels on this device should be handled differently. - Rework code to allow per channel voltage scaling and support the standard options for this hardware. - Fixup three minor issues with the above patches for this part. These all effect test builds rather than the native builds for the part, but good to clean them up anyway. * st_sensors - support device matching from the ACPI DST tables. - acpi based probing for accelerometers - acpi based probing for pressure sensors - Allow pressure sensors to read negative values. - Export sampling frequency for lps25h and lps331ap. - Add support for the old DT bindings from the period when these deivces were often supported through windows. Docs fixup: * typo in sysfs-bus-iio -----BEGIN PGP SIGNATURE----- iQJFBAABCAAvFiEEbilms4eEBlKRJoGxVIU0mcT0FogFAlh2bhcRHGppYzIzQGtl cm5lbC5vcmcACgkQVIU0mcT0FogdSQ/9Hyd3ic5AgWyDKr9JI1vJPj3kT0PIYHLk 4ucbQ8HUJQBBLnsausTb+UwuGV277DkVjGVsI4epn59H3CvkNh3Egl3XCmbhIpt2 oyl9Pw9dSon6n/7I5pNSwmqD45O+aB7qFLigIfLmciwpMHZly3ExzGBMpqUkgjf9 bVzndDqrfoNIrU7UaMD6QgrSxrgYJJJJwBDig/0zjAkGvu9L8a8ghrKkrRzMy62O nGP5mmEagivFF9lpGzzrw2pYBQWY4AFbsNvuLElE7nUz0PKKG+9J0oaBiglTYv2p mkNlYl7iTZfI3eFOXa+7HdSmeNhYX2dvbEM2jAA/Mr6ojWg2mSRu7Y19Kl2KP7K7 BDRKBw+Cp0wkVvJ8LU/6PiDSmqp09VfjjqevzVGJi/BmWLzG0Mi2OsQmmynbw2SV hxiGETRV7vBoyJWDJuwJoftZaRnHWJbiQ6ftEUbWOFA9RIBMgOJBiL+RtxerJkHv FWlCFpv/618TUB/uM15+EOLVJAT5b7K+6+l6EGEjWdjiS/7vL7QM5DL8w4zV43zz cQ98UeIlqCkvoFmx9uHbl44COLQgzNtxAjytLxqbsOmEb40wlzoNzgSoUGu73SaG 8qwznH0w0p8P1nyzwe9qKKK6SmFhj/tF6jKVmIi/H7wJdA1J5dAAmwFUBSxLs2DX u1eM3ikCl/M= =yjUA -----END PGP SIGNATURE----- Merge tag 'iio-for-4.11a' of git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio into staging-next Jonathan writes: First round of new device support, features and cleanups for IIO in the 4.11 cycle. It's shaping to be another fairly busy cycle. Lots more on the way! New device support * ads7950 - new driver supporting ads7950, ads7951, ads7952, ads7953, ads7954, ads7955, ads7956, ads7957, ads7958, ads7959, ads7960, and ads7961 ADCs. * cm3605 - New driver for this light sensor and proximity sensor which is an analog part with some additional digital controls. * hx711 - New driver. Core new stuff * Gravity sensor type. This is a processed datastream in which the device will try to work out which way is down. * Split the buffer.h file into two parts. One provides the interface to 'use' a buffer, the second provides the internals of the buffer functionality as needed by implementations of buffers. - Move documentation inline so as to allow use of private: tag when generating documentation. - Add some utility functions for the few things that are directly done with the buffers. - Stop exporting functions that no-one uses outside of the core code. - Push docs down by the code in the c file where they should have always been. - Fix typo in kernel-doc for buffer. - push down some includes that were previously happening implicitly. - stop enabling the timestamp of the dummy device. Features and cleanups * ad5592r - ACPI support * ad5593r -ACPI support. * ad5933 - Fix a false comment about size of a particular register. * ad7150 - replace S_IRUGO | S_IWUSR with 0644. I'm not that keen on these patches in general, but as it was nicely presented I took this one anyway. As a general rule will only take these as part of a larger driver cleanup. - don't eat an error but rather reutnr it in the write_event_config callback. * ad7606 - replace non standard range attibute with _scale * ade7753 - use usleep_range for short sleeps * ade7754 - use usleep_range for short sleeps * ade7758 - use usleep_range for short sleeps * ade7759 - use usleep_range for short sleeps *ade7854
- use usleep_range for short sleeps * adis16201 - fix description * adis16203 - fix description - fix copyright year * adis16209 - fix description * adt7316 - Add braces to arms of if else statement (for consistency) - Alignment fixes. * axp288 - Fix up an issue with accidental overwrites of data. * bmi160 - add deivce tables for i2c and spi to support correctly identifying the full dt name (including manufacturer). - device tree binding. * bmp280 - use usleep_range for short sleeps. * cm3232 - return error from cm3232_reg_init rather than eating it if the last write fails. * dummy driver - remove a semicolor found at end of a function defintition. * exynos-adc - use usleep_range for short sleeps. * hid-sensor (accel) - Add timestamp support. The hardware can provide timestamps so lets support them. If not fall back to timestamps estimated in kernel. * hid-sensor (light) - Add a duplicate ID for the light channels so as to keep existing interface whilst also using the more standard IIO interface. * hts221 - acpi probing * imx25-gcq - Add a macro call to allow this driver to be automatically loaded. * isl29028 - reorganise code to avoid deep nesting of if statements. - move chip test and default regs into a function suitable or sharing with power management code. - tidy up some code alignment. * lidar-lite-v3 - introduce compatible strings that make it clear Garmin have consideral friends. * mma8452 - avoid returning signed value when unsigned is appropriate * spmi-vadc - Update function for generic voltage conversion to take into account that different channels on this device should be handled differently. - Rework code to allow per channel voltage scaling and support the standard options for this hardware. - Fixup three minor issues with the above patches for this part. These all effect test builds rather than the native builds for the part, but good to clean them up anyway. * st_sensors - support device matching from the ACPI DST tables. - acpi based probing for accelerometers - acpi based probing for pressure sensors - Allow pressure sensors to read negative values. - Export sampling frequency for lps25h and lps331ap. - Add support for the old DT bindings from the period when these deivces were often supported through windows. Docs fixup: * typo in sysfs-bus-iio
336 lines
9.6 KiB
Text
336 lines
9.6 KiB
Text
Device tree binding vendor prefix registry. Keep list in alphabetical order.
|
|
|
|
This isn't an exhaustive list, but you should add new prefixes to it before
|
|
using them to avoid name-space collisions.
|
|
|
|
abcn Abracon Corporation
|
|
abilis Abilis Systems
|
|
active-semi Active-Semi International Inc
|
|
ad Avionic Design GmbH
|
|
adapteva Adapteva, Inc.
|
|
adh AD Holdings Plc.
|
|
adi Analog Devices, Inc.
|
|
advantech Advantech Corporation
|
|
aeroflexgaisler Aeroflex Gaisler AB
|
|
al Annapurna Labs
|
|
allwinner Allwinner Technology Co., Ltd.
|
|
alphascale AlphaScale Integrated Circuits Systems, Inc.
|
|
altr Altera Corp.
|
|
amazon Amazon.com, Inc.
|
|
amcc Applied Micro Circuits Corporation (APM, formally AMCC)
|
|
amd Advanced Micro Devices (AMD), Inc.
|
|
amlogic Amlogic, Inc.
|
|
ampire Ampire Co., Ltd.
|
|
ams AMS AG
|
|
amstaos AMS-Taos Inc.
|
|
analogix Analogix Semiconductor, Inc.
|
|
andestech Andes Technology Corporation
|
|
apm Applied Micro Circuits Corporation (APM)
|
|
aptina Aptina Imaging
|
|
arasan Arasan Chip Systems
|
|
aries Aries Embedded GmbH
|
|
arm ARM Ltd.
|
|
armadeus ARMadeus Systems SARL
|
|
arrow Arrow Electronics
|
|
artesyn Artesyn Embedded Technologies Inc.
|
|
asahi-kasei Asahi Kasei Corp.
|
|
aspeed ASPEED Technology Inc.
|
|
atlas Atlas Scientific LLC
|
|
atmel Atmel Corporation
|
|
auo AU Optronics Corporation
|
|
auvidea Auvidea GmbH
|
|
avago Avago Technologies
|
|
avia avia semiconductor
|
|
avic Shanghai AVIC Optoelectronics Co., Ltd.
|
|
axentia Axentia Technologies AB
|
|
axis Axis Communications AB
|
|
boe BOE Technology Group Co., Ltd.
|
|
bosch Bosch Sensortec GmbH
|
|
boundary Boundary Devices Inc.
|
|
brcm Broadcom Corporation
|
|
buffalo Buffalo, Inc.
|
|
calxeda Calxeda
|
|
capella Capella Microsystems, Inc
|
|
cavium Cavium, Inc.
|
|
cdns Cadence Design Systems Inc.
|
|
ceva Ceva, Inc.
|
|
chipidea Chipidea, Inc
|
|
chipone ChipOne
|
|
chipspark ChipSPARK
|
|
chrp Common Hardware Reference Platform
|
|
chunghwa Chunghwa Picture Tubes Ltd.
|
|
ciaa Computadora Industrial Abierta Argentina
|
|
cirrus Cirrus Logic, Inc.
|
|
cloudengines Cloud Engines, Inc.
|
|
cnm Chips&Media, Inc.
|
|
cnxt Conexant Systems, Inc.
|
|
compulab CompuLab Ltd.
|
|
cortina Cortina Systems, Inc.
|
|
cosmic Cosmic Circuits
|
|
creative Creative Technology Ltd
|
|
crystalfontz Crystalfontz America, Inc.
|
|
cubietech Cubietech, Ltd.
|
|
cypress Cypress Semiconductor Corporation
|
|
cznic CZ.NIC, z.s.p.o.
|
|
dallas Maxim Integrated Products (formerly Dallas Semiconductor)
|
|
davicom DAVICOM Semiconductor, Inc.
|
|
delta Delta Electronics, Inc.
|
|
denx Denx Software Engineering
|
|
digi Digi International Inc.
|
|
digilent Diglent, Inc.
|
|
dlg Dialog Semiconductor
|
|
dlink D-Link Corporation
|
|
dmo Data Modul AG
|
|
domintech Domintech Co., Ltd.
|
|
dptechnics DPTechnics
|
|
dragino Dragino Technology Co., Limited
|
|
ea Embedded Artists AB
|
|
ebv EBV Elektronik
|
|
edt Emerging Display Technologies
|
|
eeti eGalax_eMPIA Technology Inc
|
|
elan Elan Microelectronic Corp.
|
|
embest Shenzhen Embest Technology Co., Ltd.
|
|
emmicro EM Microelectronic
|
|
energymicro Silicon Laboratories (formerly Energy Micro AS)
|
|
engicam Engicam S.r.l.
|
|
epcos EPCOS AG
|
|
epfl Ecole Polytechnique Fédérale de Lausanne
|
|
epson Seiko Epson Corp.
|
|
est ESTeem Wireless Modems
|
|
ettus NI Ettus Research
|
|
eukrea Eukréa Electromatique
|
|
everest Everest Semiconductor Co. Ltd.
|
|
everspin Everspin Technologies, Inc.
|
|
excito Excito
|
|
ezchip EZchip Semiconductor
|
|
fcs Fairchild Semiconductor
|
|
firefly Firefly
|
|
focaltech FocalTech Systems Co.,Ltd
|
|
friendlyarm Guangzhou FriendlyARM Computer Tech Co., Ltd
|
|
fsl Freescale Semiconductor
|
|
grmn Garmin Limited
|
|
ge General Electric Company
|
|
geekbuying GeekBuying
|
|
gef GE Fanuc Intelligent Platforms Embedded Systems, Inc.
|
|
GEFanuc GE Fanuc Intelligent Platforms Embedded Systems, Inc.
|
|
geniatech Geniatech, Inc.
|
|
giantplus Giantplus Technology Co., Ltd.
|
|
globalscale Globalscale Technologies, Inc.
|
|
gmt Global Mixed-mode Technology, Inc.
|
|
goodix Shenzhen Huiding Technology Co., Ltd.
|
|
google Google, Inc.
|
|
grinn Grinn
|
|
gumstix Gumstix, Inc.
|
|
gw Gateworks Corporation
|
|
hannstar HannStar Display Corporation
|
|
haoyu Haoyu Microelectronic Co. Ltd.
|
|
hardkernel Hardkernel Co., Ltd
|
|
himax Himax Technologies, Inc.
|
|
hisilicon Hisilicon Limited.
|
|
hit Hitachi Ltd.
|
|
hitex Hitex Development Tools
|
|
holt Holt Integrated Circuits, Inc.
|
|
honeywell Honeywell
|
|
hp Hewlett Packard
|
|
holtek Holtek Semiconductor, Inc.
|
|
i2se I2SE GmbH
|
|
ibm International Business Machines (IBM)
|
|
idt Integrated Device Technologies, Inc.
|
|
ifi Ingenieurburo Fur Ic-Technologie (I/F/I)
|
|
img Imagination Technologies Ltd.
|
|
infineon Infineon Technologies
|
|
inforce Inforce Computing
|
|
ingenic Ingenic Semiconductor
|
|
innolux Innolux Corporation
|
|
inside-secure INSIDE Secure
|
|
intel Intel Corporation
|
|
intercontrol Inter Control Group
|
|
invensense InvenSense Inc.
|
|
inversepath Inverse Path
|
|
iom Iomega Corporation
|
|
isee ISEE 2007 S.L.
|
|
isil Intersil
|
|
issi Integrated Silicon Solutions Inc.
|
|
jdi Japan Display Inc.
|
|
jedec JEDEC Solid State Technology Association
|
|
karo Ka-Ro electronics GmbH
|
|
keithkoep Keith & Koep GmbH
|
|
keymile Keymile GmbH
|
|
kinetic Kinetic Technologies
|
|
kosagi Sutajio Ko-Usagi PTE Ltd.
|
|
kyo Kyocera Corporation
|
|
lacie LaCie
|
|
lantiq Lantiq Semiconductor
|
|
lenovo Lenovo Group Ltd.
|
|
lg LG Corporation
|
|
linux Linux-specific binding
|
|
lltc Linear Technology Corporation
|
|
lsi LSI Corp. (LSI Logic)
|
|
macnica Macnica Americas
|
|
marvell Marvell Technology Group Ltd.
|
|
maxim Maxim Integrated Products
|
|
mcube mCube
|
|
meas Measurement Specialties
|
|
mediatek MediaTek Inc.
|
|
melexis Melexis N.V.
|
|
melfas MELFAS Inc.
|
|
memsic MEMSIC Inc.
|
|
merrii Merrii Technology Co., Ltd.
|
|
micrel Micrel Inc.
|
|
microchip Microchip Technology Inc.
|
|
microcrystal Micro Crystal AG
|
|
micron Micron Technology Inc.
|
|
minix MINIX Technology Ltd.
|
|
miramems MiraMEMS Sensing Technology Co., Ltd.
|
|
mitsubishi Mitsubishi Electric Corporation
|
|
mosaixtech Mosaix Technologies, Inc.
|
|
moxa Moxa
|
|
mpl MPL AG
|
|
mqmaker mqmaker Inc.
|
|
msi Micro-Star International Co. Ltd.
|
|
mti Imagination Technologies Ltd. (formerly MIPS Technologies Inc.)
|
|
mundoreader Mundo Reader S.L.
|
|
murata Murata Manufacturing Co., Ltd.
|
|
mxicy Macronix International Co., Ltd.
|
|
myir MYIR Tech Limited
|
|
national National Semiconductor
|
|
nec NEC LCD Technologies, Ltd.
|
|
neonode Neonode Inc.
|
|
netgear NETGEAR
|
|
netlogic Broadcom Corporation (formerly NetLogic Microsystems)
|
|
netxeon Shenzhen Netxeon Technology CO., LTD
|
|
nexbox Nexbox
|
|
newhaven Newhaven Display International
|
|
ni National Instruments
|
|
nintendo Nintendo
|
|
nokia Nokia
|
|
nuvoton Nuvoton Technology Corporation
|
|
nvd New Vision Display
|
|
nvidia NVIDIA
|
|
nxp NXP Semiconductors
|
|
okaya Okaya Electric America, Inc.
|
|
oki Oki Electric Industry Co., Ltd.
|
|
olimex OLIMEX Ltd.
|
|
onion Onion Corporation
|
|
onnn ON Semiconductor Corp.
|
|
ontat On Tat Industrial Company
|
|
opencores OpenCores.org
|
|
option Option NV
|
|
ORCL Oracle Corporation
|
|
ortustech Ortus Technology Co., Ltd.
|
|
ovti OmniVision Technologies
|
|
oxsemi Oxford Semiconductor, Ltd.
|
|
panasonic Panasonic Corporation
|
|
parade Parade Technologies Inc.
|
|
pericom Pericom Technology Inc.
|
|
phytec PHYTEC Messtechnik GmbH
|
|
picochip Picochip Ltd
|
|
pine64 Pine64
|
|
pixcir PIXCIR MICROELECTRONICS Co., Ltd
|
|
plathome Plat'Home Co., Ltd.
|
|
plda PLDA
|
|
powervr PowerVR (deprecated, use img)
|
|
pulsedlight PulsedLight, Inc
|
|
qca Qualcomm Atheros, Inc.
|
|
qcom Qualcomm Technologies, Inc
|
|
qemu QEMU, a generic and open source machine emulator and virtualizer
|
|
qi Qi Hardware
|
|
qiaodian QiaoDian XianShi Corporation
|
|
qnap QNAP Systems, Inc.
|
|
radxa Radxa
|
|
raidsonic RaidSonic Technology GmbH
|
|
ralink Mediatek/Ralink Technology Corp.
|
|
ramtron Ramtron International
|
|
raspberrypi Raspberry Pi Foundation
|
|
raydium Raydium Semiconductor Corp.
|
|
realtek Realtek Semiconductor Corp.
|
|
renesas Renesas Electronics Corporation
|
|
richtek Richtek Technology Corporation
|
|
ricoh Ricoh Co. Ltd.
|
|
rikomagic Rikomagic Tech Corp. Ltd
|
|
rockchip Fuzhou Rockchip Electronics Co., Ltd
|
|
samsung Samsung Semiconductor
|
|
samtec Samtec/Softing company
|
|
sandisk Sandisk Corporation
|
|
sbs Smart Battery System
|
|
schindler Schindler
|
|
seagate Seagate Technology PLC
|
|
semtech Semtech Corporation
|
|
sgx SGX Sensortech
|
|
sharp Sharp Corporation
|
|
si-en Si-En Technology Ltd.
|
|
sigma Sigma Designs, Inc.
|
|
sii Seiko Instruments, Inc.
|
|
sil Silicon Image
|
|
silabs Silicon Laboratories
|
|
silead Silead Inc.
|
|
silergy Silergy Corp.
|
|
siliconmitus Silicon Mitus, Inc.
|
|
simtek
|
|
sirf SiRF Technology, Inc.
|
|
sis Silicon Integrated Systems Corp.
|
|
sitronix Sitronix Technology Corporation
|
|
skyworks Skyworks Solutions, Inc.
|
|
smsc Standard Microsystems Corporation
|
|
snps Synopsys, Inc.
|
|
socionext Socionext Inc.
|
|
solidrun SolidRun
|
|
solomon Solomon Systech Limited
|
|
sony Sony Corporation
|
|
spansion Spansion Inc.
|
|
sprd Spreadtrum Communications Inc.
|
|
st STMicroelectronics
|
|
starry Starry Electronic Technology (ShenZhen) Co., LTD
|
|
startek Startek
|
|
ste ST-Ericsson
|
|
stericsson ST-Ericsson
|
|
summit Summit microelectronics
|
|
sunchip Shenzhen Sunchip Technology Co., Ltd
|
|
SUNW Sun Microsystems, Inc
|
|
swir Sierra Wireless
|
|
syna Synaptics Inc.
|
|
synology Synology, Inc.
|
|
tbs TBS Technologies
|
|
tcg Trusted Computing Group
|
|
tcl Toby Churchill Ltd.
|
|
technexion TechNexion
|
|
technologic Technologic Systems
|
|
terasic Terasic Inc.
|
|
thine THine Electronics, Inc.
|
|
ti Texas Instruments
|
|
tlm Trusted Logic Mobility
|
|
topeet Topeet
|
|
toradex Toradex AG
|
|
toshiba Toshiba Corporation
|
|
toumaz Toumaz
|
|
tpk TPK U.S.A. LLC
|
|
tplink TP-LINK Technologies Co., Ltd.
|
|
tpo TPO
|
|
tronfy Tronfy
|
|
tronsmart Tronsmart
|
|
truly Truly Semiconductors Limited
|
|
tyan Tyan Computer Corporation
|
|
udoo Udoo
|
|
uniwest United Western Technologies Corp (UniWest)
|
|
upisemi uPI Semiconductor Corp.
|
|
urt United Radiant Technology Corporation
|
|
usi Universal Scientific Industrial Co., Ltd.
|
|
v3 V3 Semiconductor
|
|
variscite Variscite Ltd.
|
|
via VIA Technologies, Inc.
|
|
virtio Virtual I/O Device Specification, developed by the OASIS consortium
|
|
vivante Vivante Corporation
|
|
voipac Voipac Technologies s.r.o.
|
|
wd Western Digital Corp.
|
|
wexler Wexler
|
|
winbond Winbond Electronics corp.
|
|
wlf Wolfson Microelectronics
|
|
wm Wondermedia Technologies, Inc.
|
|
x-powers X-Powers
|
|
xes Extreme Engineering Solutions (X-ES)
|
|
xillybus Xillybus Ltd.
|
|
xlnx Xilinx
|
|
zarlink Zarlink Semiconductor
|
|
zii Zodiac Inflight Innovations
|
|
zte ZTE Corp.
|
|
zyxel ZyXEL Communications Corp.
|