summaryrefslogtreecommitdiff
path: root/nuttx/arch/arm/src/common
Commit message (Collapse)AuthorAgeFilesLines
* Add protection from C++ name mangling in the ARM up_internal.h. From Lorenz ↵Gregory Nutt2014-11-121-14/+26
| | | | Meier.
* SAM4: Fix a usbnsh build problem that has crept into all serial driversGregory Nutt2014-10-291-2/+2
|
* Misc changes to get a clean build after all of the syslog changes. There ↵Gregory Nutt2014-10-081-5/+0
| | | | are probably other things still broken
* Simplification of conditional compilation suggested by pn_boutevilleGregory Nutt2014-10-071-4/+8
|
* Fix some recently introduced typos, build problems, and warningsGregory Nutt2014-10-051-0/+15
|
* More vfork(): If we get to vfork() via system call, then we need to clone ↵Gregory Nutt2014-09-291-0/+20
| | | | some system call information so that the return form the cloned system call works correctly
* Fix vfork(). Now that arguments are kept on the stack, the way that ↵Gregory Nutt2014-09-291-10/+10
| | | | arguments are passed from parent to child in vfork() must change. This bug has always been present, but was not visible with the old strdup() way of passing arguments
* More naming changes to get the stm3240g-eval/nxterm configuration building againGregory Nutt2014-09-201-4/+5
|
* These files were deleted and moved to a different location (see previos commit)Gregory Nutt2014-09-161-103/+0
|
* Restructuring of build to allow use of use-space allocators by kernel logic ↵Gregory Nutt2014-09-021-2/+3
| | | | in the kernel build.
* Fix common heap allocation logic, taking into account the kernel build ↵Gregory Nutt2014-09-011-14/+30
| | | | requirements
* Reanem kzalloc to kmm_zalloc for consistencyGregory Nutt2014-08-311-1/+1
|
* Rename kmalloc to kmm_malloc for consistencyGregory Nutt2014-08-311-1/+1
|
* Rename kumalloc to kumm_malloc and kuzalloc to kumm_zalloc for consistency ↵Gregory Nutt2014-08-311-2/+2
| | | | with other naming
* Various changes/fixes to get configs/stm32f4discovery/kostest working after ↵Gregory Nutt2014-08-292-6/+4
| | | | the big configuration renaming (and after a long period of bit rot)
* Rename CONFIG_NUTTX_KERNEL to CONFIG_BUILD_PROTECTED; Partially integrate ↵Gregory Nutt2014-08-296-29/+59
| | | | new CONFIG_BUILD_KERNEL
* Add ADDRENV support to ALL implmentations of _exit()Gregory Nutt2014-08-271-1/+12
|
* Remove os_internal.h it has been replace by several new header files under ↵Gregory Nutt2014-08-081-1/+2
| | | | sched/. There have been some sneak inclusion paths via os_internal.h, so expect a few compilation errors for some architectures
* Replace os_internal.h with sched/sched.h in files that actually reference ↵Gregory Nutt2014-08-083-3/+3
| | | | something in sched.h
* Move task control files from sched/ to sched/taskGregory Nutt2014-08-081-3/+4
|
* Rename up_timerinit() to up_timer_initailize(); Add prototypes for candidate ↵Gregory Nutt2014-08-062-2/+2
| | | | interfaces for the tickless OS; Don't build existing timer initialization logic if CONFIG_SCHED_TICKLESS is defined.
* ARM: Move L2 cache initialization to much later in the sequenceGregory Nutt2014-07-272-3/+15
|
* Beginning of a crypto/ subsystem from Max NeklyudovGregory Nutt2014-07-031-0/+8
|
* Updated system timer logic from Bob DoironGregory Nutt2014-04-301-1/+2
|
* Fix spelling, only one t in exitingGregory Nutt2014-04-271-1/+1
|
* Move the un-definitions of __ramfuncs__ from the sam_clockconfig.c to the ↵Gregory Nutt2014-04-171-1/+9
| | | | common up_internal.h header file so that the attribute will be applied the same to function definitions and prototypes.
* More trailing whilespace removalGregory Nutt2014-04-134-6/+6
|
* Make sure that there is one space after forGregory Nutt2014-04-121-1/+1
|
* Make sure that there is one space between while and conditionGregory Nutt2014-04-121-1/+1
|
* mv ramlog.h and syslog.h to new include/nuttx/syslogGregory Nutt2014-04-101-1/+1
|
* SAMA5: On some hardware, reconfiguring the PLL while executing out of NOR ↵Gregory Nutt2014-04-031-1/+1
| | | | FLASH causes crashes. This was fixed by David Sidrane by implementing RAM functions. The killer code is copied and executed from ISRAM and the crash is avoided.
* Add logic to check interrupt stack usageGregory Nutt2014-03-232-15/+97
|
* Many changes to reduce complaints from CppCheck. Several latent bugs fixes, ↵Gregory Nutt2014-02-101-4/+0
| | | | but probably some new typos introduced
* rename up_led*() functions to board_led_*()Gregory Nutt2014-01-244-10/+10
|
* Individual IRQs are not longer disabled on each interrupt. See ChangeLog ↵Gregory Nutt2014-01-151-5/+7
| | | | for detailed explanation
* Changes to get PX4 config to build. Also some warning removalGregory Nutt2014-01-141-6/+6
|
* LM: Don't initialize .data if running in SRAM. Global missing intialize ↵Gregory Nutt2013-12-051-1/+1
| | | | type. SAMA5 NAND: Fix for read nand in smaller chunks
* Extend stack debug logic to include IDLE and interrupt stacks. Also color ↵Gregory Nutt2013-11-013-23/+48
| | | | the heap as well. Based on suggestions from David Sidrane
* KL: Now builds up_putsGregory Nutt2013-10-011-1/+2
|
* Clean up some naming: fd vs. fildes vs. filedes and filep vs filpGregory Nutt2013-09-281-3/+3
|
* Standardize stack checking interfaceGregory Nutt2013-09-243-26/+9
|
* Add hooks to select Cortex-A8Gregory Nutt2013-08-271-2/+2
|
* Finally... renamed all CONFIG_DRAM_ settings to CONFIG_RAM_Gregory Nutt2013-07-262-6/+6
|
* Improve Cortex-A5 context switching so that a little less copying is doneGregory Nutt2013-07-241-3/+64
|
* ARMv7-N: Fix a copy error introduced in the previous check-inGregory Nutt2013-07-231-12/+2
|
* Improve some ARMv7-A/M floating point register save time; Add floating point ↵Gregory Nutt2013-07-231-5/+32
| | | | register save logic for ARMv7-A
* Adding missing registration of /dev/zero; Condition registration of ↵Gregory Nutt2013-04-241-0/+8
| | | | /dev/null. From Ken Petit
* _exit() should not call atexit() or on_exit() functions; Rename ↵Gregory Nutt2013-04-181-1/+1
| | | | task_deletecurrent() to task_exit()
* Completes coding of the LPC17 DMA driverpatacongo2013-03-301-1/+1
| | | | git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5801 42af7a65-404d-4744-a932-0658087f49c3
* convert Kwikstik K40 configurations to use kconfig-frontends toolspatacongo2013-03-251-1/+1
| | | | git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5784 42af7a65-404d-4744-a932-0658087f49c3