Donatien Garnier / VodafoneUSBModem

Dependencies:   Socket

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers WANDongleInitializer.h Source File

WANDongleInitializer.h

00001 /* Copyright (c) 2010-2011 mbed.org, MIT License
00002 *
00003 * Permission is hereby granted, free of charge, to any person obtaining a copy of this software
00004 * and associated documentation files (the "Software"), to deal in the Software without
00005 * restriction, including without limitation the rights to use, copy, modify, merge, publish,
00006 * distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the
00007 * Software is furnished to do so, subject to the following conditions:
00008 *
00009 * The above copyright notice and this permission notice shall be included in all copies or
00010 * substantial portions of the Software.
00011 *
00012 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING
00013 * BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
00014 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
00015 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
00016 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
00017 */
00018 
00019 #ifndef WANDONGLEINITIALIZER_H
00020 #define WANDONGLEINITIALIZER_H
00021 
00022 #include <cstdint>
00023 using std::uint16_t;
00024 using std::uint32_t;
00025 
00026 #include "USBHost.h"
00027 #include "IUSBEnumerator.h"
00028 
00029 enum WAN_DONGLE_TYPE
00030 {
00031   WAN_DONGLE_TYPE_UNKNOWN = -1,
00032   WAN_DONGLE_TYPE_VODAFONEK3770 = 0,
00033   WAN_DONGLE_TYPE_VODAFONEK3772Z = 1,
00034 };
00035 
00036 class WANDongleInitializer : public IUSBEnumerator
00037 {
00038 protected:
00039     WANDongleInitializer(USBHost* pHost);
00040     USBHost* m_pHost;
00041     
00042 public:
00043     virtual uint16_t getMSDVid() = 0;
00044     virtual uint16_t getMSDPid() = 0;
00045     
00046     virtual uint16_t getSerialVid() = 0;
00047     virtual uint16_t getSerialPid() = 0;
00048     
00049     virtual bool switchMode(USBDeviceConnected* pDev) = 0;
00050     
00051     virtual USBEndpoint* getEp(USBDeviceConnected* pDev, int serialPortNumber, bool tx) = 0;
00052     
00053     virtual int getSerialPortCount() = 0;
00054     
00055     virtual void setVidPid(uint16_t vid, uint16_t pid) = 0;
00056     
00057     virtual bool parseInterface(uint8_t intf_nb, uint8_t intf_class, uint8_t intf_subclass, uint8_t intf_protocol) = 0; //Must return true if the interface should be parsed
00058     
00059     virtual bool useEndpoint(uint8_t intf_nb, ENDPOINT_TYPE type, ENDPOINT_DIRECTION dir) = 0; //Must return true if the endpoint will be used
00060     
00061     virtual WAN_DONGLE_TYPE getType() = 0;
00062     
00063     static WANDongleInitializer** getInitializers(USBHost* pHost);
00064 };
00065 
00066 class VodafoneK3770Initializer : public WANDongleInitializer
00067 {
00068 public:
00069     VodafoneK3770Initializer(USBHost* pHost);
00070     
00071     virtual uint16_t getMSDVid();
00072     virtual uint16_t getMSDPid();
00073     
00074     virtual uint16_t getSerialVid();
00075     virtual uint16_t getSerialPid();
00076     
00077     virtual bool switchMode(USBDeviceConnected* pDev);
00078     
00079     virtual USBEndpoint* getEp(USBDeviceConnected* pDev, int serialPortNumber, bool tx);
00080     
00081     virtual int getSerialPortCount();
00082     
00083     virtual void setVidPid(uint16_t vid, uint16_t pid);
00084     
00085     virtual bool parseInterface(uint8_t intf_nb, uint8_t intf_class, uint8_t intf_subclass, uint8_t intf_protocol); //Must return true if the interface should be parsed
00086     
00087     virtual bool useEndpoint(uint8_t intf_nb, ENDPOINT_TYPE type, ENDPOINT_DIRECTION dir); //Must return true if the endpoint will be used
00088     
00089     virtual WAN_DONGLE_TYPE getType();
00090     
00091 private:
00092 
00093   bool m_hasSwitched;
00094   int m_currentSerialIntf;
00095   int m_endpointsToFetch;
00096 };
00097 
00098 class VodafoneK3772ZInitializer : public WANDongleInitializer
00099 {
00100 public:
00101     VodafoneK3772ZInitializer(USBHost* pHost);
00102     
00103     virtual uint16_t getMSDVid();
00104     virtual uint16_t getMSDPid();
00105     
00106     virtual uint16_t getSerialVid();
00107     virtual uint16_t getSerialPid();
00108     
00109     virtual bool switchMode(USBDeviceConnected* pDev);
00110     
00111     virtual USBEndpoint* getEp(USBDeviceConnected* pDev, int serialPortNumber, bool tx);
00112     
00113     virtual int getSerialPortCount();
00114     
00115     virtual void setVidPid(uint16_t vid, uint16_t pid);
00116     
00117     virtual bool parseInterface(uint8_t intf_nb, uint8_t intf_class, uint8_t intf_subclass, uint8_t intf_protocol); //Must return true if the interface should be parsed
00118     
00119     virtual bool useEndpoint(uint8_t intf_nb, ENDPOINT_TYPE type, ENDPOINT_DIRECTION dir); //Must return true if the endpoint will be used
00120     
00121     virtual WAN_DONGLE_TYPE getType();
00122     
00123 private:
00124 
00125   bool m_hasSwitched;
00126   int m_currentSerialIntf;
00127   int m_endpointsToFetch;
00128 };
00129 
00130 #endif