Title of Invention

A METHOD FOR DYNAMIC BUS-BASED VIRTUAL CHANNEL MULTIPLEXING

Abstract Dynamic bus-based virtual channel multiplexing may be accomplished by establishing one or more virtual channels with a multiplexing device function driver and a multifunction device coupled to a bus, determining one or more functions to be activated on the device, and for each activated function, launching a second-tier function driver to handle operation of the activated function. The second-tier function driver has a function driver type. Establishment of the one or more virtual channels is accomplished using a multiplexing protocol and multiplexing device function driver with the multifunction device via a bus driver coupled to the bus.
Full Text Dynamic Bus-Based Virtual Channel Multiplexing Device Driver
Architecture
STATEMENT OF RELATED APPLICATIONSSI
[0001] This application claims the benefit of provisional patent application no. 60/724,837 filed October 6,2005, entitled "Dynamic Bus-Based Virtual Channel Multiplexing Device Driver Architecture".
TECHNICAL FIELD
[0002] The present disclosure relates generally to virtual channel multiplexing.
BACKGROUND
[0003] All computer systems comprise a co-operating collection of devices. The central processing unit (CPU) is responsible for most compute functions. However, data must be passed onto and off of the CPU in order for the computer system to be useful to the user. Keyboard, displays, mouse, etc are all necessary peripheral equipment for the computer user to interact with the system, Initially, all these peripherals have been attached to the computer through dedicated interfaces. For example, the keyboard connects through the keyboard port, the mouse connects through the mouse port, and the display device connects through yet another dedicated port As computer systems have evolved to provide more functionality, more peripherals have been introduced, Nesrwork connections were added to enhance interconnectivity to other computer systems. Scanning interfaces were added to allow direct input of image data. Printer interfaces add the ability to produce hard copy of the data being manipulated. Video cameras, graphics tablets, external storage devices, etc. all have contributed to a complex wiring configuration in computer systems.
[0004] To address this problem, interface bus systems have been developed. Small Computer System Interface (SCSI) was one such parallel bus. This bus system allowed high-speed connection of multiple devices to a single interface on the computer system. However, the standard did not allow for "hot-plugging," thus requiring the computer system to be powered down for every change in peripheral device attachment configuration. The more popular Universal Serial Bus (USB) architecture was introduced in recent years. This bus allowed "hot-plugging" and automatic configuration of peripheral devices as they are added. The system of "plug-and-play" was also addressed by the USB architecture so that the appropriate device driver is launched on detection of a new peripheral device being added onto the bus.
[0005] Figure 1 illustrates an example bus driver architecture. The USB architecture and the bus driver software on the computer's operating system together service the devices (116, 118,120) on the bus 114. The primary responsibilities of a bus driver 112 are to enumerate the devices (116,118, 120) on its bus 114, respond to Plug and Play (PnP) requests, respond to power management requests, multiplex access to the bus 114, and administer the devices (116, 118, 120) on the bus 114. Function drivers (106, 108, 110) are then established as the main driver for the device (116, 118, 120). A function driver (106, 108, 110) is typically written by the device vendor and is required. The PnP Manager loads at most one function driver (106, 108, 110) for a device (116,118, 120). The same function driver (106, 108, 110) can service one or more devices (116, 118, 120). A function driver (106,108, 110) provides the operational interface for its device (116, 118,120). Typically, the amotion driver (106, 108,110) handles reads and writes to the device (116,118, 120) and manages device power policy.
[0006] FIG. 2 illustrates an example bus driver architecture for multi-function devices. On the Windows operating system, a multifunction device 222 is supported by defining it to occupy one device location on its bus 214, but contains more than one functional unit (216, 218). Each functional unit (216, 218) corresponds to a driver (206, 208,210)). Examples of multifunction devices include combination modemynetwork adapters, combination audio/game ports, and so on. Such devices appear to the operating

