找回密码
 立即注册

QQ登录

只需一步,快速开始

搜索
广告投放联系QQ68610888
楼主: hzjnet@163.com

20190829更新,集成大雕9817版和Lienol190803版源码,含mesh\SFE\上网等,7615闭源驱动

 火... [复制链接]
发表于 2017-10-4 21:41 | 显示全部楼层
4530的无线怎么用不了

点评

收到 找原因中  详情 回复 发表于 2017-10-5 07:27
我的恩山、我的无线 The best wifi forum is right here.
回复

使用道具 举报

 楼主| 发表于 2017-10-5 07:27 | 显示全部楼层
jiaoyu 发表于 2017-10-4 21:41
4530的无线怎么用不了

收到 找原因中
我的恩山、我的无线 The best wifi forum is right here.
回复

使用道具 举报

发表于 2017-10-5 18:39 | 显示全部楼层
3320刷了起不来。。。。

点评

能具体点吗?  详情 回复 发表于 2017-10-6 06:21
我的恩山、我的无线 The best wifi forum is right here.
回复

使用道具 举报

 楼主| 发表于 2017-10-6 06:21 | 显示全部楼层
碧海云天333 发表于 2017-10-5 18:39
3320刷了起不来。。。。

能具体点吗?  

点评

无法启动。是你那个特别版。帮人定制的。 大雕未修改的版本是没有2.4G  详情 回复 发表于 2017-10-6 10:43
我的恩山、我的无线 The best wifi forum is right here.
回复

使用道具 举报

发表于 2017-10-6 09:15 | 显示全部楼层
楼主,能否编译个EA4500的?cpu是Marvell 那个
我的恩山、我的无线 The best wifi forum is right here.
回复

使用道具 举报

 楼主| 发表于 2017-10-6 10:09 | 显示全部楼层
364375120 发表于 2017-10-6 09:15
楼主,能否编译个EA4500的?cpu是Marvell 那个

1 Target System 2 Subtarget  3 Target Profile
我的恩山、我的无线 The best wifi forum is right here.
回复

使用道具 举报

发表于 2017-10-6 10:43 | 显示全部楼层

无法启动。是你那个特别版。帮人定制的。
大雕未修改的版本是没有2.4G
我的恩山、我的无线 The best wifi forum is right here.
回复

使用道具 举报

发表于 2017-10-6 11:00 | 显示全部楼层
碧海云天333 发表于 2017-10-6 10:43
无法启动。是你那个特别版。帮人定制的。
大雕未修改的版本是没有2.4G

胡说,可以用,你的机器改过8M的flash了么?
我的恩山、我的无线 The best wifi forum is right here.
回复

使用道具 举报

发表于 2017-10-6 11:19 | 显示全部楼层
本帖最后由 hello_limin 于 2017-11-30 19:26 编辑
碧海云天333 发表于 2017-10-6 10:43
无法启动。是你那个特别版。帮人定制的。
大雕未修改的版本是没有2.4G

