<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://www.thinkwiki.org/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Mdz</id>
	<title>ThinkWiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://www.thinkwiki.org/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Mdz"/>
	<link rel="alternate" type="text/html" href="https://www.thinkwiki.org/wiki/Special:Contributions/Mdz"/>
	<updated>2026-05-03T10:21:05Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.31.12</generator>
	<entry>
		<id>https://www.thinkwiki.org/w/index.php?title=Sierra_Wireless_HSDPA_WWAN&amp;diff=38627</id>
		<title>Sierra Wireless HSDPA WWAN</title>
		<link rel="alternate" type="text/html" href="https://www.thinkwiki.org/w/index.php?title=Sierra_Wireless_HSDPA_WWAN&amp;diff=38627"/>
		<updated>2008-08-17T10:41:00Z</updated>

		<summary type="html">&lt;p&gt;Mdz: /* Unlocking the modem */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;North American ThinkPads have the Sierra Wireless MC8765 card.&lt;br /&gt;
European ThinkPads have the Sierra Wireless MC8755 card.&lt;br /&gt;
&lt;br /&gt;
The only difference between the two is the frequency at which they support WCDMA. The MC8765 supports WCDMA800 and WCDMA1900, while the MC8755 supports only WCDMA2100.&lt;br /&gt;
&lt;br /&gt;
Both models support GPRS and EDGE at 850, 900, 1800, and 1900MHz.&lt;br /&gt;
&lt;br /&gt;
Both models are category 11/12 UMTS devices, meaning they support up to 1.8Mbps downstream using QPSK modulation. They do not support 16QAM modulation.&lt;br /&gt;
&lt;br /&gt;
According to the T61 hardware maintenance manual, the T61 uses the MC8775, which is quad band EDGE (850/900/1800/1900) and tri band HSDPA (850/1900/2100).&lt;br /&gt;
&lt;br /&gt;
=== Sierra Wireless MC8765 1199:6805 support ===&lt;br /&gt;
&lt;br /&gt;
The model 2613-ETU T60p (and possibly others) has one of these cards which the linux &amp;lt;tt&amp;gt;sierra&amp;lt;/tt&amp;gt; device driver does not automatically recognize (as of kernel 2.6.24.4, at least).  While it's the same device in every other respect the PCI id isn't standard, presumably because IBM/Lenovo use their own PCI ids to restrict the use of arbitrary 3rd party cards.  Using the 2.6.23+ hotplug infrastructure, we can cause the driver to claim it anyway and register serial devices in &amp;lt;tt&amp;gt;/dev&amp;lt;/tt&amp;gt; for it.&lt;br /&gt;
&lt;br /&gt;
To do this using the '''udev''' subsystem, edit or create the file &amp;lt;tt&amp;gt;/etc/udev/rules.d/98-local.rules&amp;lt;/tt&amp;gt; file and add:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&amp;lt;pre&amp;gt;######&lt;br /&gt;
## Sierra Wireless MC8765 1199:6805 support&lt;br /&gt;
##&lt;br /&gt;
## My model 2613-ETU T60p contains a WAN device which the linux sierra&lt;br /&gt;
## device driver does not automatically recognize.  Using the 2.6.23+&lt;br /&gt;
## hotplug infrastructure, we can cause the driver to claim it.&lt;br /&gt;
##&lt;br /&gt;
## The 3-port interface works with this device, but there's not much point&lt;br /&gt;
## in registering the 2nd and 3rd since they are used for control purposes&lt;br /&gt;
## that we don't currently use under linux.&lt;br /&gt;
######&lt;br /&gt;
&lt;br /&gt;
#SUBSYSTEM==&amp;quot;drivers&amp;quot;, \&lt;br /&gt;
#	ACTION==&amp;quot;add&amp;quot;, \&lt;br /&gt;
#	ENV{DEVPATH}==&amp;quot;/bus/usb-serial/drivers/sierra3&amp;quot;, \&lt;br /&gt;
#	RUN+=&amp;quot;/bin/sh -c 'echo 1199 6805  &amp;gt; /sys/bus/usb-serial/drivers/sierra3/new_id'&amp;quot;&lt;br /&gt;
&lt;br /&gt;
SUBSYSTEM==&amp;quot;drivers&amp;quot;, \&lt;br /&gt;
	ACTION==&amp;quot;add&amp;quot;, \&lt;br /&gt;
	ENV{DEVPATH}==&amp;quot;/bus/usb-serial/drivers/sierra1&amp;quot;, \&lt;br /&gt;
	RUN+=&amp;quot;/bin/sh -c 'echo 1199 6805  &amp;gt; /sys/bus/usb-serial/drivers/sierra1/new_id'&amp;quot;&lt;br /&gt;
