List of DMI IDs

From ThinkWiki
Revision as of 16:44, 24 July 2006 by Alfmatos (Talk | contribs) (DMI ID database)
Jump to: navigation, search

This page maintains a database of DMI information which can be used to identify ThinkPad models. It is intended as an aid for driver development.

DMI ID database

Model system-
manufa
cturer
system-
product-name
system-
version
baseboard-
manufa
cturer
baseboard-
product-name
baseboard-
version
chassis-
manufa
cturer
chassis-
version
bios-
vendor
bios-
version
bios-
release-
date
Embedded controller Notes
A series
A22p 2629-USG IBM 2629USG Not Available IBM 2629USG Not Available IBM Not Available IBM KYET36WW (1.09a) 10/17/2002 unknown
R series
R52 1846-AQG IBM 1846AQG ThinkPad H IBM 1846AQG Not Available IBM Not Available IBM 76ET58WW (1.18 ) 07/19/2005 String 1: IBM ThinkPad Embedded Controller -[76HT14WW-1.04 ]- Note the weird system-version
R52 1846-AQG IBM 1846AQG ThinkPad R52 IBM 1846AQG Not Available IBM Not Available IBM 76ET65WW (1.25 ) 05/18/2006 String 1: IBM ThinkPad Embedded Controller -[76HT16WW-1.06 ]-
R51 1829-9MG IBM 18299MG ThinkPad R51 IBM 18299MG Not Available IBM Not Available IBM 1RETDOWW (3.20 ) 02/ 27/2006 String 1: IBM ThinkPad Embedded Controller -[1RHT71WW-3.04 ]-
T series
T40 2378-D2U IBM 2378D2U ThinkPad T40 IBM 2378D2U Not Available IBM Not Available IBM 1RETC2WW (3.03 ) 04/07/2004
T41 23732FG IBM 23732FG ThinkPad T41 IBM 23732FG Not Available IBM Not Available IBM 1RET84WW (2.11 ) 10/30/2003
T43 2686-DGU IBM 2686DGU ThinkPad T43 IBM 2686DGU Not Available IBM Not Available IBM 1YET62WW (1.27 ) 05/18/2006 String 1: IBM ThinkPad Embedded Controller -[1YHT29WW-1.06 ]-
T60 2007-49G LENOVO 200749G ThinkPad T60 LENOVO 200749G Not Available LENOVO Not Available LENOVO 79ET62WW (1.07 ) 06/12/2006 String 1: IBM ThinkPad Embedded Controller -[79HT45WW-1.04 ]-
T60p 2007-83U LENOVO 200783U ThinkPad T60p LENOVO 200783U Not Available LENOVO Not Available LENOVO 79ET60WW (1.05a) 04/18/2006 String 1: IBM ThinkPad Embedded Controller -[79HT43WW-1.02 ]-
X series
X60 1709-47U LENOVO 170947U ThinkPad X60 LENOVO 170947U Not Available LENOVO Not Available LENOVO 7BET44WW (1.04 ) 03/13/2006 String 1: IBM ThinkPad Embedded Controller -[7BHT29WW-1.02 ]-
X60s 1702-55G LENOVO 170255G ThinkPad X60s LENOVO 170255G Not Available LENOVO Not Available LENOVO 7BET44WW (1.04 ) 03/13/2006 String 1: IBM ThinkPad Embedded Controller -[7BHT29WW-1.02 ]-
Z series
Z61m 9453-A11 LENOVO 9453A11 ThinkPad Z61m LENOVO 9453A11 Not Available LENOVO Not Available LENOVO 7FET48WW (1.08 ) 05/26/2006 String 1: IBM ThinkPad Embedded Controller -[7FHT21WW-1.03 ]-

Adding entries

Edit the DMI ID database section above. Identify your series (or add a new one), and add an entry of the following form:

!-
| description of your model
data line 1
data line 2

where the two data lines are genereated by the following bash command:

for X in system-{manufacturer,product-name,version} \
  baseboard-{manufacturer,product-name,version} \
  chassis-{manufacturer,version} bios-{vendor,version,release-date}; do \
  echo -n "|| `sudo /usr/sbin/dmidecode -s $X` "; done; echo; \
  echo "|| <nowiki>`sudo /usr/sbin/dmidecode | grep -i 'embedded controller'`</nowiki> ||"

Software using ThinkPad DMI IDs