blob: b6dec34ab595296563b643fb978fa24564dfdec3 [file] [log] [blame]
Nico Huber61dbe362024-11-01 15:02:44 +01001##
2## This file is part of the flashrom project.
3##
4## Copyright (C) 2010 Uwe Hermann <uwe@hermann-uwe.de>
5##
6## This program is free software; you can redistribute it and/or modify
7## it under the terms of the GNU General Public License as published by
8## the Free Software Foundation; either version 2 of the License, or
9## (at your option) any later version.
10##
11## This program is distributed in the hope that it will be useful,
12## but WITHOUT ANY WARRANTY; without even the implied warranty of
13## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14## GNU General Public License for more details.
15##
16
17##
18## Please keep this list sorted alphabetically by vendor/device name.
19##
20
21ACTION!="add|change", GOTO="flashprog_rules_end"
22SUBSYSTEM!="usb|usb_device", GOTO="flashprog_rules_end"
23
24# Altera Blaster
Felix Singerfbea0fe2025-02-17 21:50:08 +010025ATTRS{idVendor}=="09fb", ATTRS{idProduct}=="6001", MODE="660", GROUP="plugdev", TAG+="uaccess"
Nico Huber61dbe362024-11-01 15:02:44 +010026
27# Amontec JTAGkey(2)
28# http://www.amontec.com/jtagkey.shtml
Felix Singerfbea0fe2025-02-17 21:50:08 +010029ATTRS{idVendor}=="0403", ATTRS{idProduct}=="cff8", MODE="660", GROUP="plugdev", TAG+="uaccess"
Nico Huber61dbe362024-11-01 15:02:44 +010030
31# Buspirate
32# http://dangerousprototypes.com/2009/10/08/bus-pirate-raw-spi-mode/
Felix Singerfbea0fe2025-02-17 21:50:08 +010033ATTRS{idVendor}=="0403", ATTRS{idProduct}=="6001", MODE="660", GROUP="plugdev", TAG+="uaccess"
Nico Huber61dbe362024-11-01 15:02:44 +010034
35# Dediprog SF100
36# http://www.dediprog.com/SPI-flash-in-circuit-programming/SF100
Felix Singerfbea0fe2025-02-17 21:50:08 +010037ATTRS{idVendor}=="0483", ATTRS{idProduct}=="dada", MODE="660", GROUP="plugdev", TAG+="uaccess"
Nico Huber61dbe362024-11-01 15:02:44 +010038
39# DirtyJTAG dongle "Generic Jean THOMAS DirtyJTAG"
Felix Singerfbea0fe2025-02-17 21:50:08 +010040ATTRS{idVendor}=="1209", ATTRS{idProduct}=="c0ca", MODE="660", GROUP="plugdev", TAG+="uaccess"
Nico Huber61dbe362024-11-01 15:02:44 +010041
42# DLP Design DLP-USB1232H
43# http://www.dlpdesign.com/usb/usb1232h.shtml
Felix Singerfbea0fe2025-02-17 21:50:08 +010044ATTRS{idVendor}=="0403", ATTRS{idProduct}=="6010", MODE="660", GROUP="plugdev", TAG+="uaccess"
Nico Huber61dbe362024-11-01 15:02:44 +010045
46# FIC OpenMoko Neo1973 Debug board (V2+)
47# http://wiki.openmoko.org/wiki/Neo1973_Debug_Board_v2
Felix Singerfbea0fe2025-02-17 21:50:08 +010048ATTRS{idVendor}=="1457", ATTRS{idProduct}=="5118", MODE="660", GROUP="plugdev", TAG+="uaccess"
Nico Huber61dbe362024-11-01 15:02:44 +010049
50# FTDI FT4232H Mini-Module
51# http://www.ftdichip.com/Products/EvaluationKits/FT4232H_MiniModule.htm
Felix Singerfbea0fe2025-02-17 21:50:08 +010052ATTRS{idVendor}=="0403", ATTRS{idProduct}=="6011", MODE="660", GROUP="plugdev", TAG+="uaccess"
Nico Huber61dbe362024-11-01 15:02:44 +010053
54# FTDI FT232H Mini-Module
Felix Singerfbea0fe2025-02-17 21:50:08 +010055ATTRS{idVendor}=="0403", ATTRS{idProduct}=="6014", MODE="660", GROUP="plugdev", TAG+="uaccess"
Nico Huber61dbe362024-11-01 15:02:44 +010056
57# FTDI FT4222H Mini-Module
Felix Singerfbea0fe2025-02-17 21:50:08 +010058ATTRS{idVendor}=="0403", ATTRS{idProduct}=="601c", MODE="660", GROUP="plugdev", TAG+="uaccess"
Nico Huber61dbe362024-11-01 15:02:44 +010059
60# GOEPEL PicoTAP
61# http://www.goepel.com/jtagboundary-scan/hardware/picotap.html
Felix Singerfbea0fe2025-02-17 21:50:08 +010062ATTRS{idVendor}=="096c", ATTRS{idProduct}=="1449", MODE="660", GROUP="plugdev", TAG+="uaccess"
Nico Huber61dbe362024-11-01 15:02:44 +010063
64# Google servo debug board
65# https://www.chromium.org/chromium-os/servo
Felix Singerfbea0fe2025-02-17 21:50:08 +010066ATTRS{idVendor}=="18d1", ATTRS{idProduct}=="5001", MODE="660", GROUP="plugdev", TAG+="uaccess"
67ATTRS{idVendor}=="18d1", ATTRS{idProduct}=="5002", MODE="660", GROUP="plugdev", TAG+="uaccess"
68ATTRS{idVendor}=="18d1", ATTRS{idProduct}=="5003", MODE="660", GROUP="plugdev", TAG+="uaccess"
Nico Huber61dbe362024-11-01 15:02:44 +010069
70# Kristech KT-LINK
71# https://kristech.pl/files/KT-LINK-UM-ENG.pdf
Felix Singerfbea0fe2025-02-17 21:50:08 +010072ATTRS{idVendor}=="0403", ATTRS{idProduct}=="bbe2", MODE="660", GROUP="plugdev", TAG+="uaccess"
Nico Huber61dbe362024-11-01 15:02:44 +010073
74# Microchip Technology, Inc. PICkit2
Felix Singerfbea0fe2025-02-17 21:50:08 +010075ATTRS{idVendor}=="04d8", ATTRS{idProduct}=="0033", MODE="660", GROUP="plugdev", TAG+="uaccess"
Nico Huber61dbe362024-11-01 15:02:44 +010076
77# Olimex ARM-USB-OCD
78# http://olimex.com/dev/arm-usb-ocd.html
Felix Singerfbea0fe2025-02-17 21:50:08 +010079ATTRS{idVendor}=="15ba", ATTRS{idProduct}=="0003", MODE="660", GROUP="plugdev", TAG+="uaccess"
Nico Huber61dbe362024-11-01 15:02:44 +010080
81# Olimex ARM-USB-OCD-H
82# http://olimex.com/dev/arm-usb-ocd-h.html
Felix Singerfbea0fe2025-02-17 21:50:08 +010083ATTRS{idVendor}=="15ba", ATTRS{idProduct}=="002b", MODE="660", GROUP="plugdev", TAG+="uaccess"
Nico Huber61dbe362024-11-01 15:02:44 +010084
85# Olimex ARM-USB-TINY
86# http://olimex.com/dev/arm-usb-tiny.html
Felix Singerfbea0fe2025-02-17 21:50:08 +010087ATTRS{idVendor}=="15ba", ATTRS{idProduct}=="0004", MODE="660", GROUP="plugdev", TAG+="uaccess"
Nico Huber61dbe362024-11-01 15:02:44 +010088
89# Olimex ARM-USB-TINY-H
90# http://olimex.com/dev/arm-usb-tiny-h.html
Felix Singerfbea0fe2025-02-17 21:50:08 +010091ATTRS{idVendor}=="15ba", ATTRS{idProduct}=="002a", MODE="660", GROUP="plugdev", TAG+="uaccess"
Nico Huber61dbe362024-11-01 15:02:44 +010092
93# TIAO/DIYGADGET USB Multi-Protocol Adapter (TUMPA)
94# http://www.diygadget.com/tiao-usb-multi-protocol-adapter-jtag-spi-i2c-serial.html
Felix Singerfbea0fe2025-02-17 21:50:08 +010095ATTRS{idVendor}=="0403", ATTRS{idProduct}=="8a98", MODE="660", GROUP="plugdev", TAG+="uaccess"
Nico Huber61dbe362024-11-01 15:02:44 +010096
97# TIAO/DIYGADGET USB Multi-Protocol Adapter (TUMPA) Lite
98# http://www.tiaowiki.com/w/TIAO_USB_Multi_Protocol_Adapter_Lite_User's_Manual
Felix Singerfbea0fe2025-02-17 21:50:08 +010099ATTRS{idVendor}=="0403", ATTRS{idProduct}=="8a99", MODE="660", GROUP="plugdev", TAG+="uaccess"
Nico Huber61dbe362024-11-01 15:02:44 +0100100
101# Winchiphead (WCH) CH341a based programmer
Felix Singerfbea0fe2025-02-17 21:50:08 +0100102ATTRS{idVendor}=="1a86", ATTRS{idProduct}=="5512", MODE="660", GROUP="plugdev", TAG+="uaccess"
Nico Huber61dbe362024-11-01 15:02:44 +0100103
104# Winchiphead (WCH) CH347T/F based programmers
Felix Singerfbea0fe2025-02-17 21:50:08 +0100105ATTRS{idVendor}=="1a86", ATTRS{idProduct}=="55db", MODE="660", GROUP="plugdev", TAG+="uaccess"
106ATTRS{idVendor}=="1a86", ATTRS{idProduct}=="55de", MODE="660", GROUP="plugdev", TAG+="uaccess"
Nico Huber61dbe362024-11-01 15:02:44 +0100107
108LABEL="flashprog_rules_end"