&lt;br /&gt;
# TODO: fix this:&lt;br /&gt;
# This isn't quite right for sierra3, since it will always symlink&lt;br /&gt;
# wan_modem to the last created device; in the 3-port case that's not the&lt;br /&gt;
# device we actually want to refer to for modem interaction (we want the&lt;br /&gt;
# first device).  We could limit this using ENV{PHYSDEVDRIVER}=&amp;quot;sierra1&amp;quot;,&lt;br /&gt;
# but udev warns that this is deprecated and will be removed from a future&lt;br /&gt;
# kernel.&lt;br /&gt;
KERNEL==&amp;quot;ttyUSB*&amp;quot;, \&lt;br /&gt;
	SYSFS{manufacturer}==&amp;quot;Sierra Wireless*&amp;quot;, \&lt;br /&gt;
	SYMLINK+=&amp;quot;wan_modem&amp;quot;, \&lt;br /&gt;
	GROUP=&amp;quot;uucp&amp;quot;, \&lt;br /&gt;
	MODE=&amp;quot;0666&amp;quot;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Further configuration ==&lt;br /&gt;
&lt;br /&gt;
Some further information on using this device with Linux can be found at https://wiki.ubuntu.com/SierraMC8775&lt;/div&gt;</summary>
		<author><name>Mdz</name></author>
		
	</entry>
	<entry>
		<id>https://www.thinkwiki.org/w/index.php?title=Sierra_Wireless_HSDPA_WWAN&amp;diff=38538</id>
		<title>Sierra Wireless HSDPA WWAN</title>
		<link rel="alternate" type="text/html" href="https://www.thinkwiki.org/w/index.php?title=Sierra_Wireless_HSDPA_WWAN&amp;diff=38538"/>
		<updated>2008-08-13T12:17:30Z</updated>

		<summary type="html">&lt;p&gt;Mdz: remove duplicate info&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;North American ThinkPads have the Sierra Wireless MC8765 card.&lt;br /&gt;
European ThinkPads have the Sierra Wireless MC8755 card.&lt;br /&gt;
&lt;br /&gt;
The only difference between the two is the frequency at which they support WCDMA. The MC8765 supports WCDMA800 and WCDMA1900, while the MC8755 supports only WCDMA2100.&lt;br /&gt;
&lt;br /&gt;
Both models support GPRS and EDGE at 850, 900, 1800, and 1900MHz.&lt;br /&gt;
&lt;br /&gt;
Both models are category 11/12 UMTS devices, meaning they support up to 1.8Mbps downstream using QPSK modulation. They do not support 16QAM modulation.&lt;br /&gt;
&lt;br /&gt;
According to the T61 hardware maintenance manual, the T61 uses the MC8775, which is quad band EDGE (850/900/1800/1900) and tri band HSDPA (850/1900/2100).&lt;br /&gt;
&lt;br /&gt;
=== Sierra Wireless MC8765 1199:6805 support ===&lt;br /&gt;
&lt;br /&gt;
The model 2613-ETU T60p (and possibly others) has one of these cards which the linux &amp;lt;tt&amp;gt;sierra&amp;lt;/tt&amp;gt; device driver does not automatically recognize (as of kernel 2.6.24.4, at least).  While it's the same device in every other respect the PCI id isn't standard, presumably because IBM/Lenovo use their own PCI ids to restrict the use of arbitrary 3rd party cards.  Using the 2.6.23+ hotplug infrastructure, we can cause the driver to claim it anyway and register serial devices in &amp;lt;tt&amp;gt;/dev&amp;lt;/tt&amp;gt; for it.&lt;br /&gt;
&lt;br /&gt;
To do this using the '''udev''' subsystem, edit or create the file &amp;lt;tt&amp;gt;/etc/udev/rules.d/98-local.rules&amp;lt;/tt&amp;gt; file and add:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&amp;lt;pre&amp;gt;######&lt;br /&gt;
## Sierra Wireless MC8765 1199:6805 support&lt;br /&gt;
##&lt;br /&gt;
## My model 2613-ETU T60p contains a WAN device which the linux sierra&lt;br /&gt;
## device driver does not automatically recognize.  Using the 2.6.23+&lt;br /&gt;
## hotplug infrastructure, we can cause the driver to claim it.&lt;br /&gt;
##&lt;br /&gt;
## The 3-port interface works with this device, but there's not much point&lt;br /&gt;
## in registering the 2nd and 3rd since they are used for control purposes&lt;br /&gt;
## that we don't currently use under linux.&lt;br /&gt;
######&lt;br /&gt;
&lt;br /&gt;
#SUBSYSTEM==&amp;quot;drivers&amp;quot;, \&lt;br /&gt;
#	ACTION==&amp;quot;add&amp;quot;, \&lt;br /&gt;
#	ENV{DEVPATH}==&amp;quot;/bus/usb-serial/drivers/sierra3&amp;quot;, \&lt;br /&gt;
#	RUN+=&amp;quot;/bin/sh -c 'echo 1199 6805  &amp;gt; /sys/bus/usb-serial/drivers/sierra3/new_id'&amp;quot;&lt;br /&gt;
&lt;br /&gt;
SUBSYSTEM==&amp;quot;drivers&amp;quot;, \&lt;br /&gt;
	ACTION==&amp;quot;add&amp;quot;, \&lt;br /&gt;
	ENV{DEVPATH}==&amp;quot;/bus/usb-serial/drivers/sierra1&amp;quot;, \&lt;br /&gt;
	RUN+=&amp;quot;/bin/sh -c 'echo 1199 6805  &amp;gt; /sys/bus/usb-serial/drivers/sierra1/new_id'&amp;quot;&lt;br /&gt;