system as multiple separate devices. For example, an add-on sound card that implements audio and gameport capabilities appear as two independent devices, one serviced by audio drivers and the other serviced by a gameport driver.
[0007] The operating system places a restriction on these functional units (216, 218, 220). Each functional unit, (216,218, 220) must be ableto operate as a separate device, even if it happens to be serviced by an instance of the same driver(s) as another functional unit on the device (222,220). In particular, fiinctional units on a multifunction device 222 must not have start-order dependencies, the resource requirements of one functional unit must not be expressed in terms of another functional unit, the operation of one functional unit must not affect or interfere with the operation of another functional unit on the multifunction device 222 or on the system as a whole, each functional unit must be enumerated and its resource requirements communicated to the operating system so the system can load the necessary drivers and assign resources to the different units in any order.
[0008] The above capabilities and restrictions of device attachment on a USB bus on Windows based system have been successful in serving a large number of peripheral devices. However, as computing systems evolve in sophistication, the peripheral devices are also growing in complexity and functionality. The peripheral devices are becoming self-contained computing systems that require multiple communications channels to interact with the operating system, Each of these communications channels may be used to effect different functions. For example, wireless wide area networking devices need to interact with the operating system to convey several streams or channels simultaneously for streams such as, but not limited to, a primary receive and transmit data paths, additional data channels for wireless network access using multiple contexts or separate .Quality of Service data channels over the same context, a control and status channel, a diagnostics and maintenance channel, and a Location Based Services (LBS) channel running a location protocol such as the National Marine Electronics Association (NMEA) protocol. Each of these channels requires independent data transfer channels and independent driver handling. Yet these channels cannot be considered independent

