099dc4fb62
The device is manufactured by IPWireless. In some countries (for example Czech Republic, T-Mobile ISP) this card is shipped for service called UMTS 4G. It's a piece of PCMCIA "4G" UMTS PPP networking hardware that presents itself as a serial character device (i.e. looks like usual modem to userspace, accepts AT commands, etc). Rewieved-by: Jiri Slaby <jslaby@suse.cz> Signed-off-by: Ben Martel <benm@symmetric.co.nz> Signed-off-by: Stephen Blackheath <stephen@symmetric.co.nz> Signed-off-by: David Sterba <dsterba@suse.cz> Signed-off-by: Jiri Kosina <jkosina@suse.cz> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
64 lines
2 KiB
C
64 lines
2 KiB
C
/*
|
|
* IPWireless 3G PCMCIA Network Driver
|
|
*
|
|
* Original code
|
|
* by Stephen Blackheath <stephen@blacksapphire.com>,
|
|
* Ben Martel <benm@symmetric.co.nz>
|
|
*
|
|
* Copyrighted as follows:
|
|
* Copyright (C) 2004 by Symmetric Systems Ltd (NZ)
|
|
*
|
|
* Various driver changes and rewrites, port to new kernels
|
|
* Copyright (C) 2006-2007 Jiri Kosina
|
|
*
|
|
* Misc code cleanups and updates
|
|
* Copyright (C) 2007 David Sterba
|
|
*/
|
|
|
|
#ifndef _IPWIRELESS_CS_HARDWARE_H_
|
|
#define _IPWIRELESS_CS_HARDWARE_H_
|
|
|
|
#include <linux/types.h>
|
|
#include <linux/sched.h>
|
|
#include <linux/interrupt.h>
|
|
|
|
#define IPW_CONTROL_LINE_CTS 0x0001
|
|
#define IPW_CONTROL_LINE_DCD 0x0002
|
|
#define IPW_CONTROL_LINE_DSR 0x0004
|
|
#define IPW_CONTROL_LINE_RI 0x0008
|
|
#define IPW_CONTROL_LINE_DTR 0x0010
|
|
#define IPW_CONTROL_LINE_RTS 0x0020
|
|
|
|
struct ipw_hardware;
|
|
struct ipw_network;
|
|
|
|
struct ipw_hardware *ipwireless_hardware_create(void);
|
|
void ipwireless_hardware_free(struct ipw_hardware *hw);
|
|
irqreturn_t ipwireless_interrupt(int irq, void *dev_id, struct pt_regs *regs);
|
|
int ipwireless_set_DTR(struct ipw_hardware *hw, unsigned int channel_idx,
|
|
int state);
|
|
int ipwireless_set_RTS(struct ipw_hardware *hw, unsigned int channel_idx,
|
|
int state);
|
|
int ipwireless_send_packet(struct ipw_hardware *hw,
|
|
unsigned int channel_idx,
|
|
unsigned char *data,
|
|
unsigned int length,
|
|
void (*packet_sent_callback) (void *cb,
|
|
unsigned int length),
|
|
void *sent_cb_data);
|
|
void ipwireless_associate_network(struct ipw_hardware *hw,
|
|
struct ipw_network *net);
|
|
void ipwireless_stop_interrupts(struct ipw_hardware *hw);
|
|
void ipwireless_init_hardware_v1(struct ipw_hardware *hw,
|
|
unsigned int base_port,
|
|
void __iomem *attr_memory,
|
|
void __iomem *common_memory,
|
|
int is_v2_card,
|
|
void (*reboot_cb) (void *data),
|
|
void *reboot_cb_data);
|
|
void ipwireless_init_hardware_v2_v3(struct ipw_hardware *hw);
|
|
void ipwireless_sleep(unsigned int tenths);
|
|
int ipwireless_dump_hardware_state(char *p, size_t limit,
|
|
struct ipw_hardware *hw);
|
|
|
|
#endif
|