&lt;br /&gt;
# TODO: fix this:&lt;br /&gt;
# This isn't quite right for sierra3, since it will always symlink&lt;br /&gt;
# wan_modem to the last created device; in the 3-port case that's not the&lt;br /&gt;
# device we actually want to refer to for modem interaction (we want the&lt;br /&gt;
# first device).  We could limit this using ENV{PHYSDEVDRIVER}=&amp;quot;sierra1&amp;quot;,&lt;br /&gt;
# but udev warns that this is deprecated and will be removed from a future&lt;br /&gt;
# kernel.&lt;br /&gt;
KERNEL==&amp;quot;ttyUSB*&amp;quot;, \&lt;br /&gt;
	SYSFS{manufacturer}==&amp;quot;Sierra Wireless*&amp;quot;, \&lt;br /&gt;
	SYMLINK+=&amp;quot;wan_modem&amp;quot;, \&lt;br /&gt;
	GROUP=&amp;quot;uucp&amp;quot;, \&lt;br /&gt;
	MODE=&amp;quot;0666&amp;quot;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Unlocking the modem ==&lt;br /&gt;
&lt;br /&gt;
A locked modem will respond as follows:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&amp;lt;pre&amp;gt;&lt;br /&gt;
AT+CPIN?&lt;br /&gt;
+CPIN: PH-NET PIN&lt;br /&gt;
OK&lt;br /&gt;
&amp;lt;/pre&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
IBM support (first try) has told me that they cannot give me an unlock code.  This forum thread claims that third-party unlocking software works: http://forums.lenovo.com/lnv/board/message?board.id=T_Series_Thinkpads&amp;amp;message.id=1523&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[User:Mdz|Mdz]] 14:19, 6 August 2008 (CEST)&lt;/div&gt;</summary>
		<author><name>Mdz</name></author>
		
	</entry>
	<entry>
		<id>https://www.thinkwiki.org/w/index.php?title=Sierra_Wireless_HSDPA_WWAN&amp;diff=38463</id>
		<title>Sierra Wireless HSDPA WWAN</title>
		<link rel="alternate" type="text/html" href="https://www.thinkwiki.org/w/index.php?title=Sierra_Wireless_HSDPA_WWAN&amp;diff=38463"/>
		<updated>2008-08-06T13:16:03Z</updated>

		<summary type="html">&lt;p&gt;Mdz: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;North American ThinkPads have the Sierra Wireless MC8765 card.&lt;br /&gt;