devices on the bus since they may have start-order dependencies. Tor example, the control and status data path channel might need to be started prior to any of the other channel paths in order to query the device and the network it is communicating with to determine what services the network and device are capable of before attempting to open one of the other channels that are dependent on one or more of these services.
{0009] Windows driver designers address more complex devices like the ones described in the previous paragraphs with the use of multifunction drivers for multifunction devices, A multifunction driver is a bus driver and thus has several advantages. A multifunction driver can enumerate a virtual device in the system for each of the streams, or channels, from a single physical device. Thus if a multifunction device supports more than one channel (e.g. a data channel, a control and status channel, a diagnostics channel, and a location based services channel (LBS) for a complex modem), then the multifunction driver can create a virtual device in the system for each of the channels of the multifunction device. In addition to this, the set of virtual devices created in the system for the device can be composed of a different set of device types (e.g. modem ports, COM ports, network adapters, etc.).
[00010] Another advantage of a multifunction driver is that it also allows for virtual devices to be dynamically loaded and unloaded in the system at any time while the driver is loaded. However, contemporary multifunction device drivers contain a static configuration that does not allow these drivers to take advantage of this feature because the configuration presented by the hardware device to specify the virtual devices to be presented in the system is static in nature. So the set of virtual devices to be presented in the system can only be done so at the time the multifunction driver is loaded for the device in the system. In order to change the set of virtual devices, the multifunction device must be re-enumerated, by either being removed from the host system or being subject to a power cycle or reset operation, with a new or alternative set of device interface configuration parameters. This is one disadvantage of the multifunction driver architecture approach.
[00011] Th is static nature of device configurations presented by multifunction devices 322 creates other limitations on the use of multifunction drivers 312. Channels cannot be dynamically added or removed based on run-time decisions or non-volatile memory setting in host platform or device. The virtual channels must be established at the time the device 322 is enumerated in the host system. In order to change the virtual channel/device configuration, the device must be re-enumerated, by either being removed from the host system or being subject to a power cycle or reset operation, with a new or alternative set of device interface configuration parameters. Another disadvantage is that definitions of new virtual channels and/or devices require a new device configuration rather than just a firmware, software, or non-volatile memory upgrade.
[000121 Since the method for specifying the channel and virtual devices to be established is driven by the device configuration, the host system has no opportunity to influence the set of virtual channels/devices to be supported beyond what is presented in the device configuration to the host. This can be considered as a master-slave relationship and thus is another disadvantage as it would be advantageous to allow the host system to have influence or control over the set of channels and virtual devices to be established beyond what is presented in the device configuration to the host.
[00013] One more disadvantage of the multifunction driver architecture, is that the number of virtual devices that are exposed are subject to the configuration restrictions imposed by certain bus specification associated with the device type (i.e. a USB or PCI-Express device bus specification). These configurations could have size or entry limitations that indirectly limit the number of channels or virtual devices that the device configuration can specify to the host system.
[00014] Many of the disadvantages of a multifunction driver architecture described in the previous paragraph are supported through the implementation of a virtual channel multiplexing driver architecture. FJG. 3 illustrates an example non-bus based virtual channel multiplex driver architecture. Channel multiplexing protocols allows a number of simultaneous sessions, or channels, over a single asynchronous interface. Each session/channel consists of a stream of bytes transferring various kinds of data.
[00015] A virtual channel multiplexing protocol driver 312 can allow for tine negotiation of the set of virtual sessions, or channels, to be established between the host and the device 322. Thus the channel establishment is a peer-to-peer relationship rather than master-slave since both the host and the device 322 can have influence over which virtual channels are to be established. Virtual channel multiplexing protocol drivers 312 can also be dynamic in nature in that they can allow virtual channels to be established and terminated at any time. Also, adding new virtual channels do not require a new device configuration since the definition of a virtual channel is outside the scope of device configuration as long as the device configuration covers the definition of the single channel for all of the virtual channels to be multiplexed over.
[00016] Though contemporary virtual channel multiplexing protocol driver architectures provide solutions for the specified limitations and disadvantages of the multifunction driver architecture, they have their own limitations since contemporary virtual channel multiplexing driver architectures do not employ the use of a bus architecture. Since these multiplexing driver architectures are not bus based, they do not allow virtual channels to .be represented by a set of different virtual devices (e.g. all virtual channels have to be a COM port vs. having a combination of COM ports, modem ports, and network adapters, etc.). Also, these virtual channel multiplexing driver architectures do not allow virtual devices to be dynamically loaded or unloaded in the system. For example, when needed, a network adapter can be loaded at run time by a bus driver that supports a multifunction device 322. Howeverf a non-bus based virtual channel multiplexing solution does not allow the device 322 to be loaded or unloaded because it only supports one device type and only presents itself as one device to the system.
[00017] So to summarize, there exists two different driver architectures out there to address the needs of these more complex multifunction devices. Though both of these driver architecture solutions provide clear advantages to address the needs of these complex multifunction devices, Ihey also both have significant disadvantages that restrict
taking advantage of the flexibility and dynamic capability of these ever more complex devices.

OVERVIEW Dynamic bus-based virtual channel multiplexing may be accomplished by establishing one or more virtual channejjpvith a multiplexing device function driver and a multifunction device coupled to a bus, determining one or more functions to be activated on the device, and for each activated function, launching a second-tier function driver to handle operation of the activated function. The second-tier function driver has a function driver type. Establishment of the one or more virtual channels is accomplished using a multiplexing protocol and multiplexing device function driver with the multifunction device via a bus driver.coup led to the bus.
BRIEF DESCRIPTION OP THE DRAWINGS
[00018] The accompanying drawings, which are incorporated into and constitute a part of this specification, illustrate one or more examples of embodiments and, together with the description of example embodiments, serve to explain the principles and implementations of the embodiments,
[0002] In the drawings:
FIG, 1 illustrates an example bus driver architecture.
FIG, 2 illustrates an example bus driver architecture for multi-function devices.
FIG. 3 illustrates an example non-bus based virtual channel multiplex driver architecture.
FIG. 4 illustrates an example virtual channel multiplexing .device function driver which employs the use of a multifunction bus based driver.
FIG. 5 illustrates the example virtual channel multiplexing device function driver of FIG, 4 having a deactivated function.
FIG. 6 illustrates an example method example for dynamic bus-based virtual channel multiplexing.
DESCRIPTION OF EXAMPLE EMBODIMENTS
[00019] Example embodiments are described herein in the context of a system of computers, servers, and software. Those of ordinary skill in the art-will realize that the following description is illustrative only and is not intended to be in any way limiting. Other embodiments will readily suggest themselves to such skilled persons having the benefit of this disclosure. Reference will now be made in detail to implementations of the example embodiments as illustrated in the accompanying'drawings. The same reference indicators will be used throughout the drawings and the following description to refer to the same or like items.
[00020] In the interest of clarity, not all of the routine features of the implementations described herein are shown and described. It will, of course, be appreciated that in the development of any such actual implementation, numerous implementation-specific decisions must be made in order to achieve the developer's specific goals, such as compliance with application- and business-related constraints, and that these specific goals will vary from one implementation to another and from one developer to another. Moreover, it will be appreciated that such a development effort might be complex and time-consuming, but would nevertheless be a routine undertaking of engineering for those of ordinary skill in the art havingthe benefit of this disclosure.
[00021] In accordance with this disclosure, the components, process steps, and/or data structures described herein may be implemented using various types of operating systems, computing platforms, computer programs, and/or general purpose machines. In addition, those of ordinary skill in the art will recognize that devices of a less general purpose nature, such as hardwired devices, field programmable gate arrays (FPGAs), application specific integrated circuits (ASICs), or the like, may also be used without departing from the scope and spirit of the inventive concepts disclosed herein. Where a method comprising a series of process steps is implemented by a computer or a machine and those process steps can be stored as a series of instructions readable by the machine, they may be stored on a tangible medium such as a computer memory device (e.g., ROM (Read Only Memory), PROM (Programmable Read Only Memory), EEPROM
(Electrically Eraseable Programmable Read Only Memory), FLASH Memory, Jump
Drive, and the like), magnetic storage medium (e.g., tape, magnetic disk drive, and the .
like), optical storage medium (e.g., CD-ROM, DVD-ROM, paper card, paper tape and
the like) and other types of program memory.
[00022] One goal achieved by example embodiments of the present invention is the
providing of a dynamic and flexible driver architecture that supports multiple virtual
channels having different functionality that can be presented in the host system as a set of
different device types that represent the different virtual channels, that supports
determining the set of virtual channels to be established by either or both the host and the
device, that can support dynamic arrival and removal of virtual devices in the host system
at any time that are associated with one or more of the virtual channels, and can support
dynamic establishment and termination of any of the virtual channels supported as they
are needed or not needed over time while the device remains connected and in use by the
host system.
[00023] While the foregoing objects and goals achieved by the present invention are
descriptive of various aspects and embodiments, these objects and goals should not be
used to limit the scope of the inventions set forth in the description of the invention
below.
[00024] According to one embodiment of the present invention, a device driver
architecture communicates with a multifunction device usinga virtual channel
multiplexing protocol driver architecture while also employing the use of multifunction
bus based driver architecture. By combining.these two different approaches into a new
single driver architecture, the benefits of both architectures for supporting these new ard
upcoming complex multifunction devices can be realized in a single combined driver
architecture. In addition to the benefits afforded by the multifunction device and virtual
channel multiplexing architectures described above, the dynamic bus-based virtual
channel multiplexing device driver architecture of the present invention allows for virtual
devices to be dynamically loaded and unloaded in the system at any time while the driver
is loaded because it is not restricted by the static nature of the hardware device



configurations (advantage over limitation of multifunction driver with multifunction devices with a static configuration). Furthermore, since many of the disadvantages of the two previous driver architectures discussed above are substantially orthogonal to each other (one driver architecture provides solutions for the disadvantage^) of the other driver architecture), combining the two driver architectures into a single combined driver architecture provides a combined solution that does not have any of previously mentioned disadvantages of the two separate driver architectures. In addition, fee combined driver architecture has advantages above and beyond any of the advantages in the either of the two separate driver architectures.
[00025] In the combined driver architecture, the virtual channel multiplexing protocol is still used to encapsulate and decapsulate different communications protocol packets, each protocol type being associated with one of the device's functional units. However, when this device is attached to a bus, such as USB on a Windows system, the Multiplex Device Function Driver (MDFD), shown as reference numeral 440 in FIG. 4, is associated as the function driver for the multifunction device 434. This driver 440 then communicates and negotiates (peer-to-peer rather than master-slave) with the device 434 to establish fee virtual channels and functions to be activated on fee device 434.
[00026] In an example embodiment, the multiplexing protocol between the MDFD 440 and a multifunction device 434 can be based on a non-bus based multiplexing protocol. By way of example, the multiplexing protocol between the MDFD 440 and a multifunction device 434 can be based on the 3GPP 27,010 Terminal Equipment to User Equipment (TE-UE) multiplexer protocol.
[00027] In another example embodiment, the multiplexing protocol between the MDFD 440 and a multifunction device 434 can be based on bus specific defined interface components. By way of example, separate Universal Serial Bus (USB) endpoints for each vii-tual channel may be employed. For each activated function (associated with one or more established virtual channels), fee MDFD 440 launches a second-tier driver (406, 408, 410) to handle fee operation of that function. The second-tier drivers (406,408, 410) that are currently established by fee MDFD 440 can be composed of different driver

