Dan Handley | 610e7e1 | 2018-03-01 18:44:00 +0000 | [diff] [blame] | 1 | Contributing to Trusted Firmware-A |
| 2 | ================================== |
Douglas Raillard | d7c21b7 | 2017-06-28 15:23:03 +0100 | [diff] [blame] | 3 | |
| 4 | Getting Started |
| 5 | --------------- |
| 6 | |
Louis Mayencourt | 72ef3d4 | 2019-03-22 11:47:22 +0000 | [diff] [blame] | 7 | - Make sure you have a Github account and you are logged on |
| 8 | `developer.trustedfirmware.org`_. |
Douglas Raillard | d7c21b7 | 2017-06-28 15:23:03 +0100 | [diff] [blame] | 9 | - Create an `issue`_ for your work if one does not already exist. This gives |
Louis Mayencourt | 72ef3d4 | 2019-03-22 11:47:22 +0000 | [diff] [blame] | 10 | everyone visibility of whether others are working on something similar. |
Douglas Raillard | d7c21b7 | 2017-06-28 15:23:03 +0100 | [diff] [blame] | 11 | |
Douglas Raillard | d7c21b7 | 2017-06-28 15:23:03 +0100 | [diff] [blame] | 12 | - If you intend to include Third Party IP in your contribution, please |
| 13 | raise a separate `issue`_ for this and ensure that the changes that |
| 14 | include Third Party IP are made on a separate topic branch. |
| 15 | |
Louis Mayencourt | 72ef3d4 | 2019-03-22 11:47:22 +0000 | [diff] [blame] | 16 | - Clone `arm-trusted-firmware-a`_ on your own machine as suggested on the |
| 17 | `User Guide`_. |
| 18 | - Create a local topic branch based on the `arm-trusted-firmware-a`_ ``master`` |
Douglas Raillard | d7c21b7 | 2017-06-28 15:23:03 +0100 | [diff] [blame] | 19 | branch. |
| 20 | |
| 21 | Making Changes |
| 22 | -------------- |
| 23 | |
| 24 | - Make commits of logical units. See these general `Git guidelines`_ for |
| 25 | contributing to a project. |
Louis Mayencourt | 72ef3d4 | 2019-03-22 11:47:22 +0000 | [diff] [blame] | 26 | - Follow the `Coding Guidelines`_. |
Douglas Raillard | d7c21b7 | 2017-06-28 15:23:03 +0100 | [diff] [blame] | 27 | |
| 28 | - Use the checkpatch.pl script provided with the Linux source tree. A |
Louis Mayencourt | 72ef3d4 | 2019-03-22 11:47:22 +0000 | [diff] [blame] | 29 | Makefile target is provided for convenience (see the "Checking source code |
| 30 | style" section in the `User Guide`_). |
Douglas Raillard | d7c21b7 | 2017-06-28 15:23:03 +0100 | [diff] [blame] | 31 | |
| 32 | - Keep the commits on topic. If you need to fix another bug or make another |
| 33 | enhancement, please create a separate `issue`_ and address it on a separate |
| 34 | topic branch. |
| 35 | - Avoid long commit series. If you do have a long series, consider whether |
| 36 | some commits should be squashed together or addressed in a separate topic. |
| 37 | - Make sure your commit messages are in the proper format. If a commit fixes |
Louis Mayencourt | 72ef3d4 | 2019-03-22 11:47:22 +0000 | [diff] [blame] | 38 | an `issue`_, include a reference. |
Douglas Raillard | d7c21b7 | 2017-06-28 15:23:03 +0100 | [diff] [blame] | 39 | - Where appropriate, please update the documentation. |
| 40 | |
Louis Mayencourt | 72ef3d4 | 2019-03-22 11:47:22 +0000 | [diff] [blame] | 41 | - Consider whether the `User Guide`_, `Porting Guide`_, `Firmware Design`_ |
| 42 | or other in-source documentation needs updating. |
Douglas Raillard | d7c21b7 | 2017-06-28 15:23:03 +0100 | [diff] [blame] | 43 | - Ensure that each changed file has the correct copyright and license |
| 44 | information. Files that entirely consist of contributions to this |
Joanna Farley | 424ef75 | 2018-11-13 10:52:12 +0000 | [diff] [blame] | 45 | project should have a copyright notice and BSD-3-Clause SPDX license |
| 46 | identifier of the form as shown in `license.rst`_. Files that contain |
| 47 | changes to imported Third Party IP files should retain their original |
| 48 | copyright and license notices. For significant contributions you may |
| 49 | add your own copyright notice in following format: |
Douglas Raillard | d7c21b7 | 2017-06-28 15:23:03 +0100 | [diff] [blame] | 50 | |
| 51 | :: |
| 52 | |
Joanna Farley | 424ef75 | 2018-11-13 10:52:12 +0000 | [diff] [blame] | 53 | Portions copyright (c) [XXXX-]YYYY, <OWNER>. All rights reserved. |
Douglas Raillard | d7c21b7 | 2017-06-28 15:23:03 +0100 | [diff] [blame] | 54 | |
| 55 | where XXXX is the year of first contribution (if different to YYYY) and |
Joanna Farley | 424ef75 | 2018-11-13 10:52:12 +0000 | [diff] [blame] | 56 | YYYY is the year of most recent contribution. <OWNER> is your name or |
| 57 | your company name. |
Douglas Raillard | d7c21b7 | 2017-06-28 15:23:03 +0100 | [diff] [blame] | 58 | - If you are submitting new files that you intend to be the technical |
| 59 | sub-maintainer for (for example, a new platform port), then also update |
| 60 | the `Maintainers`_ file. |
| 61 | - For topics with multiple commits, you should make all documentation |
| 62 | changes (and nothing else) in the last commit of the series. Otherwise, |
| 63 | include the documentation changes within the single commit. |
| 64 | |
Louis Mayencourt | 72ef3d4 | 2019-03-22 11:47:22 +0000 | [diff] [blame] | 65 | - Please test your changes. As a minimum, ensure that Linux boots on the |
| 66 | Foundation FVP. See `Running the software on FVP`_ for more information. For |
| 67 | more extensive testing, consider running the `TF-A Tests`_ against your |
| 68 | patches. |
Douglas Raillard | d7c21b7 | 2017-06-28 15:23:03 +0100 | [diff] [blame] | 69 | |
| 70 | Submitting Changes |
| 71 | ------------------ |
| 72 | |
| 73 | - Ensure that each commit in the series has at least one ``Signed-off-by:`` |
| 74 | line, using your real name and email address. The names in the |
Louis Mayencourt | 72ef3d4 | 2019-03-22 11:47:22 +0000 | [diff] [blame] | 75 | ``Signed-off-by:`` and ``Author:`` lines must match. If anyone else |
| 76 | contributes to the commit, they must also add their own ``Signed-off-by:`` |
| 77 | line. By adding this line the contributor certifies the contribution is made |
| 78 | under the terms of the `Developer Certificate of Origin (DCO)`_. |
| 79 | |
| 80 | More details may be found in the `Gerrit Signed-off-by Lines guidelines`_. |
| 81 | |
| 82 | - Ensure that each commit also has a unique ``Change-Id:`` line. If you have |
| 83 | cloned the repository with the "`Clone with commit-msg hook`" clone method |
| 84 | (as advised on the `User Guide`_), this should already be the case. |
Douglas Raillard | d7c21b7 | 2017-06-28 15:23:03 +0100 | [diff] [blame] | 85 | |
Louis Mayencourt | 72ef3d4 | 2019-03-22 11:47:22 +0000 | [diff] [blame] | 86 | More details may be found in the `Gerrit Change-Ids documentation`_. |
| 87 | |
| 88 | - Submit your changes for review at https://review.trustedfirmware.org |
| 89 | targeting the ``integration`` branch. |
| 90 | |
| 91 | - The changes will then undergo further review and testing by the |
| 92 | `Maintainers`_. Any review comments will be made directly on your patch. |
| 93 | This may require you to do some rework. |
| 94 | |
| 95 | Refer to the `Gerrit Uploading Changes documentation`_ for more details. |
Douglas Raillard | d7c21b7 | 2017-06-28 15:23:03 +0100 | [diff] [blame] | 96 | |
| 97 | - When the changes are accepted, the `Maintainers`_ will integrate them. |
| 98 | |
Louis Mayencourt | 72ef3d4 | 2019-03-22 11:47:22 +0000 | [diff] [blame] | 99 | - Typically, the `Maintainers`_ will merge the changes into the |
| 100 | ``integration`` branch. |
| 101 | - If the changes are not based on a sufficiently-recent commit, or if they |
| 102 | cannot be automatically rebased, then the `Maintainers`_ may rebase it on |
| 103 | the ``master`` branch or ask you to do so. |
| 104 | - After final integration testing, the changes will make their way into the |
| 105 | ``master`` branch. If a problem is found during integration, the merge |
| 106 | commit will be removed from the ``integration`` branch and the |
| 107 | `Maintainers`_ will ask you to create a new patch set to resolve the |
Douglas Raillard | d7c21b7 | 2017-06-28 15:23:03 +0100 | [diff] [blame] | 108 | problem. |
Douglas Raillard | d7c21b7 | 2017-06-28 15:23:03 +0100 | [diff] [blame] | 109 | |
| 110 | -------------- |
| 111 | |
Louis Mayencourt | 72ef3d4 | 2019-03-22 11:47:22 +0000 | [diff] [blame] | 112 | *Copyright (c) 2013-2019, Arm Limited and Contributors. All rights reserved.* |
Douglas Raillard | d7c21b7 | 2017-06-28 15:23:03 +0100 | [diff] [blame] | 113 | |
Louis Mayencourt | 72ef3d4 | 2019-03-22 11:47:22 +0000 | [diff] [blame] | 114 | .. _developer.trustedfirmware.org: https://developer.trustedfirmware.org |
| 115 | .. _issue: https://developer.trustedfirmware.org/project/board/1/ |
| 116 | .. _arm-trusted-firmware-a: https://git.trustedfirmware.org/TF-A/trusted-firmware-a.git |
Douglas Raillard | d7c21b7 | 2017-06-28 15:23:03 +0100 | [diff] [blame] | 117 | .. _Git guidelines: http://git-scm.com/book/ch5-2.html |
Louis Mayencourt | 72ef3d4 | 2019-03-22 11:47:22 +0000 | [diff] [blame] | 118 | .. _Coding Guidelines: ./docs/coding-guidelines.rst |
Douglas Raillard | d7c21b7 | 2017-06-28 15:23:03 +0100 | [diff] [blame] | 119 | .. _User Guide: ./docs/user-guide.rst |
Douglas Raillard | d7c21b7 | 2017-06-28 15:23:03 +0100 | [diff] [blame] | 120 | .. _Porting Guide: ./docs/porting-guide.rst |
| 121 | .. _Firmware Design: ./docs/firmware-design.rst |
| 122 | .. _license.rst: ./license.rst |
| 123 | .. _Acknowledgements: ./acknowledgements.rst |
| 124 | .. _Maintainers: ./maintainers.rst |
| 125 | .. _Running the software on FVP: ./docs/user-guide.rst#user-content-running-the-software-on-fvp |
| 126 | .. _Developer Certificate of Origin (DCO): ./dco.txt |
Louis Mayencourt | 72ef3d4 | 2019-03-22 11:47:22 +0000 | [diff] [blame] | 127 | .. _Gerrit Uploading Changes documentation: https://review.trustedfirmware.org/Documentation/user-upload.html |
| 128 | .. _Gerrit Signed-off-by Lines guidelines: https://review.trustedfirmware.org/Documentation/user-signedoffby.html |
| 129 | .. _Gerrit Change-Ids documentation: https://review.trustedfirmware.org/Documentation/user-changeid.html |
| 130 | .. _TF-A Tests: https://git.trustedfirmware.org/TF-A/tf-a-tests.git/about/ |