summaryrefslogtreecommitdiffstats
path: root/target/linux/ar71xx
Commit message (Collapse)AuthorAgeFilesLines
* ar71xx: fix USB LED on the DB120 boardGabor Juhos2011-11-142-0/+4
| | | | SVN-Revision: 29126
* ar71xx: add a function for selecting output signal on a given GPIO pinGabor Juhos2011-11-142-0/+38
| | | | SVN-Revision: 29125
* ar71xx: fix GPIO function handling on AR934xGabor Juhos2011-11-142-9/+35
| | | | SVN-Revision: 29124
* ar71xx: add AR71XX_ prefix to GPIO_REG_* definesGabor Juhos2011-11-145-91/+95
| | | | SVN-Revision: 29123
* ar71xx: merge nand scan patchGabor Juhos2011-11-143-24/+2
| | | | SVN-Revision: 29122
* ar71xx: fix a compiler warningGabor Juhos2011-11-141-4/+4
| | | | SVN-Revision: 29110
* ar71xx: fix GPIO count for AR934xGabor Juhos2011-11-141-1/+1
| | | | SVN-Revision: 29109
* ar71xx: flush DDR writeback buffers for WMAC and PCIe on AR934XGabor Juhos2011-11-142-6/+7
| | | | SVN-Revision: 29108
* ar71xx: use a dummy irq chip for WMAC and PCIe irq hadlingGabor Juhos2011-11-144-2/+50
| | | | SVN-Revision: 29107
* ar71xx: add AR934X_RESET_REG_PCIE_WMAC_INT_STATUS definesGabor Juhos2011-11-141-0/+20
| | | | SVN-Revision: 29106
* ar71xx: add an irq parameter for ar724x_pcibios_initGabor Juhos2011-11-143-6/+6
| | | | SVN-Revision: 29105
* ar71xx: remove hardwired interface parameters from mach-* filesGabor Juhos2011-11-1413-128/+20
| | | | SVN-Revision: 29103
* ar71xx: force hardwired interface parameters in ar71xx_add_device_ethGabor Juhos2011-11-141-1/+11
| | | | SVN-Revision: 29102
* ar71xx: use if-else instead of conditional operators in ar71xx_add_device_ethGabor Juhos2011-11-141-48/+76
| | | | SVN-Revision: 29101
* ar71xx: enable has_gbit flag on AR724{0,1}Gabor Juhos2011-11-131-0/+1
| | | | SVN-Revision: 29026
* ar71xx: fixup onboard PCIe chip registration on the DB120 boardGabor Juhos2011-11-133-6/+36
| | | | SVN-Revision: 29022
* ar71xx: drop DB120_WMAC_MAC_OFFSET, it is not neededGabor Juhos2011-11-131-3/+1
| | | | SVN-Revision: 29021
* ar71xx: ag71xx: add support for getting switch port link statusGabor Juhos2011-11-131-0/+67
| | | | SVN-Revision: 29017
* ar71xx: remove mii_ctrl resources of the ethernet devicesGabor Juhos2011-11-131-10/+0
| | | | SVN-Revision: 29016
* ar71xx: ag71xx: remove unused mii_ctrl field from struct ag71xxGabor Juhos2011-11-132-19/+1
| | | | SVN-Revision: 29015
* ar71xx: ag71xx: remove unused mii_cfg related functions and definesGabor Juhos2011-11-131-40/+0
| | | | SVN-Revision: 29014
* ar71xx: set MII interface speed from the set_speed callbacksGabor Juhos2011-11-133-6/+39
| | | | SVN-Revision: 29013
* ar71xx: rename set_pll callback to set_speed in ag71xx_platform_dataGabor Juhos2011-11-133-30/+30
| | | | | | Also rename the corresponding callback functions. SVN-Revision: 29012
* ar71xx: ag71xx: remove MII interface setup codeGabor Juhos2011-11-133-16/+0
| | | | SVN-Revision: 29011
* ar71xx: configure MII interface type from ar71xx_setup_phy_if_modeGabor Juhos2011-11-132-6/+28
| | | | SVN-Revision: 29010
* ar71xx: fix occasional kernel hangs during boot on AR934xGabor Juhos2011-11-131-0/+104
| | | | | | | | | | | | | | | | | | | | | | | | | | The patch taken from the linux-mips mailing list. The Kernel hangs occasionally during boot after "Calibrating delay loop..". This is caused by the c0_compare_int_usable() routine in cevt-r4k.c returning false which causes the system to disable the timer and hang later. The false return happens because the routine is using a series of four calls to irq_disable_hazard() as a delay while it waits for the timer changes to propagate to the cp0 cause register. On newer MIPS cores, like the 74K, the series of irq_disable_hazard() calls turn into ehb instructions and can take as little as a few clock ticks for all 4 instructions. This is not enough of a delay, so the routine thinks the timer is not working. This fix uses up to a max number of cycle counter ticks for the delay and uses back_to_back_c0_hazard() instead of irq_disable_hazard() to handle the hazard condition between cp0 writes and cp0 reads. SVN-Revision: 29009
* ar71xx: refresh kernel patchesGabor Juhos2011-11-132-4/+4
| | | | SVN-Revision: 29008
* ar71xx: use the button for WPS control on the DB120Gabor Juhos2011-11-121-4/+4
| | | | SVN-Revision: 28990
* ar71xx: register the second ethernet interface on the DB120 boardGabor Juhos2011-11-121-0/+8
| | | | SVN-Revision: 28989
* ar71xx: implement SoC specific phy interface setupGabor Juhos2011-11-121-17/+85
| | | | SVN-Revision: 28988
* ar71xx: move phy interface setup into a separate functionGabor Juhos2011-11-121-24/+39
| | | | SVN-Revision: 28987
* ar71xx: register both MDIO bus on the DB120 boardGabor Juhos2011-11-121-0/+3
| | | | SVN-Revision: 28986
* ar71xx: add AR934X specific MDIO registration codeGabor Juhos2011-11-121-1/+38
| | | | SVN-Revision: 28985
* ar71xx: add a secondary mdio busGabor Juhos2011-11-122-15/+57
| | | | SVN-Revision: 28984
* ar71xx: rename ar71xx_mdio_* structures to ar71xx_mdio0_*Gabor Juhos2011-11-124-19/+19
| | | | SVN-Revision: 28983
* ar71xx: add an id argument to ar71xx_add_device_mdioGabor Juhos2011-11-1239-47/+52
| | | | SVN-Revision: 28982
* ar71xx: pass netdev and miidev pointer to ar71xx_add_device_dsaGabor Juhos2011-11-124-20/+12
| | | | SVN-Revision: 28981
* ar71xx: add AR934x specific USB setupGabor Juhos2011-11-121-3/+30
| | | | SVN-Revision: 28980
* ar71xx: register the first ethernet interface on the DB120 boardGabor Juhos2011-11-121-0/+10
| | | | SVN-Revision: 28979
* ar71xx: allow to register ethernet interfaces for AR934XGabor Juhos2011-11-121-0/+54
| | | | SVN-Revision: 28978
* ar71xx: ag71xx: use fixed link parameters if the mii bus is not registeredGabor Juhos2011-11-121-0/+4
| | | | SVN-Revision: 28977
* ar71xx: add AR934X specific bootstrap and reset register bitsGabor Juhos2011-11-122-3/+51
| | | | SVN-Revision: 28976
* ar71xx: add diag support for the DB120 boardGabor Juhos2011-11-122-0/+6
| | | | SVN-Revision: 28975
* ar71xx: fix GPIO direction setup for AR934xGabor Juhos2011-11-121-0/+39
| | | | SVN-Revision: 28974
* ar71xx: fix AR934X clock frequency calculationGabor Juhos2011-11-122-12/+48
| | | | SVN-Revision: 28973
* ar71xx: generate ubootenv from uci-defaults instead of providing defconfigGabor Juhos2011-11-122-5/+37
| | | | | | | | | | I noticed most of /etc/defconfig was replaced by /etc/uci-defaults, which is indeed much nicer. So I moved over ubootenv from having a defconfig-entry to also be generated from uci-defaults. Signed-off-by: Daniel Golle <dgolle@allnet.de> SVN-Revision: 28971
* ar71xx: remove dead codeFelix Fietkau2011-11-081-15/+0
| | | | SVN-Revision: 28851
* ar71xx: on ar7240, exclude ports from their own port vlan destination maskFelix Fietkau2011-11-081-2/+1
| | | | SVN-Revision: 28850
* ar71xx: create TL-WA901ND network config from uci-defaultsGabor Juhos2011-11-072-16/+5
| | | | SVN-Revision: 28833
* ar71xx: create ALL0258N network config from uci-defaultsGabor Juhos2011-11-072-12/+4
| | | | SVN-Revision: 28832