aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/ramips/files
Commit message (Collapse)AuthorAgeFilesLines
* ramips: UPF_FIXED_TYPE must be set for the serial portsGabor Juhos2011-03-271-1/+1
| | | | SVN-Revision: 26327
* ramips: define GPIO chips separately for each SoCsGabor Juhos2011-03-277-84/+152
| | | | SVN-Revision: 26326
* ramips: move GPIO definitions into a separate header fileGabor Juhos2011-03-275-63/+52
| | | | SVN-Revision: 26325
* ramips: setup GPIO chip functions on the flyGabor Juhos2011-03-271-12/+5
| | | | SVN-Revision: 26324
* ramips: use separate register base for GPIO chipsGabor Juhos2011-03-271-8/+16
| | | | SVN-Revision: 26323
* ramips: fix dir-300 mtd layoutGabor Juhos2011-03-271-1/+1
| | | | | | Signed-off-by: Alexander Gordeev <lasaine@lvk.cs.msu.su> SVN-Revision: 26322
* ramips: enable MDIO on the HW550-3G boardGabor Juhos2011-03-271-1/+5
| | | | SVN-Revision: 26321
* ramips: add sysupgrade and status LED support for HW550-3GGabor Juhos2011-03-271-10/+10
| | | | | | | | | This patch adds sysupgrade and status LED support for the Aztech HW550-3G. Some LED GPIOs were changed for clarity. Signed-off-by: Layne Edwards <ledwards76@gmail.com> SVN-Revision: 26320
* ramips: initial board support for Aztech HW550-3GGabor Juhos2011-03-134-0/+149
| | | | | | | | | | | 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
* 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-261-0/+355
| | | | 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: handle OTG interrupt on the RT305x SoCGabor Juhos2010-12-141-0/+3
| | | | SVN-Revision: 24560
* 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: 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-244-0/+149
| | | | | | | | 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
* ramips: Ralink RT305x, support for Prolink PWH2004 (Abocom5205)Gabor Juhos2010-09-274-0/+111
| | | | | | | | | | | 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: add support for Sparklan WCR-150GN boardGabor Juhos2010-08-154-0/+76
| | | | | | | | | | | 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
* 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
* Fix ramips build when CONFIG_RALINK_DEV_GPIO_BUTTONS is not set.John Crispin2010-05-311-1/+1
| | | | | | Signed-off-by: Helmut Schaa SVN-Revision: 21643
* ramips: merge slab patchGabor Juhos2010-05-282-0/+2
| | | | SVN-Revision: 21607
* ramips: use COMMAND_LINE_SIZE directlyGabor Juhos2010-05-281-1/+1
| | | | SVN-Revision: 21606
* ramips: use KEY_RESTART and KEY_WPS_BUTTON code for the appropriate buttonsGabor Juhos2010-04-225-9/+9
| | | | SVN-Revision: 21083
* ramips: annotate device register function prototypes with __initGabor Juhos2010-03-311-2/+2
| | | | SVN-Revision: 20627