diff options
| author | Andriy Gapon <avg@FreeBSD.org> | 2017-06-23 11:55:43 +0000 |
|---|---|---|
| committer | Andriy Gapon <avg@FreeBSD.org> | 2017-06-23 11:55:43 +0000 |
| commit | 103f3b6099e3abefa35d87b0b39b658e389fffd6 (patch) | |
| tree | 2a75af6aa3770b31be03f95e536099255ffa1e50 /sys/dev/jedec_ts | |
| parent | 4b3608066827c311d4c4c85995b38ae097b008e0 (diff) | |
Notes
Diffstat (limited to 'sys/dev/jedec_ts')
| -rw-r--r-- | sys/dev/jedec_ts/jedec_ts.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/sys/dev/jedec_ts/jedec_ts.c b/sys/dev/jedec_ts/jedec_ts.c index c8d13796d4fb..4c065eb87c54 100644 --- a/sys/dev/jedec_ts/jedec_ts.c +++ b/sys/dev/jedec_ts/jedec_ts.c @@ -131,6 +131,13 @@ ts_attach(device_t dev) * E.g. STT424E02, Doc ID 13448 Rev 8, * section 4.6, page 26. */ + } else if (vendorid == 0xb3 && (devid & 0xff00) == 0x2900) { + /* + * IDT TS3000B3A and TSE2002B3C chips and their variants. + * Revision IDs (the lower byte) can vary. + * http://www.idt.com/sites/default/files/documents/IDT_TSE2002B3C_DST_20100512_120303152056.pdf + * http://www.idt.com/sites/default/files/documents/IDT_TS3000B3A_DST_20101129_120303152013.pdf + */ } else { if (bootverbose) { device_printf(dev, "Unknown Manufacturer and Device IDs" |