types (i.e. COM ports, modem ports, network adapters, etc.) and are determined based on the negotiation between the device 434 and the MDFD 440. In an example embodiment, the MDFD 440 can use a fixed table lookup to associate each channel between the multifunction device and the MDFD, referred to as a the DataJLink Connection (DLC) in this particular embodiment, with the appropriate second-tier function driver (406,408, 410). For example, DLC=0 may be associated with the Control Channel function; DLC=1 may be associated with an AT/PPP data communication function; DLC=2 may be associated with the Diagnostic Mode function; DLC=3 may be associated with the Control and Status function; DLC=4 may be associated with the geo-location function. According to another example embodiment, the MDFD 440 may utilize initial configuration query mechanisms to determine the DLC to functional unit mapping. Then, it can use that information to ensure the correct second-tier function drivers (406, 408,410) are launched or suspended on detection of the functional units (416,418, 422).
[00028] The multiplexing protocol uses unique function identifiers to differentiate protocol units for each functional unit (416, 418, 422) of the device 434, According to an example-embodiment, the unique function identifiers comprise the DLC identifiers in the 3GPP 27.010 protocol. Control information or new protocol identity detection mechanisms may be used to cause the MDFD 440 to launch the associated second-tier driver (406, 408, 410) at any time.
[00029] The MDFD 440 for the multifunction device 434 may also terminate or suspend a particular second-tier driver (406, 408, 410) at any time if the associated function has been disabled on the device 434, The device 434 does not have to be re-enumerated in the system for the set of established virtual channels, functions, and associated second-tier drivers (406, 408, 410) to change.
[00030] This driver system can therefore handle varying configurations of the multifunction device 434. A single MDFD 440 for the multifunction device 434 can be deployed to address multiple revisions and configurations of the multifunction device 434. Furthermore, customization of the multifunction device 434 necessary to satisfy different customer requirements can also be addressed with the same MDFD 440. This

