summaryrefslogtreecommitdiffstats
path: root/target/linux/ramips
Commit message (Collapse)AuthorAgeFilesLines
* ramips: initial board support for Aztech HW550-3GGabor Juhos2011-03-137-0/+158
| | | | | | | | | | | This patch adds initial support for the Aztech HW550-3G (Ralink RT3052f SoC, 8MB flash, 32MB dram). Ethernet is not working yet. Wireless appears to work fine. USB does not work yet (as with other Ralink boards). Signed-off-by: Layne Edwards <ledwards76@gmail.com> SVN-Revision: 26123
* update to kernel 2.6.36.4Florian Fainelli2011-02-191-1/+1
| | | | SVN-Revision: 25580
* ramips: register watchdog device on the rt288x boardsGabor Juhos2011-01-262-0/+2
| | | | SVN-Revision: 25130
* ramips: add watchdog device for RT288xGabor Juhos2011-01-263-0/+33
| | | | SVN-Revision: 25129
* ramips: register watchdog device on the rt305x boardsGabor Juhos2011-01-267-0/+7
| | | | SVN-Revision: 25128
* ramips: add watchdog device for RT305xGabor Juhos2011-01-263-0/+34
| | | | SVN-Revision: 25127
* ramips: add watchdog driverGabor Juhos2011-01-264-0/+383
| | | | SVN-Revision: 25126
* ramips: implement clock API for RT288xGabor Juhos2011-01-267-45/+152
| | | | SVN-Revision: 25125
* ramips: implement clock API for RT305XGabor Juhos2011-01-267-41/+148
| | | | SVN-Revision: 25124
* ramips: remove extern and __init from function prototypesGabor Juhos2011-01-267-31/+28
| | | | SVN-Revision: 25123
* ramips: ramips_esw: fix typosGabor Juhos2011-01-041-2/+2
| | | | | | Patch from #8577. SVN-Revision: 24898
* ramips: remove 2.6.3[24] supportGabor Juhos2010-12-1416-1174/+0
| | | | SVN-Revision: 24562
* ramips: switch to 2.6.36Gabor Juhos2010-12-141-2/+2
| | | | SVN-Revision: 24561
* ramips: handle OTG interrupt on the RT305x SoCGabor Juhos2010-12-141-0/+3
| | | | SVN-Revision: 24560
* base-files: use shutdown instead of stop when the system goes down (patch by ↵Felix Fietkau2010-12-131-1/+1
| | | | | | tripolar) SVN-Revision: 24540
* ramips: ramips_esw: add more definitionsGabor Juhos2010-12-081-3/+49
| | | | SVN-Revision: 24340
* ramips: ramips_esw: add helper function to set pvidGabor Juhos2010-12-081-1/+17
| | | | SVN-Revision: 24339
* ramips: ramips_esw: add helper function to set vlan membersGabor Juhos2010-12-081-1/+31
| | | | SVN-Revision: 24338
* ramips: ramips_esw: add helper function to set VLAN idGabor Juhos2010-12-081-2/+17
| | | | SVN-Revision: 24337
* ramips: ramips_esw: introduce rt305x_esw_rmw{,_raw} functionGabor Juhos2010-12-081-0/+23
| | | | SVN-Revision: 24336
* ramips: ramips_esw: use rt305x_esw prefix in function namesGabor Juhos2010-12-081-33/+33
| | | | SVN-Revision: 24335
* ramips: ramips_esw: coding style cleanupGabor Juhos2010-12-081-24/+31
| | | | SVN-Revision: 24334
* ramips: ramips_esw: add defines for switch register offsetsGabor Juhos2010-12-081-24/+52
| | | | SVN-Revision: 24333
* ramips: ramips_esw: don't touch GPIO_PURPOSE registerGabor Juhos2010-12-081-20/+0
| | | | | | It must have been set by the board initialization code. SVN-Revision: 24332
* ramips: ramips_esw: convert it to be a platform driverGabor Juhos2010-12-085-13/+134
| | | | SVN-Revision: 24331
* ramips: ramips_esw: move hardware initialization into a separate functionGabor Juhos2010-12-081-8/+14
| | | | SVN-Revision: 24330
* ramips: ramips_esw: use a private structure for the functionsGabor Juhos2010-12-081-36/+43
| | | | SVN-Revision: 24329
* ramips: add support for 2.6.36Gabor Juhos2010-12-058-0/+427
| | | | SVN-Revision: 24270
* ramips: default profile fixGabor Juhos2010-12-052-2/+2
| | | | | | | | Fix package names in default profiles. Signed-off-by: Roman Yeryomin <roman@advem.lv> SVN-Revision: 24269
* ramips: use tabs instead of spaces in mach-f5d8235-v2.cGabor Juhos2010-12-051-43/+43
| | | | SVN-Revision: 24268
* ramips: add support for Belkin F5D8235 v2 boardGabor Juhos2010-11-247-0/+164
| | | | | | | | No support for usb for now. Signed-off-by: Roman Yeryomin <roman@advem.lv> SVN-Revision: 24126
* ramips: Use NET_IP_ALIGN instead of hardcoding 2Gabor Juhos2010-11-241-4/+5
| | | | | | Signed-off-by: Helmut Schaa <helmut.schaa@googlemail.com> SVN-Revision: 24124
* ramips: DMA map the correct RX skb sizeGabor Juhos2010-11-241-2/+2
| | | | | | | | | | The skb_reserve call prior to DMA mapping the RX skb reduced the skb data len by 2. To not allow DMA to write behind the skb we should pass the correct skb data len to the device. Signed-off-by: Helmut Schaa <helmut.schaa@googlemail.com> SVN-Revision: 24123
* ramips: Don't trigger BUG_ON due to skb allocation failureGabor Juhos2010-11-241-16/+19
| | | | | | | | | Instead just drop the rx'ed frame silently and reuse the already available buffer. Signed-off-by: Helmut Schaa <helmut.schaa@googlemail.com> SVN-Revision: 24122
* ramips: Remove unnecessary skb_putGabor Juhos2010-11-241-1/+1
| | | | | | Signed-off-by: Helmut Schaa <helmut.schaa@googlemail.com> SVN-Revision: 24121
* ramips: Allow ethernet interface to be taken down and up againGabor Juhos2010-10-051-0/+4
| | | | | | | | | | Taking the ramips ethernet interface down and up again resulted in the driver not receiving any frames anymore. Fix this by correctly disabling interrupts in the hw on ifdown. Signed-off-by: Helmut Schaa <helmut.schaa@googlemail.com> SVN-Revision: 23243
* upgrade kernel versions to the latest stable onesImre Kaloz2010-10-041-1/+1
| | | | SVN-Revision: 23219
* ramips: Ralink RT305x, support for Prolink PWH2004 (Abocom5205)Gabor Juhos2010-09-277-0/+118
| | | | | | | | | | | The attached patch adds a preliminary support for Prolink PWH2004 board (Ralink RT305x based). LAN and flash appear to work. However, the USB port and WLAN I have not managed to activate properly yet, but that problem appears to be present with other rt305x targets as well(?). Signed-off-by: Esa Hyytia <esa at netlab.tkk.fi> SVN-Revision: 23129
* ramips: allow USBGabor Juhos2010-09-272-6/+0
| | | | | | | | | | | The current defaults for ramips rt305x does not allow the USB subsystem to be selected/built. This patch is just a small step in that direction. Signed-off-by: Luis Correia <luis.f.correia@gmail.com> SVN-Revision: 23128
* kernel: update kernel version to 2.6.34.5Hauke Mehrtens2010-08-221-1/+1
| | | | SVN-Revision: 22759
* ramips: add support for Sparklan WCR-150GN boardGabor Juhos2010-08-157-0/+92
| | | | | | | | | | | This patch adds support for Sparklan WCR-150GN board. Network configuration should be tweaked to make it work fully. The reason it's not in this patch is that ramips target should be modified to support different /etc/config/network files for different boards. Signed-off-by: Roman Yeryomin <roman@advem.lv> SVN-Revision: 22658
* fix jffs2 64k and 128k images overwrite each otherFlorian Fainelli2010-07-311-1/+1
| | | | | | | | | When trying to build images with jffs2 filesystem for ramips platform there is only one jffs2 image produced instead of two (64k and 128k). Signed-off-by: Roman Yeryomin <roman@advem.lv> SVN-Revision: 22435
* ramips: enable ethernet driver for rt288xGabor Juhos2010-07-152-2/+2
| | | | SVN-Revision: 22214
* ramips: register ethernet device on the RT-N15Gabor Juhos2010-07-151-0/+8
| | | | SVN-Revision: 22213
* ramips: add generic ethernet device for the RT288xGabor Juhos2010-07-152-0/+44
| | | | SVN-Revision: 22212
* ramips: add mdio_cfg configuration for the ethernet driverGabor Juhos2010-07-153-0/+86
| | | | SVN-Revision: 22211
* ramips: Fix bridging in ramips ethernet driverGabor Juhos2010-07-131-1/+1
| | | | | | | | | | | | | | | | | | Bridging between the ramips ethernet driver and rt2800pci was somewhat broken. Frames received by the ethernet driver which were passed to the wifi driver for transmission were sometimes corrupted or sent out with huge delays. The reason for this is the missing assignment of skb->tail in the ramips ethernet driver's rx path resulting in skb->tail pointing to skb->data. Since skb->tail is used by mac80211 it writes into skb->data which messes up the frames content. Fix this by using skb_put to correctly set skb->len and skb->tail. Signed-off-by: Helmut Schaa <helmut.schaa@googlemail.com> SVN-Revision: 22172
* ramips: protect GPIO register access with a spinlockGabor Juhos2010-07-131-1/+11
| | | | SVN-Revision: 22171
* ramips: sync kernel configGabor Juhos2010-07-132-22/+0
| | | | SVN-Revision: 22170
* kernel: update to kernel 2.6.34.1Hauke Mehrtens2010-07-101-1/+1
| | | | SVN-Revision: 22118