summaryrefslogtreecommitdiff
path: root/nuttx
Commit message (Collapse)AuthorAgeFilesLines
* Clean up some naming: fd vs. fildes vs. filedes and filep vs filpGregory Nutt2013-09-2845-689/+682
|
* The last checkin replaced some impossible error handling with DEBUGASSERT. ↵Gregory Nutt2013-09-284-13/+25
| | | | Except that one of the case is actually possible in one cornercase and had to be restored
* Optimized sendfile() from Max HoltzbergGregory Nutt2013-09-2827-242/+1151
|
* ENCX24J600: Use separate pools for RX and TX descriptors. From Max HoltzbergGregory Nutt2013-09-282-11/+35
|
* SAMA5: Update README.txt to show how to configure GMACGregory Nutt2013-09-271-136/+172
|
* configs/compal_e88 converted to use the kconfig-frontends toolsGregory Nutt2013-09-279-342/+697
|
* Add support for the Motorola C139 phoneGregory Nutt2013-09-2712-0/+820
|
* SAMA5 GMAC and GMII support is code complete and ready for testGregory Nutt2013-09-278-387/+376
|
* OS startup logic should not call group_setupidelfiles() if there is no file ↵Gregory Nutt2013-09-272-0/+7
| | | | system support configured
* ENCX24J600: Remove poll for new TX data from TX done interrupt handlingGregory Nutt2013-09-272-6/+4
|
* Networking: Fix backward conditional in test to see if address is in ARP ↵Gregory Nutt2013-09-273-9/+8
| | | | table. From Max Holtzberg
* Networking: If sending out of the subnet, device lookup by IP will fail. ↵Gregory Nutt2013-09-272-0/+19
| | | | Fall back to ETH0 for now. From Max Holtzberg
* Beginng of support for GMII/RGMII PHYsGregory Nutt2013-09-269-162/+522
|
* SAMA5 GMAC: Initial driver check-in is just the EMAC driver forced to ↵Gregory Nutt2013-09-265-8/+3230
| | | | compile with the GMAC register definitions
* SAMA5: Completes GMAC register definition header fileGregory Nutt2013-09-261-149/+413
|
* ZIT-ARM-1769: Led to LED control logic from Raashid FatahGregory Nutt2013-09-261-4/+4
|
* Mov apps/examples/composite to apps/system/composite; convert ↵Gregory Nutt2013-09-25131-622/+892
| | | | configs/stm3210e-eval/composite to use kconfig-frontend tools -- untested
* Move apps/examples/cdcacm to apps/system/cdcacmGregory Nutt2013-09-2572-140/+258
|
* Move apps/examples/usbmsc to apps/system/usbmscGregory Nutt2013-09-25209-718/+731
|
* Updated README.txtGregory Nutt2013-09-251-0/+73
|
* SAMA5 EMAC: Need to pace RX and TX because and RX can result in a TX; ↵Gregory Nutt2013-09-252-60/+93
| | | | Process TX interrupt events before TX interrupt events for the same reason
* SAMA5 EMAC: Add some need D-Cache Flush/Invalidate operations. Add support ↵Gregory Nutt2013-09-251-6/+68
| | | | for CONFIG_NET_DUMPPACKET
* Move CONFIG_NET_DUMPPACKET from LPC17 and STM32 to commong network drivers. ↵Gregory Nutt2013-09-251-0/+1
| | | | Automatically enabled CONFIG_NETDEVICES when any Ethernet driver is enabled
* Move CONFIG_NET_DUMPPACKET from LPC17 and STM32 to commong network drivers. ↵Gregory Nutt2013-09-256-16/+18
| | | | Automatically enabled CONFIG_NETDEVICES when any Ethernet driver is enabled
* Can't test for UIP_CLOSED bit in TCP flags; UIP_CLOSED is defined to be 0Gregory Nutt2013-09-251-1/+1
|
* LED change requested by RashidGregory Nutt2013-09-251-1/+1
|
* Fix badly applied patch to ENCX24J600Gregory Nutt2013-09-253-52/+111
|
* SAMA5 UDPHS: Dont' reject read request submissions while stalled. That ↵Gregory Nutt2013-09-243-26/+53
| | | | causes an infinite loop. When stalling, cancel all pending write requests, but cancel only a reqd request if it is in progress. It will be immediately requeued
* Comment out assertion that apparently fires inappropriatelyGregory Nutt2013-09-241-1/+3
|
* Slightly improved debug outputGregory Nutt2013-09-242-5/+17
|
* SAMA5D3x-EK: Enable the interrupt stack in in all configurationsGregory Nutt2013-09-242-2/+2
|
* Stack monitor fixesGregory Nutt2013-09-241-0/+4
|
* Stack monitor fixesGregory Nutt2013-09-241-1/+1
|
* Standardize stack checking interfaceGregory Nutt2013-09-2411-75/+85
|
* ENCx24J600 UDP backlog support from Maz HoltzbergGregory Nutt2013-09-243-103/+366
|
* SAMA5 UDPHS: Minor clean-up of STALL logicGregory Nutt2013-09-232-35/+40
|
* SAMA5 HSMCI: Disable TX DMA. it is not reliableGregory Nutt2013-09-234-26/+156
|
* SAMA5 HSMCI DMA clean-up. There are still some issuesGregory Nutt2013-09-233-7/+8
|
* ZKIT-ARM-1769: LED1 is now user controllable. From Rashid FatahGregory Nutt2013-09-233-42/+113
|
* Cosmetic changes to comments and coding style fixesGregory Nutt2013-09-222-96/+115
|
* SAMA5D3x-EK AT25 Serial FLASH: Dropping SPI frequency to 10MHz gives more ↵Gregory Nutt2013-09-223-6/+14
| | | | reliable behavior
* Use a valid interval for the interrupt endpoint in the CDC/ACM driverGregory Nutt2013-09-222-1/+5
|
* Un-neccesary, cosmetic changes to label names and commentsGregory Nutt2013-09-226-9/+11
|
* SAMA5 OHCI: Back out a change, the real root cause was a bug in the cache ↵Gregory Nutt2013-09-222-9/+1
| | | | logic so the hack is no longer necessary
* ARMv7-A: Fix some error in alignment to cache line boundaries in the cache ↵Gregory Nutt2013-09-213-2/+6
| | | | operations
* Fix minor typos in README fileGregory Nutt2013-09-211-3/+3
|
* SAMA5 OHCI: Fix some strange Dcache problems that I still don't understand; ↵Gregory Nutt2013-09-211-26/+34
| | | | end address on cache operations is end+1, not end
* SAMA5D3x-EK: Always use UPLL for USB clockingGregory Nutt2013-09-213-18/+14
|
* Cosmetic changes to USB host class driver filesGregory Nutt2013-09-213-11/+11
|
* ARMv7-A: Clarify end address paramet in cache operations: It is the end+1 ↵Gregory Nutt2013-09-215-8/+8
| | | | address, not the end address