9f827d8099
New device support * APDS9960 ALS + proximity driver * bmg160 SPI devices. * HDC100x humidity sensors * Holt HI-8435 threshold detector * mma8453Q accelerometer added to the mma8452 driver * mma86452FC and mma8653FC accelerometers added to the mma8452 driver * mxc4005 accelerometer * PulsedLight LIDAR * SensorTech VZ89x volatile organic compound sensor * UPISEMI uS5182d ALS and proximity sensors New core functionality * triggered events - use triggers to check for changes in threshold type detectors on devices with out interrupt support. First user is the holt comparator. * chemical concentration and resistance channel types. New driver functionality * vf610 - buffer support. - followup coccinelle warning fix. Core rework * buffers - break out callback buffer to own module. - move buffer implementations to a new subdirectory * percolate the error code form iio_event_getfd out to userspace rather than giving a missleading error later on. Cleanups * adddac drivers - use BIT macro where appropriate. * meter drivers - use BIT macro where appropriate. * ad7303 - add an OF match table to line up with the binding docs. * adc128s052 - add an OF match table to line up with the binding docs. * adf4350 - add an OF match table to line up with the binding docs * as3935 - add an OF match table to line up with the binding docs. * berlin2-adc - use GENMASK and BIT for masks - prevent attempting to sample multiple channels at once by moving a mutex scop - coding style cleanups * bmg150_magn - kconfig sort order was wrong - fix it. * bmg160 - use i2c regmap and drop all uses of i2c_client - separate i2c and core driver * cc10001_adc - kconfig sort order was wrong - fix it. * evgen (dummy driver helper module) - move interrupt generation to irq_work to reduce differences between the dummy driver and real hardware drivers. * hmc5843 - set the name dynamically rather than to a fixed value for one of the suported parts. - export module alias information to allow autoprobing of module. * lpc32xx - on failure to get resource or irq return -ENXIO as uppose to -EBUSY * max1027 - set .of_match_table to actually allow OF style matching. * max5821 - add MODULE_DEVICE_TABLE for OF table. * mma8452 - refactor to separate out chip specific data. - add freefall / motion interrupt source for devices that do their interrupts slightly differently. - update copywrite notice. - leave naming of events directory in sysfs to the core * mcp320x - set .of_match_table so that it can be use for OF style matching. * mlx90614 - Implement filter configuration (note the datasheet changed as a result of the driver reviews to include the values we needed ;) * opt3001 - drop .owner field as assigned by platform driver core. * si7020 - replace a bitmask on the humidity values with a more correct range check. * stk310 - improved error handling. - use BIT macro where appropriate and use the resulting defines instead of magic numbers in the code. - fix indentation * st-sensors - add debugfs register read hook * tsl4531 - fix error handling in check_id * twl6030 - fix module autoload for OF * iio-trig-sysfs - document add and remove attribute * trigger in staging - code alignment fixes. - braces on both branches of if statement if needed for one. * xilinx-xadc - push interrupts into hardirq context as there isn't much in them any more and it avoids breaking PREEMPT_RT builds due to the use of a spinlock between the hardirq and the thread. Tools * event-monitor - report unsupported events. We keep expanding what can come from drivers so give a helpful error if one turns up in an out of date userspace program. * generic-buffer - helpful message about needing to enable a channel to start the buffer. -----BEGIN PGP SIGNATURE----- Version: GnuPG v2 iQIcBAABCAAGBQJWBDeHAAoJEFSFNJnE9BaIgSQP/183S1WJTqpsrz3APZY4qQLU m8Jv6VCvtSENpryUxn6MtfPuVeBa8LwhciAtelsJfVvu2O902VAOcsgMhgp3cz7Y daTXio/XhdA7YJvuOkycLD3CdWJ7Gb3+nieBmcEb0YMAMIgchMR+gI/LYR/htISz Req9EM8C/4sU5hn3r92mVZFMiV5XWsApCv61A6IzXdaz4YgiEjtFb8NF87IPlFq0 Rpg3BG4/9Ka1tUaZs6a98sWXqudCzHSetKk9GLFbnhoo6xC+C33b06Z+fSinAZmn FsVGfQ/I6xhFJmCJLifLq/voN9gbDuebUQCPIYPfu7Oby29JcK95P60ZHM954s2M DGTCQ44GTReA2IqRvxlgQDU/TBUTwWKKDnuelw6+387t/wT0tnnfkwFrps1xPqGy k1qHVViofzf3iSKdDKeQyMjDoO+nMUv0DdkzYNz4xCPQIhGMRXA/Q+U81tJvJHZl rwhHVruFHyhI1/sTvTMJ/5+F7lL7LieFdCTVnzl0QblzMskGpLy5d/fMJn8OLVqa 6PiA5x3799U2o67wtCYH+RoSdQj1U+qEFkg7Oe+nVvlpbs/vfdR2dI3wYfp8459l mjafTgW8R+7tXYKU+iSKA4660QIN9LR6byBqyxX97mjyYxn3ml3VWJ44ztqfhjZd 1ZyZxsWa2y5b6L017kJN =E+jf -----END PGP SIGNATURE----- Merge tag 'iio-for-4.4a' of git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio into staging-next Jonathan writes: First round of new driver, new functionality and cleanups for IIO in the 4.4 cycle New device support * APDS9960 ALS + proximity driver * bmg160 SPI devices. * HDC100x humidity sensors * Holt HI-8435 threshold detector * mma8453Q accelerometer added to the mma8452 driver * mma86452FC and mma8653FC accelerometers added to the mma8452 driver * mxc4005 accelerometer * PulsedLight LIDAR * SensorTech VZ89x volatile organic compound sensor * UPISEMI uS5182d ALS and proximity sensors New core functionality * triggered events - use triggers to check for changes in threshold type detectors on devices with out interrupt support. First user is the holt comparator. * chemical concentration and resistance channel types. New driver functionality * vf610 - buffer support. - followup coccinelle warning fix. Core rework * buffers - break out callback buffer to own module. - move buffer implementations to a new subdirectory * percolate the error code form iio_event_getfd out to userspace rather than giving a missleading error later on. Cleanups * adddac drivers - use BIT macro where appropriate. * meter drivers - use BIT macro where appropriate. * ad7303 - add an OF match table to line up with the binding docs. * adc128s052 - add an OF match table to line up with the binding docs. * adf4350 - add an OF match table to line up with the binding docs * as3935 - add an OF match table to line up with the binding docs. * berlin2-adc - use GENMASK and BIT for masks - prevent attempting to sample multiple channels at once by moving a mutex scop - coding style cleanups * bmg150_magn - kconfig sort order was wrong - fix it. * bmg160 - use i2c regmap and drop all uses of i2c_client - separate i2c and core driver * cc10001_adc - kconfig sort order was wrong - fix it. * evgen (dummy driver helper module) - move interrupt generation to irq_work to reduce differences between the dummy driver and real hardware drivers. * hmc5843 - set the name dynamically rather than to a fixed value for one of the suported parts. - export module alias information to allow autoprobing of module. * lpc32xx - on failure to get resource or irq return -ENXIO as uppose to -EBUSY * max1027 - set .of_match_table to actually allow OF style matching. * max5821 - add MODULE_DEVICE_TABLE for OF table. * mma8452 - refactor to separate out chip specific data. - add freefall / motion interrupt source for devices that do their interrupts slightly differently. - update copywrite notice. - leave naming of events directory in sysfs to the core * mcp320x - set .of_match_table so that it can be use for OF style matching. * mlx90614 - Implement filter configuration (note the datasheet changed as a result of the driver reviews to include the values we needed ;) * opt3001 - drop .owner field as assigned by platform driver core. * si7020 - replace a bitmask on the humidity values with a more correct range check. * stk310 - improved error handling. - use BIT macro where appropriate and use the resulting defines instead of magic numbers in the code. - fix indentation * st-sensors - add debugfs register read hook * tsl4531 - fix error handling in check_id * twl6030 - fix module autoload for OF * iio-trig-sysfs - document add and remove attribute * trigger in staging - code alignment fixes. - braces on both branches of if statement if needed for one. * xilinx-xadc - push interrupts into hardirq context as there isn't much in them any more and it avoids breaking PREEMPT_RT builds due to the use of a spinlock between the hardirq and the thread. Tools * event-monitor - report unsupported events. We keep expanding what can come from drivers so give a helpful error if one turns up in an out of date userspace program. * generic-buffer - helpful message about needing to enable a channel to start the buffer.
248 lines
7.2 KiB
Plaintext
248 lines
7.2 KiB
Plaintext
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.
|
|
|
|
abilis Abilis Systems
|
|
abcn Abracon Corporation
|
|
active-semi Active-Semi International Inc
|
|
ad Avionic Design GmbH
|
|
adapteva Adapteva, Inc.
|
|
adh AD Holdings Plc.
|
|
adi Analog Devices, Inc.
|
|
aeroflexgaisler Aeroflex Gaisler AB
|
|
al Annapurna Labs
|
|
allwinner Allwinner Technology Co., Ltd.
|
|
alphascale AlphaScale Integrated Circuits Systems, Inc.
|
|
altr Altera Corp.
|
|
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.
|
|
apm Applied Micro Circuits Corporation (APM)
|
|
aptina Aptina Imaging
|
|
arasan Arasan Chip Systems
|
|
arm ARM Ltd.
|
|
armadeus ARMadeus Systems SARL
|
|
artesyn Artesyn Embedded Technologies Inc.
|
|
asahi-kasei Asahi Kasei Corp.
|
|
atmel Atmel Corporation
|
|
auo AU Optronics Corporation
|
|
avago Avago Technologies
|
|
avic Shanghai AVIC Optoelectronics Co., Ltd.
|
|
axis Axis Communications AB
|
|
bosch Bosch Sensortec GmbH
|
|
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.
|
|
cortina Cortina Systems, Inc.
|
|
cosmic Cosmic Circuits
|
|
crystalfontz Crystalfontz America, Inc.
|
|
cubietech Cubietech, Ltd.
|
|
cypress Cypress Semiconductor Corporation
|
|
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
|
|
ea Embedded Artists AB
|
|
ebv EBV Elektronik
|
|
edt Emerging Display Technologies
|
|
elan Elan Microelectronic Corp.
|
|
emmicro EM Microelectronic
|
|
energymicro Silicon Laboratories (formerly Energy Micro AS)
|
|
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
|
|
fcs Fairchild Semiconductor
|
|
firefly Firefly
|
|
fsl Freescale Semiconductor
|
|
GEFanuc GE Fanuc Intelligent Platforms Embedded Systems, Inc.
|
|
gef 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
|
|
i2se I2SE GmbH
|
|
ibm International Business Machines (IBM)
|
|
idt Integrated Device Technologies, Inc.
|
|
iom Iomega Corporation
|
|
img Imagination Technologies Ltd.
|
|
ingenic Ingenic Semiconductor
|
|
innolux Innolux Corporation
|
|
intel Intel Corporation
|
|
intercontrol Inter Control Group
|
|
invensense InvenSense Inc.
|
|
isee ISEE 2007 S.L.
|
|
isil Intersil
|
|
jedec JEDEC Solid State Technology Association
|
|
karo Ka-Ro electronics GmbH
|
|
keymile Keymile GmbH
|
|
kinetic Kinetic Technologies
|
|
lacie LaCie
|
|
lantiq Lantiq Semiconductor
|
|
lenovo Lenovo Group Ltd.
|
|
lg LG Corporation
|
|
linux Linux-specific binding
|
|
lsi LSI Corp. (LSI Logic)
|
|
lltc Linear Technology Corporation
|
|
marvell Marvell Technology Group Ltd.
|
|
maxim Maxim Integrated Products
|
|
mediatek MediaTek Inc.
|
|
melexis Melexis N.V.
|
|
merrii Merrii Technology Co., Ltd.
|
|
micrel Micrel Inc.
|
|
microchip Microchip Technology Inc.
|
|
micron Micron Technology Inc.
|
|
minix MINIX Technology Ltd.
|
|
mitsubishi Mitsubishi Electric Corporation
|
|
mosaixtech Mosaix Technologies, Inc.
|
|
moxa Moxa
|
|
mpl MPL AG
|
|
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.
|
|
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
|
|
newhaven Newhaven Display International
|
|
nintendo Nintendo
|
|
nokia Nokia
|
|
nuvoton Nuvoton Technology Corporation
|
|
nvidia NVIDIA
|
|
nxp NXP Semiconductors
|
|
okaya Okaya Electric America, Inc.
|
|
onnn ON Semiconductor Corp.
|
|
opencores OpenCores.org
|
|
option Option NV
|
|
ortustech Ortus Technology Co., Ltd.
|
|
ovti OmniVision Technologies
|
|
panasonic Panasonic Corporation
|
|
parade Parade Technologies Inc.
|
|
pericom Pericom Technology Inc.
|
|
phytec PHYTEC Messtechnik GmbH
|
|
picochip Picochip Ltd
|
|
plathome Plat'Home Co., Ltd.
|
|
pixcir PIXCIR MICROELECTRONICS Co., Ltd
|
|
pulsedlight PulsedLight, Inc
|
|
powervr PowerVR (deprecated, use img)
|
|
qca Qualcomm Atheros, Inc.
|
|
qcom Qualcomm Technologies, Inc
|
|
qemu QEMU, a generic and open source machine emulator and virtualizer
|
|
qi Qi Hardware
|
|
qnap QNAP Systems, Inc.
|
|
radxa Radxa
|
|
raidsonic RaidSonic Technology GmbH
|
|
ralink Mediatek/Ralink Technology Corp.
|
|
ramtron Ramtron International
|
|
raspberrypi Raspberry Pi Foundation
|
|
realtek Realtek Semiconductor Corp.
|
|
renesas Renesas Electronics Corporation
|
|
richtek Richtek Technology Corporation
|
|
ricoh Ricoh Co. Ltd.
|
|
rockchip Fuzhou Rockchip Electronics Co., Ltd
|
|
samsung Samsung Semiconductor
|
|
sandisk Sandisk Corporation
|
|
sbs Smart Battery System
|
|
schindler Schindler
|
|
seagate Seagate Technology PLC
|
|
semtech Semtech Corporation
|
|
sgx SGX Sensortech
|
|
sharp Sharp Corporation
|
|
sil Silicon Image
|
|
silabs Silicon Laboratories
|
|
siliconmitus Silicon Mitus, Inc.
|
|
simtek
|
|
sii Seiko Instruments, Inc.
|
|
silergy Silergy Corp.
|
|
sirf SiRF Technology, Inc.
|
|
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
|
|
ste ST-Ericsson
|
|
stericsson ST-Ericsson
|
|
synology Synology, Inc.
|
|
tbs TBS Technologies
|
|
tcl Toby Churchill Ltd.
|
|
thine THine Electronics, Inc.
|
|
ti Texas Instruments
|
|
tlm Trusted Logic Mobility
|
|
toradex Toradex AG
|
|
toshiba Toshiba Corporation
|
|
toumaz Toumaz
|
|
tplink TP-LINK Technologies Co., Ltd.
|
|
truly Truly Semiconductors Limited
|
|
upisemi uPI Semiconductor Corp.
|
|
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
|
|
voipac Voipac Technologies s.r.o.
|
|
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
|
|
zyxel ZyXEL Communications Corp.
|
|
zarlink Zarlink Semiconductor
|
|
zii Zodiac Inflight Innovations
|
|
zte ZTE Corp.
|