Build: The repository creation

Change-Id: Ib492722ace64632adf9d8819d64deb8e2975cdc0
Signed-off-by: Anton Komlev <anton.komlev@arm.com>
diff --git a/dco.txt b/dco.txt
new file mode 100644
index 0000000..8201f99
--- /dev/null
+++ b/dco.txt
@@ -0,0 +1,37 @@
+Developer Certificate of Origin
+Version 1.1
+
+Copyright (C) 2004, 2006 The Linux Foundation and its contributors.
+1 Letterman Drive
+Suite D4700
+San Francisco, CA, 94129
+
+Everyone is permitted to copy and distribute verbatim copies of this
+license document, but changing it is not allowed.
+
+
+Developer's Certificate of Origin 1.1
+
+By making a contribution to this project, I certify that:
+
+(a) The contribution was created in whole or in part by me and I
+    have the right to submit it under the open source license
+    indicated in the file; or
+
+(b) The contribution is based upon previous work that, to the best
+    of my knowledge, is covered under an appropriate open source
+    license and I have the right under that license to submit that
+    work with modifications, whether created in whole or in part
+    by me, under the same open source license (unless I am
+    permitted to submit under a different license), as indicated
+    in the file; or
+
+(c) The contribution was provided directly to me by some other
+    person who certified (a), (b) or (c) and I have not modified
+    it.
+
+(d) I understand and agree that this project and the contribution
+    are public and that a record of the contribution (including all
+    personal information I submit with it, including my sign-off) is
+    maintained indefinitely and may be redistributed consistent with
+    this project or the open source license(s) involved.
diff --git a/license.rst b/license.rst
new file mode 100644
index 0000000..c81c696
--- /dev/null
+++ b/license.rst
@@ -0,0 +1,38 @@
+#############################
+TF PSA Crypto drivers license
+#############################
+
+SPDX-FileCopyrightText: Copyright The TrustedFirmware-M Contributors
+
+Redistribution and use in source and binary forms, with or without modification,
+are permitted provided that the following conditions are met:
+
+- Redistributions of source code must retain the above copyright notice, this
+  list of conditions and the following disclaimer.
+- Redistributions in binary form must reproduce the above copyright notice, this
+  list of conditions and the following disclaimer in the documentation and/or
+  other materials provided with the distribution.
+- Neither the name of ARM nor the names of its contributors may be used to
+  endorse or promote products derived from this software without specific prior
+  written permission.
+
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
+ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
+DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
+ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
+(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
+LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
+SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+---
+
+.. note::
+   Individual files contain the following tag instead of the full license text.
+
+    SPDX-License-Identifier:    BSD-3-Clause
+
+This enables machine processing of license information based on the SPDX
+License Identifiers that are here available: http://spdx.org/licenses/
diff --git a/readme.rst b/readme.rst
new file mode 100644
index 0000000..f1e19d0
--- /dev/null
+++ b/readme.rst
@@ -0,0 +1,36 @@
+#####################
+TF PSA Crypto drivers
+#####################
+
+************
+Introduction
+************
+
+This repository contains cryptographic drivers that implement the
+PSA Cryptoprocessor Driver Interface, for example, to be further integrated
+within `Trusted-Firmware-M`_ based platforms.
+
+The `PSA Cryptoprocessor Driver Interface`_ is designed to interface with a
+PSA Crypto core component, such as the reference implementation available
+in `TF-PSA-Crypto`_. For more details on the capabilities implemented through
+such interfaces please refer directly to their respective documentation.
+The PSA Crypto core component exposes PSA Crypto APIs, for example
+the `PSA Cryptography API 1.1`_.
+
+*********
+Licensing
+*********
+
+The software in this repository is provided under the :doc:`BSD-3-Clause license <license>`.
+Other licensing schemes are allowed, as those described by the `OSI licences`_
+and explicitly stated in the corresponding source code.
+
+.. _PSA Cryptography API 1.1: https://developer.arm.com/documentation/ihi0086/latest/
+.. _OSI licences: https://opensource.org/licenses
+.. _Trusted-Firmware-M : https://git.trustedfirmware.org/TF-M/trusted-firmware-m.git/
+.. _PSA Cryptoprocessor Driver Interface: https://github.com/Mbed-TLS/TF-PSA-Crypto/blob/development/docs/proposed/psa-driver-interface.md
+.. _TF-PSA-Crypto: https://github.com/Mbed-TLS/TF-PSA-Crypto/
+
+--------------
+
+SPDX-FileCopyrightText: Copyright The TrustedFirmware-M Contributors