我提供的.C文件没有问题,
  1. /*
  2. *  TP-LINK TL-WDR3320 v2 board support
  3. *
  4. *  Copyright (C) 2016 Alexander Wang <limin2016@yahoo.com>
  5. *  Copyright (C) 2015 Weijie Gao <hackpacsal@gmail.com>
  6. *  Copyright (C) 2008-2009 Gabor Juhos <juhosg@openwrt.org>
  7. *
  8. *  This program is free software; you can redistribute it and/or modify it
  9. *  under the terms of the GNU General Public License version 2 as published
  10. *  by the Free Software Foundation.
  11. */

  12. #include <linux/pci.h>
  13. #include <linux/phy.h>
  14. #include <linux/gpio.h>
  15. #include <linux/platform_device.h>
  16. #include <linux/ath9k_platform.h>

  17. #include <asm/mach-ath79/ar71xx_regs.h>

  18. #include "common.h"
  19. #include "dev-ap9x-pci.h"
  20. #include "dev-eth.h"
  21. #include "dev-gpio-buttons.h"
  22. #include "dev-leds-gpio.h"
  23. #include "dev-m25p80.h"
  24. #include "dev-spi.h"
  25. #include "pci.h"
  26. #include "dev-wmac.h"

  27. #define WDR3320_GPIO_LED_WLAN5G                12
  28. #define WDR3320_GPIO_LED_SYSTEM                14
  29. #define WDR3320_GPIO_LED_WPS                15
  30. #define WDR3320_GPIO_LED_WAN                4
  31. #define WDR3320_GPIO_LED_LAN1                18
  32. #define WDR3320_GPIO_LED_LAN2                20
  33. #define WDR3320_GPIO_LED_LAN3                21
  34. #define WDR3320_GPIO_LED_LAN4                22

  35. #define WDR3320_GPIO_BTN_RESET                16

  36. #define WDR3320_KEYS_POLL_INTERVAL        20        /* msecs */
  37. #define WDR3320_KEYS_DEBOUNCE_INTERVAL        (3 * WDR3320_KEYS_POLL_INTERVAL)

  38. #define WDR3320_WMAC_CALDATA_OFFSET        0x1000
  39. #define WDR3320_PCIE_CALDATA_OFFSET        0x5000

  40. static const char *wdr3320_part_probes[] = {
  41.         "tp-link",
  42.         NULL,
  43. };

  44. static struct flash_platform_data wdr3320_flash_data = {
  45.         .part_probes        = wdr3320_part_probes,
  46. };

  47. static struct gpio_led wdr3320_leds_gpio[] __initdata = {
  48.         {
  49.                 .name                = "tp-link:green:wps",
  50.                 .gpio                = WDR3320_GPIO_LED_WPS,
  51.                 .active_low        = 1,
  52.         },
  53.         {
  54.                 .name                = "tp-link:green:system",
  55.                 .gpio                = WDR3320_GPIO_LED_SYSTEM,
  56.                 .active_low        = 1,
  57.         },
  58.         {
  59.                 .name                = "tp-link:green:wlan5g",
  60.                 .gpio                = WDR3320_GPIO_LED_WLAN5G,
  61.                 .active_low        = 1,
  62.         },
  63. };

  64. static struct gpio_keys_button wdr3320_gpio_keys[] __initdata = {
  65.         {
  66.                 .desc                = "reset",
  67.                 .type                = EV_KEY,
  68.                 .code                = KEY_RESTART,
  69.                 .debounce_interval = WDR3320_KEYS_DEBOUNCE_INTERVAL,
  70.                 .gpio                = WDR3320_GPIO_BTN_RESET,
  71.                 .active_low        = 1,
  72.         },
  73. };

  74. static void __init wdr3320_setup(void)
  75. {
  76.         u8 *mac = (u8 *) KSEG1ADDR(0x1f01fc00);
  77.         u8 *art = (u8 *) KSEG1ADDR(0x1fff0000);
  78.         u8 tmpmac[ETH_ALEN];

  79.         ath79_register_m25p80(&wdr3320_flash_data);
  80.        
  81.         ath79_init_mac(tmpmac, mac, -1);
  82.         ath79_register_wmac(art + WDR3320_WMAC_CALDATA_OFFSET, tmpmac);

  83.   ath79_register_pci();
  84.         ath79_init_mac(tmpmac, mac, -2);
  85.         ap9x_pci_setup_wmac_led_pin(0, 0);
  86.         ap91_pci_init(art + WDR3320_PCIE_CALDATA_OFFSET, tmpmac);

  87.         ath79_setup_ar934x_eth_cfg(AR934X_ETH_CFG_SW_ONLY_MODE);

  88.         ath79_register_mdio(1, 0x0);

  89.   /*wan*/
  90.         ath79_init_mac(ath79_eth1_data.mac_addr, mac, 1);

  91.         /* GMAC1 is connected to the PHY0 of the internal switch, GE1 */
  92.         ath79_switch_data.phy4_mii_en = 1;
  93.         ath79_switch_data.phy_poll_mask = BIT(4);
  94.         ath79_eth1_data.phy_if_mode = PHY_INTERFACE_MODE_MII;
  95.         ath79_eth1_data.phy_mask = BIT(4);
  96.         ath79_eth1_data.mii_bus_dev = &ath79_mdio1_device.dev;
  97.         ath79_register_eth(1);
  98.        
  99.         /*lan*/
  100.         ath79_init_mac(ath79_eth0_data.mac_addr, mac, 0);

  101.         /* GMAC0 is connected to the internal switch, GE0 */
  102.         ath79_eth0_data.phy_if_mode = PHY_INTERFACE_MODE_GMII;
  103.         ath79_register_eth(0);

  104.         ath79_gpio_output_select(WDR3320_GPIO_LED_LAN1,
  105.                                  AR934X_GPIO_OUT_LED_LINK0);
  106.         ath79_gpio_output_select(WDR3320_GPIO_LED_LAN2,
  107.                                  AR934X_GPIO_OUT_LED_LINK1);
  108.         ath79_gpio_output_select(WDR3320_GPIO_LED_LAN3,
  109.                                  AR934X_GPIO_OUT_LED_LINK2);
  110.         ath79_gpio_output_select(WDR3320_GPIO_LED_LAN4,
  111.                                  AR934X_GPIO_OUT_LED_LINK3);
  112.         ath79_gpio_output_select(WDR3320_GPIO_LED_WAN,
  113.                                  AR934X_GPIO_OUT_LED_LINK4);

  114.         ath79_register_leds_gpio(-1, ARRAY_SIZE(wdr3320_leds_gpio),
  115.                                  wdr3320_leds_gpio);
  116.         ath79_register_gpio_keys_polled(-1, WDR3320_KEYS_POLL_INTERVAL,
  117.                                         ARRAY_SIZE(wdr3320_gpio_keys),
  118.                                         wdr3320_gpio_keys);
  119. }

  120. MIPS_MACHINE(ATH79_MACH_TL_WDR3320_V2, "TL-WDR3320-v2", "TP-LINK TL-WDR3320 v2", wdr3320_setup);