European ThinkPads have the Sierra Wireless MC8755 card.&lt;br /&gt;
&lt;br /&gt;
The only difference between the two is the frequency at which they support WCDMA. The MC8765 supports WCDMA800 and WCDMA1900, while the MC8755 supports only WCDMA2100.&lt;br /&gt;
&lt;br /&gt;
Both models support GPRS and EDGE at 850, 900, 1800, and 1900MHz.&lt;br /&gt;
&lt;br /&gt;
Both models are category 11/12 UMTS devices, meaning they support up to 1.8Mbps downstream using QPSK modulation. They do not support 16QAM modulation.&lt;br /&gt;
&lt;br /&gt;
According to the T61 hardware maintenance manual, the T61 uses the MC8775, which is quad band EDGE (850/900/1800/1900) and tri band HSDPA (850/1900/2100).&lt;br /&gt;
&lt;br /&gt;
=== Sierra Wireless MC8765 1199:6805 support ===&lt;br /&gt;
&lt;br /&gt;
The model 2613-ETU T60p (and possibly others) has one of these cards which the linux &amp;lt;tt&amp;gt;sierra&amp;lt;/tt&amp;gt; device driver does not automatically recognize (as of kernel 2.6.24.4, at least).  While it's the same device in every other respect the PCI id isn't standard, presumably because IBM/Lenovo use their own PCI ids to restrict the use of arbitrary 3rd party cards.  Using the 2.6.23+ hotplug infrastructure, we can cause the driver to claim it anyway and register serial devices in &amp;lt;tt&amp;gt;/dev&amp;lt;/tt&amp;gt; for it.&lt;br /&gt;
&lt;br /&gt;
To do this using the '''udev''' subsystem, edit or create the file &amp;lt;tt&amp;gt;/etc/udev/rules.d/98-local.rules&amp;lt;/tt&amp;gt; file and add:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&amp;lt;pre&amp;gt;######&lt;br /&gt;
## Sierra Wireless MC8765 1199:6805 support&lt;br /&gt;
##&lt;br /&gt;
## My model 2613-ETU T60p contains a WAN device which the linux sierra&lt;br /&gt;
## device driver does not automatically recognize.  Using the 2.6.23+&lt;br /&gt;
## hotplug infrastructure, we can cause the driver to claim it.&lt;br /&gt;
##&lt;br /&gt;
## The 3-port interface works with this device, but there's not much point&lt;br /&gt;
## in registering the 2nd and 3rd since they are used for control purposes&lt;br /&gt;
## that we don't currently use under linux.&lt;br /&gt;
######&lt;br /&gt;
&lt;br /&gt;
#SUBSYSTEM==&amp;quot;drivers&amp;quot;, \&lt;br /&gt;
#	ACTION==&amp;quot;add&amp;quot;, \&lt;br /&gt;
#	ENV{DEVPATH}==&amp;quot;/bus/usb-serial/drivers/sierra3&amp;quot;, \&lt;br /&gt;
#	RUN+=&amp;quot;/bin/sh -c 'echo 1199 6805  &amp;gt; /sys/bus/usb-serial/drivers/sierra3/new_id'&amp;quot;&lt;br /&gt;
&lt;br /&gt;
SUBSYSTEM==&amp;quot;drivers&amp;quot;, \&lt;br /&gt;
	ACTION==&amp;quot;add&amp;quot;, \&lt;br /&gt;
	ENV{DEVPATH}==&amp;quot;/bus/usb-serial/drivers/sierra1&amp;quot;, \&lt;br /&gt;
	RUN+=&amp;quot;/bin/sh -c 'echo 1199 6805  &amp;gt; /sys/bus/usb-serial/drivers/sierra1/new_id'&amp;quot;&lt;br /&gt;
&lt;br /&gt;
# TODO: fix this:&lt;br /&gt;
# This isn't quite right for sierra3, since it will always symlink&lt;br /&gt;
# wan_modem to the last created device; in the 3-port case that's not the&lt;br /&gt;
# device we actually want to refer to for modem interaction (we want the&lt;br /&gt;
# first device).  We could limit this using ENV{PHYSDEVDRIVER}=&amp;quot;sierra1&amp;quot;,&lt;br /&gt;
# but udev warns that this is deprecated and will be removed from a future&lt;br /&gt;
# kernel.&lt;br /&gt;
KERNEL==&amp;quot;ttyUSB*&amp;quot;, \&lt;br /&gt;
	SYSFS{manufacturer}==&amp;quot;Sierra Wireless*&amp;quot;, \&lt;br /&gt;
	SYMLINK+=&amp;quot;wan_modem&amp;quot;, \&lt;br /&gt;
	GROUP=&amp;quot;uucp&amp;quot;, \&lt;br /&gt;
	MODE=&amp;quot;0666&amp;quot;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Sierra Wireless MC8775 1199:6813 Support ==&lt;br /&gt;
&lt;br /&gt;
Some T61 units include the MC8775 model instead:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&amp;lt;pre&amp;gt;&lt;br /&gt;
Bus 006 Device 002: ID 1199:6813 Sierra Wireless, Inc. &lt;br /&gt;
&amp;lt;/pre&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This seems to work similarly (claimed by usbserial/sierra), but so far, I haven't been able to get it working as it appears to be locked.&lt;br /&gt;
&lt;br /&gt;
== Unlocking the modem ==&lt;br /&gt;
&lt;br /&gt;
A locked modem will respond as follows:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&amp;lt;pre&amp;gt;&lt;br /&gt;
AT+CPIN?&lt;br /&gt;
+CPIN: PH-NET PIN&lt;br /&gt;
OK&lt;br /&gt;
&amp;lt;/pre&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
IBM support (first try) has told me that they cannot give me an unlock code.  This forum thread claims that third-party unlocking software works: http://forums.lenovo.com/lnv/board/message?board.id=T_Series_Thinkpads&amp;amp;message.id=1523&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[User:Mdz|Mdz]] 14:19, 6 August 2008 (CEST)&lt;/div&gt;</summary>
		<author><name>Mdz</name></author>
		
	</entry>
	<entry>
		<id>https://www.thinkwiki.org/w/index.php?title=Sierra_Wireless_HSDPA_WWAN&amp;diff=38462</id>
		<title>Sierra Wireless HSDPA WWAN</title>
		<link rel="alternate" type="text/html" href="https://www.thinkwiki.org/w/index.php?title=Sierra_Wireless_HSDPA_WWAN&amp;diff=38462"/>
		<updated>2008-08-06T13:15:16Z</updated>

		<summary type="html">&lt;p&gt;Mdz: add info on locked modems&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;North American ThinkPads have the Sierra Wireless MC8765 card.&lt;br /&gt;