reduces the probability of errors introduced through maintenance of numerous unique customized device drivers. The ability to utilize a single MDFD 440 to address varying versions of similar multifunction devices 434 also reduces development costs.
[00031] Figure 5 illustrates where the same MDFD 540 can service a multifunction device 534 where Function 2 (518) has been deactivated or suspended. In this instance, the MDFD 540 can suspend the associated second-tier device function driver 508 and, if desired, the associated virtual channels. This flexibility is also available if a customized version of the device 534 does not include all functional units. In this case, the MDFD 540 will adjust to the customized configuration and only launch the virtual channels and second-tier function drivers (506, 508, 510) that are necessary. Applications can therefore determine the existence or absence of a functional unit (516, 518, 522) based on the existence of the associated API function calls.
[00032] Figure 6 illustrates an example method example for dynamic bus-based virtual channel multiplexing. The processes illustrated in FIG. 6 may be implemented in hardware, software, firmware, or a combination thereof, Figure 6 illustrates the operation of multiplex device function driver 440 of FIG. 4 and multiplex device function driver 550 of FIG. 5. At 600, one or more virtual channels with a multiplexing device function driver and a multifunction device coupled to a bus are established. A multiplexing protocol and a multiplexing device function driver with the multifunction device is used. At 602, a determination is made regarding one or more functions to be activated on the device. At 604, for each activated function in reference numeral 602, a second-tier function driver is launched to handle operation of the activated function. Each second-tier function driver has a function driver type associated with it.
[00033] While the foregoing descriptions refer to the USB architecture for illustrative purposes, diose of ordinary skill in the art will readily appreciate that the inventions disclosed herein are not necessarily limited to the USB architecture. For example, the PCI-Express (PCIe) and the Institute of Electrical and Electronic Engineers 1394 (IEEE 1394) buses may also be used.

