mirror of
https://github.com/Mange/rtl8192eu-linux-driver
synced 2025-12-10 00:04:17 +00:00
The official RTL8192EU linux driver from D-Link Australia
Version information: 20140812_rtl8192EU_linux_v4.3.1.1_11320 2014-08-12 version 4.3.1.1_11320 Source: ftp://files.dlink.com.au/products/DWA-131/REV_E/Drivers/DWA-131_Linux_driver_v4.3.1.1.zip This version does not currently work on newer kernels, but it does contain USB ID 2001:3319, which a lot of other repos in GitHub does not.
This commit is contained in:
142
platform/platform_ARM_SUNxI_usb.c
Normal file
142
platform/platform_ARM_SUNxI_usb.c
Normal file
@@ -0,0 +1,142 @@
|
||||
/******************************************************************************
|
||||
*
|
||||
* Copyright(c) 2013 Realtek Corporation. All rights reserved.
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify it
|
||||
* under the terms of version 2 of the GNU General Public License as
|
||||
* published by the Free Software Foundation.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful, but WITHOUT
|
||||
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
||||
* more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License along with
|
||||
* this program; if not, write to the Free Software Foundation, Inc.,
|
||||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA
|
||||
*
|
||||
*
|
||||
******************************************************************************/
|
||||
/*
|
||||
* Description:
|
||||
* This file can be applied to following platforms:
|
||||
* CONFIG_PLATFORM_ARM_SUNXI Series platform
|
||||
*
|
||||
*/
|
||||
|
||||
#include <drv_types.h>
|
||||
#include <mach/sys_config.h>
|
||||
|
||||
#ifdef CONFIG_PLATFORM_ARM_SUNxI
|
||||
extern int sw_usb_disable_hcd(__u32 usbc_no);
|
||||
extern int sw_usb_enable_hcd(__u32 usbc_no);
|
||||
static int usb_wifi_host = 2;
|
||||
#endif
|
||||
|
||||
#if defined(CONFIG_PLATFORM_ARM_SUN6I) || defined(CONFIG_PLATFORM_ARM_SUN7I)
|
||||
extern int sw_usb_disable_hcd(__u32 usbc_no);
|
||||
extern int sw_usb_enable_hcd(__u32 usbc_no);
|
||||
extern void wifi_pm_power(int on);
|
||||
static script_item_u item;
|
||||
#endif
|
||||
|
||||
#ifdef CONFIG_PLATFORM_ARM_SUN8I
|
||||
extern int sunxi_usb_disable_hcd(__u32 usbc_no);
|
||||
extern int sunxi_usb_enable_hcd(__u32 usbc_no);
|
||||
extern void wifi_pm_power(int on);
|
||||
static script_item_u item;
|
||||
#endif
|
||||
|
||||
|
||||
int platform_wifi_power_on(void)
|
||||
{
|
||||
int ret = 0;
|
||||
|
||||
#ifdef CONFIG_PLATFORM_ARM_SUNxI
|
||||
#ifndef CONFIG_RTL8723A
|
||||
{
|
||||
/* ----------get usb_wifi_usbc_num------------- */
|
||||
ret = script_parser_fetch("usb_wifi_para", "usb_wifi_usbc_num", (int *)&usb_wifi_host, 64);
|
||||
if(ret != 0){
|
||||
DBG_8192C("ERR: script_parser_fetch usb_wifi_usbc_num failed\n");
|
||||
ret = -ENOMEM;
|
||||
goto exit;
|
||||
}
|
||||
DBG_8192C("sw_usb_enable_hcd: usbc_num = %d\n", usb_wifi_host);
|
||||
sw_usb_enable_hcd(usb_wifi_host);
|
||||
}
|
||||
#endif //CONFIG_RTL8723A
|
||||
#endif //CONFIG_PLATFORM_ARM_SUNxI
|
||||
|
||||
#if defined(CONFIG_PLATFORM_ARM_SUN6I) || defined(CONFIG_PLATFORM_ARM_SUN7I)
|
||||
{
|
||||
script_item_value_type_e type;
|
||||
|
||||
type = script_get_item("wifi_para", "wifi_usbc_id", &item);
|
||||
if(SCIRPT_ITEM_VALUE_TYPE_INT != type){
|
||||
printk("ERR: script_get_item wifi_usbc_id failed\n");
|
||||
ret = -ENOMEM;
|
||||
goto exit;
|
||||
}
|
||||
|
||||
printk("sw_usb_enable_hcd: usbc_num = %d\n", item.val);
|
||||
wifi_pm_power(1);
|
||||
mdelay(10);
|
||||
|
||||
#if !(defined(CONFIG_RTL8723A)) && !(defined(CONFIG_RTL8723B))
|
||||
sw_usb_enable_hcd(item.val);
|
||||
#endif
|
||||
}
|
||||
#endif //defined(CONFIG_PLATFORM_ARM_SUN6I) || defined(CONFIG_PLATFORM_ARM_SUN7I)
|
||||
|
||||
#if defined(CONFIG_PLATFORM_ARM_SUN8I)
|
||||
{
|
||||
script_item_value_type_e type;
|
||||
|
||||
type = script_get_item("wifi_para", "wifi_usbc_id", &item);
|
||||
if(SCIRPT_ITEM_VALUE_TYPE_INT != type){
|
||||
printk("ERR: script_get_item wifi_usbc_id failed\n");
|
||||
ret = -ENOMEM;
|
||||
goto exit;
|
||||
}
|
||||
|
||||
printk("sw_usb_enable_hcd: usbc_num = %d\n", item.val);
|
||||
wifi_pm_power(1);
|
||||
mdelay(10);
|
||||
|
||||
#if !(defined(CONFIG_RTL8723A)) && !(defined(CONFIG_RTL8723B))
|
||||
sunxi_usb_enable_hcd(item.val);
|
||||
#endif
|
||||
}
|
||||
#endif //CONFIG_PLATFORM_ARM_SUN8I
|
||||
|
||||
exit:
|
||||
return ret;
|
||||
}
|
||||
|
||||
void platform_wifi_power_off(void)
|
||||
{
|
||||
|
||||
#ifdef CONFIG_PLATFORM_ARM_SUNxI
|
||||
#ifndef CONFIG_RTL8723A
|
||||
DBG_8192C("sw_usb_disable_hcd: usbc_num = %d\n", usb_wifi_host);
|
||||
sw_usb_disable_hcd(usb_wifi_host);
|
||||
#endif //ifndef CONFIG_RTL8723A
|
||||
#endif //CONFIG_PLATFORM_ARM_SUNxI
|
||||
|
||||
#if defined(CONFIG_PLATFORM_ARM_SUN6I) || defined(CONFIG_PLATFORM_ARM_SUN7I)
|
||||
#if !(defined(CONFIG_RTL8723A)) && !(defined(CONFIG_RTL8723B))
|
||||
sw_usb_disable_hcd(item.val);
|
||||
#endif
|
||||
wifi_pm_power(0);
|
||||
#endif //defined(CONFIG_PLATFORM_ARM_SUN6I) || defined(CONFIG_PLATFORM_ARM_SUN7I)
|
||||
|
||||
#if defined(CONFIG_PLATFORM_ARM_SUN8I)
|
||||
#if !(defined(CONFIG_RTL8723A)) && !(defined(CONFIG_RTL8723B))
|
||||
sunxi_usb_disable_hcd(item.val);
|
||||
#endif
|
||||
wifi_pm_power(0);
|
||||
#endif //defined(CONFIG_PLATFORM_ARM_SUN8I)
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user