Hauke Mehrtens
89d4fceee2
xburst: fix compilation: remove the __dev attributes
...
SVN-Revision: 35946
12 years ago
Hauke Mehrtens
45b24fa771
kernel: add some missing config options found by the buildbot.
...
SVN-Revision: 35945
12 years ago
Felix Fietkau
9facda9570
cns3xxx: use kmalloc instead of kzalloc for ethernet rx buffers
...
SVN-Revision: 35943
12 years ago
Felix Fietkau
c44506fcbd
cns3xxx: fix an rx irq handling corner case
...
When an rx interrupt comes in, rx interrupts are disabled and NAPI
polling is scheduled. During the NAPI poll, the driver first processes
received frames in the ring, then fills the dma descriptor slots with
new buffers and calls tx complete, before finally re-enabling rx
interrupts and completing NAPI (if below the budget).
If the hardware rx queue overflows before the napi complete is called,
the hardware will not throw any further rx interrupts and rx processing
stops completely.
Fix this by keeping NAPI polling scheduled until it completes a poll
without receiving any packets, and also handle NAPI completion before
refilling rx or completing tx.
SVN-Revision: 35942
12 years ago
Felix Fietkau
c1adc79328
cns3xxx: fix ethernet driver memory barrier usage
...
SVN-Revision: 35941
12 years ago
Gabor Juhos
9a71711d39
realview: remove 3.3 support
...
Signed-off-by: Gabor Juhos <juhosg@openwrt.org>
SVN-Revision: 35940
12 years ago
Gabor Juhos
35dd42f976
realview: switch to 3.8
...
Signed-off-by: Gabor Juhos <juhosg@openwrt.org>
SVN-Revision: 35939
12 years ago
Felix Fietkau
53e0f10246
kernel: prevent -f*-sections from leaking into the boot zImage wrapper on arm
...
SVN-Revision: 35938
12 years ago
Felix Fietkau
2b83c9bd8a
kernel: ensure that the arm exception handlers get preserved
...
SVN-Revision: 35937
12 years ago
Felix Fietkau
f0d7ba33ef
kernel: use -ffunction-sections, -fdata-sections and --gc-sections on ARM to reduce kernel image size, disable those flags when tracing on MIPS to fix compile errors
...
SVN-Revision: 35936
12 years ago
Gabor Juhos
5b3ab0e21e
xburst: remove 3.3 support
...
Signed-off-by: Gabor Juhos <juhosg@openwrt.org>
SVN-Revision: 35934
12 years ago
Gabor Juhos
00caedf86e
xburst: switch to 3.8
...
Compile tested only, so add broken flag.
Signed-off-by: Gabor Juhos <juhosg@openwrt.org>
SVN-Revision: 35933
12 years ago
Gabor Juhos
8942d4dc04
xburst: add support for 3.8
...
Signed-off-by: Gabor Juhos <juhosg@openwrt.org>
SVN-Revision: 35932
12 years ago
Gabor Juhos
15718f5387
linux/3.8: add missing config symbols
...
Signed-off-by: Gabor Juhos <juhosg@openwrt.org>
SVN-Revision: 35931
12 years ago
Gabor Juhos
f25c050aa9
adm5120: remove 3.7 support
...
Signed-off-by: Gabor Juhos <juhosg@openwrt.org>
SVN-Revision: 35930
12 years ago
Gabor Juhos
5502bbe2ca
adm5120: switch to 3.8
...
Signed-off-by: Gabor Juhos <juhosg@openwrt.org>
SVN-Revision: 35929
12 years ago
Gabor Juhos
c42da71d8b
malta: remove 3.7 support
...
Signed-off-by: Gabor Juhos <juhosg@openwrt.org>
SVN-Revision: 35928
12 years ago
Gabor Juhos
6720fc6952
malta: switch to 3.8
...
Signed-off-by: Gabor Juhos <juhosg@openwrt.org>
SVN-Revision: 35927
12 years ago
Gabor Juhos
82dc64b19b
atheros: remove 3.3 support
...
Signed-off-by: Gabor Juhos <juhosg@openwrt.org>
SVN-Revision: 35926
12 years ago
Gabor Juhos
5b8e106ae6
atheros: switch to 3.8
...
Signed-off-by: Gabor Juhos <juhosg@openwrt.org>
SVN-Revision: 35925
12 years ago
Gabor Juhos
ce5806378e
mpc83xx: remove 3.7 support
...
Signed-off-by: Gabor Juhos <juhosg@openwrt.org>
SVN-Revision: 35924
12 years ago
Gabor Juhos
c79c132229
mpc83xx: switch to 3.8
...
Signed-off-by: Gabor Juhos <juhosg@openwrt.org>
SVN-Revision: 35923
12 years ago
Gabor Juhos
27ba973c06
rb532: remove 3.7 support
...
Signed-off-by: Gabor Juhos <juhosg@openwrt.org>
SVN-Revision: 35922
12 years ago
Gabor Juhos
501e4d331d
rb532: switch to 3.8
...
Signed-off-by: Gabor Juhos <juhosg@openwrt.org>
SVN-Revision: 35921
12 years ago
Gabor Juhos
8223205a29
rb532: add support for 3.8
...
Signed-off-by: Gabor Juhos <juhosg@openwrt.org>
SVN-Revision: 35920
12 years ago
Gabor Juhos
e8a5312bef
ar71xx: correct board name to make LEDs work on RB750
...
Patch by: Denver A <denvera@gmail.com>
Patchwork: http://patchwork.openwrt.org/patch/3419/
Signed-off-by: Gabor Juhos <juhosg@openwrt.org>
SVN-Revision: 35919
12 years ago
Gabor Juhos
d85ffaabe9
ppc40x: remove __dev_{in,ex}it annotations
...
Signed-off-by: Gabor Juhos <juhosg@openwrt.org>
SVN-Revision: 35918
12 years ago
Felix Fietkau
446409f43e
cns3xxx: reduce buffer allocation size to 2048 bytes, improves ethernet performance
...
SVN-Revision: 35917
12 years ago
Felix Fietkau
95431b7843
cns3xxx: remove linux 3.3 support
...
SVN-Revision: 35916
12 years ago
Felix Fietkau
3d919b7c08
cns3xxx: disable CONFIG_PROC_STRIPPED and add an init script to set the ethernet cpu affinity (improves lan<->wlan bridging performance)
...
SVN-Revision: 35915
12 years ago
Hauke Mehrtens
44ed7d664a
brcm47xx: add some more partition parser fixes by Rafał Miłecki
...
SVN-Revision: 35912
12 years ago
Hauke Mehrtens
694050a4cf
brcm47xx: netconfig: add bacis support for swconfig
...
Parse the cpu port from swconfig and explicitly mark the cpu port as tagged.
SVN-Revision: 35911
12 years ago
Felix Fietkau
72af5b4b35
kernel: add a missing config symbol for 3.8
...
SVN-Revision: 35910
12 years ago
Felix Fietkau
95f14d052a
cns3xxx: add linux 3.8 support and use it by default
...
SVN-Revision: 35908
12 years ago
Felix Fietkau
85348d602e
kernel: fix mpcore watchdog symbol export
...
SVN-Revision: 35907
12 years ago
Gabor Juhos
938361b055
cns21xx: remove 3.7 support
...
Signed-off-by: Gabor Juhos <juhosg@openwrt.org>
SVN-Revision: 35886
12 years ago
Gabor Juhos
a61431b154
cns21xx: switch to 3.8
...
Signed-off-by: Gabor Juhos <juhosg@openwrt.org>
SVN-Revision: 35885
12 years ago
Gabor Juhos
3e3fc552bc
ppc44x: remove 3.7 support
...
Signed-off-by: Gabor Juhos <juhosg@openwrt.org>
SVN-Revision: 35884
12 years ago
Gabor Juhos
d24041665c
ppc44x: switch to 3.8
...
Signed-off-by: Gabor Juhos <juhosg@openwrt.org>
SVN-Revision: 35883
12 years ago
Gabor Juhos
c67127ad23
ppc40x: remove 3.7 support
...
Signed-off-by: Gabor Juhos <juhosg@openwrt.org>
SVN-Revision: 35882
12 years ago
Gabor Juhos
341b5ba939
ppc40x: switch to 3.8
...
Signed-off-by: Gabor Juhos <juhosg@openwrt.org>
SVN-Revision: 35881
12 years ago
Florian Fainelli
b412a81524
brcm63xx: fix LED names for various boards
...
Signed-off-by: Florian Fainelli <florian@openwrt.org>
SVN-Revision: 35880
12 years ago
Gabor Juhos
947bc9d36f
ar71xx: add backported watchdog patches
...
Signed-off-by: Gabor Juhos <juhosg@openwrt.org>
SVN-Revision: 35879
12 years ago
Gabor Juhos
1d55249d7c
ar71xx: use backported QCA955x patches
...
Signed-off-by: Gabor Juhos <juhosg@openwrt.org>
SVN-Revision: 35878
12 years ago
Gabor Juhos
64a9fe2894
ar71xx: use backported PCI patches
...
Signed-off-by: Gabor Juhos <juhosg@openwrt.org>
SVN-Revision: 35877
12 years ago
Gabor Juhos
12d49b5195
ar71xx: use backported MISC IRQ patch
...
Signed-off-by: Gabor Juhos <juhosg@openwrt.org>
SVN-Revision: 35876
12 years ago
Gabor Juhos
4c31b9f43e
ar71xx: use backported GPIO patches
...
Signed-off-by: Gabor Juhos <juhosg@openwrt.org>
SVN-Revision: 35875
12 years ago
Luka Perkov
120028af99
ar71xx: enable building ramdisk images for WZRHPG30XNH board types
...
Signed-off-by: Luka Perkov <luka@openwrt.org>
Acked-by: Gabor Juhos <juhosg@openwrt.org>
SVN-Revision: 35874
12 years ago
Gabor Juhos
0ad50b0bec
ar71xx: use backported SPI patches
...
Signed-off-by: Gabor Juhos <juhosg@openwrt.org>
SVN-Revision: 35873
12 years ago
Gabor Juhos
c28cdfab31
mpc85xx: remove 3.7 support
...
Signed-off-by: Gabor Juhos <juhosg@openwrt.org>
SVN-Revision: 35872
12 years ago