Commit Graph

21 Commits (6311ad13b9a66d5ebefede1ee1520533b666da6b)

Author SHA1 Message Date
Paul Bartell eec42331b4 Normalize files with mixed line endings (introduced in commit 3a413d1)
Paul Bartell 3a413d1022 Add SPDX-License-Identifier: MIT to MIT licensed files.
Paul Bartell e31dccae80 Remove "1 tab == 4 spaces!" line from files that still contain it.
Paul Bartell adfc53368f Update copyright year from 2020 to 2021
Paul Bartell 08dc6f64ee Change kernel revision in each file header from V10.4.3 to <DEVELOPMENT BRANCH>
j4cbo f37bcd5c14
Wrap macros in do { ... } while( 0 ) ()
Cobus van Eeden ec62f69dab [AUTO][RELEASE]: Bump file header version to "10.4.3"
David Chalco 337bca615e [AUTO][RELEASE]: Bump file header version to "10.4.2"
Gaurav-Aggarwal-AWS 2225bb5620
Fix Stack alignment for Microchip PIC32MX port ()
* Fix Stack alignment for Microchip PIC32MX port

The stack of a task was not 8 byte aligned. Adding one more unused space
at the beginning of task stack (before simulated context) ensures that
the stack is 8 byte aligned. The stack (with simulated context) of a
newly created task looks like the following:

                    +------------+
                    | UNUSED     |
                    +------------+
                    | UNUSED     |
                    +------------+
                    | 0xDEADBEEF |
                    +------------+
                    | 0x12345678 |
                ^   +------------+
                |   | CAUSE      | <-- SP After Context Restore
                |   +------------+
                |   | STATUS     |
                |   +------------+
                |   | EPC        |
                |   +------------+
                |   | ra         |
                |   +------------+
                |   | s8         |
                |   +------------+
                |   | t9         |
                |   +------------+
                |   | t8         |
                |   +------------+
                |   | t7         |
                |   +------------+
                |   | t6         |
                |   +------------+
                |   | t5         |
                |   +------------+
                |   | t4         |
                |   +------------+
                |   | t3         |
                |   +------------+
                |   | t2         |
                |   +------------+
                |   | t1         |
                |   +------------+
    Context     |   | t0         |
  (132 bytes)   |   +------------+
                |   | a3         |
                |   +------------+
                |   | a2         |
                |   +------------+
                |   | a1         |
                |   +------------+
                |   | a0         |
                |   +------------+
                |   | v1         |
                |   +------------+
                |   | v0         |
                |   +------------+
                |   | s7         |
                |   +------------+
                |   | s6         |
                |   +------------+
                |   | s5         |
                |   +------------+
                |   | s4         |
                |   +------------+
                |   | s3         |
                |   +------------+
                |   | s2         |
                |   +------------+
                |   | s1         |
                |   +------------+
                |   | s0         |
                |   +------------+
                |   | at         |
                |   +------------+
                |   | HI         |
                |   +------------+
                |   | LO         |
                |   +------------+
                V   |            |
                    +------------+
                    |            | <-- SP After Context Save
                    +------------+

Signed-off-by: Gaurav Aggarwal <aggarg@amazon.com>

* Update comment

Signed-off-by: Gaurav Aggarwal <aggarg@amazon.com>
Cobus van Eeden 385e700953
Update History.txt and fix versioning in asm files ()
David Chalco 3604527e3b
Update version number to 10.4.1 ()
RichardBarry 85768bb3e0
Sets the version number to 10.4.0 in assembly files. The ()
assembly files were missed when the other source files had
their version numbers updated.
David Chalco 5dfab0306b
Update version number to 10.4.0 ()
alfred gedeon 0b0a2060c0
Style: Change FreeRTOS websites in comments ()
* Style: Change FreeRTOS websites in comments

* Style: Change freertos to FreeRTOS in comments

* Style: Remove broken link

Co-authored-by: Alfred Gedeon <gedeonag@amazon.com>
alfred gedeon 86653e2a1f
Style: Revert uncrustify for portable directories ()
* Style: revert uncrustify portable directories

* Style: Uncrustify Some Portable files

Co-authored-by: Alfred Gedeon <gedeonag@amazon.com>
Alfred Gedeon 587a83d647 Style: uncrustify kernel files
Alfred Gedeon 2c530ba5c3 Style: uncrustify
Alfred Gedeon 718178c68a Style: uncrusitfy
Alfred Gedeon a5dbc2b1de Style: uncrustify kernel files
Yuhui.Zheng 88e32327e9
version bump to v10.3.1 ()
* Verion bump from 10.3.0 to 10.3.1.
* version bump in task.h
* change history for 10.3.1.
Yuhui Zheng 210b1ffcc8 Re-sync with upstream and stripping away none kernel related.