[00034] While embodiments and applications have been shown and described, it would be apparent to those skilled in the art having the benefit of this disclosure that many more modifications than mentioned above are possible without departing from the inventive concepts disclosed herein. The invention, therefore, is not to be restricted except in the spirit of the appended claims.





CLAIMS What is claimed is:
1. An apparatus for dynamic bxis-based virtual channel multiplexing, comprising:
a bus;
a bus driver coupled to said bus;
a multifunction device coupled to said bus; and
a Multiplex Device Function Driver (MDFD) coupled to said bus driver for
establishing one or more virtual channels with said device using a multiplexing protocol
between said MDFD and said device via said bus driver; determining one or more functions to be activated on said device; and for each activated function, launching a second-tier function driver to handle operation of
said activated function, said second-tier function driver having a function driver type.
2. The apparatus of claim 1 wherein said MDFD is configured to use a fixed table loolcup to
' associate each of said one or more virtual channels between said device and said MDFD
with one of said second-tier function drivers.
3. The apparatus of claim 1 wherein said MDFD is configured to use a fixed table lookup to associate a Data Link Connection (DLC) with one of said second-tier function drivers.
4. The apparatus of claim 1 wherein said function driver type comprises one or more of a Control Channel function, an AT/PPP data communication function, a diagnostic mode function, a control and status function, and a geo-Iocation function.
5. The apparatus of claim 1 wherein said MDFD is configured to use a fixed table lookup to associate each of said one or more virtual channels between said device and said MDFD with one of said second-tier function drivers.
6. configuration query mechanisms to associate a Data Link Connection (DLC) with one of said second-tier function drivers.
7. The apparatus of claim 1 wherein said device is configured to use one or more unique function identifiers to differentiate protocol units for each functional unit of said device.
8. The apparatus of claim 1 wherein said one or more unique function identifiers comprise the Data Link Connection (DLC) identifiers in the 3GPP 27.010 protocol.
9. The apparatus of claim I wherein said bus comprises a Universal Serial Bus (USB).
10. The apparatus of claim 1 wherein said bus comprises an Institute of Electrical and Electronic Engineers 1394 (TEEE 1394) bus.
11. The apparatus of claim 1 wherein said bus comprises a PCI-Express (PCIe) bus.
12. The apparatus of claim 1 wherein said multiplexing protocol comprises a non-bus based multiplexer protocol.
13. The apparatus of claim 12 wherein said multiplexing protocol comprises the 3GPP 27.010 Terminal Equipment to User Equipment (TE-UE) multiplexer protocol.
14. The apparatus of claim 1 wherein said multiplexing protocol .is based on one or more bus specific defined interface components.
15. The apparatus of claim 14 wherein said one or more bus specific defined interface components comprises one or more separate Universal Serial Bus (USB) endpoints for each virtual channel.
16. A method for dynamic bus-based virtual channel multiplexing, comprising:
establishing one or more virtual channels with a multiplexing device function driver and
a multifunction device coupled to a bus, said establishing using a multiplexing
protocol and said multiplexing device function driver with said device via a bus
driver coupled to said bus; determining one or more functions to be activated on said device; and ■ for each activated function, launching a second-tier function driver to. handle operation of
said activated function, said second-tier function driver having a function driver type.
17. The method of claim 1, further comprising using a fixed table lookup to associate each of said one or more virtual channels between said device and said MDFD with one of said second-tier function drivers.
18. The method of claim 16, further comprising using a fixed table lookup to associate a Data Link Connection (DLC) with one of said second-tier function drivers,
19. The method of claim 16 wherein said function driver type comprises one or more of a Control Channel function, an AT/PPP data communication function, a diagnostic mode function, a control and status function, and a geo-location function.
20. The method of claim 16, further comprising using a fixed table lookup to associate each of said one or more virtual channels between said device and said MDFD with one of said second-tier function drivers.
21. The method of claim 16, further comprising using one or more initial configuration query mechanisms to associate a Data Link Connection (DLC) with one of said second-tier function drivers.
22. The method of claim 16, further comprising using one or more unique function identifiers to differentiate protocol units for each functional unit of said device.
23. The method of claim ! 6 wherein said one or more unique function identifiers comprise the Data Link Connection (DLC) identifiers in the 3GPP 27,010 protocol.
24. The method of claim 16 wherein said bus comprises a Universal Serial Bus (USB).
25. The method of claim 16 wherein said bus comprises an Institute of Electrical and Electronic Engineers 1394 (IEEE 1394) bus.
26. The method of claim 16 wherein said bus comprises a PCI-Express (PCIe) bus.
27. The method of claim 16 wherein said multiplexing protocol comprises a non-bus based multiplexer protocol.
28. The method of claim 27 wherein said multiplexing protocol comprises the 3GPP 27.010 Terminal Equipment to User Equipment (TE-UE) multiplexer protocol.
29. The method of claim 16 wherein said multiplexing protocol is based on one or more bus specific defined interface components.
30. The method of claim 29 wherein said one or more bus specific defined interface components comprises one or more separate Universal Serial Bus (USB) endpoints for each virtual channel.
31. An apparatus for dynamic bus-based virtual channel multiplexing, comprising: a bus;
a bus driver coupled to said bus; a multifunction device coupled to said bus; and
a means for establishing one or more virtual channels with a multiplexing device function driver and said device coupled to a bus, said establishing using a multiplexing