European ThinkPads have the Sierra Wireless MC8755 card.&lt;br /&gt;
&lt;br /&gt;
The only difference between the two is the frequency at which they support WCDMA. The MC8765 supports WCDMA800 and WCDMA1900, while the MC8755 supports only WCDMA2100.&lt;br /&gt;
&lt;br /&gt;
Both models support GPRS and EDGE at 850, 900, 1800, and 1900MHz.&lt;br /&gt;
&lt;br /&gt;
Both models are category 11/12 UMTS devices, meaning they support up to 1.8Mbps downstream using QPSK modulation. They do not support 16QAM modulation.&lt;br /&gt;
&lt;br /&gt;
According to the T61 hardware maintenance manual, the T61 uses the MC8775, which is quad band EDGE (850/900/1800/1900) and tri band HSDPA (850/1900/2100).&lt;br /&gt;
&lt;br /&gt;
=== Sierra Wireless MC8765 1199:6805 support ===&lt;br /&gt;
&lt;br /&gt;
The model 2613-ETU T60p (and possibly others) has one of these cards which the linux &amp;lt;tt&amp;gt;sierra&amp;lt;/tt&amp;gt; device driver does not automatically recognize (as of kernel 2.6.24.4, at least).  While it's the same device in every other respect the PCI id isn't standard, presumably because IBM/Lenovo use their own PCI ids to restrict the use of arbitrary 3rd party cards.  Using the 2.6.23+ hotplug infrastructure, we can cause the driver to claim it anyway and register serial devices in &amp;lt;tt&amp;gt;/dev&amp;lt;/tt&amp;gt; for it.&lt;br /&gt;
&lt;br /&gt;
To do this using the '''udev''' subsystem, edit or create the file &amp;lt;tt&amp;gt;/etc/udev/rules.d/98-local.rules&amp;lt;/tt&amp;gt; file and add:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&amp;lt;pre&amp;gt;######&lt;br /&gt;
## Sierra Wireless MC8765 1199:6805 support&lt;br /&gt;
##&lt;br /&gt;
## My model 2613-ETU T60p contains a WAN device which the linux sierra&lt;br /&gt;
## device driver does not automatically recognize.  Using the 2.6.23+&lt;br /&gt;
## hotplug infrastructure, we can cause the driver to claim it.&lt;br /&gt;
##&lt;br /&gt;
## The 3-port interface works with this device, but there's not much point&lt;br /&gt;
## in registering the 2nd and 3rd since they are used for control purposes&lt;br /&gt;
## that we don't currently use under linux.&lt;br /&gt;
######&lt;br /&gt;
&lt;br /&gt;
#SUBSYSTEM==&amp;quot;drivers&amp;quot;, \&lt;br /&gt;
#	ACTION==&amp;quot;add&amp;quot;, \&lt;br /&gt;
#	ENV{DEVPATH}==&amp;quot;/bus/usb-serial/drivers/sierra3&amp;quot;, \&lt;br /&gt;
#	RUN+=&amp;quot;/bin/sh -c 'echo 1199 6805  &amp;gt; /sys/bus/usb-serial/drivers/sierra3/new_id'&amp;quot;&lt;br /&gt;
&lt;br /&gt;
SUBSYSTEM==&amp;quot;drivers&amp;quot;, \&lt;br /&gt;
	ACTION==&amp;quot;add&amp;quot;, \&lt;br /&gt;
	ENV{DEVPATH}==&amp;quot;/bus/usb-serial/drivers/sierra1&amp;quot;, \&lt;br /&gt;
	RUN+=&amp;quot;/bin/sh -c 'echo 1199 6805  &amp;gt; /sys/bus/usb-serial/drivers/sierra1/new_id'&amp;quot;&lt;br /&gt;
&lt;br /&gt;
# TODO: fix this:&lt;br /&gt;
# This isn't quite right for sierra3, since it will always symlink&lt;br /&gt;
# wan_modem to the last created device; in the 3-port case that's not the&lt;br /&gt;
# device we actually want to refer to for modem interaction (we want the&lt;br /&gt;
# first device).  We could limit this using ENV{PHYSDEVDRIVER}=&amp;quot;sierra1&amp;quot;,&lt;br /&gt;
# but udev warns that this is deprecated and will be removed from a future&lt;br /&gt;
# kernel.&lt;br /&gt;
KERNEL==&amp;quot;ttyUSB*&amp;quot;, \&lt;br /&gt;
	SYSFS{manufacturer}==&amp;quot;Sierra Wireless*&amp;quot;, \&lt;br /&gt;
	SYMLINK+=&amp;quot;wan_modem&amp;quot;, \&lt;br /&gt;
	GROUP=&amp;quot;uucp&amp;quot;, \&lt;br /&gt;
	MODE=&amp;quot;0666&amp;quot;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Sierra Wireless MC8775 1199:6813 Support ==&lt;br /&gt;
