summaryrefslogtreecommitdiffstats
path: root/target/linux/ramips
Commit message (Collapse)AuthorAgeFilesLines
* ramips: Fix HooToo HT-TM02 support.John Crispin2015-01-086-43/+31
| | | | | | | | | | | | | - Fix LED definitions. - Add mode-switch slider definition (at GPIO 14). - Remove unneeded VLAN now that the ethernet driver is fixed and TCP packets get passed correctly now. (This router only has one port.) - Fix LAN port MAC address, which is defined in the factory partition as WLAN MAC address + 1. - Fix board name, as the company name is HooToo and not HOOTOO. - Remove unnecessary packages from the profile. (The end-user is supposed to use mechanisms such as the ImageBuilder in order to add his own set of packages to his own images... while the precompiled images should just contain the core set of packages needed to run the base functions of a wireless router.) Signed-off-by: Vittorio Gambaletta <openwrt@vittgam.net> SVN-Revision: 43883
* ramips: Fix for gpio falling interrupt maskJohn Crispin2015-01-081-0/+42
| | | | | | | | | | | | | This patch fixes a wrong mask operation for the rt2880-compatible ralink devices. The mask operation reads the actual flags and then logical combines it with the pin flag it want to set. Unfortunally, for rising as for falling interrupt flags the actual flag status of the rising interrupts was used. That caused a problem if you want to use more than one falling GPIO interrupt. Now the correct (seperated) actual status is used for both, falling and rising. Signed-off-by: Jonas Arndt <info@greenwire-elektronik.de> Signed-off-by: John Crispin <blogic@openwrt.org> SVN-Revision: 43882
* ramips: update BR-6475ND dtsJohn Crispin2015-01-082-2/+4
| | | | | | | | Update firmware location for 2.4GHz radio on the Edimax BR-6475nD. Signed-off-by: Christopher Lais <chris+openwrt@zenthought.org> SVN-Revision: 43881
* ramips: base-files: Whitespace fixes.John Crispin2015-01-082-6/+6
| | | | | | Signed-off-by: Vittorio Gambaletta <openwrt@vittgam.net> SVN-Revision: 43880
* all targets: remove all =m kernel config symbolsFelix Fietkau2015-01-056-22/+0
| | | | | | | | | | | | modules build during the kernel compile phase are ignored anyway, all modules should be built using KernelPackage in package/kernel/linux/modules/* selecting the appropriate config symbols there rather than in target/linux/*/config-* Signed-off-by: Daniel Golle <daniel@makrotopia.org> SVN-Revision: 43842
* ramips: fix WSR-600DHP flash layoutFelix Fietkau2015-01-031-1/+6
| | | | | | Signed-off-by: Felix Fietkau <nbd@openwrt.org> SVN-Revision: 43819
* ramips: fix WSR-1166DHP flash layoutFelix Fietkau2015-01-031-3/+13
| | | | | | Signed-off-by: Felix Fietkau <nbd@openwrt.org> SVN-Revision: 43818
* ramips: fix WSR-{600,1166} namesFelix Fietkau2015-01-033-4/+4
| | | | | | Signed-off-by: Felix Fietkau <nbd@openwrt.org> SVN-Revision: 43817
* ramips: fix wsr-1166 sysupgrade supportFelix Fietkau2015-01-031-1/+7
| | | | | | Signed-off-by: Felix Fietkau <nbd@openwrt.org> SVN-Revision: 43816
* ramips: on mt7621 only enable xhci for the eval board (still needs patch ↵Felix Fietkau2015-01-032-0/+6
| | | | | | | | cleanup to take effect) Signed-off-by: Felix Fietkau <nbd@openwrt.org> SVN-Revision: 43815
* ramips: fix WSR-600 image formatFelix Fietkau2015-01-021-1/+1
| | | | | | Signed-off-by: Felix Fietkau <nbd@openwrt.org> SVN-Revision: 43814
* ramips: use CONFIG_MTD_SPLIT_UIMAGE_FW instead of CONFIG_MTD_UIMAGE_SPLITFelix Fietkau2015-01-026-6/+6
| | | | | | Signed-off-by: Felix Fietkau <nbd@openwrt.org> SVN-Revision: 43813
* ramips: fix image format for WSR-1166Felix Fietkau2015-01-022-1/+20
| | | | | | Signed-off-by: Felix Fietkau <nbd@openwrt.org> SVN-Revision: 43812
* ramips: disable ethernet checksum offloads for mt7621, they are brokenFelix Fietkau2015-01-021-1/+10
| | | | | | Signed-off-by: Felix Fietkau <nbd@openwrt.org> SVN-Revision: 43811
* ramips: use netif_receive_skb instead of napi_gro_receive when rx csum ↵Felix Fietkau2015-01-021-1/+4
| | | | | | | | offload is unavailable Signed-off-by: Felix Fietkau <nbd@openwrt.org> SVN-Revision: 43810
* ramips: rework and fix m25p80 chunked-io supportFelix Fietkau2015-01-023-94/+120
| | | | | | Signed-off-by: Felix Fietkau <nbd@openwrt.org> SVN-Revision: 43808
* ramips: split mt7621 spi into a separate driver, increase maximum transfer sizeFelix Fietkau2015-01-029-453/+456
| | | | | | Signed-off-by: Felix Fietkau <nbd@openwrt.org> SVN-Revision: 43807
* honor the bootloader's bootargsImre Kaloz2015-01-021-0/+40
| | | | | | | | Only overwrite the bootloader's bootargs if "chosen" exists in the dtb Signed-off-by: Imre Kaloz <kaloz@openwrt.org> SVN-Revision: 43802
* ralink: remove partitoon map from mt7621.dtsiJohn Crispin2014-12-151-31/+0
| | | | | | Signed-off-by: John Crispin <blogic@openwrt.org> SVN-Revision: 43720
* add "preinit_regular" diag.sh set_state argumentJohn Crispin2014-12-151-0/+3
| | | | | | | | | | | | This new argument is used right after starting regular preinit (which happens if failsafe wasn't triggered). The main purpose of "preinit" argument is to indicate that failsafe can be triggered, however we were missing a way to inform user that we don't wait for a trigger anymore. With this change it's clear when failsafe mode can be triggered. Signed-off-by: Rafał Miłecki <zajec5@gmail.com> SVN-Revision: 43715
* ramips: update mtd patches to apply after changes from r43700Rafał Miłecki2014-12-152-10/+8
| | | | | | Signed-off-by: Rafał Miłecki <zajec5@gmail.com> SVN-Revision: 43709
* ralink: drop old pinmux nodes from dts filesJohn Crispin2014-12-144-27/+0
| | | | | | Signed-off-by: John Crispin <blogic@openwrt.org> SVN-Revision: 43701
* ramips:Add support for Aigale Ai-BR100John Crispin2014-12-138-0/+137
| | | | | | | | | Aigale Ai-BR100 is a router with mt7620a soc. There are only 2 lights on the board (WAN and WLAN) so I used the wlan light as the status led. Signed-off-by: 郭传鈜 <gch981213@gmail.com> SVN-Revision: 43681
* ralink: fix lenovo y1 wan port mappingJohn Crispin2014-12-121-2/+2
| | | | | | Signed-off-by: John Crispin <blogic@openwrt.org> SVN-Revision: 43667
* ralink: make uartf functional on AWM002John Crispin2014-12-121-1/+1
| | | | | | Signed-off-by: John Crispin <blogic@openwrt.org> SVN-Revision: 43664
* ralink: mt7621 was missing a symbol that made the CC builder failJohn Crispin2014-12-111-0/+1
| | | | | | Signed-off-by: John Crispin <blogic@openwrt.org> SVN-Revision: 43629
* kernel: refresh patchesFelix Fietkau2014-12-0820-320/+217
| | | | | | Signed-off-by: Felix Fietkau <nbd@openwrt.org> SVN-Revision: 43564
* ramips: generate factory images for Nexx devicesJohn Crispin2014-12-074-49/+91
| | | | | | Signed-off-by: Roger Pueyo Centelles <roger.pueyo@guifi.net> SVN-Revision: 43541
* ralink: mt7621 is a 1004KcJohn Crispin2014-12-032-5/+8
| | | | | | Signed-off-by: L. D. Pinney <ldpinney@gmail.com> SVN-Revision: 43514
* ralink: fix pci reset patchJohn Crispin2014-11-241-3/+11
| | | | | | | | sorry, forgot to make target/update before commiting the last patch Signed-off-by: John Crispin <blogic@openwrt.org> SVN-Revision: 43374
* ralink: add proper reset of pci coreJohn Crispin2014-11-241-0/+29
| | | | | | Signed-off-by: John Crispin <blogic@openwrt.org> SVN-Revision: 43370
* ralink: various fixes to the wm8960 setup codeJohn Crispin2014-11-191-127/+221
| | | | | | | | | still no sound but the codec is properly detected now, powers up and i can hear noise on the speakers. Signed-off-by: John Crispin <blogic@openwrt.org> SVN-Revision: 43305
* ralink: make the dmaengine driver compile under 3.14John Crispin2014-11-191-35/+0
| | | | | | Signed-off-by: John Crispin <blogic@openwrt.org> SVN-Revision: 43304
* ralink: fix tx vlan offload and hardware statusJohn Crispin2014-11-192-27/+40
| | | | | | | | | | | | | hardware status and tx vlan offload support on all targets except rt5350. so i modify the IS_ENABLE condition only for mt7621. support mt7621 hardware status reference by SDK. but i don't have mt7621. if not work just set mt7621 FE_REG_FE_COUNTER_BASE to 0 to let software count. Signed-off-by: michael lee <igvtee@gmail.com> SVN-Revision: 43303
* ralink: support netconsoleJohn Crispin2014-11-191-0/+15
| | | | | | Signed-off-by: michael lee <igvtee@gmail.com> SVN-Revision: 43302
* ralink: improve tx vlan offloadJohn Crispin2014-11-192-0/+55
| | | | | | | | | | | hardware tx vlan offload only support max 16 vids now use add/delete vlan interface to update vlan id table when duplicate vlan id index detect. disable hardware tx vlan offload support. Signed-off-by: michael lee <igvtee@gmail.com> SVN-Revision: 43301
* ralink: merge the mt7620a/n subtargetsJohn Crispin2014-11-1912-239/+44
| | | | | | Signed-off-by: John Crispin <blogic@openwrt.org> SVN-Revision: 43300
* ralink: set ralink_soc on mt7621John Crispin2014-11-171-12/+24
| | | | | | | | sdhci failed to init because of this Signed-off-by: John Crispin <blogic@openwrt.org> SVN-Revision: 43293
* ralink: fix pcie resetJohn Crispin2014-11-172-11/+21
| | | | | | | | | some old mt7620a uboots dont reset the pcie core properly. work around this issue in the kernel driver. Signed-off-by: John Crispin <blogic@openwrt.org> SVN-Revision: 43292
* ramips: disable 2.4 ghz on 802.11ac wifi on WHR-1166DFelix Fietkau2014-11-161-0/+1
| | | | | | Signed-off-by: Felix Fietkau <nbd@openwrt.org> SVN-Revision: 43283
* ramips: use mediatek,mtd-eeprom instead of ralink for mt76Felix Fietkau2014-11-161-1/+1
| | | | | | Signed-off-by: Felix Fietkau <nbd@openwrt.org> SVN-Revision: 43282
* ramips: fix default config breakage on whr-1166dFelix Fietkau2014-11-161-1/+1
| | | | | | Signed-off-by: Felix Fietkau <nbd@openwrt.org> SVN-Revision: 43281
* ralink: few updates tot he sdhci probe codeJohn Crispin2014-11-156-59/+76
| | | | | | Signed-off-by: John Crispin <blogic@openwrt.org> SVN-Revision: 43275
* ralink: make the sdhci module build againJohn Crispin2014-11-142-17/+20
| | | | | | Signed-off-by: John Crispin <blogic@openwrt.org> SVN-Revision: 43274
* ralink: dont define pm_poweroffJohn Crispin2014-11-142-0/+15
| | | | | | | | this makes gpio-poweroff work Signed-off-by: John Crispin <blogic@openwrt.org> SVN-Revision: 43254
* ralink: fix bank detection in mt7621 gpio driverJohn Crispin2014-11-141-12/+21
| | | | | | Signed-off-by: John Crispin <blogic@openwrt.org> SVN-Revision: 43253
* ralink: enable the proper drivers in the mt7621 configJohn Crispin2014-11-141-23/+3
| | | | | | Signed-off-by: John Crispin <blogic@openwrt.org> SVN-Revision: 43252
* ralink: fix broken pinmux function naming inside mt7621.cJohn Crispin2014-11-141-30/+50
| | | | | | Signed-off-by: John Crispin <blogic@openwrt.org> SVN-Revision: 43251
* ralink: update sdhci driverJohn Crispin2014-11-141-936/+2332
| | | | | | | | the new driver handles newer SoCs Signed-off-by: John Crispin <blogic@openwrt.org> SVN-Revision: 43250
* ralink: update pcie driver to load ranges from dtsJohn Crispin2014-11-144-30/+114
| | | | | | Signed-off-by: John Crispin <blogic@openwrt.org> SVN-Revision: 43249