Initial commit to seed TPM2.0 source code directory

LICENSE file text copied from TCG library specification. README
describes the procedure used to extract source code from parts 3 and 4
of the specification.

The python scripts and part{34}.txt files will be removed in the
following commits.

Change-Id: Ie281e6e988481831f33483053455e8aff8f3f75f
Signed-off-by: Vadim Bendebury <vbendeb@chromium.org>
diff --git a/FieldUpgradeStart.c b/FieldUpgradeStart.c
new file mode 100644
index 0000000..fefc108
--- /dev/null
+++ b/FieldUpgradeStart.c
@@ -0,0 +1,20 @@
+// This file was extracted from the TCG Published
+// Trusted Platform Module Library
+// Part 3: Commands
+// Family "2.0"
+// Level 00 Revision 01.16
+// October 30, 2014
+
+#include "InternalRoutines.h"
+#include "FieldUpgradeStart_fp.h"
+#ifdef TPM_CC_FieldUpgradeStart // Conditional expansion of this file
+TPM_RC
+TPM2_FieldUpgradeStart(
+   FieldUpgradeStart_In     *in             // IN: input parameter list
+   )
+{
+   // Not implemented
+   UNUSED_PARAMETER(in);
+   return TPM_RC_SUCCESS;
+}
+#endif