TI Shared Transport Description and Support
From OMAPpedia
Pavan savoy (Talk | contribs) m (→Shared Transport support for WiLink Chipsets) |
|||
| Line 2: | Line 2: | ||
TI's Shared Transport driver currently support WL127x and WL128x WiLink Chipsets. | TI's Shared Transport driver currently support WL127x and WL128x WiLink Chipsets. | ||
| + | It has been designed to support future chipsets, provided the protocol drivers adhere. | ||
The drivers are located at <p><font size=4 face=terminal>drivers/misc/ti-st/</font></p> directory, and are available to be built | The drivers are located at <p><font size=4 face=terminal>drivers/misc/ti-st/</font></p> directory, and are available to be built | ||
| - | as modules by default under 'menuconfig --> device drivers --> misc devices' | + | as modules by default under 'menuconfig --> device drivers --> misc devices'. |
| + | The config option CONFIG_TI_ST drives whether the driver is built as module or built into the kernel. | ||
'''On WL127x, support exists for''' | '''On WL127x, support exists for''' | ||
Revision as of 21:59, 8 September 2011
Contents |
TI's Shared Transport driver currently support WL127x and WL128x WiLink Chipsets. It has been designed to support future chipsets, provided the protocol drivers adhere.
The drivers are located atdrivers/misc/ti-st/
directory, and are available to be builtas modules by default under 'menuconfig --> device drivers --> misc devices'. The config option CONFIG_TI_ST drives whether the driver is built as module or built into the kernel.
On WL127x, support exists for
- Bluetooth
- FM
On WL128x, support exists for
- Bluetooth
- FM
- GPS
Note: No significant changes exist in either the architecture or code to support different chipsets.
A Shared Transport driver is a line discipline driver. It acts as a generic transport driver for Bluetooth, FM and GPS connectivity (for WL128x).
Each of those protocol drivers have a register and a unregister mechanisms with the shared transport driver. Upon registration the shared transport driver can do a concurrent write. The shared transport driver then would queue up the data and send it over the UART. When the shared transport driver receives any data it interprets the data and forwards it to the receiver protocol driver via callbacks.
Shared transport driver is a platform device driver. Hence, for any platform which has a WL127x/WL128x device and you want to make use of this device, and the accompanying driver, you may do so by including an entry in the architecture specific board file.
Illustration:
/* wl128x BT, FM, GPS connectivity chip */
struct ti_st_plat_data wilink_pdata = {
.nshutdown_gpio = 55,
.dev_name = "/dev/ttyO1",
.flow_cntrl = 1,
.baud_rate = 3000000,
};
static struct platform_device wl128x_device = {
.name = "kim",
.id = -1,
.dev.platform_data = &wilink_pdata,
};
Also, in one of the architecture specific init functions add:
platform_device_register(&wl128x_device);
User-Space/Application Code
http://git.omapzoom.org/?p=platform/hardware/ti/wpan.git;a=summary
- UIM - This is the Shared Transport Daemon required to work with TI ST
- kfmapp - V4L2 test application to exercise V4L2 FM driver.
WL128x on OMAP4/Android platform
http://git.omapzoom.org/?p=kernel/omap.git;a=shortlog;h=refs/heads/p-android-omap-2.6.35
- Bluetooth can be exercised via the Android UI
- FM can be exercised via the CLI available from TI releases
- GPS can be exercised via Android UI
WL128x on OMAP4 platform (Non-Android)
http://dev.omapzoom.org/?p=raja/L24x-btfm.git;a=summary
- Bluetooth can be exercised via the Poky/Ubuntu UI
- FM can be exercised via the CLI available from TI releases
WL127x on OMAP3/Android platform
http://git.omapzoom.org/?p=kernel/omap.git;a=shortlog;h=refs/heads/p-android-omap-2.6.29
- Bluetooth can be exercised via the Android UI
- FM can be exercised via the CLI available from TI releases
Efforts on are going to get these drivers into mainline kernel http://kernel.org As of 2.6.37,
- Shared Transport Line discipline driver
- Bluetooth driver for BlueZ
are available at drivers/misc/ti-st/ directory.