Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

ukyopon(4) [netbsd man page]

UKYOPON(4)						   BSD Kernel Interfaces Manual 						UKYOPON(4)

NAME
ukyopon -- Kyocera AIR-EDGE PHONE support SYNOPSIS
ukyopon* at uhub? ucom* at ukyopon? portno ? #include <dev/usb/ukyopon.h> DESCRIPTION
The ukyopon driver provides support for Kyocera AIR-EDGE PHONE AH-K3001V. Two units of this driver attach to an AIR-EDGE PHONE: the modem port and the data transfer port. The modem port is compatible to umodem(4), and can be used for dialup connections. The data transfer port is for reading and writing internal storage of AIR-EDGE PHONE. Both devices are accessed through the ucom(4) driver which makes them behave like a tty(4). The manipulation of the internal storage is through external programs, for example, the pkgsrc/comms/kyopon package. IOCTLS
The following ioctl(2) calls apply to the ukyopon device: UKYOPON_IDENTIFY struct ukyopon_identify Read, from the kernel, the identification information of the device, useful to assure that the opened device node is a modem or a data transfer port of ukyopon device. struct ukyopon_identify { char ui_name[16]; /* driver name */ int ui_busno; /* usb bus number */ uint8_t ui_address; /* device address */ enum ukyopon_model { UKYOPON_MODEL_UNKNOWN } ui_model; /* possibly future use */ enum ukyopon_port { UKYOPON_PORT_UNKNOWN, UKYOPON_PORT_MODEM, /* modem port */ UKYOPON_PORT_DATA /* data transfer port */ } ui_porttype; /* port type */ int ui_rsvd1, ui_rsvd2; }; #define UKYOPON_NAME "ukyopon" The ui_name field contains the driver signature, and has the string UKYOPON_NAME. The ui_busno field contains the usb(4) bus number to which the device is connected; the ui_address field contains the address of the device in the bus. These fields are useful to identify the physical device from the file descriptor. The ui_porttype field contains the type of device: UKYOPON_PORT_MODEM means the device is associated to the modem port, and UKYOPON_PORT_DATA means the device is associated to the data transfer port. Other fields are reserved for future extension and cleared to zeros. In addition, ukyopon devices accept all ioctl(2) calls that umodem(4) accepts. SEE ALSO
tty(4), ucom(4), umodem(4), usb(4), pkgsrc/comms/kyopon HISTORY
The ukyopon driver appeared in NetBSD 3.0. NOTES
``Kyopon'' is a widely-used nickname of Kyocera AIR-EDGE PHONE. BSD
May 18, 2005 BSD

Check Out this Related Man Page

U3G(4)							   BSD Kernel Interfaces Manual 						    U3G(4)

NAME
u3g -- USB support for 3G datacards SYNOPSIS
To compile this driver into the kernel, place the following lines in your kernel configuration file: device u3g device ucom Alternatively, to load the driver as a module at boot time, place the following line in loader.conf(5): u3g_load="YES" DESCRIPTION
The u3g driver provides support for the multiple USB-to-serial interfaces exposed by many 3G USB/PCCard modems. The device is accessed through the ucom(4) driver which makes it behave like a tty(4). HARDWARE
The u3g driver supports the following adapters: o Option GT 3G Fusion, GT Fusion Quad, etc. (only 3G part, not WLAN) o Option GT 3G, GT 3G Quad, etc. o Vodafone Mobile Connect Card 3G o Qualcomm Inc. CDMA MSM o Huawei B190, E180v, E220 ('<Huawei Mobile>') o Novatel U740, MC950D, X950D, etc. o Sierra MC875U, MC8775U, etc. (See /sys/dev/usb/serial/u3g.c for the complete list of supported cards for each vendor mentioned above.) The supported 3G cards provide the necessary modem port for ppp, pppd, or mpd connections as well as extra ports (depending on the specific device) to provide other functions (additional command port, diagnostic port, SIM toolkit port). In some of these devices a mass storage device supported by the umass(4) driver is present which contains Windows and Mac OS X drivers. The device starts up in disk mode (TruInstall, ZeroCD, etc.) and requires additional commands to switch it to modem mode. If your device is not switching automatically, please try to add quirks. See usbconfig(5) and usb_quirk(4). SEE ALSO
tty(4), ucom(4), usb(4), usb_quirk(4), usbconfig(5) HISTORY
The u3g driver appeared in FreeBSD 7.2, is based on the uark(4) driver, and written by Andrea Guzzo <aguzzo@anywi.com> in September 2008. AUTHORS
The u3g driver was written by Andrea Guzzo <aguzzo@anywi.com> and Nick Hibma <n_hibma@freebsd.org>. Hardware for testing was provided by AnyWi Technologies, Leiden, NL. BSD
October 7, 2008 BSD
Man Page