protocol and said multiplexing device function driver with said device via a bus
driver coupled is said bus; determining one or more functions to be activated on said device; and for each activated function, launching a second-tier function driver to handle operation of
said activated function, said second-tier function driver having a function driver type.
32. An apparatus for dynamic bus-based virtual channel multiplexing, comprising:
means for establishing one or more virtual channels with a multiplexing device function
driver and a multifunction device coupled to a bus, said establishing using a
multiplexing protocol and said multiplexing device function driver with said device
via a bus driver coupled to said bus; means for determining one or more functions to be activated on said device; and means, for each activated function, launching a second-tier function driver to handle
operation of said activated function, said second-tier function driver having a
function driver type.
33. A program storage device readable by a machine, embodying a program of instructions
executable by the machine to perform a method for dynamic bus-based virtual channel
multiplexing, the method comprising:
establishing one or more virtual channels with a multiplexing device function driver and a multifunction device coupled to a bus, said establishing using a multiplexing protocol and said multiplexing device function driver with said device via a bus driver coupled to said bus; determining one or more functions to be activated on said device; and for each activated function, launching a second-tier function driver to handle operation of said activated function, said second-tier function driver having a function driver type.





Documents:

3439-delnp-2008-Abstract-(19-09-2014).pdf

3439-DELNP-2008-Abstract-111214.pdf