&lt;br /&gt;
Some T61 units include the MC8775 model instead:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&amp;lt;pre&amp;gt;&lt;br /&gt;
Bus 006 Device 002: ID 1199:6813 Sierra Wireless, Inc. &lt;br /&gt;
&amp;lt;/pre&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This seems to work similarly (detects as a USB serial device), but so far, I haven't been able to get it working as it appears to be locked.&lt;br /&gt;
&lt;br /&gt;
== Unlocking the modem ==&lt;br /&gt;
&lt;br /&gt;
A locked modem will respond as follows:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&amp;lt;pre&amp;gt;&lt;br /&gt;
AT+CPIN?&lt;br /&gt;
+CPIN: PH-NET PIN&lt;br /&gt;
OK&lt;br /&gt;
&amp;lt;/pre&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
IBM support (first try) has told me that they cannot give me an unlock code.  This forum thread claims that third-party unlocking software works: http://forums.lenovo.com/lnv/board/message?board.id=T_Series_Thinkpads&amp;amp;message.id=1523&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[User:Mdz|Mdz]] 14:19, 6 August 2008 (CEST)&lt;/div&gt;</summary>
		<author><name>Mdz</name></author>
		
	</entry>
	<entry>
		<id>https://www.thinkwiki.org/w/index.php?title=Sierra_Wireless_HSDPA_WWAN&amp;diff=38461</id>
		<title>Sierra Wireless HSDPA WWAN</title>
		<link rel="alternate" type="text/html" href="https://www.thinkwiki.org/w/index.php?title=Sierra_Wireless_HSDPA_WWAN&amp;diff=38461"/>
		<updated>2008-08-06T12:23:55Z</updated>

		<summary type="html">&lt;p&gt;Mdz: /* Sierra Wireless MC8775 1199:6813 Support */ theory for PH-NET PIN&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;North American ThinkPads have the Sierra Wireless MC8765 card.&lt;br /&gt;
European ThinkPads have the Sierra Wireless MC8755 card.&lt;br /&gt;
&lt;br /&gt;
The only difference between the two is the frequency at which they support WCDMA. The MC8765 supports WCDMA800 and WCDMA1900, while the MC8755 supports only WCDMA2100.&lt;br /&gt;
&lt;br /&gt;
Both models support GPRS and EDGE at 850, 900, 1800, and 1900MHz.&lt;br /&gt;
&lt;br /&gt;
Both models are category 11/12 UMTS devices, meaning they support up to 1.8Mbps downstream using QPSK modulation. They do not support 16QAM modulation.&lt;br /&gt;
&lt;br /&gt;
According to the T61 hardware maintenance manual, the T61 uses the MC8775, which is quad band EDGE (850/900/1800/1900) and tri band HSDPA (850/1900/2100).&lt;br /&gt;
&lt;br /&gt;
=== Sierra Wireless MC8765 1199:6805 support ===&lt;br /&gt;
&lt;br /&gt;
The model 2613-ETU T60p (and possibly others) has one of these cards which the linux &amp;lt;tt&amp;gt;sierra&amp;lt;/tt&amp;gt; device driver does not automatically recognize (as of kernel 2.6.24.4, at least).  While it's the same device in every other respect the PCI id isn't standard, presumably because IBM/Lenovo use their own PCI ids to restrict the use of arbitrary 3rd party cards.  Using the 2.6.23+ hotplug infrastructure, we can cause the driver to claim it anyway and register serial devices in &amp;lt;tt&amp;gt;/dev&amp;lt;/tt&amp;gt; for it.&lt;br /&gt;
&lt;br /&gt;
To do this using the '''udev''' subsystem, edit or create the file &amp;lt;tt&amp;gt;/etc/udev/rules.d/98-local.rules&amp;lt;/tt&amp;gt; file and add:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&amp;lt;pre&amp;gt;######&lt;br /&gt;
## Sierra Wireless MC8765 1199:6805 support&lt;br /&gt;
##&lt;br /&gt;
## My model 2613-ETU T60p contains a WAN device which the linux sierra&lt;br /&gt;
## device driver does not automatically recognize.  Using the 2.6.23+&lt;br /&gt;
## hotplug infrastructure, we can cause the driver to claim it.&lt;br /&gt;
##&lt;br /&gt;
## The 3-port interface works with this device, but there's not much point&lt;br /&gt;
## in registering the 2nd and 3rd since they are used for control purposes&lt;br /&gt;
## that we don't currently use under linux.&lt;br /&gt;
######&lt;br /&gt;
&lt;br /&gt;
#SUBSYSTEM==&amp;quot;drivers&amp;quot;, \&lt;br /&gt;
#	ACTION==&amp;quot;add&amp;quot;, \&lt;br /&gt;
#	ENV{DEVPATH}==&amp;quot;/bus/usb-serial/drivers/sierra3&amp;quot;, \&lt;br /&gt;
#	RUN+=&amp;quot;/bin/sh -c 'echo 1199 6805  &amp;gt; /sys/bus/usb-serial/drivers/sierra3/new_id'&amp;quot;&lt;br /&gt;
&lt;br /&gt;
SUBSYSTEM==&amp;quot;drivers&amp;quot;, \&lt;br /&gt;
	ACTION==&amp;quot;add&amp;quot;, \&lt;br /&gt;
	ENV{DEVPATH}==&amp;quot;/bus/usb-serial/drivers/sierra1&amp;quot;, \&lt;br /&gt;
	RUN+=&amp;quot;/bin/sh -c 'echo 1199 6805  &amp;gt; /sys/bus/usb-serial/drivers/sierra1/new_id'&amp;quot;&lt;br /&gt;
