From: "Luis R. Rodriguez" <lrodriguez@atheros.com>
To: Pavel Machek <pavel@suse.cz>
Cc: kernel list <linux-kernel@vger.kernel.org>,
Greg KH <greg@kroah.com>, "kaszak@gmail.com" <kaszak@gmail.com>,
"lcostantino@gmail.com" <lcostantino@gmail.com>,
"linux-wireless@vger.kernel.org" <linux-wireless@vger.kernel.org>
Subject: Re: w35und wifi driver for linux-staging
Date: Wed, 1 Oct 2008 04:34:58 -0700 [thread overview]
Message-ID: <20081001113458.GC6126@tesla> (raw)
In-Reply-To: <20081001123656.GA30942@elf.ucw.cz>
On Wed, Oct 01, 2008 at 05:36:56AM -0700, Pavel Machek wrote:
> Hi!
>
> This is driver for w35und usb wifi -- also in kohjinsha
> subnotebook. It should work well enough to associate and ping, but it
> obviously needs to be rewritten two more times...
>
> OTOH worst horrors (like embedded wifi stack) should have been fixed
> already...
>
> (against 2.6.27-rc8).
>
> Signed-off-by: Pavel Machek <pavel@suse.cz>
Quick review just looking at only a few files.
This can be removed:
> diff --git a/drivers/net/wireless/winbond/winbondport/SVN_CHANGELOG b/drivers/net/wireless/winbond/winbondport/SVN_CHANGELOG
> diff --git a/drivers/net/wireless/winbond/winbondport/VersionNote.txt
> diff --git a/drivers/net/wireless/winbond/winbondport/VersionNote.txt b/drivers/net/wireless/winbond/winbondport/VersionNote.txt
> +++ b/drivers/net/wireless/winbond/winbondport/adapter.h
> @@ -0,0 +1,23 @@
> +//
> +// ADAPTER.H -
> +// Windows NDIS global variable 'Adapter' typedef
> +//
Better kdoc or /* use this style of comments */
> +#define MAX_ANSI_STRING 40
> +typedef struct WB32_ADAPTER
> +{
Typedefs need to be removed.
> +void CreateWpaIE(PWB32_ADAPTER Adapter, u16* iFildOffset, PUCHAR msg, struct Management_Frame* msgHeader,
> + struct Association_Request_Frame_Body* msgBody, u16 iMSindex); //added by WS 05/14/05
> +
Please run patch against checkpatch.pl.
> +#ifdef _WPA2_
> +void CreateRsnIE(PWB32_ADAPTER Adapter, u16* iFildOffset, PUCHAR msg, struct Management_Frame* msgHeader,
> + struct Association_Request_Frame_Body* msgBody, u16 iMSindex);//added by WS 05/14/05
> +
> +u16 SearchPmkid(PWB32_ADAPTER Adapter, struct Management_Frame* msgHeader,
> + struct PMKID_Information_Element * AssoReq_PMKID );
> +#endif
> +//=============================================================================
> +// IOCTLS defined for DUT (Device Under Test)
> +
> +// IOCTL_WB_802_11_DUT_MAC_ADDRESS
> +// Query: Return the dot11StationID
> +// Set : Set the dot11StationID. Demo only.
> +//
> +#define IOCTL_WB_802_11_DUT_MAC_ADDRESS CTL_CODE( \
> + FILE_DEVICE_UNKNOWN, \
> + WB_IOCTL_DUT_INDEX + 1, \
> + METHOD_BUFFERED, \
> + FILE_ANY_ACCESS)
> +
IOCTL stuff? What? This unused anyway.
> +// IOCTL_WB_802_11_DUT_BSS_DESCRIPTION
> +// Query: Return the info. of the current connected BSS.
> +// Set : None.
> +//
> +#define IOCTL_WB_802_11_DUT_BSS_DESCRIPTION CTL_CODE( \
> + FILE_DEVICE_UNKNOWN, \
> + WB_IOCTL_DUT_INDEX + 2, \
> + METHOD_BUFFERED, \
> + FILE_ANY_ACCESS)
> +
This too.
> +#define IOCTL_WB_802_11_DUT_TX_RATE_MODE CTL_CODE( \
> + FILE_DEVICE_UNKNOWN, \
> + WB_IOCTL_DUT_INDEX + 30, \
> + METHOD_BUFFERED, \
> + FILE_ANY_ACCESS)
And this guy.. etc...
> +++ b/drivers/net/wireless/winbond/winbondport/linux/Makefile
> @@ -0,0 +1,37 @@
> +#=========================================================================
> +#
> +# Module Name:
> +# w35und.ko Makefile for the ISSC wireless networking driver in linux kernel 2.6.x
> +# Port from Original
> +
> +# Abstract:
> +# Linux 2.6 driver for IS89C35D 802.11 a/b/g Wireless USB
> +#
> +#=========================================================================
> +
> +
> +# This is not used for build when the wifi module is build into kernel
> +#
> + KERNELDIR := /lib/modules/$(shell uname -r)/build
> + PWD := $(shell pwd)
> + WPA_DIR=../wpa
> +
> +obj-m := w35und.o
> +
> +w35und-objs := wbusb.o wb35reg.o wb35rx.o wb35tx.o\
> + ../bssdbase.o ../ds_tkip.o ../knl.o ../mds.o ../mlme_assoc.o ../mlme_auth.o ../mlmetask.o ../mlmetxrx.o \
> + ../mto.o ../phy_calibration.o ../reg.o ../roamtask.o ../rxisr.o ../scan_probe.o ../scantask.o \
> + ../sme_api.o ../smetask.o ../wbhal.o ../wblinux.o \
> + $(WPA_DIR)/eap.o $(WPA_DIR)/4Way.o $(WPA_DIR)/Adapter_Bridge.o $(WPA_DIR)/STLFunction.o \
> + $(WPA_DIR)/passphrase.o $(WPA_DIR)/prf.o \
> + $(WPA_DIR)/rc4.o $(WPA_DIR)/sha1.o $(WPA_DIR)/hmac_sha1.o \
> + $(WPA_DIR)/hmac_md5.o $(WPA_DIR)/md5.o $(WPA_DIR)/aes.o $(WPA_DIR)/aes_wrap.o
The kernel has most of these if not all.
> +++ b/drivers/net/wireless/winbond/winbondport/linux/Makefile.debug
Make this a CONFIG option instead of using another file.
> diff --git a/drivers/net/wireless/winbond/winbondport/linux/README.PORT b/drivers/net/wireless/winbond/winbondport/linux/README.PORT
Can be removed or moved to Documentation/networking/ somewhere if its really useful.
> +++ b/drivers/net/wireless/winbond/winbondport/linux/README.RXART
This can be removed.
> diff --git a/drivers/net/wireless/winbond/winbondport/linux/README.txt b/drivers/net/wireless/winbond/winbondport/linux/README.txt
Documentation/networking/ somewhere, but this documentation is not
relevant for the kernel.
> +0. To build driver
> + #cd linux/
> + #make
> +
> + ( For debug mode )
> + #cp Makefile.debug Makefile
> + #make
> +
> + #make install ( if want it on /lib/modules..)
> +
> + w35und.ko should be created
Like this.
> +
> +1. Installation
> +
> + # insmod w35und.ko or #modprobe w35und ( if "make install", ( check depmod too.. ) )
> +
> + Notes:
> + After your inserted this module to system, your can use special commands
> + of user guider to connect your desired AP or IBSS station. After connected,
> + you can use this command to assign an IP address and up it.
> +
> + # ifconfig wlan0 xxx.xxx.xxx.xxx. up
> +
> +
> +
> +2. Un-Installation
> +
> + # rmmod w35und
> +
> + Notes:
> + If you have up our driver, you must down your dirver with this command
> + before you remove this module:
> +
> + #ifconfig wlan0 down
> +
> +
> +
> +3. User Guide
> +
> + 3.0.1 <Set/Get region>
> +
> + # iwpriv wlan0 set_region XXX
> + # iwpriv wlan0 get_region
> +
> + Notes:
> + XXX is a string, includes : Europe, Japan, USA, Reg_Unknown
Please consider using cfg80211 and new regulatory framework for this.
Then you can refer to iw:
http://wireless.kernel.org/en/users/Documentation/iw
Regulatory stuff:
http://wireless.kernel.org/en/developers/Regulatory
Also please read Documentation/networking/regulatory.txt
> diff --git a/drivers/net/wireless/winbond/winbondport/linux/common.h b/drivers/net/wireless/winbond/winbondport/linux/common.h
Please keep files in its own directory.
> +unsigned char
> +Wb35Reg_Read(phw_data_t pHwData, u16 RegisterNo, PULONG pRegisterValue )
> +{
Please install sparse and then compile the driver using C=1, and correct
the warnings.
Ok well that should take a while..
Luis
next prev parent reply other threads:[~2008-10-01 18:35 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-10-01 12:36 w35und wifi driver for linux-staging Pavel Machek
2008-10-01 12:36 ` Pavel Machek
2008-10-01 11:34 ` Luis R. Rodriguez [this message]
2008-10-01 18:53 ` Greg KH
2008-10-01 12:52 ` Christoph Hellwig
2008-10-02 19:12 ` Dan Williams
2008-11-19 11:28 ` Pavel Machek
2008-10-01 19:39 ` patch staging-add-w35und-wifi-driver.patch added to gregkh-2.6 tree gregkh
2008-10-01 23:05 ` Ian Schram
2008-10-01 23:10 ` Greg KH
2008-11-24 8:49 ` Pavel Machek
2008-10-02 9:57 ` Pavel Machek
2008-10-18 21:19 ` w35und wifi driver for linux-staging Arjan van de Ven
2008-10-20 16:57 ` Dan Williams
2008-10-20 17:27 ` Greg KH
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20081001113458.GC6126@tesla \
--to=lrodriguez@atheros.com \
--cc=greg@kroah.com \
--cc=kaszak@gmail.com \
--cc=lcostantino@gmail.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-wireless@vger.kernel.org \
--cc=pavel@suse.cz \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.