复制代码


我的恩山、我的无线 The best wifi forum is right here.
回复

使用道具 举报

 楼主| 发表于 2017-10-6 11:47 | 显示全部楼层
hello_limin 发表于 2017-10-6 11:19
我提供的.C文件没有问题,

你刷了用起来的情况如何了啊?  美女
我的恩山、我的无线 The best wifi forum is right here.
回复

使用道具 举报

发表于 2017-10-6 12:27 | 显示全部楼层
碧海云天333 发表于 2017-10-6 10:43
无法启动。是你那个特别版。帮人定制的。
大雕未修改的版本是没有2.4G

2.4G 5G 的灯都亮了


本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有账号?立即注册

×
我的恩山、我的无线 The best wifi forum is right here.
回复

使用道具 举报

发表于 2017-10-6 12:49 | 显示全部楼层
集成的东西太多了,其实只要集成fast path,adbyby plus+,S-S R-pro基本就够了,其他的人家需要的可以自己装
我的恩山、我的无线 The best wifi forum is right here.
回复

使用道具 举报

 楼主| 发表于 2017-10-6 17:28 | 显示全部楼层
jiangchu1982 发表于 2017-10-6 12:49
集成的东西太多了,其实只要集成fast path,adbyby plus+,S-S R-pro基本就够了,其他的人家需要的可以自己 ...

重口难调啊
我的恩山、我的无线 The best wifi forum is right here.
回复

使用道具 举报

发表于 2017-10-6 21:01 | 显示全部楼层
L大在10月2日的时候更新了backport的无线驱动,实测对mtk的2.4G有很大提升,楼主能否同步更新下mtk的固件。
我的恩山、我的无线 The best wifi forum is right here.
回复

使用道具 举报

发表于 2017-10-6 21:29 | 显示全部楼层
楼主,请问R7000和6300v2无线也可以用吗?
我的恩山、我的无线 The best wifi forum is right here.
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

有疑问请添加管理员QQ86788181|手机版|小黑屋|Archiver|恩山无线论坛(常州市恩山计算机开发有限公司版权所有) ( 苏ICP备05084872号 )

GMT+8, 2024-4-20 01:52

Powered by Discuz! X3.5

© 2001-2024 Discuz! Team.

| 江苏省互联网有害信息举报中心 举报信箱:js12377 | @jischina.com.cn 举报电话:025-88802724 本站不良内容举报信箱:68610888@qq.com 举报电话:0519-86695797

快速回复 返回顶部 返回列表