&lt;br /&gt;
# TODO: fix this:&lt;br /&gt;
# This isn't quite right for sierra3, since it will always symlink&lt;br /&gt;
# wan_modem to the last created device; in the 3-port case that's not the&lt;br /&gt;
# device we actually want to refer to for modem interaction (we want the&lt;br /&gt;
# first device).  We could limit this using ENV{PHYSDEVDRIVER}=&amp;quot;sierra1&amp;quot;,&lt;br /&gt;
# but udev warns that this is deprecated and will be removed from a future&lt;br /&gt;
# kernel.&lt;br /&gt;
KERNEL==&amp;quot;ttyUSB*&amp;quot;, \&lt;br /&gt;
	SYSFS{manufacturer}==&amp;quot;Sierra Wireless*&amp;quot;, \&lt;br /&gt;
	SYMLINK+=&amp;quot;wan_modem&amp;quot;, \&lt;br /&gt;
	GROUP=&amp;quot;uucp&amp;quot;, \&lt;br /&gt;
	MODE=&amp;quot;0666&amp;quot;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Sierra Wireless MC8775 1199:6813 Support ==&lt;br /&gt;
&lt;br /&gt;
Some T61 units include the MC8775 model instead:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&amp;lt;pre&amp;gt;&lt;br /&gt;
Bus 006 Device 002: ID 1199:6813 Sierra Wireless, Inc. &lt;br /&gt;
&amp;lt;/pre&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
So far, I haven't been able to get this working:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&amp;lt;pre&amp;gt;&lt;br /&gt;
at^M&lt;br /&gt;
OK&lt;br /&gt;
at+cpin?^M&lt;br /&gt;
+CPIN: PH-NET PIN&lt;br /&gt;
&lt;br /&gt;
OK&lt;br /&gt;
&amp;lt;/pre&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Normally, I think the response would be &amp;lt;code&amp;gt;SIM PIN&amp;lt;/code&amp;gt;.  I think &amp;lt;code&amp;gt;PH-NET PIN&amp;lt;/code&amp;gt; indicates a network lock.&lt;br /&gt;
&lt;br /&gt;
[[User:Mdz|Mdz]] 14:19, 6 August 2008 (CEST)&lt;/div&gt;</summary>
		<author><name>Mdz</name></author>
		
	</entry>
	<entry>
		<id>https://www.thinkwiki.org/w/index.php?title=Sierra_Wireless_HSDPA_WWAN&amp;diff=38460</id>
		<title>Sierra Wireless HSDPA WWAN</title>
		<link rel="alternate" type="text/html" href="https://www.thinkwiki.org/w/index.php?title=Sierra_Wireless_HSDPA_WWAN&amp;diff=38460"/>
		<updated>2008-08-06T12:19:20Z</updated>

		<summary type="html">&lt;p&gt;Mdz: add MC8775 info&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;North American ThinkPads have the Sierra Wireless MC8765 card.&lt;br /&gt;