3439-delnp-2008-abstract.pdf

3439-DELNP-2008-Amended Pages Of Specification-111214.pdf

3439-delnp-2008-Claims-(19-09-2014).pdf

3439-DELNP-2008-Claims-111214.pdf

3439-delnp-2008-claims.pdf

3439-delnp-2008-correpondence-others.pdf

3439-delnp-2008-Correspondence Others-(04-04-2012).pdf

3439-delnp-2008-Correspondence Others-(13-07-2012).pdf

3439-delnp-2008-Correspondence Others-(14-01-2013).pdf

3439-delnp-2008-Correspondence Others-(19-09-2014).pdf

3439-delnp-2008-Correspondence others-(25-08-2011).pdf

3439-delnp-2008-Correspondence Others-(29-04-2014).pdf

3439-DELNP-2008-Correspondence-111214.pdf

3439-delnp-2008-Correspondence-Others-(11-03-2011).pdf

3439-DELNP-2008-Correspondence-Others-(25-08-2011).pdf

3439-delnp-2008-Description (Complete)-(19-09-2014).pdf

3439-DELNP-2008-Description (Complete).pdf

3439-delnp-2008-Drawings-(19-09-2014).pdf

3439-delnp-2008-drawings.pdf

3439-DELNP-2008-Form 1-111214.pdf

3439-DELNP-2008-Form 2(Title Page)-111214.pdf

3439-delnp-2008-form-1.pdf

3439-delnp-2008-form-18.pdf

3439-delnp-2008-Form-2-(19-09-2014).pdf

3439-delnp-2008-form-2.pdf

3439-delnp-2008-Form-3-(04-04-2012).pdf

3439-delnp-2008-Form-3-(11-03-2011).pdf

3439-delnp-2008-Form-3-(14-01-2013).pdf

3439-delnp-2008-Form-3-(25-08-2011).pdf

3439-delnp-2008-Form-3-(29-04-2014).pdf

3439-delnp-2008-form-3.pdf

3439-delnp-2008-form-5.pdf

3439-delnp-2008-GPA-(19-09-2014).pdf

3439-DELNP-2008-OTHERS-111214.pdf

3439-delnp-2008-pct-101.pdf

3439-delnp-2008-pct-111.pdf

3439-delnp-2008-pct-304.pdf

FER REPLY-3439 DELNP 2008.pdf

Form-2.pdf

Petition under Rule 137.pdf

Section 8(2) details_Corresponding EP and US.pdf


Patent Number 264287
Indian Patent Application Number 3439/DELNP/2008
PG Journal Number 52/2014
Publication Date 26-Dec-2014
Grant Date 19-Dec-2014
Date of Filing 25-Apr-2008
Name of Patentee SIERRA WIRELESS, INC.
Applicant Address 13811 WIRELESS WAY, RICHMOND, BRITISH COLUMBIA V6V 3A4, CANADA.
Inventors:
# Inventor's Name Inventor's Address
1 TILAKRAJ ROYCHOUDHURY 1203 DOYLE CIRCLE, SANTA CLARA, CA 95054, USA.
2 RICHARD THOMAS KAVANAUGH 736 BIRCHVIEW DRIVE, ENCINITAS, CA 92054, USA.
PCT International Classification Number G06 9/46
PCT International Application Number PCT/US06/039264
PCT International Filing date 2006-10-06
PCT Conventions:
# PCT Application Number Date of Convention Priority Country
1 11/545,043 2006-10-05 U.S.A.
2 60/724,837 2005-10-06 U.S.A.