European ThinkPads have the Sierra Wireless MC8755 card.&lt;br /&gt;
&lt;br /&gt;
The only difference between the two is the frequency at which they support WCDMA. The MC8765 supports WCDMA800 and WCDMA1900, while the MC8755 supports only WCDMA2100.&lt;br /&gt;
&lt;br /&gt;
Both models support GPRS and EDGE at 850, 900, 1800, and 1900MHz.&lt;br /&gt;
&lt;br /&gt;
Both models are category 11/12 UMTS devices, meaning they support up to 1.8Mbps downstream using QPSK modulation. They do not support 16QAM modulation.&lt;br /&gt;
&lt;br /&gt;
According to the T61 hardware maintenance manual, the T61 uses the MC8775, which is quad band EDGE (850/900/1800/1900) and tri band HSDPA (850/1900/2100).&lt;br /&gt;
&lt;br /&gt;
=== Sierra Wireless MC8765 1199:6805 support ===&lt;br /&gt;
&lt;br /&gt;
The model 2613-ETU T60p (and possibly others) has one of these cards which the linux &amp;lt;tt&amp;gt;sierra&amp;lt;/tt&amp;gt; device driver does not automatically recognize (as of kernel 2.6.24.4, at least).  While it's the same device in every other respect the PCI id isn't standard, presumably because IBM/Lenovo use their own PCI ids to restrict the use of arbitrary 3rd party cards.  Using the 2.6.23+ hotplug infrastructure, we can cause the driver to claim it anyway and register serial devices in &amp;lt;tt&amp;gt;/dev&amp;lt;/tt&amp;gt; for it.&lt;br /&gt;
&lt;br /&gt;
To do this using the '''udev''' subsystem, edit or create the file &amp;lt;tt&amp;gt;/etc/udev/rules.d/98-local.rules&amp;lt;/tt&amp;gt; file and add:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&amp;lt;pre&amp;gt;######&lt;br /&gt;
## Sierra Wireless MC8765 1199:6805 support&lt;br /&gt;
##&lt;br /&gt;
## My model 2613-ETU T60p contains a WAN device which the linux sierra&lt;br /&gt;
## device driver does not automatically recognize.  Using the 2.6.23+&lt;br /&gt;
## hotplug infrastructure, we can cause the driver to claim it.&lt;br /&gt;
##&lt;br /&gt;
## The 3-port interface works with this device, but there's not much point&lt;br /&gt;
## in registering the 2nd and 3rd since they are used for control purposes&lt;br /&gt;
## that we don't currently use under linux.&lt;br /&gt;
######&lt;br /&gt;
&lt;br /&gt;
#SUBSYSTEM==&amp;quot;drivers&amp;quot;, \&lt;br /&gt;
#	ACTION==&amp;quot;add&amp;quot;, \&lt;br /&gt;
#	ENV{DEVPATH}==&amp;quot;/bus/usb-serial/drivers/sierra3&amp;quot;, \&lt;br /&gt;
#	RUN+=&amp;quot;/bin/sh -c 'echo 1199 6805  &amp;gt; /sys/bus/usb-serial/drivers/sierra3/new_id'&amp;quot;&lt;br /&gt;
&lt;br /&gt;
SUBSYSTEM==&amp;quot;drivers&amp;quot;, \&lt;br /&gt;
	ACTION==&amp;quot;add&amp;quot;, \&lt;br /&gt;
	ENV{DEVPATH}==&amp;quot;/bus/usb-serial/drivers/sierra1&amp;quot;, \&lt;br /&gt;
	RUN+=&amp;quot;/bin/sh -c 'echo 1199 6805  &amp;gt; /sys/bus/usb-serial/drivers/sierra1/new_id'&amp;quot;&lt;br /&gt;
&lt;br /&gt;
# TODO: fix this:&lt;br /&gt;
# This isn't quite right for sierra3, since it will always symlink&lt;br /&gt;
# wan_modem to the last created device; in the 3-port case that's not the&lt;br /&gt;
# device we actually want to refer to for modem interaction (we want the&lt;br /&gt;
# first device).  We could limit this using ENV{PHYSDEVDRIVER}=&amp;quot;sierra1&amp;quot;,&lt;br /&gt;
# but udev warns that this is deprecated and will be removed from a future&lt;br /&gt;
# kernel.&lt;br /&gt;
KERNEL==&amp;quot;ttyUSB*&amp;quot;, \&lt;br /&gt;
	SYSFS{manufacturer}==&amp;quot;Sierra Wireless*&amp;quot;, \&lt;br /&gt;
	SYMLINK+=&amp;quot;wan_modem&amp;quot;, \&lt;br /&gt;
	GROUP=&amp;quot;uucp&amp;quot;, \&lt;br /&gt;
	MODE=&amp;quot;0666&amp;quot;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Sierra Wireless MC8775 1199:6813 Support ==&lt;br /&gt;
&lt;br /&gt;
Some T61 units include the MC8775 model instead:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&amp;lt;pre&amp;gt;&lt;br /&gt;
Bus 006 Device 002: ID 1199:6813 Sierra Wireless, Inc. &lt;br /&gt;
&amp;lt;/pre&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
So far, I haven't been able to get this working:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&amp;lt;pre&amp;gt;&lt;br /&gt;
at^M&lt;br /&gt;
OK&lt;br /&gt;
at+cpin?^M&lt;br /&gt;
+CPIN: PH-NET PIN&lt;br /&gt;
&lt;br /&gt;
OK&lt;br /&gt;
&amp;lt;/pre&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Normally, I think the response would be &amp;lt;code&amp;gt;SIM PIN&amp;lt;/code&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
[[User:Mdz|Mdz]] 14:19, 6 August 2008 (CEST)&lt;/div&gt;</summary>
		<author><name>Mdz</name></author>
		
	</entry>
</feed>